<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:37:29] <Ocawes​ome101> the what now
L2[00:43:31] <Amanda> %lmgtfy USB armory mk 2 crowdfund
L3[00:43:32] <MichiBot> Ama​nda: https://lmgtfy.com/?q=USB+armory+mk+2+crowdfund
L4[00:44:46] <Amanda> %8ball pizza for dinner?
L5[00:44:46] <MichiBot> Ama​nda: Reply hazy, try again
L6[00:44:50] <Amanda> %8ball pizza for dinner?
L7[00:44:50] <MichiBot> Ama​nda: Reply hazy, try again
L8[00:44:59] <Amanda> guess that's a no.
L9[00:45:42] <Amanda> one last try:
L10[00:45:42] <Amanda> guess that's a no.
L11[00:45:44] <Amanda> %8ball pizza for dinner?
L12[00:45:44] <MichiBot> Ama​nda: Signs point to yes
L13[01:07:07] ⇦ Quits: Vexatos (~Vexatos@port-92-192-7-98.dynamic.as20676.net) (Quit: Insert quantum chemistry joke here)
L14[01:11:19] <Sagh​etti> how much data can eeprom.setData() store?
L15[01:11:36] <Izaya> 256 bytes
L16[01:11:45] <Izaya> unless otherwise configured
L17[01:11:52] <Sagh​etti> :(
L18[01:12:05] <Sagh​etti> i was hoping that i could abuse it
L19[01:12:35] <Izaya> 256 bytes is more than enough to abuse
L20[01:12:50] <Sagh​etti> i was thinking of putting a filesystem on it
L21[01:13:06] <Sagh​etti> if it was uncapped
L22[01:15:09] <Adorabl​eCatgirl> or
L23[01:15:10] <Adorabl​eCatgirl> ir
L24[01:15:15] <Adorabl​eCatgirl> *or
L25[01:15:22] <Adorabl​eCatgirl> use my fancy EEPROM card
L26[01:15:45] <Sagh​etti> i mean i have it installeds
L27[01:15:47] <Sagh​etti> i mean i have it installed [Edited]
L28[01:16:02] <Sagh​etti> but nah
L29[01:16:20] <Sagh​etti> i was just wondering if i could abuse setData
L30[01:18:01] <Sagh​etti> and by abuse i mean booting OpenOS off of nothing but an EEPROM
L31[01:18:58] <Ocawes​ome101> not happening, unfortunately
L32[01:19:04] <Ocawes​ome101> that would be crazy tbh
L33[01:19:21] <Adorabl​eCatgirl> i mean
L34[01:19:21] <Sagh​etti> setting like 600kb of data using eeprom.setData
L35[01:19:29] <Adorabl​eCatgirl> two EEPROM cards
L36[01:19:30] <Adorabl​eCatgirl> OR
L37[01:19:40] <Adorabl​eCatgirl> see how well OpenOS compresses
L38[01:19:46] <Adorabl​eCatgirl> with 16k blocks
L39[01:19:50] <Ocawes​ome101> down to 4k? hah
L40[01:19:52] <Adorabl​eCatgirl> for LZSS
L41[01:19:58] <Adorabl​eCatgirl> oh i mean 128k
L42[01:20:16] <Ocawes​ome101> :shrugs:
L43[01:20:24] <Adorabl​eCatgirl> tbh
L44[01:20:33] <Adorabl​eCatgirl> you'd need larger blocks
L45[01:21:25] <Sagh​etti> vanilla openos is 377kb
L46[01:21:31] <Sagh​etti> 588kb size on disk
L47[01:23:22] <Ocawes​ome101> I'm working on a Mac-System-Software-inspired OS for OpenComputers
L48[01:23:44] <Adorabl​eCatgirl> okay? lzss compression @Saghetti
L49[01:23:52] <Adorabl​eCatgirl> fit on an EEPROM card
L50[01:23:57] <Adorabl​eCatgirl> profit
L51[01:24:36] <Sagh​etti> woah
L52[01:24:37] <Sagh​etti> https://github.com/kieselsteini/lzss/blob/master/lzss.lua
L53[01:24:39] <Sagh​etti> that's small
L54[01:25:01] <Adorabl​eCatgirl> there's a decompressor that's under 256 bytes
L55[01:25:04] <Sagh​etti> just 992 bytes when minified
L56[01:25:47] <Sagh​etti> 493 bytes with just decompressor
L57[01:25:51] <Ocawes​ome101> would the 256 byte one still need some code in the EEPROM to run it?
L58[01:26:19] <Sagh​etti> "local a={}local string,table=string,table;local b=12;local c=16-b;local d=1<<b;local e=1<<c;local f=3;function a.decompress(g)local h,i=1,{}local j=''while h<=#g do local k=string.byte(g,h)h=h+1;for l=1,8 do local m=nil;if k&1~=0 then if h<=#g then m=string.sub(g,h,h)h=h+1 end else if h+1<=#g then local n=string.unpack('>I2',g,h)h=h+2;local o=n>>c+1;local p=n&e-1+f;m=string.sub(j,o,o+p-1)end end;k=k>>1;if m then
L59[01:26:20] <Sagh​etti> i[#i+1]=m;j=string.sub(j..m,-d)end end end;return table.concat(i)end;return a"
L60[01:26:23] <Sagh​etti> lzss decompressor
L61[01:26:31] <Sagh​etti> local a={}local string,table=string,table;local b=12;local c=16-b;local d=1<<b;local e=1<<c;local f=3;function a.decompress(g)local h,i=1,{}local j=''while h<=#g do local k=string.byte(g,h)h=h+1;for l=1,8 do local m=nil;if k&1~=0 then if h<=#g then m=string.sub(g,h,h)h=h+1 end else if h+1<=#g then local n=string.unpack('>I2',g,h)h=h+2;local o=n>>c+1;local p=n&e-1+f;m=string.sub(j,o,o+p-1)end end;k=k>>1;if m then
L62[01:26:31] <Sagh​etti> i[#i+1]=m;j=string.sub(j..m,-d)end end end;return table.concat(i)end;return a [Edited]
L63[01:26:51] <Adorabl​eCatgirl> https://termbin.com/wi21
L64[01:27:10] <Sagh​etti> malwarebytes blocked it
L65[01:27:20] <Adorabl​eCatgirl> ???
L66[01:27:27] <Adorabl​eCatgirl> also >antivirus
L67[01:27:42] <Sagh​etti> ???!??!
L68[01:27:43] <Sagh​etti> Message contained 4 or more newlines and was pastebined https://paste.pc-logix.com/gujucaciba
L69[01:27:46] <Sagh​etti> wat
L70[01:27:50] <Adorabl​eCatgirl> yeah
L71[01:28:02] <Adorabl​eCatgirl> LZSS decompressor in 246 bytes
L72[01:29:02] <Sagh​etti> without newlines
L73[01:29:04] <Sagh​etti> "return function(a)local b,c,d,e,f,g,h,i=1,'',''while b<=#a do e=c.byte(a,b)b=b+1;for j=0,7 do h=c.sub;i=h(a,b,b)if e>>j&1<1 and b<#a then g=c.unpack('>I2',a,b)f=1+g>>4;i=h(d,f,f+g&15+2)b=b+1 end;b=b+1;c=c..i;d=h(d..i,-4^6)end end;return c end"
L74[01:29:35] <Sagh​etti> return function(a)local b,c,d,e,f,g,h,i=1,'',''while b<=#a do e=c.byte(a,b)b=b+1;for j=0,7 do h=c.sub;i=h(a,b,b)if e>>j&1<1 and b<#a then g=c.unpack('>I2',a,b)f=1+g>>4;i=h(d,f,f+g&15+2)b=b+1 end;b=b+1;c=c..i;d=h(d..i,-4^6)end end;return c end [Edited]
L75[01:30:06] <Adorabl​eCatgirl> literally changes nothing?
L76[01:30:14] <Sagh​etti> now its 242 bytes
L77[01:30:16] <Sagh​etti> gottem
L78[01:31:10] <Ocawes​ome101> local lzssdecomp = load(component.invoke(component.list("eeprom")(), "getData"), "=lzssdecomp", "bt", G)()
L79[01:31:28] <Adorabl​eCatgirl> what newlinw do you even use
L80[01:31:31] <Adorabl​eCatgirl> *newline
L81[01:31:51] <Sagh​etti> crlf
L82[01:31:53] <Z​ef> %lua print("i am expert programmer")
L83[01:31:54] <MichiBot> i am expert programmer
L84[01:31:59] ⇦ Quits: Inari (~Pinkishu@pD9E8F321.dip0.t-ipconnect.de) (Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/)
L85[01:32:01] <Sagh​etti> %lua return function(a)local b,c,d,e,f,g,h,i=1,'',''while b<=#a do e=c.byte(a,b)b=b+1;for j=0,7 do h=c.sub;i=h(a,b,b)if e>>j&1<1 and b<#a then g=c.unpack('>I2',a,b)f=1+g>>4;i=h(d,f,f+g&15+2)b=b+1 end;b=b+1;c=c..i;d=h(d..i,-4^6)end end;return c end
L86[01:32:01] <MichiBot> main:1: unexpected symbol near '>'
L87[01:32:09] <Sagh​etti> 5.2?
L88[01:32:21] <Z​ef> probably
L89[01:32:27] <Adorabl​eCatgirl> >crlf
L90[01:32:33] <Z​ef> I don't ever remember michibot being super reliable when running lua
L91[01:32:36] ⇦ Quits: ben_mkiv (~ben_mkiv@i5E86B06F.versanet.de) (Ping timeout: 189 seconds)
L92[01:32:58] <Adorabl​eCatgirl> imagine not using only nl
L93[01:34:20] <Izaya> %lua return _VERSION
L94[01:34:21] <MichiBot> Lua 5.2
L95[01:34:32] <Izaya> should fix that
L96[01:34:33] <Izaya> we 5.4 now
L97[01:35:05] <Adorabl​eCatgirl> yikes
L98[01:35:17] <Adorabl​eCatgirl> i have sudden pain in my right arn
L99[01:35:19] <Adorabl​eCatgirl> *arm
L100[01:35:29] <Amanda> Do you smell burnt toast?
L101[01:36:53] <Adorabl​eCatgirl> no
L102[01:37:09] <Adorabl​eCatgirl> and now it's basically gone
L103[01:37:13] <Adorabl​eCatgirl> weird.jpg
L104[01:37:42] <Sagh​etti> why is the only emoji :neko:?
L105[01:37:56] <Amanda> It's not.
L106[01:38:08] <Sagh​etti> i mean on the server
L107[01:38:26] <Izaya> s/server/guild/
L108[01:38:26] <MichiBot> <Saghetti> i mean on the guild
L109[01:38:36] <Ar​iri> Because nekos are the only thing worth emoting
L110[01:38:51] <Ar​iri> http://tinyurl.com/uy72nrk
L111[01:39:09] <Sagh​etti> time to flex nitro now
L112[01:39:22] <Sagh​etti> :HyperNeko:
L113[01:39:26] <Ar​iri> sighs in sign language
L114[01:39:27] <Izaya> imagine paying money to add emojos
L115[01:39:34] <Sagh​etti> i didn't pay
L116[01:39:36] <Sagh​etti> someone else did
L117[01:39:42] <Sagh​etti> and gifted it to me
L118[01:39:43] <Izaya> imagine your server administrator not being able to add emojos
L119[01:39:55] <Ar​iri> no emojos here
L120[01:40:16] <Ar​iri> Izaya: guild*
L121[01:40:22] <Izaya> no I mean server
L122[01:40:27] <Adorabl​eCatgirl> lmao
L123[01:40:27] <Izaya> not guild
L124[01:40:34] <Adorabl​eCatgirl> 👉 👌
L125[01:40:34] <Izaya> imagine not being able to run your own server
L126[01:40:39] <Adorabl​eCatgirl> ^
L127[01:40:42] <Sagh​etti> ^
L128[01:40:48] <Ar​iri> im confuzzled now
L129[01:40:51] <Adorabl​eCatgirl> luna has an IRC server
L130[01:41:05] <ThePi​Guy24> %lua print(math.pow(2, 0.5))
L131[01:41:05] <MichiBot> 1.4142135623731
L132[01:41:24] <ThePi​Guy24> idk why i just felt like doing that
L133[01:41:26] <Izaya> Ariri: https://emojos.in/catgirl.science
L134[01:41:46] <Sagh​etti> who wants to be weirdly pinged?
L135[01:41:57] <ThePi​Guy24> i guess?
L136[01:42:04] <Sagh​etti> \@ThePiGuy24
L137[01:42:14] <ThePi​Guy24> oh yeah i forgot about that
L138[01:42:23] <ThePi​Guy24> \@Saghetti
L139[01:43:46] <Ar​iri> Oh
L140[01:47:05] <Sagh​etti> how much data can a 128 minute tape hold?
L141[01:47:20] <Izaya> ~30M IIRC
L142[01:47:29] <Sagh​etti> dang
L143[01:47:42] <Izaya> 4KB/sec, 60 seconds to a minute, 128 minutes
L144[01:47:58] <Izaya> > (4096*60*128)/1024/1024
L145[01:48:00] <Izaya> 30.0
L146[01:48:53] <Sagh​etti> /test/
L147[01:49:01] <Sagh​etti> oh
L148[01:49:37] <Sagh​etti> is there any way to get working linked cards in creative mode without crafting?
L149[02:00:35] <ThePi​Guy24> izaya: i did some testing and it turns our that playback is 6000hz not 4096hz
L150[02:00:55] <ThePi​Guy24> wait
L151[02:01:06] <ThePi​Guy24> 6000KB/s 48000Hz
L152[02:02:01] <Izaya> there's a high bitrate mode and a normal and a slow
L153[02:02:03] <Izaya> IIRC
L154[02:03:10] <ThePi​Guy24> well its still 6000KB/s for the 4 minute tape atleast
L155[02:03:42] <ThePi​Guy24> so after recalculations, 128 min tape is 43.95MB
L156[02:04:21] <Izaya> even better
L157[02:04:41] <Izaya> you can seek(-math.huge) then get the value seek(math.huge) returns to get the whole size
L158[02:05:13] <ThePi​Guy24> will test once game loads up
L159[02:08:18] <ThePi​Guy24> yes, it is 45.95MB
L160[02:08:53] <ThePi​Guy24> (well actually 43.945311546326MB)
L161[02:12:42] <Ocawes​ome101> Open System is coming along nicely :)
L162[02:13:04] <Ocawes​ome101> I made a custom BIOS that displays the “happy Mac” face
L163[02:27:33] <Izaya> https://social.pixie.town/system/media_attachments/files/000/567/250/original/6b0e0bba4925db29.jpeg
L164[02:29:35] <Elfi> >pixie town
L165[02:29:38] <Elfi> pixie town PIXIE TOWN
L166[02:29:46] <Elfi> BLAHAJ WITH A WITCH HAT DGKDGL
L167[02:30:30] <Elfi> Looks like a pretty cool instance
L168[02:30:35] <Elfi> I don't wanna move again but PIXIE TOOOOWN
L169[02:39:59] ⇨ Joins: Benis (~benis@dhcp-0-fc-8d-89-d4-93.cpe.powergate.ca)
L170[02:40:17] <Benis> d
L171[02:40:44] <Benis> Hello?
L172[02:41:25] ⇦ Quits: Benis (~benis@dhcp-0-fc-8d-89-d4-93.cpe.powergate.ca) (Client Quit)
L173[02:41:34] ⇨ Joins: Benis (~benis@dhcp-0-fc-8d-89-d4-93.cpe.powergate.ca)
L174[02:41:37] <Benis> hello
L175[02:41:49] ⇦ Quits: Benis (~benis@dhcp-0-fc-8d-89-d4-93.cpe.powergate.ca) (Client Quit)
L176[02:59:12] <Z​ef> Lol
L177[03:04:09] <CompanionCube> %tonkout
L178[03:04:10] <MichiBot> By my throth! CompanionCube! You beat Ocawesome101's previous record of 2 hours, 6 minutes and 20 seconds (By 1 hour, 1 minute and 26 seconds)! I hope you're happy!
L179[03:04:11] <MichiBot> CompanionCube has stolen the tonkout! Tonk has been reset! They gained 0.003 tonk points! plus 0.002 bonus points for consecutive hours! (Reduced to 50% because stealing) Current score: 0.41957. Position #2
L180[03:16:25] <Ocawes​ome101> Turns out OCVM doesn't like Unicode :P
L181[03:16:58] <Ocawes​ome101> `basicstring::M_construct null not valid`
L182[03:23:48] <Amanda> What're you trying to encode?
L183[03:24:07] <Amanda> I'm pretty sure utf-8 isn't meant to create nulla
L184[03:25:22] * Amanda collects Elfi, collapses into a pile of floof on her pillow, zzzmews
L185[03:26:48] <Ocawes​ome101> https://github.com/ocawesome101/open-system-classic/blob/master/macbios.lua#L20
L186[03:30:47] <Amanda> Here's a pro gamer move for all you noobs out there, use the USB-c cable plugged into the wall outlet, not the one plugged into nothing, to charge your phone
L187[03:31:37] * Amanda consolidates her floof into a comfy snuggle around Elfi, actually sleeps
L188[03:33:12] <Ocawes​ome101> hmm good idea
L189[03:33:36] <Ocawes​ome101> :thonk:
L190[04:05:59] ⇦ Quits: ba7888b72413a16a (~ba7888b72@66.109.211.150) (Ping timeout: 190 seconds)
L191[04:20:15] <Izaya> ayy
L192[04:20:18] <Izaya> autocrafting half working
L193[04:24:25] ⇨ Joins: niconiconi (~niconicon@113.94.117.37)
L194[04:41:18] <CompanionCube> %juggle
L195[04:41:19] * MichiBot juggles with the Minitels, the non-handle part of a lightsaber, & Everything
L196[04:41:20] * MichiBot drops the Minitels which takes 5 damage
L197[04:41:21] * MichiBot drops Everything which takes 5 damage, Everything suddenly realized it had somewhere else to be!
L198[04:41:22] <MichiBot> #@%&!!
L199[04:41:36] <CompanionCube> oh no not everything
L200[04:43:19] <Ocawes​ome101> %tonk
L201[04:43:19] <MichiBot> Fopdoodle! Ocawesome101! You beat CompanionCube's previous record of <0 (By 1 hour, 39 minutes and 9 seconds)! I hope you're happy!
L202[04:43:20] <MichiBot> Ocawesome101's new record is 1 hour, 39 minutes and 9 seconds! Ocawesome101 also gained 0.00165 tonk points for stealing the tonk. Position #9 => #8
L203[04:43:37] <Ocawes​ome101> ayyy, I'm #8 now
L204[05:00:03] ⇦ Quits: niconiconi (~niconicon@113.94.117.37) (Remote host closed the connection)
L205[05:09:30] <Ocawes​ome101> @Kleadron where was that computer graphics tutorial you posted a while back when you were having issues with triangle rasterization? I'd like to look at it
L206[05:10:08] <Klea​dron> I don't remember doing anything related to that
L207[05:10:39] <Klea​dron> Not sure what tutorial you're talking about, sorry
L208[05:11:03] <Ocawes​ome101> oh, huh
L209[05:11:48] <Ocawes​ome101> someone (I thought it was you) posted something in the ComputerCraft (I think) discord a while back pertaining to triangle rasterization 🤷
L210[05:13:10] <Ocawes​ome101> also could have sworn I bookmarked it :P
L211[05:19:42] <Ocawes​ome101> ahaa, I have found it!
L212[05:19:49] <Ocawes​ome101> Thank you, Discord search feature :D
L213[05:31:17] <Klea​dron> oh i beleive that might have been MyNameIsTrez?
L214[05:31:23] <Klea​dron> oh i believe that might have been MyNameIsTrez? [Edited]
L215[05:31:52] <Ocawes​ome101> yep
L216[06:29:51] <The_St​argazer> %tonk
L217[06:29:51] <MichiBot> Consarn it! The_Stargazer! You beat Ocawesome101's previous record of 1 hour, 39 minutes and 9 seconds (By 7 minutes and 22 seconds)! I hope you're happy!
L218[06:29:53] <MichiBot> The_Stargazer's new record is 1 hour, 46 minutes and 32 seconds! The_Stargazer also gained 0.00024 (0.00012 x 2) tonk points for stealing the tonk. Position #10
L219[06:29:59] <The_St​argazer> close tonk
L220[06:31:51] <Ocawes​ome101> not as close as mine was earlier
L221[06:31:58] <Ocawes​ome101> I had like 3 minutes or something like that
L222[06:32:43] <The_St​argazer> oh damn
L223[06:32:56] <The_St​argazer> at 5:43PM?
L224[06:33:22] <The_St​argazer> Code Block pastebined https://paste.pc-logix.com/palatijuca
L225[06:33:22] <The_St​argazer> This one?
L226[06:36:24] <Ocawes​ome101> no, there was one earlier than that
L227[06:36:38] <Ocawes​ome101> I think
L228[06:38:05] <The_St​argazer> oh
L229[06:38:50] <The_St​argazer> Code Block pastebined https://paste.pc-logix.com/izinumokoq
L230[06:38:52] <The_St​argazer> this one?
L231[06:38:59] <Ocawes​ome101> yep
L232[07:11:58] ⇦ Quits: gamax92 (~gamax92@c-73-153-119-160.hsd1.co.comcast.net) (Quit: Leaving)
L233[07:25:11] ⇦ Quits: Thutmose1 (~Patrick@host-69-59-79-181.nctv.com) (Quit: Leaving.)
L234[07:36:12] ⇨ Joins: ba7888b72413a16a (~ba7888b72@66.109.211.150)
L235[07:49:52] <Forec​aster> the current record for that is
L236[07:49:55] <Forec​aster> `<MichiBot> Goshhawk! expert975! You beat your own previous record of 15 minutes and 57 seconds (By 2 seconds)! I hope you're happy!`
L237[07:50:10] <Forec​aster> closely followed by
L238[07:50:12] <Forec​aster> `<MichiBot> Avada Kedavra! Kodos! You beat your own previous record of 9 hours, 50 minutes and 53 seconds (By 3 seconds)! I hope you're happy!`
L239[07:51:54] ⇦ Quits: ba7888b72413a16a (~ba7888b72@66.109.211.150) (Quit: https://i.imgur.com/xacQ09F.mp4)
L240[07:52:55] ⇦ Quits: Ariri (~Ariri@2605:e000:1220:8039:84ae:9e92:706e:9914) (Ping timeout: 202 seconds)
L241[07:56:00] ⇨ Joins: ba7888b72413a16a (~ba7888b72@66.109.211.150)
L242[08:00:11] <The_St​argazer> and didn't someone miss by 0 seconds one?
L243[08:00:16] <The_St​argazer> and didn't someone miss by 0 seconds once? [Edited]
L244[08:00:27] <Forec​aster> yep, mimiru
L245[08:00:50] <Forec​aster> technically >0
L246[08:00:52] <Forec​aster> :P
L247[08:00:57] <The_St​argazer> No actually that was me
L248[08:01:02] <Forec​aster> which means "between 0 and 1"
L249[08:01:03] <The_St​argazer> `L112[06:07:11] <MichiBot> I'm sorry The_Stargazer, you were not able to beat Skye's record of 6 minutes and 18 seconds this time. 6 minutes and 17 seconds were wasted! Missed by <0!`
L250[08:01:32] <Forec​aster> also
L251[08:01:36] <Forec​aster> %tonk
L252[08:01:37] <MichiBot> I'm sorry Forecaster, you were not able to beat The_Stargazer's record of 1 hour, 46 minutes and 32 seconds this time. 1 hour, 31 minutes and 45 seconds were wasted! Missed by 14 minutes and 47 seconds!
L253[08:01:44] <The_St​argazer> HA
L254[08:01:51] <Forec​aster> aw, dangit, I thought enough time had passed
L255[08:01:57] <The_St​argazer> get outtonk'd
L256[08:02:04] <The_St​argazer> or wait
L257[08:02:08] <The_St​argazer> is that when you overtonk someone
L258[08:02:21] <The_St​argazer> inb4 eurobeat but it's tonkas
L259[08:02:24] <The_St​argazer> inb4 eurobeat but it's tonks [Edited]
L260[08:05:57] ⇦ Quits: Backslash_ (~Backslash@d137-186-220-152.abhsia.telus.net) (Read error: Connection reset by peer)
L261[08:32:24] ⇨ Joins: Inari (~Pinkishu@pD9E8FAA3.dip0.t-ipconnect.de)
L262[08:41:16] <Izaya> Argh, my plans have been foiled!
L263[08:41:27] <Forec​aster> again
L264[08:41:37] <Inari> %pet Izaya
L265[08:41:37] <MichiBot> Inari is brushing Izaya with the crab emoji 🦀. Izaya regains 1d4 => 1 hit points!
L266[08:41:47] <Izaya> Turns out that different drawer controllers have different views of the shared drawer inventory
L267[08:42:57] <Izaya> so to use multiple I/O points I need to keep track of the view from each drawer controller slave
L268[08:46:32] <Izaya> That complicates things because I can't just export all the components over RPC
L269[08:51:28] <Izaya> Guess I'll shift half the API onto the other machine and see how that goes.
L270[08:59:39] ⇨ Joins: ben_mkiv (~ben_mkiv@i5E86B06F.versanet.de)
L271[09:39:56] ⇨ Joins: Inari|2 (~Pinkishu@pD9E8E8CD.dip0.t-ipconnect.de)
L272[09:42:14] ⇦ Quits: Inari (~Pinkishu@pD9E8FAA3.dip0.t-ipconnect.de) (Ping timeout: 190 seconds)
L273[09:43:08] ⇨ Joins: niconiconi (~niconicon@59.34.140.115)
L274[11:02:33] ⇨ Joins: Vexatos (~Vexatos@port-92-192-7-98.dynamic.as20676.net)
L275[11:02:33] zsh sets mode: +v on Vexatos
L276[11:37:34] <ben_mkiv> is the command to list components just component or components?
L277[11:54:35] <Forec​aster> is the what the what or what?
L278[11:54:37] <Forec​aster> what
L279[11:54:52] <Forec​aster> oh
L280[11:55:10] <Forec​aster> it should be `components` for the list program in OpenOS
L281[12:02:02] <ben_mkiv> ok, thanks
L282[12:17:59] ⇦ Quits: niconiconi (~niconicon@59.34.140.115) (Ping timeout: 202 seconds)
L283[12:42:04] ⇨ Joins: Victor_sueca (~Victor_su@90.165.120.190)
L284[12:47:42] <Inari|2> %pet Amanda
L285[12:47:43] ⇦ Quits: ba7888b72413a16a (~ba7888b72@66.109.211.150) (Read error: Connection reset by peer)
L286[12:47:43] <MichiBot> Inari|2 is brushing Amanda with a Magic cake engine! (25%). Amanda regains 1d4 => 1 (Magic +2) => 3 hit points!
L287[12:48:02] <Inari|2> Tasty
L288[12:48:19] ⇨ Joins: ba7888b72413a16a (~ba7888b72@66.109.211.150)
L289[12:51:18] * Amanda meows at Inari
L290[12:51:22] <Inari|2> Meow
L291[12:51:26] <Amanda> How'd you know I was up!?
L292[12:51:40] <Inari|2> Fox intiuition
L293[12:52:11] <Amanda> Hrm. Who'd have thought the chicken of the woods has such good intuition
L294[12:55:26] <Inari|2> %bap Amanda
L295[12:55:26] <MichiBot> Inari|2 baps Amanda with 80lbs of drywall!
L296[12:56:00] <Inari|2> Amanda: how baout some more venison for breakfast?
L297[12:56:26] <Amanda> No thanks
L298[12:57:45] <Inari|2> Psh
L299[12:57:50] <Inari|2> You silly housecat
L300[13:02:27] <Inari|2> So, anyone hyped for Magneat?
L301[13:02:59] ⇨ Joins: niconiconi (~niconicon@59.34.140.115)
L302[13:04:20] <Amanda> What's that, some new pokemon?
L303[13:04:30] <Inari|2> magneat is a mod by vazkii
L304[13:04:31] <Inari|2> https://twitter.com/Vazkii/status/1226566082431012864
L305[13:04:33] <MichiBot> Sun Feb 09 11:58:37 CST 2020 @Vazkii: Soon <https://t.co/wxA39IRczH&gt;
L306[13:05:58] <Amanda> I see
L307[13:12:05] <FLO​RANA> wait `string.char` doesn't exist?
L308[13:19:03] ⇦ Quits: niconiconi (~niconicon@59.34.140.115) (Quit: Proudly using WocChat!)
L309[14:25:19] ⇨ Joins: Webchat039 (webchat@residencial-168-197-107-105.gtbatelecom.com.br)
L310[14:25:59] ⇦ Quits: Webchat039 (webchat@residencial-168-197-107-105.gtbatelecom.com.br) (Client Quit)
L311[14:27:14] <Forec​aster> %tonk
L312[14:27:15] <MichiBot> Dogast! Forecaster! You beat The_Stargazer's previous record of 1 hour, 46 minutes and 32 seconds (By 4 hours, 39 minutes and 5 seconds)! I hope you're happy!
L313[14:27:16] <MichiBot> Forecaster's new record is 6 hours, 25 minutes and 38 seconds! Forecaster also gained 0.0093 (0.00465 x 2) tonk points for stealing the tonk. Position #4
L314[14:45:34] ⇦ Quits: ben_mkiv (~ben_mkiv@i5E86B06F.versanet.de) (Ping timeout: 190 seconds)
L315[14:52:19] <Amanda> %choose space factory or space fishies
L316[14:52:20] <MichiBot> Ama​nda: If I had a gold nugget for every time someone asked me about "space fishies"
L317[14:52:53] <Amanda> Hrm. I think I'll play space factory instead.
L318[14:53:46] <Izaya> https://social.shadowkat.net/media/95b36cbd29a858ca2e31ac12c9d3030a7e4f5453be24d60ea8cc7a731f4fd48b.jpg
L319[14:55:14] <Forec​aster> "rely me on anything"
L320[14:59:02] <Ocawes​ome101> @FLORANA it should, unless you’re overwriting it. What error are you gwtting?
L321[14:59:09] <Ocawes​ome101> Getting*
L322[15:00:14] <Elfi> Ah, the emu war
L323[15:00:16] <FLO​RANA> wait i found the problem
L324[15:00:56] <Inari|2> Amanda: whats space factory anyway?
L325[15:01:07] <Amanda> Inari|2: Satisfactory
L326[15:01:30] <Izaya> we won the second emu war with the help of the british
L327[15:03:37] <Inari|2> https://www.youtube.com/watch?v=QOPZQHTNUs0
L328[15:03:38] <MichiBot> The Great Emu War | length: 4m 25s | Likes: 96,886 Dislikes: 951 Views: 4,122,339 | by Sam O'Nella Academy | Published On 27/7/2016
L329[15:04:03] <FLO​RANA> NO!! YOU'LL NEVER GET YOUR FILTHY HANDS ON MY ROMS!!!!
L330[15:04:22] <Izaya> https://en.wikipedia.org/wiki/Emu_Field,_South_Australia
L331[15:35:52] <MichiBot> Timed ban of ~c8h10n4o2@47.196.103.161 Expired. Placed by: Forecaster
L332[15:39:24] <MichiBot> @Forecaster REMINDER: unignore pieguy
L333[15:41:37] <Forecaster> %unignore ThePieGuy
L334[15:41:39] <MichiBot> ERROR!
L335[15:42:07] <Ocawes​ome101> It’s ThePiGuy24
L336[15:43:13] <Forecaster> oh well
L337[15:43:43] <Forecaster> %remindme 24h another attempt
L338[15:43:44] <MichiBot> I'll remind you about "another attempt" at 02/23/2020 09:43:43 AM
L339[15:45:17] <Amanda> Reincarnate in Purgitory
L340[15:45:47] <Forec​aster> wut
L341[15:48:45] <Amanda> Sorry, it's re-establish infernal pastries
L342[15:55:07] <Amanda> Responsible Illegal Phishing?
L343[16:05:14] <Forec​aster> close enough
L344[16:21:54] <Ocawes​ome101> https://www.reddit.com/r/aww/comments/f7r2o5/always_wave_back_to_a_cat_who_is_waving_to_you/
L345[16:59:53] <Inari|2> Amanda: Is satisfactory still early access?
L346[17:00:26] <Amanda> Inari|2: yup. Update 3 is in experimental though
L347[17:00:35] <Inari|2> Ah
L348[17:04:01] <Forec​aster> tubes!
L349[17:10:03] <DaCompu​terNerd> ~~now you can build the internet~~
L350[17:13:03] ⇨ Joins: ben_mkiv (~ben_mkiv@i5E86B776.versanet.de)
L351[17:27:54] <Forec​aster> But only if you fill them with cats
L352[17:30:51] <Izaya> Is it possible to hit the ballmer peak on the come-down?
L353[17:30:59] <Izaya> Because if it is, I think I just did.
L354[17:35:04] ⇨ Joins: Thutmose (~Patrick@host-69-59-79-181.nctv.com)
L355[17:46:23] ⇨ Joins: gamax92 (~gamax92@c-73-153-119-160.hsd1.co.comcast.net)
L356[17:46:23] zsh sets mode: +v on gamax92
L357[17:57:34] <dequbed> Izaya: Probably
L358[17:58:08] <Izaya> Autocrafting is go >:D
L359[17:59:17] <dequbed> Izaya Prime delivery of crafted results with drones when?
L360[17:59:25] <Izaya> real soon now
L361[17:59:34] <Izaya> hey wanna know something that's fuckin bullshit?
L362[17:59:43] <dequbed> V?
L363[18:00:02] <Izaya> if you have a drawer controller and a drawer controller slav- yes, but besides that -e, you'd assume they'd see the same inventory, right?
L364[18:00:33] <dequbed> Well unless they mean master/slave the IDE way .. yes?
L365[18:00:45] <Izaya> well
L366[18:00:46] <Izaya> they do
L367[18:00:49] <Izaya> but in different orders
L368[18:01:04] <Izaya> :D
L369[18:01:12] <dequbed> Great
L370[18:01:27] <dequbed> You still do inv access using order don't you?
L371[18:01:39] <Izaya> So you can't tell a remote machine "take 12 items from slot 211" and expect to get what you asked for
L372[18:01:42] <Izaya> :D
L373[18:02:03] <dequbed> Open an issue?
L374[18:02:07] <Izaya> On the upside, what I'm using this stuff for is fine with fuzzy matching, but it's just annoying
L375[18:02:16] <Izaya> I imagine it's intentional, for performance reasons
L376[18:02:34] <Izaya> Returns the closest drawers first.
L377[18:02:53] <Izaya> But anyway
L378[18:02:54] <dequbed> Maybe. In which case a friendly written issue shouldn't ruffle any feathers, will it?
L379[18:03:21] <Izaya> now I've offloaded both inventory searching and crafting to a robot
L380[18:03:33] <Izaya> a single RPC call that takes a recipe as a table
L381[18:03:35] <Izaya> :D
L382[18:03:40] <dequbed> neat
L383[18:03:52] <Izaya> It's not recursive yet
L384[18:04:00] <Izaya> but I need to write something for recipe storage first.
L385[18:04:14] <dequbed> Books!
L386[18:04:25] <Izaya> [OpenPrinter intensifies]
L387[18:04:40] <dequbed> Can you read books or printed pages?
L388[18:04:52] <Izaya> Yeah it has a scanner mode
L389[18:04:56] <dequbed> Cool
L390[18:05:11] <Izaya> though, I was working more along the lines of
L391[18:05:15] <dequbed> Or tapes. "Waiting for tape "Basic crafting recipes volume I" to be loaded..."
L392[18:05:18] <Izaya> tape drive to store large volumes of recipes
L393[18:05:27] <Izaya> with an external - or internal - index
L394[18:06:16] <Izaya> either way, the index should be in memory
L395[18:06:23] <Izaya> because reading that will be painful
L396[18:06:25] <Izaya> :D
L397[18:06:44] <Izaya> Then I just need to massage this crafttweaker debug output into something I can read with OC
L398[18:06:56] <Izaya> and I'll be able to autocraft everything
L399[18:06:58] <Izaya> :D
L400[18:08:31] <Izaya> sure it's a little less immersive than having to save recipes
L401[18:08:34] <Izaya> but, technicalities
L402[18:08:40] <dequbed> Hm, problem is the index will be within one oder of magnitude of the actual values. Entire index in RAM may prove difficult
L403[18:09:18] ⇦ Quits: Victor_sueca (~Victor_su@90.165.120.190) (Read error: Connection reset by peer)
L404[18:09:47] <dequbed> If seek times are negligible, why not just put a heap structure on the tape?
L405[18:10:00] <Izaya> component call limit
L406[18:10:31] <Izaya> though it may be practical to batch read parts of the index
L407[18:10:32] <Izaya> hmhm
L408[18:10:43] <Brisingr​ Aerowing> OCDevices has a block that puts the recipe for an item into a database component.
L409[18:10:59] <Brisingr​ Aerowing> You probably don't have it though.
L410[18:10:59] <Izaya> Don't databases have like, really small storage?
L411[18:11:13] <dequbed> Problem is you get little by indexing such small values. Collating is worth much more. DHT?
L412[18:12:36] <dequbed> Or split heap. All recipes of cat `minecraft:` are in heap XYZ. Heap XYZ starts at offset NNN on tape MMM.
L413[18:12:43] <Brisingr​ Aerowing> https://github.com/ben-mkiv/OCDevices/wiki/recipeDictionary
L414[18:13:03] <Brisingr​ Aerowing> You would need multiple most likely.
L415[18:13:24] <Izaya> A few thousand, if 25 recipes for a T2 database is anything to go by.
L416[18:15:27] <Brisingr​ Aerowing> You could add the recipes to the DB, then parse them into another data format (e.g. JSON or a Lua table) that is stored somewhere else. Probably not worth it, though.
L417[18:15:45] <dequbed> ^ There's your immersive alternative
L418[18:15:45] <Izaya> aaah, an immersive way to get the recipe
L419[18:15:54] <Izaya> I mean, I can put the recipe in the robot and save it
L420[18:16:01] <Izaya> but that's just a lot of work
L421[18:16:03] <Izaya> :p
L422[18:17:29] ⇨ Joins: Victor_sueca (~Victor_su@90.165.120.190)
L423[18:18:20] <Brisingr​ Aerowing> There's also CraftDumper, which outputs a CSV file that can be turned into something else with a bit of coding.
L424[18:18:33] <Brisingr​ Aerowing> I may write a quick script for that.
L425[18:18:36] <Izaya> I'm using the output from CraftTweaker at the moment
L426[18:25:43] ⇦ Quits: Victor_sueca (~Victor_su@90.165.120.190) (Read error: Connection reset by peer)
L427[18:38:55] ⇨ Joins: Inari (~Pinkishu@pD9E39E20.dip0.t-ipconnect.de)
L428[18:39:32] <M​GR> %oclogs
L429[18:39:33] <MichiBot> M​​GR: https://irclogs.pc-logix.com/list?chan=oc
L430[18:43:50] ⇦ Quits: Inari|2 (~Pinkishu@pD9E8E8CD.dip0.t-ipconnect.de) (Ping timeout: 378 seconds)
L431[18:46:21] <Elfi> Well, I'm done with SS13 for the next while. Whee!
L432[18:52:19] ⇦ Quits: Vexatos (~Vexatos@port-92-192-7-98.dynamic.as20676.net) (Ping timeout: 202 seconds)
L433[19:07:06] ⇨ Joins: Vexatos (~Vexatos@port-92-192-84-183.dynamic.as20676.net)
L434[19:07:06] zsh sets mode: +v on Vexatos
L435[19:09:02] <Forec​aster> onto SS14!
L436[19:09:25] <Izaya> argh
L437[19:09:27] <Kristo​pher38> Izaya: are you writing an autocrafter? that's neat
L438[19:09:28] <Izaya> this is difficult to parse
L439[19:09:38] <Izaya> hi yes it's to go with my storage system
L440[19:10:03] <Izaya> transposer + drawer controller for storage system, robot for crafting
L441[19:10:38] <Kristo​pher38> I imagine I'd go with that route as well
L442[19:10:47] <Kristo​pher38> well, for vanilla it'd be a lot of chests
L443[19:11:17] <Kristo​pher38> Didn't squiddev say that autocrafting is np-hard?
L444[19:12:03] * Izaya shrugs
L445[19:12:08] <Izaya> the way I see it
L446[19:12:13] <Forec​aster> no-problem-hard!
L447[19:12:13] <Izaya> it's a lot of matching and recusion
L448[19:12:27] <Kristo​pher38> well, I guess for most applications it's probably fine
L449[19:12:31] <Izaya> once you massage the data into the right shape, anyway
L450[19:17:55] <Izaya> alright well
L451[19:17:57] <Izaya> 1.1M of recipes
L452[19:17:59] <Izaya> that uh
L453[19:18:02] <Izaya> could be worse I guess
L454[19:18:49] <Kristo​pher38> what's their format?
L455[19:19:05] <Kristo​pher38> is it json, csv, lua tables?
L456[19:19:11] <Izaya> recipe as Lua table, one per line
L457[19:19:20] <Izaya> has the output item at the start
L458[19:19:25] <Izaya> separated by a tab
L459[19:19:45] <Kristo​pher38> you could post an example
L460[19:20:00] <Kristo​pher38> but I get the idea
L461[19:20:09] <Izaya> opencomputers:disassembler9 {"ore:oc:materialCU", "ore:paneGlass", "ore:oc:analyzer", [5]="projectred-core:resource_item:410", [7]="ore:obsidian", [9]="ore:ingotSteel", [10]="minecraft:lava_bucket", [11]="ore:ingotSteel"}
L462[19:20:09] <Adorabl​eCatgirl> Izaya: use BLT no balls
L463[19:20:40] <Izaya> AdorableCatgirl: bitch I need to be able to search this easily without loading it all into memory
L464[19:21:36] <Kristo​pher38> with enough compression i bet you could store it all in memory
L465[19:22:03] <Izaya> I am very iffy about keeping the lot in memory with this amount
L466[19:22:07] <Kristo​pher38> as in, with enough indexing
L467[19:22:17] <Izaya> my controller machine has 512K
L468[19:22:52] <Ker​idos> Oh my, did not use robots for long time, forgot how to actually program them
L469[19:23:11] <Forec​aster> you yell at them until they obey, right?
L470[19:23:34] <Ker​idos> My instincts tell me that might not work 😉
L471[19:23:49] <Forec​aster> hm, no I'm pretty sure it definitely does
L472[19:24:01] <Forec​aster> but you have to yell in binary
L473[19:24:09] <Ker​idos> bios?
L474[19:24:29] <Ker​idos> or hard drive with preexisting "firmware"?
L475[19:24:58] <Forec​aster> robots work exactly like a computer
L476[19:25:07] <Forec​aster> drones require bios level programming
L477[19:25:17] <Kristo​pher38> From my empirical testing it's 22 bytes per key-value pair in a flat 1D table
L478[19:25:45] <Ker​idos> Can I swap Hard drives in drone without disassembling?
L479[19:25:54] <Forec​aster> drones don't have harddrives
L480[19:25:54] <Kristo​pher38> How many recipes have you got?
L481[19:26:09] <Izaya> 4376
L482[19:26:12] <Forec​aster> robots do, but you can't swap without disassembling no
L483[19:26:34] <Ker​idos> hm, any way to change programming while drone is assembled?
L484[19:26:50] <Izaya> eeprom.set
L485[19:26:51] <Forec​aster> you can swap the EEPROM in a drone
L486[19:26:59] <Ker​idos> jeez
L487[19:27:07] <Ker​idos> and I keep saying drone but mean robot
L488[19:27:12] <Ker​idos> head -> table
L489[19:27:22] <Forec​aster> you can put a disk drive in it
L490[19:27:32] <Izaya> unable to cast head to type table
L491[19:27:35] <Forec​aster> use floppy disk to load things onto it
L492[19:27:43] <Kristo​pher38> You'd need at least 1MB
L493[19:28:03] <Ker​idos> ah so copy stuff to floppy card and use that to program?
L494[19:28:04] <Izaya> I'm also keeping a rather large inventory index in memory
L495[19:28:14] <Izaya> so keeping the whole thing in memory just won't work
L496[19:28:15] <Kristo​pher38> And an optimization in how you store those recipes
L497[19:28:25] <Kristo​pher38> Oh I see
L498[19:28:44] <Izaya> Going to have to do something creative with tapes, I think.
L499[19:28:47] <Kristo​pher38> How many entries does this inventory index have?
L500[19:28:58] <Izaya> ~250, presently
L501[19:29:20] <Ker​idos> hm, couldnt you use some sort of reference index for all the different recipes
L502[19:29:23] <Izaya> eventually it'll grow to 4000+ but I intend to have a better method than keeping it in memory by then
L503[19:29:45] <Ker​idos> instead of using sth. like minecraft:iron_ingot you assign it some index n
L504[19:29:51] <Ker​idos> and use that in the recipe definitions
L505[19:30:16] <Ker​idos> so you have a table id -> ingredient
L506[19:30:40] <Ker​idos> and a structure recipes with 3x3 matrix id -> product (or the other way round)
L507[19:31:08] <Adorabl​eCatgirl> Izaya: It should be seekable i think
L508[19:31:37] <SquidDev> Kristo​pher38: I think we worked out it was P-SPACE hard. You can reduce Petri nets to autocrafting too
L509[19:32:04] <Kristo​pher38> Yeah you'd need another ~700KB for that inventory index if it grows to 4000 items
L510[19:32:39] <Kristo​pher38> SquidDev: what does that mean in practical terms? Not really educated on theoretical part of computer science
L511[19:32:46] <Adorabl​eCatgirl> Ozaya: i will make seekable BLT b e t
L512[19:32:51] <Adorabl​eCatgirl> *Izaya
L513[19:34:08] <Izaya> https://dostatic.cybre.space/media_attachments/files/007/351/342/original/dd0e2e601b572e01.jpg
L514[19:35:27] <SquidDev> Means it's O(ouch)
L515[19:35:53] <Adorabl​eCatgirl> Izaya: wut
L516[19:36:15] <SquidDev> In practical terms, doesn't mean anything special - NP is bad enough, so while P-Space is much worse, at that point who's counting?
L517[19:36:23] <Izaya> it's a jark
L518[19:36:30] <Izaya> (jeans shark)
L519[19:37:05] <SquidDev> But in theory, it means it uses a polynomial amount of memory (and thus an exponential amount of time).
L520[19:37:15] <Forec​aster> why did someone photoshop that...
L521[19:47:38] <Z​ef> So how do I actually get stuff onto the ROM module in TIS-3D?
L522[19:47:55] <Z​ef> I'm trying to right click a ram module, and the ram module's lights go out after I do
L523[19:48:08] <Z​ef> Then I place the rom one down, but any reads from it are 0 as far as I can tell
L524[20:06:06] <Elfi> j-jark
L525[20:06:15] <Elfi> ...please don't ruin blahaj for me
L526[20:06:26] <Ker​idos> Thanks for the help guys 🙂
L527[20:06:32] <Inari> blahaj?
L528[20:06:48] <Elfi> https://www.ikea.com/us/en/images/products/blahaj-soft-toy__0710175_PE727378_S4.JPG blahaj.
L529[20:07:18] <Inari> I see
L530[20:07:30] <Forec​aster> Blå haj means blue shark in Swedish
L531[20:07:33] <Elfi> yep
L532[20:07:59] <Elfi> ...though I would be amused if someone did take a blahaj apart, used its pattern to cut some denim, and then sewed it together to create jark
L533[20:08:46] <Elfi> Probably with the embroidery patched back on
L534[20:08:53] <Forec​aster> I don't know why you would...
L535[20:09:00] <Forec​aster> I'd prefer that one
L536[20:09:04] <Forec​aster> over a denim one
L537[20:09:05] <Elfi> I mean yeah, blahaj is cuter
L538[20:09:11] <Elfi> But Izaya went and posted a jark
L539[20:09:16] <Elfi> so we have to deal with that curse
L540[20:09:16] <Forec​aster> also denim is not soft...
L541[20:09:25] <Elfi> I mean neither are sharks usually
L542[20:09:31] <Izaya> finally getting the idea of this whole drifting thing
L543[20:09:58] <Elfi> I think I am going to squeeze and hug my blahaj a bit to see if I can get this last pang of depression off my chest
L544[20:10:00] <Forec​aster> which is why nobody lets sharks sleep in their beds
L545[20:10:01] <Forec​aster> probably
L546[20:10:08] <Elfi> >_>
L547[20:10:14] <Izaya> at lower speeds you're only suggesting with the steering when you hit the handbrake and then you have to work throttle and steering to stay pointed in the right direction
L548[20:10:14] * Elfi hides blahaj under her bedsheets
L549[20:10:32] <Forec​aster> I mean real sharks obviously
L550[20:10:38] <Forec​aster> the not soft ones
L551[20:10:43] <Elfi> ...
L552[20:10:43] <Izaya> wait
L553[20:10:46] * Elfi looks at mastodon
L554[20:10:48] <Izaya> you're not meant to have sharks in your bed?
L555[20:10:48] <Elfi> bet
L556[20:11:13] <dequbed> Izaya: No, they could snack your cats
L557[20:11:24] <Forec​aster> I don't know what is happening now
L558[20:11:27] <Izaya> q_q
L559[20:11:36] <Izaya> do you nerds like my car https://0x0.st/iZIe.png
L560[20:11:55] <dequbed> Too many wheels for a proper Izaya vehicle.
L561[20:12:16] <Izaya> BeamNG can't do bikes properly q_q
L562[20:13:26] ⇨ Joins: Ariri (~Ariri@2605:e000:1220:8039:7457:24ba:8a5e:b442)
L563[20:15:20] * Amanda snugs Elfi and the shark
L564[20:16:20] <Izaya> Keep fishtailing on the exit :|
L565[20:29:17] <ThePi​Guy24> beamng does not appeciate integrated graphics
L566[20:29:39] <ThePi​Guy24> and by "does not appreciate" i mean straight up just crashes
L567[20:30:01] <Izaya> that works
L568[20:31:03] <ThePi​Guy24> the igpu workaround branch mostly works but that is an older version
L569[20:34:09] <ThePi​Guy24> hmm this tv only supports 1024x768 vga
L570[20:34:23] <ThePi​Guy24> despite being 1920x1080 screen
L571[20:38:00] <Izaya> yup
L572[20:38:41] ⇨ Joins: Backslash (~Backslash@d137-186-220-152.abhsia.telus.net)
L573[20:40:02] <Brisingr​ Aerowing> https://reddit.com/r/BoneAppleTea/comments/f7rz3w/climb_at_change/
L574[20:40:42] <Brisingr​ Aerowing> My brain threw a parse error while reading that tweet.
L575[20:41:29] <Sagh​etti> :HyperThonkSpin:
L576[20:43:33] ⇦ Quits: Thutmose (~Patrick@host-69-59-79-181.nctv.com) (Read error: Connection reset by peer)
L577[20:45:17] ⇨ Joins: Thutmose (~Patrick@host-69-59-79-181.nctv.com)
L578[21:00:33] <Forec​aster> %tonkout
L579[21:00:34] <MichiBot> Zounderkite! Forecaster! You beat your own previous record of 6 hours, 25 minutes and 38 seconds (By 7 minutes and 40 seconds)! I hope you're happy!
L580[21:00:35] <MichiBot> Forecaster has tonked out! Tonk has been reset! They gained 0.006 tonk points! plus 0.01 bonus points for consecutive hours! Current score: 0.25977, Position #4
L581[21:00:47] <CompanionCube> goddamit Forecaster
L582[21:00:58] <CompanionCube> i was just debating if tonkout or tonk
L583[21:00:59] <Forec​aster> mwaha
L584[21:11:36] ⇨ Joins: Backslash_ (~Backslash@d137-186-220-152.abhsia.telus.net)
L585[21:13:29] ⇦ Quits: Backslash (~Backslash@d137-186-220-152.abhsia.telus.net) (Ping timeout: 190 seconds)
L586[21:21:24] ⇦ Quits: Backslash_ (~Backslash@d137-186-220-152.abhsia.telus.net) (Read error: Connection reset by peer)
L587[21:22:25] ⇨ Joins: Backslash (~Backslash@d137-186-220-152.abhsia.telus.net)
L588[21:28:04] ⇨ Joins: Backslash_ (~Backslash@d137-186-220-152.abhsia.telus.net)
L589[21:28:10] <Forec​aster> %tonk
L590[21:28:10] <MichiBot> Willikers! Forecaster! You beat your own previous record of <0 (By 3 minutes and 55 seconds)! I hope you're happy!
L591[21:28:11] <MichiBot> Forecaster's new record is 3 minutes and 55 seconds! No points gained for stealing from yourself. (Lost out on 0.00007)
L592[21:32:52] ⇦ Quits: Backslash (~Backslash@d137-186-220-152.abhsia.telus.net) (Ping timeout: 378 seconds)
L593[21:49:08] <CompanionCube> 3 minutes...that's not right.
L594[21:49:50] <Forec​aster> you are correct, that's because I accidentally did %tonkout with the wrong bot in the testing channel
L595[21:50:17] <Forec​aster> causing it to reset since nobody had tonked since the last tonkout yet
L596[22:01:00] <Forecaster> %restart
L597[22:01:01] ⇦ Quits: MichiBot (~MichiBot@eos.pc-logix.com) ()
L598[22:01:09] <Forecaster> what no, there's nothing new
L599[22:01:12] <Forecaster> nothing at all
L600[22:01:23] ⇨ Joins: MichiBot (~MichiBot@eos.pc-logix.com)
L601[22:01:24] zsh sets mode: +v on MichiBot
L602[22:01:57] <Forec​aster> %tonkpoints
L603[22:02:04] <MichiBot> Forec​aster: You currently have 0.25977 points! Position #4 Need 0.05505 more points to pass simon816!
L604[22:04:31] <CompanionCube> %tonkpoints
L605[22:04:32] <MichiBot> Compan​ionCube: You currently have 0.41957 points! Position #2 Need 0.00531 more points to pass Lizzian!
L606[22:06:25] <Lizzian> :O
L607[22:06:46] <Forec​aster> I should probably add the anti-ping thing to that...
L608[22:12:03] <Forecaster> %restart for anti-pingy
L609[22:12:04] ⇦ Quits: MichiBot (~MichiBot@eos.pc-logix.com) ()
L610[22:12:28] ⇨ Joins: MichiBot (~MichiBot@149.56.6.196)
L611[22:12:29] zsh sets mode: +v on MichiBot
L612[22:19:14] <Ocawes​ome101> %tonkpoints
L613[22:19:16] <MichiBot> Ocawes​ome101: You currently have 0.03273 points! Position #8 Need 0.01033 more points to pass ThePi​Guy24!
L614[22:22:36] <ThePi​Guy24> %tonkpoints
L615[22:22:47] <ThePi​Guy24> oh yeah i forgot im ignored
L616[22:23:57] <ThePi​Guy24> because forecaster got angery about xkcd spam
L617[22:24:28] <Lizzian> it's in the rules that you generally shouldn't spam
L618[22:24:37] <Lizzian> %unignore @ThePiGuy24
L619[22:24:38] <MichiBot> ERROR!
L620[22:24:43] <Lizzian> %unignore ThePiGuy24
L621[22:24:43] <MichiBot> ERROR!
L622[22:24:50] * Lizzian gives up
L623[22:24:53] <ThePi​Guy24> ohdear
L624[22:24:58] <Lizzian> %ignorelist
L625[22:24:59] <MichiBot> Liz​zian: Ignored Users: [280070658820538370, lolno, ThePi​Guy24]
L626[22:28:12] <Forec​aster> yeah, when I ask for less spam, and as a response, two people immediately do more of it, you bet you'll get ignored
L627[22:29:52] <Forec​aster> if that surprises you then you need to `require("common_sense")`
L628[22:31:58] <Sagh​etti> `nil`
L629[22:44:48] <Ocawes​ome101> hah
L630[22:49:08] ⇦ Quits: ben_mkiv (~ben_mkiv@i5E86B776.versanet.de) (Ping timeout: 378 seconds)
L631[23:14:25] <DaCompu​terNerd> %xkcd
L632[23:14:25] <MichiBot> Random XKCD Comic: https://xkcd.com/463/
L633[23:15:24] <ThePi​Guy24> hmmmm
L634[23:15:44] <Z​ef> hey, in case you didn't know
L635[23:15:52] <Z​ef> xkcd can be loaded in your web browser
L636[23:18:27] <Amanda> Here, have a %xkcd you can run yourself: https://xkcd.com/random
L637[23:18:53] <Amanda> damn
L638[23:19:00] <Amanda> was a good attempt for a blind guess
L639[23:19:20] <Amanda> Apparently it's actually: https://c.xkcd.com/random/comic/
L640[23:29:39] <vifino> sup
L641[23:34:18] <Forec​aster> soup!
L642[23:37:45] <Sagh​etti> s o u p
L643[23:39:38] <Z​ef> suop
L644[23:41:44] <Sagh​etti> spuo
L645[23:42:21] <Forec​aster> %flip soup
L646[23:42:21] <MichiBot> Forec​​aster: (╯°□°)╯dnos
L647[23:43:42] <Sagh​etti> dnos
L648[23:43:52] <Sagh​etti> %flip dnos
L649[23:43:52] <MichiBot> Sagh​​etti: (╯°□°)╯soup
L650[23:43:59] <Sagh​etti> yes
L651[23:49:33] <Z​ef> oh no
L652[23:49:53] <Ocawes​ome101> what pattern can I use to `gmatch` `"/Libraries;/System/Libraries"` into segments, divided by the `;`?
L653[23:50:11] <Ocawes​ome101> I've currently got `(^[%;]+`
L654[23:50:28] <Ocawes​ome101> `(^[%;]+)`*
L655[23:50:43] <Z​ef> oh no
L656[23:50:59] <Ocawes​ome101> what
L657[23:53:07] <Adorabl​eCatgirl> oh no
L658[23:53:17] <Adorabl​eCatgirl> oh yeah i should post my screenshot of osditool
L659[23:54:14] <Adorabl​eCatgirl> and only now my PC decides to lock up
L660[23:54:23] <Adorabl​eCatgirl> i'm loving 5.5.4
<<Prev Next>> Scroll to Top