<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:03:03] ⇦ Quits: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net) (Ping timeout: 198 seconds)
L2[00:16:24] <Forecaster> %sip random
L3[00:16:24] <MichiBot> You drink a fluffy quicksilver potion (New!). A tiny cloud appears with a ridiculous smile on it. It follows Forecaster until they leave.
L4[00:16:49] <Forecaster> Good thing I have to leave for work soon
L5[00:48:28] ⇨ Joins: baschdel (baschdel!~baschdel@195.226.162.228)
L6[01:17:24] <Zef> I hate people that spread those "watch out for this specific person, they'll add you as a friend and ddos your account!! - discord"
L7[01:18:50] <Zef> And when you tell them all the reasons it's fake they just go "I guess"
L8[01:18:58] <Zef> They never learn
L9[01:19:39] <Forecaster> Then they ddos your account
L10[01:19:43] ⇦ Quits: baschdel (baschdel!~baschdel@195.226.162.228) (Ping timeout: 190 seconds)
L11[01:20:13] <Zef> You know what, I'll just fucking post it here
L12[01:20:59] <Zef> http://tinyurl.com/y3dw4kyg
L13[01:21:10] <Zef> It hurts how fake and awful it is
L14[01:23:29] <Izaya> AmandaC: only in australia
L15[01:31:45] <Kodos> How do they think DDoS'ing even works
L16[01:32:12] <Kodos> Also any tips for compressing a video on my iPhone? Discord doesn't like files over 8 megs
L17[01:47:33] <The_Stargazer> 1) It's a DoS not a DDoS unless you have multiple computers
L18[01:47:35] <The_Stargazer> that's enough
L19[01:54:43] <Izaya> thoughts on a package manager that uses archive files to distribute packages?
L20[02:06:31] <The_Stargazer> is there a way to turn a string into a bunch of words?
L21[02:06:32] <The_Stargazer> like
L22[02:06:37] <The_Stargazer> turn `This is a string`
L23[02:06:38] <The_Stargazer> into
L24[02:06:44] <Izaya> yes
L25[02:06:45] <The_Stargazer> `This`, `is`, `a`, `string`
L26[02:06:47] <Izaya> you want string.gmatch
L27[02:06:59] <The_Stargazer> and I just match a space?
L28[02:07:08] <The_Stargazer> will that return the string or the matches?
L29[02:09:04] <Izaya> returns matches
L30[02:09:13] <Izaya> so you want to match not space
L31[02:09:30] <The_Stargazer> everything that's not a space?
L32[02:09:34] <Izaya> right
L33[02:09:49] <The_Stargazer> so `!" "`?
L34[02:09:55] <Izaya> no
L35[02:09:57] <Izaya> not even close
L36[02:10:06] <The_Stargazer> idk patterns
L37[02:10:09] <The_Stargazer> there's my problem
L38[02:10:10] <Izaya> I don't think that's a valid lua pattern
L39[02:10:28] <The_Stargazer> ok
L40[02:10:30] <The_Stargazer> what do I use then
L41[02:10:32] <Izaya> https://www.lua.org/pil/20.2.html
L42[02:16:47] <The_Stargazer> is there a `not` for patterns?
L43[02:17:05] <Izaya> yes
L44[02:17:10] <Izaya> it's on the page
L45[02:17:12] <Izaya> can you find it
L46[02:17:20] <The_Stargazer> no
L47[02:17:52] <Izaya> good to see you didn't read it I guess
L48[02:17:55] <Izaya> > An upper case version of any of those classes represents the complement of the class. For instance, '%A' represents all non-letter characters:
L49[02:18:18] <The_Stargazer> oh
L50[02:18:18] <The_Stargazer> that didn't make sense as `not this` in my brain
L51[02:18:29] <Bob> What about not, a charachter
L52[02:18:33] <Bob> like ; ?
L53[02:18:37] <Izaya> >You can get the complement of a char-set by starting it with `^ยด: '[^0-7]' finds any character that is not an octal digit and '[^\n]' matches any character different from newline.
L54[02:19:11] <Bob> mmm yea
L55[02:19:12] <The_Stargazer> it prints all the letters
L56[02:19:14] <Izaya> lua patterns are nice because they're a lot saner than regex
L57[02:19:16] <The_Stargazer> not the whole words
L58[02:19:26] <Bob> use +
L59[02:19:28] <Izaya> good to see you still didn't read the page
L60[02:19:28] <The_Stargazer> oh
L61[02:19:30] <Bob> %S+
L62[02:19:43] <Bob> + tries to match a maximum
L63[02:19:46] <Bob> and yea read
L64[02:19:51] <Izaya> >You can make patterns still more useful with modifiers for repetitions and optional parts. Patterns in Lua offer four modifiers:
L65[02:20:00] <The_Stargazer> ok it works now
L66[02:20:06] <The_Stargazer> my brain is not good at understanding things
L67[02:20:13] <The_Stargazer> when it comes to lots of text
L68[02:20:14] <Bob> () for different matches asf
L69[02:20:44] <The_Stargazer> what's %S? Not space?
L70[02:20:50] <The_Stargazer> its not mentioned on the page
L71[02:20:59] <Izaya> > An upper case version of any of those classes represents the complement of the class. For instance, '%A' represents all non-letter characters:
L72[02:21:00] <The_Stargazer> nevermind
L73[02:21:00] <Bob> %s is all spaces
L74[02:21:07] <The_Stargazer> im dumb
L75[02:21:09] <Bob> it saids caps negate the effect
L76[02:21:15] <Bob> %S so is no space
L77[02:21:29] <The_Stargazer> i skim read things
L78[02:21:40] <Izaya> that is not a good way to read documentation
L79[02:21:45] <Izaya> stop doing that and you'll comprehend more
L80[02:22:22] <Bob> defenitely
L81[02:22:40] <Bob> Izaya how could i match the frist and last character of a word ?
L82[02:23:04] <Izaya> aw shit uh
L83[02:23:16] <Bob> i could use 2 gmatchs but thats not how things work
L84[02:23:25] <Izaya> (%S)+(%S)
L85[02:23:33] <Izaya> uh
L86[02:23:36] <Izaya> (%S)%S+(%S)
L87[02:23:48] <Izaya> (%S)%S*(%S)
L88[02:23:56] <Izaya> ^ will work for two-letter words
L89[02:24:01] <Izaya> one-letter words won't match though
L90[02:24:21] <Bob> use ? for optional ?
L91[02:24:29] <Izaya> oh, true
L92[02:24:48] <Bob> (%S)%S*(%S)? so this, lemme try
L93[02:25:16] <The_Stargazer> how can you convert uppercase to lowercase?
L94[02:25:49] <Bob> string.lower / upper
L95[02:25:50] <Bob> smh
L96[02:26:02] <The_Stargazer> right, ty
L97[02:26:04] <Izaya> https://www.lua.org/pil/20.html
L98[02:26:10] * Izaya screams
L99[02:26:16] <Izaya> have you considered looking at the documentation
L100[02:26:16] <Bob> http://tinyurl.com/y4yzgxjv
L101[02:26:17] <Bob> Epic Fail
L102[02:26:18] <Izaya> or looking it up
L103[02:26:20] <Izaya> ever
L104[02:26:34] <Bob> ^
L105[02:26:42] <The_Stargazer> i should really REALLY do that
L106[02:26:45] <The_Stargazer> im lazy tho
L107[02:26:51] <The_Stargazer> gotta be
L108[02:26:53] <The_Stargazer> less lazy
L109[02:27:02] <Bob> without the ? it works
L110[02:27:12] <Bob> But i need my Asenpao
L111[02:27:36] <The_Stargazer> your what
L112[02:27:46] <Bob> Android keyboard fails me
L113[02:28:30] <Bob> http://tinyurl.com/yxkbvnco
L114[02:28:33] <Bob> I need to somehow include the A
L115[02:29:03] <Bob> http://tinyurl.com/yy4zk356
L116[02:29:06] <Bob> Oi
L117[02:29:17] <The_Stargazer> well
L118[02:29:20] <The_Stargazer> `a` is a letter
L119[02:29:57] <The_Stargazer> and why cant you just remove the `?`
L120[02:30:08] <Bob> Because i need it as an optional
L121[02:30:17] <Bob> because if not it doesnt capture the A
L122[02:30:23] <Bob> since it cant do 2 captures
L123[02:30:24] <The_Stargazer> ohhhhh
L124[02:30:29] <Bob> ? makes one capture optional
L125[02:30:34] <The_Stargazer> yes
L126[02:33:51] <Bob> :GWlulurdMmmYea:
L127[02:36:23] ⇦ Quits: Kleadron (Kleadron!~kleadron@c-73-254-147-9.hsd1.wa.comcast.net) (Ping timeout: 202 seconds)
L128[02:37:43] <The_Stargazer> that moment when you forget your ssh key's password
L129[02:37:48] <The_Stargazer> "oh fuck"
L130[02:38:14] <The_Stargazer> i mean the key is plaintext
L131[02:40:22] <The_Stargazer> option 2: re-export the key
L132[02:44:58] <The_Stargazer> and then you remember your password
L133[02:45:13] <The_Stargazer> it was three fucking letters
L134[02:45:16] <The_Stargazer> and i forgot it
L135[02:45:18] ⇨ Joins: Kleadron (Kleadron!~kleadron@c-73-254-147-9.hsd1.wa.comcast.net)
L136[02:45:25] <The_Stargazer> its my bloody hostname for gods sake
L137[02:50:23] <Lizzy> %tonkout
L138[02:50:23] <MichiBot> I'm sorry Lizzy, you were not able to beat Lizzy's record of 4 hours, 36 minutes and 53 seconds this time. 3 hours, 48 minutes and 19 seconds were wasted! Missed by 48 minutes and 34 seconds!
L139[02:50:31] <Lizzy> oh tits
L140[02:53:48] <Lizzy> in other news my firefox seems a little fucked.... the theme isn't working and it's marking all of the words of this message as wrong
L141[03:01:28] <Lizzy> testing
L142[03:01:31] <Lizzy> there we go
L143[03:06:17] <The_Stargazer> welcome to the "Firefox is broken" club
L144[03:06:41] <Lizzy> i mean, mine is fixed now
L145[03:06:49] <Lizzy> just had to clear some cache and restart it
L146[03:06:51] <The_Stargazer> so is mine
L147[03:06:54] <The_Stargazer> except
L148[03:06:57] <The_Stargazer> mine won't update
L149[03:06:58] <The_Stargazer> minor issue
L150[03:07:09] <The_Stargazer> like it runs the updater
L151[03:07:16] <The_Stargazer> but still says `Restart to update Firefox`
L152[03:55:47] ⇦ Quits: Skye (Skye!znc@nightfall.moe) (Quit: ZNC - http://znc.in)
L153[04:26:46] ⇨ Joins: Skye (Skye!znc@nightfall.moe)
L154[04:27:11] *** Skye is now known as Guest97397
L155[05:53:36] *** Guest97397 is now known as Skye
L156[05:57:12] <Kodos> %tonk
L157[05:57:12] <MichiBot> I'm sorry Kodos, you were not able to beat Lizzy's record of 4 hours, 36 minutes and 53 seconds this time. 3 hours, 6 minutes and 49 seconds were wasted! Missed by 1 hour, 30 minutes and 4 seconds!
L158[05:57:13] <Kodos> ?
L159[05:57:26] <Kodos> And with that, I bid you all adieux
L160[06:32:46] ⇨ Joins: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi)
L161[06:46:49] <AmandaC> Izaya: idk, for a good 1-2 weeks our mail wasn't being delivered because of a "loose dog" ... Which is safely contained in the fenced in back yard
L162[06:50:49] <AmandaC> Izaya: we ended up calling the post master who had an inspector come out, then the bitch still didn't deliver the mail, much to the post master's confusion, because "I thought this was resolved"
L163[07:18:44] <AmandaC> %tell Inari okay, you can stop making me have dreams about rennovating my house with lots of """"smart"""" stuff, using fire-prone resistor-looking "wifi chips"
L164[07:18:44] <MichiBot> AmandaC: Inari will be notified of this message when next seen.
L165[07:59:31] <AmandaC> Temia: "simply" https://nc.ddna.co/s/5Xt8WXM87Sgm54L
L166[08:00:33] <Temia> FU mucks that recipe up so much
L167[08:00:42] <AmandaC> oh?
L168[08:01:19] <Temia> Turns it into a power core, 6 carbon plates, some other stuff, and 20,000 pixels
L169[08:03:28] <AmandaC> oh jeez
L170[08:07:15] <Temia> If it didn't add so many reasons to explore and so many more side missions, I'd just... bluh
L171[08:07:28] <AmandaC> so FU is kinda like the Gregtech of SB?
L172[08:07:53] <AmandaC> ( I've never played with Gregtech, I don't like the grindy ideas they have, nor consider it "fun" )
L173[08:11:09] ⇨ Joins: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com)
L174[08:29:21] <Temia> Pretty much
L175[08:38:04] ⇨ Joins: Prof_David (Prof_David!~neuge@2a02:560:42cd:8600:ae3c:134b:226b:e22c)
L176[08:47:54] ⇦ Quits: Prof_David (Prof_David!~neuge@2a02:560:42cd:8600:ae3c:134b:226b:e22c) (Remote host closed the connection)
L177[09:37:44] ⇨ Joins: Inari (Inari!~Pinkishu@pD9E8F054.dip0.t-ipconnect.de)
L178[09:41:34] ⇨ Joins: Rahix (Rahix!~Rahix@2001:7f0:3003:235f:7432:dd86:b273:f0ec)
L179[09:56:10] <Inari> nep
L180[10:36:20] ⇨ Joins: TrashboxBobylev (TrashboxBobylev!~TrashboxB@217.118.79.45)
L181[10:36:39] <TrashboxBobylev> hey, everyone.
L182[10:36:52] <TrashboxBobylev> I have the question.
L183[10:37:17] <Temia> We may have the answer. What is your question?
L184[10:37:27] <TrashboxBobylev> Why default OpenOS keep erroring with "no such component", when Plan9k loads alright.
L185[10:37:43] <Temia> That's a good question. Does it say what component it's missing?
L186[10:38:22] <TrashboxBobylev> no. just "no such component". All details for running computer are exists.
L187[10:38:29] <TrashboxBobylev> Analyzer doesn't help.
L188[10:38:40] <TrashboxBobylev> Maybe I did something wrong with config?
L189[10:38:47] <TrashboxBobylev> May try to check it.
L190[10:39:20] <Temia> Did you recently update the mod?
L191[10:39:34] <TrashboxBobylev> I have last file from Curseforge.
L192[10:39:57] ⇦ Quits: TrashboxBobylev (TrashboxBobylev!~TrashboxB@217.118.79.45) (Read error: Connection reset by peer)
L193[10:40:05] <Temia> Did you make a new openOS disk when you did that, or are you using an old disk?
L194[10:40:09] <Temia> Oop.
L195[10:40:10] <Temia> R I P
L196[10:40:30] ⇨ Joins: TrashboxBobylev (TrashboxBobylev!~TrashboxB@217.118.79.45)
L197[10:41:05] <Temia> Welcome back. Did you make a new OpenOS disk when you last upated the mod, or are you using an old disk?
L198[10:41:09] <Temia> *updated
L199[10:41:17] <TrashboxBobylev> I take them from creative.
L200[10:42:59] <Temia> Interesting. Do you have a screenshot of the error?
L201[10:43:11] <TrashboxBobylev> ?
L202[10:43:13] <Temia> Does it have a traceback, or file and line number?
L203[10:43:36] <TrashboxBobylev> no. just "no such component". Both on screen and analyzer report.
L204[10:43:54] <TrashboxBobylev> Maybe I just need to reset configs.
L205[10:44:44] <CompanionCube> %tonk
L206[10:44:45] <MichiBot> Voldemort! CompanionCube! You beat Lizzy's previous record of 4 hours, 36 minutes and 53 seconds (By 10 minutes and 38 seconds)! I hope you're happy!
L207[10:44:46] <MichiBot> CompanionCube's new record is 4 hours, 47 minutes and 32 seconds! CompanionCube also gained 0.0009 (0.00018 x 5) tonk points for stealing the tonk.
L208[10:45:02] <Temia> Could you humour me and get a screenshot just in case?
L209[10:45:30] <TrashboxBobylev> few moments. I do not have internet on my laptop, so it could take several steps.
L210[10:45:54] <Inari> Temia: I can't humor you, but maybe I can entertain you ;D
L211[10:46:15] <Temia> Go back to bed Dorothy
L212[10:47:32] ⇦ Quits: TrashboxBobylev (TrashboxBobylev!~TrashboxB@217.118.79.45) (Read error: Connection reset by peer)
L213[10:48:20] ⇨ Joins: TrashboxBobylev (TrashboxBobylev!~TrashboxB@217.118.79.45)
L214[10:48:35] <TrashboxBobylev> https://files.catbox.moe/achwjk.png
L215[10:48:47] <TrashboxBobylev> https://files.catbox.moe/4w9y3v.png
L216[10:49:24] <TrashboxBobylev> https://files.catbox.moe/cn1o0b.png
L217[10:49:33] <TrashboxBobylev> https://files.catbox.moe/tr9oju.png
L218[10:49:37] <TrashboxBobylev> all the screenshots
L219[10:52:45] <TrashboxBobylev> Also I encountered problem with tablets and remote terminals.
L220[10:52:58] <TrashboxBobylev> That's doesn't display anything.
L221[10:57:51] ⇨ Joins: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net)
L222[10:57:55] ⇦ Quits: TrashboxBobylev (TrashboxBobylev!~TrashboxB@217.118.79.45) (Read error: Connection reset by peer)
L223[10:58:38] ⇨ Joins: TrashboxBobylev (TrashboxBobylev!~TrashboxB@217.118.79.45)
L224[11:01:47] ⇨ Joins: Vexatos (Vexatos!~Vexatos@port-92-200-90-175.dynamic.qsc.de)
L225[11:01:48] zsh sets mode: +v on Vexatos
L226[11:03:20] ⇦ Quits: TrashboxBobylev (TrashboxBobylev!~TrashboxB@217.118.79.45) (Read error: Connection reset by peer)
L227[11:05:34] ⇦ Quits: Rahix (Rahix!~Rahix@2001:7f0:3003:235f:7432:dd86:b273:f0ec) (Read error: Connection reset by peer)
L228[11:05:42] ⇨ Joins: Rahix (Rahix!~Rahix@2001:7f0:3003:235f:7432:dd86:b273:f0ec)
L229[11:06:38] ⇨ Joins: TrashboxBobylev (TrashboxBobylev!~TrashboxB@217.118.79.45)
L230[11:06:49] <TrashboxBobylev> okay.
L231[11:07:14] <TrashboxBobylev> problem with no such component has been solved by capacitor connecting
L232[11:07:38] <TrashboxBobylev> welp, OpenOS does not like ludicrous small energy storage on computers
L233[11:08:05] <Inari> https://gfycat.com/completezigzagamericancrocodile heh
L234[11:08:59] <TrashboxBobylev> but I still have problem with tablets
L235[11:15:24] <TrashboxBobylev> strange things happening
L236[11:15:29] <Inari> AmandaC: https://www.reddit.com/r/blackmagicfuckery/comments/cg74sx/cat_was_like_aight_im_heading_out/
L237[11:15:54] <TrashboxBobylev> creative tablet doesn't display anything but crafted tablet does
L238[11:16:34] <TrashboxBobylev> now I have problem only with remote terminal
L239[11:17:56] <TrashboxBobylev> maybe I just do not know how to use this
L240[11:20:09] ⇦ Quits: TrashboxBobylev (TrashboxBobylev!~TrashboxB@217.118.79.45) (Read error: Connection reset by peer)
L241[11:25:16] ⇨ Joins: TrashboxBobylev (TrashboxBobylev!~TrashboxB@217.118.79.45)
L242[11:25:22] <TrashboxBobylev> okay
L243[11:25:29] <TrashboxBobylev> sorry for taking your time, guys
L244[11:25:58] <TrashboxBobylev> I am just noob, that forgot to install graphic card into server
L245[11:26:12] <Temia> You're fine
L246[11:26:18] <TrashboxBobylev> I throughs that servers can't use screen and keyboard...
L247[11:26:26] <TrashboxBobylev> That's was wrong
L248[11:26:28] <Temia> You were inquisitive enough to keep working on finding a solution
L249[11:26:29] <TrashboxBobylev> now I knoe
L250[11:26:37] <TrashboxBobylev> know
L251[11:26:47] <Temia> You will do well with this mod if you keep up that exploring spirit
L252[11:27:23] <TrashboxBobylev> thanks for inspiration
L253[11:28:01] <TrashboxBobylev> I making modpack based on Thermal Series (whole game) and OC (in mid-game and further)
L254[11:28:53] ⇦ Quits: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net) (Ping timeout: 190 seconds)
L255[11:29:38] <TrashboxBobylev> anyway, thanks for hearing me, I leave now
L256[11:30:09] ⇦ Quits: TrashboxBobylev (TrashboxBobylev!~TrashboxB@217.118.79.45) (Quit: -a- IRC for Android 2.1.39)
L257[11:31:05] <Forecaster> %sip
L258[11:31:05] <MichiBot> Drink what?
L259[11:31:10] <Forecaster> Oh
L260[11:31:20] <Forecaster> I should make that default to transom
L261[11:31:30] <Forecaster> Random, dangit autocorrect
L262[11:31:42] <Forecaster> %sip random
L263[11:31:42] <MichiBot> You drink a freezing rainbow potion (New!). Once empty the potion bottle fills with a differently colored potion.
L264[11:31:55] <Forecaster> %sip random
L265[11:31:55] <MichiBot> You drink a solid transparent potion (New!). It tastes bitter.
L266[11:54:58] * Temia cat sidhes around
L267[11:55:09] * Temia scoops up Amanda and absconds to the trees with her to pet
L268[12:04:17] <Lizzy> mew?
L269[12:04:25] * Lizzy climbs up the tree to join
L270[12:05:25] * Temia pets Lizzy too
L271[12:05:33] * Lizzy purrs loudly
L272[12:07:43] * Temia offers a liquid adamantium potion
L273[12:08:16] <CompanionCube> %drink random
L274[12:08:16] <MichiBot> You drink a seeping aqua potion (New!). CompanionCube feels like a champion!
L275[12:08:19] <CompanionCube> yay!
L276[12:08:27] <Lizzy> %drink liquid adamantium potion
L277[12:08:27] <MichiBot> Lizzy turns into a cat fairy girl until they see a star fall.
L278[12:08:34] <Temia> \o/
L279[12:08:51] <Lizzy> mew!
L280[12:09:43] <Forecaster> I think I made potions remain for a few days or something instead of just 24 hours
L281[12:10:15] <Inari> %drink random
L282[12:10:15] <MichiBot> You drink a goopy tan potion (New!). Inari turns into a salmon sword dryad boy until they say the word "Blatherskite".
L283[12:10:29] <Inari> Blatherskite
L284[12:10:34] <Temia> That sure is a mouthful
L285[12:10:51] <Inari> Sure is!
L286[12:11:40] <Temia> https://i.imgur.com/e8jdJmP.jpg cat fairy girl mood
L287[12:12:29] <Inari> Heh
L288[12:21:50] ⇨ Joins: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net)
L289[12:28:49] * Temia offers AdorableCatgirl a liquid adamantium potion
L290[12:29:51] <Bob> Bruh
L291[12:32:24] <bad at vijya> so i'm waiting on arch to finish installing
L292[12:32:33] <bad at vijya> *well, the other half of my arch install
L293[12:32:47] <Paradoxical> I can install arch without looking at a guide, I've done it so much lol
L294[12:32:58] <bad at vijya> turns out i forgot to install networkmanager and wpa_supplicant
L295[12:33:03] <Paradoxical> oof
L296[12:33:08] <Paradoxical> start dhcpcd on an eth interface
L297[12:33:10] <bad at vijya> yea same
L298[12:33:25] <bad at vijya> also i did, that's how i'm installing lmao
L299[12:33:30] <Paradoxical> lol
L300[12:33:57] <bad at vijya> also i decided to install cinnamon
L301[12:34:08] <bad at vijya> but i might switch to icewm
L302[12:34:28] <Paradoxical> honestly when I'm not on a low ram/cpu power environment, I use either KDE or Gnome
L303[12:34:34] <bad at vijya> depending on how much dedodated wam cinnamon eats
L304[12:34:44] <CompanionCube> icewm? really?
L305[12:34:54] <bad at vijya> i've got a 2nd gen i3 in this meme machine
L306[12:35:14] <CompanionCube> why not XFCE/LXDE/LXQT/Enlightenment?
L307[12:35:29] <bad at vijya> icewm has that comfy windows 9x look
L308[12:35:38] <CompanionCube> themes can do better
L309[12:35:48] <bad at vijya> so you see
L310[12:35:53] <bad at vijya> the meme is
L311[12:36:02] <bad at vijya> i don't really care
L312[12:36:14] <bad at vijya> icewm is enough for my usage of this laptop
L313[12:36:22] <CompanionCube> ok
L314[12:36:30] <CompanionCube> it's just a weird choice for a lightweight wm
L315[12:37:40] * CompanionCube looks at https://twitter.com/PalantirTech/status/1151868595628122112
L316[12:37:44] <CompanionCube> ...not that one, 2
L317[12:37:48] <CompanionCube> https://i.imgur.com/krJLgdA.png
L318[12:39:41] <bad at vijya> ok
L319[12:39:45] <bad at vijya> but
L320[12:39:49] <bad at vijya> icewm is fine too
L321[12:40:50] <CompanionCube> it is
L322[12:41:07] <bad at vijya> then why do you feel the need to keep trying to shill xfce
L323[12:42:38] ⇦ Quits: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi) (Ping timeout: 190 seconds)
L324[12:45:39] <CompanionCube> %sip radom
L325[12:45:42] <CompanionCube> %sip random
L326[12:45:43] <MichiBot> You drink a sour octiron potion (New!). A bard starts playing a lute behind CompanionCube for 3 hours.
L327[12:45:40] <MichiBot> This doesn't seem to be a potion I recognize...
L328[12:46:02] <Paradoxical> %drink random
L329[12:46:02] <MichiBot> You drink a goopy ruby potion (New!). Paradoxical knows the exact location of a particular molecule of oxygen for 8 seconds.
L330[12:46:12] <Paradoxical> I'm going to inhale it
L331[12:46:15] <Paradoxical> wait, where'd it go
L332[13:01:04] ⇨ Joins: naeisin (naeisin!~naeisin@pool-72-65-52-38.bflony.fios.verizon.net)
L333[13:04:39] ⇦ Quits: naeisin (naeisin!~naeisin@pool-72-65-52-38.bflony.fios.verizon.net) (Quit: naeisin)
L334[13:06:52] ⇨ Joins: tech7 (tech7!~tech7@pool-72-65-52-38.bflony.fios.verizon.net)
L335[13:08:01] <bad at vijya> laptop with a non garbage touchpad http://tinyurl.com/y559cy8h
L336[13:08:17] <Bob> i3
L337[13:08:32] <Bob> Commrade
L338[13:09:45] <bad at vijya> i might see if an i5-560M is faster
L339[13:13:15] <bad at vijya> switched to icewm http://tinyurl.com/y5zvs4nc
L340[13:14:00] <tech7> gas the jews
L341[13:14:33] <bad at vijya> ok
L342[13:14:50] <bad at vijya> good for you /pol/
L343[13:16:38] ⇨ Joins: Inari|2 (Inari|2!~Pinkishu@pD9E8F054.dip0.t-ipconnect.de)
L344[13:24:01] ⇨ Joins: Neo (Neo!~Neo@eos.pc-logix.com)
L345[13:24:44] ⇨ Joins: Neo (Neo!~Neo@eos.pc-logix.com)
L346[13:24:46] <AdorableCatgirl> yeet
L347[13:24:57] <AdorableCatgirl> i'm still not getting the /e nae nae so
L348[13:33:16] <Temia> Amanda, it's okay, those are gnomes, not pixies
L349[13:36:55] <AmandaC> Temia: yeah, I noticed when I ended up picking up "Ball of gnomes"
L350[13:37:08] <Temia> Yeah, no harm, no foul
L351[13:37:12] <bad at vijya> G U H N O M E
L352[13:38:32] <Temia> guhno
L353[13:38:52] <bad at vijya> gee
L354[13:38:53] <bad at vijya> uh
L355[13:38:53] <bad at vijya> no
L356[13:40:53] ⇨ Joins: naeisin (naeisin!~naeisin@pool-72-65-52-38.bflony.fios.verizon.net)
L357[13:45:20] <Forecaster> NPC ship: "Aha! You're the one I'm after!" *flies into sun*
L358[13:49:21] <AmandaC> @Forecaster whoops. :P
L359[13:49:54] <payonel> o/
L360[13:49:58] <payonel> AmandaC: 43
L361[13:50:05] <AmandaC> payonel: noice
L362[13:50:46] ⇨ Joins: call (call!~call@pool-72-65-52-38.bflony.fios.verizon.net)
L363[13:50:47] ⇦ Parts: call (call!~call@pool-72-65-52-38.bflony.fios.verizon.net) ())
L364[13:53:02] <Zef> thanks osx http://tinyurl.com/y6arob83
L365[13:54:58] <AmandaC> This is probably part of the whole authoritian-ape-people thing, but I love this: https://nc.ddna.co/s/ccMkq75b5pPSdiC
L366[13:58:13] <Forecaster> I don't think the cultists are related to the Ape
L367[13:58:15] <Forecaster> I don't think the cultists are related to the Apex [Edited]
L368[14:01:13] <Temia> Something about screaming slurs at anyone who isn't human before the bullets start flying, yeah.
L369[14:01:55] <AmandaC> is that what "historical literature" means? O.o
L370[14:02:13] <Temia> Oh, that part?
L371[14:02:18] <Forecaster> it's just a random quest
L372[14:02:30] <Forecaster> the cultist are just generic enemies that can appear on any planet
L373[14:02:44] <Temia> I mean it could be read into as a Miniknog culture thing but I'm pretty sure that'll generate for any "ruffian investigation" quest
L374[14:03:05] * AmandaC feels she's not gotten her thoughts across properly, but isn't sure how to rephrase
L375[14:03:38] <Temia> I've seen people wanting me to investigate the villains of the week for any old reason.
L376[14:03:46] <Temia> I'm pretty sure one of them was chess
L377[14:13:33] <Temia> Apropos of nothing
L378[14:13:41] <Temia> I see so many people with broken phone screens
L379[14:13:55] <Temia> It makes me feel like I'm the only one that handles my phone with due care
L380[14:14:04] ⇦ Quits: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net) (Ping timeout: 190 seconds)
L381[14:14:07] <Forecaster> I've had the same feeling
L382[14:14:20] <Forecaster> though the back of my phone is now cracked
L383[14:14:24] <Temia> I literally never had a cover on my Relay and I used that for *four years* with barely a scratch
L384[14:14:41] <Temia> My new S8? Keyboard cover only so far, doing fine
L385[14:15:31] <Forecaster> I stupidly put mine on an armrest while listening to an audio book
L386[14:15:42] <Forecaster> then accidentally pushed it off onto a stone tile floor
L387[14:15:53] <Temia> Why did they start putting glass on the backs of phones anyway. That shit ruins traction and gets covered up with a case 99% of the time anyway
L388[14:15:55] <Temia> Or doesn't last a year
L389[14:16:24] <Temia> It's like "aesthetic? spare me"
L390[14:16:25] <Forecaster> I now have a case that covers up the cracks, so oh well
L391[14:16:36] <Forecaster> at least it didn't land face down
L392[14:16:44] <Forecaster> then it'd probably have been unusable
L393[14:16:46] <Temia> Mostly bringing this up because I just signed a UPS delivery on my sister's behalf and the guy's phone was a fucking wreck
L394[14:16:48] <bad at vijya> it's so you drop it
L395[14:17:10] <Temia> I don't know why UPS has moved to their couriers getting signatures on phones, but whatev
L396[14:17:24] <Temia> The overreliance on smartphones is going to bite us.
L397[14:18:03] <Forecaster> eh
L398[14:18:11] <Forecaster> not as badly as this https://youtu.be/yc2TJacPPwg
L399[14:18:11] <MichiBot> The Exploitative Push For Social Networking In Games (The Jimquisition) | length: 22m 30s | Likes: 11,639 Dislikes: 166 Views: 82,572 | by Jim Sterling | Published On 22/7/2019
L400[14:18:19] <Temia> I mean
L401[14:18:27] <Temia> There will always be games without it.
L402[14:18:39] <CompanionCube> wait is that a thing
L403[14:18:42] <Temia> The indie scene and a decades-long back catalogue will always assure that.
L404[14:19:01] * CompanionCube has been a mostly single-player gamer since ~forever
L405[14:19:07] <Forecaster> yeah, but listen to the clips from a talk to game developers in the video
L406[14:19:11] <Forecaster> good lord
L407[14:19:15] <Temia> But actual societal mainstays like postal and transportation systems?
L408[14:19:30] <Temia> Nah, I'd rather not. I hate video games enough as is.
L409[14:19:32] <Forecaster> "paying needs to be the norm in a clan because then others will want to pay too"
L410[14:19:32] * CompanionCube remembers the strauu zelnik quote
L411[14:19:53] <Temia> Yeah, burn it all down
L412[14:20:01] <Temia> I'll build from the ashes with cute games about fairies
L413[14:20:08] <Temia> And NO social networking
L414[14:20:14] <Forecaster> I just avoid those games
L415[14:20:43] <Forecaster> but it's still kind of icky that it's a thing
L416[14:21:20] <CompanionCube> this is an old quote but
L417[14:21:24] <CompanionCube> "But we're not trying to optimize the monetization of everything we do to the nth degree. My concern is, if you do that, the consumer knows. They might not even know that they know, but they feel it."
L418[14:22:01] ⇨ Joins: Prof_David (Prof_David!~neuge@2a02:560:42cd:8600:ae3c:134b:226b:e22c)
L419[14:22:11] <CompanionCube> meanwhile in the land of blatant lies: "We're not going to grab the last nickel," he said.
L420[14:22:19] ⇦ Parts: Prof_David (Prof_David!~neuge@2a02:560:42cd:8600:ae3c:134b:226b:e22c) ())
L421[14:24:41] <Temia> But yes. I still want to make a cute game about fairies
L422[14:24:43] <Temia> And I will.
L423[14:24:44] <Temia> Because fairies.
L424[14:25:28] <bad at vijya> one day
L425[14:25:31] <Temia> f a i r i e s
L426[14:25:32] <bad at vijya> i'll make a game
L427[14:25:50] <bad at vijya> probably about the same time source 2 sdk gets released
L428[14:25:55] <bad at vijya> :^)
L429[14:25:57] <Temia> also on the list, games about girls dating cute monstergirls and girls dating cute monsterboys
L430[14:26:06] <Forecaster> I just made fairies one of the main races of my D&D setting :P
L431[14:26:11] <Temia> yaaaas
L432[14:26:36] <Forecaster> a race which Temia named
L433[14:26:47] <Temia> I can't remember, what did we settle on?
L434[14:27:17] <bad at vijya> tbh
L435[14:27:43] <Forecaster> Silvanshee
L436[14:27:47] <bad at vijya> me and a friend have been working out pretty extensive universe
L437[14:27:53] <Temia> Ah yes
L438[14:28:09] <bad at vijya> a bit of sci-fi, a bit of fantasy, ya know
L439[14:28:12] <Temia> Also worldbuilding is <3
L440[14:29:19] <Forecaster> I'm putting everything in a PHB-style PDF, which I'm currently rewriting parts of and adding some stuff
L441[14:30:20] <Temia> ooh
L442[14:30:24] ⇨ Joins: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net)
L443[14:30:33] <bad at vijya> yeah
L444[14:30:40] <bad at vijya> currently we're working out how to explain aliens
L445[14:31:20] <Forecaster> mine's mostly fantasy with some steampunk elements
L446[14:32:10] <bad at vijya> tbh ours is very much like
L447[14:32:20] <Jewson> How to get computer id in oc
L448[14:32:22] <bad at vijya> it started out cyberpunk-ish
L449[14:32:33] <Forecaster> computers don't have ids
L450[14:32:35] <bad at vijya> but then there was a whole bioweapon and short war
L451[14:32:37] <Forecaster> network cards do
L452[14:32:41] <bad at vijya> computers have uuids
L453[14:32:51] <Jewson> Yea how to get uuid
L454[14:33:01] <Forecaster> computer.adress then I guess
L455[14:33:04] <bad at vijya> component.list("computer")()
L456[14:33:22] <Forecaster> I've never needed a computers address
L457[14:33:36] <bad at vijya> it's good for identifying a computer
L458[14:34:39] <Forecaster> I can also never remember if "address" has one or two d's because in my native language the opposite is correct
L459[14:34:45] <bad at vijya> anyways
L460[14:34:57] <bad at vijya> yea, we've got lots of lore and shit already
L461[14:35:21] <Forecaster> yes, back to the real, non-oc related, conversation :P
L462[14:35:29] <bad at vijya> tl;dr, main story we have going takes place about 8 years after what's called the "three month war", since uh
L463[14:35:33] <bad at vijya> it lasted three months
L464[14:35:43] <Forecaster> that makes no sense
L465[14:35:46] <bad at vijya> and after that, much of humanity fucking D I E D
L466[14:36:03] <bad at vijya> because of a bioweapon
L467[14:36:31] <bad at vijya> and ya know
L468[14:36:34] <bad at vijya> a few nukes
L469[14:36:40] <bad at vijya> ~ 20
L470[14:36:47] <Forecaster> anyone seen the series Love, Death & Robots?
L471[14:37:01] <bad at vijya> not really much in the grand scheme of things, but w/e
L472[14:37:43] <Forecaster> one of the shorts in it is about 3 robots touring the post-apocalypic wasteland where humanity is gone
L473[14:38:21] <Forecaster> and at the end they reveal that humanity died out because they genetically engineered cats to have opposable thumbs
L474[14:38:35] <bad at vijya> oh
L475[14:38:42] <Forecaster> at which point the cats didn't need humanity anymore, so they offed them
L476[14:38:49] <Forecaster> but left the AI's they'd created
L477[14:38:53] ⇦ Quits: naeisin (naeisin!~naeisin@pool-72-65-52-38.bflony.fios.verizon.net) (Ping timeout: 190 seconds)
L478[14:39:31] <bad at vijya> also, there's mutants and shit but that only comes up in a few places
L479[14:39:49] <Forecaster> amanda, lizzy ^
L480[14:39:50] <Forecaster> :P
L481[14:41:25] <bad at vijya> anyways, a few countries made it out okay through the bioweapon shit
L482[14:41:25] <bad at vijya> like
L483[14:41:27] <bad at vijya> australia
L484[14:41:34] <Lizzy> wat?
L485[14:41:42] <Forecaster> oh it's set on earth
L486[14:42:11] <bad at vijya> yea
L487[14:42:26] <bad at vijya> there's soon to be a bit (more) FTL fuckery
L488[14:42:41] <bad at vijya> alien planets and shit
L489[14:45:01] <Forecaster> Temia there is also a minotaur race called Ryth
L490[14:45:03] <AdorableCatgirl> FTL is a bit weird, since there's two ways to do it, one is magic, the other is S C I E N C E
L491[14:45:07] <Temia> aaaaaaaa :D
L492[14:47:16] <AdorableCatgirl> either way, FTL travel is complicated
L493[14:47:20] <AdorableCatgirl> not for the faint of heart
L494[14:50:16] <Lizzy> cute things: https://www.youtube.com/watch?v=nxC-_TyFh_0&t=477s
L495[14:50:16] <MichiBot> Half Cat And Half human is so cute | cute anime moments | length: 10m 29s | Likes: 3,074 Dislikes: 45 Views: 67,381 | by Kanna Wick | Published On 20/7/2019
L496[14:51:47] ⇦ Quits: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net) (Ping timeout: 206 seconds)
L497[14:52:25] <Temia> that BL book tho
L498[14:58:25] <bad at vijya> huh?
L499[14:59:26] <Temia> The link Lizzy posted
L500[14:59:44] <Temia> Oh wait, looked more closely, just generic romance
L501[14:59:46] <Temia> boring =3=
L502[15:00:00] <Jewson> Why uuid of my pc is not present in my `save_folder/opencomputers`
L503[15:00:03] <Jewson> http://tinyurl.com/y6y6x9md
L504[15:02:30] <Jewson> Anyone could help me
L505[15:02:45] <Paradoxical> It is the UUID of the hard drive / floppy that is showing
L506[15:03:07] <Paradoxical> so if you have open os on Drive aaaaaa-aaaa-aaaa-aaa
L507[15:03:07] <Paradoxical> it will show that you have openos's files in the folder aaaaaa-aaaa-aaaa-aaa
L508[15:03:20] <Jewson> oh ok
L509[15:24:22] <AmandaC> Temia: do you know how I can tell what item belongs to what race? This quest required "3 Human objects" but short of going to a human village and stealing their furnature, I'm not sure what to do for that.
L510[15:25:48] <Forecaster> each race have specific objects of certain styles that "belong" to that race
L511[15:26:16] <Forecaster> so that's pretty much what you have to do, or check the wiki for a list of "human objects" I guess
L512[15:37:42] <AmandaC> Not exactly the prettiest, but: https://nc.ddna.co/s/SXLtWgdSHyB2LQ7
L513[15:58:51] <Temia> That doesn't sound like a vanilla quest, but I think a lot of furniture qualifies as human?
L514[15:59:11] <Temia> Try going to the outpost or making furniture and see what comes up
L515[15:59:42] <AmandaC> Temia: it's probably added bby the storage mod, since it asked for 40 storage fragments first
L516[15:59:54] <Temia> Or if you have a pixel printer, see what comes up when you search for "human+
L517[15:59:58] <Temia> Ah, okay
L518[16:00:36] <AmandaC> The tenent "didn't feel safe" and wanted me get a defense tenent
L519[16:01:58] * AmandaC waits while her laptop updates since she's going to need to reboot anyway
L520[16:02:41] <AmandaC> Maybe I should switch to the 5.x kernel, once I figure out how to do that
L521[16:05:50] <CompanionCube> %tonkout
L522[16:05:51] <MichiBot> Heckgosh! CompanionCube! You beat your own previous record of 4 hours, 47 minutes and 32 seconds (By 33 minutes and 32 seconds)! I hope you're happy!
L523[16:05:52] <MichiBot> CompanionCube has tonked out! Tonk has been reset! They gained 0.005 tonk points! plus 0.008 bonus points for consecutive hours! Current score: 0.78971
L524[16:10:12] ⇦ Quits: MajGenRelativity (MajGenRelativity!~MajGenRel@c-73-123-203-209.hsd1.ma.comcast.net) (Ping timeout: 189 seconds)
L525[16:22:46] <Inari|2> Gรถtterfunken is such a great song :p
L526[16:25:51] ⇨ Joins: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net)
L527[16:26:00] <Lizzy> %tonk
L528[16:26:01] <MichiBot> Voldemort! Lizzy! You beat CompanionCube's previous record of <0 (By 20 minutes and 10 seconds)! I hope you're happy!
L529[16:26:02] <MichiBot> Lizzy's new record is 20 minutes and 10 seconds! Lizzy also gained 0.00034 tonk points for stealing the tonk.
L530[16:26:24] <bad at vijya> updating to a new linux kernel is ez
L531[16:28:39] <Paradoxical> ikr, just run `pacman -Syu` on pure arch or `pacman -S linux[version]` on manjaro
L532[16:29:58] <bad at vijya> well even compiling it isn't that hard
L533[16:32:56] <Paradoxical> `make mrproper` `make menuconfig` do some config maybe copy in some firmware `make`
L534[16:45:18] <CompanionCube> menuconfig is old
L535[16:45:23] <CompanionCube> nconfig is nicer
L536[16:45:45] * CompanionCube typically starts off by copying-in the existing config though
L537[16:46:54] <Paradoxical> ah
L538[16:46:54] <Paradoxical> haven't done LFS or compiled kernel in a while
L539[16:52:06] ⇦ Quits: daniel (daniel!~quassel@jupiter.danger-it.de) (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.)
L540[16:54:45] ⇨ Joins: daniel (daniel!~quassel@jupiter.danger-it.de)
L541[16:56:04] ⇨ Joins: MajGenRelativity (MajGenRelativity!~MajGenRel@c-73-123-203-209.hsd1.ma.comcast.net)
L542[16:58:03] ⇦ Quits: daniel (daniel!~quassel@jupiter.danger-it.de) (Ping timeout: 189 seconds)
L543[16:58:44] * Inari|2 wonders if Temia woudl like https://mangadex.org/title/17165/bara-kangoku-no-kemono-tachi (haven't read it yet, just only seen it)
L544[16:59:13] <Temia> On my phone, what's it about?
L545[16:59:39] <Inari|2> shoujo/romance manga "Tsukishiro Nina moves to Ruberia, a small country surrounded by the ocean and roses. But suddenly, she was bitten by a young Loup-Garou, a beast that is said to only exist in legends. Once bitten, Nina herself turned into one of them and was forced into "Abigaile" an academy prison on an island where all the vile beasts are exiled to. What cruel fate awaits the pitiful Nina...!?"
L546[17:00:00] <Temia> Huh.
L547[17:00:11] <Inari|2> Not sure if you're into shoujo stuff
L548[17:00:12] <Inari|2> :p
L549[17:00:33] <Temia> I don't mind, just the stuff I have read got pretty samey
L550[17:00:38] <Inari|2> I see
L551[17:00:50] <Temia> I mean
L552[17:01:16] <Temia> I looked up otome games on the switch if that's already a clear enough indication >>
L553[17:01:22] <Inari|2> :3
L554[17:01:35] <Inari|2> I bought one I think, or maybe that was on Steam, didn't get aroudn to play it yet though
L555[17:01:40] <Inari|2> I did play one on Switch already though
L556[17:01:41] <Inari|2> \o/
L557[17:03:00] <Inari|2> %pet Temia
L558[17:03:00] * MichiBot brushes Temia with OC documentation. 4 health gained!
L559[17:03:10] <Inari|2> ~markov ocdoc
L560[17:03:33] <Inari|2> :<
L561[17:03:35] <Temia> I played a demo, it was a train wreck
L562[17:03:41] <Inari|2> Haha
L563[17:03:42] <Inari|2> How so?
L564[17:03:58] <Temia> And that was apparently AFTER a retranslation
L565[17:04:05] <Inari|2> ^^"
L566[17:04:49] <Temia> The story apparently goes on an incomprehensible bender of half-logic and is rendered doubly incomprehensible by the translation
L567[17:05:05] <Temia> Which is sad because it was about cute foxboys
L568[17:05:40] <Temia> Just... what could have been
L569[17:06:01] <Inari|2> Heh
L570[17:06:35] <Inari|2> Interesting, with animal-people I'd always prefer the char I play tend to be the animal part. What was its name though?
L571[17:10:57] <Temia> I can't remember
L572[17:11:08] <Temia> It was an otome game with a free demo though
L573[17:11:17] <Inari|2> I see
L574[17:11:37] <Temia> Anyway human guys are boring, I'd rather smooch monsterboys
L575[17:11:42] <Inari|2> Haha
L576[17:11:42] <Temia> Or even monstergirls
L577[17:12:02] <Inari|2> Human guys are nice if they're just forceful enough ;D
L578[17:16:00] ⇦ Quits: Rahix (Rahix!~Rahix@2001:7f0:3003:235f:7432:dd86:b273:f0ec) (Remote host closed the connection)
L579[17:26:39] <bad at vijya> tbh
L580[17:26:49] <bad at vijya> i might put robots on the fuckin
L581[17:26:55] <bad at vijya> starcarrier i'm working on in minecraft
L582[17:26:59] <bad at vijya> to manage the reactor
L583[17:27:04] <bad at vijya> (s)
L584[17:27:09] <bad at vijya> all four of them
L585[17:28:43] <Inari|2> https://media.discordapp.net/attachments/344256550640287755/602978400847790116/qxts1rz7mvb31.jpeg?width=329&height=676
L586[17:32:56] ⇨ Joins: ben_mkiv (ben_mkiv!~ben_mkiv@88.130.157.25)
L587[17:33:11] ⇦ Quits: Vexatos (Vexatos!~Vexatos@port-92-200-90-175.dynamic.qsc.de) (Quit: Insert quantum chemistry joke here)
L588[17:45:23] ⇨ Joins: sexe (sexe!~sexe@163.172.75.199)
L589[17:45:37] ⇦ Quits: sexe (sexe!~sexe@163.172.75.199) (Client Quit)
L590[17:49:06] ⇦ Quits: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net) (Ping timeout: 198 seconds)
L591[17:52:37] ⇨ Joins: daniel (daniel!~quassel@jupiter.danger-it.de)
L592[17:54:20] ⇦ Quits: Inari|2 (Inari|2!~Pinkishu@pD9E8F054.dip0.t-ipconnect.de) (Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/)
L593[17:56:18] ⇦ Quits: daniel (daniel!~quassel@jupiter.danger-it.de) (Ping timeout: 198 seconds)
L594[18:21:16] <Lazar Kovacevic> Can server rack be connected to a normal screen
L595[18:21:18] <Lazar Kovacevic> ?
L596[18:21:33] <Paradoxical> @Lazar Kovacevic Yes, you just need to set up the rack correctly
L597[18:21:46] <Paradoxical> (So that side X your server is set to is the side of the screen)
L598[18:22:24] <Lazar Kovacevic> I did that but it is not working
L599[18:22:32] <Lazar Kovacevic> I will check again
L600[18:22:40] <ben_mkiv> sides are from behind iirc
L601[18:22:54] <Lazar Kovacevic> Thanks
L602[18:23:05] <ben_mkiv> try with top, that usually works :P
L603[18:23:21] <Lazar Kovacevic> ?
L604[18:23:58] <Lazar Kovacevic> It works, thanks
L605[18:32:08] ⇦ Quits: MGR (MGR!uid288574@id-288574.stonehaven.irccloud.com) (Quit: Connection closed for inactivity)
L606[18:33:24] ⇦ Quits: Teris (Teris!uid315557@id-315557.stonehaven.irccloud.com) (Quit: Connection closed for inactivity)
L607[18:34:58] ⇨ Joins: Teris (Teris!uid315557@id-315557.stonehaven.irccloud.com)
L608[18:36:39] <CompanionCube> %tonk
L609[18:36:40] <MichiBot> Avada Kedavra! CompanionCube! You beat Lizzy's previous record of 20 minutes and 10 seconds (By 1 hour, 50 minutes and 27 seconds)! I hope you're happy!
L610[18:36:41] <MichiBot> CompanionCube's new record is 2 hours, 10 minutes and 38 seconds! CompanionCube also gained 0.00184 tonk points for stealing the tonk.
L611[18:38:43] <Zef> So I'm watching this random video of turning a g5 case to atx
L612[18:38:52] <Zef> and in the background is this http://tinyurl.com/y584pcfk
L613[18:38:57] <Zef> What the fuck did he do to the drive
L614[18:48:54] ⇨ Joins: user1 (user1!~user1@adsl-89-134-22-220.monradsl.monornet.hu)
L615[18:48:57] ⇦ Quits: user1 (user1!~user1@adsl-89-134-22-220.monradsl.monornet.hu) (Client Quit)
L616[19:08:40] ⇨ Joins: daniel (daniel!~quassel@jupiter.danger-it.de)
L617[19:52:22] ⇨ Joins: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net)
L618[20:05:35] <Z0idburg> ok Temia
L619[20:05:37] <Z0idburg> do not remind me
L620[20:05:42] <Temia> Hm?
L621[20:05:56] <Z0idburg> I don't need to be reminded of things like monster masume
L622[20:06:09] <Z0idburg> or rosario + Vampire
L623[20:06:15] <Temia> I mean... OK?
L624[20:06:22] <Z0idburg> you said monster girls
L625[20:06:24] <Temia> Those are harem shows and garbage anyway
L626[20:06:30] <Z0idburg> yes
L627[20:06:32] <Temia> I don't care about guys kissing monstergirls
L628[20:06:37] <Temia> I want girls kissing monstergirls
L629[20:06:41] <Z0idburg> LOl
L630[20:06:54] <Z0idburg> make a show about it?
L631[20:06:58] <Temia> Or a game.
L632[20:07:06] <Z0idburg> lol
L633[20:07:07] <Temia> I've got people interested in the idea
L634[20:07:30] <Temia> And consensual girl-on-monstergirl cuddling is surprisingly rare
L635[20:07:35] <Temia> So it's a niche to corner
L636[20:10:29] <bad at vijya> holy fuck
L637[20:10:35] <bad at vijya> i forgot i had voidmonster installed
L638[20:10:39] <bad at vijya> and the voidmonster appears in space
L639[21:02:34] <CompanionCube> %tonkout
L640[21:02:34] <MichiBot> Jeepers! CompanionCube! You beat your own previous record of 2 hours, 10 minutes and 38 seconds (By 15 minutes and 15 seconds)! I hope you're happy!
L641[21:02:35] <MichiBot> CompanionCube has tonked out! Tonk has been reset! They gained 0.002 tonk points! plus 0.002 bonus points for consecutive hours! Current score: 0.79555
L642[21:08:36] <AdorableCatgirl> %tonk
L643[21:08:37] <MichiBot> Willikers! AdorableCatgirl! You beat CompanionCube's previous record of <0 (By 6 minutes and 2 seconds)! I hope you're happy!
L644[21:08:38] <MichiBot> AdorableCatgirl's new record is 6 minutes and 2 seconds! AdorableCatgirl also gained 0.0001 tonk points for stealing the tonk.
L645[21:08:39] <AdorableCatgirl> B)
L646[21:09:20] <AdorableCatgirl> so how do i see the tonk leaderboard
L647[21:15:02] <CompanionCube> %tonkleaders
L648[21:15:02] <MichiBot> CompanionCube: https://michibot.pc-logix.com/tonk
L649[21:16:57] <bad at vijya> thanks
L650[21:17:33] <bad at vijya> answer to life right here B) http://tinyurl.com/y6fpgokf
L651[21:19:57] <AmandaC> @Forecaster Temia: It occured to me why I can teleport from deep underground while you can't -- I play on casual, somehow I doubt both of you do too
L652[21:20:11] <Temia> Yeah, I'm on Normal
L653[21:20:17] <Temia> Or Survival or whateve it's called
L654[21:20:24] <AdorableCatgirl> %inv add 40 USD worth of single zimbabwe dollar bills
L655[21:20:25] * MichiBot summons '40 USD worth of single zimbabwe dollar bills' and adds to her inventory. This seems rather fragile...
L656[21:22:38] <Mimiru> You could kill someone with that.
L657[21:23:24] <Mimiru> That's like 6 tons of currency
L658[21:24:03] <AdorableCatgirl> B) exactly
L659[21:26:56] ⇨ Joins: Mark42XLII (Mark42XLII!~Mark42XLI@201.17.114.78)
L660[21:27:01] <Mark42XLII> yo
L661[21:27:11] <Mark42XLII> Anyone here?
L662[21:27:16] <Mimiru> Nope
L663[21:27:16] * Mark42XLII yo
L664[21:27:18] <Mimiru> Sorry
L665[21:27:29] <Mark42XLII> oh ok my bad guess there's no one
L666[21:27:46] <Mimiru> Yeah man, unfortunate timing.
L667[21:28:03] <Mark42XLII> I still can't believe I'm using this inside a virtual LUA PC inside a damn block game so I had to check for humans
L668[21:28:15] <AdorableCatgirl> wot
L669[21:28:18] <Mark42XLII> This is nuts
L670[21:28:22] <AdorableCatgirl> i'm currently shitposting in another chat
L671[21:28:29] <Mark42XLII> ok
L672[21:28:46] <AdorableCatgirl> 'cause someone was talking about using E L E C T R O N for a minecraft launcher
L673[21:28:49] <Izaya> yay, got my FRequest server working on PsychOS
L674[21:29:06] <Izaya> handles multiple requests infinitely better than on OpenOS too
L675[21:29:11] <AdorableCatgirl> PsychOS is neat
L676[21:29:14] ⇦ Quits: Mark42XLII (Mark42XLII!~Mark42XLI@201.17.114.78) (Remote host closed the connection)
L677[21:29:16] <AdorableCatgirl> also
L678[21:29:31] <AdorableCatgirl> i wanna see what porting things to Tsuki is gonna be like, once i get it werking
L679[21:29:50] <Izaya> this is a ground-up implementation in this case
L680[21:30:08] <Izaya> because the OpenOS version doesn't handle multiple requests very well
L681[21:30:19] <Izaya> whereas this one just spawns a process for each request and gets on with life
L682[21:30:22] <AdorableCatgirl> wait what even is FRequest lmao
L683[21:30:39] <Izaya> it's like gopher but on minitel and not specifying a hypertext format
L684[21:32:20] <Izaya> https://git.shadowkat.net/izaya/OC-Minitel/src/branch/master/FRequest/FRequest-protocol.md
L685[21:32:21] <AdorableCatgirl> neat
L686[21:33:55] <AdorableCatgirl> hmm
L687[21:34:13] <AdorableCatgirl> i wonder if i could use minitel's netstack in zorya since
L688[21:34:24] <AdorableCatgirl> zorya's main meme is literally being one step away from an OS
L689[21:34:35] <Izaya> probably
L690[21:34:40] <Izaya> and if not minitel, then probably microtel
L691[21:35:20] <AdorableCatgirl> microtel would be better tbh
L692[21:36:12] <AdorableCatgirl> really, i need to make a shell for zorya and just generally structure it better
L693[21:48:00] ⇦ Quits: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com) (Quit: Leaving.)
L694[21:55:04] ⇦ Quits: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net) (Ping timeout: 190 seconds)
L695[21:58:29] ⇨ Joins: AdorableCatgirl (AdorableCatgirl!~sam@pool-100-7-96-45.rcmdva.fios.verizon.net)
L696[22:08:07] <AmandaC> Temia: \o/ https://nc.ddna.co/s/nDZH5xN5aBmEbk8
L697[22:08:12] ⇨ Joins: Mark42XLII (Mark42XLII!~Mark42XLI@201.17.109.78)
L698[22:08:23] <Mark42XLII> I got more RAM, should be less shitty now
L699[22:08:27] * AmandaC collapses into a ball of fluff in Temia's lap, dozes, having completed her objective
L700[22:08:34] <Mark42XLII> oh woiw
L701[22:08:40] <Mark42XLII> that was intense
L702[22:08:44] * Temia scoops up Amanda and takes to bed with her
L703[22:12:07] * AmandaC purrs softly
L704[22:12:15] <AmandaC> Sleep godo when you go, Temia. :3
L705[22:14:58] ⇦ Quits: Mark42XLII (Mark42XLII!~Mark42XLI@201.17.109.78) (Ping timeout: 190 seconds)
L706[22:48:04] <Izaya> aaaand got fget ported
L707[22:53:38] <Izaya> https://social.shadowkat.net/media/854aa609fc4d129083fa5020235c515319e73e78c1ab1548f40166840876b5b4.webm
L708[23:09:24] ⇨ Joins: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com)
L709[23:47:00] <Forecaster> %tonk
L710[23:47:01] <MichiBot> Waesucks! Forecaster! You beat AdorableCatgirl's previous record of 6 minutes and 2 seconds (By 2 hours, 32 minutes and 21 seconds)! I hope you're happy!
L711[23:47:02] <MichiBot> Forecaster's new record is 2 hours, 38 minutes and 23 seconds! Forecaster also gained 0.00254 tonk points for stealing the tonk.
L712[23:55:40] <bad at vijya> so i'm gonna try to make my own minecraft launcher
L713[23:55:46] <bad at vijya> so far, i made a GUI
L714[23:55:54] <bad at vijya> http://tinyurl.com/y6al9afz
L715[23:56:06] <bad at vijya> there's no logic behind it, just a GUI atm
L716[23:56:14] <bad at vijya> but it *werks* so far
<<Prev Next>> Scroll to Top