<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:10:23] ⇦ Quits: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net) (Quit: Galaxy)
L2[00:24:13] <Ocawes​ome101> KernelSanders
L3[00:24:59] <Sagh​etti> bernie belt sanders
L4[00:25:29] <Ocawes​ome101> it's a Spaceballs reference
L5[00:30:51] ⇨ Joins: AdorableCatgirl (~sam@pool-71-176-252-72.rcmdva.fios.verizon.net)
L6[00:39:27] ⇦ Quits: AdorableCatgirl (~sam@pool-71-176-252-72.rcmdva.fios.verizon.net) (Read error: Connection reset by peer)
L7[00:40:09] <Ocawes​ome101> Proton boots in 0.55s on T3 hardware :^)
L8[00:49:36] <Ocawes​ome101> I'm making a MIDI player. It requires Computronics' noise card :P
L9[00:51:11] <Sagh​etti> quark crashes in a whole 0 seconds
L10[01:02:22] <DaCompu​terNerd> proton, eh? sounds interesting
L11[01:02:31] <DaCompu​terNerd> i think even openos doesn't boot that fast
L12[01:02:38] <DaCompu​terNerd> what is proton anyways
L13[01:02:46] <Izaya> valve's wine distribution
L14[01:02:52] <Izaya> :^)
L15[01:03:18] <Ocawes​ome101> my hybrid kernel
L16[01:03:26] <Ocawes​ome101> for OC
L17[01:04:08] <Sagh​etti> hybrid kernel bad (jk)
L18[01:04:12] <Sagh​etti> full microkernel master racer
L19[01:04:15] <Sagh​etti> race*
L20[01:04:20] <Sagh​etti> also why is it only hybrid?
L21[01:04:21] <Izaya> exokernel stronk
L22[01:04:56] <Ocawes​ome101> because the drivers aren't separate processes, mostly
L23[01:05:04] <Sagh​etti> hmm
L24[01:05:15] <Sagh​etti> wait
L25[01:05:18] <Sagh​etti> to what extent?
L26[01:06:16] <Ocawes​ome101> the driver system is sort of like the `package` system, but simpler and for drivers
L27[01:06:20] <Ocawes​ome101> so it caches them and whatnot
L28[01:06:25] <Ocawes​ome101> but they aren't separate processes
L29[01:06:40] <Sagh​etti> that sounds like just a monolithic kernel now
L30[01:07:00] <Ocawes​ome101> see
L31[01:07:07] <Ocawes​ome101> drivers aren't integrated into the kernel
L32[01:07:14] <Ocawes​ome101> and they won't completely crash the system
L33[01:07:23] <Sagh​etti> i mean honestly any driver could
L34[01:07:34] <Sagh​etti> and even if they're not integrated into the kernel, they
L35[01:07:44] <Sagh​etti> still count as monolithic
L36[01:07:55] <Ocawes​ome101> ah
L37[01:08:00] <Sagh​etti> ex: the linux kernel has kernel modules, yet it's still monolithic and not hybrid
L38[01:08:05] <Ocawes​ome101> fair
L39[01:08:28] <Ocawes​ome101> Proton is at least a small and relatively modular kernel, compared to Open Kernel 2 :P
L40[01:12:07] <Kristo​pher38> Nokernel best
L41[01:17:48] <Adorabl​eCatgirl> aaaaaaaaaaaaaaaaaaaaaa
L42[01:17:49] <Sagh​etti> i wonder how big a minimal OpenOS compatible kernel would be
L43[01:17:58] <Sagh​etti> with all required apis implemented
L44[01:18:03] <Adorabl​eCatgirl> i wanna shoot myself
L45[01:18:10] <Sagh​etti> ohno
L46[01:18:52] <Adorabl​eCatgirl> windows sucks
L47[01:18:54] <Adorabl​eCatgirl> all around
L48[01:19:06] <Adorabl​eCatgirl> my friend is a normie and doesn't understand linux
L49[01:19:13] <Adorabl​eCatgirl> (and the 2GB 1050 sucks for WINE)
L50[01:19:30] <Adorabl​eCatgirl> also if we're talking about small and modular
L51[01:19:36] <Sagh​etti> WINE: WINdows Emulator
L52[01:19:37] <Sagh​etti> gottem
L53[01:19:41] <Adorabl​eCatgirl> Zorya NEO is small and modular B)
L54[01:21:59] <Izaya> https://cdn.mstdn.social/mstdn-social/media_attachments/files/003/304/739/original/265c160e63448410.jpg
L55[01:23:38] <Ocawes​ome101> how do I extract `11` and `010` from `11010000`? I've got `11`, but can't figure out how to get `010` (bytes 4-6)
L56[01:24:15] <Sagh​etti> bits"
L57[01:24:19] <Sagh​etti> bits*?
L58[01:24:22] <Adorabl​eCatgirl> windows: aka os that takes multiple hours and a GRUB command line to install
L59[01:24:27] <Sagh​etti> use bit shifting and check if it's greater than 0
L60[01:24:34] <Izaya> https://imgur.com/MyHXjoj.png all these mhz and still only 39°
L61[01:24:37] <Ocawes​ome101> I'm doing bit shifting
L62[01:24:50] <Sagh​etti> or actually
L63[01:24:53] <Sagh​etti> do a logical AND
L64[01:25:02] <Ocawes​ome101> `(0xF8 >> 3) >> 2` currently (input binary number `11111000`)
L65[01:25:45] <Ocawes​ome101> how would I do that?
L66[01:25:51] <Sagh​etti> so
L67[01:25:54] <Sagh​etti> refresh my memory
L68[01:26:02] <Sagh​etti> is the operator && in lua?
L69[01:26:20] <Sagh​etti> bitwise AND*
L70[01:26:28] <Ocawes​ome101> bitwise AND is `&`
L71[01:26:42] <Izaya> I like that with the performance governor my choices of CPU speed are 3.87Ghz, 4Ghz and 800Mhz
L72[01:26:43] <Sagh​etti> oh ok
L73[01:26:55] <Sagh​etti> so lets say you have the 8 bit value 1001101
L74[01:26:59] <Ocawes​ome101> mhm
L75[01:27:07] <Sagh​etti> and you just want to get bit 4
L76[01:27:13] <Adorabl​eCatgirl> god my head fucking hurts
L77[01:27:26] <Sagh​etti> so do (1001101) & (0001000)
L78[01:27:31] <Ocawes​ome101> ah ok
L79[01:27:34] <Ocawes​ome101> thank you
L80[01:27:43] <Sagh​etti> that's 7 bit but whatever
L81[01:28:10] <Sagh​etti> and when you do the AND, it will be 0 if that bit is clear, or more than 0 if it's set
L82[01:28:24] <Sagh​etti> because and is only true when both are true
L83[01:28:27] <Ocawes​ome101> what if I want to extract 3 bits?
L84[01:28:47] <Sagh​etti> 1. do it one after the other
L85[01:28:53] <Sagh​etti> or you could mask only a certain amount of bits
L86[01:28:56] <Sagh​etti> like this:
L87[01:29:10] <Ocawes​ome101> so `00011100`?
L88[01:29:13] <Sagh​etti> yep
L89[01:29:18] <Sagh​etti> beat me to it
L90[01:29:18] <Ocawes​ome101> cool
L91[01:29:43] <Sagh​etti> so you and that with the byte: `10001101`
L92[01:29:52] <Sagh​etti> and you get 00001100
L93[01:30:07] <Sagh​etti> so you masked only those bits
L94[01:30:08] <Izaya> tfw no DEC Multia
L95[01:30:14] <Ocawes​ome101> cool
L96[01:30:15] <Ocawes​ome101> thank you!
L97[01:36:33] <Izaya> https://blog.pizzabox.computer/img/multia/front.jpg
L98[02:06:47] <The_St​argazer> is there a YML parser in pure Lua
L99[02:14:21] ⇨ Joins: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net)
L100[02:34:02] ⇦ Quits: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net) (Quit: Galaxy)
L101[02:59:56] ⇨ Joins: mej (~mej@203.51.166.35)
L102[03:00:04] ⇦ Quits: mej (~mej@203.51.166.35) (Client Quit)
L103[03:03:42] <The_St​argazer> i just realized something
L104[03:03:52] <The_St​argazer> i'm gonna have to do this painstakingly long procedure twice
L105[03:14:18] <The_St​argazer> in other news: i got rectangles working
L106[03:14:22] <Brisingr​ Aerowing> I don't know of any YAML parsers in pure lua. YAML is extremely complicated and rather difficult to parse correctly, so writing a pure Lua parser for it would be tedious.
L107[03:14:29] <The_St​argazer> i actually found one
L108[03:14:37] <Brisingr​ Aerowing> Oh? Link?
L109[03:14:40] <The_St​argazer> uh
L110[03:14:43] <The_St​argazer> just search tinyyaml
L111[03:14:50] <The_St​argazer> or something
L112[03:15:24] <Brisingr​ Aerowing> Well, it parses a subset of YAML. That's a start.
L113[03:16:04] <Izaya> why YAML?
L114[03:16:22] <The_St​argazer> a few reasons
L115[03:16:47] <The_St​argazer> 1) i didn't want to make a config syntax for each program i write that'll use a config
L116[03:16:53] <The_St​argazer> 2) it's human-readable and human-writable
L117[03:17:07] <The_St​argazer> 3) i do not like json mainly because it doesn't fall under #2
L118[03:17:17] <Izaya> something like TOML or ini may suit your needs and be easier to parse
L119[03:17:31] <The_St​argazer> isn't ini a windows format though?
L120[03:17:34] <Izaya> YAML is not human writable
L121[03:17:43] <The_St​argazer> it's not?
L122[03:17:44] <Brisingr​ Aerowing> INI is used many places.
L123[03:17:52] <Izaya> >Oh, sorry, you used a tab? Haha, this won't parse, and I won't tell you why!
L124[03:18:07] <The_St​argazer> solution for that
L125[03:18:10] <Brisingr​ Aerowing> Pure lua TOML: https://github.com/jonstoler/lua-toml
L126[03:18:14] <The_St​argazer> don't use hard tab characters, which are stupid anyway
L127[03:18:16] <Izaya> > Oh, sorry, you separated something with a different number of spaces to the last section? Haha, this won't parse, and I won't tell you why!
L128[03:18:26] <The_St​argazer> solution for that
L129[03:18:28] <The_St​argazer> indent properly
L130[03:18:30] <Brisingr​ Aerowing> Forge 1.13+ uses TOML for configs now.
L131[03:18:36] <Izaya> it's like if python were worse
L132[03:18:47] <Brisingr​ Aerowing> That's a scary thought.
L133[03:18:51] <Izaya> isn't it?
L134[03:18:52] <The_St​argazer> i can write yaml pretty easily
L135[03:19:06] <Brisingr​ Aerowing> But can a non technical user?
L136[03:19:13] <The_St​argazer> that is my intention
L137[03:19:41] <Brisingr​ Aerowing> TOML is much more lenient, and still supports types.
L138[03:19:43] <The_St​argazer> as long as the editor uses soft tabs and the user indents properly, it should be fine
L139[03:19:48] <The_St​argazer> i still have no idea what toml is
L140[03:20:04] <Izaya> > I don't know x, but I haven't looked into x despite being suggested it
L141[03:20:09] <Brisingr​ Aerowing> Tom's Obvious, Minimal Language
L142[03:20:09] <Brisingr​ Aerowing> https://github.com/toml-lang/toml
L143[03:20:10] <Izaya> > Therefore, I am not interested
L144[03:20:20] <The_St​argazer> Izaya: incorrect
L145[03:20:28] <The_St​argazer> i am interested in whatever format is easiest
L146[03:20:37] <Izaya> tl;dr TOML is ini but actually specified
L147[03:21:27] <Brisingr​ Aerowing> I plan on using TOML for my programs.
L148[03:21:34] <Izaya> it's also case sensitive, which ini is(n't)
L149[03:21:56] <The_St​argazer> the question is
L150[03:21:57] <The_St​argazer> if i (a technical user) haven't heard of format x, how will a non-technical user know what format x is (and how to write it)?
L151[03:22:13] <Izaya> have you ever modified an ini file?
L152[03:22:22] <The_St​argazer> no
L153[03:22:32] <Izaya> alright that's a surprise
L154[03:22:34] <Izaya> or not, I suppose
L155[03:22:44] <Izaya> do you understand the concept of a = b
L156[03:22:46] <The_St​argazer> the only ini files i ever see are `desktop.ini`
L157[03:22:52] <The_St​argazer> yes
L158[03:23:01] <Izaya> at any rate, TOML is going to be a lot easier to write than YAML
L159[03:23:11] <The_St​argazer> if b = 2, and a = b, then a = 2, correct?
L160[03:23:13] <Izaya> because there's less gotchas and less indentation
L161[03:23:39] <Izaya> congratulations, you understand {toml,ini,any configuration file using a similar syntax to ini}
L162[03:24:45] <The_St​argazer> > A TOML file must be a valid UTF-8 encoded Unicode document.
L163[03:24:46] <The_St​argazer> this could cause problems because, afaik, windows (and possibly the OpenOS editor? idk) doesn't save in UTF-8
L164[03:24:46] <The_St​argazer> unless that's changed?
L165[03:24:57] <Izaya> the OpenOS editor is unicode compliant
L166[03:25:02] <The_St​argazer> ah
L167[03:25:09] <Izaya> notepad.exe isn't but you can't help stupidity
L168[03:25:13] <DaCompu​terNerd> It even provides classes for unicode work
L169[03:25:27] <DaCompu​terNerd> Use notepad++ and select utf 8 under encodings
L170[03:25:41] <Izaya> in what universe would you use anything but UTF-8 for anything
L171[03:25:58] <The_St​argazer> TOML kinda just looks like lua tables
L172[03:26:05] <Izaya> how
L173[03:26:08] <Izaya> how
L174[03:26:10] <Izaya> just
L175[03:26:12] <Izaya> how
L176[03:26:17] <The_St​argazer> the dotted keys
L177[03:26:28] <Izaya> ._.
L178[03:26:42] <Izaya> YAML just looks like python because of the :s
L179[03:27:01] <The_St​argazer> python has `:`s?
L180[03:27:18] <Izaya> yes, only for every conditional statement
L181[03:27:22] <The_St​argazer> (tbf, i never use python)
L182[03:27:23] <The_St​argazer> oh
L183[03:27:24] <The_St​argazer> right
L184[03:27:27] <The_St​argazer> try/catch blocks
L185[03:27:30] <Izaya> if
L186[03:27:32] <The_St​argazer> i forgot they were a thing
L187[03:27:33] <Izaya> while
L188[03:27:35] <Izaya> for
L189[03:27:48] <Izaya> I think(?) def has :s as well
L190[03:28:28] <The_St​argazer> so i just had a big brain idea
L191[03:28:35] <The_St​argazer> instead of having to pick between toml and yaml
L192[03:28:36] <The_St​argazer> why not just
L193[03:28:38] <The_St​argazer> support both
L194[03:29:58] <Izaya> ... in the same config file?
L195[03:30:07] <The_St​argazer> no
L196[03:30:16] <gamax92> this chat history hurts to read
L197[03:30:19] <The_St​argazer> a config file would be either yaml or toml
L198[03:30:36] <Izaya> gamax92: I know you're including me in that, but I agree
L199[03:32:24] <The_St​argazer> FINALLY
L200[03:32:24] <The_St​argazer> my injectors are finished
L201[03:32:32] <Izaya> time to murderise a great girros
L202[03:32:42] <The_St​argazer> and it only took four hours!
L203[03:32:43] <Izaya> I want pants made out of its skin
L204[03:33:13] <The_St​argazer> now i have to do this... two more times...
L205[03:33:20] <Brisingr​ Aerowing> I'm using a fork of lua-toml that adds (experimental) date support.
L206[03:34:00] <gamax92> toml is pretty nice
L207[03:34:00] <Brisingr​ Aerowing> Well, I will be using.
L208[03:34:50] <Brisingr​ Aerowing> I like that Forge switched to it.
L209[03:35:04] <The_St​argazer> either cryo fluxducts are actually not unlimited transfer -or- the wyvern injectors don't accept much RF/t
L210[03:35:09] <Brisingr​ Aerowing> Easy to read / write, and most editors have validators for it.
L211[03:35:24] <Brisingr​ Aerowing> Cryo Fluxducts are limited to MAX_INT per tick.
L212[03:35:28] <The_St​argazer> right
L213[03:35:36] <The_St​argazer> but considering this recipe only needs 350m rgf
L214[03:35:38] <The_St​argazer> but considering this recipe only needs 350m rf [Edited]
L215[03:35:41] <The_St​argazer> MAX_INT is like
L216[03:35:42] <The_St​argazer> what
L217[03:35:46] <The_St​argazer> over 9 quadrillion?
L218[03:35:46] <Brisingr​ Aerowing> The Wyvern injectors are likely the issue.
L219[03:36:02] <The_St​argazer> yeah, it can only give as much as they'll take
L220[03:36:11] <Brisingr​ Aerowing> That's max long. Max int is 2,147,483,647
L221[03:36:19] <The_St​argazer> oh
L222[03:36:21] <The_St​argazer> still
L223[03:36:24] <The_St​argazer> that's like
L224[03:36:29] <The_St​argazer> over twice 350m
L225[03:36:45] <Brisingr​ Aerowing> Yeah. So the injectors are likely the limiter.
L226[03:36:48] <The_St​argazer> yeaaah
L227[03:36:58] <gamax92> the fluxducts are very much basically unlimited
L228[03:37:02] <Brisingr​ Aerowing> I don't use Draconic anymore. I prefer less OP stuff.
L229[03:37:06] <The_St​argazer> oh yeah
L230[03:37:07] <The_St​argazer> you should join the MC server
L231[03:37:21] <The_St​argazer> it's basically become the OC community server
L232[03:37:43] <Brisingr​ Aerowing> I don't really do survival.
L233[03:38:06] <Brisingr​ Aerowing> I prefer building massive, complicated constructions that make everything.
L234[03:38:09] <The_St​argazer> neither do i
L235[03:38:09] <The_St​argazer> but then again i find it easier when i have 20k diamonds available :P
L236[03:38:15] <Brisingr​ Aerowing> Yeah.
L237[03:38:28] <Brisingr​ Aerowing> I've been messing with survival a bit lately.
L238[03:38:58] <Brisingr​ Aerowing> I died a couple times, once to fall damage, once to managing to blow myself up with TNT.
L239[03:39:11] <Ar​iri> The_stargazer: I found a ZPM earlier
L240[03:39:18] <Ar​iri> i’m going to build a super gate later
L241[03:39:23] <Brisingr​ Aerowing> ZPM?
L242[03:39:29] <Ar​iri> Zero Point Module
L243[03:39:37] <Ar​iri> Stargate things
L244[03:39:39] <Brisingr​ Aerowing> Oh. From Stargate Network?
L245[03:39:43] <Ar​iri> Yeah
L246[03:39:44] <Brisingr​ Aerowing> I've used that mod.
L247[03:39:53] <Brisingr​ Aerowing> I have it in another Thermal based pack.
L248[03:39:54] <Ar​iri> I love Stargate so i added it to the pack
L249[03:39:56] <The_St​argazer> oh cool
L250[03:39:58] <Ar​iri> Ah
L251[03:40:12] <The_St​argazer> what do you mean by "super gate"?
L252[03:40:25] <Ar​iri> Season 10, you’ll see if you keep watching
L253[03:40:30] <Ar​iri> spoilers :P
L254[03:40:38] <The_St​argazer> i haven't been able to watch any of it lol
L255[03:40:47] <The_St​argazer> but now that i have a computer available that won't randomly BSOD
L256[03:40:51] <The_St​argazer> and has persistent storage
L257[03:40:53] <The_St​argazer> i should download it
L258[03:41:00] <The_St​argazer> also: i love how i can just casually request 1k fluix pearls
L259[03:41:09] <Ar​iri> I could download it for you and put it on my cloud if you want
L260[03:41:28] <Ar​iri> It might take a bit bc i don’t have many crystals in storage but i mean sure lol
L261[03:42:27] <The_St​argazer> how fast is your cloud?
L262[03:42:33] <The_St​argazer> also
L263[03:42:39] <The_St​argazer> i need 1k pearls for infinity boosters
L264[03:42:51] <The_St​argazer> am running low on infinity energy for my crafting terminal
L265[03:44:19] <Brisingr​ Aerowing> I'm off to bed now. Night.
L266[03:44:36] <The_St​argazer> gn
L267[03:53:23] <Izaya> got me some girros pants
L268[03:53:26] <Izaya> https://social.shadowkat.net/media/5ea821ad3f30911a106d617a34e78eb5999e2e2c6b8d408713070f4863d28b5c.png
L269[03:59:34] <MarkN​stein> Okay lesson learned: `pairs(table)` returns (partially) unsorted if the table isn't numerically indexed contiguously from 1. (Pairs returns sorted starting at 1, until continuity fails, then unsorted/random per call)
L270[04:02:27] ⇨ Joins: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net)
L271[04:22:03] ⇦ Quits: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net) (Quit: Galaxy)
L272[04:33:27] ⇦ Quits: CarlenWhite (~CarlenWhi@104.sub-174-231-131.myvzw.com) (Ping timeout: 204 seconds)
L273[04:33:47] <Izaya> well
L274[04:33:50] <Izaya> this is cursed
L275[04:33:51] <Izaya> but I guess it works
L276[04:34:33] <Izaya> to determine terminal size, you can use \27[9999;9999H to move the cursor to the bottom right, then use \27[6n
L277[04:35:23] <Izaya> and if you read match("\27[(%d+);(%d+)R") you get the X and Y of the bottom right cell
L278[04:36:39] <Izaya> now I just have to figure out how to patch status responses into the PsychOS terminal emulator
L279[04:40:04] <Forec​aster> %sip
L280[04:40:05] <MichiBot> You drink a slimy naqahdah potion (New!). Forec​aster's hair glows the color of adamantium until they see a bird.
L281[04:40:14] <Forec​aster> Huh
L282[04:40:54] ⇨ Joins: CarlenWhite (~CarlenWhi@104.sub-174-231-131.myvzw.com)
L283[04:48:06] <The_St​argazer> %tonk
L284[04:48:06] <MichiBot> Dogast! The_St​argazer! You beat Forec​aster's previous record of 7 hours, 59 minutes and 21 seconds (By 59 minutes and 38 seconds)! I hope you're happy!
L285[04:48:07] <MichiBot> The_Stargazer's new record is 8 hours and 59 minutes! The_Stargazer also gained 0.00792 (0.00099 x 8) tonk points for stealing the tonk. Position #9. Need 0.00653 more points to pass Ko​dos!
L286[04:48:17] <The_St​argazer> neat
L287[04:58:42] <CompanionCube> goddammit
L288[05:01:39] ⇨ Joins: S|h|a|w|n (~shawn156@c-76-25-73-212.hsd1.co.comcast.net)
L289[05:02:50] ⇨ Joins: Ratatoskr-Win7__ (~DFrostedW@mobile-107-77-172-94.mobile.att.net)
L290[05:03:04] ⇦ Quits: Ratatoskr-Win7__ (~DFrostedW@mobile-107-77-172-94.mobile.att.net) (Read error: Connection reset by peer)
L291[05:05:09] ⇦ Quits: CaptainJackHardness (~DFrostedW@2607:fcd0:da80:1801::9e) (Ping timeout: 190 seconds)
L292[05:11:43] <Izaya> https://imgur.com/w2SYl4c.png not bad
L293[05:16:39] ⇨ Joins: phroa (~phroa@173.254.236.155)
L294[05:31:18] ⇦ Quits: Vaur (~vaur@56.ip-149-202-44.eu) (Ping timeout: 378 seconds)
L295[05:32:09] ⇨ Joins: Vaur (~vaur@56.ip-149-202-44.eu)
L296[05:32:53] ⇨ Joins: AdorableCatgirl (~sam@pool-71-176-252-72.rcmdva.fios.verizon.net)
L297[05:33:12] ⇦ Quits: CarlenWhite (~CarlenWhi@104.sub-174-231-131.myvzw.com) (Ping timeout: 198 seconds)
L298[05:36:58] <The_St​argazer> have some news about YWS (Y Window System)
L299[05:36:58] <The_St​argazer> everything is contained within 'desktops' which are basically just window containers
L300[05:37:04] <The_St​argazer> inside a window, you can draw shapes
L301[05:37:19] <The_St​argazer> aand that's about it
L302[05:37:31] <The_St​argazer> of course, you can do things with those shapes
L303[05:37:55] <The_St​argazer> but at its core, any YWS desktop is just a bunch of rectangles
L304[05:38:09] <The_St​argazer> thus concludes my TED talk.
L305[05:39:58] <Forec​aster> ...
L306[05:40:00] <Forec​aster> godammit
L307[05:40:08] <Izaya> today's fun (dumb) idea
L308[05:40:24] <Izaya> a window system that actually provides buffered virtual GPU components
L309[05:40:27] <Forec​aster> I accidentally cleaned out the build output dir...
L310[05:40:27] <Adorabl​eCatgirl> build everything with Zorya
L311[05:40:29] ⇨ Joins: CarlenWhite (~CarlenWhi@104.sub-174-231-131.myvzw.com)
L312[05:40:44] <Adorabl​eCatgirl> Izaya: "dumb" but that sounds genius
L313[05:40:45] <Forec​aster> My MichiBot config and db are gone -_-
L314[05:40:58] <The_St​argazer> try testdisk maybe?
L315[05:40:59] <Izaya> it'd be quite heavy and certainly not as efficient as it could be
L316[05:41:03] <Izaya> but also it'd probably work nicely
L317[05:41:17] <Adorabl​eCatgirl> >heavy
L318[05:41:18] <Adorabl​eCatgirl> >not efficient
L319[05:41:24] <Adorabl​eCatgirl> reminder that Zorya exists
L320[05:41:33] <Adorabl​eCatgirl> 45 fucking KiB of RAM
L321[05:41:33] <Forec​aster> siiiigh
L322[05:41:36] <The_St​argazer> unless you overwrote it all with (output from) `/dev/null`
L323[05:41:39] <Izaya> to save memory you could save colour data as part of the buffer lines
L324[05:41:44] <Forec​aster> @Mimiru need copy of config
L325[05:41:44] <The_St​argazer> you should be able to testdisk (or something) it back
L326[05:42:12] <Izaya> so for each character you have a proceeding character with 4 bits of foreground and 4 bits of background
L327[05:42:12] <Mim​iru> @Forecaster cp config config.new
L328[05:42:20] <Mim​iru> :P
L329[05:42:31] <Forec​aster> there is no such thing
L330[05:42:38] <Forec​aster> only LanteaBot-1.1.0.jar
L331[05:42:51] <Mim​iru> MichiBot should generate a default config
L332[05:43:01] <Forec​aster> oh wait, there's a config.default in the root
L333[05:43:03] <Mim​iru> config.default
L334[05:43:08] <The_St​argazer> that almost sounds like a minecraft mod
L335[05:43:34] <Mim​iru> LanteaBot was written originally for the LanteaCraft IRC channel.
L336[05:43:41] <Mim​iru> and... well LanteaCraft is dead.
L337[05:44:01] <Izaya> so
L338[05:44:18] <The_St​argazer> so, MichiBot rose from the ashes of LanteaBot? ..or something like that
L339[05:44:24] <Izaya> you can send a VT100-compatible terminal \27[c to "Query Device Code"
L340[05:44:29] <Izaya> but it's not specified what that should return
L341[05:44:32] <Izaya> which is neat I guess
L342[05:44:40] <Mim​iru> MichiBot is LanteaBot
L343[05:44:48] <Mim​iru> %source
L344[05:44:49] <MichiBot> Mim​​iru: https://github.com/PC-Logix/LanteaBot/
L345[05:44:57] <Forec​aster> MichiBot is just the name of this instance :P
L346[05:44:59] <Izaya> I might just return a bunch of decimal encoded bytes with a string like vt100emu;gpuaddr;screenaddr
L347[05:45:18] <AdorableCatgirl> Izaya: return "CBT9001XD" no balls
L348[05:46:02] <Izaya> also, I'm going to return \27[3n to every \27[5n
L349[05:46:37] <AdorableCatgirl> i see
L350[05:49:52] <Izaya> well
L351[05:50:25] <Izaya> if you send the terminal \27[c it'll put \27[width;height0c on stdin
L352[05:52:57] <Forec​aster> oh, uh
L353[05:52:59] <Forec​aster> %test
L354[05:53:02] <Forec​aster> woops?
L355[05:53:20] <Forec​aster> apparently the prefix command accepts no argument and sets the command prefix to nothing xD
L356[05:55:55] <Izaya> PsychOS VT100 emulator is now significantly better
L357[05:55:56] <Izaya> yay
L358[06:03:08] <Izaya> I don't understand how colours work in OC
L359[06:03:32] <Izaya> it could just be ocvm being weird
L360[06:03:36] <Izaya> but it works in OpenOS
L361[06:03:48] <Izaya> but if I ask it to set the foreground to pallete colour 1
L362[06:03:49] <Izaya> nothing
L363[06:03:51] <Izaya> no colours work
L364[06:03:52] <MichiBot> Iz​aya: yes
L365[06:03:58] <Izaya> no
L366[06:03:59] <MichiBot> Iz​aya: yes
L367[06:04:02] <Izaya> no
L368[06:04:03] <MichiBot> Iz​aya: yes
L369[06:04:05] <Izaya> interesting
L370[06:05:25] <Izaya> oh
L371[06:05:29] <Izaya> this is kinda ruining those plans
L372[06:05:32] <Izaya> neat
L373[06:05:32] <MichiBot> Iz​aya: https://i.imgur.com/OIc8DRk.gif
L374[06:05:37] <Izaya> fuck OFF
L375[06:05:47] <Forec​aster> xD
L376[06:05:56] <Forec​aster> MichiBot's become very sassy all of a sudden
L377[06:06:09] <Forec​aster> oh
L378[06:06:11] <Forec​aster> right
L379[06:06:22] <Forec​aster> because the command prefix is '' any word is a command
L380[06:06:33] <Forecaster> restart
L381[06:06:34] ⇦ Quits: MichiBot (~MichiBot@eos.pc-logix.com) ()
L382[06:06:49] ⇦ Quits: BrightYC (~BrightYC@2002:bc20:8142:1:6e4d:87d3:2308:4b17) (Ping timeout: 190 seconds)
L383[06:07:00] ⇨ Joins: MichiBot (~MichiBot@149.56.6.196)
L384[06:07:01] zsh sets mode: +v on MichiBot
L385[06:17:43] <Izaya> https://imgur.com/MMsQUx9.png
L386[06:17:46] <Izaya> [x] nice
L387[06:23:18] ⇦ Quits: gamax92 (~gamax92@c-73-153-119-160.hsd1.co.comcast.net) (Quit: Leaving)
L388[06:25:13] <Michiyo> WTF..?
L389[06:25:38] <Forec​aster> nothing to see here
L390[06:26:01] <Michiyo> s/nothing/something/
L391[06:26:09] <Michiyo> hmm
L392[06:26:41] <Michiyo> test
L393[06:26:45] <Michiyo> %test
L394[06:26:47] <Forec​aster> %s/m/n/g
L395[06:26:49] <Michiyo> mmhmm
L396[06:28:00] <Michiyo> restart
L397[06:28:04] <Michiyo> <_<
L398[06:28:19] <Forec​aster> @test
L399[06:28:28] <Forec​aster> ^test
L400[06:28:32] ⇦ Quits: MichiBot (~MichiBot@149.56.6.196) (Remote host closed the connection)
L401[06:28:46] <Michiyo> how did the prefix get emptied anyway?
L402[06:28:51] ⇨ Joins: MichiBot (~MichiBot@149.56.6.196)
L403[06:28:52] zsh sets mode: +v on MichiBot
L404[06:29:01] <Forec​aster> I may have accidentally done %prefix with no argument
L405[06:29:05] <Forec​aster> o3o
L406[06:29:09] <Izaya> chaining modifiers works too \o/
L407[06:29:12] <Izaya> https://imgur.com/iHKb5sV.png
L408[06:29:25] <Michiyo> %test
L409[06:30:01] <Michiyo> <_<
L410[06:30:05] <Michiyo> test
L411[06:30:14] ⇦ Quits: MichiBot (~MichiBot@149.56.6.196) (Remote host closed the connection)
L412[06:33:50] ⇨ Joins: MichiBot2 (~MichiBot2@149.56.6.196)
L413[06:33:50] zsh sets mode: +v on MichiBot2
L414[06:34:18] <Michiyo> %test
L415[06:34:48] <Forec​aster> oooooooh
L416[06:34:53] <Forec​aster> this is my woopsie
L417[06:34:56] <Forec​aster> xD
L418[06:35:01] <Michiyo> <_>
L419[06:35:37] <Izaya> https://imgur.com/sIt1m8W.png working as intended
L420[06:35:47] <Forec​aster> when ignoreMessagesEndingWith isn't set it's apparently treated as containing `""`, meaning it ignores everything because everything ends with "empty string"
L421[06:35:49] <Forec​aster> xD
L422[06:36:19] <Forec​aster> that's why my instance wasn't working either
L423[06:37:53] ⇨ Joins: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net)
L424[06:39:22] ⇦ Quits: MichiBot2 (~MichiBot2@149.56.6.196) (Remote host closed the connection)
L425[06:39:41] ⇨ Joins: MichiBot2 (~MichiBot2@eos.pc-logix.com)
L426[06:39:41] zsh sets mode: +v on MichiBot2
L427[06:40:05] <Michiyo> %nick MichiBot
L428[06:40:13] <Izaya> reset and invert work too
L429[06:40:17] <Izaya> good shit
L430[06:40:22] <Michiyo> %test
L431[06:40:25] <MichiBot2> Mic​hiyo: Success
L432[06:40:35] <Michiyo> %chnick MichiBot
L433[06:40:35] *** MichiBot2 is now known as MichiBot
L434[06:57:25] ⇦ Quits: Backslash (~Backslash@d137-186-220-152.abhsia.telus.net) (Read error: Connection reset by peer)
L435[06:57:32] ⇦ Quits: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net) (Quit: Galaxy)
L436[07:14:06] ⇨ Joins: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net)
L437[07:33:45] ⇦ Quits: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net) (Quit: Galaxy)
L438[07:53:12] ⇦ Quits: Thutmose (~Patrick@host-69-59-79-181.nctv.com) (Quit: Leaving.)
L439[07:53:25] <Izaya> bugger
L440[07:53:49] <Izaya> can't shift an adapter with a sticky piston
L441[07:59:11] <Forec​aster> maybe you need to sticky and adapter with a shifty piston
L442[08:03:02] ⇨ Joins: Inari (~Pinkishu@pD9E8EE66.dip0.t-ipconnect.de)
L443[08:16:57] ⇨ Joins: immibis (~immibis@46.114.34.127)
L444[08:52:58] ⇨ Joins: Vexatos (~Vexatos@port-92-192-19-65.dynamic.as20676.net)
L445[08:52:58] zsh sets mode: +v on Vexatos
L446[09:09:06] ⇦ Quits: phroa (~phroa@173.254.236.155) (Ping timeout: 378 seconds)
L447[09:28:56] <The_St​argazer> Inari, Izaya: when was the last time either of you logged in to the server?
L448[09:29:13] <Inari> Server?
L449[09:29:32] <The_St​argazer> yes
L450[09:29:35] <The_St​argazer> ariri's server
L451[09:29:52] <Inari> No clue, ages
L452[09:30:09] <Izaya> like
L453[09:30:11] <Izaya> a bit
L454[09:31:09] <Forec​aster> an eternity
L455[09:32:02] <The_St​argazer> i'm currently trying to log in
L456[09:32:09] <The_St​argazer> but minecraft does not like that idea
L457[09:32:21] <Forec​aster> shadowban
L458[09:34:07] <The_St​argazer> if that was the cse i'd be able to log in but noone else would see me
L459[09:34:09] <The_St​argazer> if that was the case i'd be able to log in but noone else would see me [Edited]
L460[10:03:06] ⇨ Joins: BrightYC (~BrightYC@broadband-188-32-129-66.ip.moscow.rt.ru)
L461[10:14:52] <Izaya> https://social.shadowkat.net/media/633a7b54b0d97473672f47d44137403b09369f6db1070e60804e3621f3608fa7.png
L462[10:56:03] ⇦ Quits: S|h|a|w|n (~shawn156@c-76-25-73-212.hsd1.co.comcast.net) (Read error: Connection reset by peer)
L463[11:32:30] <B​ob> lord Nvidia can't make their drivers work even on windows i swear
L464[11:38:32] <The_St​argazer> so i think my player.dat is corrupted :I
L465[11:39:31] <Forec​aster> ohno
L466[11:39:59] <The_St​argazer> either that or my laptop just hates minecraft
L467[11:40:13] <Forec​aster> probably more likely it's corrupted
L468[11:40:17] <The_St​argazer> yea
L469[11:40:47] <The_St​argazer> my console gets spammed with Code Block pastebined https://paste.pc-logix.com/ivopekogan
L470[11:41:16] <The_St​argazer> that's basically my entire log
L471[11:42:17] <The_St​argazer> i'm gonna try a reboot
L472[11:42:20] <The_St​argazer> o/
L473[11:44:15] <Forec​aster> woo my MichiBot dev environment is back up and running
L474[11:44:42] <Forec​aster> there was something I was going to do but I can't remember now...
L475[11:46:09] <Forec​aster> oh yeah
L476[11:47:39] <Forec​aster> and, oh yeah
L477[11:51:20] <The_St​argazer> am back
L478[11:51:24] <The_St​argazer> laptop and router restarted
L479[11:53:50] <Forec​aster> probably didn't help right
L480[11:55:36] <The_St​argazer> idk
L481[11:55:40] <The_St​argazer> i'm starting mc now
L482[12:01:18] <Z0id​burg> The ISP I work for sent all of us employees a notice that they were deprecating TCP in favor of UDP to avoid contaminating customers with handshakes
L483[12:01:43] <The_St​argazer> i get it and i don't get it at the same time
L484[12:01:51] <Forec​aster> I prefer the BTTH protocol myself
L485[12:02:06] <The_St​argazer> the what protocol
L486[12:02:12] <Forec​aster> Boot To The Head
L487[12:02:16] <The_St​argazer> oh
L488[12:02:34] <Z0id​burg> I like RUDP
L489[12:02:54] <Forec​aster> what's that then :P
L490[12:03:15] <Z0id​burg> It's UDP in a TCP like mode but without the fat
L491[12:03:39] <Z0id​burg> It's a lot more efficient than TCP
L492[12:03:41] <Forecaster> %restart
L493[12:03:42] ⇦ Quits: MichiBot (~MichiBot2@eos.pc-logix.com) ()
L494[12:04:03] ⇨ Joins: MichiBot2 (~MichiBot2@eos.pc-logix.com)
L495[12:04:04] zsh sets mode: +v on MichiBot2
L496[12:04:10] <Forec​aster> Currently the effect count on the potion page is 149
L497[12:04:23] <Forec​aster> after this restart it's gone up to 3735
L498[12:04:25] <Forec​aster> :D
L499[12:04:57] <Forecaster> %nick MichiBot
L500[12:05:02] <DaCompu​terNerd> ~~I'd joke a wouldn't UDP it you but tell get~~
L501[12:05:31] <Z0id​burg> Ooh I got another 4 or 5 inches of snow last night
L502[12:05:35] <Forecaster> ...
L503[12:05:39] <Forecaster> %test
L504[12:05:40] <MichiBot2> Forec​aster: Success
L505[12:05:42] <Forecaster> huh
L506[12:05:54] ⇨ Joins: ben_mkiv (~ben_mkiv@88.130.156.73)
L507[12:05:57] <The_St​argazer> no fix :(
L508[12:06:01] <The_St​argazer> the problem is
L509[12:06:01] <Forecaster> %nick MichiBot
L510[12:06:02] <Z0id​burg> %lua 1
L511[12:06:02] <MichiBot2> 1
L512[12:06:10] <The_St​argazer> to fix this my playerdata has to be deleted
L513[12:06:14] <The_St​argazer> and then i'll lose all my stuff
L514[12:06:15] <Forecaster> why can't I use the nick command...
L515[12:06:29] <Forec​aster> not if there are backups
L516[12:06:37] <The_St​argazer> oh i forgot about that
L517[12:06:42] <The_St​argazer> the server backs up regularly
L518[12:07:07] <Forec​aster> I cheated a little bit with the effect counter
L519[12:07:16] <Forec​aster> there aren't suddenly thousands of new effects
L520[12:07:37] <Forec​aster> I just changed how it counted so it takes into account the various variables for each effect :D
L521[12:11:12] <DaCompu​terNerd> %sip
L522[12:11:12] <MichiBot2> You drink a shimmering emerald potion (New!). DaCompu​terNerd feels the need to use "%fling".
L523[12:11:19] <DaCompu​terNerd> %fling
L524[12:11:19] <MichiBot2> DaCompu​terNerd flings a Lightsaber in a random direction. It hits Azel​phur on the left hand. They take 1d4 => 4 damage!
L525[12:32:39] ⇦ Quits: immibis (~immibis@46.114.34.127) (Ping timeout: 190 seconds)
L526[12:34:33] ⇨ Joins: immibis (~immibis@46.114.34.127)
L527[12:46:52] <Forecaster> %restart
L528[12:46:53] ⇦ Quits: MichiBot2 (~MichiBot2@eos.pc-logix.com) ()
L529[12:47:14] ⇨ Joins: MichiBot2 (~MichiBot2@149.56.6.196)
L530[12:47:14] zsh sets mode: +v on MichiBot2
L531[12:48:36] <Forec​aster> heeey, you can now only specify one potion attribute (still need the word "potion") and MichiBot will randomize up the other one
L532[12:48:42] <Forec​aster> Elfi: ^
L533[12:48:58] <Inari> neat
L534[12:49:02] <Inari> %sip mutable potion
L535[12:49:03] <MichiBot2> You drink a mutable aluminium potion (New!). Inari turns into a unicorn for 4 hours.
L536[12:50:51] <ThePi​Guy24> %sip titanium potion
L537[12:50:52] <MichiBot2> You drink a sedimented tan potion (New!). ThePi​Guy24 feels slightly slower.
L538[12:51:05] <ThePi​Guy24> works great
L539[12:51:25] <Forec​aster> haha
L540[12:53:06] <Forec​aster> it's because titanium
L541[12:53:10] <Forec​aster> xD
L542[12:53:21] <ThePi​Guy24> close enough
L543[12:53:22] <Forec​aster> interesting
L544[12:53:47] <Forec​aster> it's probably because it checks them in order, and tan happens to come before titanium
L545[12:54:05] <Forec​aster> sorting them by length first should fix it
L546[12:56:38] <Adorabl​eCatgirl> WEW
L547[12:56:45] <Adorabl​eCatgirl> STALKER 2
L548[12:57:02] <Inari> Elfi: You;ve probably already seen this but https://www.youtube.com/watch?v=eXf0hnC1cuE
L549[12:57:03] <MichiBot2> ぬいぐるみをめぐって飼い主と熱いバトルを繰り広げるフクロウ | length: 2m 18s | Likes: 8,902 Dislikes: 253 Views: 237,332 | by GEN3 OWL CHANNEL | Published On 20/3/2020
L550[12:58:17] <Inari> Would be better without the music though imo
L551[13:10:42] <Forec​aster> I fixed it!
L552[13:11:38] <Forecaster> %restart
L553[13:11:40] ⇦ Quits: MichiBot2 (~MichiBot2@149.56.6.196) ()
L554[13:12:00] ⇨ Joins: MichiBot2 (~MichiBot2@eos.pc-logix.com)
L555[13:12:01] zsh sets mode: +v on MichiBot2
L556[13:12:06] <ThePi​Guy24> %sip tan potion
L557[13:12:41] <MichiBot2> You drink an oxidised tan potion (New!). ThePi​Guy24 is suddenly wearings gloves they don't remember putting on.
L558[13:12:57] <ThePi​Guy24> ok that still works
L559[13:13:02] <Forec​aster> %sip titanium potion
L560[13:13:02] <MichiBot2> You drink a mutable titanium potion (New!). Forec​aster turns into a fish girl for 9 moons.
L561[13:13:09] <Forec​aster> agh
L562[13:29:34] <Izaya> hmhmhm
L563[13:29:48] <Izaya> so the more I have in the kernel
L564[13:29:56] <Izaya> the less space in the tmpfs is used
L565[13:30:29] <Izaya> but also the more is always loaded
L566[13:30:45] <The_St​argazer> Izaya: i hope you don't mind but it's that time again
L567[13:30:45] <The_St​argazer> where I borrow the event listener from skex and shove it violently into my own stuff
L568[13:30:57] <Izaya> pls
L569[13:31:09] <The_St​argazer> i cannot be bothered to write my own
L570[13:31:56] <The_St​argazer> this time's project is... it.. well.. it opens doors.
L571[13:32:02] <The_St​argazer> that
L572[13:32:05] <The_St​argazer> 's it
L573[13:32:25] <The_St​argazer> and i need to listen for `modem_message` events
L574[13:33:10] <The_St​argazer> so i can get data from a server
L575[13:33:53] <The_St​argazer> you might be wondering why i need all that for a door opener
L576[13:33:54] <The_St​argazer> well
L577[13:33:58] <The_St​argazer> it's an RFID door opener!
L578[13:34:04] <The_St​argazer> original, I know.
L579[13:34:21] <The_St​argazer> a very inefficient one!
L580[13:34:58] <Izaya> I have one that works with OpenSecurity biometric readers
L581[13:35:23] <Izaya> sends the code over the network, and the server can differentiate between different doors
L582[13:35:55] <The_St​argazer> code, as in?
L583[13:35:59] <The_St​argazer> the biometric code?
L584[13:36:10] <Izaya> yeah
L585[13:37:01] <The_St​argazer> don't you have to right click those
L586[13:37:27] <The_St​argazer> it's way cooler if you can just walk up to a door and it opens for you
L587[13:37:39] <The_St​argazer> and then closes behind you
L588[13:39:34] <Izaya> you could probably do that
L589[13:39:39] <Izaya> I just went with the cheap option
L590[13:39:55] <Izaya> https://social.shadowkat.net/media/2d49f0c0a19a826a252eb1412343ccf9f5993eebf0f1ce47c080aefa4e888c69.png
L591[13:40:27] ⇦ Quits: immibis (~immibis@46.114.34.127) (Ping timeout: 189 seconds)
L592[13:42:18] ⇨ Joins: phroa (~phroa@173.254.236.155)
L593[13:42:21] ⇨ Joins: man_cubus (~konst@2002170185.teremki.kiev.ua)
L594[13:43:19] ⇨ Joins: immibis (~immibis@46.114.34.127)
L595[13:47:19] <Forec​aster> huh, one of the co-founders of Asterix passed away today
L596[13:47:48] <M​GR> That was such a good comic
L597[13:48:22] <Forec​aster> co-founders and illustrators I should say
L598[13:49:02] <Forec​aster> %sip
L599[13:49:02] <MichiBot2> You drink a stirring tuna potion (New!). The potion bottle is suddenly on fire!
L600[13:49:06] <Vexatos> Goscinny is long dead, now Uderzo died too
L601[13:49:09] <Forec​aster> ow
L602[13:50:37] <Forec​aster> oh hey Vexatos
L603[13:51:11] <Forec​aster> if you want to watch me be terrible at Gungeon all over again, but in the other direction, I have good news
L604[13:51:45] ⇨ Joins: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net)
L605[13:53:07] <Izaya> ... hey
L606[13:56:32] <Izaya> a superior option to choosing between having stuff in the kernel and having it as external services
L607[13:56:47] <Izaya> is having a luacomp directive to pre-load services
L608[14:02:22] <Vexatos> Forecaster becomes an exiteer
L609[14:02:45] <Forec​aster> more like a, trying-to-go-upp-er
L610[14:03:04] <Vexatos> elevated gameplay
L611[14:21:29] ⇦ Quits: ben_mkiv (~ben_mkiv@88.130.156.73) (Remote host closed the connection)
L612[14:24:13] <Ocawes​ome101> %tonk
L613[14:24:13] <MichiBot2> Waesucks! Ocawes​ome101! You beat The_St​argazer's previous record of 8 hours and 59 minutes (By 37 minutes and 6 seconds)! I hope you're happy!
L614[14:24:14] <MichiBot2> Ocawesome101's new record is 9 hours, 36 minutes and 6 seconds! Ocawesome101 also gained 0.00558 (0.00062 x 9) tonk points for stealing the tonk. Position #5. Need 0.21305 more points to pass simo​n816!
L615[14:28:35] ⇨ Joins: qwert (~qwert@broadband-46-242-9-222.ip.moscow.rt.ru)
L616[14:30:01] <qwert> wd
L617[14:30:19] <Forec​aster> we don't carry that brand I'm afraid
L618[14:30:24] <Ocawes​ome101> %hello
L619[14:30:24] <MichiBot2> Ocawes​​ome101: Hello! Welcome to #oc! The one and only opencomputers channel! Please ask your questions directly (dont ask to ask) and provide error/code examples! (Use pastebin.com if theyre more than one line!) Dont mind the random conversation you might have walked into.
L620[14:30:46] ⇦ Quits: qwert (~qwert@broadband-46-242-9-222.ip.moscow.rt.ru) (Remote host closed the connection)
L621[15:09:13] ⇦ Quits: man_cubus (~konst@2002170185.teremki.kiev.ua) (Quit: Konversation terminated!)
L622[15:21:08] <Michiyo> %chnick MichiBot
L623[15:21:09] *** MichiBot2 is now known as MichiBot
L624[16:26:32] <Inari> Elfi: https://media.discordapp.net/attachments/249763352425922560/692045047373365288/r5muilz25mo41.png birb! ?
L625[16:31:51] ⇨ Joins: qweeqy (~qweeqy@broadband-46-242-9-222.ip.moscow.rt.ru)
L626[16:33:14] ⇦ Quits: qweeqy (~qweeqy@broadband-46-242-9-222.ip.moscow.rt.ru) (Remote host closed the connection)
L627[16:38:48] ⇨ Joins: ben_mkiv (~ben_mkiv@88.130.156.73)
L628[16:39:58] <Forec​aster> %sip
L629[16:39:58] <MichiBot> You drink a shining sky potion (New!). Forec​aster gets a sudden Spice infusion. Forec​aster can see the universe. [Spice Addiction +1]
L630[16:46:47] <Brisingr​ Aerowing> Inari: WTF.
L631[16:52:32] ⇨ Joins: BOPHena (~BOPHena@37.200.89.203)
L632[16:54:05] ⇦ Quits: BOPHena (~BOPHena@37.200.89.203) (Client Quit)
L633[16:59:37] <20​kdc> Inari: nice try, but everybody's got inoculations against memetic amnesia agents these days
L634[17:05:16] ⇨ Joins: Thutmose (~Patrick@host-69-59-79-181.nctv.com)
L635[17:14:48] <Tech​okami> so, it's been a while... what exactly is going on with OpenComputers and getting onto more recent versions of Minecraft? I really hope the mod isn't going to stop with 1.12
L636[17:15:51] <Sagh​etti> define "a while"
L637[17:16:13] <Tech​okami> well I haven't been active in here for like a year :v_:
L638[17:18:11] <Tech​okami> the last official word was back in June, when Lizzian was talking about needing to wait for 1.14
L639[17:18:29] <Forec​aster> payonel is working on it when he has time
L640[17:18:36] <Forec​aster> but he's pretty busy last I heard
L641[17:18:49] <Tech​okami> ahh, I didn't know he was working on it
L642[17:19:25] <Tech​okami> must be a secret, private repo then
L643[17:19:49] <Forec​aster> dunno
L644[17:28:30] <Inari> https://www.youtube.com/watch?v=1a232XZCjWo
L645[17:28:32] <MichiBot> Evangelion Opening 電卓5台で残酷な天使のテーゼを演奏してみた | length: 1m 37s | Likes: 34,630 Dislikes: 331 Views: 1,144,603 | by あたりめ | Published On 5/2/2019
L646[17:30:16] ⇨ Joins: lol (~lol@188.146.230.100.nat.umts.dynamic.t-mobile.pl)
L647[17:31:41] ⇨ Joins: lolpo (~lolpo@188.146.230.100.nat.umts.dynamic.t-mobile.pl)
L648[17:31:48] <lolpo> hello
L649[17:31:59] <lol> dfsfdsdfsef
L650[17:32:15] <Ar​iri> %hello
L651[17:32:15] <MichiBot> Ar​​iri: Hello! Welcome to #oc! The one and only opencomputers channel! Please ask your questions directly (dont ask to ask) and provide error/code examples! (Use pastebin.com if theyre more than one line!) Dont mind the random conversation you might have walked into.
L652[17:32:32] ⇦ Quits: lol (~lol@188.146.230.100.nat.umts.dynamic.t-mobile.pl) (Client Quit)
L653[17:34:00] ⇨ Joins: AndroUser (~androirc@188.146.230.100.nat.umts.dynamic.t-mobile.pl)
L654[17:34:05] <AndroUser> u
L655[17:34:55] <lolpo> lol
L656[17:34:55] <AndroUser> lol
L657[17:35:25] ⇨ Joins: lol (~lol@188.146.230.100.nat.umts.dynamic.t-mobile.pl)
L658[17:35:32] <AndroUser> y
L659[17:36:19] <Sagh​etti> lol
L660[17:36:36] <Inari> lol
L661[17:36:46] <Inari> ~markov lolpo
L662[17:36:46] <ocdoc> Please wait ...
L663[17:36:55] <ocdoc> hello
L664[17:37:06] <Inari> Shame
L665[17:37:11] <Inari> Should've been lol
L666[17:39:48] ⇦ Quits: AndroUser (~androirc@188.146.230.100.nat.umts.dynamic.t-mobile.pl) (Remote host closed the connection)
L667[17:41:00] ⇦ Quits: lol (~lol@188.146.230.100.nat.umts.dynamic.t-mobile.pl) (Quit: lol)
L668[17:41:06] ⇦ Quits: lolpo (~lolpo@188.146.230.100.nat.umts.dynamic.t-mobile.pl) (Remote host closed the connection)
L669[17:43:18] ⇨ Joins: lolpo (~lolpo@188.146.230.100.nat.umts.dynamic.t-mobile.pl)
L670[17:43:28] ⇦ Quits: lolpo (~lolpo@188.146.230.100.nat.umts.dynamic.t-mobile.pl) (Remote host closed the connection)
L671[17:43:46] ⇨ Joins: Blue_595 (~blue_595@47.196.86.203)
L672[17:44:12] ⇦ Quits: Blue_595 (~blue_595@47.196.86.203) (Client Quit)
L673[17:53:12] <Ar​iri> ~markov Inari
L674[17:53:14] <ocdoc> nothing needs to get a nuke so why use some weird negative balance :P but eh,
L675[17:53:28] <Ar​iri> fabulous
L676[17:53:59] <Inari> ~markov Ariri
L677[17:53:59] <ocdoc> E​h, most stuff like blogs and gravitational constant of this pack at least you mean, the shiz
L678[17:54:02] <Kristo​pher38> @AdorableCatgirl do you happen to know the name of the song in this? https://streamable.com/3xvn4
L679[17:54:56] <Ar​iri> Speedy Runner Extended Version - King And Queen
L680[17:55:44] <Ar​iri> Oh you were asking AC, didn’t see that
L681[18:01:13] <Saphire> Meanwhile: Astral Sorcery literally copied the UI border style from Skyrim for the level indicator..
L682[18:15:48] ⇦ Quits: immibis (~immibis@46.114.34.127) (Ping timeout: 378 seconds)
L683[18:18:06] ⇨ Joins: kdcLab01 (~kdclab01@2001:0:53aa:64c:0:204b:a152:851d)
L684[18:27:20] ⇨ Joins: immibis (~immibis@46.114.38.186)
L685[18:29:16] <Kristo​pher38> @Ariri thanks
L686[18:29:38] <Kristo​pher38> I was pinging AC cause I know he listens to lots of eurobeat :P
L687[18:35:53] <Ar​iri> I just used Shazam, lol
L688[18:49:46] ⇦ Quits: kdcLab01 (~kdclab01@2001:0:53aa:64c:0:204b:a152:851d) (Quit: Alas, poor process! We barely knew it.)
L689[19:07:21] <Inari> https://tenor.com/bcpiy.gif
L690[19:35:24] ⇨ Joins: Backslash (~Backslash@d137-186-220-152.abhsia.telus.net)
L691[20:04:29] <Galaxy> MINCERAFTTTT
L692[20:04:35] <Galaxy> woahg is that fox
L693[20:04:48] <Ocawes​ome101> it appears to be
L694[20:04:49] <Galaxy> F O X Y E S
L695[20:05:07] <Galaxy> "Related GIFs" https://media.tenor.com/images/c0ac382184b556e9ad2e365910fc4399/tenor.gif
L696[20:05:33] <Ocawes​ome101> cursed
L697[20:05:43] <Galaxy> ye
L698[20:09:37] ⇦ Quits: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net) (Quit: Galaxy)
L699[20:09:52] ⇨ Joins: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net)
L700[20:49:40] ⇦ Quits: Saphire (saphire@2a01:4f8:141:1272::2) (Quit: WeeChat 2.7)
L701[20:50:50] ⇨ Joins: Saphire (saphire@2a01:4f8:141:1272::2)
L702[20:56:05] <Saphire> Astral Sorcery is FUN
L703[20:56:12] <Galaxy> ok
L704[20:56:59] <Saphire> ...eh?
L705[20:57:43] <Inari> ok
L706[20:57:55] <Forec​aster> Maybe they're a good christian who disapproves of sorcery
L707[20:57:57] <Forec​aster> :P
L708[20:58:23] <Inari> But why. Okay isn't a negative
L709[20:58:33] <20​kdc> ...I like sorcery...
L710[20:59:30] ⇦ Quits: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net) (Quit: Galaxy)
L711[20:59:50] ⇨ Joins: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net)
L712[21:00:26] <Sk​ye> http://tinyurl.com/rd9as7x
L713[21:00:33] * Galaxy tried to make a bad joke
L714[21:00:53] <20​kdc> context http://tinyurl.com/schx6gf
L715[21:01:29] <Galaxy> cool now make ssh and scp
L716[21:01:58] <AmandaC> someone actually made ssh, I believe
L717[21:02:11] <Sk​ye> do you not understand the sifnificance of this
L718[21:02:16] <Sk​ye> do you not understand the significance of this [Edited]
L719[21:02:25] <Galaxy> accidentally ran into a meteor
L720[21:02:37] <Galaxy> time for storage
L721[21:02:38] <Sk​ye> :P
L722[21:02:44] <Sk​ye> okay so basically
L723[21:02:59] <Sk​ye> I used TCP over IPv6 to connect to a server hosted on a minecraft world
L724[21:03:20] <Galaxy> ok
L725[21:03:42] <Sk​ye> you seem unimpressed :P
L726[21:03:51] <Ocawes​ome101> that's...
L727[21:03:52] <Galaxy> i mean its just lua stuff
L728[21:03:55] <Ocawes​ome101> impressive
L729[21:04:30] <Sk​ye> it's a full tcp/ip stack written in lua
L730[21:04:44] <Corded> * <Ocawes​ome101> jaw drops
L731[21:05:06] <Sk​ye> 20kdc made it so I poked it from my IPv6 enabled internet
L732[21:05:50] <Ocawes​ome101> does it require ipv6?
L733[21:06:03] <Sk​ye> yes
L734[21:06:13] <20​kdc> Via Teredo will suffice.
L735[21:06:25] <Ocawes​ome101> viatewhat?
L736[21:06:31] <Sk​ye> also IPv6 addresses are basically free
L737[21:06:37] <Sk​ye> while IPv4 addresses are expensive
L738[21:06:41] <Ocawes​ome101> ah
L739[21:08:25] ⇨ Joins: kdcLab01 (~kdclab01@2001:0:53aa:64c:0:204b:a152:851d)
L740[21:08:26] <Galaxy> Doesn't ipv6 ditch subnets?
L741[21:08:32] <Sk​ye> no?
L742[21:08:38] <Galaxy> huh
L743[21:08:40] <Sk​ye> IPv6 has lots more subnets
L744[21:08:44] <Galaxy> thought it did
L745[21:08:47] <Sk​ye> it got rid of masks
L746[21:08:52] <Saphire> "subnets" are just uhh
L747[21:08:53] <Sk​ye> and replaced with with / notation
L748[21:08:59] <Sk​ye> and replaced them with / notation [Edited]
L749[21:09:03] <Saphire> It's not really a "real" thing
L750[21:09:20] <Saphire> Skye: that's how ipv4 stuff is done either way :P
L751[21:09:37] <Sk​ye> though IIRC @20kdc's implementation uses masks because he's a rebel
L752[21:09:38] <Sk​ye> :P
L753[21:09:38] <Skye> Saphire, true but he breaks the standard xD
L754[21:09:39] <Galaxy> ok im beginning to think im a computard
L755[21:10:09] <kdcLab01> I ended up not using masks because there's no routing capability in the end-node stuff (for now, anyway)
L756[21:10:35] <Galaxy> yep i dont understand this
L757[21:10:41] <Skye> oh
L758[21:10:44] <Galaxy> time for google
L759[21:10:54] <Skye> you're using openirc on your internet card emulator right?
L760[21:11:05] ⇨ Joins: yuken (~yuken@cpe-71-74-152-82.neo.res.rr.com)
L761[21:11:11] <Galaxy> me?
L762[21:11:14] <kdcLab01> Yup
L763[21:11:24] <Skye> there's something so deeply wrong about that
L764[21:11:25] <kdcLab01> Hiya, I'm 20kdc. From space.
L765[21:11:32] <Skye> but also so good
L766[21:11:34] <yuken> Hi! I've got a server rack here, and I'm trying to figure out how to setup a relay for a robot. The relay has a wireless card in it, but a broadcast message isn't lighting the relay up, or any server attached to it.
L767[21:11:54] <Skye> is it a tier 2 wireless card?
L768[21:12:07] <yuken> Tier 1, but it is within range (4 blocks away, strength is 16 on the robot and relay)
L769[21:12:13] * Galaxy attempted to understand how the internet works, and went braindead in the process.
L770[21:12:17] <Skye> IIRC it doesn;t work with tier 1
L771[21:12:23] <yuken> What doesn't? The relay?
L772[21:12:26] <Skye> I think so
L773[21:12:26] <CompanionCube> Galaxy: perhaps you're thinking of NAT
L774[21:12:33] <Skye> tier 1 is very very limited
L775[21:12:33] <CompanionCube> which is mostly obviated in IPv6
L776[21:12:35] <yuken> I think that's wrong, but let me spawn in a t2 card to tesst.
L777[21:12:59] <Skye> CompanionCube, meanwhile kdcLab01 has to use IPv6 NAT because teredo
L778[21:13:00] <yuken> Nope, T2 doesn't change anything.
L779[21:13:17] <yuken> All the server network cards are set to the same side, where the relay is attached via cable.
L780[21:13:23] <Skye> yuken, the robot has a wireless card too?
L781[21:13:28] <Galaxy> does anyone have a networking understand resource i can look at
L782[21:13:30] <yuken> Yes.
L783[21:14:18] <yuken> There are no errors in the code, and it works fine if I run the same code internally on the servers that are on the same rack.
L784[21:14:35] <Saphire> I wonder if people actually use OC IRC stuff
L785[21:15:19] ⇦ Quits: kdcLab01 (~kdclab01@2001:0:53aa:64c:0:204b:a152:851d) (Quit: kdcLab01)
L786[21:16:47] <Forec​aster> what is this oc you speak of
L787[21:17:07] <Skye> yuken, okay I am not sure what is going on
L788[21:17:14] <yuken> Hmm. The relay is powered, too. And, I see the relay when I run components
L789[21:17:16] <Skye> could you setup another computer with a wireless card
L790[21:17:23] <Skye> like not a robot
L791[21:17:24] <Skye> a computer
L792[21:20:22] <yuken> Seems to be working fine with a computer.
L793[21:20:29] <yuken> If I just open a Lua prompt and broadcast.
L794[21:20:30] <Michiyo> yuken, gotta ask the obvious question, cause I have to... you're are accounting for the fact that sides are "reversed"?
L795[21:20:35] <yuken> Yes, Michiyo.
L796[21:20:42] <Michiyo> Just wanted to confirm lol
L797[21:21:20] <yuken> https://imgur.com/Qcjc9B7.png <-- my crappy script that... doesn't appear to be working.
L798[21:21:44] ⇨ Joins: kdcLab01 (~kdclab01@2001:0:53aa:64c:0:204b:a152:851d)
L799[21:21:49] <yuken> Or, well, working on a robot.
L800[21:21:59] <Ocawes​ome101> does it work on a computer?
L801[21:22:21] <yuken> Yes.
L802[21:22:31] <Ocawes​ome101> strange
L803[21:22:45] <Ocawes​ome101> and the robot has a t2 wireless card in it?
L804[21:22:47] <yuken> The robot is just a t2 case, t1 CPU, 2x t1 RAM, wireless card.
L805[21:22:49] <yuken> no, t1.
L806[21:23:03] <yuken> It's within 16 blocks of the relay.
L807[21:23:19] <Ocawes​ome101> try moving it within 4 blocks
L808[21:23:23] <yuken> It is.
L809[21:23:51] <Ocawes​ome101> huh
L810[21:24:19] <yuken> Yeah, that's... my reaction.
L811[21:25:30] ⇦ Quits: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net) (Quit: Galaxy)
L812[21:25:54] ⇨ Joins: Galaxy (~Galaxy@pool-71-127-50-131.washdc.fios.verizon.net)
L813[21:26:02] <yuken> I'm kinda at a loss right now tbh.
L814[21:26:09] <Inari> https://www.youtube.com/watch?v=LOZTuMds3LM interesting
L815[21:26:09] <MichiBot> 50+ Sorts, Visualized - Swirl Dots | length: 28m 44s | Likes: 3,630 Dislikes: 87 Views: 165,989 | by Musicombo | Published On 19/6/2019
L816[21:26:28] <Galaxy> ohh yeahhh
L817[21:26:45] <Galaxy> goo dvideo
L818[21:27:42] <yuken> Maybe I'll just use a linked card...
L819[21:30:29] <MarkN​stein> Yuken, when do you call start() or update..()
L820[21:30:46] <yuken> It's an rc script.
L821[21:30:50] <MarkN​stein> You've defined functions, but not called them
L822[21:32:31] <MarkN​stein> Well I can't help there. My one attempt at a shell-like RC script failed.
L823[21:32:52] <yuken> It works fine on a computer with a wireless card, but not a robot.
L824[21:34:03] <MarkN​stein> Does the robot have the port 100 open on startup?
L825[21:34:26] <yuken> It gets opened in that start script.
L826[21:34:43] <yuken> When I broadcast, the relay doesn't light up at all with the robot - works fine with the computer.
L827[21:36:00] <MarkN​stein> Are you sure the script is actually running on the robot on boot?
L828[21:37:17] <yuken> Yes.
L829[21:37:22] <MarkN​stein> Welp
L830[21:37:33] ⇦ Quits: kdcLab01 (~kdclab01@2001:0:53aa:64c:0:204b:a152:851d) (Ping timeout: 204 seconds)
L831[21:37:34] <yuken> And if I put the same drive from the robot into another machine, works fine.
L832[21:47:58] <Forec​aster> %sip
L833[21:47:58] <MichiBot> You drink a smelly avesmingo potion (New!). Forec​aster's bones turn the color of sapphire for 4 moons.
L834[21:48:05] <Forec​aster> Oh
L835[21:56:15] ⇨ Joins: l (webchat@78-31-226-39.ip.airnet.lt)
L836[21:56:37] <Ocawes​ome101> Proton finally almost has an installer :D
L837[21:57:25] ⇦ Quits: l (webchat@78-31-226-39.ip.airnet.lt) (Client Quit)
L838[22:01:48] <Forec​aster> I didn't quit, I'm right here, what is this trickery D:<
L839[22:03:20] <Michiyo> that was an l not an I
L840[22:03:25] <Michiyo> :P
L841[22:03:44] <Ocawes​ome101> Proton has an installer now :D https://gist.github.com/Ocawesome101/02e0bbba21db0b34ab99da630ccc1237
L842[22:04:25] <Ocawes​ome101> I've also split it up into packages, for use later on in the package manager
L843[22:06:19] <Forec​aster> Well l couldn't tell, so there D:
L844[22:07:01] ⇦ Quits: Cruor (Cruor@satomi.openshell.no) (Ping timeout: 189 seconds)
L845[22:07:33] ⇨ Joins: Cruor (Cruor@satomi.openshell.no)
L846[22:08:48] <Adorabl​eCatgirl> @Ocawesome101 Make a self-extracting installer
L847[22:09:56] <Ocawes​ome101> I might make an offline installer once I get ppm working
L848[22:10:03] <Ocawes​ome101> (The package manager)
L849[22:34:31] <yuken> Alright, I may very well have came across an actual bug with OpenComputers, or I'm just flat-out missing something. Huh.
L850[22:37:15] ⇨ Joins: Vexaton (~Vexatos@port-92-192-104-67.dynamic.as20676.net)
L851[22:37:15] zsh sets mode: +v on Vexaton
L852[22:37:35] ⇦ Quits: Vexaton (~Vexatos@port-92-192-104-67.dynamic.as20676.net) (Client Quit)
L853[22:42:00] ⇦ Quits: Vexatos (~Vexatos@port-92-192-19-65.dynamic.as20676.net) (Ping timeout: 378 seconds)
L854[22:45:17] <20​kdc> yuken: Does it involve server rack routing? Because I can never tell if there are bugs in that or if I'm poking it wrong. It's weird.
L855[22:45:25] <yuken> Yep, it does!
L856[22:45:38] <yuken> Robots can talk to servers via a relay. The servers can not talk back to the robot.
L857[22:46:24] <20​kdc> If the servers can receive yet are unable to send, something's probably fishy, but...
L858[22:46:35] <yuken> The servers can send to normal computers.
L859[22:46:37] <yuken> Just not robots.
L860[22:46:48] <yuken> in, otherwise, the same configuration.
L861[22:47:38] <20​kdc> If wireless cards are involved, that could be, er, fun...
L862[22:47:52] <yuken> Well, it works fine with a computer that has a wireless card - just not a robot.
L863[22:47:58] <yuken> Computers can send to servers and vice-versa, robots can not.
L864[22:49:18] <The_St​argazer> ~w transposer
L865[22:49:18] <ocdoc> http://ocd.cil.li/component:transposer
L866[22:49:47] ⇦ Quits: Inari (~Pinkishu@pD9E8EE66.dip0.t-ipconnect.de) (Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/)
L867[22:51:12] <Ar​iri> ~w robot
L868[22:51:12] <ocdoc> http://ocd.cil.li/api:robot
<<Prev Next>> Scroll to Top