<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:10:11] <Forecaster> Connect the network link to the same side
L2[00:10:24] <Forecaster> %tonk
L3[00:10:25] <MichiBot> Avada Kedavra! Forecaster! You beat Kodos's previous record of <0 (By 28 minutes and 17 seconds)! I hope you're happy!
L4[00:10:26] <MichiBot> Forecaster's new record is 28 minutes and 17 seconds! Forecaster also gained 0.00047 tonk points for stealing the tonk.
L5[00:13:34] <The_Stargazer> Ah
L6[00:13:51] <The_Stargazer> Can you pass *any* name for `for k,v in pairs(myTable)`
L7[00:13:55] <The_Stargazer> Can you pass *any* name to `for k,v in pairs(myTable)` [Edited]
L8[00:15:02] <The_Stargazer> (instead of just k,v could you use `for` example, var1,var2
L9[00:17:09] <ayangd> It can be anything
L10[00:17:30] <The_Stargazer> Ok, good
L11[00:17:31] <The_Stargazer> Hmm
L12[00:17:45] <ayangd> For foo, bar in ...
L13[00:17:50] <The_Stargazer> why isn't my safeExit thread pulling `interrupt`?
L14[00:18:48] <ayangd> Look what's going on in the thread?
L15[00:19:21] <The_Stargazer> ?
L16[00:19:39] <ayangd> Debug it or sth
L17[00:19:41] <The_Stargazer> It's supposed to pull `interrupt` and then close all GERTi sockets, for a safe and clean exist.
L18[00:19:55] <The_Stargazer> Ok, I'll add my standard `print()` call
L19[00:20:52] <The_Stargazer> Oh I see
L20[00:20:57] <The_Stargazer> I forgot `os.exit()`
L21[00:21:06] <The_Stargazer> I'm stupid
L22[00:21:18] <The_Stargazer> ...but it still don't work?
L23[00:21:26] <The_Stargazer> Hmm
L24[00:21:41] <ayangd> Maybe it only stops the current thread?
L25[00:21:43] <The_Stargazer> is it because `clients` is an empty table?
L26[00:21:51] <The_Stargazer> Could be
L27[00:21:57] <The_Stargazer> And that's possible
L28[00:22:11] <The_Stargazer> hang on, to OCDoc I go!
L29[00:22:46] <The_Stargazer> example code is always handy to look at
L30[00:23:04] <ayangd> Yea
L31[00:23:42] <The_Stargazer> Okay it WAS because I forgot os.exit()
L32[00:23:50] <The_Stargazer> And when I added it I put it in the wrong place
L33[00:24:00] <The_Stargazer> the example has it at the end
L34[00:24:06] <The_Stargazer> after `thread.waitForAny()`
L35[00:24:30] <The_Stargazer> right, now I need to look at why it's not receiving GERTi data
L36[00:26:52] <The_Stargazer> ok, it receives the connection ID event, all good.
L37[00:29:10] <The_Stargazer> what does `Attempt to concatenate field '?' (a nil value)` mean? What is `?`?
L38[00:30:18] <The_Stargazer> Okay it's because it's trying to access a nil index of a table
L39[00:30:32] <The_Stargazer> (which doesn't make sense because `data` shouldn't be nil)
L40[00:31:34] <ayangd> Maybe it's out of range?
L41[00:32:19] <ayangd> Every unassigned table key, the value is `nil`
L42[00:32:55] <The_Stargazer> Hmm..
L43[00:33:00] <The_Stargazer> No, it's the first index
L44[00:33:03] <The_Stargazer> `data[1]`
L45[00:33:27] <ayangd> Or it's never assigned at the first place
L46[00:33:31] <The_Stargazer> Unless I'm reading socket data incorrectly?
L47[00:33:49] <ayangd> Debug it again..
L48[00:34:39] <The_Stargazer> that's what I'm doing
L49[00:34:45] <The_Stargazer> I'm in the Lua interpreter
L50[00:34:50] <The_Stargazer> it opens the socket fine
L51[00:35:13] <The_Stargazer> and I can write data to the other computer.
L52[00:36:05] <ayangd> In the program, try inserting `print(data[1], data[2])`
L53[00:36:12] <The_Stargazer> data is nil
L54[00:36:21] <ayangd> Oh
L55[00:36:24] <The_Stargazer> so that'll throw `attempt to concatenate ? (a nil value)`
L56[00:36:34] <The_Stargazer> I'm trying to figure out why it *is* nil
L57[00:36:39] <The_Stargazer> when it *shouldn't* be nil
L58[00:36:57] <ayangd> What instruction is it?
L59[00:37:21] <The_Stargazer> ?
L60[00:37:33] <The_Stargazer> Neither computer is reading data from each other's socket
L61[00:37:34] <The_Stargazer> Neither computer is reading data from each other's sockets [Edited]
L62[00:37:42] <ayangd> The line you're getting error
L63[00:37:47] <ayangd> The code
L64[00:37:49] <The_Stargazer> `pritn(data[1])`
L65[00:37:54] <The_Stargazer> `print(data[1])` [Edited]
L66[00:38:06] <The_Stargazer> and I'm using `socket:read()`
L67[00:38:10] <The_Stargazer> and I'm using `data = socket:read()` [Edited]
L68[00:38:15] <ayangd> No
L69[00:38:15] <ayangd> The concatenate nil thing
L70[00:38:57] <ayangd> Maybe `socket:read('*l')`?
L71[00:39:13] <ayangd> Maybe `socket:read('*a')`? [Edited]
L72[00:39:23] <The_Stargazer> nope
L73[00:39:28] <The_Stargazer> it's just `socket:read()`
L74[00:39:38] <The_Stargazer> it only takes a flag argument
L75[00:39:53] <The_Stargazer> and the only flag is `2` which means 'don't flush the buffer when reading'
L76[00:41:23] <ayangd> Go back to the lua interpreter, try to read the socket
L77[00:41:48] <The_Stargazer> I am
L78[00:42:07] <The_Stargazer> It receives socket open events fine
L79[00:42:53] <ayangd> The reading?
L80[00:43:16] <The_Stargazer> No
L81[00:43:21] <The_Stargazer> It doesn't read at all
L82[00:43:23] <The_Stargazer> But
L83[00:43:29] <The_Stargazer> It connects to the computer just fine
L84[00:43:43] <The_Stargazer> Even prints "Connected to computer 0.3."
L85[00:44:21] <ayangd> Lemme read docs about sockey
L86[00:44:37] <The_Stargazer> `https://github.com/GlobalEmpire/GERT/wiki/GERTi-API`
L87[00:44:42] <The_Stargazer> Read the section on sockets
L88[00:47:46] <ayangd> Ok
L89[00:48:11] <ayangd> The other computer might not sending any data
L90[00:48:21] <The_Stargazer> I think it's because I'm not supplying a connection ID
L91[00:48:28] <The_Stargazer> but now for some reason my sockets are nil
L92[00:48:38] <The_Stargazer> nevermind
L93[00:48:46] <The_Stargazer> I was trying to open a socket to myself just then
L94[00:49:09] <The_Stargazer> It works!
L95[00:49:26] <The_Stargazer> I just wasn't passing a connection ID
L96[00:49:29] <The_Stargazer> so the ID wasn't the same
L97[00:50:04] <ayangd> Okay then..
L98[01:22:02] <The_Stargazer> so somebody from a discord I'm in (probably some bot or smthn) decided to DM me semi-NSFW images.
L99[01:22:03] <The_Stargazer> I told them to commit `os.exit()`.
L100[01:22:38] <The_Stargazer> The joke is that they're probably a bot
L101[01:22:47] <The_Stargazer> and if they were programmed in Lua
L102[01:22:47] <The_Stargazer> that would shut it down
L103[01:25:57] <Bob> Discord bot in Lua, rarity
L104[01:26:13] <The_Stargazer> yeah I guess
L105[01:26:20] <The_Stargazer> but the joke is still funny if they're a bot
L106[01:26:26] <The_Stargazer> because it says they're "new to Discord"
L107[01:26:33] <The_Stargazer> so I'd bet they're a spambot
L108[01:27:04] <The_Stargazer> I think "Commit `os.exit()`" is more sophisticated than "Fuck off"
L109[01:42:52] ⇦ Quits: {Opsimath}Shawn ({Opsimath}Shawn!~shawn156@c-76-25-73-212.hsd1.co.comcast.net) (Read error: Connection reset by peer)
L110[01:43:23] <Izaya> your first mistake was using GERT kiddo
L111[01:45:30] ⇦ Quits: bauen1 (bauen1!~bauen1@ipbcc038c0.dynamic.kabel-deutschland.de) (Ping timeout: 189 seconds)
L112[01:51:18] <Bob> B
L113[01:51:51] ⇨ Joins: Inari (Inari!~Pinkishu@pD9E8ECDC.dip0.t-ipconnect.de)
L114[01:53:09] <The_Stargazer> Izaya: what's wrong with GERT?
L115[01:54:12] <Inari> https://www.youtube.com/watch?v=-vgeeu8xeWQ ~
L116[01:54:13] <MichiBot> 1001 Wishes | length: 4m 19s | Likes: 17 Dislikes: 0 Views: 3,230 | by alpinepath | Published On 15/12/2011
L117[01:57:01] <The_Stargazer> you're just trying to get me to use minitel, aren't you?
L118[02:04:47] <Izaya> I've been seen through /s
L119[02:04:56] <Izaya> no it just has a bunch of ... bia+e
L120[02:05:00] <Izaya> fuckin cat
L121[02:05:32] <Izaya> it just has a bunch of ... bizarre design decisions
L122[02:06:19] <Izaya> (... and issues, but I won't go into that because hopefully they'll be resolved in time)
L123[02:06:36] <Izaya> anyway, time to watch a movie before it gets released in cinemas
L124[02:07:02] <Inari> AmandaC: https://www.youtube.com/watch?v=ocRz7uNtCE8
L125[02:07:02] <MichiBot> 2 HOURS of Sleep Music for Cats. Try it Today and be Surprised! | length: 2h, 2m 52s | Likes: 27,937 Dislikes: 2,499 Views: 3,488,295 | by Relax My Cat - Relaxing Music for Cats | Published On 28/6/2015
L126[02:21:38] <Kodos> %tonk
L127[02:21:39] <MichiBot> Jeepers! Kodos! You beat Forecaster's previous record of 28 minutes and 17 seconds (By 1 hour, 42 minutes and 55 seconds)! I hope you're happy!
L128[02:21:40] <MichiBot> Kodos's new record is 2 hours, 11 minutes and 13 seconds! Kodos also gained 0.00172 tonk points for stealing the tonk.
L129[02:45:58] ⇦ Quits: Kleadron (Kleadron!~kleadron@c-73-254-147-9.hsd1.wa.comcast.net) (Ping timeout: 190 seconds)
L130[02:49:54] ⇨ Joins: Kleadron (Kleadron!~kleadron@c-73-254-147-9.hsd1.wa.comcast.net)
L131[03:47:06] <Forecaster> %sip random
L132[03:47:06] <MichiBot> You drink a molten aether potion (New!). Forecaster knows the exact location of a particular molecule of oxygen until you see a bird.
L133[03:47:22] <Forecaster> MichiBot likes the bird one a lot it seems
L134[03:50:08] ⇦ Quits: Kleadron (Kleadron!~kleadron@c-73-254-147-9.hsd1.wa.comcast.net) (Ping timeout: 190 seconds)
L135[03:55:00] <Forecaster> I need to add something that lets me insert random numbers within ranges into them
L136[04:14:01] <Lizzy> %loot
L137[04:14:01] <MichiBot> Lizzy: You get a loot box! It contains a turnip.! (100%)
L138[04:14:12] * Lizzy hmms, puts it back in the fridge
L139[04:14:28] <Lizzy> MichiBot, what have we told you about grabbing random items and putting them in a box?
L140[04:14:34] * Lizzy headpats MichiBot
L141[04:14:58] <Forecaster> but it's her job
L142[04:15:08] <Forecaster> it's not her fault someone gave her a turnip
L143[04:19:36] * Lizzy sighs, has no desire to do any work today
L144[04:26:17] <Inari> Lizzy: Same! But gotta get work done
L145[04:26:18] <Inari> :F
L146[04:26:27] <Lizzy> yep, sadly
L147[04:26:50] <Lizzy> think i'ma go get a bite to eat and see if that brings my energy up enough to do things
L148[04:33:22] <Inari> Temia: The original MH is so hard D:
L149[05:10:51] <Izaya> interesting
L150[05:10:57] <Izaya> this pack runs better with 4GB than 5GB
L151[05:24:02] <The_Stargazer> maybe it's using 32-bit java?
L152[05:24:09] <The_Stargazer> I think 64-bit Java has a 32-bit mode
L153[05:24:16] <Izaya> I think the explanation is along the lines of uh
L154[05:24:20] <Izaya> kinda that but
L155[05:24:36] <Izaya> it only has to address 4GB of memory so it can use 32-bit addresses instead of 64-bit ones
L156[05:24:40] <The_Stargazer> ahh
L157[05:24:45] <The_Stargazer> so I was half right
L158[05:24:53] <Izaya> details
L159[05:25:01] <The_Stargazer> ?
L160[05:25:18] <Izaya> "half" is a detail
L161[05:25:20] <Izaya> get rid of that
L162[05:25:48] <The_Stargazer> so.. "I was right" then?
L163[05:25:54] <Izaya> right
L164[05:26:11] <The_Stargazer> 32-bit addresses are smaller right?
L165[05:26:17] <The_Stargazer> 4 bytes I think
L166[05:26:20] <Izaya> half the size of a 64-bit address
L167[05:26:34] <The_Stargazer> %return 32 / 8
L168[05:26:40] <The_Stargazer> wait no
L169[05:26:44] <Izaya> (yes, 4)
L170[05:26:44] <The_Stargazer> %lua return 32 / 8
L171[05:26:45] <MichiBot> 4
L172[05:26:51] <The_Stargazer> Yeah
L173[05:27:00] <The_Stargazer> speaking of address types
L174[05:27:13] <The_Stargazer> how does the SNES deal with 4-byte longs?
L175[05:27:23] <Izaya> slowly
L176[05:27:42] <The_Stargazer> but it can actually deal with them, despite being 16-bit (I think)?
L177[05:27:59] <Izaya> the SNES had a 65816 which was the 16-bit extended version of the 6502
L178[05:28:08] <The_Stargazer> oh yeah, that reminds me of another question that I forgot about
L179[05:28:15] <The_Stargazer> was the GBA 16- or 32-bit
L180[05:28:18] <Izaya> but you can work with 32 and 64-bit numbers on an 8-bit machine if you want to take the time to do the overflows manually
L181[05:28:28] <Izaya> I think it was 32-bit, it had an ARM processor
L182[05:28:33] <The_Stargazer> Ah
L183[05:28:58] <The_Stargazer> That answers that then
L184[05:31:27] <The_Stargazer> to kill a thread it's threadHandle:kill() isn't it?
L185[05:31:37] <Izaya> argh, Pam's Harvestcraft has too many items involved indirectly in cooking
L186[05:32:13] ⇨ Joins: kogtyv (kogtyv!~kogtyv@194.246.74.70)
L187[05:32:23] ⇦ Quits: kogtyv (kogtyv!~kogtyv@194.246.74.70) (Client Quit)
L188[05:33:33] <The_Stargazer> if I define a thread inside a thread, and make it `local`, will it be available to the main init process?
L189[05:35:08] <The_Stargazer> Or I could just suspend the thread and then resume it once done.
L190[05:47:34] <Inari> Mhmmmm
L191[05:47:37] <Inari> Sugared black tea <3
L192[06:09:31] <Forecaster> yay, home about 4 hours early
L193[06:09:36] <Lizzy> lucky
L194[06:17:42] <Inari> Testing is the worst kinda of work
L195[06:21:56] ⇨ Joins: Vexatos (Vexatos!~Vexatos@port-92-201-97-156.dynamic.qsc.de)
L196[06:21:56] zsh sets mode: +v on Vexatos
L197[06:32:43] <Forecaster> For the mug! http://tinyurl.com/y4cly5sz
L198[06:33:47] ⇨ Joins: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com)
L199[06:36:15] <Kodos> %tonkout
L200[06:36:16] <MichiBot> Bejabbers! Kodos! You beat your own previous record of 2 hours, 11 minutes and 13 seconds (By 2 hours, 3 minutes and 23 seconds)! I hope you're happy!
L201[06:36:17] <MichiBot> Kodos has tonked out! Tonk has been reset! They gained 0.004 tonk points! plus 0.006 bonus points for consecutive hours! Current score: 0.7454
L202[06:37:15] ⇦ Quits: baschdel (baschdel!~baschdel@151-056-210-188.ip-addr.inexio.net) (Ping timeout: 198 seconds)
L203[06:39:24] <Lizzy> %tonk
L204[06:39:24] <MichiBot> Dagnabbit! Lizzy! You beat Kodos's previous record of <0 (By 3 minutes and 9 seconds)! I hope you're happy!
L205[06:39:25] <MichiBot> Lizzy's new record is 3 minutes and 9 seconds! Lizzy also gained 0.00005 tonk points for stealing the tonk.
L206[06:39:49] <Inari> It's weird banking pins are like 5 symbols
L207[06:40:58] ⇦ Quits: Vexatos (Vexatos!~Vexatos@port-92-201-97-156.dynamic.qsc.de) (Ping timeout: 190 seconds)
L208[06:55:47] ⇨ Joins: Vexatos (Vexatos!~Vexatos@port-92-200-89-12.dynamic.qsc.de)
L209[06:55:47] zsh sets mode: +v on Vexatos
L210[07:17:15] <Inari> Temia: https://media.tenor.co/videos/8c7b0100001190c1e0087560728aab36/mp4
L211[07:27:29] <Temia> :>
L212[07:47:10] <ayangd> I wonder what if robots named `Dinnerbone` be like..
L213[07:47:56] <Lizzy> idk if OC uses the same naming stuff as normal mobs, but probably nothing
L214[07:52:45] ⇨ Joins: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi)
L215[08:05:02] <Kodos> %tonkout
L216[08:05:03] <MichiBot> Potzblitz! Kodos! You beat Lizzy's previous record of 3 minutes and 9 seconds (By 1 hour, 22 minutes and 28 seconds)! I hope you're happy!
L217[08:05:04] <MichiBot> Kodos has stolen the tonkout! Tonk has been reset! They gained 0.001 tonk points! Current score: 0.7464
L218[08:06:56] <Lizzy> :(
L219[08:07:05] ⇨ Joins: ben_mkiv (ben_mkiv!~ben_mkiv@88.130.157.128)
L220[08:15:02] <Forecaster> and I've arrived http://tinyurl.com/y4xvlc6f
L221[08:15:27] <Forecaster> took about 1 hour and 45 minutes
L222[08:20:09] <MGR> Congratulations!
L223[08:20:49] <Forecaster> Supercruising .4 Lightyears isn't super exiting :P
L224[08:26:59] <MGR> I agree
L225[08:39:30] * Lizzy wishes her anxiety could take a short step back every so often
L226[09:34:43] ⇨ Joins: bauen1 (bauen1!~bauen1@ipbcc038c0.dynamic.kabel-deutschland.de)
L227[09:37:47] <CompanionCube> %tonk
L228[09:37:47] <MichiBot> Waesucks! CompanionCube! You beat Kodos's previous record of <0 (By 1 hour, 32 minutes and 44 seconds)! I hope you're happy!
L229[09:37:48] <MichiBot> CompanionCube's new record is 1 hour, 32 minutes and 44 seconds! CompanionCube also gained 0.00155 tonk points for stealing the tonk.
L230[09:52:47] ⇨ Joins: Rahix (Rahix!~Rahix@2001:7f0:3003:235f:7432:dd86:b273:f0ec)
L231[10:15:12] <AmandaC> %8ball grilled cheez?
L232[10:15:12] <MichiBot> AmandaC: My reply is no
L233[10:15:33] <Forecaster> %8ball cheese that has been grilled?
L234[10:15:34] <MichiBot> Forecaster: [ The Bowling ball doesn't answer ]
L235[10:15:50] <Forecaster> dammit...
L236[10:16:02] <Forecaster> doing that caused me to fly at full speed into the ground...
L237[10:16:23] <AmandaC> How's that work?
L238[10:16:34] <Forecaster> my ship blew up...
L239[10:17:08] <AmandaC> I meant how does making MichiBot shake a bowling ball cause you to crash?
L240[10:17:22] <Forecaster> because I was distracted?
L241[10:17:30] <AmandaC> psh, silly humans
L242[10:17:45] <Corded> * <Forecaster> throws a ball of yarn
L243[10:17:57] * AmandaC files an HR complaint against @Forecaster
L244[10:18:34] <Forecaster> the *what* relations? :P
L245[10:19:30] <AmandaC> by the goddesses, you're right.
L246[10:19:53] * AmandaC files a lawsuit against #oc inc instead for extreme discimination
L247[10:21:12] <Mimiru> Man, I'm glad I handed ownership of the OC discord off to @Lizzy a couple of weeks ago.
L248[10:21:14] <Mimiru> :P
L249[10:21:27] <Mimiru> P.S. That's something I did Lizzy.. :P
L250[10:22:11] <Mimiru> Discord wouldn't let me delete my account if I owned servers, so I had to pass them off to people. Then I ended up not doing it. lol
L251[10:24:22] <Lizzy> ah, i see
L252[10:24:36] <Lizzy> so i now own the oc irc channel and the discord
L253[10:24:38] <Lizzy> mwahahah
L254[10:24:44] <Lizzy> i mean...
L255[10:24:47] <Forecaster> oh dear
L256[10:24:48] <Lizzy> nyaa?
L257[10:24:52] * Lizzy makes cute face
L258[10:25:03] <Forecaster> %sip random
L259[10:25:03] <MichiBot> You drink a salty titanium potion (New!). After the first sip the potion poofs away.
L260[10:25:09] <Forecaster> aw
L261[10:40:40] <The_Stargazer> ah, lizzy has become michibot
L262[10:40:54] <Lizzian> Wat?
L263[10:41:07] <The_Stargazer> http://tinyurl.com/y5rpk8r9
L264[10:43:40] <CompanionCube> %drink random
L265[10:43:40] <MichiBot> You drink a sedimented tuna potion (New!). CompanionCube's bones turn transparent until the next time you hug someone.
L266[10:43:48] <CompanionCube> who wants a hug
L267[10:45:26] * Skye hugs CompanionCube
L268[10:45:27] <Skye> boo
L269[10:45:36] <Ariri> Hug MichiBot so it doesn’t kill me
L270[10:46:23] <Ariri> %8ball Please let me live?
L271[10:46:24] <MichiBot> Ariri: Without a doubt
L272[10:46:33] <Ariri> Liar
L273[10:46:43] <Ariri> That’s too honest
L274[10:46:48] <The_Stargazer> \s/let me live/kill me
L275[10:46:51] <The_Stargazer> s/let me live/kill me [Edited]
L276[10:46:51] <MichiBot> <The_Stargazer> s/kill me [Edited]/kill me [Edited]
L277[10:46:57] <The_Stargazer> okay what
L278[10:47:02] <Ariri> Uh
L279[10:47:09] <The_Stargazer> goddamnit michibot
L280[10:47:17] <The_Stargazer> you ruined the joke
L281[10:47:26] <Ariri> No
L282[10:47:38] <Ariri> It knows what it’s doing....
L283[10:47:49] <Ariri> It’s thinking
L284[10:47:57] <Ariri> “I’m sorry, im afraid I can’t do that”
L285[10:47:59] <The_Stargazer> is there a hit command
L286[10:48:07] <Ariri> Bap or hit o think
L287[10:48:13] <The_Stargazer> %bap MichiBot
L288[10:48:14] * MichiBot smacks The_Stargazer
L289[10:48:15] <Skye> %bap @The_Stargazer
L290[10:48:15] * MichiBot baps @The_Stargazer with the piece of a car
L291[10:48:17] <The_Stargazer> can she bap herself
L292[10:48:17] <The_Stargazer> oi
L293[10:48:23] <The_Stargazer> you cheeky shit
L294[10:48:31] <The_Stargazer> (it's a joke)
L295[10:48:34] <Ariri> *you cheeky shit*
L296[10:48:42] <Ariri> Interesting phrase
L297[10:48:56] <Ariri> %pat everyone
L298[10:49:00] <Ariri> Aww
L299[10:49:07] <The_Stargazer> %bap everyone
L300[10:49:07] * MichiBot baps everyone with the cold
L301[10:49:14] <The_Stargazer> That works
L302[10:49:18] <Ariri> Sad
L303[10:49:19] * Skye sneezes
L304[10:49:28] <Ariri> Bless
L305[10:49:30] <Skye> %bap @everyone
L306[10:49:30] * MichiBot baps @everyone with extreme agile cloud native digital microservices
L307[10:49:32] <Ariri> %pat skye
L308[10:49:45] <Ariri> %pat Skye
L309[10:49:50] <The_Stargazer> I notice that because my username has an underscore in it
L310[10:49:53] <The_Stargazer> it breaks michibot
L311[10:49:57] <Skye> no it dosen't?
L312[10:50:03] <Ariri> It shouldn’t
L313[10:50:10] <Ariri> Irc mames have _
L314[10:50:13] <The_Stargazer> `_smack's The*Starazer*`
L315[10:50:14] <Ariri> Names
L316[10:50:17] <Skye> %pet @The_Stargazer
L317[10:50:18] <The_Stargazer> oka
L318[10:50:26] <Skye> .....
L319[10:50:27] <The_Stargazer> scroll up
L320[10:50:33] <Ariri> That’s not how it looks for me
L321[10:50:38] <The_Stargazer> http://tinyurl.com/y68ml2ak
L322[10:50:53] <Ariri> http://tinyurl.com/yxk2935z
L323[10:51:12] <The_Stargazer> because it's an `@`
L324[10:51:16] <Ariri> Oh
L325[10:51:20] <The_Stargazer> my username itself
L326[10:51:23] <The_Stargazer> makes it look weird
L327[10:51:25] <Ariri> That was prob a glitch with the last command
L328[10:51:37] <Ariri> Idk
L329[10:51:38] <The_Stargazer> can you fling at michibot
L330[10:51:40] <The_Stargazer> %fling MichiBot
L331[10:51:41] * MichiBot flings a 128-in-1 USB hub in a random direction. It hits The_Stargazer right where they didn't expect. They take 5 damage.
L332[10:51:44] <The_Stargazer> oi
L333[10:51:46] <The_Stargazer> you little shit
L334[10:51:58] <The_Stargazer> hmm, how can I circumvent this
L335[10:52:02] <The_Stargazer> and get michibot to smack herself
L336[10:52:05] <Ariri> %pet everyone
L337[10:52:05] * MichiBot brushes everyone with quantum decay. 8 health gained!
L338[10:52:11] <Forecaster> it's because corded doesn't escape underscores in messages or names
L339[10:52:12] <The_Stargazer> you'd think
L340[10:52:16] <The_Stargazer> that'd loose health
L341[10:52:20] <Forecaster> which cause it to look weird on discord
L342[10:52:24] <Ariri> Quantum decay...
L343[10:52:35] <Forecaster> because an underscore works the same as a *
L344[10:52:52] <The_Stargazer> and it wants to be all italic fancy
L345[10:53:07] <The_Stargazer> %bap everyone
L346[10:53:08] * MichiBot baps everyone with her sister and the superior clone
L347[10:53:11] <Forecaster> when there's more than one yes
L348[10:53:11] <The_Stargazer> I like that you can do that
L349[10:53:19] <The_Stargazer> wait
L350[10:53:22] <The_Stargazer> michibot has a sister?
L351[10:53:23] <The_Stargazer> ?
L352[10:53:24] <Ariri> %8ball time to die?
L353[10:53:24] <MichiBot> Ariri: Without a doubt
L354[10:53:34] <Ariri> Thanks
L355[10:53:35] <The_Stargazer> %8ball Are you murderous?
L356[10:53:36] <MichiBot> The_Stargazer: [ The Bowling ball doesn't answer ]
L357[10:53:42] <Ariri> *collapses*
L358[10:53:46] <The_Stargazer> %8bal I said Are you murderous?
L359[10:54:03] <The_Stargazer> %8ball Answer me you piece of crap bowling ball?
L360[10:54:03] <MichiBot> The_Stargazer: Signs point to yes
L361[10:54:08] <The_Stargazer> Ok good
L362[10:54:14] <The_Stargazer> %8ball Do you have murderous intent
L363[10:54:14] <MichiBot> The_Stargazer: I don't think that's a question...
L364[10:54:20] <The_Stargazer> yes it is
L365[10:54:30] <Ariri> %8ball are you self aware?
L366[10:54:30] <The_Stargazer> %8ball Do you have murderous intent?
L367[10:54:30] <MichiBot> Ariri: Outlook not so good
L368[10:54:31] <Forecaster> there has to be a question mark
L369[10:54:31] <MichiBot> The_Stargazer: [ The Bowling ball doesn't answer ]
L370[10:54:31] <AmandaC> No ?
L371[10:54:51] <The_Stargazer> %8ball Will you answer me about murderous intent? Do you have any?
L372[10:54:51] <MichiBot> The_Stargazer: Ask again later
L373[10:54:55] <The_Stargazer> i give up
L374[10:55:24] <Ariri> %drink random
L375[10:55:25] <MichiBot> You drink a boiling tuna potion (New!). Suddenly there's a swarm of wasps behind you!
L376[10:55:34] <Ariri> I’m dead tho
L377[10:55:43] <The_Stargazer> %8ball Was an existing connection forcibly closed by the remote host?
L378[10:55:44] <MichiBot> The_Stargazer: Without a doubt
L379[10:55:45] <Ariri> Those wasps can buzz off
L380[10:55:57] <The_Stargazer> Thanks MichiBot for confirming the obvious
L381[10:56:00] <Forecaster> okay stop spamming now
L382[10:56:15] <Lizzy> %tonk
L383[10:56:15] <MichiBot> I'm sorry Lizzy, you were not able to beat CompanionCube's record of 1 hour, 32 minutes and 44 seconds this time. 1 hour, 18 minutes and 27 seconds were wasted! Missed by 14 minutes and 17 seconds!
L384[10:56:19] <Lizzy> ah damn
L385[10:56:27] <The_Stargazer> goddamnit I was going to tonk
L386[11:23:40] * AmandaC beams a mutable rainbow potion in front of Inari
L387[11:23:47] <Inari> %drink ^
L388[11:23:48] <MichiBot> Inari turns into a the color of ruby lava boy for ten minutes.
L389[11:23:57] <Inari> Good English
L390[11:24:40] <Forecaster> uh
L391[11:24:54] <Forecaster> I may have mucked up the variables for that one
L392[11:25:19] <Forecaster> or wait, I used the wrong ones to add the color probably
L393[11:30:45] <The_Stargazer> %drink random
L394[11:30:46] <MichiBot> You drink a shining dirt potion (New!). You see the sky briefly flash solid dark blue then go back to normal.
L395[11:31:40] <The_Stargazer> Hang on
L396[11:31:40] <The_Stargazer> Dark blue is the colour of the sky void in Hyperdimension Neptunia Re;Birth 3 and Megadimension Neptunia VII... ?
L397[11:31:56] <The_Stargazer> (or is it purple)
L398[11:32:00] <Forecaster> dark blue is the color of a lot of things
L399[11:56:52] <abed> hi everyone, i’ve been searching for opencomputers projects for inspiration but can’t find much aside from a few videos on youtube. any suggestions for where i can look for more stuff?
L400[11:57:16] <MGR> The OC forums
L401[11:58:53] <Forecaster> oppm
L402[12:02:39] <Forecaster> dammit, bloody pirate just interdicted me and caused me to crash through a planet
L403[12:03:03] <Lizzian> Gg
L404[12:03:34] <MGR> The only thing worse than that is fuel scooping and getting too close to the star
L405[12:05:30] <Forecaster> at that's your own fault, that's only happened a couple of times
L406[12:07:02] <The_Stargazer> what game?
L407[12:07:09] <Forecaster> Elite
L408[12:07:47] <Forecaster> http://tinyurl.com/yyjhugdp
L409[12:08:47] <Forecaster> I'm excited for fleet carriers
L410[12:08:54] <Forecaster> I'ma get one for my squadron
L411[12:23:00] ⇨ Joins: icer (icer!~icer@188.19.178.23)
L412[12:39:24] ⇦ Quits: icer (icer!~icer@188.19.178.23) (Remote host closed the connection)
L413[12:59:45] <Inari> AmandaC: https://www.reddit.com/r/PeopleFuckingDying/comments/cc9p6h/hero_boy_saves_kitty_from_certain_death/
L414[13:05:26] <Inari> https://i.imgur.com/6Jh5Quo.gifv
L415[13:05:30] <Inari> AmandaC: Time to learn tricks
L416[13:10:08] <AmandaC> Inari: I refuse.
L417[13:10:24] <Inari> AmandaC: no dinner!
L418[13:22:02] ⇨ Joins: Kleadron (Kleadron!~kleadron@c-73-254-147-9.hsd1.wa.comcast.net)
L419[13:27:04] <AmandaC> D:
L420[13:31:48] <CompanionCube> %tonk
L421[13:31:49] <MichiBot> Avada Kedavra! CompanionCube! You beat your own previous record of 1 hour, 32 minutes and 44 seconds (By 1 hour, 2 minutes and 48 seconds)! I hope you're happy!
L422[13:31:50] <MichiBot> CompanionCube's new record is 2 hours, 35 minutes and 33 seconds! No points gained for stealing from yourself. (Lost out on 0.00105 x 2 = 0.0021)
L423[13:37:46] <The_Stargazer> goddamnit I literally just had that idea
L424[13:44:43] ⇦ Quits: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi) (Ping timeout: 190 seconds)
L425[13:45:11] ⇨ Joins: rashy (rashy!~rashdanml@d24-156-232-46.home4.cgocable.net)
L426[13:45:46] ⇦ Quits: rashy (rashy!~rashdanml@d24-156-232-46.home4.cgocable.net) (Client Quit)
L427[13:46:22] ⇨ Joins: rashy (rashy!~rashdanml@d24-156-232-46.home4.cgocable.net)
L428[13:47:20] ⇦ Quits: rashy (rashy!~rashdanml@d24-156-232-46.home4.cgocable.net) (Client Quit)
L429[13:50:17] <Lizzy> totally
L430[13:51:12] <Bob> http://tinyurl.com/y56wtb7v
L431[13:51:15] <Bob> i don't get the error
L432[13:51:30] <Bob> my printf for iterator i is 1,#t
L433[13:51:34] <Bob> and t is a valid table
L434[13:51:49] <Bob> bombize returns an array
L435[13:52:13] <Bob> send help
L436[13:53:48] <Kodos> You've got a typo in there
L437[13:53:58] <Bob> as usual
L438[13:54:30] <Bob> i still cant see it
L439[13:54:42] <bad at vijya> i'm finally working on the looks of my base
L440[13:54:51] <bad at vijya> using a lot of stone bricks tbh
L441[13:55:01] <Bob> Ahaha spam them >> base good
L442[13:55:32] <bad at vijya> it's underground so
L443[13:55:36] <bad at vijya> that's my main idea
L444[13:55:57] <Kodos> function prinf
L445[13:56:02] <Kodos> But you call printf anywhere else
L446[13:57:05] <bad at vijya> i've also got a cactus farm that i'll probably have to move to the new wing of my base
L447[13:57:15] <Bob> Yea global
L448[13:57:58] <Bob> Code Block pastebined https://paste.pc-logix.com/heyeziceji
L449[14:02:32] ⇦ Quits: ben_mkiv (ben_mkiv!~ben_mkiv@88.130.157.128) (Ping timeout: 206 seconds)
L450[14:24:44] ⇨ Joins: Prof_David (Prof_David!~neuge@2a02:560:425a:dc00:f33d:f07b:cb9b:e223)
L451[14:25:28] <Prof_David> Moin moin
L452[14:25:46] <Forecaster> ??
L453[14:25:48] <Prof_David> I have written a lib that I have placed in /usr/lib
L454[14:26:26] <Prof_David> /usr/lilb is present in the package.path
L455[14:26:26] <Forecaster> okay?
L456[14:26:35] <Prof_David> */usr/lib
L457[14:26:55] <Prof_David> when I call start "lua"
L458[14:27:17] <Prof_David> I get "=build" -> nil
L459[14:27:50] <Prof_David> how can I figure out what hinders the library to load?
L460[14:28:27] <Prof_David> I have another self written library right next to it that works just fine
L461[14:28:47] <AmandaC> `require("build")`
L462[14:29:03] <Kodos> The package is present, it still needs to be required to be 'active' yes
L463[14:29:59] <Prof_David> ah thanks, no I get a syntax error :)
L464[14:30:11] <Prof_David> *now
L465[14:30:17] <Bob> Fix tm
L466[14:30:30] <Prof_David> sure thing
L467[14:32:12] <AmandaC> @Kodos the lua shell does some magic to auto-import libs, but it suppresses the error if it's failed
L468[14:32:22] <bad at vijya> lmao
L469[14:32:48] <bad at vijya> it's so rare for me to turn on my base's current reactor
L470[14:32:54] <bad at vijya> speaking of reactors and turning them off
L471[14:33:07] <bad at vijya> i need to make a good ReactorCraft reactor design that can be shut down
L472[14:33:08] <Prof_David> yea, it works, thank you very much
L473[14:33:34] <Prof_David> had a I typo in the lib
L474[14:41:03] <Kodos> Good luck with using OC and ReactorCraft
L475[14:43:33] <Prof_David> sounds like half your map is missing after having a bug in a script :)
L476[14:50:26] ⇨ Joins: ben_mkiv (ben_mkiv!~ben_mkiv@88.130.157.128)
L477[14:53:28] <Bob> NuclearCraft BAE
L478[14:53:32] <Bob> especially with OC
L479[14:53:37] <Bob> and new overhaul update nutz
L480[14:53:56] <Bob> i should ask the dev tough if overhaul update reactors can shut down instantly anymore
L481[14:54:44] <Kodos> Oh did the overhaul finally drop?
L482[14:55:19] <Bob> Not yet
L483[14:55:24] <Bob> but its close
L484[14:55:34] <Bob> as Tom has normally no more exams
L485[14:55:38] <Bob> iirc
L486[14:55:51] <Prof_David> is Corded what goes over the OpenIRC disk?
L487[14:56:09] <Forecaster> corded is a discord relay
L488[14:56:18] <Prof_David> ah see
L489[14:56:44] <Bob> Its an IRC user
L490[14:56:55] <Bob> so it will be avaible on OC
L491[14:57:02] <Bob> IRC bot rather
L492[15:35:59] <Forecaster> %sip random
L493[15:36:00] <MichiBot> You drink a oxidised sky potion (New!). Forecaster gains the ability to talk to sloths until you leave.
L494[15:36:09] <CompanionCube> %drink random
L495[15:36:09] <MichiBot> You drink a ripe void potion (New!). A genie appears out of the empty bottle, turns it into a pie, then vanishes.
L496[15:36:21] <CompanionCube> anyone want to share the pie?
L497[15:36:28] ⇦ Parts: Prof_David (Prof_David!~neuge@2a02:560:425a:dc00:f33d:f07b:cb9b:e223) ())
L498[15:37:52] <Forecaster> who can say no to pie
L499[15:40:10] <Skye> %eat pie
L500[15:40:11] * MichiBot snatches it and eats it
L501[15:47:49] <Forecaster> https://tapas.io/episode/1461018
L502[15:51:06] <Kodos> %tonkout
L503[15:51:07] <MichiBot> I'm sorry Kodos, you were not able to beat CompanionCube's record of 2 hours, 35 minutes and 33 seconds this time. 2 hours, 19 minutes and 18 seconds were wasted! Missed by 16 minutes and 15 seconds!
L504[15:51:11] ⇦ Quits: Renari (Renari!~Renari@24.229.184.254.res-cmts.sm.ptd.net) (Ping timeout: 202 seconds)
L505[15:51:11] <Kodos> Ffs
L506[15:52:33] <CompanionCube> :3
L507[15:52:39] <CompanionCube> no tonkoutfor you
L508[15:52:43] <CompanionCube> tonkout will be for me.
L509[16:02:25] <thething_911> hey, anywhere I can find out about recent modpacks opencomputers was included in?
L510[16:03:11] <thething_911> I can look up dependencies of curseforge, but, there's two hundred pages and they aren't sortable :\
L511[16:03:56] <Forecaster> that's not really something we keep track of
L512[16:04:58] <Forecaster> if you just go on the frontpage and sort by last updated and go through them until you find one with OC in it
L513[16:05:01] <Forecaster> that might do it
L514[16:05:15] <thething_911> for sure, thank you ?
L515[16:22:32] <bad at vijya> reee
L516[16:22:36] <bad at vijya> my redstone key randomly broke
L517[16:23:29] <Bob> Redstone is a pretty brittle material
L518[16:23:34] <Bob> it brraks into dust quickly
L519[16:23:44] <Bob> %drink redstone potion
L520[16:23:44] <MichiBot> This doesn't seem to be a potion I recognize...
L521[16:23:47] <Bob> Why is this not a thing
L522[16:23:59] * AmandaC beams a mutable redstone potion in front of @Bob
L523[16:24:19] <Bob> OwO whats this
L524[16:25:29] <Bob> drink ^ AmandaC
L525[16:26:44] <Forecaster> 1. a potion has to have a color and a consistency and the word "potion".
L526[16:26:58] <Forecaster> 2. potions with the mutable consistency are always transformations
L527[16:27:34] <AmandaC> You shouldn't have said #2
L528[16:27:50] <AmandaC> Now bob may not drink it
L529[16:28:27] <CompanionCube> %sip mutable redstone potion
L530[16:28:28] <MichiBot> CompanionCube turns into a the color of grass wolf girl until you say the word "Blatherskite".
L531[16:28:29] <Forecaster> he tried and failed already by leaving out the command symbol
L532[16:28:53] <Forecaster> also, that will be fixed once MichiBot restarts
L533[16:29:15] <CompanionCube> ...okay?
L534[16:29:28] <CompanionCube> Blatherskite?
L535[16:30:04] <AmandaC> I doubt I have the privlages for this:
L536[16:30:06] <AmandaC> %restart
L537[16:30:09] <AmandaC> nope
L538[16:30:26] <Forecaster> Lizzy does
L539[16:30:27] <AmandaC> alas, Mimiru or Lizzy will have to do it. or @Forecaster will have to come on via IRC
L540[16:31:18] <Mimiru> %restart
L541[16:31:20] ⇦ Quits: MichiBot (MichiBot!~MichiBot@eos.pc-logix.com) ()
L542[16:31:28] <Forecaster> my server that has irssi on it is still offline cause I'm lazy
L543[16:31:54] ⇨ Joins: MichiBot (MichiBot!~MichiBot@eos.pc-logix.com)
L544[16:31:54] zsh sets mode: +v on MichiBot
L545[16:32:25] * AmandaC beams another mutable redstone potion in front of Mimiru
L546[16:32:31] <Forecaster> could just use webchat I suppose
L547[16:34:47] <Lizzian> gimmie a sec
L548[16:34:59] <Forecaster> Mimiru already restarted her
L549[16:35:04] <Lizzian> oh ok
L550[16:36:16] <Forecaster> Feeding sparrows https://imgur.com/gallery/Tcj44bM
L551[16:36:31] <Forecaster> Temia ^
L552[16:46:59] <bad at vijya> MY TRUCK FINALLY RUNS AGAIN
L553[16:47:01] <bad at vijya> MWAHAHAHA
L554[16:47:19] <Inari> Which game?
L555[16:47:32] <bad at vijya> what
L556[16:48:07] <bad at vijya> Inari: wdym
L557[16:48:48] <Inari> Spintires?
L558[16:49:15] <Bob> Running truck
L559[16:49:24] <Bob> it must be something not mainstream
L560[16:50:04] ⇦ Quits: DFrostedWang (DFrostedWang!~DFrostedW@107.191.110.138) (Ping timeout: 190 seconds)
L561[16:50:10] ⇨ Joins: DFrostedWang (DFrostedWang!~DFrostedW@2604:180:2:122b::4376)
L562[16:50:24] ⇦ Quits: ICWiener (ICWiener!~DFrostedW@2604:180:2:122b::4376) (Ping timeout: 190 seconds)
L563[16:50:42] ⇨ Joins: ICWiener (ICWiener!~DFrostedW@2604:180:2:122b::4376)
L564[16:52:06] <Lizzian> %choose fuck about in spintires or play nekopara
L565[16:52:07] <MichiBot> Lizzian: I saw that "fuck about in spintires" is the best choice in a vision
L566[16:52:11] <Lizzian> ok
L567[16:52:26] <Inari> But but
L568[16:52:29] <Inari> The catgirls need petting
L569[16:53:02] <Bob> Its odd to see IRC users come over discord
L570[16:53:08] <Lizzian> how so?
L571[16:53:26] <Bob> I can take care of that
L572[16:53:40] <Bob> As im jet lagged and slept whole day here i am bored
L573[16:53:46] <Bob> 4 hours left before morning
L574[16:55:31] <bad at vijya> Inari: no i mean irl
L575[16:55:57] ⇦ Quits: Rahix (Rahix!~Rahix@2001:7f0:3003:235f:7432:dd86:b273:f0ec) (Remote host closed the connection)
L576[16:57:11] <Lizzian> on second thoughts my back is hurting too much so i wont be able to sit up properly
L577[17:05:44] <bad at vijya> wtf
L578[17:05:50] <bad at vijya> only one pistol is activated
L579[17:05:54] <bad at vijya> *piston
L580[17:05:59] <Bob> Well Thats Fantastic
L581[17:06:00] <bad at vijya> jfc i'm tired
L582[17:06:02] <bad at vijya> anyways
L583[17:06:21] <bad at vijya> the piston that makes the pulse isn't activated for some reason
L584[17:07:33] <bad at vijya> this bastard doesn't wanna work http://tinyurl.com/y38j7ykv
L585[17:08:01] <Bob> Use OC microcontrollers s m h
L586[17:08:18] <Bob> The pulse is maybe too short
L587[17:08:41] <bad at vijya> it activates one piston tho
L588[17:08:47] <AmandaC> %8ball wait for 3/3?
L589[17:08:47] <MichiBot> AmandaC: My reply is no
L590[17:08:55] <AmandaC> Hrm.
L591[17:09:02] <bad at vijya> also wtf would a uC do
L592[17:10:40] <bad at vijya> i really should just redesign the thing
L593[17:13:37] <bad at vijya> just got an idea for how to redo it
L594[17:18:20] <bad at vijya> FINALLY
L595[17:18:21] <bad at vijya> I DID IT
L596[17:18:43] <Inari> Your truck is running?
L597[17:25:33] <Mimiru> https://nsarchive.files.wordpress.com/2010/05/mil-c-44072c.pdf
L598[17:25:43] <Mimiru> Enjoy the US Military cookie recipe.
L599[17:25:59] <Vexatos> I always wanted military-spec cookies
L600[17:26:40] <Forecaster> If your truck is running I hope you catch it before it gets away
L601[17:26:47] <Mimiru> Heads up that is a 26 effing page cookie recipe.
L602[17:27:15] <Mimiru> Well, more accurately it's a 2 page cookie recipe. with 24 pages of bureaucracy
L603[17:27:43] <Vexatos> in exchange, have some science.png I made today https://quantum-chemistry.is-pretty.cool/6FAbEQ9.png
L604[17:31:05] <AmandaC> Mimiru: how the fuck did you stumble upon that?
L605[17:31:47] <AmandaC> %8ball halucinate?
L606[17:31:47] <MichiBot> AmandaC: Outlook not so good
L607[17:32:00] <Mimiru> https://www.reddit.com/r/talesfromtechsupport/comments/cae4b4/the_time_i_had_to_buy_4_computers_because_the/ comments on this post
L608[17:32:16] <Bob> Lmfao
L609[17:32:22] <Bob> military cookies
L610[17:32:31] <Bob> Now i want to become a solder
L611[17:35:13] <bad at vijya> i mean my truck was already running
L612[17:35:23] <bad at vijya> i got my shitty redstone circuit to work tho
L613[17:39:20] <Kodos> Why would you want to become solder? Becoming a soldier sounds much more fun
L614[17:40:01] <Bob> Apparentlt my keyboards wants me as a solder
L615[17:40:10] <Bob> why not it doesnt sound too bad
L616[17:42:51] <Inari> https://media.discordapp.net/attachments/309532592862920704/599368233082028043/FB_IMG_1562883548488.jpg?width=676&height=676
L617[17:45:32] <AmandaC> Inari: ... is that Dorothy?
L618[17:45:39] <Inari> It is
L619[17:46:15] <AmandaC> I don't remember her having pink hair, but it's been awhile since I played Valhalla
L620[17:46:28] <Inari> What do you recall her as then
L621[17:46:41] <AmandaC> Blue hair, maybe? Not sure.
L622[17:46:46] <Inari> Oo
L623[17:46:50] <Inari> Thats another cahracter xD
L624[17:47:19] <Inari> https://proxy.duckduckgo.com/iu/?u=https%3A%2F%2F68.media.tumblr.com%2F80c7e880ad4438b567e43aaee479cdc3%2Ftumblr_oj6c6kfENK1r61nxjo3_500.png&f=1 Guess it's more red than pink though
L625[17:48:07] <AmandaC> Huh. I also didn't remember the colour hilights on the clothes, but my memory's probably jjust being mean
L626[17:48:35] ⇨ Joins: Renari (Renari!~Renari@24.229.184.254.res-cmts.sm.ptd.net)
L627[17:49:36] <CompanionCube> %drink random
L628[17:49:37] <MichiBot> You drink a muddy adamantium potion (New!). Everything you say is now in Wingdings for five minutes.
L629[17:50:32] <CompanionCube> ♎︎♋︎❍︎■︎ ♓︎⧫︎
L630[17:51:00] <AmandaC> Sorry, I only speak comic sans.
L631[17:54:54] ⇨ Joins: Rahix (Rahix!~Rahix@pD9FFA230.dip0.t-ipconnect.de)
L632[18:13:22] <Temia> Dammit Jill did you get Dorothy drunk again
L633[18:14:09] ⇦ Quits: Inari (Inari!~Pinkishu@pD9E8ECDC.dip0.t-ipconnect.de) (Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/)
L634[18:17:55] ⇦ Quits: Rahix (Rahix!~Rahix@pD9FFA230.dip0.t-ipconnect.de) (Remote host closed the connection)
L635[18:18:10] ⇨ Joins: Rahix (Rahix!~Rahix@pD9FFA230.dip0.t-ipconnect.de)
L636[18:19:21] ⇦ Quits: Vexatos (Vexatos!~Vexatos@port-92-200-89-12.dynamic.qsc.de) (Quit: Insert quantum chemistry joke here)
L637[18:22:55] ⇦ Quits: Rahix (Rahix!~Rahix@pD9FFA230.dip0.t-ipconnect.de) (Read error: -0x7880: SSL - The peer notified us that the connection is going to be closed)
L638[18:23:03] ⇨ Joins: Rahix (Rahix!~Rahix@pD9FFA230.dip0.t-ipconnect.de)
L639[18:30:01] <Kodos> Has anyone heard anything new on Starfield lately
L640[18:32:55] ⇦ Quits: Rahix (Rahix!~Rahix@pD9FFA230.dip0.t-ipconnect.de) (Read error: -0x7880: SSL - The peer notified us that the connection is going to be closed)
L641[18:33:02] ⇨ Joins: Rahix (Rahix!~Rahix@pD9FFA230.dip0.t-ipconnect.de)
L642[18:33:36] <Kodos> %tonkout
L643[18:33:37] <MichiBot> Consarn it! Kodos! You beat CompanionCube's previous record of 2 hours, 35 minutes and 33 seconds (By 6 minutes and 55 seconds)! I hope you're happy!
L644[18:33:38] <MichiBot> Kodos has stolen the tonkout! Tonk has been reset! They gained 0.002 tonk points! plus 0.001 bonus points for consecutive hours! (Reduced to 50% because stealing) Current score: 0.7499
L645[18:37:55] ⇦ Quits: Rahix (Rahix!~Rahix@pD9FFA230.dip0.t-ipconnect.de) (Read error: -0x7880: SSL - The peer notified us that the connection is going to be closed)
L646[18:38:02] ⇨ Joins: Rahix (Rahix!~Rahix@pD9FFA230.dip0.t-ipconnect.de)
L647[18:48:04] ⇨ Joins: rahix_ (rahix_!~Rahix@pD9FFA230.dip0.t-ipconnect.de)
L648[18:50:09] ⇦ Quits: Rahix (Rahix!~Rahix@pD9FFA230.dip0.t-ipconnect.de) (Ping timeout: 189 seconds)
L649[19:17:25] <CompanionCube> dammit i went to poop and forgot to tonk
L650[19:17:29] <CompanionCube> %tonk
L651[19:17:29] <MichiBot> Dogast! CompanionCube! You beat Kodos's previous record of <0 (By 43 minutes and 52 seconds)! I hope you're happy!
L652[19:17:30] <MichiBot> CompanionCube's new record is 43 minutes and 52 seconds! CompanionCube also gained 0.00073 tonk points for stealing the tonk.
L653[19:28:51] <CompanionCube> %sip random
L654[19:28:51] <MichiBot> You drink a resonating grass potion (New!). CompanionCube turns into a water girl for five minutes.
L655[19:34:19] ⇦ Quits: dustinm`_ (dustinm`_!~dustinm@static.38.6.217.95.clients.your-server.de) (Quit: Leaving)
L656[19:35:55] ⇨ Joins: dustinm` (dustinm`!~dustinm@static.38.6.217.95.clients.your-server.de)
L657[19:50:42] <bad at vijya> i think i'm starting to have an idea of how to have a 3x3 piston door
L658[19:50:49] <bad at vijya> that's flush
L659[19:51:18] <bad at vijya> but i'm probably gonna use a ProjectRed IC because f u c k a l l t h a t s h i t
L660[19:51:57] <bad at vijya> my only problem is extending the pistons to finish the door :GWchinaSakuraThinking:
L661[19:55:35] <bad at vijya> jfc the center is the main problem
L662[20:09:45] <ben_mkiv> use opensecurity nanofog :P
L663[20:10:50] <bad at vijya> http://tinyurl.com/y4bmp9oq
L664[20:10:55] <bad at vijya> okay so
L665[20:11:02] <Kodos> %tonk
L666[20:11:04] <MichiBot> Goshhawk! Kodos! You beat CompanionCube's previous record of 43 minutes and 52 seconds (By 9 minutes and 40 seconds)! I hope you're happy!
L667[20:11:05] <MichiBot> Kodos's new record is 53 minutes and 33 seconds! Kodos also gained 0.00016 tonk points for stealing the tonk.
L668[20:11:26] <bad at vijya> probably gonna post a few sequences of colors here so i can remember how the fuck to extend/retract
L669[20:11:51] <bad at vijya> actually nah
L670[20:23:01] <bad at vijya> okay
L671[20:23:10] <bad at vijya> i actually have a sequence
L672[20:23:20] <bad at vijya> tbh i should maybe just use a uC for this
L673[20:23:51] <Bob> I said it earlier
L674[20:23:53] <Bob> listen
L675[20:24:00] * Izaya listens
L676[20:24:07] <Ariri> owo
L677[20:24:24] <Bob> ?
L678[20:24:46] <Ariri> `:b:` mmhm yes yes
L679[20:24:56] <Izaya> but what does it mean
L680[20:25:07] <Ariri> That is the question
L681[20:25:59] <Bob> ? or not 2? that's the question
L682[20:26:07] <Ariri> 42
L683[20:26:17] <Ariri> *waits for correct answer buzzer*
L684[20:26:23] <bad at vijya> okay
L685[20:26:25] <bad at vijya> quick question
L686[20:26:29] <Ariri> 42
L687[20:26:34] <bad at vijya> how the fuck do i power the pistons that make the door flush
L688[20:26:42] <Ariri> lemme c
L689[20:26:47] <Ariri> i know some redstone
L690[20:26:48] <bad at vijya> because i can't move framed cables
L691[20:26:58] <bad at vijya> which makes me A N G E R Y
L692[20:27:02] <bad at vijya> wait wait wait
L693[20:27:06] <Ariri> I thought you could
L694[20:27:13] <Ariri> I remember in Tekkit
L695[20:27:14] <bad at vijya> i wonder if i can use block placers and block removers
L696[20:27:15] <Ariri> I think'\
L697[20:27:28] <Izaya> place redstone blocks :^)
L698[20:27:29] <Ariri> Yeah, you need to power them with a signal tho
L699[20:27:46] <Ariri> you could do a falling edge monostable or something
L700[20:27:52] <Ariri> not sure how its layed out
L701[20:27:59] <bad at vijya> wait then i have to power the--yeah
L702[20:28:00] <bad at vijya> so
L703[20:28:05] <bad at vijya> how the fuck do i do this
L704[20:28:22] <Bob> magic
L705[20:28:22] <Ariri> can i c
L706[20:28:31] <Ariri> or you could try bud powering
L707[20:28:35] <Ariri> if they havnet removed it
L708[20:28:36] <AmandaC> Bloody shower sacrafices to the dark lord satan
L709[20:28:40] <Ariri> or obserbers
L710[20:28:44] <Ariri> forget they r thing
L711[20:28:49] <Ariri> observers*
L712[20:28:50] <Izaya> tfw server is down
L713[20:29:16] <Ariri> server?
L714[20:29:32] <Ariri> Has anyone used the google smart lock app thing for mobile
L715[20:29:37] <Izaya> the server I've been playing on
L716[20:29:37] <AmandaC> Izaya's waiter tripped
L717[20:29:41] <Izaya> yes that also
L718[20:29:41] <Ariri> I dont really understand the point of it
L719[20:29:45] <Ariri> Haha^
L720[20:29:48] <Ariri> oh
L721[20:29:53] <Izaya> ... is a maid a server
L722[20:29:57] <Izaya> (asking for a friend)
L723[20:30:03] <Ariri> i suppose so
L724[20:30:07] <Ariri> technically
L725[20:30:19] <Ariri> and they r sometimes referred to as *serve*ants
L726[20:30:34] <bad at vijya> reee, i need to have the thing flush to hide my ICBM silo
L727[20:30:36] <AmandaC> Izaya: I mean, in media they handle bringing out food for the nobles, so I guess?
L728[20:30:49] <Izaya> excellent
L729[20:31:00] <Ariri> Gothic maids = kawaii desu
L730[20:31:14] <Ariri> speaking of which, saw a sick bike decal for a maid character in a game i play
L731[20:31:20] <Ariri> it was neat
L732[20:32:02] <AmandaC> Izaya: now, where does this friend live, I'm a bit low on funds
L733[20:32:26] <Izaya> I'll PM you the location in GPS coordinates
L734[20:32:28] <Ariri> Haha
L735[20:32:35] <Ariri> exif
L736[20:33:16] <AmandaC> Inb4 gos coordinates turn out to be a police station
L737[20:33:55] <Ariri> http://tinyurl.com/yxcrpdft
L738[20:34:09] <Izaya> -24.46723/134.31539
L739[20:34:49] <Ariri> Ooh prett
L740[20:34:52] <Ariri> pretty
L741[20:35:01] <Ariri> Reminds me of Horseshoe Bend
L742[20:35:36] <Ariri> Never mind thats in the middle of bloody nowhere
L743[20:35:55] <Ariri> I saw this before I changed to satelite view https://i.imgur.com/LJEd0hA.png
L744[20:36:12] <Izaya> I'd have posted an actual location but I don't wanna get be murdered by a psycho IRC lurker
L745[20:36:20] <Izaya> ... or, more likely, an average Discord user
L746[20:36:46] <AmandaC> Figured out how to input that to gmaps
L747[20:37:01] <Ariri> ^^ haha
L748[20:37:08] <Ariri> prob a discord user tbh
L749[20:37:25] <Izaya> AmandaC: I copied it straight out of the OSM URL tbh
L750[20:37:27] <bad at vijya> i wish slime blocks were a thing
L751[20:37:30] <Ariri> all these squeakers pretending theyre cool when they *have* kali linux
L752[20:37:39] <bad at vijya> it'd make my life significantly easier
L753[20:37:44] <bad at vijya> in 1.7.1
L754[20:37:47] <bad at vijya> *1.7.10
L755[20:37:53] <bad at vijya> lmao
L756[20:37:58] * Izaya gives AC Natura
L757[20:38:01] <bad at vijya> should have added that
L758[20:38:09] <Ariri> oh
L759[20:38:29] <AmandaC> ... squeakers? Is that some youngling term for skiddie?
L760[20:38:31] <bad at vijya> like
L761[20:38:37] <Ariri> both
L762[20:38:43] <bad at vijya> i need something so one piston can pull multiple blocks
L763[20:39:22] <Ariri> skiddies or just really young kids who havent matured in their voice or heads and have really poor ettiquette and usually hack and ddos servers they are on to throw a fit when things dont go their way
L764[20:39:26] <Ariri> ie, minges
L765[20:39:34] <AmandaC> BRB looking for a cloud to yell at. It's surprisingly clear tonight
L766[20:40:17] <Ariri> %blame cloud
L767[20:40:18] * MichiBot blames cloud for the zombie breakout
L768[20:40:32] <Ariri> Whats with the zombie breakouts
L769[20:40:36] <AmandaC> Omg spoilers!
L770[20:40:39] <Ariri> and Discords bad webhook
L771[20:40:46] <Ariri> huh?
L772[20:41:10] <AmandaC> Cloud causes a zombie breakout in ff7?!?!?
L773[20:41:42] <Izaya> >server is down
L774[20:41:44] <Ariri> No wayyyy
L775[20:41:47] <Izaya> >other server's pack is broken
L776[20:41:51] <Izaya> what do I do today
L777[20:42:24] <AmandaC> Izaya: and here you are, stuck in the middle with michibot
L778[20:42:42] <Ariri> *fades into black*
L779[20:42:43] <bad at vijya> i got this
L780[20:42:47] <bad at vijya> i figured it out
L781[20:42:53] <bad at vijya> i found a mod to do what i needed
L782[20:43:07] <Izaya> AmandaC: good song https://www.youtube.com/watch?v=OMAIsqvTh7g
L783[20:43:08] <MichiBot> Stuck in the Middle with you - Stealers Wheel | length: 3m 30s | Likes: 25,907 Dislikes: 394 Views: 4,651,860 | by MagicHat233 | Published On 13/11/2008
L784[20:43:13] <bad at vijya> it literally only adds a slime block like in 1.8+ tho it does add another piston, but that's fine
L785[20:43:23] <Ariri> I really expected a rick roll right there
L786[20:43:30] <bad at vijya> it's literally only for things like big doors and ofc my silo door
L787[20:43:47] <Ariri> Tinker's Mechworks?
L788[20:43:59] <AmandaC> Izaya: my main point of contact with that era / type if music is interestingly, my dentists office
L789[20:44:11] <Ariri> I made a 22 by 12 silo door for my rocket launch bay using that^^
L790[20:46:13] <bad at vijya> oh
L791[20:46:15] <bad at vijya> that
L792[20:46:22] <bad at vijya> that might have been better but
L793[20:46:28] <bad at vijya> it was called "Back in Slime"
L794[20:46:35] <AmandaC> "Phillidelphia's soft classic rock station, wphl(?)" Is unfairly tied to my slight phobia of dentists
L795[20:47:56] <Mimiru> Izaya, you should play City of Heroes!
L796[20:48:22] <AmandaC> And there's Mimiru recruiting for her cult. -flees-
L797[20:48:33] <Mimiru> :(
L798[20:48:37] <Mimiru> But.. it's fun!
L799[20:48:43] <AmandaC> Sorry ?
L800[20:48:52] <AmandaC> I'm just in a silly mood tonight
L801[20:48:59] <Mimiru> lol
L802[20:49:18] <Mimiru> I figured, I was just playing along heh
L803[20:50:08] <AmandaC> Ah
L804[20:50:31] <Mimiru> But really.. it's fun.
L805[20:50:35] <Mimiru> :P
L806[20:51:19] <AmandaC> Lololol
L807[20:51:55] <Izaya> AmandaC: my mum and dad played lots of VHS tapes of Countdown with this sort of music
L808[20:51:57] <Mimiru> Unless you're trying to play from Linux, if Lizzy's experience is anything to go on
L809[20:52:13] <Izaya> well I don't own a copy of windows or a machine with windows so
L810[20:52:23] <Mimiru> It'll play
L811[20:52:28] <Mimiru> it was just a pain to get working AFAIK
L812[20:52:41] <Izaya> but also superheroes are kinda not my thing
L813[20:52:48] <Mimiru> it's a MMO that's been shutdown for ~8 years, not like things like Wine go out of their way to keep it working
L814[20:54:35] <Mimiru> :/ why is the load on my server 6.2, but CPU usage is basically 0
L815[20:54:39] <Mimiru> and theres nothing in io
L816[20:57:02] <AmandaC> %tell Inari -cusses in cat- https://i.imgur.com/qkrRQ9W.jpg
L817[20:57:02] <MichiBot> AmandaC: Inari will be notified of this message when next seen.
L818[20:57:19] <AmandaC> payonel: ^
L819[21:00:25] ⇦ Quits: rahix_ (rahix_!~Rahix@pD9FFA230.dip0.t-ipconnect.de) (Remote host closed the connection)
L820[21:00:52] <bad at vijya> oh
L821[21:00:58] <bad at vijya> back in slime is a buggy mess
L822[21:01:00] <bad at vijya> o k
L823[21:17:05] <bad at vijya> HAHA
L824[21:17:06] <bad at vijya> FUCK YEA
L825[21:17:56] <bad at vijya> except now i need to hook it up to the bundled wire
L826[21:18:00] ⇨ Joins: Julian_the_Paladin (Julian_the_Paladin!~Julian_th@24.34.52.247)
L827[21:18:10] ⇦ Parts: Julian_the_Paladin (Julian_the_Paladin!~Julian_th@24.34.52.247) ())
L828[21:49:21] ⇦ Quits: Cervator (Cervator!~Thunderbi@2601:4c1:4000:362c:3552:69f2:d9ed:6a3b) (Quit: Cervator)
L829[22:00:58] <Izaya> blegh the 1998 Cold Chisel compilation album sounds ... autotuned
L830[22:02:39] <Izaya> in other news I finally found an mpd client I like
L831[22:02:42] <Izaya> Cantata is solid
L832[22:13:57] <bad at vijya> i think i've got a solid design for a 3x3 door
L833[22:14:50] <bad at vijya> wait fuck i just had a genius idea for a 3x3 door but it only works vertically
L834[22:16:17] <Bob> you can make it work honrizontally
L835[22:16:25] <bad at vijya> tl;dr pistons and a block with gravity
L836[22:16:35] <bad at vijya> so no, probably can't make it work horizontally
L837[22:16:37] <Bob> Slime blocks : am i a joke to you
L838[22:16:41] <bad at vijya> 1.7.10
L839[22:16:46] <Bob> unless youre using the joke 1.7.10
L840[22:16:46] <Bob> yea
L841[22:16:53] <bad at vijya> the slime block mod i had ate ass
L842[22:17:05] <Bob> the lag block
L843[22:17:11] <bad at vijya> piston fucking magic'd itself out of existance when i tried to do anything complex
L844[22:21:15] <Izaya> gravity doors would be ez
L845[22:22:07] <bad at vijya> yeah but i had an idea for a flush door :)
L846[22:22:08] <Ariri> tbh tinkers mechworks is the best for simple lag free silos
L847[22:22:22] <Ariri> that and wireless redstone stuff from project red
L848[22:22:32] <Ariri> i did some amazing reactor automation with them
L849[22:22:38] <Ariri> well not amazing but
L850[22:22:39] <Ariri> cool
L851[22:22:54] <Ariri> Also anyone wanna play rocket league?
L852[22:22:58] <Ariri> Im lonely T-T
L853[22:23:14] <Bob> all i can play is phone stuff
L854[22:23:24] <Ariri> Honkai Impact 3rd? ^~^
L855[22:23:47] <Izaya> was that the chinese one
L856[22:23:56] <Izaya> chinese phone games don't require Google Play Services and I appreciate that
L857[22:24:03] <Ariri> I think so
L858[22:24:08] <bad at vijya> but mobile games
L859[22:24:17] <Bob> I don't speak Weeb and yea mobile games ftw
L860[22:24:18] <Ariri> https://i.imgur.com/Rt5Vzns.png
L861[22:24:18] <Ariri> Just thought id share
L862[22:24:25] <Ariri> :(
L863[22:24:29] <bad at vijya> mobile games are trash
L864[22:24:36] <Ariri> :no u:
L865[22:25:02] <Izaya> Ren'Py games can run on Android
L866[22:25:06] <Izaya> therefore, your statement is false
L867[22:25:16] <bad at vijya> the only good mobile game is half-life 1
L868[22:25:22] <bad at vijya> and the expansions
L869[22:25:58] <Bob> all i really do on my phone is love2d apps since 2/3 of the time i dont even have internet
L870[22:26:08] <bad at vijya> ha nerd
L871[22:26:09] <Bob> like now wifi modem that i bet works on coax just crashed
L872[22:26:14] <bad at vijya> get internet
L873[22:26:27] <Bob> Here i am back
L874[22:26:28] <Ariri> scrub
L875[22:26:31] <Bob> :GWlulurdMmmYea: u
L876[22:26:38] <bad at vijya> no u
L877[22:26:38] <Ariri> :)
L878[22:26:52] <bad at vijya> :GWnonAiSmug:
L879[22:26:53] <Bob> @Ariri double scrub
L880[22:27:09] <Ariri> http://tinyurl.com/y3o8ekyj
L881[22:27:16] <bad at vijya> triple scrub @Ariri
L882[22:27:28] <Ariri> http://tinyurl.com/yykanjxg
L883[22:27:36] <bad at vijya> kek
L884[22:27:47] <Ariri> Sorry for word
L885[22:27:49] <Bob> help i ate molten rock
L886[22:27:50] <Izaya> side note
L887[22:27:50] <Ariri> forgot
L888[22:27:56] <bad at vijya> pfft
L889[22:27:57] <Izaya> when did android stop allowing you to move software to the SD card
L890[22:28:07] <Bob> Never allowed
L891[22:28:15] <Bob> Very stupid
L892[22:28:20] <Izaya> I don't really want to downgrade back to v5 or v6 to get the functionality back
L893[22:28:25] <Izaya> >never allowed
L894[22:28:27] <Izaya> false
L895[22:28:30] <bad at vijya> Izaya: SD has to expand internal storage or some shit
L896[22:28:37] <Izaya> but I don't want it to do that
L897[22:28:40] <Izaya> that's not what I want it to do
L898[22:28:48] <bad at vijya> well that's the only way
L899[22:28:51] <bad at vijya> google said so :^)
L900[22:28:59] * Izaya installs pmOS
L901[22:28:59] <Bob> use su
L902[22:29:09] <Izaya> google makes me unhappy
L903[22:29:11] <bad at vijya> anyways, there's ways to do it as root iirc
L904[22:29:28] <Bob> Sadly my phone brand recently locked ~~as i bought~~ my phone bootloader unlock key
L905[22:29:34] <Bob> And im fucked deeply basically
L906[22:29:43] <Bob> i feel bad for using stuff i can not use fully
L907[22:29:45] <bad at vijya> i wonder what it would take to put pmOS on the LG H631
L908[22:29:59] * Izaya laughs in 2015 Moto G
L909[22:30:07] <bad at vijya> had that phone
L910[22:30:23] <bad at vijya> mine apparently was just defective or some shit
L911[22:30:37] <bad at vijya> rather odd tho all my problems happened out of warenty :GWchinaSakuraThinking:
L912[22:30:49] <Bob> Archos 50 power best f'ing phone
L913[22:30:58] <Bob> I changed even partitions lmfao
L914[22:30:58] <bad at vijya> just out of warenty
L915[22:31:13] <bad at vijya> My LG H631 is pretty comfy
L916[22:31:21] <Izaya> pine phone soon
L917[22:31:27] <bad at vijya> i would say "LG Stylo" but there's multiple versions of the LG Stylo
L918[22:31:31] <bad at vijya> PINE PHONE
L919[22:31:33] <bad at vijya> PINE PHONE
L920[22:31:55] <Izaya> side note purism has been showing off real software running on their phone dev board
L921[22:31:57] <Izaya> https://social.librem.one/@purism
L922[22:32:01] <bad at vijya> tbh
L923[22:32:11] <bad at vijya> when my LG H631 finally kicks the bucket
L924[22:32:23] <bad at vijya> i'll probably get a pine phone
L925[22:33:09] <Izaya> I'm getting off the android rollercoaster ASAP
L926[22:33:23] <Izaya> anything that actively removes user choice can fuck off
L927[22:33:26] <bad at vijya> hey who said i was running android
L928[22:33:32] <Bob> Izaya exctly
L929[22:34:09] <Bob> But they fucked me so deep and rooting or anything really is locked
L930[22:34:13] <Bob> Android 9 eek
L931[22:34:27] <bad at vijya> i'll probably yoink anything built for the LG K10 LTE
L932[22:34:31] <bad at vijya> and modify it
L933[22:34:41] <bad at vijya> just like how my LineageOS 14.1 port was made
L934[22:36:13] <bad at vijya> hmm
L935[22:36:18] <bad at vijya> i might end up having to make my own port
L936[22:36:34] <Mimiru> %tell Vexatos https://i.imgur.com/HoRhj0Y.jpg
L937[22:36:35] <MichiBot> Mimiru: Vexatos will be notified of this message when next seen.
L938[22:38:43] <Izaya> ayy
L939[22:38:48] <Izaya> osprey:/ # pm set-install-location 2
L940[22:38:59] <Izaya> osprey:/ # pm get-install-location
L941[22:39:00] <Izaya> 2[external]
L942[22:39:59] <bad at vijya> wait
L943[22:40:00] <bad at vijya> wait
L944[22:40:04] <bad at vijya> i'm a bit stupid
L945[22:40:14] <bad at vijya> moto g 2015 is not what i had
L946[22:40:22] <bad at vijya> i had moto g4
L947[22:40:27] <bad at vijya> athene
L948[22:41:02] <Izaya> ah yeah it has a few issues
L949[22:41:18] <bad at vijya> athene had some godawful issues
L950[22:41:30] <bad at vijya> *coughtouchscreencough*
L951[22:41:33] <bad at vijya> anyways
L952[22:41:50] <bad at vijya> not sure if my H631 has enough storage for something like KDE Neon or whatever
L953[22:42:06] <bad at vijya> since it says *minimum* of 16GB
L954[22:43:33] <Izaya> ignore neon
L955[22:43:40] <bad at vijya> dam ok
L956[22:43:41] <bad at vijya> https://github.com/touchpro/android_kernel_lge_msm8916
L957[22:43:53] <bad at vijya> anyways this is nice to have
L958[22:43:55] <Izaya> pmOS is based on Alpine which uses musl libc which uses a lot less space than glibc
L959[22:44:17] <bad at vijya> huh
L960[22:44:26] <bad at vijya> yeah but i also wanna use my phone for phone calls tbh
L961[22:44:45] <Izaya> ... if it's supported under Neon it'll work on pmOS?
L962[22:45:17] <bad at vijya> hey they say it doesn't work so
L963[22:45:20] <bad at vijya> ¯\_(ツ)_/¯
L964[22:45:30] <Izaya> not yet :^)
L965[22:46:36] <bad at vijya> yea
L966[22:46:47] <bad at vijya> but i would like to try pmOS out
L967[22:47:05] <bad at vijya> can't i fastboot it before actually installing it?
L968[22:50:17] <Izaya> I had it installed on an SD card and fastbooted the kernel image
L969[22:52:34] <bad at vijya> huh
L970[22:52:40] <bad at vijya> i might do that
L971[22:53:02] <bad at vijya> i think i have a spare SD card around
L972[22:55:06] <The_Stargazer> so recently I've been getting a lot of `The remote host closed the connection`
L973[22:55:06] <The_Stargazer> would anyone here know why? is it just my crappy internet?
L974[22:56:46] <Izaya> probably a router somewhere in between
L975[22:56:58] <bad at vijya> Izaya: https://forum.xda-developers.com/lg-g-stylo/development/lineage-os-14-1-beta-1-uploaded-t3734833 I should be able to use this to get what I need for pmOS, rite?
L976[22:57:04] <bad at vijya> Like all the github repos here
L977[22:57:15] <Izaya> or keepalives not getting from your client to the server
L978[22:57:23] <Izaya> AC: idk I just used the build for my device
L979[22:57:44] <Izaya> "build" there were build steps and they were automated so I used that
L980[22:58:02] <bad at vijya> oh
L981[22:58:07] <bad at vijya> f
L982[22:58:49] <The_Stargazer> Probably the latter
L983[22:59:10] <The_Stargazer> My connection is big shit
L984[22:59:59] <bad at vijya> switching to IRC sec
L985[23:00:31] ⇨ Joins: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net)
L986[23:00:38] <AdorableCatgirl> heya gamers
L987[23:00:41] <Izaya> why not just always be on IRC tbh
L988[23:01:02] <AdorableCatgirl> got friends who only use discord
L989[23:01:35] <Izaya> how sad
L990[23:01:55] <Izaya> I'm sure you can free them! I believe in you!
L991[23:02:35] <Izaya> anyway staying on IRC is effectively free, assuming hexchat hasn't switched to a 100% Big Mac diet while I haven't been using it so
L992[23:03:09] <AdorableCatgirl> pfft
L993[23:03:18] <AdorableCatgirl> >using hexchat
L994[23:04:11] <Izaya> use Vision instead
L995[23:04:14] * Izaya install haiku
L996[23:04:29] <Izaya> side note I'm 100% gonna dual boot loonix and haiku on this X220
L997[23:04:35] <Mimiru> https://imgur.com/gallery/T1Gm3nq
L998[23:04:51] <AdorableCatgirl> i use irssi
L999[23:04:52] <AdorableCatgirl> B)
L1000[23:05:24] <Izaya> Mimiru: there are many jokes for this, but none that are worth saying
L1001[23:05:27] <The_Stargazer> what tier screens are remote terminals?
L1002[23:05:40] <Mimiru> -7
L1003[23:05:46] <The_Stargazer> also mimiru: your webhook is a blue default Discord icon
L1004[23:06:35] <Mimiru> Unfortunately my numfucks given variable is null, therefore you've crashed the universe.
L1005[23:06:37] <Mimiru> GJ
L1006[23:06:46] <The_Stargazer> My numfucks variable is always nil too
L1007[23:07:12] <The_Stargazer> People stopped giving me them and I stopped giving them out a while ago
L1008[23:07:22] <Izaya> friendly reminder that avatars detract from conversation
L1009[23:07:31] <The_Stargazer> I suppose
L1010[23:07:44] <The_Stargazer> On a side note I've had a default avatar for like
L1011[23:07:50] <Mimiru> Friendly reminder that opinions are like assholes.
L1012[23:07:51] <The_Stargazer> at least a year or probably two
L1013[23:07:55] <Mimiru> further comment not needed.
L1014[23:08:09] <The_Stargazer> I will never change my default avatar
L1015[23:08:30] <The_Stargazer> the irony is it sorta makes me unique
L1016[23:08:38] <The_Stargazer> different note:
L1017[23:08:49] <The_Stargazer> thinking of using a single RAID for my servers
L1018[23:08:57] <The_Stargazer> instead of giving all of them 4x t3 hdds
L1019[23:08:59] <AdorableCatgirl> raid the servers?
L1020[23:09:07] <The_Stargazer> 3 of which I'll probably never use
L1021[23:09:19] <The_Stargazer> yeah like a single shared HDD for all of them
L1022[23:09:25] <The_Stargazer> takes less time too
L1023[23:09:30] <The_Stargazer> don't have to install openos on all of em
L1024[23:09:38] <The_Stargazer> I can just install openos on the RAID
L1025[23:09:41] <The_Stargazer> and be done with it
L1026[23:09:43] <AdorableCatgirl> R A I D T H E S E R V E R S
L1027[23:09:45] * Izaya has been meaning to write something to allow remote FS access at the component call level
L1028[23:09:50] <AdorableCatgirl> TO THE COMPUTER ROOM
L1029[23:10:03] <The_Stargazer> there's an xkcd for that
L1030[23:10:15] <The_Stargazer> about heists and server rooms
L1031[23:10:21] <AdorableCatgirl> WHERE'S
L1032[23:10:21] <The_Stargazer> can't remember the name
L1033[23:10:22] <AdorableCatgirl> THE
L1034[23:10:23] <Izaya> does it involve a large wrench
L1035[23:10:24] <AdorableCatgirl> COMPUTER
L1036[23:10:25] <AdorableCatgirl> ROOM
L1037[23:10:26] <The_Stargazer> there's an xkcd for everything
L1038[23:10:47] <The_Stargazer> that reminds me
L1039[23:10:52] <Mimiru> https://caitlynmainer.com/discord/yuri/generateavatar.php?nick=Mimiru ._. but other avatars work
L1040[23:10:54] * Mimiru sighs
L1041[23:11:01] <The_Stargazer> I made a program to just download as much xkcd as possible
L1042[23:11:15] <The_Stargazer> using luvit's coro-fs and coro-http
L1043[23:11:25] <AdorableCatgirl> guts i found the computer room--ew luvit
L1044[23:11:44] <The_Stargazer> luvit is the solution to my luasec problems
L1045[23:11:50] <Mimiru> Test
L1046[23:11:52] <The_Stargazer> no more compiling shit
L1047[23:11:54] <AdorableCatgirl> e w l u v i t
L1048[23:12:01] <AdorableCatgirl> >not compiling in current year
L1049[23:12:15] <The_Stargazer> >having to use visual studio
L1050[23:12:19] <AdorableCatgirl> >WINDOWS
L1051[23:12:22] <AdorableCatgirl> >CURRENT YEAR
L1052[23:12:24] <Izaya> >using a system on which Visual Molasses runs
L1053[23:12:28] <The_Stargazer> >INTERNET CAFE
L1054[23:12:40] <The_Stargazer> they run windows probably because fortnite
L1055[23:12:50] <Izaya> build a cantenna
L1056[23:12:54] <The_Stargazer> and windows is popular
L1057[23:12:58] <AdorableCatgirl> windows is garbage
L1058[23:13:01] <The_Stargazer> they don't have wifi
L1059[23:13:05] <The_Stargazer> they use ethernet
L1060[23:13:06] <Izaya> install aircrack-ng
L1061[23:13:12] <The_Stargazer> and it's also in town
L1062[23:13:21] <Izaya> find someone with a shitty password
L1063[23:13:37] <The_Stargazer> wait
L1064[23:13:42] <The_Stargazer> doesn't aircrack-ng only work
L1065[23:13:45] <The_Stargazer> with certain cards?
L1066[23:14:06] <AdorableCatgirl> but imagine compiling things on a penryn single core
L1067[23:14:10] <The_Stargazer> i've got a qualcomm atheros wireless card in this laptop
L1068[23:14:10] <AdorableCatgirl> B(
L1069[23:14:17] <Izaya> atheros stronk
L1070[23:14:35] <AdorableCatgirl> sec
L1071[23:14:38] <The_Stargazer> are you meaning to make a joke and say it's bad or are you actually saying it's good
L1072[23:14:41] <AdorableCatgirl> i forgot what wifi card i have
L1073[23:14:46] <AdorableCatgirl> all i remember is it was shit
L1074[23:14:53] <Izaya> I should dewhitelist this laptop and put in one of those 802.11ac cards in here
L1075[23:15:01] <Izaya> so I can fuck off the proprietary iwlwifi firmware
L1076[23:15:09] <Izaya> s/ac/ac atheros/
L1077[23:15:10] <MichiBot> <Izaya> I should dewhitelist this laptop and put in one of those 802.11ac atheros cards in here
L1078[23:15:18] <AdorableCatgirl> oh yeah
L1079[23:15:21] <AdorableCatgirl> i forgot
L1080[23:15:35] <AdorableCatgirl> i have the shittier RTL8723BE
L1081[23:16:05] <Izaya> Device-2: Intel Centrino Advanced-N 6205 [Taylor Peak] driver: iwlwifi
L1082[23:16:08] <The_Stargazer> i'm surprised this laptop can actually run games like HDNRB3
L1083[23:16:08] <The_Stargazer> the system requirements exceed this laptop
L1084[23:16:11] <The_Stargazer> but it runs it
L1085[23:16:51] <AdorableCatgirl> >be me
L1086[23:17:05] <The_Stargazer> we need RAID levels in OC
L1087[23:17:08] <The_Stargazer> so we can have RAID 1
L1088[23:17:12] <AdorableCatgirl> >see realtek in lspci
L1089[23:17:12] <The_Stargazer> atm it's only RAID 0
L1090[23:17:27] <AdorableCatgirl> >be sad
L1091[23:17:30] <The_Stargazer> sound card or wifi?
L1092[23:17:41] <AdorableCatgirl> wifi and ethernet
L1093[23:17:42] <The_Stargazer> this laptop iirc has a realtek sound card
L1094[23:17:51] <The_Stargazer> it has something to do with realtek because it's got realtek drivers
L1095[23:17:51] <AdorableCatgirl> so basically garbagetier
L1096[23:18:04] <AdorableCatgirl> thankfully the arch installer comes with the drivers
L1097[23:18:12] <Izaya> The_Stargazer: consider the following
L1098[23:18:20] <AdorableCatgirl> so i could actually install the OS this time, unlike DEEBEEN
L1099[23:18:42] <Izaya> register a vcomponent block device that passes write requests to both devices it is attached to and round-robins the read requests between them
L1100[23:18:56] <The_Stargazer> what's a vcomponent
L1101[23:19:01] <Bob> unRealTek
L1102[23:19:02] <Izaya> a virtual component
L1103[23:19:05] <The_Stargazer> right
L1104[23:19:09] <Izaya> I wish they were unreal
L1105[23:19:12] <AdorableCatgirl> virtual component
L1106[23:19:26] <AdorableCatgirl> i wish realtek would commit liven't
L1107[23:19:32] <The_Stargazer> so
L1108[23:19:34] <Izaya> vcomponent specifically refers to the vcomponent library, which handles the registering of said virtual component
L1109[23:19:47] <The_Stargazer> for servers which can have up to 4x t3 hdd
L1110[23:19:54] <The_Stargazer> RAID 1 would just involve copying all data
L1111[23:20:07] <The_Stargazer> and syncing all of them
L1112[23:20:10] <Izaya> and then writing to both from that point on, yes
L1113[23:20:16] <AdorableCatgirl> at least my audio isn't realtek
L1114[23:20:18] <Izaya> but that assumes block devices
L1115[23:20:19] <The_Stargazer> well
L1116[23:20:19] <The_Stargazer> write to one
L1117[23:20:22] <AdorableCatgirl> AMD papa bless
L1118[23:20:23] <The_Stargazer> and then sync to the other three
L1119[23:20:29] <Izaya> but like
L1120[23:20:34] <Izaya> why do it in two steps
L1121[23:20:40] <The_Stargazer> because easier
L1122[23:20:45] <Izaya> not really
L1123[23:20:59] <Izaya> if you're registering a vcomponent any just loop over all the devices when writing
L1124[23:21:06] <Izaya> s/any/anyway/
L1125[23:21:06] <MichiBot> <Izaya> if you're registering a vcomponent anyway just loop over all the devices when writing
L1126[23:21:10] <The_Stargazer> which I don't know how to do
L1127[23:21:25] <AdorableCatgirl> oh i have a vcomp module for my BIOS
L1128[23:21:31] <AdorableCatgirl> which i haven't worked on in forever
L1129[23:21:58] <Izaya> so look at the docs and the library?
L1130[23:22:01] <Izaya> fuckin
L1131[23:22:23] <Izaya> I don't know how to do any of the stuff I do I just have this amazing thing called a computer that I can use to reference documentation
L1132[23:22:44] <AdorableCatgirl> tbh
L1133[23:22:53] <AdorableCatgirl> anytime i run into a problem with anything
L1134[23:23:03] <AdorableCatgirl> i go straight to looking up the problem
L1135[23:23:21] <Izaya> the issues come when you're working entirely inside a system you wrote yourself and nothing works :p
L1136[23:24:38] <AdorableCatgirl> ^
L1137[23:26:10] <Kodos> %tonk
L1138[23:26:11] <MichiBot> Fopdoodle! Kodos! You beat your own previous record of 53 minutes and 33 seconds (By 2 hours, 21 minutes and 33 seconds)! I hope you're happy!
L1139[23:26:12] <MichiBot> Kodos's new record is 3 hours, 15 minutes and 7 seconds! No points gained for stealing from yourself. (Lost out on 0.00236 x 1 = 0.00236)
L1140[23:27:33] <The_Stargazer> i once built like
L1141[23:27:33] <The_Stargazer> a matrix room
L1142[23:27:33] <The_Stargazer> with a massive amount of raids
L1143[23:27:41] <The_Stargazer> i think it was atleast 10gb
L1144[23:27:42] <Jewson> Hello
L1145[23:27:47] <The_Stargazer> Hi
L1146[23:27:57] <Jewson> I got very important question
L1147[23:28:06] <AdorableCatgirl> should make Zorya into a mini OS /s
L1148[23:28:08] <Jewson> Will oc be ported to 1.14.x
L1149[23:28:11] <Jewson> ?
L1150[23:28:16] <The_Stargazer> Probably
L1151[23:28:23] <The_Stargazer> Ask a dev
L1152[23:28:23] <AdorableCatgirl> no it's getting ported to minecraft 2.0
L1153[23:28:30] <Jewson> Oh no
L1154[23:28:35] <The_Stargazer> oi don't be mean
L1155[23:28:40] <Izaya> 2560 drives to make 10GB
L1156[23:28:44] <Jewson> No it's ok
L1157[23:28:53] <The_Stargazer> Minecraft 2.0 isn't a real thing btw
L1158[23:28:59] <Izaya> not yet it isn't
L1159[23:29:00] <Jewson> i know
L1160[23:29:00] <The_Stargazer> just incase you didnt know
L1161[23:29:10] <The_Stargazer> imagine if in the future
L1162[23:29:12] <The_Stargazer> we have 1.50
L1163[23:29:19] <The_Stargazer> what will we do when we hit 1.100
L1164[23:29:23] <Jewson> I've been playing this game for god knows how long?
L1165[23:29:27] <AdorableCatgirl> minecraft 2.0 was an april fools joke
L1166[23:29:29] <Jewson> I've been playing this game for god knows how long. [Edited]
L1167[23:29:29] <The_Stargazer> maybe 1.99 > 2.0
L1168[23:29:46] <The_Stargazer> floating point versionning
L1169[23:30:04] <The_Stargazer> anyway, yeah it'll probably be ported
L1170[23:30:07] <AdorableCatgirl> minecraft 0.3000000000000000000000000001
L1171[23:30:12] <Jewson> I remember minecraft beta 1.4 when they added beds
L1172[23:30:30] <The_Stargazer> and now we have beds in all 16 colours
L1173[23:30:36] <Jewson> yes
L1174[23:30:46] <Izaya> can I just say that the beta cobblestone texture is superior
L1175[23:30:46] <Jewson> I remember times before charcoal
L1176[23:30:57] <Jewson> Yes and no
L1177[23:31:22] <Jewson> I miss minecraft beta
L1178[23:31:27] <Jewson> Missing so much stuff
L1179[23:31:32] <Jewson> That modders had to add
L1180[23:31:39] <Jewson> for eg. pistons
L1181[23:31:44] <Jewson> Until beta 1.7.3
L1182[23:31:56] <Jewson> Until beta 1.7 [Edited]
L1183[23:32:17] <Jewson> Good old times
L1184[23:32:28] <Izaya> back when updates added things
L1185[23:32:40] <Jewson> I think I started playing minecraft at beta 1.2 or 1.3
L1186[23:32:42] <AdorableCatgirl> what do updates even do anymore
L1187[23:32:54] <AdorableCatgirl> besides bloat
L1188[23:33:01] <Izaya> hurt performance
L1189[23:33:03] <Jewson> I guess nothing sience modders have to still add missing stuff XD
L1190[23:33:21] <Jewson> This is why we have optifine
L1191[23:33:31] <Izaya> optifine is a hack
L1192[23:33:40] <Jewson> That fixes what *** **DEVS** can't
L1193[23:33:47] <Jewson> That fixes what *** DEVS can't [Edited]
L1194[23:34:03] <Jewson> optifine is not a hack
L1195[23:34:07] <AdorableCatgirl> edited
L1196[23:34:27] <Jewson> it is a mod that fixes what mojang/microsoft can't
L1197[23:34:30] <Izaya> there are other much less invasive and incompatible performance mods
L1198[23:34:40] <Izaya> Fastcraft, foamfix, etc
L1199[23:34:56] <Jewson> Optifine is the longest standing one
L1200[23:34:56] <AdorableCatgirl> for 1.12.2, i ended up having to make a cocktail of performance mods B)
L1201[23:35:08] <AdorableCatgirl> also isn't fastcraft just as invasive?
L1202[23:35:13] <AdorableCatgirl> or am i a fucking idiot
L1203[23:35:16] <Izaya> it breaks less stuff at any rate
L1204[23:35:21] <Izaya> not sure how it looks internally
L1205[23:35:22] <AdorableCatgirl> fair enough
L1206[23:35:29] <Jewson> That's why I stayed in 17.10
L1207[23:35:32] <Jewson> That's why I stayed in 1.7.10 [Edited]
L1208[23:35:48] <Jewson> But recently made profile for 1.14.3
L1209[23:36:00] <AdorableCatgirl> >1.14
L1210[23:36:01] <Jewson> And performance wise it doesn't look that bad
L1211[23:36:03] <AdorableCatgirl> pfft
L1212[23:36:21] <Jewson> Or meybe my computer isn't that bad after all
L1213[23:36:22] <Jewson> XD
L1214[23:36:32] <AdorableCatgirl> 1.7.10 and 1.12.2 are my versions
L1215[23:36:54] <Jewson> Still minecraft java edition is superior to bedrock edition and we can all agree on that
L1216[23:36:57] <Izaya> %choose install steam and play SPAZ on laptop or wait till SSD arrives
L1217[23:36:57] <MichiBot> Izaya: Somebody once told me to roll with "install steam and play SPAZ on laptop"
L1218[23:37:14] <Izaya> s/bedrock/pocket/
L1219[23:37:14] <MichiBot> <Jewson> Still minecraft java edition is superior to pocket edition and we can all agree on that
L1220[23:37:16] <Izaya> FTFY
L1221[23:37:50] <Jewson> I meant bedrock
L1222[23:38:03] <Jewson> Because in bedrock redstone is broken
L1223[23:38:05] <Izaya> I know.
L1224[23:38:13] <Izaya> And Bedrock is Pocket Edition
L1225[23:38:38] <Jewson> Bedrock is: pocket, xbox, playstation, windows 10 edition
L1226[23:38:46] <Jewson> And then we have java edition
L1227[23:38:49] <The_Stargazer> Can two computers boot off the same RAID?
L1228[23:38:54] <Izaya> all of those are the pocket edition codebase
L1229[23:38:55] <Jewson> Yes
L1230[23:39:06] <Jewson> @The_Stargazer yes
L1231[23:39:12] <The_Stargazer> cool, thanks
L1232[23:39:17] <Izaya> but they share component networks then, yes?
L1233[23:39:20] <Jewson> But in that can I recomend using servers
L1234[23:39:24] <The_Stargazer> I am
L1235[23:39:51] <The_Stargazer> But (despite being in creative) I don't wanna give every t3 server 4x t3 hdd
L1236[23:40:05] <Jewson> Makes sense
L1237[23:40:15] <The_Stargazer> if you break a raid, do the contents of the raid stay in the block it drops?
L1238[23:40:23] <Jewson> I even one time made like every server boot of of the same hdd
L1239[23:40:27] <The_Stargazer> i.e. is it possible to move raids
L1240[23:40:32] <The_Stargazer> without losing data
L1241[23:40:34] <Izaya> AdorableCatgirl: thoughts on virtual component disks over minitel at the BIOS level?
L1242[23:40:34] <Jewson> yes
L1243[23:40:40] <The_Stargazer> cool
L1244[23:40:46] <Jewson> but every machine connected to it has to be shutdown
L1245[23:41:04] <Jewson> And you have to make sure that the disk goes in the slot it were
L1246[23:41:25] <The_Stargazer> ?
L1247[23:41:38] <bad at vijya> Izaya: Maybe, if you wana write the prototype.
L1248[23:41:39] <Jewson> disk A B C
L1249[23:41:46] <Izaya> solid reasoning
L1250[23:41:54] <Jewson> you have slots in raid 1 2 and 3
L1251[23:41:55] <Izaya> I'll get onto that after I finish the rest of my to-do list
L1252[23:42:06] <The_Stargazer> single raid
L1253[23:42:11] <The_Stargazer> three disks
L1254[23:42:18] <The_Stargazer> yep
L1255[23:42:25] <Jewson> So if disk A was in slot 1 then it has to be in the same slot in another raid
L1256[23:42:29] <Izaya> AdorableCatgirl: I'm thinking it'd be neat to do that to the vcomponent of distfs
L1257[23:42:38] <The_Stargazer> I'm just thinking of moving the raid block itself
L1258[23:43:25] <Izaya> so you could have lots of machines booting off one very large server's storage
L1259[23:43:44] <bad at vijya> iirc zoryav2's vdev module is on the git repo
L1260[23:45:10] <bad at vijya> Izaya: https://github.com/Adorable-Catgirl/Zorya-BIOS/blob/zoryav2-dev/modules/00_virtual_devices/init.lua
L1261[23:45:19] <bad at vijya> it's a simple, shitty wrapper
L1262[23:45:32] <Izaya> my favoourite kind
L1263[23:49:23] <bad at vijya> hell yea
L1264[23:50:37] <Jewson> How can I convert binary to string in oc
L1265[23:50:38] <Jewson> ?
L1266[23:52:11] <bad at vijya> ???
L1267[23:52:25] <Izaya> s/\?/??/g
L1268[23:52:25] <MichiBot> <bad at vijya> ??????
L1269[23:53:09] <Mimiru> s/\?/??/g
L1270[23:53:10] <MichiBot> <bad at vijya> ????????????
L1271[23:53:11] <bad at vijya> s/?/??/g
L1272[23:53:34] <bad at vijya> f
L1273[23:53:37] <Mimiru> you have to escape the question mark, discord doesn't show us doing iot.
L1274[23:53:47] <Mimiru> you have to escape the question mark, discord doesn't show us doing it. [Edited]
L1275[23:53:52] <Mimiru> %s/\?/??/g
L1276[23:53:53] <MichiBot> <bad at vijya> s/??/????/g
L1277[23:53:56] <bad at vijya> dsm
L1278[23:54:03] <Mimiru> `s/\?/??/g`
L1279[23:54:18] <Mimiru> Discord eats the \
L1280[23:54:59] <bad at vijya> kek
L1281[23:55:27] <Izaya> https://is.nota.live/system/media_attachments/files/000/383/528/original/bc3d861218ad2498.png
L1282[23:57:27] <Izaya> this also means avoiding curse
L1283[23:58:28] <Zef> Fuck corporations
L1284[23:58:49] <Zef> Capitalism encourages exploting and abusing the workers
L1285[23:58:53] <bad at vijya> g o o g l e
<<Prev Next>> Scroll to Top