<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:16:27] <EveryOS> Ima add "process.setBusy(boolean)" to Ribbon I think
L2[00:16:27] <EveryOS> Right now Ribbon is constantly in a busy loop, even when idle, so it might be nice to add an option to disable that, which would reduce how many resources it hogs.
L3[00:28:42] <EveryOS> Hey, Amanda, how'd you set a custom corded pic?
L4[00:31:09] <Izaya> I think it's !avatar or something
L5[00:31:12] <Izaya> maybe %avatar
L6[00:33:26] <EveryOS> Oh, cool, thanks
L7[00:37:33] ⇦ Quits: Ariri (Ariri!uid378594@id-378594.hathersage.irccloud.com) (Quit: Connection closed for inactivity)
L8[01:32:44] <Ariri> Elfi: Thank chu for the tapes :3
L9[01:37:57] <Izaya> tapes are nice
L10[01:40:00] <Izaya> https://i.imgur.com/FqqPnTu.png
L11[01:40:03] <Izaya> all-tape machine
L12[02:37:30] ⇦ Quits: ba7888b72413a16a (ba7888b72413a16a!~ba7888b72@66.109.211.150) (Quit: https://i.imgur.com/xacQ09F.mp4)
L13[02:38:52] ⇨ Joins: ba7888b72413a16a (ba7888b72413a16a!~ba7888b72@66.109.211.150)
L14[02:39:06] <Michiyo> %swspoiler
L15[02:39:06] <MichiBot> In this Star Wars movie, our heroes return to take on the First Order and new villain Kyle Ren with help from their new friend Kim Spacemeasurer. Rey builds a new Light Saber with a taupe blade, and they head out to confront The First Order's new superweapon The World Eater, a space station capable of cutting a
L16[02:39:07] <MichiBot> planet in half and smashing the halves together like two cymbals. They unexpectedly join forces with their old enemy The Space Slug and destroy the superwapon in a battle featuring a Sith educational display that uses force lightning to demonstate the dielectric breakdown of air P.S. Rey's parents are Luke and BB-8.
L17[03:10:30] ⇨ Joins: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi)
L18[03:16:03] <Izaya> CompanionCube:
L19[03:16:13] <Izaya> CompanionCube: I got bitmap fonts working in xfce4-terminal
L20[04:20:45] <Forecaster> %tonk
L21[04:20:47] <MichiBot> Dogast! Forecaster! You beat your own previous record of 9 hours, 59 minutes and 25 seconds (By 1 hour, 44 minutes and 16 seconds)! I hope you're happy!
L22[04:20:48] <MichiBot> Forecaster's new record is 11 hours, 43 minutes and 41 seconds! No points gained for stealing from yourself. (Lost out on 0.00174 x 10 = 0.0174)
L23[05:11:09] ⇨ Joins: MRtecno98 (MRtecno98!webchat@109.116.118.168)
L24[05:12:19] ⇦ Parts: MRtecno98 (MRtecno98!webchat@109.116.118.168) ())
L25[05:44:18] ⇨ Joins: Inari (Inari!~Pinkishu@pD9E8FC8D.dip0.t-ipconnect.de)
L26[05:44:23] <Inari> .
L27[05:44:37] <Inari> AmandaC: haha
L28[06:03:10] <Inari> Ah yes, youtube
L29[06:03:21] <Inari> *has results* -> order by upload date -> "no results found"
L30[06:03:23] <Inari> suuuure
L31[07:09:07] ⇦ Quits: SpiritedDusty (SpiritedDusty!~SpiritedD@eos.pc-logix.com) (Ping timeout: 202 seconds)
L32[07:14:24] ⇨ Joins: SpiritedDusty (SpiritedDusty!~SpiritedD@eos.pc-logix.com)
L33[07:14:25] zsh sets mode: +o on SpiritedDusty
L34[07:27:09] * AmandaC beams a sock onto Inari's keyboard, meows.
L35[07:32:41] <S3_> uhh
L36[07:34:18] <S3_> so this is interesting
L37[07:34:27] <S3_> entity component systems don't appear to be useful with a database
L38[07:34:34] <S3_> a relational one at least
L39[07:35:17] <AdorableCatgirl> http://tinyurl.com/tev32fo
L40[07:35:34] <AmandaC> It's almost like there's no one true paradim that will work for absolutely everything, Sophia. :P
L41[07:36:03] <AmandaC> I know, it's truely shocking a revelation.
L42[07:37:11] ⇨ Joins: Vexatos (Vexatos!~Vexatos@port-92-192-75-148.dynamic.as20676.net)
L43[07:37:11] zsh sets mode: +v on Vexatos
L44[07:40:36] <S3_> AmandaC: Well my issue is that I need persistence
L45[07:40:48] <S3_> so when you log out of the game / the game saves it stores persistent component data to disk somehow
L46[07:41:20] <S3_> one way to do this is with a database, but since entities are nothing but a bundle of components the only table you need is a "components" table
L47[07:41:34] <S3_> an SQL database for one table? Seems overkill.
L48[07:41:49] <S3_> unless you use something like SQLite
L49[07:42:07] <S3_> At that point you just have a small persistent file with some basic SQL features
L50[07:42:31] <S3_> However, Elixir has removed SQLite support from Ecto due to it being bad for clustering
L51[07:42:40] <S3_> so you see my dilema
L52[07:45:26] <AmandaC> Shouldn't it be a persistence system / component that is responsible for grabbing the relevent information from th other components and storing it, not storing the components wholesale?
L53[07:49:03] <CompanionCube> Izaya: how did you get that working then
L54[08:08:14] <S3_> right. So the way it kind of works in my head right now is that components are just structures defined in modules. You write them yourself, and defaults for the values per instance (i.e a player reads from player.json) which fills default values in a component. However, a player has persistent data if they're a normal player such as their current stats etc, which need to be persisted.
L55[08:08:20] <S3_> and inventory, etc
L56[08:08:50] <S3_> so you connect to the game, it loads player.json, loads up components with default data, you log in and it goes into the database and merges your persistent component data
L57[08:09:10] <S3_> same thing when you load a room
L58[08:09:40] <S3_> if an item in a room has some defined durability that was persisted because somebody dropped it, it needs to load that from some data file / database
L59[08:09:59] <S3_> but if it is a new spawn then it can just use defaults / randomness
L60[08:48:29] <AmandaC> ~w internet
L61[08:48:29] <ocdoc> http://ocd.cil.li/api:internet
L62[09:33:49] ⇨ Joins: ben_mkiv (ben_mkiv!~ben_mkiv@i59F67846.versanet.de)
L63[09:44:40] <S3_> hmm
L64[09:49:52] <Forecaster> %sip
L65[09:49:54] <MichiBot> You drink a muddy tuna potion (New!). As Forecaster drinks the potion they seem to have become magnetic and {junk_p} flies towards them! {dodge:14:1d6 => 3}
L66[09:50:01] <Forecaster> huh
L67[09:50:53] <Forecaster> sigh
L68[09:58:07] <DaComputerNerd> %sip
L69[09:58:08] <MichiBot> You drink an oxidised titanium potion (New!). The next remote DaComputerNerd looks for is extra hard to find.
L70[09:58:17] <DaComputerNerd> fortunately i dont watch tv much
L71[09:59:57] <Forecaster> there are plenty of other kinds of remotes you know
L72[10:03:57] <Soni> I should probably try not to piss everyone off for fun and profit on the lua mailing list
L73[10:04:31] <Forecaster> I'm not on this list so go nuts
L74[10:06:01] <Soni> otoh I do profit from it, so...
L75[10:11:15] <AmandaC> Okay, so. Turns out downloading a 76k file to check it's existance is very slow.
L76[10:11:51] <AmandaC> So now lilac on @Ariri's server downloads a tarball from my Nextcloud and extracts it instead. <.<;
L77[10:49:02] <S3_> AmandaC: I think I might use Amnesia
L78[11:12:37] <Forecaster> or maybe you already did!
L79[11:22:11] <Forecaster> %restart
L80[11:22:13] ⇦ Quits: MichiBot (MichiBot!~MichiBot@eos.pc-logix.com) ()
L81[11:22:41] ⇨ Joins: MichiBot (MichiBot!~MichiBot@eos.pc-logix.com)
L82[11:22:41] zsh sets mode: +v on MichiBot
L83[11:24:03] <Ocawesome101> %tonkout
L84[11:24:03] <MichiBot> I'm sorry Ocawesome101, you were not able to beat Forecaster's record of 11 hours, 43 minutes and 41 seconds this time. 7 hours, 3 minutes and 17 seconds were wasted! Missed by 4 hours, 40 minutes and 23 seconds!
L85[11:24:48] <Ocawesome101> Dang it
L86[11:24:55] <Ocawesome101> I mathed wrong
L87[11:26:19] <Bob> Lua pattern matching overlords, what pattern should i use if i want to match from a filepath the folder the file is in
L88[11:26:33] <Bob> ie /home/usr/pepe.lua to match usr?
L89[11:27:38] ⇦ Quits: ben_mkiv (ben_mkiv!~ben_mkiv@i59F67846.versanet.de) (Ping timeout: 190 seconds)
L90[11:35:33] ⇨ Joins: ThePiGuy24 (ThePiGuy24!~ThePiGuy2@131.32.115.87.dyn.plus.net)
L91[11:35:35] <S3_> oh hey Bob
L92[11:35:49] <S3_> why not split it on / ?
L93[11:36:07] <S3_> and create a table that looks like {"home", "usr", "pepe.lua"}
L94[11:36:30] <S3_> maybe even prepend the depth
L95[11:36:37] <ThePiGuy24> hey Vexatos, skye told me to ask you how to get programs onto openprograms.github.io
L96[11:36:43] <S3_> though you don't need to since you have count
L97[11:38:03] <S3_> one way to do this Bob is to create a recursive function that just pulls of the string in front of /
L98[11:38:12] <S3_> and returns the rest after the / every time, until you have a full table
L99[11:38:22] <S3_> you can use string.find for this better
L100[11:42:28] <S3_> you could also use gmatch
L101[11:42:32] <S3_> and that would work nicely
L102[11:43:00] <S3_> but by using find you don't have to assume the pattern works for all file data, you can just ignore what makes a file and depend o the /
L103[11:54:56] <Z0idburg> @Bob Something like this:
L104[11:54:56] <Z0idburg> Code Block pastebined https://paste.pc-logix.com/oqovihixaq
L105[11:54:59] <Z0idburg> Keep in mind I didn't check errors or logic
L106[11:55:04] <Z0idburg> just kind of spat it out
L107[11:55:13] <Z0idburg> usage: split_path(path)
L108[11:55:17] <Z0idburg> don't worry about the acc
L109[11:55:47] <Z0idburg> but that would return a table of path segmentgs
L110[11:55:52] <Z0idburg> and from there you could handle it
L111[12:00:05] * CompanionCube observes once again the UK government's hypocrisy of being against E2E while the ruling party has recently started using signal for communications...
L112[12:01:01] <S3_> CRAP I used the wrong function
L113[12:01:08] <S3_> I didn't mean to use table.concat lol
L114[12:02:39] <Z0idburg> Code Block pastebined https://paste.pc-logix.com/ujufiwexob
L115[12:02:58] <Z0idburg> Code Block pastebined https://paste.pc-logix.com/ikasuwupaj
L116[12:03:00] <Z0idburg> works.
L117[12:03:07] <Z0idburg> @Bob ^
L118[12:03:29] <Z0idburg> you'll need to fix the _X stuff because that's something I did to put it in my lib
L119[12:07:38] ⇨ Joins: ben_mkiv (ben_mkiv!~ben_mkiv@i59F67846.versanet.de)
L120[12:10:34] ⇨ Joins: regakakobigman (regakakobigman!~regakakob@c-73-174-187-176.hsd1.pa.comcast.net)
L121[12:13:02] <AmandaC> CompanionCube: "Encryption is for us not for you" is probably their party line
L122[12:16:15] <Z0idburg> lol
L123[12:16:19] <Z0idburg> party lines!
L124[12:16:24] <Z0idburg> got to love those crank phones
L125[12:17:35] ⇦ Quits: ben_mkiv (ben_mkiv!~ben_mkiv@i59F67846.versanet.de) (Killed (NickServ (GHOST command used by ben_mkiv|afk!~ben_mkiv@i59F678D7.versanet.de)))
L126[12:17:40] ⇨ Joins: ben_mkiv|afk (ben_mkiv|afk!~ben_mkiv@i59F678D7.versanet.de)
L127[12:57:35] <Z0idburg> AHHHHHHHHHHHHHHHHH!
L128[12:57:49] <Z0idburg> Somebody half undit and messed up work I did this morning
L129[12:57:52] <Z0idburg> undid*
L130[12:58:04] <Forecaster> sounds fun
L131[12:59:26] <Forecaster> how many things exploded?
L132[13:03:00] <Z0idburg> I did my normal yelling at the rest
L133[13:16:28] <AmandaC> @Ariri um so... I think the internal server errors might be related to my jetpack
L134[13:16:50] <AmandaC> @Ariri both of the last ones happen when I tried picking it up
L135[13:16:52] <Ariri> We have the same jetpack i believe
L136[13:17:05] <Ariri> and it says ticking player, its shanmao
L137[13:17:09] <Ariri> idk what
L138[13:17:10] <AmandaC> ah
L139[13:17:21] <Ariri> idk if the last one was tho
L140[13:17:52] <AmandaC> Well, my entire client crashed after that last one
L141[13:18:00] <AmandaC> hopefylly my jetpack doesn't despawn in the mean time
L142[13:18:13] <Ariri> Oh, you did cause the last one
L143[13:18:17] <Ariri> Ticking player
L144[13:18:20] <AmandaC> huh
L145[13:18:25] <Ariri> maybe a restart is in order?
L146[13:18:30] <AmandaC> Maybe?
L147[13:18:36] <Ariri> ill grab your pack
L148[13:18:39] <Michiyo> stop ticking your players off.
L149[13:18:40] <Michiyo> :P
L150[13:19:05] <AmandaC> the first one happen right after I picked it up from my equipment slot, the second when I picked it up from my hotbar to put back into the equipmentslot
L151[13:19:11] <Ariri> XD
L152[13:21:20] <Ariri> Whers your jetpack AmandaC?
L153[13:21:32] <AmandaC> second floor, left chest
L154[13:21:38] <AmandaC> probabluy sitting on the floor by it
L155[13:21:49] <Ariri> got it
L156[13:21:59] <Ariri> yeah it shouldnt cuase anything, i used it
L157[13:23:51] <Ariri> i take that back, i got a ticking player for it
L158[13:23:59] <Ariri> but i use the resonant tier jetpack ;?
L159[13:24:06] <Ariri> restarting the server now
L160[13:27:42] <AmandaC> Uhhhh, might have found a relevent issue? Notsure, https://github.com/Tomson124/SimplyJetpacks-2/issues/143
L161[13:27:43] <MichiBot> Title: Client crashes when trying to charge Wireless crafting Terminal with Flux-Infused JetPlate | Posted by: Arudinne | Posted: Sun Sep 15 22:01:16 CDT 2019 | Status: closed
L162[13:28:00] <AmandaC> but I'm not useing a jetplate, but maybe the capacitor I have is causing a similar isue
L163[13:30:54] <Bob> http://tinyurl.com/sbmhu64
L164[13:30:56] <Bob> Thanks for the patterns
L165[13:31:01] <Bob> now i can flex on yall
L166[13:32:24] <AmandaC> good job, CoFH, close the issue repository and remove all the history of issues you've fixed: https://github.com/CoFH/Feedback
L167[13:37:16] <SquidDev> Couldn't they archive it instead?
L168[13:37:23] <asie> i made a new thing! https://www.youtube.com/watch?v=2oNQLP0oqeY
L169[13:37:25] <MichiBot> "Fromage" - unofficial PS1 sandbox game engine | length: 55s | Likes: 0 Dislikes: 0 Views: 13 | by asciicharismatic | Published On 23/12/2019
L170[13:43:52] <Forecaster> %sip
L171[13:43:54] <MichiBot> You drink a ripe jumbonium potion (New!). Forecaster turns into an otter unicorn boy for 41 minutes.
L172[13:44:04] <Forecaster> huh
L173[14:11:07] <ThePiGuy24> @Vexatos Sorry for ping (not sure whether you are fond of the or not), but I was pointed to here by Skye to ask how to add to https://ocprograms.github.io/, any help is appreciated.
L174[14:13:37] <Vexatos> uh
L175[14:14:39] <Vexatos> do you have a repo set uP?
L176[14:14:51] <Vexatos> ~w oppm
L177[14:14:52] <ocdoc> http://ocd.cil.li/tutorial:program:oppm
L178[14:14:53] <Vexatos> did you read this
L179[14:15:46] <ThePiGuy24> will set up repo, thanks for pointing that tutorial out
L180[14:19:15] ⇨ Joins: MajGenRelativity (MajGenRelativity!~MajGenRel@c-73-123-203-209.hsd1.ma.comcast.net)
L181[14:34:12] <AdorableCatgirl> my stuff never got added lmao
L182[14:48:58] <ThePiGuy24> @Vexatos i think this is what is required: https://github.com/ThePiGuy24/ThePiGuy24-Programs/tree/master
L183[14:50:15] <Vexatos> I don't really accept new repos anymore, the more I add, the slower it gets, You can register your repo manually by running >oppm register ThePiGuy24/ThePiGuy24-Programs
L184[14:50:42] <Vexatos> I really need to clean up the repo list at some point, anyway
L185[14:51:08] <ThePiGuy24> ah
L186[15:10:01] <Izaya> CompanionCube: harfbuzz can read bitmap fonts
L187[15:10:02] <Izaya> but not in pcf
L188[15:10:13] <Izaya> only in otb
L189[15:10:23] <Izaya> https://social.shadowkat.net/notice/9qFgaJx8QG1jxplbge
L190[15:10:35] <CompanionCube> didn't the gnome people break it another way though
L191[15:10:52] <Izaya> well
L192[15:10:58] <Izaya> apostrophes don't render properly any more
L193[15:11:00] <Izaya> so there's that
L194[15:18:11] <AdorableCatgirl> csgo crashed after i clutched last round with only the M249
L195[15:19:56] <CompanionCube> also which RX is that
L196[15:22:05] <Izaya> 580 8G
L197[15:22:17] <Izaya> got it mostly for the VRAM
L198[15:24:37] <AdorableCatgirl> >internet is taking a shit again
L199[15:24:43] <AdorableCatgirl> >thanks verizon.jpg
L200[15:40:50] <Ariri> Ruh roh, internal server error
L201[15:40:55] <AmandaC> @Ariri okay, it's def. something to do with my jetpack.
L202[15:41:03] <AmandaC> Thankfully I'm no-longer requiring it
L203[15:41:16] <Ariri> yeah i think so, but thats strange bc mine is from the same mod
L204[15:41:24] <Ariri> it also crashed when i picked it up
L205[15:42:54] <Inari> asie: that culling seems a bit off
L206[15:59:03] <MichiBot> Lizzy REMINDER: set up wireguard between myrrdin and bode when you restart myrrdin
L207[15:59:20] <Lizzy> that reminder was poorly timed
L208[15:59:41] <Lizzy> %remindme 10h wireguard myrrdin - bode
L209[15:59:41] <MichiBot> I'll remind you about "wireguard myrrdin - bode" at 12/24/2019 01:59:41 AM
L210[16:09:21] <asie> Inari: it is
L211[16:09:29] <asie> but i never managed to quite fix it
L212[16:09:41] <asie> even disabling all culling doesn't help. i think the quad as a whole goes out of bounds and this makes the PS1 GPU groan
L213[16:09:46] <asie> but I'd have to ask greaser
L214[16:09:59] <Inari> Make moans, not groans
L215[16:10:03] <asie> that's lewd
L216[16:19:58] <Izaya> https://files.catbox.moe/23bkaw.png
L217[16:20:01] <Izaya> [x] hmm
L218[16:22:30] <asie> you didn't use CTIF!
L219[16:22:41] <asie> the Communist Totalitarian Image Forwait that's not what the acronym stands for
L220[16:27:38] <DaComputerNerd> soviet union anthem intensifies
L221[16:32:54] <Vexatos> one of the best national anthems still
L222[16:33:41] <Vexatos> remember, kids: Compose+CCCP produces ☭ so make sure your compose key is mapped properly
L223[16:48:59] ⇦ Quits: Inari (Inari!~Pinkishu@pD9E8FC8D.dip0.t-ipconnect.de) (Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/)
L224[16:52:08] <Forecaster> %sip
L225[16:52:09] <MichiBot> You drink a shimmering caterium potion (New!). Forecaster suddenly craves pie.
L226[16:52:16] <Forecaster> dangit
L227[17:08:03] ⇦ Quits: Lizzy (Lizzy!Lizzy@ayiana.theender.net) (Ping timeout: 190 seconds)
L228[17:08:27] ⇦ Quits: scj643 (scj643!~quassel@scj.theender.net) (Ping timeout: 189 seconds)
L229[17:12:15] ⇦ Quits: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi) (Quit: /0)
L230[17:12:30] ⇨ Joins: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi)
L231[17:14:22] <Forecaster> Gasp, not the Lizzy!
L232[17:17:12] <Lizzian> i thought i was connected via v6 but clearly not
L233[17:17:47] <Lizzian> also either it's gonna be some stupid restriction or it's taking a while to propengate the ip changes that'll allow me to attach it to bode
L234[17:20:39] <Michiyo> know what I'd really like...?
L235[17:20:48] <Michiyo> If OVH let us migrate our damn IPv6 ranges..
L236[17:21:32] <Lizzian> i don't think they can do that easilly because of the way IPv6 is, but i guess it should be possible
L237[17:22:03] <Lizzian> hmm, still can't move the ip range out of parking
L238[17:22:44] <Lizzian> also the single failover IP i have on oma can only go to the parking, it can't go to bode....
L239[17:22:53] <Lizzian> think i'ma have to raise a support ticket
L240[17:36:20] <Bob> https://oc.cil.li/ is down oof
L241[17:36:36] <Michiyo> likely because Lizzy is migrating stuff
L242[17:36:49] <Bob> ¯\(ツ)/¯
L243[17:38:44] <AdorableCatgirl> verizon surprise sprung ipv6 on me
L244[17:38:51] <AdorableCatgirl> and then their network took a heaping shit
L245[17:39:07] <AmandaC> SURPRISE! I gave you an ipv6, but I eated it
L246[17:39:15] <AmandaC> s/gave/made/
L247[17:39:16] <MichiBot> <AmandaC> SURPRISE! I made you an ipv6, but I eated it
L248[17:39:26] <Bob> Isps <333
L249[17:44:18] ⇨ Joins: cpup (cpup!~cpup@68.118.179.32)
L250[17:45:24] <Lizzian> @Bob yep, there was even an announcement about it on the forums
L251[17:48:53] ⇦ Quits: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi) (Ping timeout: 190 seconds)
L252[17:51:29] <Izaya> imagine IPv6
L253[18:18:47] ⇨ Joins: xarses (xarses!~xarses@c-73-15-107-55.hsd1.ca.comcast.net)
L254[18:19:12] ⇦ Quits: xarses (xarses!~xarses@c-73-15-107-55.hsd1.ca.comcast.net) (Client Quit)
L255[18:26:15] <Z0idburg> @Bob That function I wrote earlier (I fixed it to not use _X) works really good:
L256[18:26:23] <Z0idburg> Code Block pastebined https://paste.pc-logix.com/tipowilafi
L257[18:27:18] <Z0idburg> In its verbatim:
L258[18:27:18] <Z0idburg> Code Block pastebined https://paste.pc-logix.com/tegahiputi
L259[18:27:33] <Z0idburg> I might actually use this
L260[18:27:59] <Z0idburg> I wonder..
L261[18:28:51] <Z0idburg> I am able to break it on one condition:
L262[18:28:58] <Z0idburg> Code Block pastebined https://paste.pc-logix.com/vugupikico
L263[18:28:59] <Z0idburg> but that shouldn't happen
L264[18:29:10] <Z0idburg> I can fix that
L265[18:31:26] <Z0idburg> Code Block pastebined https://paste.pc-logix.com/lumihiwuje
L266[18:31:27] <Z0idburg> fixed/
L267[18:31:43] <Z0idburg> fixed function:
L268[18:31:44] <Z0idburg> Code Block pastebined https://paste.pc-logix.com/qasanozewi
L269[18:32:02] <Z0idburg> 3rd line
L270[18:33:46] <ThePiGuy24> ayy i see Izaya posted my communism
L271[18:33:59] <ThePiGuy24> on the S.H.I.T
L272[18:34:16] <ThePiGuy24> or, Super Helpful Information Transcoder
L273[18:34:41] <ThePiGuy24> in the nice forest village of Valley Forest
L274[18:37:35] <Bob> :praise:
L275[18:41:13] <Izaya> https://0x0.st/zGKJ.png
L276[18:44:08] <Z0idburg> well this is no fun
L277[18:44:15] <Z0idburg> two RAID5 disk failures at the same time
L278[18:47:44] <Skye> asie, the ecnomy on this server is uh... not sure what to call it tbh
L279[18:49:43] <Izaya> nominal
L280[18:56:48] ⇦ Quits: tehbeard (tehbeard!~tehesper@208.80.10.200) (Ping timeout: 189 seconds)
L281[18:59:33] <Skye> anarchy?
L282[18:59:38] <Skye> but then our town has laws
L283[18:59:38] <Skye> lol
L284[18:59:44] <Skye> uhh
L285[19:02:42] ⇨ Joins: tehbeard (tehbeard!~tehesper@208.80.10.200)
L286[19:04:38] <ThePiGuy24> the economy is mostly communist
L287[19:06:48] ⇦ Quits: tehbeard (tehbeard!~tehesper@208.80.10.200) (Ping timeout: 198 seconds)
L288[19:09:08] <Izaya> there are a few capitalist \factions but we shun them
L289[19:09:28] <ThePiGuy24> cough cough kuiser
L290[19:11:23] ⇨ Joins: tehbeard (tehbeard!~tehesper@208.80.10.200)
L291[19:39:09] ⇦ Quits: regakakobigman (regakakobigman!~regakakob@c-73-174-187-176.hsd1.pa.comcast.net) (Ping timeout: 189 seconds)
L292[19:40:55] <AdorableCatgirl> fun fact: it works here because it's a small system
L293[19:49:23] ⇦ Quits: superminor2 (superminor2!~super@159.242.41.91.dynamic.cltel.net) (Quit: Bye!)
L294[19:53:29] ⇦ Quits: Vexatos (Vexatos!~Vexatos@port-92-192-75-148.dynamic.as20676.net) (Quit: Insert quantum chemistry joke here)
L295[19:57:12] <Izaya> what works where
L296[20:18:01] ⇨ Joins: superminor2 (superminor2!~super@159.242.41.91.dynamic.cltel.net)
L297[20:18:01] zsh sets mode: +v on superminor2
L298[20:21:38] ⇦ Quits: superminor2 (superminor2!~super@159.242.41.91.dynamic.cltel.net) (Ping timeout: 190 seconds)
L299[20:58:52] <AdorableCatgirl> Izaya: yes
L300[20:59:25] <AdorableCatgirl> all of the above things that work on the small scale
L301[21:07:05] <Izaya> explain
L302[22:06:08] * AmandaC cuddles up around elfi, zzmews
L303[22:30:37] ⇨ Joins: superminor2 (superminor2!~super@159.242.41.91.dynamic.cltel.net)
L304[22:30:37] zsh sets mode: +v on superminor2
L305[22:35:38] <Kodos> o/
L306[22:43:53] ⇦ Quits: ben_mkiv|afk (ben_mkiv|afk!~ben_mkiv@i59F678D7.versanet.de) (Ping timeout: 190 seconds)
L307[23:15:27] ⇦ Quits: infina (infina!~infina@caligula.lobsternetworks.com) (Read error: -0x1: UNKNOWN ERROR CODE (0001))
L308[23:15:27] ⇦ Quits: S3_ (S3_!~S3@caligula.lobsternetworks.com) (Read error: Connection reset by peer)
L309[23:16:34] ⇨ Joins: infin (infin!~infina@caligula.lobsternetworks.com)
L310[23:28:12] <The_Stargazer> Is `Read error: -0x1: UNKNOWN ERROR CODE (0001)` a custom leave message or an actual error?
L311[23:28:32] <The_Stargazer> I'm thinking it's the former
<<Prev Next>> Scroll to Top