<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:17:49] <ba7888b72413a16a> @Z0idburg I might just go for an actual stack machine, with no normal registers at all
L2[00:18:20] <ba7888b72413a16a> I was looking at webassembly encoding and I forgot that it was a pure stack machine, even with arguments to builtin instructions
L3[00:18:44] <ba7888b72413a16a> it would be awesome to be able to convert webassembly directly to bytecode for this machine
L4[00:20:18] <ba7888b72413a16a> of course, the machine definitely won't be taking raw WASM... implementing C control flow in hardware sounds pretty dumb
L5[00:32:38] <Izaya> what does this C control flow business mean
L6[00:32:48] <Izaya> does it make writing a FORTH annoying
L7[00:37:17] ⇦ Quits: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com) (Quit: Leaving.)
L8[01:45:39] ⇦ Quits: Xal (Xal!~Xal@S010664777dabacc3.vw.shawcable.net) (Ping timeout: 198 seconds)
L9[01:45:50] ⇨ Joins: Xal (Xal!~Xal@S010664777dabacc3.vw.shawcable.net)
L10[01:51:30] <Forecaster> %tonkout
L11[01:51:31] <MichiBot> Jiminy Cricket! Forecaster! You beat Kodos's previous record of 2 hours, 15 minutes and 58 seconds (By 4 hours, 20 minutes and 30 seconds)! I hope you're happy!
L12[01:51:32] <MichiBot> Forecaster has stolen the tonkout! Tonk has been reset! They gained 0.006 tonk points! plus 0.005 bonus points for consecutive hours! (Reduced to 50% because stealing) Current score: 0.4183
L13[01:56:30] <KingOnoi> o/
L14[02:00:50] <KingOnoi> is anyone here?
L15[02:00:58] <KingOnoi> that knows lua
L16[02:01:07] <KingOnoi> (coz I dont)
L17[02:01:13] <KingOnoi> ;_;
L18[02:04:48] <xemiru> am ok at lua hello
L19[02:05:39] <KingOnoi> hello
L20[02:05:54] <KingOnoi> Im currently trying to use the debug card
L21[02:06:03] <xemiru> .. for what
L22[02:06:04] <Natsumi>
L23[02:06:19] <xemiru> oh thats apparently a bot command/prefix
L24[02:06:20] <KingOnoi> changing gametypes and getting player lists
L25[02:06:55] <KingOnoi> so not a lua?
L26[02:07:05] <xemiru> odd to do that through the debug card but sure
L27[02:07:33] <xemiru> whats wrong with it
L28[02:07:39] <KingOnoi> redstone and command blocks are too cumbersom
L29[02:07:43] <KingOnoi> this one is nice and compact
L30[02:07:46] <xemiru> ¯\_(ツ)_/¯
L31[02:08:16] <KingOnoi> rather than whats wrong with it its more of I have no idea what im doing ;_;
L32[02:09:14] <xemiru> is that cuz of just not knowing lua in general or do you not know how to use the libraries
L33[02:09:21] <KingOnoi> both
L34[02:09:43] <KingOnoi> I am not a coder at all, im more creativity driven than logic
L35[02:10:40] <KingOnoi> this is as far as my success goes http://tinyurl.com/y2qa8o83
L36[02:10:56] <KingOnoi> trying to call any of its functions just leaves me with errors
L37[02:11:02] <KingOnoi> for example
L38[02:11:47] <xemiru> half-sure component.name just gives you the address to that component
L39[02:11:49] <KingOnoi> http://tinyurl.com/y5he7h4h
L40[02:12:24] <xemiru> its either that or its a shortcut to getprimary
L41[02:12:26] <KingOnoi> that stuff works fine when im using the creative player interface from randomthings to edit inventories
L42[02:13:06] <xemiru> also you did just spell `getGameType` wrong
L43[02:13:14] <xemiru> and `:string` in the doc is just what the function returns
L44[02:14:05] <KingOnoi> oh so i did
L45[02:14:23] <xemiru> you also tried to invoke `getGameType` on something other than a player object
L46[02:14:23] <KingOnoi> as far as my experience with open computers this is what I use it for
L47[02:14:26] <KingOnoi> http://tinyurl.com/y2axd9fw
L48[02:14:50] <xemiru> ive no idea what cpi is but im assuming its an addon
L49[02:14:53] <KingOnoi> trying the same methods with the dbug card has been, unsuccessful
L50[02:14:57] <KingOnoi> ye
L51[02:15:38] <xemiru> all of the debug card's methods are at the top of https://ocdoc.cil.li/component:debug
L52[02:15:51] <KingOnoi> yes, i have that page open
L53[02:15:53] <xemiru> getGameType is something associated with a player object, which you havent tried to grab yet
L54[02:15:58] <xemiru> check debug's `getPlayer` for that
L55[02:16:03] <KingOnoi> because I dont know how to grab it ;_;
L56[02:16:21] <KingOnoi> i tried that before
L57[02:16:29] <xemiru> you were aiming for something like debug.getPlayer("KingOnoi"):getGameType()
L58[02:16:36] <KingOnoi> and getPlayers to see if I could get a table of currently online players, didnt work
L59[02:17:18] <KingOnoi> oh
L60[02:17:31] <KingOnoi> now I get what i needed to do
L61[02:17:54] <xemiru> you should mess with figuring out core lua a bit more if youre doing anything complex
L62[02:18:14] <xemiru> the `:` in that line is special
L63[02:18:45] <KingOnoi> what would I change for setting a gametype
L64[02:19:06] <xemiru> would just become :setGameType(gametype)
L65[02:19:07] <xemiru> which is in that doc page
L66[02:19:09] <KingOnoi> since its another string but looking through I cant see a call for gametype data
L67[02:19:33] <xemiru> setGameType specifically denotes "survival", "creative" and "adventure" in its doc
L68[02:19:52] <xemiru> could also print out what you get from getGameType() to see the same strings
L69[02:20:55] <KingOnoi> you mean this? http://tinyurl.com/yxe8f84x
L70[02:22:20] <xemiru> debug.getPlayer("KingOnoi").setGameType("survival")
L71[02:22:51] <xemiru> im ingame now so i can actually test it; just use `.`s for calling stuff on players
L72[02:23:25] <KingOnoi> i put that in and it didnt return an error but im still in survival mode
L73[02:23:44] <xemiru> i mean
L74[02:23:53] <xemiru> it sounds like youre telling me you were already in survival mode before calling it
L75[02:24:12] <KingOnoi> im in survivla I want to go into creative
L76[02:24:25] <xemiru> so you'd pass "creative" instead
L77[02:24:58] <KingOnoi> http://tinyurl.com/yxmbnbgu
L78[02:26:10] <KingOnoi> still in survival after putting this in I meant
L79[02:26:41] <xemiru> im getting the same result and have no idea what thats about actually
L80[02:26:57] <xemiru> as in passing creative just sets me to survival
L81[02:27:13] <xemiru> though this is kinda why i said it was weird earlier
L82[02:28:20] <xemiru> debug's doc mentions it isnt for standard play so using it this way isnt reliable
L83[02:29:00] <KingOnoi> hmm
L84[02:29:04] <KingOnoi> clear inventory works
L85[02:29:16] <KingOnoi> so yeah, this is odd
L86[02:30:32] <KingOnoi> adding experience works
L87[02:30:38] <KingOnoi> so I wonder why jsut creative doesnt
L88[02:30:49] <xemiru> the source code for this compares against an enum declaration
L89[02:30:59] <xemiru> and otherwise defaults to survival
L90[02:31:15] <xemiru> the enum for gametypes are declared in allcaps and sure enough giving it `CREATIVE` instead of `creative` makes it work
L91[02:31:30] <Kodos> %tonk
L92[02:31:30] <MichiBot> Dad-Sizzle! Kodos! You beat Forecaster's previous record of <0 (By 39 minutes and 59 seconds)! I hope you're happy!
L93[02:31:31] <MichiBot> Kodos's new record is 39 minutes and 59 seconds! Kodos also gained 0.00067 tonk points for stealing the tonk.
L94[02:32:28] <KingOnoi> yeah got it to work aswell
L95[02:33:14] <KingOnoi> Its a bit funny that the requirement is differnt from the returned value
L96[02:34:45] <xemiru> yeah the code for getGameType returns a different value than what setType compares to
L97[02:35:18] <xemiru> ohwell
L98[02:35:54] <KingOnoi> nice this was extremley useful, thanks a bunch
L99[02:36:09] <KingOnoi> now to save this in a text document
L100[02:58:51] <Forecaster> %sip random
L101[02:58:51] <Forecaster> ohmy
L102[02:58:51] <MichiBot> You drink a stirring orange potion (New!). Forecaster's skin turn the color of transparent.
L103[02:59:00] <xemiru> what do you do with invisibility
L104[02:59:12] <xemiru> ~~that counts as invisibility, right~~
L105[02:59:17] <KingOnoi> nope
L106[02:59:21] <KingOnoi> his skin is transparent
L107[02:59:26] <xemiru> wait
L108[02:59:26] <KingOnoi> so we can see hsi muscles and organs
L109[03:00:03] <xemiru> i see the gotcha
L110[03:00:03] <xemiru> hot
L111[03:24:20] <Skye> %drink random
L112[03:24:21] <MichiBot> You drink a shiny quicksilver potion (New!). Skye gains an extra strand of hair on their face.
L113[05:12:54] ⇨ Joins: Rahix (Rahix!~Rahix@p5B122E99.dip0.t-ipconnect.de)
L114[05:32:44] ⇨ Joins: freacknate (freacknate!~freacknat@97-92-106-22.static.reno.nv.charter.com)
L115[05:35:12] ⇦ Quits: freacknate09 (freacknate09!~freacknat@97-92-106-22.static.reno.nv.charter.com) (Ping timeout: 189 seconds)
L116[06:01:19] <Lizzy> hmm, to set up mastodon/pleroma at home on one of my Pis/home server or spin up a VM for it on my server
L117[06:14:46] ⇨ Joins: NovaLynxie (NovaLynxie!~Thunderbi@cpc116832-kemp8-2-0-cust1955.9-2.cable.virginm.net)
L118[06:14:47] ⇦ Quits: Rahix (Rahix!~Rahix@p5B122E99.dip0.t-ipconnect.de) (Remote host closed the connection)
L119[06:18:12] <Z0idburg> %drink everything
L120[06:18:13] <MichiBot> This doesn't seem to be a potion I recognize...
L121[06:21:31] <Z0idburg> ba, a stack machine is what I am working on, but you will still need registers.
L122[06:29:40] <Z0idburg> For example, there are two registers inside of the accumulator for doing math. if I want to load some data at a memory location, heres how it works:
L123[06:29:41] <Z0idburg> The cpu clock i s a quare wave and is split and delayed 90 degrees out of phase into a secondary clock that is a pulser instead of a square output, like so:
L124[06:29:41] <Z0idburg> Code Block pastebined https://paste.pc-logix.com/eludihapix
L125[06:29:47] <Z0idburg> crap wtf
L126[06:30:20] <Z0idburg> For example, there are two registers inside of the accumulator for doing math. if I want to load some data at a memory location, heres how it works:
L127[06:30:20] <Z0idburg> The cpu clock i s a quare wave and is split and delayed 90 degrees out of phase into a secondary clock that is a pulser instead of a square output, like so:
L128[06:30:21] <Z0idburg> Code Block pastebined https://paste.pc-logix.com/ucuyigoxic [Edited]
L129[06:30:27] <Z0idburg> close enough
L130[06:39:16] <Z0idburg> crap I have to head off
L131[06:48:01] ⇨ Joins: Inari (Inari!~Pinkishu@pD9E8E4F7.dip0.t-ipconnect.de)
L132[07:02:18] ⇦ Quits: NovaLynxie (NovaLynxie!~Thunderbi@cpc116832-kemp8-2-0-cust1955.9-2.cable.virginm.net) (Quit: NovaLynxie)
L133[07:02:28] ⇨ Joins: NovaLynxie (NovaLynxie!~Thunderbi@cpc116832-kemp8-2-0-cust1955.9-2.cable.virginm.net)
L134[07:02:48] ⇦ Quits: NovaLynxie (NovaLynxie!~Thunderbi@cpc116832-kemp8-2-0-cust1955.9-2.cable.virginm.net) (Client Quit)
L135[07:03:04] ⇨ Joins: NovaLynxie (NovaLynxie!~Thunderbi@cpc116832-kemp8-2-0-cust1955.9-2.cable.virginm.net)
L136[07:03:44] ⇦ Quits: NovaLynxie (NovaLynxie!~Thunderbi@cpc116832-kemp8-2-0-cust1955.9-2.cable.virginm.net) (Read error: Connection reset by peer)
L137[07:09:34] <Forecaster> %sip random
L138[07:09:34] <MichiBot> You drink a goopy transparent potion (New!). A tiny genie appears, gives you a thumbs up and poofs away.
L139[07:11:37] <Z0idburg> back
L140[07:12:20] <Skye> %drink random
L141[07:12:20] <MichiBot> You drink a bubbly rainbow potion (New!). Skye shrinks by a negligible amount.
L142[07:13:00] <Izaya> raised your metabolism momentarily
L143[07:14:36] <Z0idburg> anyways ba, the falling edge of cp1 causes the address bus to open up on the top of the stack it also opens up the ALU inout A to the data bus, so the value of memory is input into the data bus, the cp2 pulse after latches it. On the rising edge of the 3rd Cp1 pulsethe ALU is put into A passthrough mode into the data bus (no operation is made) and the stack controller is told to make a push operation. cp2 latches that operation and tells the cp
L144[07:14:36] <Z0idburg> the instruction is complete
L145[07:15:06] <Z0idburg> so loading memory takes about 3 cycles which is a while. some can be done in 2 or less
L146[07:15:29] <Z0idburg> I've been slowly trying to condense it down to 1 and 2
L147[07:17:51] <Z0idburg> cp1 is actually fed into a double edge triggered counter which is fed directly into the decoder. This allows you to have multiple paths for each stage of the clock cycle. Even fetching a new instruction is decoded. It's the special instruction where all bits are a 1.
L148[07:18:32] <Z0idburg> and that only takes half a cycle
L149[07:22:32] <Z0idburg> I'm even thinking of making a realtime clock that self calibrates for this computer. It uses a light sensor with a clock counter to count how many ticks it takes for the light sensor to torn on, off and back again (takes 30 minutes for a full day cycle right? I forget) and then it shifts to the right to divide by two. that is watched by another counter that can be set to fire an interrupt request to the counter setting you set it two.
L150[07:24:15] <Temia> %quaff goopy pink potion
L151[07:24:16] <MichiBot> A voice whispers into your ear "Drink or be drunk" as it fades away as you drink the potion.
L152[07:25:59] <Z0idburg> ?
L153[07:26:35] <Z0idburg> ba7888b72413a16a That was all in response to you
L154[07:26:47] <Z0idburg> but I can't ever remember your nickname to type it out
L155[07:27:04] <Izaya> just ta- oh wait
L156[07:27:06] <Izaya> :^)
L157[07:27:14] <Z0idburg> wha
L158[07:27:50] <Z0idburg> if it was shorter it could have been his mac address
L159[07:28:09] * Izaya applies NASA foil to S3
L160[07:28:29] <Z0idburg> lol
L161[07:28:34] <Z0idburg> space program?
L162[07:28:54] <Izaya> waterproofing actually
L163[07:29:15] <Izaya> at work I've been sticking aluminium foil to the tops of rusty shipping containers to waterproof them
L164[07:29:16] <Forecaster> waterproofing is the same as spaceproofing right
L165[07:29:21] <Z0idburg> lol
L166[07:29:31] <Izaya> it sounds bizarre but it works wonderfully
L167[07:30:31] <Forecaster> hrm
L168[07:30:37] <Forecaster> seems something broke...
L169[07:30:50] <Forecaster> anytime I try to start something that uses the gpu it all crashes
L170[07:31:22] <Forecaster> guess I gotta reboot
L171[07:46:35] <Z0idburg> Izaya: Inductors are one of the most annoying things to calculate
L172[07:46:46] <Z0idburg> because they almost never label them
L173[07:47:14] <Z0idburg> Forecaster: Likely a DMA bug
L174[07:51:04] <Lizzy> could also be driver related
L175[07:55:43] <Forecaster> reboot fixed it it seems
L176[07:56:11] <Z0idburg> well since the driver controls DMA ?
L177[07:56:28] <Z0idburg> whatever happened something fell in the wrong state
L178[08:02:49] ⇨ Joins: baschdel (baschdel!~baschdel@2a01:5c0:e089:6d31:621d:ec6f:473d:5c54)
L179[08:04:03] <baschdel> %tonk
L180[08:04:04] <MichiBot> Goshhawk! baschdel! You beat Kodos's previous record of 39 minutes and 59 seconds (By 4 hours, 52 minutes and 33 seconds)! I hope you're happy!
L181[08:04:05] <MichiBot> baschdel's new record is 5 hours, 32 minutes and 33 seconds! baschdel also gained 0.00488 tonk points for stealing the tonk.
L182[08:14:42] <Z0idburg> this is driving me nuts
L183[08:16:36] <Lizzy> %tell Temia I may be setting up a pleroma instance soon(tm)
L184[08:16:37] <MichiBot> Lizzy: Temia will be notified of this message when next seen.
L185[08:18:55] <Temia> Huh what
L186[08:19:01] <Temia> Oh, spiff
L187[08:25:35] ⇨ Joins: Vexatos (Vexatos!~Vexatos@port-92-193-0-202.dynamic.qsc.de)
L188[08:25:35] zsh sets mode: +v on Vexatos
L189[08:33:00] <Inari> %drink random
L190[08:33:01] <MichiBot> You drink a salty strawberry potion (New!). Inari shrinks by a negligible amount.
L191[08:33:12] <Inari> Ew salt
L192[08:34:34] <Forecaster> I think I know why things are failing
L193[08:34:52] <Inari> Whats failing?
L194[08:34:54] <Forecaster> Seems my system drive is out of space
L195[08:34:59] <Inari> Heh
L196[08:43:09] ⇨ Joins: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi)
L197[08:43:31] ⇨ Joins: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com)
L198[08:45:27] <Forecaster> gradle cache was 3 Gb for some reason
L199[08:46:39] <Temia> %quaff salty pink potion
L200[08:46:40] <MichiBot> The ghost of a plant haunts you for a while.
L201[08:47:37] <Forecaster> %sip random
L202[08:47:38] <MichiBot> You drink a dull white potion (New!). You see the sky briefly flash solid dark blue then go back to normal.
L203[08:52:07] <Z0idburg> gradle cache ishuge
L204[08:52:07] ⇦ Quits: ba7888b72413a16a (ba7888b72413a16a!~ba7888b72@66.109.211.150) (Read error: Connection reset by peer)
L205[08:52:36] <Temia> Ugh, I've been looking up e-ink displays, RFID receivers and SPI-equipped low-power microcontrollers for a puzzle my uncle mentioned to me about a store adopting electronic price tags
L206[08:53:01] ⇨ Joins: ba7888b72413a16a (ba7888b72413a16a!~ba7888b72@66.109.211.150)
L207[08:53:15] <Forecaster> many stores here use e-ink price tags
L208[08:53:29] <Forecaster> the bigger chains at least
L209[08:54:14] <Temia> Yeah, I figure they're far from the only ones who've pursued the idea
L210[08:54:24] <Temia> And it's very obvious there are a number of e-ink displays purpose-built for the task
L211[08:54:37] <Temia> Three-colour ones built in narrow strips and such
L212[08:54:51] <Temia> I'm just trying to get an idea of the BOM for them out of curiosity
L213[08:55:03] <Forecaster> I've only seen mono color ones
L214[08:55:04] <Temia> Not to mention security considerations.
L215[08:55:23] <Temia> Hmm. Cheaper but I imagine a lot of stores want something that'd pop more anyhow
L216[08:55:59] <Forecaster> doesn't seem to be a concern here
L217[08:56:18] <stephan48> f.e. lancom made such a system ages ago based on a low power wifi solution and eink displays
L218[08:56:31] <Z0idburg> what is an e -ink price tag
L219[08:56:34] <Lizzy> hmm, nice bit of rain here today...
L220[08:56:36] <Forecaster> when there's discounts and stuff they put a real sign on them
L221[08:56:49] <Z0idburg> you mean those little epaper screens?
L222[08:56:55] <stephan48> about 8mm thick and sized like a creditcard - could be placed on meeting rooms and product displays and be updated remotely
L223[08:57:21] <Z0idburg> that's not a bad way to do it but it is a bit over the top in expensive and tbh is probably more wasteful than paper if the paper industry is done correctly
L224[08:57:21] <stephan48> sadly a bit too pricy to play around with - only had two of them and a router in my first job :D
L225[08:57:58] <Z0idburg> the problem with epaper is that being able to use them without power comes with a massive drawback of the fact that screen burn is a very real problem with them
L226[08:58:32] <Z0idburg> so you need to swap them out regularly to give them exercize
L227[08:58:48] <Z0idburg> otherwise they will almost permanently contain that price tag
L228[08:59:43] <Z0idburg> I think if you need to go high tech it would be better to have an aisle of things then an inventory manager / viewer in the center of the aisle or something to look at pricing information
L229[09:00:09] <Forecaster> have a button on them you have to touch to make them show the price :P
L230[09:00:20] <Z0idburg> that requires power
L231[09:00:34] <Z0idburg> not much, but then you have to maintain batteries or something to power them
L232[09:00:50] <Z0idburg> and if battery operated it will eventually drain
L233[09:01:03] <Forecaster> I didn't say it was practical :P
L234[09:01:07] <Z0idburg> lol
L235[09:01:15] <Z0idburg> though you could run DC wiring to each through the shelves
L236[09:01:27] <Z0idburg> it'd be more work to maintain of course
L237[09:02:53] <Z0idburg> I think if I had a store, then I'd just have a whiteboard at every aisle with prices that can be rewritten. As long as the variety of things you sell is low it's not a problem
L238[09:03:44] <Forecaster> just put bar codes on the shelves that you can scan with an app that brings up the price
L239[09:04:05] <Z0idburg> that assumes that you have a phone or a camera
L240[09:04:07] <Forecaster> provide low-speed-per-device wifi in the store
L241[09:04:30] <Z0idburg> I have thought of that though
L242[09:04:46] <Z0idburg> a QR code would be perfect if that wasn't a problem
L243[09:04:56] <Forecaster> for people who don't have a smartphone lend out a simple device that does the same thing
L244[09:05:18] <Z0idburg> there is that. OR
L245[09:05:22] <Z0idburg> what about this
L246[09:05:41] <Forecaster> stores that have self-checkout scanners kind of do that already :P
L247[09:05:42] <Z0idburg> put a scanner that sits there in the aisle and you put the code on every product (if all of them are large enough) and you scan it yourself to check the price
L248[09:05:44] <Z0idburg> I have actually seen that
L249[09:05:54] <Z0idburg> So I don't like self checkout
L250[09:05:59] <Forecaster> I do
L251[09:06:15] <Forecaster> it's convenient
L252[09:06:27] <Z0idburg> Well there's a couple of things
L253[09:07:36] <Z0idburg> Sometimes it breaks and you have to wait for somebody to come over and fix it or if you buy alchohol of course as well, but that's not as big of a problem as the fact that because of self checkout there's usually 1 out of 20 checkouts that are manned. the rest are empty
L254[09:07:39] <Z0idburg> and that's a real problem
L255[09:08:22] <Z0idburg> most of the time I find it easier to bring my groceries to a person so I typically avoid the self checkout. I want to be in front of a person who is responsible for doing it.
L256[09:08:46] <Forecaster> don't know what you mean "it breaks", I never buy alcohol, I don't care, self-checkout is faster so I use it when available
L257[09:08:54] <Z0idburg> it also givres me a chance to talk to somebody
L258[09:09:15] <Z0idburg> see howthey're doing, ask questions etc
L259[09:09:32] <Forecaster> I don't go to a store to talk to people
L260[09:09:52] <Z0idburg> When you have a lot of items and a trainned cashier they can checkout way faster than you ever could.
L261[09:10:09] <Z0idburg> if the aisle is empty of course
L262[09:10:16] <Forecaster> with self-checkout you scan the items as you pick them up
L263[09:10:18] <Forecaster> not at checkout
L264[09:11:25] <Z0idburg> we don't have those
L265[09:11:33] <Temia> Hmm, I hadn't thought about burn-in retention.
L266[09:11:35] <Z0idburg> we have the self checkout registers at the doors
L267[09:11:36] <Forecaster> then I understand why you think it's stupid
L268[09:11:41] <Temia> Is epaper really that bad about it?
L269[09:11:55] <Z0idburg> so you have to do the same thing the cashier does here.
L270[09:12:12] <Forecaster> here every self-checkout system is "pick up scanner at entrance, shop and scan items as you go, dock scanner and pay at exit"
L271[09:12:22] <Z0idburg> huh
L272[09:12:32] <Z0idburg> I still would rather speak to somebody in person at the end
L273[09:12:39] <Z0idburg> but I see what you mean
L274[09:12:54] <Z0idburg> also
L275[09:13:08] <Z0idburg> in your situation, what happens if you double scan something by accident or something?
L276[09:13:18] <Forecaster> sometimes you get flagged for a control, then you wait until the employee that oversees the self-checkout exit comes over and scans 1-4 items to make sure you scanned everything
L277[09:13:18] <Temia> It probably has the capacity to void orders.
L278[09:13:34] <Z0idburg> because in the self checkouts here you have to call dsomebody have them log in with a password and delete your item
L279[09:13:39] <Forecaster> then you pay for one item twice I guess
L280[09:14:05] <Forecaster> oh, if you notice, you can just tell the scanner you want to remove an item, then you scan it again
L281[09:14:08] <Z0idburg> if the scanners are fast enough with these ones are sometimes itl scan twice in one sweep
L282[09:14:20] <Z0idburg> so they let you remove items?
L283[09:14:23] <Forecaster> I've never done that by accident
L284[09:14:24] <Forecaster> yes
L285[09:14:29] <Z0idburg> yeah they don't do that here
L286[09:14:33] <Z0idburg> you have to be authorized
L287[09:15:09] <Forecaster> you can scan something to check the price, then remove it again
L288[09:15:22] <LeJoker> I came here to ask an OC related question, but while the topic is on: Amazon is trying out a new store in the US in some cities where you go in, you scan a QR code from an app to walk into the store, then you just shop like normal. Take things off the shelf, don't scan them or anything, don't need to put in a special basket or bag or anything... and then you just... walk out. And it charges you for it.
L289[09:15:23] <Forecaster> the scanners also show discounts and stuff
L290[09:16:00] <Forecaster> @LeJoker I saw something like that like a year ago
L291[09:16:22] <LeJoker> It's being tested in my city so I tried it out. It was pretty limited selection, but it worked very well
L292[09:16:43] <Z0idburg> one thing that stinks is that often one person will be standing in the area full of self checkout registers in the bigger towns to prevent stealing but there's only one person manning a manned register, so I literally have to find a manager and be like, "Tell your f******* company to hire more people I didn't take 6 years of college to bag my own damn groceries"
L293[09:17:09] <Z0idburg> I didn't actially say that... but I certainly think it sometimes lol
L294[09:17:14] <Forecaster> there are no grocery baggers here
L295[09:17:20] <Forecaster> at all
L296[09:17:35] <Z0idburg> the other thing that's retarded is these people with theese reusable grocery bags
L297[09:17:47] <Forecaster> I use a reusable bag
L298[09:17:51] <LeJoker> Same
L299[09:17:54] <Temia> Ayup.
L300[09:17:56] <Forecaster> or just carry the stuff
L301[09:18:05] <Z0idburg> the only thing I find them great for is the fact that they are quite sturdy
L302[09:18:10] <Z0idburg> they can carry a load without breaking,
L303[09:18:23] <Z0idburg> but they try to sell them saying it "saves the environment"
L304[09:18:37] <Temia> For especially heavy stuff, I bring my backpack along though. =3=
L305[09:19:01] <Z0idburg> when the ammount of pollution generated from making one reusable average bag takes over 1000 uses (it will break before then mind you) before it matches one plastic bag.
L306[09:20:07] <Forecaster> the main issue is the vast amounts of plastics that are discarded, particularly the stuff that ends up in the ocean
L307[09:20:54] * Lizzy hmms, wonders if she could chain her PoE-powered PoE Switch into another one
L308[09:21:03] <Z0idburg> Honestly I think they should fix their paper industries and go back to paper bags. I understand in some countries that's not possible anymore though. they key is to buy large segments of land and recut small portions over and over throughout the years, its why here we never ran out of any forest. The woods here aren't any smaller than they were hundreds of years ago.
L309[09:21:12] <Z0idburg> and our state is heavily reliant on wood.
L310[09:21:31] <Forecaster> don't think paper bags are any better
L311[09:21:54] <Z0idburg> I reuse my paper bags too if they're in good condition for other things
L312[09:22:05] <Z0idburg> not grocery related
L313[09:22:26] <Forecaster> I like my single reusable bag that I've had for many years now
L314[09:22:39] <Z0idburg> you're lucky
L315[09:22:47] <Z0idburg> because the maority of them don't last forever
L316[09:22:52] <LeJoker> *anyway* I wonder if anyone else has had this issue with OC and Project Red. I've set up the pretty standard Project Red warehouse, with request pipes one one end and the interface pipes on the other. It works great, however, it doesn't detect OC cables. They just... don't get picked up somehow.
L317[09:23:04] <Z0idburg> But like I said the only thing I liked them for was their durability
L318[09:23:23] <Z0idburg> Lizzy: Does it support PoE passthrough?
L319[09:23:38] <Forecaster> @LeJoker what do you mean?
L320[09:23:44] <Forecaster> what doesn't detect oc cables
L321[09:23:59] <Forecaster> are you talking about a provider system?
L322[09:24:01] <LeJoker> The Project Red logic chips
L323[09:24:08] <Z0idburg> you need voltage and current. The rest is limited to a maximum of your PoE output
L324[09:24:24] <Z0idburg> Also I have a feeling if it is active PoE it won't work
L325[09:24:25] <LeJoker> I realize it's probably not a bug with OC, but I'm just curious if anyone's seen this. It's *only* these cables.
L326[09:24:39] <Forecaster> it may be nbt data
L327[09:24:40] <Z0idburg> Worth a try
L328[09:24:55] <LeJoker> Every other block (including all other OC blocks) get detected correctly
L329[09:24:57] <Lizzy> yeah, it can pass the PoE through, but only if it's getting the "PoE+" input, idk if it passes through PoE+ stuff or just PoE
L330[09:25:02] <Z0idburg> Temia, that is a brilliant way to do it
L331[09:25:13] <Lizzy> trying to find it in my amazon order history right now
L332[09:25:35] <Z0idburg> a backpack that is
L333[09:26:00] <Lizzy> wow how long ago did i order this switch...
L334[09:26:07] <Lizzy> aha, found it
L335[09:26:36] <Temia> Hm?
L336[09:26:36] <Lizzy> https://www.amazon.co.uk/gp/product/B00J8NAWZ8/ref=ppx_yo_dt_b_asin_title_o03_s01?ie=UTF8&psc=1
L337[09:26:40] <Temia> What, the backpack?
L338[09:27:03] <Z0idburg> hmm. I've never had Poe+
L339[09:27:07] <Temia> I mean it seems only fair. Much less strain on my joints by distributing the load.
L340[09:27:09] <Z0idburg> but it looks like it's just more power really
L341[09:27:12] <Z0idburg> twice as much
L342[09:27:25] <Lizzy> i think it's at 52v compared to normal 48v
L343[09:27:26] <Z0idburg> Considering electrronics will only use as much current as they can take it should be finre
L344[09:27:29] <Temia> Which is kind of necessary for me since I have a connective tissue disorder .-.
L345[09:27:47] <Z0idburg> oh wow
L346[09:27:55] <Lizzy> the official spec names is 802.3af & 802.3at
L347[09:28:00] * Lizzy hugs Temia
L348[09:28:04] <Z0idburg> that's a neat little switch
L349[09:28:09] <Inari> Temia: Connective tissue disorder?
L350[09:28:47] <Z0idburg> I am using two of these, one on every floow
L351[09:28:51] <Z0idburg> https://www.neobits.com/mikrotik_rb951g_2hnd_routerboard_951g_2hnd_with_p5553238.html
L352[09:28:53] <Z0idburg> floor*
L353[09:29:11] <Z0idburg> they make really nice routers, one is an AP, its 2.4Ghz though. they have a new one that is 5Ghz
L354[09:29:17] <Z0idburg> it supports PoE input
L355[09:29:25] <Temia> Yeah.
L356[09:29:26] <Lizzy> oh nice, a site i need to enable javascript on to even see basic data
L357[09:29:41] <Z0idburg> let me find it on amazon
L358[09:29:45] <Inari> Temia: This isn't an audio conversation :D
L359[09:29:50] <Temia> I have a genetic disorder that messes with the development of my collagen, so my joints are loose.
L360[09:29:53] <Lizzy> it's fine, i enabled enough to see the image of it
L361[09:29:57] <Temia> And I run the risk of heart problems.
L362[09:30:03] <Inari> D: scary
L363[09:30:09] <LeJoker> +1 for Mikrotiks. Solid devices.
L364[09:30:11] <Temia> At least I didn't get the variety with the super-stretchy skin
L365[09:30:28] <Inari> We need genetic engineering alread y:p
L366[09:31:18] <Z0idburg> I didn't know that Temia, I just found out that a friend of mine, which is almost 30 himself just dicovered he has muscular distrophuy
L367[09:31:26] <Z0idburg> so I dunno how that's going to go
L368[09:31:30] <Temia> oof.
L369[09:31:31] <Temia> I'm sorry
L370[09:31:57] <Temia> Also Inari, genetic engineering wouldn't do much for the existing collagen.
L371[09:32:01] <Lizzy> I mean, If i wanted lots of PoE/802.3af power, i would just plug in and use the HP 2520-24G switch i have but that's noisy (unless i disconnect the fans) and slightly bulky for just powering a few pi's
L372[09:32:07] <Temia> Can I just be a cyborg catgirl already?
L373[09:32:10] <Z0idburg> Yeah supposedly they don't know what kind it is but apparently if he's just getting it now it's not so deadly atm
L374[09:32:16] <Lizzy> Temia, mee too
L375[09:32:20] <Temia> Or a modular cyborg monstergirl.
L376[09:32:35] * AmandaC digitises Temia, installs her in a robot cat
L377[09:32:40] <Temia> Just... stick my brain in a case and queue up the GitS soundtrack
L378[09:33:28] <Inari> Temia: It could
L379[09:33:38] <Z0idburg> Either way
L380[09:33:46] <Inari> Temia: Not sure how being a cyborg relates
L381[09:33:50] <Z0idburg> Temia, if you eat well and exercise at least some of the time I bet you'll be just fine ?
L382[09:33:52] <Temia> It replaces the faulty parts.
L383[09:34:01] <Inari> Thats isn't what being a cyborg is about
L384[09:34:06] <Temia> Z0idburg, I'm actually advised NOT to exercise too strenuously.
L385[09:34:15] <Z0idburg> that makes sense
L386[09:34:15] <Temia> That'll lead to permanent damage.
L387[09:34:24] <Z0idburg> hmm
L388[09:34:27] <Z0idburg> what about swimming?
L389[09:34:38] <Lizzy> My Scottish/kitty sister has some form of condition that makes her joins get loose
L390[09:34:40] <Temia> Uncertain, haven't swam in close to a decade.
L391[09:34:54] <Temia> Dysphoria and all.
L392[09:35:12] <Lizzy> dysphoria is something i know all to well....
L393[09:35:17] <Temia> mhm .w.
L394[09:35:27] <Inari> Private pool?
L395[09:35:41] <AmandaC> Can't exactly stay private from yourself
L396[09:36:26] <Lizzy> we're supposed to be going to center parcs (family activity center thing in the uk) in august and we want to do canoeing or kyaking as a family but i'm not sure what swim wear i'd want to wear
L397[09:36:54] <Z0idburg> Temia, adopt a kid, they'll bring a smile to your face every day ?
L398[09:36:59] <Inari> Lizzy: one-piece swimsuit!
L399[09:37:09] <Inari> @Z0idburg at least if you don't have kids
L400[09:37:12] <Inari> *hate
L401[09:37:12] <Temia> That's... not really applicable to the situation
L402[09:37:48] <Z0idburg> I don't have kids because I'm only 30 and I keep telling my other half I'm too young to have kids
L403[09:37:49] <Z0idburg> so far it works
L404[09:38:24] <Z0idburg> but I do like kids they can be a lot of fun.
L405[09:38:28] <Lizzy> Inari, that's maybe what I'm going to go for, but anxiety is a bitch
L406[09:38:29] <AmandaC> I don't think you realise that the older a woman gets, the harder it is for her to get pregnant.
L407[09:39:09] <AmandaC> @Z0idburg ^
L408[09:39:22] <Z0idburg> well she's only 3 years younger
L409[09:39:47] <Z0idburg> so I am not worried about that yet
L410[09:40:09] * AmandaC shrugs
L411[09:40:16] <AmandaC> "So far it's working" feels like it's deception, but meh
L412[09:40:40] * AmandaC has had some seriously-bad relationships involving deception, so she's a bit... uncomfortable? With such things
L413[09:41:21] * Lizzy is always just generally confused by emotions
L414[09:41:43] <Z0idburg> She knows I am kidding, AmandaC
L415[09:42:00] <Lizzy> a lot of the time i don't really "feel" anything? Like, i'm not any one particular mood
L416[09:42:21] <Z0idburg> I am pretty much always in a good mood
L417[09:42:45] <AmandaC> Lizzy: I know I'm feeling *something* but identifying what, and why, can take some time. Apparently it's part of being an aspie
L418[09:43:05] <Lizzy> hmm
L419[09:43:15] <Inari> AmandaC: Make a chart for deicidng how you feel!
L420[09:43:18] <AmandaC> It really sucks because people generally don't like being told that something they did half a day or more later was upsetting
L421[09:43:40] <Z0idburg> I tend to be in a bad mood when I tell somebody why I don't wan't them to do something, they say they won't, then they do it anyways. Like, I tell somebody "Don't touch this special cable, it's expensive and I don't want to lose it." I set it on my desk in my office, then it goes missing, then they tell me they took it and stuffed it in a storage drawer because it needed a home.
L422[09:43:48] <Z0idburg> that kind of shit makes me upset
L423[09:43:55] <Inari> AmandaC: People ever like that? :p
L424[09:43:56] <Z0idburg> but other than that I'm always in a ned flanders mood
L425[09:44:28] <AmandaC> Inari: depends on the person, and how well you know them.
L426[09:44:33] <AmandaC> ( And how well they know you )
L427[09:44:44] <Lizzy> I honestly wonder sometimes if i have any undiagnosed mental conditions. I got diagnosed with ADD/ADHD when i was younger but that's about as far as i have been officially diagnosed
L428[09:45:18] <Z0idburg> oh yeah there's that too AmandaC, I have told people that told me like 3 days later they didn't like something and wonder why I am like, "then tell me when it's a problem, doofus"
L429[09:45:25] <AmandaC> I'm offically somewhere on the autistic spectrem, and it's the reason I'm on disability instead of working, but I appear more high-functioning in text-only environments
L430[09:46:00] * Lizzy hugs AmandaC
L431[09:46:22] <Z0idburg> If it's not something to really worry about I won't bother to say anything, but if somebody does something that's quite upsetting I will let them know
L432[09:46:25] <AmandaC> @Z0idburg the problem is, when I'm upset, I lack the ability to introspect why, and what caused it. It's only when I've had time to unwind and decompress, that I can introspect and see why
L433[09:46:33] <Z0idburg> better to do so than to wait and make it into an embarrasing issue
L434[09:46:37] <Z0idburg> later on
L435[09:47:00] <Z0idburg> that's a resonable excuse
L436[09:47:26] <Z0idburg> some people like to just not say anything who are quite capable then just talk about it to somebody else
L437[09:47:33] <Z0idburg> instead of taking care of the problem first hand
L438[09:47:53] <Z0idburg> in fact that's most people XD
L439[09:48:06] <Z0idburg> It's starting to look like the majority of the world is moving antisocial
L440[09:48:31] <Z0idburg> "How can I get the most out of my day without anyone bothering me"
L441[09:49:28] <Lizzy> probably because people are slowly getting tired of the day-to-day bullshit they might experience or something
L442[09:51:28] <Temia> The world's so depressing, wouldn't you want to avoid it too?
L443[09:53:07] <Z0idburg> I think everyone has their own escape
L444[09:53:40] <Z0idburg> My preference is to live out of town so there are people, just not an overwelming number of them. I grew up in a town of 600 people so I am not use to places more than a few thousand
L445[09:53:48] <Z0idburg> going to places like boston MA is horrible
L446[09:54:20] <Z0idburg> its not the crowds of people so much as it's ust when you're in places like that you are that much more insignificant
L447[09:54:39] <Forecaster> Duck quickly! https://imgur.com/gallery/K0a0a
L448[09:54:42] <Z0idburg> in places where I live complete strangers do care and go out of their way to help you out with anything and everything
L449[09:54:50] <Temia> I think I prefer more out of the way areas too, but I don't drive so it's not actually viable
L450[09:54:57] <Z0idburg> you go to a large city and fall on the sidewalk and people just walk around and sometimes over you
L451[09:55:02] <Lizzy> https://www.amzn.com/dp/B07CLCFLH8 hmm, this PoE Hat for the Pi3b+ seems much better than the 'official' one for the pi3b+ that covers the whole board
L452[09:55:04] <Z0idburg> I LOVE THAT DUCK
L453[09:55:04] <Temia> I also have this weird thing about subdivision housing.
L454[09:55:13] <Z0idburg> its so adorable
L455[09:55:29] <Z0idburg> subdivision housing?
L456[09:55:31] <Temia> It is so weirdly samey with a distinct pattern to how the facade is applied
L457[09:55:35] <Z0idburg> is that like apartments?
L458[09:55:43] <Temia> Like suburbs of the same houses and townhouses
L459[09:55:46] <Temia> All with slight differences.
L460[09:55:55] <Temia> Like... superficially so.
L461[09:56:02] <Temia> It's creepy.
L462[09:56:11] <Temia> It's like I'm in some kind of stepford nightmare scenario.
L463[09:56:23] <Temia> Even apartments are more comfortable to me.
L464[09:58:48] <Temia> It also doesn't help that I don't really *get* middle-class lifestyles so I chafe just having to put up with that to begin with.
L465[09:59:10] * Lizzy sighs, wants to get her own place but just can't afford it on her current salary and isn't confident enough to go elsewhere
L466[09:59:53] <AmandaC> Temia: lots of same-y houses is weird to me too. Not sure I'd classify it as full-on creepy, but it's... weird to think that you could accidentally walk into the wrong unlocked house and just have the structure the same but with not-your-stuff in it
L467[10:00:25] <Forecaster> https://youtu.be/bk8rraKzGBU
L468[10:00:25] <MichiBot> The Witcher 3: Blood and Wine Soundtrack (Full) | length: 59m 45s | Likes: 14,731 Dislikes: 271 Views: 2,101,733 | by Video Game Soundtracks | Published On 5/6/2016
L469[10:00:39] <AmandaC> The house I live in is probably from the 40s, when my neighborhood used to be a cul-de-sac, and probably started out the same, but over the last 60+ years it's changed to be it's own thing
L470[10:00:43] <Skye> Temia: https://www.ourproperty.co.uk/content/uploads/2007/08/Terraced-House-Pixabay-371163_1920.jpg so stuff like this?
L471[10:01:26] <Temia> Kind of, yeah.
L472[10:03:41] <Skye> Hm
L473[10:04:17] <Z0idburg> oooh
L474[10:04:21] <Skye> Finding houses I visit often is fine, but finding one I don't know is tricky. Especially when you miss the door number.
L475[10:04:23] <Z0idburg> I wonder if discord allows song files
L476[10:04:28] <Z0idburg> well audio files
L477[10:04:30] <Forecaster> yes
L478[10:04:32] <Forecaster> it does
L479[10:05:57] * AmandaC wonders how corded handles those
L480[10:06:12] <Z0idburg> it won't let me
L481[10:06:19] <Z0idburg> it shows a red circle with across
L482[10:06:52] <Forecaster> oh, hm
L483[10:06:59] <Forecaster> well it embeds them when linked
L484[10:07:08] <Forecaster> thought that you could upload them too
L485[10:07:30] <Z0idburg> hmm
L486[10:08:24] <AmandaC> @Z0idburg oh, that means you can only upload them from Switzerland
L487[10:08:32] * AmandaC flees
L488[10:09:03] <Z0idburg> lol
L489[10:09:14] <Lizzy> weird, you should be able to upload to the oc channel. might be larger than 8mb (or 50mb if you have nitro)
L490[10:12:02] <Z0idburg> I was going to show you guys something for comments
L491[10:12:13] <Z0idburg> its like a 30 second mp3 so it's not like it would be very big
L492[10:12:19] <Z0idburg> I got an idea!
L493[10:13:02] <Z0idburg> I'll shove it in my pleroma instance XD
L494[10:15:29] <Z0idburg> damn it is fixed to filetypes
L495[10:15:34] <Z0idburg> I may have to create another nginx server
L496[10:15:43] <Z0idburg> easy fix
L497[10:18:34] <Inari> %pet AmandaC
L498[10:18:35] * MichiBot pets AmandaC with baout left. 10 health gained!
L499[10:18:44] <Inari> AmandaC: hidari!
L500[10:19:00] <AmandaC> Hidari?
L501[10:19:07] <Inari> left in japanese
L502[10:19:14] <AmandaC> I seee
L503[10:19:17] <Inari> I think so anyway
L504[10:19:19] <Inari> :p
L505[10:19:38] <AmandaC> Google says so
L506[10:19:58] <AmandaC> You could ask purrdeta elsenet and he might know, or know where to look
L507[10:20:21] <Inari> I'd just look on jisho.org
L508[10:20:32] <Inari> Coincidentally jisho is dictionary ;D
L509[10:23:36] ⇨ Joins: t20kdc (t20kdc!~20kdc@cpc139326-aztw33-2-0-cust441.18-1.cable.virginm.net)
L510[10:26:28] <Z0idburg> Ok guys let's see if this works, this is something I was playing around with so if you hate it let let me know
L511[10:26:30] <Z0idburg> http://168.235.88.168/~bhodgins/record1.mp3
L512[10:26:46] <Z0idburg> or.... discord might just ignore it
L513[10:26:46] <Z0idburg> XD
L514[10:28:00] <Forecaster> sounds fine to me, except that random sound of someone hitting something in the middle :P
L515[10:28:19] <Z0idburg> That's the foot pedal, the mic picks it up extremely harshly
L516[10:28:56] <Z0idburg> its the one that handles sustain
L517[10:29:34] <Z0idburg> I'm not so much concerned about the performance of it as the progression
L518[10:30:35] <Z0idburg> so that answers that though, discord doesnt like it
L519[10:57:18] <Z0idburg> heh
L520[10:57:25] <Z0idburg> Lizzy: Fancyindex is nice
L521[10:57:38] <Z0idburg> It's autoindex but you can tell it header / footer filenames
L522[10:57:43] <Z0idburg> and give it CSS
L523[10:57:46] <Z0idburg> example:
L524[10:57:46] <Lizzy> ?
L525[10:57:54] <Z0idburg> http://168.235.88.168/~bhodgins/
L526[10:58:08] <Z0idburg> the this is a test string is the contents of readme.txt
L527[10:58:37] <Lizzy> cool, still unsure why you're randomly telling me this :P
L528[10:59:12] <Z0idburg> because last I heard you use nginx
L529[10:59:18] <Lizzy> yes
L530[10:59:28] <Lizzy> though very rarely do i have autoindex on
L531[11:07:33] * Inari autoindexes AmandaC's subroutines
L532[11:08:02] ⇨ Joins: OmegaCenti (OmegaCenti!~OmegaCent@c-73-76-203-22.hsd1.tx.comcast.net)
L533[11:11:11] <AmandaC> Inari: you sure you want to do that? There's a lot of them, the indexing might take awhile
L534[11:12:05] <Inari> AmandaC: How would I modify them without knowing them!
L535[11:12:47] * AmandaC double-checks that Inari doesn't have direct-modify access to the live instance of herself
L536[11:16:52] <stephan48> are you sure that the result of that check is still valid? who knows if Inari did not modify stuff already?
L537[11:19:42] <AmandaC> stephan48: Good point, I'll set a subroutine to check that regularly, and roll me back if it detects any unauthorised changes
L538[11:20:26] <stephan48> good start. how would you detect historic manipulations?
L539[11:20:43] * stephan48 stops now
L540[11:25:35] <Mimiru> @Forecaster jenkins is back
L541[11:25:48] <Forecaster> woop
L542[11:25:49] <Mimiru> it was using 754% of Eos's CPU
L543[11:25:53] <Mimiru> and made the dedi VERY mad.
L544[11:25:55] <Forecaster> nice
L545[11:27:09] <AmandaC> Mimiru: is that why MichiBot's been a bit slugish lately?
L546[11:27:36] <Forecaster> doesn't look like it's built my last push
L547[11:33:21] ⇦ Quits: baschdel (baschdel!~baschdel@2a01:5c0:e089:6d31:621d:ec6f:473d:5c54) (Ping timeout: 198 seconds)
L548[11:34:50] <Mimiru> Yeah.. I can kick off a build if you don't have permissions..
L549[11:34:55] <Mimiru> I don't even think you have an account do you?
L550[11:35:50] <Forecaster> no
L551[11:53:28] <Forecaster> %restart
L552[11:53:32] ⇦ Quits: MichiBot (MichiBot!~MichiBot@eos.pc-logix.com) ()
L553[11:54:06] ⇨ Joins: MichiBot (MichiBot!~MichiBot@eos.pc-logix.com)
L554[11:54:06] zsh sets mode: +v on MichiBot
L555[11:54:26] <Forecaster> @Z0idburg there's now an "everything" parameter for the drink command, for no reason :P
L556[11:56:21] <Z0idburg> LOL
L557[11:56:30] <Z0idburg> wtf
L558[11:56:50] <Z0idburg> %drink everything
L559[11:56:51] <MichiBot> Z0idburg explodes.
L560[11:57:02] <Z0idburg> lol
L561[11:57:06] <Z0idburg> Is that the only thing it does?
L562[11:58:23] <Forecaster> yes
L563[12:03:04] <Forecaster> that's not the only thing in the push though
L564[12:03:06] <Forecaster> :P
L565[12:05:29] <Z0idburg> I couldn't get elixir to parse right
L566[12:05:37] <Z0idburg> the irc sabnf doesnt work
L567[12:06:26] <Forecaster> %sip random
L568[12:06:26] <MichiBot> You drink a boiling aluminium potion (New!). Forecaster turns into a water boy.
L569[12:06:33] <Forecaster> hm
L570[12:06:43] <Temia> :o
L571[12:06:50] <Temia> It's like slimefolk but water
L572[12:06:52] * Temia pokes at
L573[12:06:53] <AmandaC> He was a water boy, he said see you later boy
L574[12:06:57] <Z0idburg> wat
L575[12:07:02] <Temia> %quaff boiling pink potion
L576[12:07:03] <MichiBot> Temia turns into a cat girl.
L577[12:07:06] <Temia> :O
L578[12:07:23] <Z0idburg> many people here don't know that song AmandaC
L579[12:07:25] <Z0idburg> I bety
L580[12:07:29] <Temia> I do.
L581[12:07:35] <Forecaster> I do
L582[12:07:40] <Z0idburg> yes but you're forecaster
L583[12:07:47] <Temia> :T
L584[12:07:48] <Forecaster> so?
L585[12:07:53] <Temia> He's waterboy.
L586[12:07:55] <Temia> Get it right.
L587[12:07:57] <Z0idburg> lol
L588[12:08:19] <Forecaster> I guess I should add slime to the method too
L589[12:08:25] <Inari> %drink random
L590[12:08:26] <MichiBot> You drink a freezing sky potion (New!). Inari has a sudden but short lived desire to run around in a circle.
L591[12:08:34] <Z0idburg> http://tinyurl.com/y6kuw2h6
L592[12:08:53] <Z0idburg> WOAH WOAH WOAH
L593[12:08:56] <Z0idburg> That was made in 1998
L594[12:08:58] <Temia> Oh dear
L595[12:08:59] <Z0idburg> wat
L596[12:09:05] <Temia> Oh me oh my.
L597[12:09:08] <Z0idburg> I remember the day that movie came out
L598[12:09:23] <Z0idburg> and I didn't watch it because I was like "it's probably a dumb movie"
L599[12:09:36] <Temia> ...Forecaster, given the opportunity, would you add keywords that defaulted to particular effects?
L600[12:09:36] <Z0idburg> it couldn't have been 1998...
L601[12:09:48] <Forecaster> like what?
L602[12:10:14] <Z0idburg> like %drink everything that temia is hoarding ?
L603[12:10:30] <Temia> "mutable"?
L604[12:10:35] <Temia> Also excuse you
L605[12:10:43] <Temia> This boiling pink potion is a potion of the people!
L606[12:10:52] <Z0idburg> lol
L607[12:10:54] <Forecaster> mutable?
L608[12:11:01] <Temia> As a possible example keyword.
L609[12:11:13] <Z0idburg> %drink everything slimy
L610[12:11:13] <MichiBot> Z0idburg explodes.
L611[12:11:15] <Z0idburg> like that?
L612[12:11:32] <Temia> Kind of, yeah.
L613[12:11:40] <Corded> * <Forecaster> also adds "Cow" to the table
L614[12:11:47] <Z0idburg> yes
L615[12:11:55] <Temia> Except it just set off a specific effect but with random elements still intact based on its colour.
L616[12:11:56] <Z0idburg> Cows are neat
L617[12:11:58] <AmandaC> I think what Temia's saying is that the adverb "mutable" would be a higher chance (or always) result in a transformation
L618[12:12:03] <Temia> Yeah :P
L619[12:12:03] <Z0idburg> I've been thinking of getting a cow
L620[12:12:20] <Forecaster> the random elements are unrelated to anything
L621[12:12:22] <Temia> Since let's be honest, that's what we're here for by the end of the day
L622[12:12:26] <Temia> Oh.
L623[12:12:39] <Temia> I assumed the colour/texture combo produced a particular random seed
L624[12:12:56] <Temia> Well, pseudorandom seed.
L625[12:12:59] <Temia> It just caches what it comes up with then?
L626[12:14:00] <Forecaster> no, it just stores the effect and it's parameters one used with the consistency and color, so each time the same potion is used (until reset) it will produce the exact same effect with the same parts, except the user
L627[12:14:08] <Forecaster> once used*
L628[12:14:26] <Temia> Ah, okay.
L629[12:14:32] <Z0idburg> I think it'd be cool to hash its input but in a way so that if you added new ons they'd make the same output
L630[12:14:42] <Temia> Right, hashing, that's the term I was trying to remember.
L631[12:14:44] <Temia> I am tired, sorry
L632[12:14:47] <Z0idburg> so you could expand the possibilities without changing the outcomes of the same thing
L633[12:14:55] <Temia> Two cups of coffee and I just wanna take a nap.
L634[12:15:01] <Z0idburg> problem is you want to add a new effect you need to rehash something and some of them wioll change
L635[12:15:17] <Forecaster> it's supposed to be random every day though
L636[12:15:22] <Z0idburg> hmm
L637[12:15:29] <Z0idburg> if that's the case that isn't a problem
L638[12:15:35] <AmandaC> Temia: so early int he day and already tired? Or is my brain mis-remembering you as being in 'Murika
L639[12:15:44] <Temia> Canada, EDT.
L640[12:15:45] <Z0idburg> hash % num_of_outcomes is as simple as it gets
L641[12:15:50] <AmandaC> eh
L642[12:16:02] <Forecaster> it works that way now though :P
L643[12:16:09] <Z0idburg> does it?
L644[12:16:09] <Temia> Either way, is it impossible to bypass some of the randomness based on a consistency?
L645[12:16:14] <Z0idburg> im half not here
L646[12:16:17] <Forecaster> without hashing, it does what I want
L647[12:16:37] <Forecaster> I can do whatever
L648[12:16:44] <Forecaster> I've written it very modularly
L649[12:17:04] <Temia> Mmkay, I kind of figured it'd be hard to preclude such a means
L650[12:17:29] <Forecaster> not really, I can pick specific effects by index
L651[12:17:37] <Forecaster> which are generally consistant
L652[12:19:12] <Temia> So, "mutable" consistency for transformation effects? :P
L653[12:19:24] <Temia> Or do you think that would just invalidate everything else in one fell swoop?
L654[12:22:50] <Forecaster> I think I can just add a bypass in the getEffect method
L655[12:23:30] <Forecaster> but to make it less of a hack I have to add "mutable" as a proper consistency, so it will show up in random potions too
L656[12:24:42] <Temia> I mean, I'm sure nobody will complain
L657[12:25:37] <Forecaster> then I can just have it limit the range it uses when picking the effect to the range containing the transformation effects instead of 0 to [list size]
L658[12:25:57] <Forecaster> if consistency == "imutable"
L659[12:26:30] <Forecaster> I mean mutable
L660[12:32:03] ⇨ Joins: baschdel (baschdel!~baschdel@2a01:5c0:e089:6d31:621d:ec6f:473d:5c54)
L661[12:32:14] <Forecaster> %restart
L662[12:32:15] ⇦ Quits: MichiBot (MichiBot!~MichiBot@eos.pc-logix.com) ()
L663[12:32:33] <Forecaster> done, I added about 7 lines
L664[12:32:43] ⇨ Joins: MichiBot (MichiBot!~MichiBot@eos.pc-logix.com)
L665[12:32:43] zsh sets mode: +v on MichiBot
L666[12:34:37] <Forecaster> Temia ^ :P
L667[12:34:49] <Temia> %quaff mutable pink potion
L668[12:34:50] <MichiBot> Temia turns into a lizard boy.
L669[12:34:51] <Temia> :O
L670[12:35:40] <Forecaster> it still stores the effects as usual
L671[12:35:46] <Temia> That's fair
L672[12:35:59] <Temia> If it works, it works
L673[12:36:05] <Forecaster> that's just how it works, I didn't override that part
L674[12:36:08] <Forecaster> :P
L675[12:36:16] <Temia> Of course now I feel slightly bad because I deprived anyone of the boiling pink potion
L676[12:37:54] <Forecaster> you did?
L677[12:41:07] <Z0idburg> well that is terrifying
L678[12:41:12] <Z0idburg> if you use debian on WSL
L679[12:41:20] <Z0idburg> and you install xfce for the interests of science
L680[12:41:25] <Z0idburg> it will install systemd
L681[12:41:33] <Z0idburg> that's a huge mistake on the packagers end I think..
L682[12:41:53] <Z0idburg> somebody somewhere made systemd a dependency of some package
L683[12:42:33] <Z0idburg> Forecaster: This is why I complain about binary packages. I do not want systemd sam I am I will not use it in a box I will not use it with a fox. I do not like systemd sam I am..
L684[12:42:53] <Temia> You rebooted to incorporate my suggestion, which reset the potion table and thus the cat girl effects
L685[12:42:55] <Temia> Now...
L686[12:42:59] <Temia> %quaff boiling pink potion
L687[12:43:00] <MichiBot> The bottle turns into a bow.
L688[12:43:06] <Forecaster> ah
L689[12:43:20] <Temia> %quaff mutable strawberry potion
L690[12:43:20] <MichiBot> Temia turns into a dog boy.
L691[12:43:30] <Z0idburg> uh
L692[12:43:32] <Temia> Hmm.
L693[12:55:35] ⇦ Quits: SpiritedDusty (SpiritedDusty!~SpiritedD@eos.pc-logix.com) (Ping timeout: 202 seconds)
L694[12:55:35] ⇦ Quits: ds84182 (ds84182!~ds84182@eos.pc-logix.com) (Ping timeout: 202 seconds)
L695[12:56:01] ⇨ Joins: ds84182 (ds84182!~ds84182@eos.pc-logix.com)
L696[12:56:03] ⇦ Quits: Away_21 (Away_21!crystal@bronyville.me) (Ping timeout: 202 seconds)
L697[12:56:03] ⇦ Quits: iceiix (iceiix!Elite22036@sigma.elitebnc.org) (Ping timeout: 202 seconds)
L698[12:56:06] ⇨ Joins: SpiritedDusty (SpiritedDusty!~SpiritedD@eos.pc-logix.com)
L699[12:56:10] zsh sets mode: +o on SpiritedDusty
L700[12:56:30] <Lizzy> %potion
L701[12:56:30] <MichiBot> Lizzy: You get a mutable green potion (New!)
L702[12:56:37] <Lizzy> %chug ^
L703[12:56:38] <MichiBot> Lizzy turns into a crocodile fish girl.
L704[12:56:42] <Lizzy> why
L705[12:56:46] * Lizzy baps MichiBot
L706[12:57:05] * Lizzy morphs back into her catgirl goddess self
L707[12:57:44] <Lizzy> hmm, what do i want to do tonight
L708[12:57:54] <Lizzy> other than play C:S all evening again
L709[12:58:14] ⇨ Joins: Away_21 (Away_21!crystal@bronyville.me)
L710[12:58:14] <Forecaster> Lizzy: Like Temia has requested, potions with the mutable consistency are always transformations now :P
L711[12:58:15] ⇨ Joins: iceiix (iceiix!Elite22036@sigma.elitebnc.org)
L712[12:58:33] <Forecaster> also, I believe there are 216 different transformation combinations
L713[12:58:48] <Lizzy> i was questioning the thing i turned into, not that i turned into something
L714[12:59:09] <Forecaster> this vastly exceeds the 51 colors that are available
L715[13:01:38] <Inari> Chicken safety vests are sitll the best thing ever
L716[13:01:42] <Forecaster> Lizzy: the ways of MichiBot are mysterious :P
L717[13:06:27] <Z0idburg> Why is that
L718[13:06:36] <Z0idburg> in response to Inari
L719[13:06:47] <Inari> Cause they're so pretty and purrfect
L720[13:07:05] <Forecaster> you mean cluckfect
L721[13:07:07] <Z0idburg> you mean the relective vests you can put on chickens to make them look like road workers?
L722[13:15:35] <Inari> Yes
L723[13:15:44] <Inari> https://proxy.duckduckgo.com/iu/?u=https%3A%2F%2Fi.kinja-img.com%2Fgawker-media%2Fimage%2Fupload%2Fs--H-ek_ZCd--%2Fc_fill%2Cfl_progressive%2Cg_center%2Ch_900%2Cq_80%2Cw_1600%2F1957zwlx23nokjpg.jpg&f=1
L724[13:26:00] <Z0idburg> neat
L725[13:26:05] <Inari> I know right
L726[13:26:08] <Z0idburg> I will probably be petting chickens today
L727[13:26:13] <Z0idburg> because my friend has them
L728[13:26:13] <Inari> Neat
L729[13:26:22] <Z0idburg> yeah they keep them inside mostly
L730[13:26:29] <Z0idburg> the hawks like to come down and carry them away whole
L731[13:26:55] <Z0idburg> you wouldn't think they could but wow these hawks are huge
L732[13:27:14] <Z0idburg> also unrelated, I found a much cleaner way to get a side wave:
L733[13:27:18] <Z0idburg> http://tinyurl.com/y3clrzu2
L734[13:27:31] <Inari> You're a sidewave
L735[13:27:34] <Z0idburg> all it needs is a kickstart current which I have via switch
L736[13:27:37] <Z0idburg> lol
L737[13:27:39] <Z0idburg> sinewave*
L738[13:37:44] <baschdel> %tonkout
L739[13:37:44] <MichiBot> By my throth! baschdel! You beat your own previous record of 5 hours, 32 minutes and 33 seconds (By 1 minute and 7 seconds)! I hope you're happy!
L740[13:37:45] <MichiBot> baschdel has tonked out! Tonk has been reset! They gained 0.005 tonk points! plus 0.008 bonus points for consecutive hours! Current score: 0.03313
L741[13:40:13] <baschdel> %tonk
L742[13:40:13] <MichiBot> Zounderkite! baschdel! You beat your own previous record of <0 (By 2 minutes and 29 seconds)! I hope you're happy!
L743[13:40:14] <MichiBot> baschdel's new record is 2 minutes and 29 seconds! No points gained for stealing from yourself. (Lost out on 0.00004 x 1 = 0.00004)
L744[14:13:18] ⇦ Quits: baschdel (baschdel!~baschdel@2a01:5c0:e089:6d31:621d:ec6f:473d:5c54) (Ping timeout: 189 seconds)
L745[14:21:49] ⇦ Quits: Dimtree (Dimtree!~dimtree@75-109-153-141.nbrncmtk01.res.dyn.suddenlink.net) ()
L746[14:36:31] <Forecaster> %sip random
L747[14:36:32] <MichiBot> You drink a stirring rock potion (New!). For about 5 seconds you know the location of a great treasure.
L748[14:36:46] <Forecaster> %warp
L749[14:36:46] <MichiBot> You end up in your bed.
L750[14:36:52] <Forecaster> dang, oh well
L751[14:43:05] <Mimiru> @Forecaster #681: FAILURE Just sayin.
L752[14:43:07] <Mimiru> :P
L753[14:43:31] <Forecaster> friendship failed D:
L754[14:47:35] <Forecaster> there
L755[14:50:47] <Forecaster> https://youtu.be/pQuZfER7BKo
L756[14:50:48] <Forecaster> heh
L757[14:50:50] <MichiBot> Netflix Announces Cheapest Plan Ever! | length: 2m 25s | Likes: 3,356 Dislikes: 100 Views: 29,269 | by Rooster Teeth | Published On 9/5/2019
L758[14:51:01] <Z0idburg> Lolololol
L759[14:51:07] <Z0idburg> I was getting low on some electrical components
L760[14:51:14] <Z0idburg> so I found some grab bags
L761[14:51:25] <Z0idburg> now I have like 3000 capacitors inductors and resistors or so on the way
L762[14:51:51] <Z0idburg> They were cheap enough so I was like, "Might as well grab a few thousand of them.."
L763[14:52:08] <Z0idburg> few thousand pieces not bags
L764[15:00:24] <Kleadron> %potion
L765[15:00:24] <MichiBot> Kleadron: You get a warpy ocean potion (New!)
L766[15:00:29] <Kleadron> %drink ^
L767[15:00:29] <MichiBot> It tastes salty.
L768[15:00:48] <Kleadron> does that mean that this is real ocean water
L769[15:02:00] <Forecaster> possibly
L770[15:04:51] <Corded> * <Kleadron> dies
L771[15:19:36] * Temia shrugs
L772[15:19:41] <Temia> %quaff mutable rainbow potion
L773[15:19:41] <MichiBot> Temia turns into a wolf crocodile girl.
L774[15:20:00] <Temia> Woo! I'm a gijinka of that one FFXI/XIV enemy!
L775[15:20:13] <Inari> A what now
L776[15:21:05] <Temia> https://ffxiv.gamerescape.com/w/images/2/2e/Snapjaw.png one of these things
L777[15:25:09] <Lizzy> @Z0idburg what program are you using for that circuit stuff?\
L778[15:26:43] <Inari> Temia: tahts not very cute
L779[15:26:54] <Temia> Not realy, no.
L780[15:27:00] <Temia> *really
L781[15:27:13] ⇦ Quits: iceiix (iceiix!Elite22036@sigma.elitebnc.org) (Ping timeout: 190 seconds)
L782[15:27:29] <Inari> Lizzy: falstad
L783[15:27:42] <Inari> http://www.falstad.com/circuit/ more specifically
L784[15:33:00] ⇨ Joins: iceiix (iceiix!Elite22036@sigma.elitebnc.org)
L785[15:41:07] <Skye> Temia, where is the plain wolf girl potion
L786[15:41:18] <Temia> Keep looking
L787[15:41:31] <Skye> %sip random
L788[15:41:32] <MichiBot> You drink a shimmering unobtanium potion (New!). When you bring the bottle down you see a gold colored plastic flamingo. It stares into your soul.
L789[15:41:36] <Skye> %sip random
L790[15:41:36] <MichiBot> You drink a viscous iron potion (New!). Skye's hair grows three times longer.
L791[15:41:41] <Skye> huh
L792[15:41:52] <Temia> %quaff mutable unobtanium potion
L793[15:41:52] <MichiBot> Temia turns into a fish.
L794[15:41:59] * Temia dies
L795[15:43:43] <Corded> * <Forecaster> pours a mutable blue potion onto temia
L796[15:43:58] <Temia> %quaff ^
L797[15:43:58] <MichiBot> Temia turns into a lava.
L798[15:44:06] * Temia burns through the floor
L799[15:46:33] <Forecaster> that's arguably better
L800[15:52:39] ⇦ Quits: t20kdc (t20kdc!~20kdc@cpc139326-aztw33-2-0-cust441.18-1.cable.virginm.net) (Ping timeout: 206 seconds)
L801[15:54:00] * Temia glub
L802[15:54:30] <Mimiru> Lava fish
L803[15:55:48] <Inari> lava silverfish
L804[15:56:06] * Inari gifts Temia a dog-sized pet silverfish
L805[15:56:27] * Temia sssizzle
L806[15:56:32] <Temia> %quaff ^
L807[15:56:32] <MichiBot> Temia turns into a lava.
L808[15:56:34] <Temia> Oop
L809[15:56:38] <Inari> Heh
L810[15:56:43] <Temia> %quaff mutable silver potion
L811[15:56:43] <MichiBot> Temia turns into a wolf boy.
L812[15:56:44] <Inari> %potion random
L813[15:56:44] <MichiBot> Inari: You get a sedimented copper potion (New!)
L814[15:56:54] * Temia shrugs at Skye
L815[15:56:58] <Inari> %drink ^
L816[15:56:59] <MichiBot> For about 5 seconds you know the location of a great treasure.
L817[15:57:05] <Forecaster> potion still doesn't take any arguments :P
L818[15:57:10] <Inari> :P
L819[15:57:35] <Skye> Temia, that's... half... hum
L820[15:57:39] <Skye> %potion random
L821[15:57:39] <MichiBot> Skye: You get a molten adamantium potion (New!)
L822[15:57:43] <Skye> %drink ^
L823[15:57:43] <MichiBot> It tastes salty.
L824[15:57:47] <Skye> %sip random
L825[15:57:48] <MichiBot> You drink a slimy amethyst potion (New!). Skye's hair grows three times longer.
L826[15:57:53] <Skye> again?
L827[15:58:00] <Skye> my har is like
L828[15:58:03] <Skye> 9 times longer
L829[15:58:04] <Skye> huh
L830[15:58:05] <Skye> cool
L831[15:58:07] <Forecaster> that explains Wolverines mood
L832[15:58:08] <Forecaster> :P
L833[16:14:22] <Forecaster> %drink mutable tiberium potion
L834[16:14:22] <MichiBot> Forecaster turns into a sloth boy.
L835[16:14:32] <Forecaster> again
L836[16:26:35] <Inari> %drink random
L837[16:26:36] <MichiBot> You drink a slimy orange potion (New!). When you bring the bottle down you see a spice colored plastic flamingo. It stares into your soul.
L838[16:35:50] <Inari> Temia: https://imgur.com/gallery/Yk2VkVI
L839[16:36:22] <Forecaster> duck fall over
L840[16:38:39] <Inari> https://www.youtube.com/watch?v=23HE-UHWaSk
L841[16:38:39] <MichiBot> [ASMR] gently reading the "Weed" page on Wikipedia to soothe you! | length: 2h, 6m 45s | Likes: 5,140 Dislikes: 93 Views: 81,916 | by Nyanners | Published On 21/4/2019
L842[16:53:54] <Skye> Goodnight
L843[16:54:02] <Skye> %drink random
L844[16:54:03] <MichiBot> You drink a dull water potion (New!). Skye remembers an important appointment.
L845[16:57:10] <AmandaC> Is the appointment with you rbed, Skye ?
L846[16:57:16] <ba7888b72413a16a> Plan9port/kHurd
L847[16:57:18] <ba7888b72413a16a> because why not
L848[16:57:30] <ba7888b72413a16a> https://github.com/9fans/plan9port/pull/259
L849[16:59:08] <Skye> Maybe
L850[17:00:33] ⇦ Quits: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi) (Ping timeout: 190 seconds)
L851[17:03:43] ⇦ Quits: Inari (Inari!~Pinkishu@pD9E8E4F7.dip0.t-ipconnect.de) (Quit: KVIrc 5.0.0 Aria http://www.kvirc.net/)
L852[17:43:46] ⇨ Joins: Vexaton (Vexaton!~Vexatos@port-92-201-72-34.dynamic.qsc.de)
L853[17:43:46] zsh sets mode: +v on Vexaton
L854[17:46:43] ⇦ Quits: Vexatos (Vexatos!~Vexatos@port-92-193-0-202.dynamic.qsc.de) (Ping timeout: 206 seconds)
L855[18:18:39] <Temia> %quaff mutable orange potion
L856[18:18:39] <MichiBot> Temia turns into a dog lizard girl.
L857[18:18:52] <Temia> Also aww, Inari
L858[18:18:55] <Temia> That's adorable
L859[18:31:46] <Forecaster> %sip random
L860[18:31:46] <MichiBot> You drink a fiery red potion (New!). A genie appears out of the empty bottle, turns it into a pie, then vanishes.
L861[18:32:06] <Corded> * <Forecaster> eats the genie pie
L862[18:53:19] <AmandaC> [ it tastes horrible ]
L863[18:59:32] *** Vexaton is now known as Vexatos
L864[19:02:06] <Zef> So I might decide to try making a computer in factorio
L865[19:48:01] <Kodos> %tonk
L866[19:48:01] <MichiBot> Potzblitz! Kodos! You beat baschdel's previous record of 2 minutes and 29 seconds (By 6 hours, 5 minutes and 18 seconds)! I hope you're happy!
L867[19:48:02] <MichiBot> Kodos's new record is 6 hours, 7 minutes and 47 seconds! Kodos also gained 0.00609 tonk points for stealing the tonk.
L868[19:56:58] ⇦ Quits: Vexatos (Vexatos!~Vexatos@port-92-201-72-34.dynamic.qsc.de) (Quit: Insert quantum chemistry joke here)
L869[20:27:29] <Kleadron> %potion
L870[20:27:29] <MichiBot> Kleadron: You get a fluffy weather potion (New!)
L871[20:27:33] <Kleadron> %drink ^
L872[20:27:33] <MichiBot> Kleadron's pockets suddenly contain a number of black marbles.
L873[20:27:51] <Kleadron> fascinating
L874[20:28:30] <Toothless the Dragon> capacitors should be able to be placed inside a rack to act as a UPS sort of thing
L875[20:29:22] <Kleadron> or perhaps you could just make some battery blocks?
L876[20:29:38] <Kleadron> in isolation
L877[21:10:40] ⇦ Quits: freacknate (freacknate!~freacknat@97-92-106-22.static.reno.nv.charter.com) (Quit: I'm outta here, see ya)
L878[21:45:21] <Toothless the Dragon> racks are still buggy with networks
L879[21:50:08] <Toothless the Dragon> only receive 4/s at max
L880[22:24:11] <Toothless the Dragon> https://github.com/MightyPirates/OpenComputers/issues/3095
L881[22:24:12] <MichiBot> Title: Bug with rack network | Posted by: GalacticArc | Posted: Thu May 09 22:23:07 CDT 2019 | Status: open
L882[22:28:25] ⇦ Quits: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com) (Quit: Leaving.)
L883[22:28:38] <Kodos> Change the tier in the config
L884[22:28:42] <Kodos> Of the rack.
L885[22:29:06] <Kodos> Also computronics has rack capacitors
L886[22:29:09] ⇨ Joins: logan2611 (logan2611!~logan2611@184-96-217-4.hlrn.qwest.net)
L887[22:40:44] ⇨ Joins: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com)
L888[22:48:10] <Toothless the Dragon> @Kodos I changed it to 3, and still same behaviour
L889[22:50:28] <CompanionCube> %tonk
L890[22:50:28] <MichiBot> I'm sorry CompanionCube, you were not able to beat Kodos's record of 6 hours, 7 minutes and 47 seconds this time. 3 hours, 2 minutes and 27 seconds were wasted! Missed by 3 hours, 5 minutes and 20 seconds!
L891[23:10:45] ⇦ Quits: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com) (Quit: Leaving.)
L892[23:27:59] <Kodos> Did you close game client completely then hangs save then reload
L893[23:28:09] <Kodos> Change the config then save.
L894[23:28:20] <Kodos> Fucking phone
<<Prev Next>> Scroll to Top