<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:07:40] ⇦ Quits: cpup (~cpup@32.218.113.180) (Ping timeout: 186 seconds)
L2[00:13:12] ⇨ Joins: cpup (~cpup@32.218.113.215)
L3[00:15:49] <ping> https://dl.dropboxusercontent.com/1/view/cv3edvqj60n4w90/Apps/Shutter/Selection_136.png
L4[00:15:57] <ping> only took (literally) over 2 years
L5[00:16:21] <ping> (after it was taken down for no reason)
L6[00:20:45] ⇨ Joins: CoderPuppy (~cpup@32.218.113.240)
L7[00:22:45] ⇦ Quits: cpup (~cpup@32.218.113.215) (Ping timeout: 192 seconds)
L8[00:22:56] ⇦ Quits: Wiiplay123 (~kvirc@adsl-72-154-29-140.bna.bellsouth.net) (Quit: KVIrc 4.9.2 Aria http://www.kvirc.net/)
L9[00:30:21] *** medsouz is now known as medsouz|offline
L10[00:39:53] ⇨ Joins: cpup (~cpup@32.218.114.24)
L11[00:42:01] ⇦ Quits: CoderPuppy (~cpup@32.218.113.240) (Ping timeout: 192 seconds)
L12[00:52:46] ⇨ Joins: CoderPuppy (~cpup@32.218.114.50)
L13[00:55:37] ⇦ Quits: cpup (~cpup@32.218.114.24) (Ping timeout: 192 seconds)
L14[00:58:07] ⇦ Quits: alekso56 (~znc@2001:464b:c2aa:0:745d:45ff:fe3b:a098) (Ping timeout: 202 seconds)
L15[00:59:32] ⇨ Joins: alekso56 (~znc@2001:464b:c2aa:0:745d:45ff:fe3b:a098)
L16[01:00:14] ⇨ Joins: PinkyC4 (~martin@185.86.106.161)
L17[01:00:28] <PinkyC4> o/
L18[01:01:05] *** Ajloveslily is now known as Ajloveslily|Sleep
L19[01:03:59] ⇨ Joins: Kodos (~Kodos@2602:306:ce20:6c30:94f:211:6ae9:e4ad)
L20[01:04:00] zsh sets mode: +v on Kodos
L21[01:12:43] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L22[01:12:43] ⇦ Quits: Doty1154 (~Doty1154@2601:648:8000:134f:dd9:eb73:d3cd:c280) (Read error: Connection reset by peer)
L23[01:14:52] ⇦ Quits: CoderPuppy (~cpup@32.218.114.50) (Ping timeout: 186 seconds)
L24[01:16:57] <Kodos> o/
L25[01:18:06] * PinkyC4 is having a little trouble wrapping his mind around how to implement event.pull() in his script to allow killing it with ctrl+c
L26[01:19:20] <PinkyC4> anyone got a good example on hand? :P
L27[01:19:37] *** mrkirby153 is now known as kirby|gone
L28[01:19:49] <Kodos> Use a listener to check for key up, and do two checks; one to make sure the key going up is c, and the other (assuming the first passes) to check if ctrl is down
L29[01:20:01] <Kodos> Then just have that resolve to 'running = false'
L30[01:20:55] ⇨ Joins: cpup (~cpup@32.218.114.89)
L31[01:22:13] <PinkyC4> Kodos: i thought ctrl+c generated a special (break?) signal that could be caught with event.pull somehow?
L32[01:22:23] <Kodos> 'interrupted' I believe
L33[01:22:32] <Kodos> You can see it if you use dmesg
L34[01:23:00] <PinkyC4> there it is
L35[01:26:04] ⇦ Quits: cpup (~cpup@32.218.114.89) (Ping timeout: 186 seconds)
L36[01:32:15] ⇨ Joins: cpup (~cpup@32.218.114.118)
L37[01:32:20] <PinkyC4> d'oh its all in the event API wiki.. and i was looking at signals and understanding nothing :) it does help to know what to look for
L38[01:39:17] ⇨ Joins: maumagro (~maumagro@201.178.16.24)
L39[01:40:53] ⇦ Quits: maumagro (~maumagro@201.178.16.24) (Remote host closed the connection)
L40[01:47:38] <PinkyC4> Kodos: so I have a loop in my script with the "while running = true" stuff.. and before that loop i register a callback with event.listen("interrupt", myHandlerMethod), and in my handler method i set running to false..
L41[01:47:54] <PinkyC4> but it doesnt seem to work
L42[01:48:10] <Kodos> First of all, a check would be ==, not =, secondly you can just do 'while running do'
L43[01:49:25] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L44[01:49:26] <PinkyC4> ok, actually it's a "repeat <code> until stopRunning" and stopRunning is false until the handler sets it to true.
L45[01:52:49] <PinkyC4> lemme try to paste the relevant stuff here..
L46[01:52:54] <PinkyC4> function interr() --interrupt handler
L47[01:52:56] <PinkyC4> print("soft interrupt, closing")
L48[01:52:58] <PinkyC4> stopRunning = true
L49[01:53:00] <PinkyC4> end
L50[01:53:02] <PinkyC4> event.listen("interrupt", interr)
L51[01:53:04] <PinkyC4> repeat
L52[01:53:06] <PinkyC4> <code for drawing some nice graphs here>
L53[01:53:08] <PinkyC4> os.sleep(refresh_rate)
L54[01:53:10] <PinkyC4> until stopRunning
L55[01:56:21] ⇨ Joins: gm|and (~gm|and@230.249.224.49.dyn.cust.vf.net.nz)
L56[02:00:01] ⇨ Joins: Ember-Primrose (~Ember_Pri@105.227.243.168)
L57[02:03:00] ⇦ Quits: Ember-Primrose (~Ember_Pri@105.227.243.168) (Client Quit)
L58[02:03:40] * Ember_Primrose yawns
L59[02:03:47] <Ember_Primrose> Mornig everybody
L60[02:03:52] <Ember_Primrose> \o/ for bouncers
L61[02:07:55] <PinkyC4> morning :)
L62[02:09:24] <Ember_Primrose> I wanted to say goodnight to everybody, but then my internet died
L63[02:10:14] * Ember_Primrose slaps her router
L64[02:10:14] * EnderBot2 chuckles
L65[02:10:15] <gm|and> ohai
L66[02:10:51] <Kodos> Pinky, please use pastebin for things like that
L67[02:16:36] <Ember_Primrose> %p
L68[02:16:42] <MichiBot> Ping reply from Ember_Primrose 6.48s
L69[02:19:19] * Forecaster glomps Ember_Primrose
L70[02:20:19] <Ember_Primrose> Hi Forecaster, ill be back in a moment
L71[02:21:51] * Forecaster lays and waits
L72[02:22:07] ⇦ Quits: gm|and (~gm|and@230.249.224.49.dyn.cust.vf.net.nz) (Ping timeout: 202 seconds)
L73[02:29:13] <PinkyC4> Kodos: http://pastebin.com/tuDWYtUi
L74[02:29:51] <PinkyC4> %p
L75[02:29:55] <MichiBot> Ping reply from PinkyC4 2.23s
L76[02:29:57] <Kodos> Make sure you're closing the listener on program exit, too
L77[02:31:17] <PinkyC4> I'll add that
L78[02:32:42] <PinkyC4> that should do it: http://pastebin.com/Zx93eXG7
L79[02:32:56] <PinkyC4> but the thing still wont work, nothing happens on ctrl+c
L80[02:34:46] <PinkyC4> could it be the os.sleep line that breaks things?
L81[02:36:19] <Kodos> possibly, what do you have set for refresh rate
L82[02:36:27] <PinkyC4> 1
L83[02:36:30] <PinkyC4> as in 1 second
L84[02:36:41] ⇨ Joins: LeshaInc (~LeshaInc@92.51.56.111)
L85[02:39:47] <PinkyC4> maybe there is a better way to get the delay?
L86[02:39:56] * Ember_Primrose phases back as a small kitty
L87[02:40:34] * Ember_Primrose slaps BlueStacks
L88[02:40:34] * EnderBot2 high-fives Ember_Primrose
L89[02:43:53] <Ember_Primrose> %stats
L90[02:43:55] <MichiBot> Ember_Primrose: Stats provided by Lizzy: http://www.theender.net/stats/oc.html
L91[03:00:51] ⇦ Quits: alekso56 (~znc@2001:464b:c2aa:0:745d:45ff:fe3b:a098) (Ping timeout: 202 seconds)
L92[03:01:08] <Luchong> hey guys, I was trying the tablet in oc and I was wondering. Is it possible to analyze the block I am aiming at?
L93[03:01:46] <Forecaster> dunno
L94[03:02:16] ⇨ Joins: alekso56 (~znc@2001:464b:c2aa:0:745d:45ff:fe3b:a098)
L95[03:02:19] <Luchong> I read something about holding right button but that just does a beep
L96[03:02:20] ⇦ Quits: Dark (~MrDark@cpe-76-181-157-113.columbus.res.rr.com) (*.net *.split)
L97[03:02:21] ⇦ Quits: Reika (~Reika@reika.kalseki.mods.abrarsyed.com) (*.net *.split)
L98[03:02:21] ⇦ Quits: Lathanael|Away (~Lathanael@p54960924.dip0.t-ipconnect.de) (*.net *.split)
L99[03:02:21] ⇦ Quits: CompanionCube (samis@irc.companioncube.me) (*.net *.split)
L100[03:02:21] ⇦ Quits: Cazzar (~CazzarZNC@vocaloid.lovers.at.cazzar.net) (*.net *.split)
L101[03:02:21] ⇦ Quits: scj643 (~quassel@scj.theender.net) (*.net *.split)
L102[03:02:21] ⇦ Quits: KR (~KR@znc.squelch.chat) (*.net *.split)
L103[03:02:21] ⇦ Quits: ds84182 (~ds84182@hekate.pc-logix.com) (*.net *.split)
L104[03:02:21] ⇦ Quits: EnderBot2 (enderbot2@athar.theender.net) (*.net *.split)
L105[03:02:21] ⇦ Quits: Light_Alch (~Light@helium.nk3r.com) (*.net *.split)
L106[03:02:21] ⇦ Quits: gAway2002 (~g@ultros.tentacles.are.evidently.sexy) (*.net *.split)
L107[03:02:21] ⇦ Quits: Wuerfel_2 (~Wuerfel21@bronyville.me) (*.net *.split)
L108[03:02:21] ⇦ Quits: KDDLB (kevin@losno.co) (*.net *.split)
L109[03:02:21] ⇦ Quits: Hyst (cxsss1@CPE-124-189-28-144.bkzh1.cht.bigpond.net.au) (*.net *.split)
L110[03:02:21] ⇦ Quits: Izaya (~Izaya@210.1.213.55) (*.net *.split)
L111[03:02:21] ⇦ Quits: brayden (~brayden@163.47.16.134) (*.net *.split)
L112[03:02:21] ⇦ Quits: SuPeRMiNoR2 (~SuPeR@2607:5300:60:1b63::1) (*.net *.split)
L113[03:02:21] ⇦ Quits: lacsap (~lacsap@modemcable071.26-83-70.mc.videotron.ca) (*.net *.split)
L114[03:02:21] ⇦ Quits: Kasen (~rakiru@198.50.204.214) (*.net *.split)
L115[03:02:21] ⇦ Quits: panda_2134 (~panda_213@ss1.flamerat.org) (*.net *.split)
L116[03:02:21] ⇦ Quits: Tiktalik (~tiktalik@2607:fcd0:daaa:1400:f::4) (*.net *.split)
L117[03:02:21] ⇦ Quits: progwml6 (~progwml6@104.168.20.187) (*.net *.split)
L118[03:02:21] ⇦ Quits: Cryptek (thecryptek@ircbouncehouse.com) (*.net *.split)
L119[03:02:21] ⇦ Quits: lashtear (~lashtear@cpe-50-113-67-84.san.res.rr.com) (*.net *.split)
L120[03:02:21] ⇦ Quits: Hobbyboy (Hobbyboy@hobbyboy.co.uk) (*.net *.split)
L121[03:02:21] ⇦ Quits: SpiritedDusty (~SpiritedD@hekate.pc-logix.com) (*.net *.split)
L122[03:02:21] ⇦ Quits: Naomi (~Naomi@2607:5300:60:9553::1bad:babe) (*.net *.split)
L123[03:02:21] ⇦ Quits: Greenphlem (uid22276@id-22276.tooting.irccloud.com) (*.net *.split)
L124[03:02:21] ⇦ Quits: CiPeW (Csstform@lightning.bouncer.ml) (*.net *.split)
L125[03:02:21] ⇦ Quits: Lucifer (sid32492@id-32492.charlton.irccloud.com) (*.net *.split)
L126[03:02:21] ⇦ Quits: johnlage (johnlage@2604:880:a:7::fda) (*.net *.split)
L127[03:02:21] ⇦ Quits: ` (justastran@python.bouncer.ml) (*.net *.split)
L128[03:02:21] ⇦ Quits: Lymia (~lymia@magical.girl.lyrical.lymia.moe) (*.net *.split)
L129[03:02:21] ⇦ Quits: dan2wik (~evil_dan2@2a01:4f8:160:9023::4) (*.net *.split)
L130[03:02:21] ⇦ Quits: zsh (zsh@services.esper.net) (*.net *.split)
L131[03:02:26] <^v> Oh noes! services,chaos,nova split 3:
L132[03:02:28] ⇨ Joins: Lathanael|Away (~Lathanael@p54960924.dip0.t-ipconnect.de)
L133[03:02:28] ⇨ Joins: CompanionCube (samis@irc.companioncube.me)
L134[03:02:28] ⇨ Joins: KR (~KR@znc.squelch.chat)
L135[03:02:28] ⇨ Joins: Cazzar (~CazzarZNC@vocaloid.lovers.at.cazzar.net)
L136[03:02:28] ⇨ Joins: scj643 (~quassel@scj.theender.net)
L137[03:02:28] ⇨ Joins: ds84182 (~ds84182@hekate.pc-logix.com)
L138[03:02:28] ⇨ Joins: EnderBot2 (enderbot2@athar.theender.net)
L139[03:02:28] ⇨ Joins: Light_Alch (~Light@helium.nk3r.com)
L140[03:02:28] ⇨ Joins: gAway2002 (~g@ultros.tentacles.are.evidently.sexy)
L141[03:02:28] ⇨ Joins: Wuerfel_2 (~Wuerfel21@bronyville.me)
L142[03:02:28] ⇨ Joins: KDDLB (kevin@losno.co)
L143[03:02:28] ⇨ Joins: Hyst (cxsss1@CPE-124-189-28-144.bkzh1.cht.bigpond.net.au)
L144[03:02:28] ⇨ Joins: Izaya (~Izaya@210.1.213.55)
L145[03:02:28] ⇨ Joins: brayden (~brayden@163.47.16.134)
L146[03:02:28] ⇨ Joins: SuPeRMiNoR2 (~SuPeR@2607:5300:60:1b63::1)
L147[03:02:28] ⇨ Joins: lacsap (~lacsap@modemcable071.26-83-70.mc.videotron.ca)
L148[03:02:28] ⇨ Joins: Kasen (~rakiru@198.50.204.214)
L149[03:02:28] ⇨ Joins: panda_2134 (~panda_213@ss1.flamerat.org)
L150[03:02:28] ⇨ Joins: Tiktalik (~tiktalik@2607:fcd0:daaa:1400:f::4)
L151[03:02:28] ⇨ Joins: progwml6 (~progwml6@104.168.20.187)
L152[03:02:28] ⇨ Joins: Cryptek (thecryptek@ircbouncehouse.com)
L153[03:02:28] ⇨ Joins: lashtear (~lashtear@cpe-50-113-67-84.san.res.rr.com)
L154[03:02:28] ⇨ Joins: Hobbyboy (Hobbyboy@hobbyboy.co.uk)
L155[03:02:28] ⇨ Joins: SpiritedDusty (~SpiritedD@hekate.pc-logix.com)
L156[03:02:28] stormlight.esper.net sets mode: +o on SpiritedDusty
L157[03:02:28] ⇨ Joins: dan2wik (~evil_dan2@2a01:4f8:160:9023::4)
L158[03:02:28] ⇨ Joins: Naomi (~Naomi@2607:5300:60:9553::1bad:babe)
L159[03:02:28] ⇨ Joins: Greenphlem (uid22276@id-22276.tooting.irccloud.com)
L160[03:02:28] ⇨ Joins: CiPeW (Csstform@lightning.bouncer.ml)
L161[03:02:28] ⇨ Joins: Lucifer (sid32492@id-32492.charlton.irccloud.com)
L162[03:02:28] ⇨ Joins: johnlage (johnlage@2604:880:a:7::fda)
L163[03:02:28] ⇨ Joins: ` (justastran@python.bouncer.ml)
L164[03:02:28] ⇨ Joins: Lymia (~lymia@magical.girl.lyrical.lymia.moe)
L165[03:02:29] <EnderBot2> Ohai there Lizzy
L166[03:03:00] <Sangar> when you have a geolyzer in the tablet, holding right will give you an event on the beep with some info on the block
L167[03:03:04] <PinkyC4> Kodos: i tried simply removing the os.sleep. no difference on ctrl+c functionality :(
L168[03:03:22] <Kodos> You should probably ask someone who is more awake
L169[03:03:24] <Luchong> ohhh so that was it
L170[03:03:31] <Luchong> thanks sangar
L171[03:03:37] <Sangar> np
L172[03:03:40] <Forecaster> PinkyC4: what are you doing?
L173[03:03:57] <PinkyC4> trying to make my script handle soft interrupt (ctrl+c)
L174[03:04:15] <Forecaster> you have to use event.pull instead of sleep
L175[03:04:23] <Forecaster> and catch the "interrupted" event
L176[03:05:18] <PinkyC4> Forecaster: relevant code from my script here: http://pastebin.com/DQSmFQvL
L177[03:05:40] <Forecaster> local ev = event.pull(seconds-to-wait, "interrupted")
L178[03:06:00] <Forecaster> if ev not nil then #do closing stuff# end
L179[03:06:17] <Forecaster> "This page has been removed!"
L180[03:06:27] <PinkyC4> ok i'll give that a try. what about the event listener, do i get rid of that?
L181[03:06:40] ⇨ Joins: Dark (~MrDark@cpe-76-181-157-113.columbus.res.rr.com)
L182[03:06:40] ⇨ Joins: Reika (~Reika@reika.kalseki.mods.abrarsyed.com)
L183[03:06:52] <Forecaster> you use either method
L184[03:07:00] <Forecaster> I don't know what you're doing with the event listener
L185[03:08:34] <Forecaster> the paste you linked doesn't exist anymore
L186[03:08:59] <PinkyC4> not sure if event listener works the same way as in java.. but i'm used to registering an event listener, and then that sits there and executes on the appropriate event regardless of where we are in the rest of the code
L187[03:09:02] <PinkyC4> hang on..
L188[03:09:14] <Forecaster> yes, that is what it does
L189[03:09:22] <PinkyC4> should work :/ http://pastebin.com/DQSmFQvL
L190[03:09:31] <PinkyC4> works for me
L191[03:10:19] <Forecaster> its not "interrupt", it's "interrupted"
L192[03:10:32] <PinkyC4> *facepalm*
L193[03:10:35] <PinkyC4> thank you
L194[03:10:41] <PinkyC4> lemme try that
L195[03:11:53] <PinkyC4> nope
L196[03:12:45] <PinkyC4> but, would that event listener work while we're in a os.sleep? these things are very single threaded, right?
L197[03:13:23] <Forecaster> yes
L198[03:13:34] <Forecaster> lua is single threaded
L199[03:13:47] <Kodos> Have you thought about using a handler instead of a listener, and just switch the state of stopRunning when 'interrupted' is popped?
L200[03:14:33] ⇨ Joins: zsh (zsh@services.esper.net)
L201[03:14:33] *** stormlight.esper.net sets mode: +o zsh
L202[03:14:45] <PinkyC4> is that not what i'm doing? the method called when the listener is triggered is the handler? no?
L203[03:15:00] * PinkyC4 's brain hurts
L204[03:15:09] ⇨ Joins: techno156 (~techno156@137.154.59.162)
L205[03:15:11] <Kodos> https://pastebin.com/WNQsW2iT This is my program that uses an event handler
L206[03:15:51] <PinkyC4> oh right
L207[03:17:11] <PinkyC4> well that's basically what Forecaster just suggested. I'll give it a go
L208[03:18:50] <PinkyC4> what the..? ok now the listener version started working
L209[03:19:12] <PinkyC4> i dont even..
L210[03:19:20] <Forecaster> did you reboot the computer?
L211[03:19:27] <Ember_Primrose> o/
L212[03:19:38] <Forecaster> hi ember
L213[03:19:51] * Ember_Primrose punches BlueStacks
L214[03:19:57] <Kodos> r00d
L215[03:19:58] <PinkyC4> yes that was the easiest way to exit the script until a few seconds ago
L216[03:20:25] <Forecaster> when you register event listeners they stay registered until you reboot
L217[03:20:25] <PinkyC4> ok another reboot and it stopped working again
L218[03:20:30] <Forecaster> even if the script ends
L219[03:20:46] <Kodos> Forecaster, unless you event.ignore them
L220[03:20:53] <Kodos> As stated in the wiki
L221[03:20:53] <PinkyC4> Forecaster: in the handler method i do ignore
L222[03:21:06] <Forecaster> ah
L223[03:21:25] <PinkyC4> well now it's not working again
L224[03:21:38] <PinkyC4> O_o
L225[03:21:43] <Forecaster> print some debug output?
L226[03:22:00] <Ember_Primrose> Forecaster, what did you want to show me?
L227[03:22:15] <Forecaster> show you? o.o
L228[03:22:33] <Ember_Primrose> Forecaster: looks like, so I hope you see that properly when you return tomorrow
L229[03:22:44] <Ember_Primrose> i love bouncers
L230[03:23:00] <Forecaster> yes, that was what I wanted you to see :3
L231[03:23:26] <Ember_Primrose> :D
L232[03:23:41] <Forecaster> to make sure the bouncyness worked :D
L233[03:24:14] <Ember_Primrose> :P
L234[03:24:20] <Ember_Primrose> what are you up to?
L235[03:24:42] <Forecaster> booting up my instance :P
L236[03:25:19] <Ember_Primrose> might as well do the same as bluestacks
L237[03:25:25] *** Keridos|away is now known as Keridos
L238[03:25:28] * Ember_Primrose strangles bluestacks
L239[03:25:35] <Forecaster> what's bluestacks?
L240[03:25:38] <Ember_Primrose> stop thinking logically now
L241[03:25:44] <Ember_Primrose> android emu
L242[03:25:56] <Forecaster> ah
L243[03:26:40] <Ember_Primrose> the bouncer saved my ass as well as my internet died and my pc refused to connect to the wifi
L244[03:26:40] <Forecaster> sounds like fun :P
L245[03:28:21] * Ember_Primrose is now playing: NGHTMRE - MTRD 128 kbps (Audio Only) - Winamp *** 4. NGHTMRE - MTRD 128 kbps (Audio Only)
L246[03:28:29] <Forecaster> o3o
L247[03:28:33] * Ember_Primrose slaps winamp
L248[03:28:34] * EnderBot2 laughs
L249[03:28:56] <PinkyC4> winamp? oh that was a long time ago :D
L250[03:28:59] <Ember_Primrose> i keep forgetting that i need to turn that of when i reboot
L251[03:29:10] * Forecaster hugs AIMP3
L252[03:29:23] <Ember_Primrose> i am more of a multi user
L253[03:29:38] <Forecaster> ?
L254[03:30:12] <Ember_Primrose> i use winamp, vlc, itunes, groove, moovida and others i can't recall atm
L255[03:30:49] <Forecaster> I use AIMP3 for music because it's great, and VLC for video, that's all I need :P
L256[03:31:21] <Ember_Primrose> i use vlc mainly for converting
L257[03:32:07] <Ember_Primrose> or i use fruity loops to enhance the songs
L258[03:32:48] <Forecaster> I download songs as mp3, I never need to convert anything
L259[03:33:40] ⇦ Quits: zsh (zsh@services.esper.net) (shutting down)
L260[03:33:50] ⇨ Joins: zsh (zsh@services.esper.net)
L261[03:33:50] *** stormlight.esper.net sets mode: +o zsh
L262[03:34:23] <Ember_Primrose> i dl multiple formats, eg bandcamp uses flac
L263[03:37:13] ⇨ Joins: Keanu73 (~Keanu73@host-92-28-79-109.as13285.net)
L264[03:38:58] <Forecaster> bandcamp offers mp3 as well
L265[03:39:00] * Izaya uses mpd to play music and mpv (or occasionally VLC) to play videos
L266[03:39:16] <Izaya> all of the above support whatever weird shit I throw at it
L267[03:40:00] * Ember_Primrose cant type properly as see is currently cleaning keycaps
L268[03:40:08] <Ember_Primrose> s/see/she
L269[03:40:08] <MichiBot> <Ember_Primrose> *** cant type properly as she is currently cleaning keycaps
L270[03:49:05] *** Keridos is now known as Keridos|away
L271[03:49:28] <Luchong> hmm i added myself as a user of my computer and other players can still type on my keyboard. I'm the only user and the config is set to "canComputersBeOwned=true". Am I doing something wrong?
L272[03:49:52] *** Keridos|away is now known as Keridos
L273[03:49:57] <Forecaster> payonel: ^
L274[03:52:18] <Kodos> Did you try turning it off and back on again?
L275[03:52:31] <Luchong> haha yeah
L276[03:56:11] ⇦ Quits: techno156 (~techno156@137.154.59.162) (Ping timeout: 198 seconds)
L277[04:01:22] <Luchong> maybe it has something to do with playing LAN instead of online? i doubt it
L278[04:01:27] <Luchong> i dont get it
L279[04:04:46] ⇨ Joins: Inari (~Pinkishu@p5DEC6D08.dip0.t-ipconnect.de)
L280[04:05:59] <Ember_Primrose> ohai
L281[04:06:42] <Izaya> https://i.imgur.com/qZhSG80.png :D
L282[04:06:49] <Izaya> they all match hashes published on the M$ site
L283[04:07:07] <Izaya> They won't include any more malware than Windows 7 SP1 comes with :D
L284[04:07:08] <Ember_Primrose> :D
L285[04:07:22] <Kodos> Don't you still need serials?
L286[04:07:32] <Izaya> Kodos: Windows Loader
L287[04:07:40] <Izaya> also does KMSpico work on Windows 7?
L288[04:09:10] ⇦ Quits: Kodos (~Kodos@2602:306:ce20:6c30:94f:211:6ae9:e4ad) (Quit: Leaving)
L289[04:10:43] <Inari> "Since J-List is involved in licensing and localizing eroge and visual novels, I can confirm that every day involves interacting with super cute moe staff members who are hopelessly cute and clumsy. That's my story, and I'm sticking to it. " haha
L290[04:13:35] <Ember_Primrose> \o/
L291[04:13:38] <Ember_Primrose> Im done
L292[04:14:19] <Izaya> So when both your Linux and Windows use the same icon theme, and when you're using the Industrial gtk theme, they blend fairly well
L293[04:15:50] <Inari> http://imgur.com/gallery/vZmrH thats brilliant
L294[04:17:53] <Ember_Primrose> lol
L295[04:22:22] <Inari> right
L296[04:22:26] * Inari goes to soak some logs in wood
L297[04:23:30] <Forecaster> mm liquid wood
L298[04:24:43] ⇨ Joins: Yepoleb (~yepoleb@178-190-225-183.adsl.highway.telekom.at)
L299[04:26:50] <Inari> #TeamToaster
L300[04:28:12] <Ember_Primrose> waht?
L301[04:29:49] ⇦ Quits: rikai (~quassel@rekd.net) (Ping timeout: 201 seconds)
L302[04:29:49] *** brandon3055|Zz is now known as brandon3055
L303[04:30:02] <Forecaster> the ways of the Inari are mysterious
L304[04:30:05] <Forecaster> and lewd
L305[04:36:53] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L306[04:38:23] *** Ember_Primrose is now known as Ember_Primrose|Away
L307[04:38:50] ⇦ Parts: Ember_Primrose|Away (Ember_Prim@2001:19f0:6800:8161:dead:beef:bad:babe) ())
L308[04:39:30] ⇨ Joins: Ember_Primrose (Ember_Prim@2001:19f0:6800:8161:dead:beef:bad:babe)
L309[04:47:45] *** gAway2002 is now known as g
L310[04:51:43] ⇨ Joins: Nathan1852 (~Nathan185@HSI-KBW-109-192-133-159.hsi6.kabel-badenwuerttemberg.de)
L311[04:52:14] * Skye pokes Inari with a (turned off) soldering iron
L312[04:54:24] <Ember_Primrose> o/
L313[04:55:18] ⇦ Quits: Keanu73 (~Keanu73@host-92-28-79-109.as13285.net) (Quit: Gotta go to bed or something. See ya!)
L314[04:58:04] ⇨ Joins: Jezza (~Jezza@92.206.5.6)
L315[04:58:37] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L316[05:02:42] * Inari pokes Skye with tampon-shaped marshmallows
L317[05:03:19] * Ember_Primrose sits on Inari 's shoulder
L318[05:03:35] ⇦ Quits: alekso56 (~znc@2001:464b:c2aa:0:745d:45ff:fe3b:a098) (Ping timeout: 202 seconds)
L319[05:04:08] * Lizzy groans
L320[05:05:43] <Lizzy> this time in two weeks, i'll be waking up next to ma vifino :)
L321[05:05:47] * Lizzy kisses her Vic
L322[05:05:51] <Lizzy> ffs
L323[05:05:56] * Lizzy unkisses Vic
L324[05:06:01] * Lizzy kisses her vifino
L325[05:06:02] <Inari> lmao
L326[05:06:16] <Ember_Primrose> o/
L327[05:06:28] ⇨ Joins: alekso56 (~znc@2001:464b:c2aa:0:745d:45ff:fe3b:a098)
L328[05:06:28] <Lizzy> meanwhile my dad's pc is chugging away uninstalling steam games from it
L329[05:06:52] <Lizzy> Ember_Primrose, what v6 endpoint did you want again?
L330[05:06:55] <Ember_Primrose> have you backed them up?
L331[05:07:06] <Ember_Primrose> a what
L332[05:07:23] <Lizzy> the ipv6 address stuff we were talking about yesterday
L333[05:07:25] <Ember_Primrose> oh the deadbeef stuff
L334[05:07:59] <Lizzy> Ember_Primrose, I don't need to, i don't use that pc anymore so i'm removing some of my stuff from it in the hopes of allowing it to go slightly faster
L335[05:08:04] * Skye hugs her Vic :P
L336[05:08:17] <Lizzy> Ember_Primrose, yeah, fell asleep before i could put it in
L337[05:08:24] <Ember_Primrose> :D15:3453 < disease
L338[05:08:29] * GreaseMonkey hugs his Vic but only because he doesn't have a VIC-20
L339[05:08:35] <Lizzy> is that your final answer?
L340[05:08:39] <Lizzy> :P
L341[05:08:39] <Ember_Primrose> positive
L342[05:08:42] <Lizzy> cool
L343[05:09:02] <Ember_Primrose> Lizzy, am i a millionaire now?
L344[05:09:17] <Ember_Primrose> :D
L345[05:12:41] * Skye baps GreaseMonkey with her Vic
L346[05:13:39] <Lizzy> Ember_Primrose, added, do /znc reconnect whenever it is convenient for you to switch to it
L347[05:14:02] <Ember_Primrose> doing it now
L348[05:14:55] ⇦ Quits: Ember_Primrose (Ember_Prim@2001:19f0:6800:8161:dead:beef:bad:babe) (Quit: EnderNet BNC!)
L349[05:14:58] ⇨ Joins: Ember_Primrose (Ember_Prim@2001:19f0:6800:8161::d15:3453)
L350[05:15:03] <Lizzy> there you go
L351[05:15:18] <Ember_Primrose> :D
L352[05:15:25] * Ember_Primrose hugs Lizzy
L353[05:15:39] * Lizzy hugs Ember_Primrose
L354[05:15:44] * Ember_Primrose hugs her IP
L355[05:16:11] <Skye> someone whois me! :p
L356[05:16:27] <g> Skye, try mine
L357[05:16:28] <g> :P
L358[05:16:43] <Skye> g, lewd
L359[05:16:45] <Lizzy> lol this pc is still uninstalling the 20 or so steam games on it
L360[05:16:46] <g> :3
L361[05:17:09] <Lizzy> g, lol. don't tell Inari :P
L362[05:17:13] <g> Kasen has a lewd one as well
L363[05:17:14] <g> Lizzy, lol
L364[05:17:20] <g> oh, no, he doesn't
L365[05:17:25] <g> guess he never reset his rdns
L366[05:17:39] <g> it used to be something like `hi.i.just.wanted.to.say.that.incest.is.wince.st`
L367[05:17:56] <g> nsfw site, by the way
L368[05:17:58] <g> if it wasn't obvious
L369[05:18:16] <Inari> seen g's already :P
L370[05:18:23] <g> would be surprised if you hadn't :P
L371[05:18:36] <Skye> g, I once shipped someone with their alt nickname as a joke
L372[05:18:46] <Ember_Primrose> the only problem with getting a bouncer is that hexchat forgot my Friends list
L373[05:18:52] <Ember_Primrose> but eh
L374[05:19:00] <g> oh right, I forgot it doesn't call it a notify list
L375[05:19:19] <Lizzy> you could always go find the config and look in that, probably
L376[05:19:27] <Inari> i find the concept of friends lists in irc clients weird
L377[05:19:44] <Ember_Primrose> no, cause fucking KAV deleted itr
L378[05:19:52] <Ember_Primrose> s/itr/it
L379[05:19:53] <MichiBot> <Ember_Primrose> no, cause fucking KAV deleted it
L380[05:19:56] <Lizzy> Ember_Primrose, ah
L381[05:20:06] <Lizzy> you should like, get a better AV
L382[05:20:07] * Ember_Primrose slaps KAV
L383[05:20:07] * EnderBot2 laughs
L384[05:22:53] <Skye> Get malwarebytes! :p
L385[05:24:10] <ThomasRules> how do I rotate a hologram?
L386[05:24:10] * Ember_Primrose slaps her router
L387[05:24:11] * EnderBot2 rulls on the floor laughing
L388[05:26:04] <Izaya> KAV?
L389[05:26:46] <Lizzy> Izaya, Kaspasky AntiVirus
L390[05:26:51] <Izaya> oh
L391[05:26:53] <Izaya> kek
L392[05:26:59] <Izaya> my mum had that
L393[05:27:14] <Izaya> she ended up replacing it with Avira
L394[05:27:14] <Ember_Primrose> free is makes it a better
L395[05:27:27] <Ember_Primrose> dammit
L396[05:27:33] <Izaya> I heard good things about whatisit uh
L397[05:27:36] <Izaya> ClamAV?
L398[05:27:44] <Lizzy> Ember_Primrose, Malwarebytes, Avast, AVG are good free ones
L399[05:28:06] <Ember_Primrose> by free i meant my dad bought a family pack so yea
L400[05:28:15] * Izaya does not use an AV on Windows
L401[05:28:26] * Ember_Primrose gasps
L402[05:28:32] * Izaya downloads only from trusted torrent uploaders, Steam and GOG
L403[05:28:44] <Izaya> I also don't use Windows Update.
L404[05:28:50] * Ember_Primrose sighs with relief
L405[05:29:02] <Izaya> Because that seems like a good way to get malware
L406[05:29:09] <Ember_Primrose> :P
L407[05:29:42] <Ember_Primrose> i dowload the updates through ie catalouge and then scan them
L408[05:30:04] <Lizzy> windows update is off on all my machines
L409[05:30:08] <Lizzy> that i own
L410[05:30:16] <Lizzy> (i.e. still on for work one)
L411[05:30:26] <Ember_Primrose> Lizzy, win #?
L412[05:30:31] <Izaya> I don't feel that Microsoft can protect my machine with Windows Update turned on any more than it can with it turned off
L413[05:30:59] <Lizzy> 8.1 on laptop (don't go onto it that much) 7 ultimate on desktop
L414[05:31:04] <Forecaster> I have updates on, never had problems with that or malware
L415[05:31:24] <Ember_Primrose> Lizzy, how is sikovia doing?
L416[05:31:38] <Izaya> I recently found a tool that lets me modify a Windows 7 iso to install any edition
L417[05:31:52] <Izaya> So I'm going to modify some ISOs
L418[05:31:59] <Ember_Primrose> :D
L419[05:32:05] <Izaya> I'll have MS verified ones plus a universal one
L420[05:32:22] <Izaya> No more malware than base Windows :D
L421[05:32:44] <Lizzy> Izaya, i have a disk that allows me to install any edition both 32 and 64 bit (except where there isn't a variant of one, like basic for example) of windows 7 and it pre-activates it
L422[05:32:57] <Izaya> Oh nice
L423[05:33:19] <ThomasRules> how do I rotate a hologram?
L424[05:33:30] <Izaya> I've been using a non-SP1 professional copy for a while, just x86_64
L425[05:33:32] <Forecaster> scrench on the projector
L426[05:34:11] <Izaya> Anyway I'm going to roll Windows Loader and KMSpico onto one ISO
L427[05:34:16] <Lizzy> fairly well. i started the re-developing i was planning, haven't got much further than that cause my laptop was struggling to simulate it past 2x speed on my laptop at 90k citizens and it's now at a 110k pop count
L428[05:34:23] <Skye> Lizzy, Izaya: I have a pre activated windows xp CD
L429[05:34:25] <Lizzy> and i'm not at my main pc this weekend
L430[05:34:48] <Izaya> perhaps a script to install Chocolatey on the DVD would be useful too
L431[05:35:18] <Ember_Primrose> Skye, i have a physical copy of Windows 95
L432[05:35:18] <Izaya> .stats
L433[05:35:19] <EnderBot2> We have channel stats provided by Liz \o/ http://www.theender.net/stats/oc.html
L434[05:35:25] <Skye> Ember_Primrose, same
L435[05:35:31] <Skye> and 98
L436[05:35:33] <Ember_Primrose> :D
L437[05:35:34] <Skye> and NT 4
L438[05:35:37] <Skye> and NT 3.51
L439[05:35:47] <Ember_Primrose> Lizzy, thats a same
L440[05:35:53] <Lizzy> ?
L441[05:36:02] <Ember_Primrose> s/same/shame
L442[05:36:03] * Izaya has a set of Solaris 10 CDs circa 2004
L443[05:36:03] <MichiBot> <Ember_Primrose> Lizzy, thats a shame
L444[05:36:07] <Lizzy> oh
L445[05:36:15] <Ember_Primrose> :d
L446[05:36:17] <Ember_Primrose> :D
L447[05:36:27] * Lizzy has a bad short term memory
L448[05:36:47] <Ember_Primrose> Lizzy, ditto
L449[05:37:04] <Ember_Primrose> but my long term memory is good
L450[05:37:13] <Lizzy> also i was contemplating putting a boot splash on my laptop's arch install, but i decided it wouldn't be worth the effort cause it'd only be up for a split second
L451[05:41:03] <Skye> Ember_Primrose, Lizzy: my memory hates me, it remembers unimportant things that stress me out, and forgets important things that are actually important
L452[05:41:19] <Ember_Primrose> ^ +1
L453[05:41:36] <Lizzy> mine is patchy, it also has a tendency to remember weird stuff
L454[05:42:26] <Inari> haha dont get me started about odd memory :P
L455[05:42:55] <Izaya> Lizzy: you use Windows more than me, what are some tools that will make Windows more comfortable to use for a Linux user?
L456[05:42:58] <Inari> i keep forgetting htings, but have weird associative memory that sometimes makes me recall reaallly distant things because of a very small relation to something in something i just saw or such
L457[05:42:58] <Inari> x.x
L458[05:43:05] <Ember_Primrose> Lizzy, is your setting on its lowest on yer laptop, stupid question i know, but eh
L459[05:43:40] <Lizzy> Ember_Primrose, it's not the graphics, it's the actual simulation of the movememnt of people and trucks and stuff
L460[05:43:53] <Ember_Primrose> Inari, that happens to me as well
L461[05:44:11] <Lizzy> Izaya, err, only one i can think of is Cygwin
L462[05:44:16] <Skye> I remember a windows xp pro service key
L463[05:44:26] <Ember_Primrose> Lizzy, aaaaaahhhhhh, run awayyy, the simulations are coming
L464[05:44:31] <Izaya> I can remember the numberplate on a car 3 years ago but not what I did yesterday
L465[05:44:50] <Izaya> Lizzy: I've got VcXsrv + two Linux VMs
L466[05:45:08] <Izaya> so actual Linux stuff is fine
L467[05:45:28] <Lizzy> I can remember the adsl password that we had in 2003
L468[05:46:21] <Izaya> OASESFIFEDTHEFTTEFFS24225 - WiFi password from 2+ years ago
L469[05:46:47] ⇦ Quits: Yepoleb (~yepoleb@178-190-225-183.adsl.highway.telekom.at) (Ping timeout: 384 seconds)
L470[05:48:27] * Lizzy is looking into setting up a container for steam on her aptop
L471[05:48:31] <Lizzy> *laptop
L472[05:50:11] <Ember_Primrose> that is a good idea
L473[05:50:50] <Skye> my laptop needs a bigger HHD
L474[05:50:52] <Skye> *HDD
L475[05:51:23] ⇦ Quits: Forecaster (~Forecaste@83.223.21.91) (Read error: Connection reset by peer)
L476[05:51:47] <Izaya> my laptop needs a smaller HDD
L477[05:51:49] <Izaya> I want to get like
L478[05:51:52] <Izaya> a 64GB SSD
L479[05:51:59] <Izaya> so I don't even think about installing Windows on it
L480[05:52:35] * Inari puts strawberry scented rosebud lip balm onto Skye lips and runs off
L481[05:52:53] <Lizzy> my arch install is currently on a 240GB M.2 SSD
L482[05:52:55] <Skye> Inari, why?
L483[05:53:24] * Skye tilts her head
L484[05:53:30] ⇨ Joins: Forecaster (~Forecaste@83.223.21.91)
L485[05:53:33] <Lizzy> /dev/sda1 221G 164G 46G 79% /
L486[05:53:34] <Inari> Skye: why not
L487[05:53:52] <Skye> why did you do that? O_o
L488[05:54:59] * Ember_Primrose piggybacks Inari
L489[05:55:12] <Inari> Skye: dunno, why not
L490[05:55:26] * Skye pouts
L491[05:55:34] <Inari> lol
L492[05:56:32] <Lizzy> hmm, do i want to set up this container for steam as ubuntu or arch...
L493[05:57:29] <Skye> Lizzy, debain
L494[05:57:35] <Skye> steamOS is debain based
L495[05:57:42] <Skye> steam is for debain, IIRC
L496[05:57:47] <Lizzy> it's ubuntu based last time i checked
L497[05:58:33] <Lizzy> https://support.steampowered.com/kb_article.php?ref=1504-QHXN-8366
L498[05:58:48] <Lizzy> "Currently, Steam for Linux is only supported on Ubuntu 12.04 LTS or 12.10 with the Unity, Gnome, or KDE desktop."
L499[05:58:54] <Forecaster> time for pandalism http://imgur.com/gallery/srLWF
L500[06:02:05] ⇨ Joins: techno156 (~techno156@137.154.59.162)
L501[06:07:55] ⇦ Quits: ping (~v^@me.pxtst.com) (Ping timeout: 190 seconds)
L502[06:11:30] ⇨ Joins: ping (~v^@me.pxtst.com)
L503[06:11:30] zsh sets mode: +v on ping
L504[06:12:53] <ThomasRules> http://puu.sh/qcC26/9c403ba0ba.png
L505[06:13:57] <ThomasRules> anyone help with that error?
L506[06:15:01] <Forecaster> code?
L507[06:15:58] <ThomasRules> http://pastebin.com/Gs6Q5UgJ
L508[06:16:36] <ThomasRules> my specific error is 'bad argument #2 (number expected, got number)
L509[06:17:11] <Forecaster> hm, it doesn't have a line oO
L510[06:17:33] <ThomasRules> or indeed, any sense
L511[06:17:41] <ThomasRules> number expected, got number?
L512[06:18:13] <Forecaster> is this the tablet program?
L513[06:18:27] <ThomasRules> no, it displays info for the lobby
L514[06:19:27] <Forecaster> strange
L515[06:20:23] <Forecaster> comment things out until it stops doing that to find what's causing it
L516[06:20:25] <Forecaster> then debug that
L517[06:20:36] <ThomasRules> problem is, all I changed was the table
L518[06:20:49] ⇨ Joins: papare (~papare@43.210.20.95.dynamic.jazztel.es)
L519[06:21:14] <papare> hola
L520[06:21:22] <Forecaster> pandas
L521[06:21:32] ⇦ Quits: papare (~papare@43.210.20.95.dynamic.jazztel.es) (Client Quit)
L522[06:21:42] <ThomasRules> this works perfectly: https://github.com/ThomasRules2000/ThomasOCPrograms/blob/master/BTMLobby/BTMLobbyAndPanels.lua
L523[06:22:21] ⇨ Joins: papare (~papare@43.210.20.95.dynamic.jazztel.es)
L524[06:22:56] <papare> hola soy dani
L525[06:23:22] <Forecaster> okay
L526[06:23:30] <papare> hello
L527[06:23:40] <Forecaster> hi
L528[06:23:46] <papare> my name is papar
L529[06:23:50] <papare> papare
L530[06:23:55] <Forecaster> I can see that
L531[06:24:31] <Ember_Primrose> :D
L532[06:24:44] <papare> :D
L533[06:26:12] ⇦ Quits: papare (~papare@43.210.20.95.dynamic.jazztel.es) (Client Quit)
L534[06:26:39] <Ember_Primrose> :D
L535[06:27:16] <Forecaster> allrighty then
L536[06:27:51] ⇨ Joins: pablo (~dan@43.210.20.95.dynamic.jazztel.es)
L537[06:28:05] <Forecaster> hello again
L538[06:28:08] ⇨ Joins: papare (~papare@43.210.20.95.dynamic.jazztel.es)
L539[06:28:12] <pablo> hello
L540[06:28:19] <papare> hello
L541[06:28:25] <Forecaster> Lizzy: double login here
L542[06:28:54] <pablo> there are two computers
L543[06:29:16] <pablo> papare s
L544[06:29:24] <pablo> papare is two username
L545[06:29:58] <Forecaster> uh, what
L546[06:30:31] ⇦ Quits: papare (~papare@43.210.20.95.dynamic.jazztel.es) (Client Quit)
L547[06:30:44] <Ember_Primrose> :S
L548[06:30:54] <pablo> goodbye papare
L549[06:30:59] <pablo> - one
L550[06:31:53] <pablo> are opening two username and closing me
L551[06:32:04] * Forecaster sits and waits for ores and dusts to be processed
L552[06:32:06] <Forecaster> that's nice
L553[06:32:10] ⇨ Joins: papare (~papare@43.210.20.95.dynamic.jazztel.es)
L554[06:32:14] ⇦ Quits: pablo (~dan@43.210.20.95.dynamic.jazztel.es) (Client Quit)
L555[06:32:29] * Ember_Primrose is infecting the world
L556[06:32:48] <papare> infecting world
L557[06:32:57] <papare> infecting world?
L558[06:33:27] <papare> Ember is infecting world?
L559[06:33:53] <Forecaster> Temia: then you are about as hurt as I was :P
L560[06:33:57] ⇨ Joins: CoderPuppy (~cpup@32.218.116.201)
L561[06:34:05] <Lizzy> Forecaster, wat?
L562[06:34:12] <papare> hello CoderFuppy
L563[06:34:39] <Forecaster> papare here was logged in with two user names
L564[06:35:06] <Lizzy> no i was watting at the message to temia
L565[06:35:14] ⇦ Quits: papare (~papare@43.210.20.95.dynamic.jazztel.es) (Client Quit)
L566[06:35:21] <Forecaster> oh, that was in reply to something yesterday
L567[06:35:25] <Forecaster> :P
L568[06:35:30] ⇨ Joins: pablo (~dan@43.210.20.95.dynamic.jazztel.es)
L569[06:35:44] <Lizzy> oh, k
L570[06:35:47] ⇦ Quits: pablo (~dan@43.210.20.95.dynamic.jazztel.es) (Client Quit)
L571[06:35:50] <Forecaster> from yesterday
L572[06:36:19] ⇨ Joins: pablo (~dan@43.210.20.95.dynamic.jazztel.es)
L573[06:36:38] <Forecaster> we were sassing
L574[06:36:52] <pablo> my computer there are a error and i been turn off
L575[06:37:02] <pablo> and i turn on
L576[06:37:23] ⇦ Quits: cpup (~cpup@32.218.114.118) (Ping timeout: 202 seconds)
L577[06:37:54] ⇨ Joins: Nentify (uid14943@id-14943.highgate.irccloud.com)
L578[06:38:07] <pablo> hello Nentify
L579[06:38:13] <Nentify> hi pablo
L580[06:40:36] <pablo> hello Nentify
L581[06:40:37] <pablo> back when finish the house that I build
L582[06:40:45] ⇦ Quits: pablo (~dan@43.210.20.95.dynamic.jazztel.es) (Client Quit)
L583[06:42:51] ⇨ Joins: pablo (~dan@43.210.20.95.dynamic.jazztel.es)
L584[06:42:56] <pablo> hello
L585[06:43:36] <Ember_Primrose> Forecaster, lol: http://imgur.com/gallery/cPENf
L586[06:44:08] <pablo> this is a url from internet
L587[06:44:34] <pablo> i got a bad proccesor
L588[06:44:41] <pablo> or not?
L589[06:44:55] <pablo> Intel Celeron is a Bad Proccesor?
L590[06:46:16] <Lizzy> yes
L591[06:48:07] <pablo> Intel Celeron is a Bad Proccesor?
L592[06:48:15] <pablo> I'll copy this program to a floppy disk
L593[06:48:22] <pablo> goodbye
L594[06:48:26] ⇦ Quits: pablo (~dan@43.210.20.95.dynamic.jazztel.es) (Quit: Proudly using WocChat!)
L595[06:48:36] <Lizzy> .-.
L596[06:49:24] ⇨ Joins: pablo (~dan@43.210.20.95.dynamic.jazztel.es)
L597[06:49:37] ⇨ Joins: cpup (~cpup@32.218.116.233)
L598[06:50:25] <pablo> hello cpup
L599[06:51:15] ⇦ Quits: CoderPuppy (~cpup@32.218.116.201) (Ping timeout: 190 seconds)
L600[06:51:37] <Forecaster> Ember_Primrose: hah >D
L601[06:53:19] <pablo> >(/
L602[06:54:43] ⇨ Joins: Yepoleb (~yepoleb@178-190-225-183.adsl.highway.telekom.at)
L603[06:55:19] ⇨ Joins: CoderPuppy (~cpup@32.218.116.246)
L604[06:56:28] ⇦ Parts: Stary2001 (Stary2001@praise.ipv6.fossil.stary2001.co.uk) (WeeChat 1.5))
L605[06:56:56] ⇨ Joins: Stary2001 (Stary2001@praise.ipv6.fossil.stary2001.co.uk)
L606[06:56:57] <Stary2001> ffs
L607[06:58:17] ⇦ Quits: cpup (~cpup@32.218.116.233) (Ping timeout: 192 seconds)
L608[06:58:26] <pablo> >(/which are floppy disks?
L609[06:58:27] <pablo> because in real life they are for old computers. I have one of those but does not work
L610[06:58:58] <Forecaster> I don't know what you're asking
L611[06:59:03] <pablo> because in real life they are for old computers. I have one of those but does not workwhich are floppy disks?
L612[06:59:33] <Forecaster> what are you trying to do?
L613[06:59:53] <pablo> because in real life they are for old computers. I have one of those but does not workwhich are floppy disks?What are floppy disks?
L614[07:00:07] <Forecaster> ...
L615[07:00:15] <pablo> because in real life they are for old computers. I have one of those bu/exiy
L616[07:00:19] <Forecaster> floppy disks are a storage medium
L617[07:00:26] <pablo> because in real life /exit
L618[07:00:37] ⇦ Quits: pablo (~dan@43.210.20.95.dynamic.jazztel.es) (Quit: Proudly using WocChat!)
L619[07:00:40] <Lizzy> ...
L620[07:00:46] <Forecaster> good lord
L621[07:02:00] <Forecaster> seems signing in with multiple names is a pretty good red flag
L622[07:02:05] <Forecaster> :I
L623[07:04:46] <Lizzy> fucks sake
L624[07:04:59] <Lizzy> just opened a pepsi bottle and it fissed over
L625[07:05:09] <Forecaster> :O
L626[07:05:16] <Forecaster> I'm not fond of pepsi
L627[07:05:22] <Forecaster> it tastes too sweet
L628[07:09:35] ⇦ Quits: alekso56 (~znc@2001:464b:c2aa:0:745d:45ff:fe3b:a098) (Ping timeout: 202 seconds)
L629[07:11:13] ⇨ Joins: alekso56 (~znc@2001:464b:c2aa:0:745d:45ff:fe3b:a098)
L630[07:15:36] <Sandra> https://www.youtube.com/watch?v=q_9SsX7HJhE
L631[07:15:36] <MichiBot> PEPSI ☆ MAN | length: 52s | Likes: 36067 Dislikes: 633 Views: 1394935 | by MowtenDoo
L632[07:15:48] <Sandra> did someone say pepsi?
L633[07:16:03] <Forecaster> yes :P
L634[07:18:24] <Forecaster> there apparently isn't a pepsi woman
L635[07:19:50] <Sandra> well, yeah..
L636[07:19:52] <Sandra> :P
L637[07:21:02] <Forecaster> http://i.imgur.com/wkK4WtE.jpg
L638[07:21:14] <Forecaster> that's an adorable duck
L639[07:21:16] <Ember_Primrose> lol
L640[07:22:22] <Dustpuppy> i have 2 of this ;-)
L641[07:22:25] <Ember_Primrose> has anyone played i am setsuna?
L642[07:22:41] <asie> Forecaster: a nice observation, my friend
L643[07:22:53] <asie> of course, we all know pepsi is an unhealthy bottle of sugar
L644[07:22:55] <asie> so that might be for the better
L645[07:23:24] <Forecaster> cola isn't much better, but I prefer the less sweet taste :P
L646[07:24:02] <Forecaster> Ember_Primrose: I have not
L647[07:24:47] <Forecaster> looks nice though
L648[07:28:05] * Lizzy drinks a lot of Pepsi Max
L649[07:29:12] <cloakable> \o/ completed my first Roguelike Dungeon. That was a challenge :D
L650[07:31:56] <Izaya> \o/ got Kodi set up on the TV computer
L651[07:32:02] <Izaya> now boots a minimal arch straight to Kodi
L652[07:32:33] <Izaya> can stream local TV and stuff
L653[07:32:34] <Izaya> tis good
L654[07:33:42] <Forecaster> what about remote TV?
L655[07:33:55] <Izaya> that's trickier
L656[07:33:58] * Ember_Primrose slaps the internet
L657[07:33:58] * EnderBot2 rulls on the floor laughing
L658[07:34:03] <Izaya> because generally streaming BBC requires a proxy
L659[07:34:38] <Izaya> and most other channels can die
L660[07:37:51] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L661[07:37:59] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L662[07:39:21] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L663[07:39:28] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L664[07:39:29] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L665[07:56:46] ⇨ Joins: Turtle (~SentientT@82-171-92-73.ip.telfort.nl)
L666[07:58:05] <Forecaster> http://imgur.com/gallery/Tw1CK
L667[08:01:45] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L668[08:02:11] ⇦ Quits: CoderPuppy (~cpup@32.218.116.246) (Ping timeout: 198 seconds)
L669[08:07:06] ⇨ Joins: Negi (~Poireau@2a01:e34:ef13:4150:de53:60ff:febc:baf1)
L670[08:07:35] <Izaya> https://a.pomf.cat/slirht.jpg
L671[08:07:44] ⇨ Joins: cpup (~cpup@32.218.117.138)
L672[08:08:13] <Izaya> https://a.pomf.cat/bzepqf.jpg
L673[08:12:54] <Ember_Primrose> Izaya, \o/
L674[08:14:41] <Dustpuppy> have some questions about microcontrollers. how can i replace os.sleep?
L675[08:15:00] <Forecaster> look at the openos code
L676[08:15:05] <Forecaster> steal it's os.sleep function
L677[08:16:27] <Forecaster> https://github.com/MightyPirates/OpenComputers/blob/b50d3872eebfcd2d2b34f323dea5d7842b31384e/src/main/resources/assets/opencomputers/loot/plan9k/bin/sleep.lua
L678[08:16:46] <Dustpuppy> good idea
L679[08:18:03] <Dustpuppy> next question : i got an error "string expected, got nil" without line number. how can i debug a script more comfortable? same program is working on a computer without problems
L680[08:18:45] * Ember_Primrose slaps Cities Skylines
L681[08:18:46] * EnderBot2 high-fives Ember_Primrose
L682[08:19:01] <Lizzy> Dustpuppy, add debug beeps
L683[08:19:10] <Ember_Primrose> Forecaster, you have a steam account?
L684[08:19:18] <Forecaster> yes
L685[08:19:47] <Ember_Primrose> apparently c:s is crashing due to a missing culture class
L686[08:19:54] <Ember_Primrose> Forecaster, i need is
L687[08:20:06] <Forecaster> forecaster71
L688[08:20:28] * Ember_Primrose high-fives Forecaster
L689[08:20:36] * Forecaster high-fives back
L690[08:21:06] <Ember_Primrose> added both
L691[08:22:34] <Inari> Dustpuppy: i'd liek toa lso know how to add line numbers :P
L692[08:25:09] <Forecaster> pretty sure edit shows the line the cursor is on
L693[08:25:26] <Forecaster> in the bottom right
L694[08:25:54] <Dustpuppy> ???
L695[08:26:21] <Dustpuppy> edit on a microcontroller will not work. it can't handle graphiccards
L696[08:26:27] <Lizzy> ^
L697[08:26:44] <Forecaster> you can't write the code there either...
L698[08:26:47] <Lizzy> also i remember one of my MCUs giving line numbers...
L699[08:26:56] * Ember_Primrose throws up arms in forfeit
L700[08:27:05] <Forecaster> oh you meant in the error messages?
L701[08:27:08] * Lizzy tackles Ember_Primrose to the ground
L702[08:27:10] <Lizzy> yes
L703[08:27:27] <Forecaster> yeah I'm pretty sure it's supposed to display those everywhere
L704[08:27:40] <Forecaster> or I would think it should at least
L705[08:28:34] * Ember_Primrose laughs and hugs Lizzy for cheering her up
L706[08:28:50] * Lizzy hugs Ember_Primrose back, then helps her up
L707[08:28:54] ⇨ Joins: CoderPuppy (~cpup@32.218.117.221)
L708[08:28:55] <Dustpuppy> http://imgur.com/a/BjtaO no line number
L709[08:28:57] <Ember_Primrose> Lizzy, C:S is giving me this crap :https://pastebin.com/eCwABDvE
L710[08:29:17] <Lizzy> Dustpuppy, i would suggest putting some computer.beep()'s around the code with different pitches to work out where it is roughly when it errors
L711[08:29:36] <Ember_Primrose> you can do that?
L712[08:29:40] <Lizzy> Dustpuppy, got the code?
L713[08:29:46] <Lizzy> Ember_Primrose, yeah, MCUs can beep
L714[08:30:03] <Lizzy> brb, grabbing a mouse
L715[08:30:11] <Ember_Primrose> :D, testing ALL THE BEEPS
L716[08:31:06] <Dustpuppy> Lizzy: http://pastebin.com/4bvsViHQ
L717[08:31:15] ⇦ Quits: cpup (~cpup@32.218.117.138) (Ping timeout: 202 seconds)
L718[08:31:26] <Lizzy> beeps and computronics' chat upgrade are really helpful
L719[08:32:36] <Lizzy> hmm
L720[08:32:59] <Lizzy> oh
L721[08:33:14] <Lizzy> you do realise that MCUs cant access external components, right?
L722[08:33:46] <Lizzy> Dustpuppy, ^
L723[08:33:47] <Dustpuppy> oh!
L724[08:33:58] <Dustpuppy> then this will never work ;-)
L725[08:34:08] <Lizzy> you can always use a T1 case
L726[08:34:53] <Dustpuppy> then i can leav it running on computer. put the case at position, where the mc is and finish
L727[08:36:11] <Ember_Primrose> Lizzy, can case pc's beep too
L728[08:36:31] <Lizzy> Ember_Primrose, yeah.. everything can beep
L729[08:36:38] <Mimiru> BEEEEEEEEEEEEEEEEEEEEEEEEP
L730[08:36:45] <Lizzy> so you could have a drone orchestra if you wanted
L731[08:36:48] <Lizzy> Morning Mimiru
L732[08:36:57] <Mimiru> Morning
L733[08:37:07] * Lizzy is waiting for mc to starat
L734[08:37:45] <Ember_Primrose> you know what beeps too? these fuckers : http://imgur.com/or2snI0
L735[08:38:13] <Forecaster> xD
L736[08:38:38] <Ember_Primrose> EVERY SINGLE TIME I CALL ONE
L737[08:39:09] <Forecaster> I have GTAV but haven't touched it yet
L738[08:39:16] <Forecaster> because my computer is too crap
L739[08:39:53] <Ember_Primrose> the same due too my gpu
L740[08:40:50] * Lizzy needs to update her MCU codes
L741[08:41:33] <Lizzy> also hmm, do i want to keep using MCUs for this task or switch to T1 cases then use the digital controller boxes....
L742[08:43:22] <Ember_Primrose> s/too/to
L743[08:43:23] <Ember_Primrose> mcu codes?
L744[08:43:24] <MichiBot> <Ember_Primrose> the same due to my gpu
L745[08:44:46] <Lizzy> I have MCUs that control my signals but the code was originally set up for left-hand traffic and i recently switched to right-hand travel on my rail network to be compatable with Antheus and Techokami's areas
L746[08:46:32] <Lizzy> %tell Vexatos Could we have the ability to name digital detectors?
L747[08:46:33] <MichiBot> Lizzy: Vexatos will be notified of this message when next seen.
L748[08:47:34] * Lizzy prods vifino
L749[08:48:48] ⇦ Quits: VikeStep (~VikeStep@101.184.243.180) (Quit: Leaving)
L750[08:49:27] *** medsouz|offline is now known as medsouz
L751[08:49:53] <Forecaster> https://www.youtube.com/watch?v=5pSnMdjW0eU
L752[08:49:54] <MichiBot> Little Inferno - Patron Game of the Week! (BURN IT ALL, BURN IT ALL) | length: 19m 46s | Likes: 111 Dislikes: 1 Views: 999 | by RageGamingVideos
L753[08:50:08] <Forecaster> so this seems like a nice little wholesome game, fun for the whole family
L754[08:50:16] <Forecaster> I approve
L755[08:50:33] ⇨ Joins: minot (~minot@pool-100-1-168-123.nwrknj.fios.verizon.net)
L756[08:53:09] <Lizzy> lol this in world pc i have is still running openos 1.5
L757[09:01:48] <Sandra> little inferno, little inferno.
L758[09:01:51] <Sandra> what a game.
L759[09:01:58] <Sandra> I love tomorrow corporation's games.
L760[09:04:55] ⇦ Quits: ping (~v^@me.pxtst.com) (Ping timeout: 190 seconds)
L761[09:05:58] *** Keridos is now known as Keridos|away
L762[09:07:45] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L763[09:07:48] ⇨ Joins: ping (~v^@me.pxtst.com)
L764[09:07:48] zsh sets mode: +v on ping
L765[09:10:20] <payonel> is Luchong still on?
L766[09:10:32] ⇦ Quits: Forecaster (~Forecaste@83.223.21.91) (Read error: Connection reset by peer)
L767[09:12:38] * Dustpuppy waits for the day, the cat lay an egg. she's eating the chicken food again
L768[09:13:01] ⇨ Joins: cpup (~cpup@32.218.118.26)
L769[09:13:26] <payonel> i dont think i can see what Corded people are online
L770[09:14:16] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L771[09:14:17] <Mimiru> payonel, nope offline it seems
L772[09:15:35] ⇦ Quits: CoderPuppy (~cpup@32.218.117.221) (Ping timeout: 202 seconds)
L773[09:15:57] <Dustpuppy> hmm... protecting doors with keypad is nice, but how can i get out off the roorm again? there are no keys on the other side ;-)
L774[09:16:41] <Mimiru> add a second one...
L775[09:17:01] <Mimiru> :P
L776[09:17:08] <Inari> add a button on the inside
L777[09:17:21] <Inari> unless you reall care about only people iwth the code getting out
L778[09:17:52] <Dustpuppy> i try the button :-)
L779[09:18:44] ⇨ Joins: Forecaster (~Forecaste@83.223.21.91)
L780[09:20:26] * Ember_Primrose kicks bluestacks in the shin
L781[09:20:56] <Forecaster> yey I'm back
L782[09:21:01] <Forecaster> power went out suddenly
L783[09:21:06] <Forecaster> then came back two seconds later
L784[09:21:14] <Ember_Primrose> D:
L785[09:21:41] <Forecaster> and I was just suggested to go outside to buy a motherboard, to a store
L786[09:22:04] <Ember_Primrose> %p
L787[09:22:10] <MichiBot> Ping reply from Ember_Primrose 5.34s
L788[09:22:15] <Ember_Primrose> %p
L789[09:22:20] <MichiBot> Ping reply from Ember_Primrose 4.77s
L790[09:24:56] <Lizzy> IIRC unless you can wire the button into the pc it wont open the door
L791[09:26:50] <Ember_Primrose> i give up on trying to make pogo work on blue stacks
L792[09:27:00] <Ember_Primrose> %flip bluestacks
L793[09:27:01] <MichiBot> Ember_Primrose: (╯°□°)╯sʞɔɐʇsǝnlq
L794[09:27:05] <Mimiru> Ember_Primrose, whats up?
L795[09:28:12] <Forecaster> I mean who does that?
L796[09:28:16] <Ember_Primrose> wasd don't work, rootking uninstalled itself somehow along with fakegps and pogo thinks i am in the middle of the sea pre and post of setting my location
L797[09:29:12] <Ember_Primrose> D: OC 1.6.0.6 bet4 = 11mb == 20 mins dl
L798[09:29:13] <Lizzy> %tell Vexatos also is the ability to controll both lamps of a dual-head signal block head coming or should i just link the digital controller to 2 seperate recievers that then relay to the signal block head?
L799[09:29:15] <Ember_Primrose> WHY
L800[09:29:16] <MichiBot> Lizzy: Vexatos will be notified of this message when next seen.
L801[09:30:37] ⇦ Quits: ping (~v^@me.pxtst.com) (Ping timeout: 182 seconds)
L802[09:30:42] <Ember_Primrose> Mimiru, and now i can't factory reset bluestacks
L803[09:30:43] <Mimiru> I'd suggest rerooting, and reinstalling luckypatcher make sure you grant it SU access, and reinstall fakegps as a system app via lucky patcher
L804[09:31:29] <Mimiru> I did this 4 times friday for myself, naomi, and our children, and then again at work on saturday
L805[09:31:32] <Ember_Primrose> i followed everything to the letter which makes it weirder as i have used bluestacks before
L806[09:31:51] ⇦ Quits: Negi (~Poireau@2a01:e34:ef13:4150:de53:60ff:febc:baf1) (Quit: Buh bye!)
L807[09:32:07] ⇨ Joins: Negi (~Poireau@2a01:e34:ef13:4150:de53:60ff:febc:baf1)
L808[09:33:37] <Ember_Primrose> Mimiru, but screw it i tried that 9 times
L809[09:34:18] ⇨ Joins: sciguyryan (~sciguyrya@94.242.205.38)
L810[09:34:22] ⇨ Joins: ping (~v^@me.pxtst.com)
L811[09:34:22] zsh sets mode: +v on ping
L812[09:35:52] <Mimiru> http://michi.pc-logix.com/BlueStacks_2016-07-24_09-35-53.png
L813[09:36:02] <Mimiru> This is my town
L814[09:36:08] <Mimiru> two spots, and a gym
L815[09:36:12] <Mimiru> stops*
L816[09:37:07] <Ember_Primrose> Mimiru, ERR_CONNECTION_REFUSED
L817[09:37:48] <Mimiru> Oh
L818[09:37:48] <Mimiru> I'm updating nginx on that box atm
L819[09:37:48] <Mimiru> lol
L820[09:38:09] <Ember_Primrose> all kinds of nope
L821[09:38:33] <Mimiru> forgot about that
L822[09:39:17] <Mimiru> K, it's done
L823[09:39:33] * Ember_Primrose looks at everybody's personal servers and the looks at her flimsy machine
L824[09:39:46] <Ember_Primrose> D:
L825[09:42:28] <Forecaster> my server is a piece of junk in the other side of the house
L826[09:42:52] <Ember_Primrose> D:
L827[09:43:00] ⇦ Quits: Nachtara (~Nachie@50-83-108-134.client.mchsi.com) (Quit: Smell ya later!)
L828[09:43:01] <Ember_Primrose> X|
L829[09:43:08] <Forecaster> it can barely run a mc server :P
L830[09:43:17] ⇦ Quits: EricBJ (~eric@108-160-20-69.regn.hsdb.sasknet.sk.ca) (Quit: Leaving)
L831[09:43:23] <Mimiru> My server is in Canada :p
L832[09:43:26] <Ember_Primrose> apparently i loaded oc without oc
L833[09:43:38] <Mimiru> I also have a Phenom quad core with 10 GB of ram behind me
L834[09:43:53] <Forecaster> on the other hand, it's free :P
L835[09:44:21] <Ember_Primrose> i might not have a seperate server but i use vm to create a lan server when friends are here
L836[09:44:45] <Ember_Primrose> thats why i have 32GB RAM
L837[09:44:59] <Forecaster> for minecraft?
L838[09:45:18] <Ember_Primrose> and other servers i host for lan parties
L839[09:45:31] <Forecaster> can't you just run a dedicated server on your computer?
L840[09:46:08] <Ember_Primrose> i do but throught vm otherwise the twitchsdk gets locked in multimc
L841[09:46:19] <Forecaster> ah
L842[09:47:16] <Lizzy> k, so have just had ideas on how to completely change my signal system around
L843[09:47:40] <Lizzy> which is going to most probably require an entire re-write of both parts of the system
L844[09:47:40] <Forecaster> great
L845[09:47:51] <Forecaster> the power failure corrupted my world
L846[09:47:58] <Lizzy> :/
L847[09:48:07] <Dustpuppy> Forecaster: easy to repair
L848[09:48:30] <Dustpuppy> you just loose ur inventory
L849[09:48:50] <Forecaster> ...why would I lose my inventory?
L850[09:49:03] <Forecaster> that's a separate file, not related to the world.dat at all
L851[09:49:15] <Dustpuppy> if u repair the world
L852[09:49:32] <Dustpuppy> or do u know a way to keep it?
L853[09:49:48] <Forecaster> what do you mean "repair"?
L854[09:50:46] <Ember_Primrose> lol, oc farts when doing computer.beep(20, 200)
L855[09:50:51] <Lizzy> i'm thinking rather than having a server at an intersection which sends updates to each mcu seperately, just have a server at the intersection send out when a particular section is occupied and have the mcu's pick that up and then adjust their signals accordingly. can also potentially have sets of signals on both ends of a signal block rather than just one
L856[09:51:44] <Forecaster> meeh
L857[09:51:46] <Forecaster> stupid summer
L858[09:51:48] <Forecaster> it's too hot
L859[09:51:50] <Forecaster> :I
L860[09:52:10] <Forecaster> I wish I could open my entire wall
L861[09:52:13] <Dustpuppy> make a new world and copy the files "level.dat" , "level.dat_mcr" , "multipart.dat" and "session.lock" from there to ur broken world
L862[09:52:32] <Lizzy> Dustpuppy: Forecaster's game is seperate server and client
L863[09:52:42] <Lizzy> so his stuff isn't in the level.dat
L864[09:53:00] <Dustpuppy> ok, then he will not loose it
L865[09:53:16] <Forecaster> I'm just going to make a backup, then try having forge load the world anyway
L866[09:53:22] <Forecaster> most likely it'll be fine
L867[09:55:09] <Forecaster> worst case I restore the last backup from 2 days ago
L868[09:55:28] <Ember_Primrose> D:
L869[09:55:37] <Lizzy> also with my new way of doing the signals, i'm not tied to a mess of trying to potentially merge 2 lines if they get too long, i can just have a server / computer at each end sending out the updates then the mcus getting the updates accordingly
L870[09:56:43] ⇨ Joins: Keanu73 (~Keanu73@host-92-28-79-109.as13285.net)
L871[09:56:51] <Forecaster> uh, hm
L872[09:56:57] <Forecaster> I respawned, empty
L873[09:57:03] <Forecaster> what
L874[09:57:12] <Lizzy> :/
L875[09:57:54] <Ember_Primrose> o*\=o
L876[09:58:04] <Dustpuppy> there's a very usefull mod available. it's called aroma backup. makes a backup of ur world every 30 minutes ;-)
L877[09:58:25] <Ember_Primrose> or ftblib
L878[09:58:30] <Forecaster> I could make my server make backups automatically if I wanted to
L879[09:58:36] <Ember_Primrose> ^+1
L880[09:58:46] <Forecaster> don't need a mod for that
L881[09:59:08] <Forecaster> should probably do that
L882[09:59:12] <Forecaster> once per day or so
L883[09:59:16] <Ember_Primrose> if you have the current save i can repair it for you
L884[09:59:33] <Ember_Primrose> both server and client
L885[09:59:46] * vifino giggles at Lizzy
L886[09:59:48] <Forecaster> it's 580MB
L887[09:59:50] * vifino returns all the kisses
L888[10:00:00] <Ember_Primrose> or you can use NBTExplore/Edit
L889[10:00:01] * Lizzy giggles
L890[10:01:00] * Ember_Primrose fall off her chair in confusion
L891[10:01:14] * Forecaster catches Ember_Primrose
L892[10:02:26] <Ember_Primrose> i just realized i used oc without oc, because i just added the beta to my pack, no ,errors were thrown, and i know i didn't disable the old one, and the i saw there is no old one not even in the logs
L893[10:02:55] <Lizzy> lol
L894[10:03:17] * Ember_Primrose kick minecrafts drunk-ass back home
L895[10:03:45] <Mimiru> did you maybe grab the API by accident? cause that's odd
L896[10:03:52] * Ember_Primrose slaps her dyslexic fingers
L897[10:03:52] * EnderBot2 rulls on the floor laughing
L898[10:03:56] <Ember_Primrose> nope
L899[10:04:00] <Mimiru> the API would have stopped other mods from complaining atleast
L900[10:04:34] <Ember_Primrose> ofcourse if i try to reproduce it, it fails, but srlsy wuhr
L901[10:05:55] * Ember_Primrose 's mind == blown;
L902[10:06:16] <Forecaster> yay minecraft modding
L903[10:06:18] <Forecaster> :P
L904[10:12:49] <Inari> i wonder if there some good PC equivalent to monster hunter
L905[10:13:46] <Lizzy> where is vex...
L906[10:15:29] <Forecaster> he said something about going on vacation for a week a couple of days ago
L907[10:15:42] <gamax92> :I
L908[10:15:43] <Lizzy> ffs
L909[10:15:51] <Inari> lol
L910[10:15:52] <Inari> what broke
L911[10:16:15] <Forecaster> or maybe it was a weekend
L912[10:16:18] <Forecaster> I dunno
L913[10:17:34] <Lizzy> hmm
L914[10:19:39] <Ember_Primrose> how do i type in a tablet
L915[10:20:03] <Inari> did you put a keybaord in?
L916[10:20:22] * Ember_Primrose facedesks
L917[10:20:29] <Lizzy> do i want to keep doing the British aspect signalling (green, double yellow, yellow, red) or just do a simple green, yellow, red system which then doesn't require two lamps for a single signal
L918[10:20:51] <Lizzy> i htink i'ma switch to the simpler system
L919[10:21:53] <Lizzy> red means the block that the signal is bordering is occupied, yellow means the next one os occupied (aka next signal is red) and green meaning that the next block is either yellow or green
L920[10:22:26] <Ember_Primrose> Lizzy, what are you doing?
L921[10:22:31] <gamax92> trains
L922[10:22:33] <Lizzy> ^
L923[10:22:36] <Lizzy> weill
L924[10:22:38] <Ember_Primrose> in?
L925[10:22:42] <Lizzy> minecraft
L926[10:22:51] <Ember_Primrose> railcraft?
L927[10:23:18] <Lizzy> yep
L928[10:23:21] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L929[10:23:34] <Lizzy> https://www.youtube.com/playlist?list=PLNq0JnaJt1omiGZLSSQi_0dFkf0tnDwl4
L930[10:23:35] <Ember_Primrose> oooh fun
L931[10:23:58] <Lizzy> that playlist is a little lacking of the changes i've made since the last video was posted in it
L932[10:24:02] <Ember_Primrose> subscribe
L933[10:24:47] <Inari> nice lighting in that tunnel on the frist vid
L934[10:24:53] <Ember_Primrose> ^
L935[10:25:22] <Lizzy> that be shaders
L936[10:25:43] <Inari> last i tried shaders they turned my gpu into a blowdryer and lagged :|
L937[10:25:45] <Lizzy> which broke recently :/ (they were still working in the 2nd video but i turned them off)
L938[10:26:18] ⇨ Joins: EmOnMC (~emonmc@105.227.243.168)
L939[10:26:39] <gamax92> Inari: nice makeup streaming down your face as you cry
L940[10:26:51] <Inari> gamax92: what
L941[10:26:59] <EmOnMC> What?
L942[10:27:03] <Inari> gamax92: use waterproof makeup
L943[10:27:03] <Inari> xP
L944[10:27:46] ⇦ Quits: EmOnMC (~emonmc@105.227.243.168) (Remote host closed the connection)
L945[10:28:07] <Ember_Primrose> so thats a no
L946[10:28:35] <gamax92> oh, okay
L947[10:28:47] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L948[10:29:04] <gamax92> I didn't know they made waterproof makeup
L949[10:29:04] <Ember_Primrose> was me
L950[10:29:08] <Ember_Primrose> in mc
L951[10:29:21] <gamax92> did you use wocchat
L952[10:29:22] <Ember_Primrose> my 2nd monitor has fried
L953[10:29:34] <Ember_Primrose> wocchat?
L954[10:29:34] <gamax92> D:
L955[10:29:44] <gamax92> yes wocchat
L956[10:29:45] * Lizzy dips her fingers in some red face paint then puts some on her face in a warpaint style then also paints Inari's warpaint
L957[10:29:53] ⇦ Quits: techno156 (~techno156@137.154.59.162) (Read error: Connection reset by peer)
L958[10:30:04] <Inari> i tend to cry easily at times, so waterproof makeup is usually a good idea xD
L959[10:30:13] <Inari> Lizzy: reminds me of d.va
L960[10:30:21] <Lizzy> :P
L961[10:30:26] ⇨ Joins: dhg2 (~pmm@254.252.198.146.dyn.plus.net)
L962[10:30:34] <Ember_Primrose> if you mean oc'c irc client, then yes
L963[10:30:39] * Lizzy draws hearts with the paints on vifino's cheeks
L964[10:30:43] <gamax92> no I don't
L965[10:30:48] <Ember_Primrose> then no
L966[10:30:53] <gamax92> I mean my oc irc client
L967[10:31:02] <Mimiru> wocchat is OC's IRC client on crack, wonderful wonderful crack
L968[10:31:03] <Mimiru> :P
L969[10:31:09] <Ember_Primrose> gimmie gmie gmie
L970[10:31:14] <Inari> oppm it
L971[10:31:19] <vifino> :3
L972[10:31:27] <Lizzy> Mimiru, that reminds me, you're buying the next load
L973[10:31:28] <Inari> vifatos
L974[10:31:33] <gamax92> vifino!
L975[10:31:40] <vifino> gamax92!
L976[10:31:41] <Mimiru> O_O
L977[10:31:41] <Inari> Vexino
L978[10:31:46] <Mimiru> CONTEXT!
L979[10:32:04] <Lizzy> "<@Mimiru> ... crack, wonderful wonderful crack"
L980[10:32:11] <Inari> quote time
L981[10:32:21] <Mimiru> lol, that pinged me in discord too
L982[10:32:22] * Ember_Primrose trips into the warpaint
L983[10:32:25] <Lizzy> lol
L984[10:32:34] <Inari> is that still broken in dsicord?
L985[10:32:35] * Lizzy slow claps
L986[10:32:39] <Mimiru> 4 devices just yelled
L987[10:32:52] <Ember_Primrose> :D
L988[10:32:54] <Inari> hm
L989[10:32:55] <vifino> @Mimiru!
L990[10:32:57] <Inari> maybe they fixed it :o
L991[10:32:59] <Mimiru> q_q
L992[10:33:09] <Inari> test <@Mimiru
L993[10:33:11] <vifino> I'm very evil.
L994[10:33:13] <Inari> they fixed it ?
L995[10:33:17] * Mimiru baps Inari
L996[10:33:47] <gamax92> "pinning you against the wall with a grin on their face"
L997[10:34:04] <Lizzy> @Mimiru,
L998[10:34:07] <Lizzy> :P
L999[10:34:22] <Inari> gamax92: wheres that from
L1000[10:34:24] *** Corded was kicked by Mimiru (Corded))
L1001[10:34:43] <gamax92> Inari: me
L1002[10:34:47] <Inari> :<
L1003[10:34:57] <Ember_Primrose> :D
L1004[10:35:08] <Ember_Primrose> i'm happy i don't have discord
L1005[10:35:21] <Lizzy> I have an account on it but i haven't used it in ages
L1006[10:35:30] <cloakable> Chicken stew cooking :D
L1007[10:35:37] <gamax92> I was writing a joke out, but then the situation passed because phone keyboard is so fucking inaccurate
L1008[10:35:46] <Ember_Primrose> up till last week i didn't even know what it is
L1009[10:35:49] <gamax92> so I just quoted it
L1010[10:36:06] <Forecaster> I have it, but I'm on in oc's server on there
L1011[10:36:08] <Forecaster> because IRC
L1012[10:36:21] * Temia hugs her precious slider phone. <3
L1013[10:36:21] <gamax92> But holy fuck this is being awful I'm just going to reset it
L1014[10:36:28] <Ember_Primrose> @Forecaster,
L1015[10:36:32] ⇨ Joins: Corded (discord@eos.pc-logix.com)
L1016[10:36:32] zsh sets mode: +v on Corded
L1017[10:36:34] <gamax92> I would love one of those
L1018[10:36:50] <Temia> I never have issues with keyboard inaccuracy! Aside from the corner keys getting a bit unresponsive with age...
L1019[10:36:52] * Lizzy cleans her hands then pets Temia
L1020[10:37:05] * Temia tailswishes. muu. =w=
L1021[10:37:15] <Inari> Temia: you aslo cant swipe
L1022[10:37:16] <Inari> so
L1023[10:37:19] <gamax92> I used to have one too :<
L1024[10:37:24] * Temia is Quasseling from her phone right now while she gets ready, as a matter of fact.
L1025[10:37:27] <Temia> Eh.
L1026[10:37:37] <Ember_Primrose> e\o/
L1027[10:37:42] <Temia> If I need to switch hands, I can always close it and... swipe?
L1028[10:37:43] <gamax92> You don't need swipe if you have an actual keyboard
L1029[10:37:57] <Temia> But those moments are rare and fraught with frustration anyway.
L1030[10:37:59] <Inari> gamax92: imo those keybbaords kind of suck
L1031[10:38:01] <Inari> so i prefer swiping
L1032[10:38:04] <Temia> I'm much happier with the slider.
L1033[10:38:10] <vifino> I need to build myself a custom sliding case for my nexus 6.
L1034[10:38:22] <Inari> i wish i had a 3d printer :|
L1035[10:38:23] <gamax92> I'd be much happier with the slide out keyboard
L1036[10:38:32] <Temia> There's one model that, while old now, has a pretty nice 5-row keyboard -- the Galaxy S Relay 4G.
L1037[10:38:38] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L1038[10:39:17] <vifino> There is also the BlackBerry Priv, sadly not the orientation that most people would want in a slider.
L1039[10:39:25] <vifino> Or maybe it is just me.
L1040[10:39:26] <Temia> I believe a minor carrier or two has started offering nonbranded versions of them too, but I can't find any details besides the amusing coincidence of my aunt having the same phone as me.
L1041[10:39:28] * vifino shrugs
L1042[10:39:36] <Temia> Ah, there is that, I suppose.
L1043[10:39:44] ⇦ Parts: dhg2 (~pmm@254.252.198.146.dyn.plus.net) ())
L1044[10:39:50] <Ember_Primrose> then there is my iphone 5s
L1045[10:40:03] <Temia> That's not a slider at all, Ember. .3.
L1046[10:40:04] ⇨ Joins: Trangar (~Trangar@249-153-145-85.ftth.glasoperator.nl)
L1047[10:40:06] <Ember_Primrose> it fell on the floor and the screen popped off
L1048[10:40:20] <Ember_Primrose> :D
L1049[10:40:44] <Temia> That's not a slider, it's a popper.
L1050[10:40:48] <Ember_Primrose> my slider i owned was a nokia 5230
L1051[10:41:00] <Ember_Primrose> or something like that
L1052[10:41:01] <Temia> A much less popular variety of modularity. '3'
L1053[10:41:34] * Ember_Primrose high-fives Temia
L1054[10:41:41] <gamax92> Temia: albeit old it's actually similar to what I have right now
L1055[10:41:50] <Temia> Haha
L1056[10:41:56] <Izaya> vifino: that is the orientation I want
L1057[10:42:03] <Temia> Anywho, enough talk out of me, I'm being kidnapped soon.
L1058[10:42:03] <Izaya> (straight)
L1059[10:42:14] <Izaya> kidnapped?
L1060[10:42:19] <Temia> Yeah.
L1061[10:42:21] <Ember_Primrose> :O
L1062[10:42:25] <gamax92> Temia: where you heading to?
L1063[10:42:31] <vifino> Izaya: But... landscape screen D:
L1064[10:42:34] <Temia> Family.
L1065[10:42:35] <Lizzy> Temia, na, you're being temianapped
L1066[10:42:42] <Izaya> that sounds unhealthy
L1067[10:42:43] <Temia> Moonapped!
L1068[10:42:47] <Lizzy> :)
L1069[10:42:53] <Temia> Also the opposite
L1070[10:43:16] <gamax92> I could imagine that being healthier yeah
L1071[10:43:56] <Temia> I'm being fed comfort food and I have an excuse not to be anywhere near my stepfather in doing so.
L1072[10:44:09] <Izaya> oh nice
L1073[10:44:18] <Temia> But it's also rather sudden, so
L1074[10:44:23] <Temia> Gotta pack n' such.
L1075[10:44:30] <Izaya> hf
L1076[10:45:36] <Ember_Primrose> o/
L1077[10:46:16] <Inari> Milknapped
L1078[10:46:41] * vifino pets Temia and waves her goodbye
L1079[10:47:42] * Lizzy forgot what she was doing
L1080[10:48:15] <Lizzy> oh yeah
L1081[10:48:19] <cloakable> Have fun temimoo
L1082[10:48:57] * Lizzy wonders if DD'ing the C drive in her dad's machine to a faster drive, defragmenting it then dding the data back would be faster than defragging on the drive itself
L1083[10:49:20] <cloakable> maybe
L1084[10:49:20] <Izaya> Lizzy: race! :D
L1085[10:49:56] <Lizzy> thing is i don't have any external drives to dd it to and it's already a good portion through defragmenting
L1086[10:50:34] <Lizzy> down to 11,200 fragmented files totalling 52.5GB and about 39,115 total fragments
L1087[10:51:16] <Ember_Primrose> DD?
L1088[10:51:48] ⇨ Joins: EmberOnWOC (~emberonwo@105.227.243.168)
L1089[10:51:49] <Lizzy> dd, is a linux utility for copying disks at the block level (one under FS iirc)
L1090[10:52:02] <EmberOnWOC> Mimiru: yep on crack
L1091[10:52:38] <Forecaster> gasp, two embers! :O
L1092[10:52:40] <EmberOnWOC> gamax92: this is really cool!!!
L1093[10:53:05] <Forecaster> twice the heat :O
L1094[10:53:18] <EmberOnWOC> triple the money?
L1095[10:54:15] ⇦ Quits: minot (~minot@pool-100-1-168-123.nwrknj.fios.verizon.net) (Ping timeout: 190 seconds)
L1096[10:54:30] <Forecaster> does hotness == money?
L1097[10:54:33] ⇨ Joins: minot (~minot@pool-100-1-168-123.nwrknj.fios.verizon.net)
L1098[10:54:45] <EmberOnWOC> ...
L1099[10:54:53] * EmberOnWOC shrugs
L1100[10:54:56] <Mimiru> In specific industries, yes :p
L1101[10:55:06] <Forecaster> that's not what I meant D:
L1102[10:55:06] <EmberOnWOC> :D
L1103[10:55:29] * Forecaster hides
L1104[10:55:36] <Mimiru> And this is why I'm broke :P
L1105[10:55:37] ⇦ Quits: cpup (~cpup@32.218.118.26) (Ping timeout: 384 seconds)
L1106[10:55:45] * gamax92 pets a tiny Ember owo
L1107[10:55:46] <EmberOnWOC> ?
L1108[10:56:05] *** EmberOnWOC is now known as TinyEmber
L1109[10:56:10] * TinyEmber purrs
L1110[10:56:15] <gamax92> she's saying she's not hot therefore she's broke
L1111[10:56:27] <TinyEmber> ditto then
L1112[10:56:52] <Forecaster> probably applies to me too then :P
L1113[10:57:10] ⇨ Joins: cpup (~cpup@32.218.118.26)
L1114[10:57:30] <TinyEmber> \o/ for being broke and not snobby and down to earth!
L1115[10:57:45] <TinyEmber> :D
L1116[10:57:53] <Forecaster> :D
L1117[10:58:06] <Forecaster> I probably wouldn't mind being rich though...
L1118[10:58:23] <Forecaster> o3o
L1119[10:58:26] <gamax92> just don't become Notch
L1120[10:58:28] <TinyEmber> yea, but don't let it get to yer head
L1121[10:58:40] * Forecaster makes a hat out of money
L1122[10:58:40] <TinyEmber> that timing
L1123[10:58:42] <Forecaster> too late!
L1124[10:59:03] ⇦ Quits: TinyEmber (~emberonwo@105.227.243.168) (Remote host closed the connection)
L1125[10:59:27] ⇨ Joins: TinyEmber (~tinyember@105.227.243.168)
L1126[10:59:57] <TinyEmber> reminder: don't shift-right click with a tablet when on irc
L1127[11:00:51] <Inari> well even if you are "hot" you still have to be fine with working in those industries
L1128[11:00:51] <Inari> :P
L1129[11:01:07] <TinyEmber> :P
L1130[11:01:09] <gamax92> Inari has a point
L1131[11:01:29] <TinyEmber> \o/ for Inari
L1132[11:01:35] <TinyEmber> :D
L1133[11:02:13] <gamax92> I ended up just resetting the keyboard and now it's back to good
L1134[11:02:18] * Lizzy wouldn't mind getting money for that kind of work. but only if it was with vifino and the money was kisses and other stuff in return :P
L1135[11:02:34] <TinyEmber> :D
L1136[11:02:35] <gamax92> other stuff like money?
L1137[11:02:51] ⇨ Joins: brandon3055_ (~Brandon@122.129.142.14)
L1138[11:02:58] <TinyEmber> money and kisses and hugs?
L1139[11:03:00] <Mimiru> monitoring software just reported vcore as 0.0024 v
L1140[11:03:03] <Mimiru> lol
L1141[11:03:24] <TinyEmber> XD
L1142[11:03:25] <Inari> Lizzy: lol
L1143[11:03:34] ⇦ Quits: brandon3055 (~Brandon@122.129.142.14) (Read error: Connection reset by peer)
L1144[11:03:37] <Cazzar> too many volts
L1145[11:03:41] *** brandon3055_ is now known as brandon3055
L1146[11:03:55] ⇦ Quits: minot (~minot@pool-100-1-168-123.nwrknj.fios.verizon.net) (Ping timeout: 190 seconds)
L1147[11:04:58] ⇨ Joins: minot (~minot@pool-100-1-168-123.nwrknj.fios.verizon.net)
L1148[11:05:12] <TinyEmber> feel free to call me Em
L1149[11:05:22] <gamax92> okay Ember
L1150[11:05:22] <TinyEmber> all my friends do anyways
L1151[11:05:38] <TinyEmber> ^_^
L1152[11:05:52] * Forecaster hugs em for free
L1153[11:06:14] ⇦ Parts: TinyEmber (~tinyember@105.227.243.168) ())
L1154[11:06:29] <Ember_Primrose> get yer free hugs!
L1155[11:06:43] * gamax92 wants a free hug :D
L1156[11:06:51] <cloakable> :D
L1157[11:06:51] * Ember_Primrose hugs g
L1158[11:06:57] * Ember_Primrose hugs ga
L1159[11:06:58] <gamax92> hug sniped D:
L1160[11:07:00] * g hugs Ember_Primrose
L1161[11:07:01] * Ember_Primrose hugs gamax92
L1162[11:07:08] * g snrks at gamax92 over Ember_Primrose's shoulder
L1163[11:07:09] <Ember_Primrose> dem typos
L1164[11:07:14] * Ember_Primrose slaps her fingers
L1165[11:07:14] * EnderBot2 rulls on the floor laughing
L1166[11:07:51] * Ember_Primrose multiplies and hugs everybody
L1167[11:08:10] * Forecaster hugs all the embers
L1168[11:09:00] <Ember_Primrose> but HOW
L1169[11:09:30] <Forecaster> hugpile?
L1170[11:09:44] <Ember_Primrose> Lizzy, those showcases look awesome
L1171[11:09:45] <gamax92> Sample text
L1172[11:10:11] <Lizzy> Ember_Primrose, i'll be doing more soon
L1173[11:10:17] ⇨ Joins: brandon3055_ (~Brandon@122.129.142.14)
L1174[11:10:21] <Ember_Primrose> yay
L1175[11:10:56] * Ember_Primrose reverses her own gravity and turns back to one person
L1176[11:11:10] ⇦ Quits: brandon3055 (~Brandon@122.129.142.14) (Read error: Connection reset by peer)
L1177[11:11:22] * Forecaster hugs the one true ember
L1178[11:11:32] <gamax92> if I were to hold reverse gravity Ember will I float?
L1179[11:11:42] <Ember_Primrose> ooh new song: https://youtu.be/H7NuU-dDRLU
L1180[11:11:43] <MichiBot> Tobu - Roots | length: 3m 10s | Likes: 7838 Dislikes: 47 Views: 61747 | by Tobu
L1181[11:11:49] <Ember_Primrose> gamax92, yep
L1182[11:11:59] * gamax92 holds :3
L1183[11:12:36] * Lizzy is listening to Blink 182
L1184[11:13:25] * Ember_Primrose normalizes her gravity and sits on her floofy cloud
L1185[11:13:25] * Lizzy might invest in a laptop cooling pad
L1186[11:16:18] <Saphire> flop
L1187[11:17:19] * Lizzy pets Saphire
L1188[11:17:32] * Saphire purrrs
L1189[11:19:12] * Ember_Primrose glomps Saphire
L1190[11:19:40] * Saphire squeaks
L1191[11:20:26] *** Lizzy is now known as Liz
L1192[11:20:36] <Liz> derp
L1193[11:20:39] ⇦ Quits: Negi (~Poireau@2a01:e34:ef13:4150:de53:60ff:febc:baf1) (Ping timeout: 202 seconds)
L1194[11:20:40] *** Liz is now known as Lizzy
L1195[11:20:40] *** Lizzy is now known as Liz
L1196[11:20:45] <Liz> ffs eirairc#
L1197[11:20:52] <Ember_Primrose> ^
L1198[11:20:56] *** Liz is now known as Lizzy
L1199[11:21:07] <Ember_Primrose> i used that, prefer wocchat
L1200[11:21:28] *** Lizzy is now known as LizzyTheSiren
L1201[11:21:36] <LizzyTheSiren> :@
L1202[11:21:46] <Mimiru> gg
L1203[11:22:11] <LizzyTheSiren> k, fuck trying to use that mod ¬_¬
L1204[11:22:25] *** LizzyTheSiren is now known as Lizzy
L1205[11:24:21] <Lizzy> is forgeirc still a thing...
L1206[11:25:50] <Mimiru> wow's release is killing my points.. :/
L1207[11:25:50] <Mimiru> lol
L1208[11:26:06] <gamax92> I remember the times of being on ping's server and using the AMI and Kilobyte's sockets to write an irc <-> MC bridge
L1209[11:27:46] <Lizzy> nope, forgeirc isn't going to work
L1210[11:27:48] <Lizzy> ¬_¬
L1211[11:28:36] <Inari> haha oh wow
L1212[11:28:50] <Inari> killing kittens since 2016 in YandereSim
L1213[11:32:09] <Mimiru> http://michi.pc-logix.com/BlueStacks_2016-07-24_11-32-27.png
L1214[11:32:10] <g> Lizzy, forgeessentials has an ircbot if you're thinking about a server
L1215[11:32:11] <Mimiru> Oh that's perfect
L1216[11:32:16] <g> otherwise all you've got is eirairc, which is crap
L1217[11:32:17] <Mimiru> 747
L1218[11:32:23] <Lizzy> g, client
L1219[11:32:36] <g> eira it is, then..
L1220[11:32:57] <Lizzy> yeah, just not gonna bother with it
L1221[11:33:02] <g> unless someone writes an AR headset mod for OC
L1222[11:33:09] <Forecaster> well, I lost my ore processing crate :I
L1223[11:33:13] <g> you could run an irc client on that then
L1224[11:33:13] <g> :P
L1225[11:33:14] <Lizzy> cause i like tabby chat more than eira
L1226[11:33:20] <g> tabby is great
L1227[11:33:28] <Lizzy> g, that's possible with oc glasses
L1228[11:34:06] <Ember_Primrose> tabbychat?
L1229[11:34:14] <g> it splits your ingame chat into tabs
L1230[11:34:21] <g> you can write regexes to match messages in chat to move to tabs
L1231[11:34:26] <g> it's pretty useful
L1232[11:34:28] <Ember_Primrose> ooh
L1233[11:34:36] <Mimiru> Yeah tabbychat is great
L1234[11:35:28] <Lizzy> except eirairc doesn't intergrate with it at all which is fucking annoying
L1235[11:35:42] <g> eira is a pretty poor mod honestly
L1236[11:35:47] <g> you could probably write a better one
L1237[11:36:01] <Lizzy> yeah, but that'd require learning java and i cba
L1238[11:36:14] <g> huh, thought you were involved with OC dev
L1239[11:36:17] <g> alright then
L1240[11:36:18] <Lizzy> nope
L1241[11:38:35] <gamax92> "You didn't condition your cat to respond to click, they conditioned you to use clicks" "So, my cat trained me?"
L1242[11:39:00] <Lizzy> cats are the real masters of the world
L1243[11:39:02] *** brandon3055_ is now known as brandon3055
L1244[11:39:04] * Lizzy purrs
L1245[11:39:26] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L1246[11:41:22] <gamax92> wat jailbreak exists
L1247[11:42:03] <Lizzy> ?
L1248[11:42:13] <gamax92> iOS 9.2 → 9.3.3
L1249[11:42:23] <gamax92> Fucking quassel I wish you wouldn't do that.
L1250[11:42:28] <Inari> https://www.youtube.com/watch?v=MOycJOmrlA4#t=3m16s thats disturbing, I want more
L1251[11:42:28] <MichiBot> July Progress Update | length: 5m 51s | Likes: 13632 Dislikes: 221 Views: 96908 | by Yandere Dev
L1252[11:50:07] ⇦ Quits: ping (~v^@me.pxtst.com) (Ping timeout: 192 seconds)
L1253[11:50:33] <gamax92> I see, it was released 4 hours ago
L1254[11:50:36] ⇨ Joins: ping (~v^@me.pxtst.com)
L1255[11:50:36] zsh sets mode: +v on ping
L1256[11:52:52] <Ember_Primrose> Inari, jaysus
L1257[12:00:16] <Lizzy> lol, people who can't do PR's properly shouldn't be allowed to open them (#1988)
L1258[12:00:31] ⇨ Joins: Negi (~Poireau@2a01:e34:ef13:4150:de53:60ff:febc:baf1)
L1259[12:01:13] <Inari> wat
L1260[12:01:24] <Lizzy> https://github.com/MightyPirates/OpenComputers/pull/1988
L1261[12:01:27] <Inari> yeah i mean
L1262[12:01:31] <Inari> wat @ PR
L1263[12:01:31] <Inari> :P
L1264[12:01:34] <Lizzy> ah
L1265[12:02:02] <Ember_Primrose> :P
L1266[12:03:01] <Forecaster> haha
L1267[12:03:09] <Forecaster> all of the commits
L1268[12:03:19] <Inari> is there even a single commit form that person
L1269[12:03:25] <Lizzy> no
L1270[12:03:40] <Lizzy> they've litterally just pressed the create PR button
L1271[12:03:54] <Lizzy> and selected two of the own repo branches
L1272[12:04:02] <Lizzy> they also don't have any repos themselves
L1273[12:04:33] <Lizzy> and joined today
L1274[12:04:42] <Lizzy> (github that is)
L1275[12:05:02] <Forecaster> wow
L1276[12:05:52] <Lizzy> the only other thing they've done on github is https://github.com/github/git-lfs/issues/1392 which just seems to be them posting links everywhere
L1277[12:07:29] <Forecaster> genmail is not a domain that exists
L1278[12:08:00] <Forecaster> there is something there that responds to pings though
L1279[12:08:09] * Lizzy throws fluffy objects at Sangar till he appears
L1280[12:09:20] <Forecaster> well, all the cheks have passed, now he has to merge it
L1281[12:12:59] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Ping timeout: 198 seconds)
L1282[12:14:46] <Lizzy> http://imgur.com/gallery/ZiEcWgo
L1283[12:16:12] <Forecaster> oh yeah, I do that all the time, at all the 0 conventions I've been to
L1284[12:16:14] <Forecaster> it was fun
L1285[12:17:27] <Inari> whys electronics so confusing :s
L1286[12:17:59] <Forecaster> because of all the negativity
L1287[12:19:15] <Inari> im trying to understand voltage dividers XD
L1288[12:19:36] <gamax92> git log --pretty=fuller
L1289[12:19:37] <Forecaster> dividers? trump's been at it again D:<
L1290[12:19:46] <gamax92> Frequency divider
L1291[12:19:50] <Inari> i feel like i get the general concept
L1292[12:19:53] <Inari> but them ath makes no sense
L1293[12:19:54] <Inari> :P
L1294[12:19:55] * gamax92 gies Inari an Atari 2600
L1295[12:20:09] <gamax92> there you go have a frequency divided based audio thingy
L1296[12:20:18] <Inari> according to this, if i have 5 V and want 2.5 V i need a 1:1 ratio
L1297[12:20:20] <gamax92> it sounds like shit because you don't divide frequencies.
L1298[12:20:41] <Inari> and then to drop 5 V with 20 mA i need a resistance of 250 ohm
L1299[12:20:51] <Inari> or something
L1300[12:20:57] <Inari> so i'd put each at 125
L1301[12:20:59] <Inari> but that doesnt work
L1302[12:21:00] <Inari> :P
L1303[12:23:05] * Ember_Primrose sits on Inari 's lap
L1304[12:25:17] <Inari> x.x
L1305[12:25:28] * Ember_Primrose purrs
L1306[12:27:01] <Inari> apaprently it works
L1307[12:27:03] <Inari> when i dont put a LED
L1308[12:27:06] <Inari> ;-;
L1309[12:28:39] ⇦ Quits: Jezza (~Jezza@92.206.5.6) (Ping timeout: 192 seconds)
L1310[12:29:56] <Inari> this says forward voltage at one amp is 2.1.. so does that mean its has 2.1 ohms resistance?
L1311[12:30:53] <Skye> voltage divider?
L1312[12:30:57] <Inari> yeah
L1313[12:31:01] <Skye> Inari, why not draw diagrrams?
L1314[12:31:06] <Inari> ?
L1315[12:33:12] <Skye> Inari, do you know the voltage divider formulas?
L1316[12:33:31] <Dustpuppy> u=r*i
L1317[12:33:40] <Inari> yeah :P but it isnt really working once i put something there
L1318[12:33:55] <Dustpuppy> voltage = resistant * ampere
L1319[12:34:06] <Inari> Dustpuppy: thats nto the voltage divider formula
L1320[12:34:07] <Inari> xD
L1321[12:35:34] <Inari> i guess this works...
L1322[12:35:37] <gamax92> k=z*o
L1323[12:36:04] <Dustpuppy> e=mc² .. oh, no wait...other univers :-)
L1324[12:36:11] <Inari> fun^10 x int^40 = lr2
L1325[12:36:29] <gamax92> Inari + imgur = lewd
L1326[12:37:10] <Skye> vout = (R2 / (R1 + R2)) * vin
L1327[12:37:41] ⇨ Joins: Nachtara (~Nachie@50-83-108-134.client.mchsi.com)
L1328[12:38:16] <Dustpuppy> https://i.ytimg.com/vi/oRX1atlEMHw/maxresdefault.jpg
L1329[12:39:51] <gamax92> oh that thing
L1330[12:40:35] <Inari> my math says
L1331[12:40:39] <Inari> 25000 RL = 250 RL
L1332[12:40:44] <Inari> well that was useless
L1333[12:40:44] <Inari> xD
L1334[12:42:21] <Ember_Primrose> when i saw that picture i felt like a
L1335[12:42:21] <Ember_Primrose> kartoffelkopf
L1336[12:43:15] <Dustpuppy> if u would look like a kartoffelkopf, someone would plant u in the next field ;-)
L1337[12:43:24] <Ember_Primrose> :D
L1338[12:44:18] <Inari> sigh
L1339[12:44:24] <Inari> 10000 + 100RL = 100RL
L1340[12:44:40] <Inari> i cant math
L1341[12:44:46] <Inari> ill just ask WA
L1342[12:45:13] <Dustpuppy> like me. a 1 and a 1 is 11. that's it
L1343[12:46:16] <Inari> %wa 2.5=(5*((100*x)/(100+x)))/(100+((100*x)/(100+x)))
L1344[12:46:34] <Inari> (no solutions exist)
L1345[12:46:34] <Inari> yay
L1346[12:48:11] ⇨ Joins: Jezza (~Jezza@92.206.5.6)
L1347[12:50:23] *** kirby|gone is now known as mrkirby153
L1348[12:55:43] <Inari> 33 ohm, doesnt seem accurate
L1349[12:55:44] <Inari> :<
L1350[12:56:45] <Inari> %wa 2.5 = (5*((x*100)/(x+100)))/(x+((x*100)/(100+100)))
L1351[12:58:01] <Inari> wheres vexatoast when you need him
L1352[12:58:50] <Forecaster> vacation
L1353[12:58:51] <Forecaster> :P
L1354[12:59:03] <Forecaster> that's where people go when you need them
L1355[12:59:21] <Magik6k> %tell Sangar, do you have any idea why inventory controller on BTM might not work? (this was on chest and forestry apiary): https://assets.magik6k.net/screenshoots/7bbe16bb-58a6-4912-8a6a-f4b184b70e14.png
L1356[12:59:22] <MichiBot> Magik6k: Sangar, will be notified of this message when next seen.
L1357[13:00:06] <Inari> Magik6k: yeah
L1358[13:00:12] <Sangar> Magik6k, some other mod handling the event oc uses to determine whether it may interact with something throws if the event's field is null. for some reason.
L1359[13:00:22] <Sangar> instead of yknow, just ignoring it then .-.
L1360[13:00:26] <Inari> i was going to copypaste that
L1361[13:00:26] <Inari> :<
L1362[13:00:41] <Sangar> buuuuut i guess i could add a try catch around that...
L1363[13:01:10] <Lizzy> Sangar, v
L1364[13:01:12] <Lizzy> ffs
L1365[13:01:14] <Lizzy> https://github.com/MightyPirates/OpenComputers/pull/1988
L1366[13:01:15] <Sangar> can also log what's throwing then so we see what mod that is :P
L1367[13:01:21] <Lizzy> missed the ctrl button
L1368[13:01:40] <Sangar> wat
L1369[13:01:47] <gamax92> it's a spammer
L1370[13:01:48] * Lizzy shrugs
L1371[13:02:13] <gamax92> they opened a pr in general to be able to put that address
L1372[13:02:35] <Inari> lol, they even havea profile pic
L1373[13:06:04] <Ember_Primrose> Mimiru, this is what continues to happen
L1374[13:06:05] <Ember_Primrose> http://imgur.com/a/PKXVw
L1375[13:06:37] <Inari> im confused
L1376[13:06:43] <Inari> these .uz pages dont even find hosts :|
L1377[13:07:39] <Forecaster> I think it's supposed to be an email
L1378[13:07:51] <Forecaster> there is someting responding to pings on the domain
L1379[13:10:41] ⇨ Joins: Caveman_ (~Caveman@2001:1c00:a08:f100:8d8d:79e7:86ad:15c8)
L1380[13:10:46] ⇨ Joins: Solace7 (~quassel@50.245.190.187)
L1381[13:13:35] <Inari> https://www.youtube.com/watch?v=E8nazpfy3Ec wow
L1382[13:13:35] <MichiBot> Frustrated Husky | length: 10s | Likes: 220 Dislikes: 0 Views: 53249 | by tracey martin
L1383[13:14:18] <Forecaster> whabam
L1384[13:14:27] <Forecaster> they're dead now, probably
L1385[13:14:33] <Sangar> Magik6k, version with a try-catch is building
L1386[13:21:55] <Inari> earth would be so much cooler if we had like different races... cat people, dog people, reptile people, human people, etc :P
L1387[13:22:24] <Forecaster> "human people"
L1388[13:22:29] <Inari> :P
L1389[13:22:36] <Ember_Primrose> Inari, ditto
L1390[13:22:38] <Forecaster> with bonus to xp gain
L1391[13:22:41] <Forecaster> :D
L1392[13:22:50] <Inari> is that a wow reference :s
L1393[13:23:11] <Forecaster> I don't know, it might be?
L1394[13:23:17] <Forecaster> I wasn't going to a specific game
L1395[13:23:28] <Forecaster> I've never really played wow
L1396[13:23:38] <Forecaster> tried it, didn't like it, many years ago
L1397[13:25:39] <Forecaster> wellp, time to go chicken hunting
L1398[13:25:44] * Forecaster loads his soul cairn
L1399[13:26:20] <Inari> :3
L1400[13:26:26] <Inari> Forecaster: picking up all the chicks?
L1401[13:26:54] <Forecaster> yep, literally, using diamonds as well :P
L1402[13:27:18] <Forecaster> the soul cairn is a gun, loaded with a diamond, turns a single mob into it's spawn egg :P
L1403[13:27:40] *** Ajloveslily|Sleep is now known as Ajloveslily
L1404[13:27:56] <Lizzy> sounds painful
L1405[13:28:27] <Inari> Forecaster: how does that even work
L1406[13:29:04] <Forecaster> minecraft magic :P
L1407[13:29:04] ⇨ Joins: AlexisMachina (uid57631@2604:8300:100:200b:6667:3:0:e11f)
L1408[13:29:15] <Inari> :s
L1409[13:29:17] * Inari dislikes magic
L1410[13:30:50] <Forecaster> I don't use straight up magic mods
L1411[13:31:05] <Forecaster> I don't mind minecraft low magic or artefact type magic
L1412[13:31:15] <Inari> i mind the BS type magic
L1413[13:31:20] <Inari> i dont mind fully fledged out magic
L1414[13:31:48] <Forecaster> pff, the entierty of minecraft is BS and abstractions :P
L1415[13:32:32] <Mimiru> Ember_Primrose, you're *sure* fake GPS is installed as a SYSTEM APP, not a regular app? cause that's an EXACT symptom of it being installed as a regular app
L1416[13:32:52] <Ember_Primrose> i know, and yes i did
L1417[13:34:09] ⇨ Joins: MajGenRelativity (~MajGenRel@c-50-136-14-108.hsd1.ma.comcast.net)
L1418[13:34:19] <Ember_Primrose> how do i reset bluestacks?
L1419[13:35:45] <Ember_Primrose> ok brb
L1420[13:38:04] ⇦ Quits: Dominance_ (~Dominance@72-186-205-33.res.bhn.net) (Read error: Connection reset by peer)
L1421[13:45:30] ⇨ Joins: reinei (~reinei@p5DCE4CA3.dip0.t-ipconnect.de)
L1422[13:50:29] <Ember_Primrose> Mimiru, i broke the root, as luckypatcher couldn't find the root access, so i am reisntalling bluestacks
L1423[13:50:50] <Ember_Primrose> ps what version of bluestacks are you running?
L1424[13:53:03] <Talonos> Question: I am playing single-player and find programming in the in-game environment frustrating due to lack of copy/paste, etc. Can I create a file in Notepad++ or whatever externally and then drop it into my computer's hard drive in the save/opencomputers/<address>/bin folder?
L1425[13:53:37] <Talonos> If so, is there anything special I need to do, like make sure the computer is off first? Or exit the world first?
L1426[13:54:45] <CompanionCube> Talonos, you can do that
L1427[13:55:20] <Talonos> Sweet. That will make things much easier. The alternative was using the pastebin program, and that, while workable, would be somewhat of a pain.
L1428[13:55:54] <Inari> Talonos: after you chnaged a file you have to remove the HDD from teh computer and stick it back in, for it to update though
L1429[13:55:58] <Inari> or you can turn bufferChanges in config off
L1430[13:56:01] <Inari> then you dont have to do that
L1431[13:56:39] <Mimiru> whatever was latest as of friday Ember_Primrose
L1432[13:56:44] <Talonos> Thanks. I'll just mess with hard drives for now, but I appreciate knowing about the config.
L1433[13:57:14] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L1434[13:57:51] <Inari> Talonos: you can also try ocnetfs
L1435[13:58:05] <Ember_Primrose> ok, might be my problem then
L1436[14:01:35] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Ping timeout: 198 seconds)
L1437[14:10:22] * Ember_Primrose baps Forecaster
L1438[14:10:30] <Forecaster> :O
L1439[14:10:50] * Ember_Primrose then pats him on the back to comfort him\
L1440[14:10:52] <Ember_Primrose> https://youtu.be/CaivEbw727U
L1441[14:10:53] <MichiBot> Modded Minecraft [Episode 164] - Fire in the everywhere | length: 38m 40s | Likes: 3 Dislikes: 0 Views: 74 | by Forecaster
L1442[14:11:11] <Ember_Primrose> ohno at 17:00
L1443[14:11:35] <Ember_Primrose> the lawa gast
L1444[14:12:11] <Ember_Primrose> O:
L1445[14:13:10] ⇨ Joins: rikai (~quassel@rekd.net)
L1446[14:14:29] <Ember_Primrose> ok so bap has many meanings on urban dictionary, i meant definition No. 11
L1447[14:14:38] <Ember_Primrose> the others are lewd
L1448[14:17:53] <Magik6k> Sangar, weee
L1449[14:18:03] <Mimiru> What the fuck was with that PR
L1450[14:18:32] <Ember_Primrose> Everything?
L1451[14:19:30] ⇨ Joins: TinyEmber (~tinyember@105.229.42.87)
L1452[14:20:44] ⇦ Quits: TinyEmber (~tinyember@105.229.42.87) (Remote host closed the connection)
L1453[14:20:55] ⇦ Quits: sciguyryan (~sciguyrya@94.242.205.38) (Ping timeout: 190 seconds)
L1454[14:21:23] ⇨ Joins: TinyEmber (~tinyember@105.229.42.87)
L1455[14:21:50] <TinyEmber> *Status
L1456[14:21:54] <TinyEmber> fail
L1457[14:24:05] <Lizzy> lol
L1458[14:24:18] ⇦ Quits: Nachtara (~Nachie@50-83-108-134.client.mchsi.com) (Read error: Connection reset by peer)
L1459[14:24:26] ⇦ Quits: Solace7 (~quassel@50.245.190.187) (Remote host closed the connection)
L1460[14:26:44] <TinyEmber> Lizzy: Urban Dictionary has weird definitions for bap
L1461[14:27:03] <Lizzy> that doesn't suprise me
L1462[14:27:33] <TinyEmber> :D
L1463[14:29:19] <TinyEmber> i love that phrase
L1464[14:29:25] * TinyEmber baps Ember_Primrose
L1465[14:29:54] <CompanionCube> I wonder what Inari thinks
L1466[14:30:10] <CompanionCube> they are the pre-eminent local authority on lewd stuffs
L1467[14:30:23] <TinyEmber> :D
L1468[14:32:26] ⇦ Quits: LeshaInc (~LeshaInc@92.51.56.111) (Quit: Because i can)
L1469[14:33:26] <Forecaster> but why was I bapped D:
L1470[14:33:49] <TinyEmber> for you cracking your firestone :D
L1471[14:34:02] <Forecaster> oh >:
L1472[14:34:09] <Forecaster> yeah I deserved it then
L1473[14:34:12] <TinyEmber> but then i felt sorry for you, and hugged you
L1474[14:34:30] <TinyEmber> espescially when teh lawa gast came
L1475[14:35:07] <Lizzy> ~w computer
L1476[14:35:07] <ocdoc> http://ocd.cil.li/api:computer
L1477[14:35:12] <Forecaster> ^^
L1478[14:35:32] <Lizzy> oh, derp
L1479[14:37:48] <TinyEmber> Okay.... https://www.youtube.com/watch?v=Dh352ZK9-Eo
L1480[14:37:49] <MichiBot> Kunieda- Puddi, Puddi, Puddi, Pududing Doskoi! | length: 48s | Likes: 913 Dislikes: 14 Views: 200171 | by Miko San
L1481[14:43:29] <Forecaster> uhm
L1482[14:44:04] <Forecaster> were they trying to make the guy fall off the fence? :P
L1483[14:45:23] <Ember_Primrose> Puddi Puddi
L1484[14:45:59] <Forecaster> it felt like if they'd kept going he'd soon be standing up and wiggling, and then fall off the fence :P
L1485[14:46:19] <Ember_Primrose> :D
L1486[14:47:01] <Ember_Primrose> The original : https://www.youtube.com/watch?v=KLJ-jXJLPcU
L1487[14:47:03] <MichiBot> Giga Pudding Puddi Puddi Song | length: 2m 31s | Likes: 54146 Dislikes: 3551 Views: 5661269 | by Tsundere Pigeon
L1488[14:47:42] <Ember_Primrose> oh the cannibilism
L1489[14:48:41] <Forecaster> is it when you're eating yourself?
L1490[14:48:42] <Ember_Primrose> Mimiru, can i stream files from my pc with OpenFM
L1491[14:48:54] <Mimiru> They have to be on a web host
L1492[14:48:59] <Mimiru> and they won't repeat
L1493[14:49:21] <Ember_Primrose> Forecaster, yep which happens in the commercial
L1494[14:50:03] <Ember_Primrose> so no? like if i make a stream from vlc that won't work?
L1495[14:50:22] ⇦ Quits: PinkyC4 (~martin@185.86.106.161) (Quit: I'm outta here!)
L1496[14:50:28] <Mimiru> possibly... don't be surprised if everything crashes horribly
L1497[14:50:40] <Mimiru> but it will NOT just play an MP3 sitting on your c:\ or something
L1498[14:51:12] <Ember_Primrose> any way to do that with oc normally?
L1499[14:51:17] <Mimiru> no
L1500[14:51:44] <Ember_Primrose> okay will report any findings
L1501[14:52:24] <Ember_Primrose> Forecaster, :https://www.youtube.com/watch?v=lDUOmY80GhU
L1502[14:52:25] <MichiBot> WTF Japan Seriously!? | length: 31s | Likes: 22735 Dislikes: 673 Views: 3393401 | by WTF Japan Seriously!?
L1503[14:52:56] * Inari baps Lizzy's baps
L1504[14:53:24] * Ember_Primrose baps bapping
L1505[14:53:40] <Lizzy> .-.
L1506[14:54:48] * Ember_Primrose unbaps bapping and hides
L1507[14:54:56] <Lizzy> huh
L1508[14:55:10] <Lizzy> so the way i was using a function seems to be different now. dafuq
L1509[14:55:35] <Lizzy> oh
L1510[14:55:37] <Lizzy> : not .
L1511[15:04:56] <Forecaster> Ember_Primrose: haha
L1512[15:05:12] <TinyEmber> :D\
L1513[15:06:11] <Forecaster> https://www.youtube.com/watch?v=u28V-_CLc8c
L1514[15:06:11] <MichiBot> Funny Swedish commercial | length: 42s | Likes: 609 Dislikes: 174 Views: 410221 | by just1fixxx
L1515[15:06:16] <Forecaster> this is pretty great :P
L1516[15:07:45] <Lizzy> \o/ my new signal system works
L1517[15:09:56] <Forecaster> that commercial was put on youtube 10 years ago
L1518[15:10:20] <Forecaster> in a time when nobody really used english here except for business
L1519[15:13:31] <Talonos> So, rundown on unicode support: I got the idea OC had unicode support from one of the welcome messages, so I tried re-encoding my program as UTF-8 in order to use the box-drawing characters. Now, my program crashes with an "Unexpected symbol near char(239)" error on line 1.
L1520[15:13:51] <Talonos> Is there another encoding I should use?
L1521[15:14:06] <Talonos> Or must I use the char(num) command?
L1522[15:14:07] <Forecaster> um
L1523[15:14:09] <Lizzy> ~oc unicode
L1524[15:14:09] <ocdoc> http://ocd.cil.li/api:unicode
L1525[15:14:14] <Lizzy> ^ might be of help
L1526[15:14:16] <Forecaster> ^
L1527[15:14:36] <Forecaster> always check the wiki :P
L1528[15:15:05] ⇨ Joins: LeshaInc (~LeshaInc@92.51.56.111)
L1529[15:16:00] <Inari> 3d printers so pricy :<
L1530[15:16:01] <Talonos> So, no answer there. But perhaps if I write a file that contains a unicode character, then check to see how it's stored in my HDD's folder in my safe file...
L1531[15:16:44] ⇨ Joins: Kodos (~Kodos@2602:306:ce20:6c30:94f:211:6ae9:e4ad)
L1532[15:16:44] zsh sets mode: +v on Kodos
L1533[15:16:55] <Kodos> I require assistance
L1534[15:17:10] <Forecaster> with?
L1535[15:17:11] <Kodos> Does anyone play EVE Online?
L1536[15:17:11] <Lizzy> Talonos, unicode.char
L1537[15:17:16] <Lizzy> Kodos, used to
L1538[15:17:24] <gamax92> it's only 2pm ... @_@;
L1539[15:17:29] <Kodos> I need someone with an active account
L1540[15:17:32] <gamax92> it feels like forever
L1541[15:17:46] <Lizzy> but i lost all my shit and got so pissed off with it i stopped paying for it
L1542[15:17:54] <Forecaster> I used to
L1543[15:18:04] <Forecaster> I just got distracted
L1544[15:18:16] <Forecaster> what happened?
L1545[15:18:41] <Kodos> Trying to get ahold of someone, and as far as I know EVE is the only thing he's active in anymore
L1546[15:19:20] <Forecaster> isn't there a forum or something?
L1547[15:19:28] <gamax92> you'll call him up and he'll be like, ... this is my destiny.
L1548[15:19:33] <Kodos> probably but I don't know if he checks it
L1549[15:20:15] <Forecaster> try it just in case?
L1550[15:23:22] <gamax92> the storm has arrived!
L1551[15:25:45] <Forecaster> orhasit?!
L1552[15:26:19] <Ember_Primrose> Forecaster, here is a ad of foreigners describing their favorites of sa: https://youtu.be/bASHX9nrIpg?list=PLWWp0So91xBD0AKWlYXjzugJZTCI5w90u
L1553[15:26:20] <MichiBot> Santam TVC "One-of-a-kind" | length: 1m 31s | Likes: 9 Dislikes: 2 Views: 1963 | by Santam Insurance
L1554[15:28:37] <Forecaster> I see, so, how many baboons have trashed your house? :P
L1555[15:28:46] <Forecaster> that one sounds totally legit
L1556[15:29:25] <gamax92> Forecaster: yes, I can see the storm
L1557[15:29:39] <gamax92> it's currently raining with fast winds
L1558[15:29:46] <Forecaster> :O
L1559[15:29:52] <Ember_Primrose> five
L1560[15:29:55] <gamax92> I can also smell the delicious smell of garlic bread in the oven
L1561[15:30:19] <gamax92> also note to self using mlockall apparently causes intense cpu usage in applications
L1562[15:30:47] ⇦ Quits: Negi (~Poireau@2a01:e34:ef13:4150:de53:60ff:febc:baf1) (Quit: Buh bye!)
L1563[15:33:04] <Lizzy> HAHA! IT WORKS
L1564[15:33:26] <Forecaster> \o/
L1565[15:33:31] ⇦ Quits: Yepoleb (~yepoleb@178-190-225-183.adsl.highway.telekom.at) (Quit: Yepoleb)
L1566[15:33:43] <Ember_Primrose> \o/
L1567[15:34:21] <Lizzy> imgur album showing it off comming son
L1568[15:37:02] <Kodos> Ugh it is more difficult than I thought it would be to find someone who still plays EVE
L1569[15:37:17] <Ember_Primrose> EVE?
L1570[15:37:25] <Forecaster> Eve Online
L1571[15:37:26] <Kodos> EVE Online
L1572[15:37:32] <Forecaster> sci-fi mmo
L1573[15:37:35] * Ember_Primrose shrugs
L1574[15:37:40] <Forecaster> spaceship mmo rather
L1575[15:37:45] <Ember_Primrose> still dunno what that is
L1576[15:37:54] <Forecaster> a game :P
L1577[15:38:28] <Ember_Primrose> :D
L1578[15:42:45] <Forecaster> http://explosm.net/comics/4365/
L1579[15:42:47] <Forecaster> seems legit
L1580[15:43:10] <Ember_Primrose> :D
L1581[15:45:35] ⇦ Quits: LeshaInc (~LeshaInc@92.51.56.111) (Quit: SIGKILL)
L1582[15:46:48] <Lizzy> http://imgur.com/a/uCgpc
L1583[15:47:24] <Ember_Primrose> :O
L1584[15:47:39] * Ember_Primrose gazes in amazement
L1585[15:48:43] <Lizzy> what before took me a week before giving up to impliment i managed to do in an afternoon
L1586[15:48:44] <Forecaster> nice
L1587[15:49:34] <Ember_Primrose> will you consider making a full tutoril, imgur based looks nice tho, when project is complete? My brain can't figure it out just from that part. But it still looks amazing
L1588[15:50:37] <Forecaster> on the subject of cannibalism: http://www.smbc-comics.com/comic/last-meal
L1589[15:50:39] <Lizzy> I will be doing vidio tutorials/showcases when it's done
L1590[15:50:51] <Ember_Primrose> \o/
L1591[15:51:02] <Lizzy> I added one more image to that album which is the controller itself (or one of them)
L1592[15:51:05] <Ember_Primrose> i am happy i subscribed then
L1593[15:51:21] <Lizzy> also the signal changing will be better demonstrated in a video
L1594[15:51:59] <Lizzy> just need to write the server portion and actually fix some of the signal boxes first though, will do that tomorrow though
L1595[15:52:09] * Ember_Primrose hugs Lizzy thankfully
L1596[15:52:50] <Lizzy> the current way is also a lot easier on the network traffic that the one system which i got half working
L1597[15:53:21] <Lizzy> cause this way is just saying block X is occupied, block X is free. the old one updated every signal individually
L1598[15:54:02] <Lizzy> and also the signal choosing logic is done controller side and not server side
L1599[15:54:11] <Lizzy> which IMO is easier to manager
L1600[15:54:14] <Lizzy> which IMO is easier to manages
L1601[15:54:16] <Lizzy> which IMO is easier to manage*
L1602[15:54:17] <Lizzy> ffs
L1603[15:55:09] <Ember_Primrose> no worries Lizzy, i understood you. :D
L1604[15:55:51] <Forecaster> in your opinion your manager is easy? :D
L1605[15:55:59] <Forecaster> got it!
L1606[15:57:48] ⇦ Quits: TinyEmber (~tinyember@105.229.42.87) (Remote host closed the connection)
L1607[15:59:04] <Forecaster> ohno not tiny rick! I mean ember!
L1608[15:59:23] <Mimiru> Ugh... Tiny Rick...
L1609[15:59:41] <Forecaster> :P
L1610[15:59:56] ⇨ Joins: maumagro (~maumagro@201.178.16.24)
L1611[16:00:15] <maumagro> Hello everyone
L1612[16:00:20] <Forecaster> hi
L1613[16:00:29] <maumagro> how are ya?
L1614[16:00:59] <Forecaster> I am doing just grizzly bears
L1615[16:01:31] <maumagro> cool
L1616[16:02:03] ⇨ Joins: test (webchat@105.229.42.87)
L1617[16:02:27] * test pokes Ember_Primrose
L1618[16:02:31] *** test is now known as Guest30663
L1619[16:04:00] ⇦ Quits: maumagro (~maumagro@201.178.16.24) (Client Quit)
L1620[16:05:07] <Ember_Primrose> it works
L1621[16:05:10] <Ember_Primrose> \o/
L1622[16:05:14] <Forecaster> yay
L1623[16:05:59] ⇦ Quits: Guest30663 (webchat@105.229.42.87) (Ping timeout: 195 seconds)
L1624[16:06:37] <Talonos> Got it to work. I wrote a single unicode character to a file using lua, then edited that file in an external editor, and it accepted the file as valid after that.
L1625[16:07:07] <Forecaster> did you check what encoding it was? :P
L1626[16:07:38] <Talonos> Yeah, UTF-8, same as I tried.
L1627[16:07:44] <Talonos> I think it may have been my line endings.
L1628[16:08:29] *** g is now known as gAway2002
L1629[16:08:32] ⇨ Joins: LuMistry (uid146685@id-146685.charlton.irccloud.com)
L1630[16:10:28] <Inari> \r\n is the only tru elineending
L1631[16:11:12] <Talonos> That may be true, but if you get into an argument with your OS about it, you're gonna lose. :P
L1632[16:11:31] <Ember_Primrose> Lizzy, how do people auto set their away status with bouncer when quiting?
L1633[16:13:33] <Lizzy> Ember_Primrose, /znc loadmod simpleaway
L1634[16:13:59] <Ember_Primrose> :D thx
L1635[16:14:04] <gamax92> weee ... attempting to build something with gradle
L1636[16:14:26] <gamax92> Inari do you like pasta
L1637[16:14:36] <Inari> not necessarily
L1638[16:14:55] <Ember_Primrose> Lizzy, got this msg: Unable to find modinfo [simpleaway] [Unable to find module [simpleaway]]
L1639[16:15:02] <Lizzy> err
L1640[16:15:04] <gamax92> well then.
L1641[16:15:13] <Lizzy> do /znc listmod and see what's there
L1642[16:15:43] <Ember_Primrose> Unknown command [listmod] try 'Help'
L1643[16:15:50] <Lizzy> er
L1644[16:15:53] <Lizzy> hold on
L1645[16:16:16] <Lizzy> ah
L1646[16:16:20] <Lizzy> listavailmods
L1647[16:16:42] <Lizzy> ah, it's simple_away
L1648[16:16:54] <Ember_Primrose> :D just saw that
L1649[16:17:20] * Ember_Primrose hugs Lizzy
L1650[16:17:37] * Lizzy hugs Ember_Primrose then goes and sits next to vifino
L1651[16:17:45] <Forecaster> I wouldn't mind a bnc connection either, I have disconnects occationally, and sometimes ident goes wrong
L1652[16:17:48] <Ember_Primrose> thanks for your effort and again for the bouncer service
L1653[16:18:10] <Lizzy> Forecaster, I can set one up for you tomorrow, need to go to bed now
L1654[16:18:16] <Forecaster> me too :P
L1655[16:18:43] * Lizzy yawns and stretches, nearly hitting vifino in the face in the process
L1656[16:18:45] <Ember_Primrose> Gnight
L1657[16:18:56] * Ember_Primrose yawns
L1658[16:19:08] * Lizzy leans against vifino and snuggles him whilst falling asleep
L1659[16:19:28] <Ember_Primrose> goodnight everybody!
L1660[16:19:34] <Forecaster> night!
L1661[16:19:42] * Forecaster hugs Ember_Primrose
L1662[16:23:01] <CompanionCube> the only true line ending is \n
L1663[16:23:11] <Izaya> righto
L1664[16:23:37] <Izaya> I now have 6 untouched hash-verified ISOs from Microsoft and two universal Windows 7 isos
L1665[16:24:52] <CompanionCube> neat
L1666[16:25:01] <CompanionCube> what are you going to use them for
L1667[16:25:09] <Izaya> (Hopefully for the last two, I disabled efi.cfg on them
L1668[16:25:12] <Izaya> CompanionCube: Hoarding! :D
L1669[16:25:26] <CompanionCube> you added an extra f
L1670[16:25:32] <Izaya> Also because they're from M$ I know they don't include any more malware than base Windows 7
L1671[16:25:33] <Izaya> shhhh
L1672[16:25:45] <CompanionCube> Izaya, ''Report: Verizon is buying Yahoo for $5 billion' /me wonders what to think about this
L1673[16:27:11] <Izaya> verizon just wasted 5 billion?
L1674[16:27:27] <CompanionCube> considering yahoo is my ultimate email provider
L1675[16:27:40] ⇦ Quits: Caveman_ (~Caveman@2001:1c00:a08:f100:8d8d:79e7:86ad:15c8) (Read error: Connection reset by peer)
L1676[16:28:02] <Izaya> https://i.imgur.com/lXlTkhC.png
L1677[16:30:34] * vifino pets Lizzy and puts a blanket over her
L1678[16:33:52] <Izaya> http://mirror.corenoc.de/digitalrivercontent.net/ this page is useful
L1679[16:34:31] ⇦ Quits: Keanu73 (~Keanu73@host-92-28-79-109.as13285.net) (Quit: Gotta go to bed or something. See ya!)
L1680[16:35:54] <Dustpuppy> what is usefull at windows?
L1681[16:36:21] <Izaya> Dustpuppy: Sometimes one is forced to use Windows, and at that time it's best to have a clean pirated copy
L1682[16:36:34] <Izaya> (In my opinion, anyway)
L1683[16:37:10] <gamax92> Dustpuppy: compiling software for Windows, making sure it works properly in Windows, Windows only games that don't run in wine, etc etc
L1684[16:37:36] <Izaya> https://i.imgur.com/OoR0Kq7.png
L1685[16:45:06] <Inari> https://www.youtube.com/watch?v=c7dV1PNPxAk heh
L1686[16:45:07] <MichiBot> Make an Industrial Grade Night Light | length: 4m 2s | Likes: 15835 Dislikes: 90 Views: 605256 | by ElectroBOOM
L1687[16:47:16] ⇨ Joins: Kiddobyte (~Kiddobyte@75-128-216-19.dhcp.trcy.mi.charter.com)
L1688[16:49:23] <gamax92> jadx working much better than dex2jar + decompiler
L1689[16:59:43] <Dustpuppy> what is the best free dyn dns service?
L1690[17:02:16] ⇦ Quits: Trangar (~Trangar@249-153-145-85.ftth.glasoperator.nl) (Quit: Leaving)
L1691[17:17:52] <gamax92> Time to try the dreaded Krakatau :D
L1692[17:18:13] ⇦ Quits: Jezza (~Jezza@92.206.5.6) (Ping timeout: 192 seconds)
L1693[17:25:01] ⇨ Joins: Madxmike (~Madxmike@12.196.153.98)
L1694[17:35:57] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L1695[17:43:04] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L1696[17:46:00] ⇦ Quits: AlexisMachina (uid57631@2604:8300:100:200b:6667:3:0:e11f) (Quit: Connection closed for inactivity)
L1697[17:47:06] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L1698[17:47:15] *** Antheus|Away is now known as Antheus
L1699[17:48:28] ⇦ Quits: turtledude01 (~turtledud@71-89-110-94.dhcp.stpt.wi.charter.com) (Ping timeout: 186 seconds)
L1700[17:50:27] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L1701[17:51:22] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L1702[17:51:41] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Read error: Connection reset by peer)
L1703[17:52:08] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L1704[17:54:15] <CompanionCube> LOL
L1705[17:54:24] <CompanionCube> someone tried to speak HTTP...to my sshd
L1706[17:54:26] <CompanionCube> 'Jul 25 01:45:18 damian sshd[9263]: Bad protocol version identification 'GET / HTTP/1.1' from 187.85.140.210 port 56851
L1707[17:54:26] <CompanionCube> '
L1708[17:54:35] ⇨ Joins: turtledude01 (~turtledud@71-89-110-94.dhcp.stpt.wi.charter.com)
L1709[17:54:54] <CompanionCube> Skye, Izaya ^
L1710[17:55:20] <Izaya> ...
L1711[17:56:07] <CompanionCube> stupid bot/scanner is stupid
L1712[17:57:37] <Antheus> So instead of making like a word file or PDF for the lesson like my last teacher, this teacher puts it all on the descriptive text for the lessons
L1713[17:57:51] <Antheus> it's hell.
L1714[17:58:52] <Antheus> and no matter what I do I can't get firefox to print the page
L1715[18:01:27] <Izaya> descriptive text?
L1716[18:02:07] <Antheus> Like what's usually ment to describe the lesson
L1717[18:02:32] <Antheus> like "This lessons covers how to eat a turkey leg" or whatnot
L1718[18:03:34] <Antheus> So I'm literally copying all the text into libreoffice and printing it through that
L1719[18:03:44] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L1720[18:08:04] <Luchong> hey guys, what would be a nice way to connect multiple computers to the same screen but only show whats happening in one of them at a time? Cause right know all gpus are rendering at the same time ...
L1721[18:12:54] <Mimiru> OpenSecurity has a KVM that lets you have multiple inputs and a single output with the current input selectable
L1722[18:13:27] <Mimiru> In theory you can do something close with a block in base OC... I don't remember which though :P
L1723[18:13:55] <Luchong> maybe the net splitter?
L1724[18:14:00] <Mimiru> yeah
L1725[18:14:42] <gamax92> oh, Krakatau doesn
L1726[18:14:54] <gamax92> 't do StringBuilder -> string concat
L1727[18:15:31] ⇨ Joins: BILLPC2684 (~BILLPC268@cpe-24-26-134-100.columbus.res.rr.com)
L1728[18:17:44] * CompanionCube grumbles about Debian not shipping either an init script or .service with nginx
L1729[18:18:49] <CompanionCube> wait, iirc it just downloaded shit
L1730[18:20:04] <gamax92> ooh, jadx, even though a method wasn't parsed correctly, has an option to still show you what it came up with
L1731[18:21:39] <CompanionCube> tfw default nginx config supports v6...your VPS doesn't
L1732[18:21:48] <CompanionCube> resulting in the config failing out of the box
L1733[18:24:43] ⇦ Quits: reinei (~reinei@p5DCE4CA3.dip0.t-ipconnect.de) (Quit: Leaving)
L1734[18:25:37] *** medsouz is now known as medsouz|offline
L1735[18:29:06] ⇦ Quits: Nathan1852 (~Nathan185@HSI-KBW-109-192-133-159.hsi6.kabel-badenwuerttemberg.de) (Ping timeout: 201 seconds)
L1736[18:32:11] ⇦ Quits: ping (~v^@me.pxtst.com) (Ping timeout: 198 seconds)
L1737[18:32:17] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L1738[18:32:56] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L1739[18:36:49] ⇦ Quits: feldim2425 (~feldim242@212-88-3-169.adsl.highway.telekom.at) (Ping timeout: 195 seconds)
L1740[18:37:59] <gamax92> oh wow, jadx will even spit out a gradle ready layout
L1741[18:38:06] *** medsouz|offline is now known as medsouz
L1742[18:40:00] ⇨ Joins: feldim2425 (~feldim242@213-33-14-181.adsl.highway.telekom.at)
L1743[18:41:00] ⇦ Quits: Inari (~Pinkishu@p5DEC6D08.dip0.t-ipconnect.de) (Quit: 'Ey, come on. Keep your head up!' (Lucio))
L1744[18:48:50] ⇦ Quits: ^v (~^v@c-73-161-239-117.hsd1.mi.comcast.net) (Ping timeout: 201 seconds)
L1745[18:50:28] ⇨ Joins: techno156 (~techno156@137.154.59.162)
L1746[18:58:42] ⇨ Joins: wembly (~wembly@50.240.220.69)
L1747[19:15:38] <gamax92> okay, jadx fails at writing xml, had to use apktool instead to get good output
L1748[19:17:45] * CompanionCube grumbles at certbot not supporting nginx
L1749[19:30:22] ⇦ Quits: MajGenRelativity (~MajGenRel@c-50-136-14-108.hsd1.ma.comcast.net) (Quit: Leaving)
L1750[19:33:46] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L1751[19:33:50] <Izaya> https://a.pomf.cat/ycahty.jpg
L1752[19:35:54] <CompanionCube> Izaya, welcome to the drive failure club
L1753[19:36:04] <CompanionCube> ddrescue the fuck out of that thing...if it's not too late.
L1754[19:38:43] <Izaya> CompanionCube: it doesn't have a /dev entry
L1755[19:38:57] <Izaya> wat do
L1756[19:38:59] <CompanionCube> ...it's too late then most likely
L1757[19:39:20] <CompanionCube> did you have anything important on that disk
L1758[19:39:24] <Izaya> welp
L1759[19:39:26] <Izaya> not mine
L1760[19:39:49] <CompanionCube> you could always try rebooting or checking the cable
L1761[19:39:53] <CompanionCube> you might get lucky
L1762[19:41:11] ⇦ Quits: techno156 (~techno156@137.154.59.162) (Ping timeout: 198 seconds)
L1763[19:42:04] <CompanionCube> Izaya, may I ask what's on the disk
L1764[20:04:08] *** Kodos is now known as peer
L1765[20:04:14] <peer> >=D
L1766[20:04:17] *** peer is now known as Kodos
L1767[20:06:06] <CompanionCube> woo
L1768[20:06:18] * CompanionCube just secured his mostly-unused webserver with Lets Encrypt
L1769[20:06:42] <Izaya> CompanionCube: Windows 7, apparently
L1770[20:07:06] <CompanionCube> Izaya, so nothing important then?
L1771[20:08:20] <Izaya> Depends who you ask I gueds
L1772[20:08:29] <Izaya> It had Windows Live Mail
L1773[20:08:52] <Izaya> which seems to be the sacred cow for old people
L1774[20:09:25] <CompanionCube> applications are replaceable
L1775[20:16:32] ⇨ Joins: Tahg (~Tahg@pool-72-74-136-63.bstnma.fios.verizon.net)
L1776[20:19:58] <gamax92> I hate intelliJ
L1777[20:20:04] <gamax92> or at least Android Studio
L1778[20:25:35] ⇦ Quits: Tahg (~Tahg@pool-72-74-136-63.bstnma.fios.verizon.net) (Ping timeout: 190 seconds)
L1779[20:32:16] ⇦ Quits: Nentify (uid14943@id-14943.highgate.irccloud.com) (Quit: Connection closed for inactivity)
L1780[20:37:58] * Mimiru sighs
L1781[20:38:07] * Mimiru glares at error counter in eclipse
L1782[20:39:21] <Mimiru> 772
L1783[20:40:35] ⇨ Joins: Tahg (~Tahg@pool-72-74-136-63.bstnma.fios.verizon.net)
L1784[20:41:39] ⇨ Joins: ping (~v^@me.pxtst.com)
L1785[20:41:39] zsh sets mode: +v on ping
L1786[20:43:44] <Mimiru> Fuck this
L1787[20:45:24] <Mimiru> 771 errors I can't convince myself to keep kludging through it
L1788[20:45:50] <Mimiru> maybe a few months from now
L1789[20:53:10] ⇦ Quits: LuMistry (uid146685@id-146685.charlton.irccloud.com) (Quit: Connection closed for inactivity)
L1790[20:59:47] ⇦ Quits: Tahg (~Tahg@pool-72-74-136-63.bstnma.fios.verizon.net) (Ping timeout: 192 seconds)
L1791[21:00:02] ⇨ Joins: Tahg (~Tahg@pool-72-74-136-63.bstnma.fios.verizon.net)
L1792[21:00:22] ⇦ Quits: Madxmike (~Madxmike@12.196.153.98) (Remote host closed the connection)
L1793[21:04:51] ⇦ Quits: Turtle (~SentientT@82-171-92-73.ip.telfort.nl) (Quit: Nettalk6 - www.ntalk.de)
L1794[21:06:46] ⇨ Joins: Doty1154 (~Doty1154@2601:648:8000:134f:31f4:a991:da18:5e7e)
L1795[21:07:04] ⇨ Joins: alexbuzzbee (~alexbuzzb@d-162-223-180-83.cpe.metrocast.net)
L1796[21:24:09] ⇦ Quits: BILLPC2684 (~BILLPC268@cpe-24-26-134-100.columbus.res.rr.com) (Ping timeout: 192 seconds)
L1797[21:34:29] <Kodos> Anyone have any bright ideas on how to visually connect a delta with a circle
L1798[21:34:45] <Kodos> Trying to incorporate a delta symbol into a circular logo
L1799[21:57:26] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L1800[22:06:33] *** medsouz is now known as medsouz|offline
L1801[22:07:15] ⇦ Quits: minot (~minot@pool-100-1-168-123.nwrknj.fios.verizon.net) (Ping timeout: 190 seconds)
L1802[22:10:17] ⇨ Joins: Nachtara (~Nachie@50-83-108-134.client.mchsi.com)
L1803[22:15:34] ⇦ Quits: Doty1154 (~Doty1154@2601:648:8000:134f:31f4:a991:da18:5e7e) (Read error: Connection reset by peer)
L1804[22:31:49] ⇨ Joins: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net)
L1805[22:44:47] ⇦ Quits: Lathanael|Away (~Lathanael@p54960924.dip0.t-ipconnect.de) (Ping timeout: 198 seconds)
L1806[22:45:48] ⇨ Joins: BILLPC2684 (~BILLPC268@cpe-24-26-134-100.columbus.res.rr.com)
L1807[22:49:52] ⇦ Quits: Kodos (~Kodos@2602:306:ce20:6c30:94f:211:6ae9:e4ad) (Quit: Leaving)
L1808[22:51:25] ⇨ Joins: Lathanael|Away (~Lathanael@p549610B8.dip0.t-ipconnect.de)
L1809[23:01:00] ⇨ Joins: CoderPuppy (~cpup@32.218.116.78)
L1810[23:04:55] ⇦ Quits: cpup (~cpup@32.218.118.26) (Ping timeout: 384 seconds)
L1811[23:10:35] ⇦ Quits: CoderPuppy (~cpup@32.218.116.78) (Ping timeout: 198 seconds)
L1812[23:10:49] ⇨ Joins: npe|office (~NPExcepti@bps-gw.hrz.tu-chemnitz.de)
L1813[23:11:52] ⇦ Quits: alexbuzzbee (~alexbuzzb@d-162-223-180-83.cpe.metrocast.net) (Quit: Macbook has gone zzz)
L1814[23:15:45] ⇦ Quits: Dimitriye98 (~Dimitriye@c-73-252-165-178.hsd1.ca.comcast.net) (Remote host closed the connection)
L1815[23:16:43] ⇨ Joins: cpup (~cpup@32.218.116.89)
L1816[23:25:51] ⇦ Quits: alekso56 (~znc@2001:464b:c2aa:0:745d:45ff:fe3b:a098) (Ping timeout: 202 seconds)
L1817[23:26:58] ⇨ Joins: CoderPuppy (~cpup@32.218.116.116)
L1818[23:27:25] ⇨ Joins: alekso56 (~znc@2001:464b:c2aa:0:745d:45ff:fe3b:a098)
L1819[23:29:25] ⇦ Quits: cpup (~cpup@32.218.116.89) (Ping timeout: 201 seconds)
L1820[23:45:06] ⇨ Joins: cpup (~cpup@32.218.116.129)
L1821[23:47:15] ⇦ Quits: CoderPuppy (~cpup@32.218.116.116) (Ping timeout: 190 seconds)
L1822[23:59:28] ⇦ Quits: Corded (discord@eos.pc-logix.com) (Remote host closed the connection)
L1823[23:59:39] ⇨ Joins: Corded (discord@eos.pc-logix.com)
L1824[23:59:39] zsh sets mode: +v on Corded
<<Prev Next>> Scroll to Top