<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:07:42] ⇨ Joins: Cazzar (~CazzarZNC@abrarsyed.me)
L2[00:07:42] zsh sets mode: +v on Cazzar
L3[00:17:57] *** LordFokas is now known as LordFokas|off
L4[00:31:44] ⇨ Joins: Gopher|omnom (~Gopher@64.sub-70-193-167.myvzw.com)
L5[00:31:45] ⇦ Quits: Gopher (~Gopher@64.sub-70-193-167.myvzw.com) (Killed (NickServ (GHOST command used by Gopher|omnom)))
L6[00:31:49] *** Gopher|omnom is now known as Gopher
L7[00:45:48] ⇦ Quits: Vexatos (~Vexatos@p200300556E7F34533050F257A51FD9A5.dip0.t-ipconnect.de) (Quit: I guess I have to go now. Bye ✔)
L8[01:06:24] ⇦ Quits: mallrat208 (~mallrat20@68.204.184.175) (Ping timeout: 378 seconds)
L9[01:14:55] ⇦ Quits: Doty1154 (~doty1154@50.136.193.35) (Read error: Connection reset by peer)
L10[01:21:56] ⇨ Joins: Gopher|omnom (~Gopher@64.sub-70-193-167.myvzw.com)
L11[01:21:57] ⇦ Quits: Gopher (~Gopher@64.sub-70-193-167.myvzw.com) (Killed (NickServ (GHOST command used by Gopher|omnom)))
L12[01:22:01] *** Gopher|omnom is now known as Gopher
L13[01:29:15] ⇨ Joins: dfo (webchat@cpe-066-057-039-151.nc.res.rr.com)
L14[01:29:59] <dfo> hey, quick question, im having some trouble understanding the correct syntax to get a robot to right click on a tesseract with a crescent wrench, can anyone help?
L15[01:31:10] <dfo> i know i need to use robot.use() when its directly in front of the tesseract but im unsure on how to add in the "sneaky" part to the command correctly
L16[01:39:30] <Dashkal> dfo: robot.use([side: number[, sneaky: boolean[, duration: number]]]): boolean[, string]
L17[01:39:35] <Dashkal> from here: http://ocdoc.cil.li/api:robot
L18[01:39:55] <dfo> i saw that, i am trying to use robot.use(sneaky: true)
L19[01:40:03] <dfo> apparently im missing something
L20[01:40:09] <Dashkal> Must include the side first
L21[01:40:32] <Dashkal> at a guess (no client on hand). robot.use(sides.front, true)
L22[01:40:52] <Dashkal> sides comes from the sides api: http://ocdoc.cil.li/api:sides
L23[01:41:02] <Dashkal> 'api' used a little loosely. It's just a bunch of constants
L24[01:41:02] <dfo> oddlly
L25[01:41:12] <dfo> robot.use(sneak, true) appears to work perfectly
L26[01:41:22] <dfo> but i dont see a comma specified anywhere in that documentation
L27[01:41:35] <Dashkal> uh...
L28[01:41:43] <dfo> sneaky, true*
L29[01:41:44] <Dashkal> I copied my description from the docs
L30[01:41:54] <Dashkal> robot.use([side: number[, sneaky: boolean[, ...
L31[01:42:06] <Dashkal> commas after the square brackets (square brackets mean optional)
L32[01:42:41] <Dashkal> Translated, the arguments are all optional, but if specified, they must be specified from the first up to the one you want. You cannot just 'skip'
L33[01:43:05] <DeanIsaKitty> dfo: I'm pretty sure you don't need named arguments (as in use robot.use(sides.front, true) instead of robot.use(side: sides.front, sneaky: true) if you were using that.)
L34[01:43:22] <dfo> well im right here making it work without specifying a side
L35[01:43:40] <dfo> im just curious as to why putting a comma in between "sneaky" and the boolean value seems to be working
L36[01:43:44] <Dashkal> Actually, you did
L37[01:43:51] <Dashkal> having 'sneaky' there filled the missing argument
L38[01:44:02] <Dashkal> Lua lets you be very sloppy with what you feed functons
L39[01:44:09] <dfo> the command im running is robot.use(sneaky, true)
L40[01:44:20] <Dashkal> 'sneaky' is your first argument. You passed 'sneaky' as a side
L41[01:44:45] <Dashkal> Which was probably Nil
L42[01:45:47] <dfo> so what you're saying is that the correct way to do it would be:
L43[01:46:25] <dfo> err sec
L44[01:46:40] <Dashkal> robot.use(sides.front, true)
L45[01:46:43] <Dashkal> Turns out that was correct
L46[01:47:31] <Dashkal> You seem to be able to get away with nil, but I'd call that an accidental success. The docs don't specify that as an allowed value for that argument.
L47[01:48:03] <dfo> ok i think my trouble is coming from not understanding the syntax correct, especially the part where you say the brackets are optional
L48[01:48:11] <dfo> robot.use([side: number[, sneaky: boolean[, duration: number]]]): boolean[, string]
L49[01:48:34] <Dashkal> Erm, for that, i suggest a basic Lua tutorial
L50[01:48:35] <dfo> i would never actually put "side:" , "sneaky:" , "duration:", etc., into the argument, correct?
L51[01:48:38] <Dashkal> Correct
L52[01:48:41] <Dashkal> Nor the square brackets
L53[01:49:02] <dfo> ok cool
L54[01:49:02] <dfo> thanks
L55[01:49:26] <Dashkal> Lua function calls are of the form: local result = func(arg, arg, arg)
L56[01:49:39] <Dashkal> That would call a function 'func' passing in three arguments, and storing it into a new local variable called 'result
L57[01:49:41] <Dashkal> '
L58[01:50:30] <dfo> ok, now i need to learn how to write a small program and a file and save it on the robot, i couldnt' find documentation on that, where do i start for learning about that?
L59[01:50:33] <Dashkal> The documentation line I pasted adds some extra information. The sneaky: bit is just naming the argument so you can read its description below. Square brackets [] indicate optional sections.
L60[01:50:40] <dfo> gotcha
L61[01:50:52] <Dashkal> http://ocdoc.cil.li/tutorial
L62[01:51:23] <Dashkal> Basic Computer, Writing Code, Hard Drives. Suggest you do them in order even if you've picked up parts of it as later ones assume knowledge from previous ones
L63[01:51:51] <dfo> that made sense for the actual computers but i didn't see anything about the robots
L64[01:51:59] <dfo> can i put a drive into a robot and store programs there?
L65[01:52:17] <Dashkal> If and only if you added a disk drive when making the thing
L66[01:52:22] <Dashkal> Otherwise you have what you installed in it
L67[01:52:39] <dfo> hmm im just testing in creative so who knows
L68[01:52:54] <Dashkal> I have no idea what the creative robot comes with. Cannot comment there
L69[01:53:06] <dfo> i tried to edit something int he filesystem but it says the filesystem is ready only
L70[01:53:14] <dfo> read*
L71[01:53:24] <Dashkal> It's a bit of a red herring. To effectively use robots, you need to learn to assemble them. Robots have whatever you put into them
L72[01:53:34] <Dashkal> The one from NEI is something of a 'demo'.
L73[01:53:51] <Dashkal> Might tell you what's installed in its tooltip. Unsure
L74[01:54:17] <dfo> ok, guess i better take a few steps back and build a robot from scratch then
L75[01:54:57] <Dashkal> Be sure to add a disk drive (an actual drive, not the OS disk directly) and you'll be able to open it an insert disks as needed
L76[01:55:45] <Dashkal> Personally, I tend to preformat a drive with whatever code I want and just assemble it with the drive already done. But that only works when you already know exactly what the thing is going to be doing.
L77[01:56:10] <Dashkal> For exploration, a disk drive and a hdd make a good starting point, since you get 'normal' computer operation
L78[01:56:40] <dfo> i dont see anything on the wiki about assembling robots?
L79[01:56:49] ⇨ Joins: asie (~asie@78.10.51.34)
L80[01:56:50] zsh sets mode: +v on asie
L81[01:56:56] <Dashkal> http://ocdoc.cil.li/block:assembler
L82[01:57:04] <Dashkal> That wiki page needs love
L83[01:57:15] <dfo> ok ill play with it and see what i can figure out
L84[01:57:16] <dfo> thanks
L85[01:57:26] *** Wer38|afk is now known as wer38
L86[01:58:06] <Dashkal> A bit of warning. OC will let you build things with as little as you like. So remember to add things like a video card and keyboard if you want that part :P
L87[01:59:54] <dfo> now what makes the assembler differentiate between a standard computer and a drone?
L88[02:00:04] <Dashkal> The case you put in it
L89[02:00:21] <Dashkal> A computer case makes a robot. A microcontroller case a microcontroller. A drone case a drone, and finally a tablet case for tablets.
L90[02:01:30] <dfo> ok now we're getting somewhere
L91[02:03:28] <Dashkal> I have to take off now
L92[02:03:31] <Dashkal> Happy exploring :)
L93[02:03:56] ⇨ Joins: mallrat208 (~mallrat20@68-204-184-175.res.bhn.net)
L94[02:04:17] <dfo> thansk for the help
L95[02:05:42] ⇦ Quits: Something12 (~Something@S010674d02b5d5181.vs.shawcable.net) (Read error: Connection reset by peer)
L96[02:20:39] *** gAway2002 is now known as g
L97[02:22:18] ⇦ Quits: septi25 (~septi25@ipb21bbb54.dynamic.kabel-deutschland.de) (Ping timeout: 378 seconds)
L98[02:35:15] ⇦ Quits: dfo (webchat@cpe-066-057-039-151.nc.res.rr.com) (Ping timeout: 186 seconds)
L99[02:37:39] ⇨ Joins: Gopher|omnom (~Gopher@64.sub-70-193-167.myvzw.com)
L100[02:37:40] ⇦ Quits: Gopher (~Gopher@64.sub-70-193-167.myvzw.com) (Killed (NickServ (GHOST command used by Gopher|omnom)))
L101[02:37:44] *** Gopher|omnom is now known as Gopher
L102[02:46:22] ⇦ Quits: asie (~asie@78.10.51.34) (Ping timeout: 189 seconds)
L103[02:55:43] ⇦ Quits: lperkins2 (~perkins@63.227.187.208) (Ping timeout: 189 seconds)
L104[02:59:11] ⇨ Joins: Izaya (~ShadowKat@chocolate.paranoidlabs.org)
L105[02:59:27] <Izaya> Woo
L106[02:59:31] <Izaya> The bouncer is back
L107[03:00:59] *** Kilobyte is now known as Kiloff
L108[03:04:24] *** Yepoleb is now known as Guest15252
L109[03:04:25] ⇨ Joins: Yepoleb (~quassel@194-166-6-76.adsl.highway.telekom.at)
L110[03:06:13] *** prassel|off is now known as prasselpikachu
L111[03:06:18] ⇦ Quits: Guest15252 (~quassel@178-191-135-204.adsl.highway.telekom.at) (Ping timeout: 378 seconds)
L112[03:09:34] *** Kiloff is now known as Kilobyte
L113[03:10:28] *** Riking is now known as Riking|away
L114[03:11:36] ⇦ Quits: Sirdabalot_ (webchat@109.246.123.208) (Quit: Web client closed)
L115[03:11:52] ⇨ Joins: Sirdabalot_ (webchat@109.246.123.208)
L116[03:24:18] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L117[03:25:26] *** prasselpikachu is now known as prassel|off
L118[03:53:29] ⇦ Quits: TabletCube (~TCube@90.201.152.118) (Read error: Connection reset by peer)
L119[03:53:36] ⇨ Joins: TabletCube (~TCube@90.201.152.118)
L120[04:05:30] ⇦ Quits: Ditchbuster (~Ditchbust@c-50-134-128-178.hsd1.co.comcast.net) (Ping timeout: 200 seconds)
L121[04:06:53] <Izaya> Argh, isn't it terrible when you want to comment on something, but know doing so will get you permabanned?
L122[04:08:35] ⇨ Joins: dangranos (~dangranos@176.50.183.94)
L123[04:20:02] *** wer38 is now known as Wer38|afk
L124[04:26:32] <Lizzy> Izaya, ?
L125[04:28:06] <dangranos> :O
L126[04:28:07] <dangranos> SKS
L127[04:28:10] <dangranos> yaaaay
L128[04:35:43] <Izaya> Lizzy: Ever noticed how people that use CC always want to do a project with other people but nothing ever gets done?
L129[04:35:58] <Lizzy> somewhat
L130[04:38:08] *** Away_21 is now known as Wuerfel_21
L131[04:38:52] <Lizzy> Izaya, how's lain doing?
L132[04:39:29] <Izaya> Lizzy: Well, I have apache and znc installed, need to re-add users, didn't back up /etc/passwd or /etc/shadow ._.
L133[04:40:03] <Lizzy> did you back up /home?
L134[04:40:11] <Izaya> Separate HDD.
L135[04:40:15] <Lizzy> k
L136[04:40:26] <Izaya> Also kept /srv
L137[04:40:58] <Lizzy> at least i wont need to recompile InspIRCd
L138[04:41:15] <Izaya> "some time later..."
L139[04:42:23] <Lizzy> also in other news i got my RPi2 working
L140[04:42:48] <Izaya> Fun.
L141[04:42:57] <Izaya> Don't take any photos of it, you'll reset it.
L142[04:43:24] <Izaya> (Part of the power supply dies when subjected to enough light)
L143[04:43:39] <Izaya> Therefore resetting the board.
L144[04:49:20] ⇨ Joins: theohack (~theohack@36.72.71.88)
L145[04:50:21] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) (Remote host closed the connection)
L146[04:50:27] ⇦ Quits: theohack (~theohack@36.72.71.88) (Client Quit)
L147[04:50:45] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L148[04:52:56] <Izaya> Yay, home directories are set up again!
L149[04:55:03] *** Kilobyte is now known as Kiloff
L150[04:55:04] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) (Remote host closed the connection)
L151[04:55:09] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L152[04:55:16] * Skye slaps nxsupert
L153[04:55:33] * Skye likes his new headset
L154[04:56:28] <Izaya> Ohai Skye
L155[04:56:33] <Izaya> Lain is alive again
L156[04:56:39] <Skye> yay
L157[04:57:05] <nxsupert> ?
L158[04:57:28] <nxsupert> WHy have I been slapped?
L159[04:57:43] <Izaya> :D Lain's ZNC works!
L160[04:58:22] <Izaya> Lizzy: Ping? Also, mind fixing up lain as a node for DarkNet?
L161[04:58:34] <Izaya> Or are you busy/at work/something?
L162[04:59:38] <nxsupert> Not strictly OC related, But is there a way of updating the forge version cauldron uses?
L163[04:59:53] * dangranos pokes Izaya
L164[05:00:04] <dangranos> there is SSSS channel on quakenet
L165[05:02:01] <Izaya> shiny
L166[05:02:30] <Izaya> yay, apache config is fixed
L167[05:05:51] *** Keridos is now known as Keridos_off
L168[05:07:07] ⇦ Quits: TabletCube (~TCube@90.201.152.118) (Remote host closed the connection)
L169[05:09:19] ⇨ Joins: tattyseal (~tattyseal@2.25.7.123)
L170[05:11:59] *** ConcernedAway is now known as ConcernedHobbit
L171[05:24:49] *** manmaed|AFK is now known as manmaed
L172[05:31:25] ⇨ Joins: sirius_black (~sirius_bl@e156044.upc-e.chello.nl)
L173[05:31:28] <sirius_black> o/
L174[05:36:32] *** Kiloff is now known as Kilobyte
L175[05:39:51] <Izaya> Oooo, Harry Potter references. Nice.
L176[05:42:49] ⇨ Joins: Inari (~Uni@p54934BD8.dip0.t-ipconnect.de)
L177[05:46:33] ⇨ Joins: Hobby_boy (~Hobbyboy@host81-152-225-126.range81-152.btcentralplus.com)
L178[05:46:51] ⇦ Quits: Hobby_boy (~Hobbyboy@host81-152-225-126.range81-152.btcentralplus.com) (Remote host closed the connection)
L179[05:50:13] <Lizzy> Izaya, sorry, my tunnel died
L180[05:50:48] <Lizzy> will have a look at it (should just be re-doing the cron job)
L181[05:54:57] <Lizzy> Izaya, mind telling me what keys are in my user's auth_keys file? just the comments will do
L182[06:04:30] <dangranos> O_o
L183[06:04:41] <Lizzy> nvm, only just seen his pm
L184[06:05:23] <dangranos> first part https://en.wikipedia.org/wiki/Internal_passport#Cultural_implications
L185[06:17:54] *** Guest60217 is now known as Daiyousei
L186[06:25:44] ⇦ Quits: Brycey92 (~Brycey92@wjs5241-111-149.rh.psu.edu) (Read error: Connection reset by peer)
L187[06:31:27] ⇨ Joins: MrRatermat (ratermat@host81-158-132-107.range81-158.btcentralplus.com)
L188[06:34:16] ⇦ Quits: VikeStep (~VikeStep@CPE-123-211-234-236.lnse4.woo.bigpond.net.au) (Quit: Leaving)
L189[06:38:17] *** Techokami|Off is now known as Techokami
L190[06:40:26] ⇨ Joins: Brycey92 (~Brycey92@wjs5241-111-149.rh.psu.edu)
L191[06:50:45] ⇦ Quits: tattyseal (~tattyseal@2.25.7.123) (Quit: Leaving)
L192[06:52:54] ⇦ Quits: Benguin[ZzZ] (~Ben@adsl-83-100-188-68.karoo.KCOM.COM) (Ping timeout: 378 seconds)
L193[06:53:47] <dangranos> http://imgur.com/gallery/NwoRuLJ
L194[06:53:54] <dangranos> i think its already been done
L195[06:53:56] <dangranos> by everyone
L196[07:00:14] <Skye> wat
L197[07:07:04] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) (Remote host closed the connection)
L198[07:10:08] ⇨ Joins: Ditchbuster (~Ditchbust@c-174-51-244-114.hsd1.co.comcast.net)
L199[07:13:08] ⇨ Joins: asie (~asie@078088168214.elblag.vectranet.pl)
L200[07:13:08] zsh sets mode: +v on asie
L201[07:13:48] ⇦ Quits: MrRatermat (ratermat@host81-158-132-107.range81-158.btcentralplus.com) (Ping timeout: 378 seconds)
L202[07:14:28] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L203[07:15:23] ⇨ Joins: Benguin (~Ben@adsl-83-100-188-68.karoo.KCOM.COM)
L204[07:29:02] ⇨ Joins: Negi (~Poireau@2a01:e35:2f6a:7060:e2ca:94ff:fe1f:76e0)
L205[07:31:33] ⇨ Joins: theohack (~theohack@36.72.71.88)
L206[07:39:23] ⇦ Quits: theohack (~theohack@36.72.71.88) (Ping timeout: 198 seconds)
L207[07:43:30] ⇨ Joins: Zequan (~Zequan@d58-106-207-35.bla801.nsw.optusnet.com.au)
L208[07:48:03] *** nekosune_Away is now known as nekosune
L209[07:48:28] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) (Remote host closed the connection)
L210[08:06:38] *** Caitlyn|Off is now known as Caitlyn
L211[08:08:01] *** manmaed is now known as manmaed|AFK
L212[08:08:04] *** manmaed|AFK is now known as manmaed
L213[08:10:17] ⇨ Joins: marcin212 (~marcin212@bpn13.neoplus.adsl.tpnet.pl)
L214[08:21:41] <sirius_black> so, to what extent would the following things be possible:
L215[08:22:39] *** prassel|off is now known as prasselpikachu
L216[08:24:36] <sirius_black> (using opencomputers), reading the energy level of a bank of TE energy cells, keeping track of things inside a bigReactors reactor/turbine setup, reading the contents of a chest or jabba barrel (What item(s) / how many items in item stacks)
L217[08:25:04] <Lizzy> all those things are indeed possible
L218[08:26:16] <Caitlyn> o/ Lizzy seems the london DC died last night lol
L219[08:27:26] *** prasselpikachu is now known as prassel|off
L220[08:28:02] <sirius_black> sweet :D, i'm making an OC-powered weird type of FTB map, and the debug card should allow me to do the other stuff i want to do with it
L221[08:30:19] <sirius_black> the map is weird as in, it's in adventure mode, so you can't actually build/destroy anything, and you need to keep the whole base powered sufficiently or it blows up, but the base does provide you with the resources you need (MFR miners are creating ores for you, and you "unlock" sections of the base that contain machines/structures that allow you to do more things
L222[08:30:30] <Lizzy> Caitlyn, it seems it was just internet but yeah, would explain reconnects on here and the fact that anquietas unlinked from all it's other servers (have yet to log into PC-Logix
L223[08:31:02] <Caitlyn> Well Ender and Hathor died at the same time and had connection issues for about 15 minutes
L224[08:31:10] <Lizzy> lol
L225[08:31:42] <Caitlyn> I did finally get into ssh on ender, and restarted the IRCd which atleast got the 7 people on the server onto the rest of the network
L226[08:31:55] <Lizzy> lol
L227[08:32:11] *** prassel|off is now known as prasselpikachu
L228[08:32:29] ⇦ Quits: asie (~asie@078088168214.elblag.vectranet.pl) (Ping timeout: 198 seconds)
L229[08:32:56] <Lizzy> also at some point i plan to downscale my main VPS (now named Heyo) to either 10$ or 5$
L230[08:36:05] *** prasselpikachu is now known as prassel|off
L231[08:42:50] <Lizzy> Caitlyn, ha, just reading back through netalerts, seems helios and ender couldnt be seperated
L232[08:42:55] <Lizzy> for most of it
L233[08:43:27] <Caitlyn> lol.. well Helios MIGHT have been set to only connect to ender.
L234[08:43:33] <Caitlyn> and I MIGHT have forgot that
L235[08:43:36] <Lizzy> lol
L236[08:44:05] <Caitlyn> you should have seen the netmap in the middle of all of it..
L237[08:44:09] <Caitlyn> I wish I'd grabbed a screenshot
L238[08:44:30] <Izaya> ffs
L239[08:44:37] <Izaya> making postfix behave is hard
L240[08:45:15] <Caitlyn> Yes... yes it is
L241[08:45:31] <Lizzy> hmm, i would say you could also put in the "private" address for mine and alekso56's servers but only Anquietas has that enabled (will enable it on Heyo when i downscale that)
L242[08:46:26] <Caitlyn> alekso56's server is in Norway :P
L243[08:46:50] <Caitlyn> Hathor is Stary2001's
L244[08:47:01] <Stary2001> heh
L245[08:47:04] <Lizzy> ah, is that the one also in london?
L246[08:47:08] <Stary2001> yes
L247[08:47:09] <Caitlyn> Yeah
L248[08:47:31] <Lizzy> ok, then swap alek's name in the message with Stary2001's
L249[08:47:32] <Lizzy> :P
L250[08:47:58] <Stary2001> lol
L251[08:47:59] <Caitlyn> :P I'm not sure I can redfine a link in a server config though.. though I could just add a link with a different name for it in the server config
L252[08:48:10] <Caitlyn> Yeah.. I guess I'll do that
L253[08:48:27] <Lizzy> probably, also can you change my server's name to "Heyo" when you're doing that?
L254[08:48:36] <Caitlyn> Stary2001, does Hathor have private networking enabled?
L255[08:48:41] <Stary2001> Yes
L256[08:48:44] <Stary2001> Lemme grab ip
L257[08:48:48] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L258[08:48:48] <Caitlyn> Toss me the IP
L259[08:48:49] <Caitlyn> thanks :"P
L260[08:49:19] <Caitlyn> nxsupert, I just saw your message about updating forge in cauldron yes.. you can it's not easy but I DO have a copy of cauldron with forge 1272
L261[08:49:38] <Lizzy> Caitlyn, i havent got it enabled for Heyo at this moment, i'm probably gonna downgrade Heyo this friday
L262[08:49:53] <Caitlyn> Yeah that's fine but having the IP would be handy before hand
L263[08:50:06] <Lizzy> cant give you it till i enable it
L264[08:50:25] <Caitlyn> Well Stary2001 can give me hathors....
L265[08:50:33] <Stary2001> C
L266[08:50:35] <Caitlyn> which means all I'll need is yours incase Stary2001 isn't around
L267[08:50:38] <Lizzy> i could give you Anquietas' but that wouldnt be any use
L268[08:51:38] <Lizzy> actually i wonder what would happen
L269[08:51:48] <Lizzy> if we link darknet and pc-logix :P
L270[08:51:57] <Caitlyn> They link? :P
L271[08:52:26] <Caitlyn> as long as we have matching modules and stuff it'd be fine... it's what's called a "Meta network" seperate networks... linked
L272[08:52:50] *** LordFokas|off is now known as LordFokas
L273[08:52:51] <Lizzy> Caitlyn, other than the fact that they have different network names, different modules, opers, and it's own services
L274[08:52:52] <Caitlyn> we just don't put each other in RRs..
L275[08:53:06] <Caitlyn> well... services would be an issue
L276[08:53:19] <Caitlyn> Opers would be fine, and modules would have to be synced
L277[08:53:23] ⇦ Quits: Sirdabalot_ (webchat@109.246.123.208) (Ping timeout: 186 seconds)
L278[08:53:33] <Caitlyn> PC-L's opers couldn't oper on DarkNet servers and vice versa
L279[08:53:47] <Lizzy> hmm, that sounds like a fun thing we could try at somepoint
L280[08:54:16] <Lizzy> also I'm guessing DarkNet opers couldnt do anything with pc-logix even if they opered up on darknet?
L281[08:54:48] <Caitlyn> No.. they can :P
L282[08:54:55] <Caitlyn> Opers are network wide once opered
L283[08:54:59] <Lizzy> interesting
L284[08:55:09] <Caitlyn> you just can't oper on a server that doesn't know your o-line
L285[08:55:14] <Lizzy> ah
L286[08:55:20] <Stary2001> Caitlyn: pm btw
L287[08:55:29] <Caitlyn> I replied Stary2001 :P
L288[08:55:59] * Stary2001 slaps andchat
L289[08:56:07] <Caitlyn> lol
L290[08:56:33] <Caitlyn> my internet hit 22 Mbps today! \o/
L291[08:56:39] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) (Ping timeout: 378 seconds)
L292[08:56:54] <Lizzy> hmm, might try seeing if i can link 2.0 and 2.2 inspi with barebone's stuff (i.e. enough to get them running and linking) and if that works, keep adding modules till one breaks support
L293[08:56:56] <Caitlyn> Which is far better than the sub 1 mbps I've been getting
L294[08:57:16] <Caitlyn> I wish Stary2001 still had the lua isnpircd server...
L295[08:57:22] <Stary2001> yes ikr
L296[08:57:26] <Caitlyn> that'd make bridging easy
L297[08:57:55] <Stary2001> tbh I'd probably do it in ruby now lol
L298[08:58:00] <Caitlyn> lol
L299[08:58:12] <Caitlyn> That thing was fun..
L300[08:58:14] <Stary2001> yes
L301[08:59:42] <Caitlyn> but yeah.. a dummy bridge that just passes modes/text would be simple enough It'd be prone to desyncs though since IIRC some modes changed between 2.0 and 2.2
L302[09:00:17] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L303[09:00:47] <Lizzy> could always potentially have it just as a gateway for most stuff but if there's modes which are different then it could intercept them and alter them accordingly
L304[09:00:48] <Caitlyn> nxsupert, you alive over there?
L305[09:01:02] <nxsupert> I am alive , i think.
L306[09:01:07] <Caitlyn> http://michi.pc-logix.com/cauldron-1.7.10-1.1272.06.215.zip
L307[09:01:14] <Caitlyn> cauldron with forge 1272
L308[09:01:33] <nxsupert> Ok. Thanks.
L309[09:01:52] <Caitlyn> It's possible to upgrade the forge in cauldron but it's a HUGE PAIN
L310[09:01:52] * Lizzy nabs the download
L311[09:02:16] <Caitlyn> I found that on a site I'm not going to mention... just to make sure they don't get DMCAd :P
L312[09:02:34] <Stary2001> lol
L313[09:03:11] <Lizzy> that DCMA stuff was stupid IMO
L314[09:03:40] <Caitlyn> Yeah..
L315[09:04:34] <Izaya> gahh
L316[09:04:39] <Izaya> Gonna sleep.
L317[09:04:51] <Caitlyn> o/
L318[09:04:53] <Caitlyn> night
L319[09:05:05] <Lizzy> o/
L320[09:05:07] <Lizzy> day
L321[09:07:51] <nxsupert> "A problem occured running the server launcher" Yay. Time for debuging.
L322[09:10:35] <Caitlyn> tiy dud replace all of the libs too right nxsupert?
L323[09:10:38] <Caitlyn> wow wtf
L324[09:10:41] <Caitlyn> you did*
L325[09:11:05] <nxsupert> Yes. I may have forgotten to chmod it.
L326[09:18:40] <nxsupert> Ok. It looks like it might work.
L327[09:20:11] <nxsupert> Ok. Looks like I need more permgen
L328[09:20:15] <Caitlyn> I've been using it for a bit
L329[09:20:22] <gamax92> nxsupert reminds me of fishlim
L330[09:20:59] <nxsupert> who?
L331[09:21:24] <gamax92> fishlim is an IRC encryption thing, which puts +OK at the beginning of all of its messages
L332[09:22:07] <nxsupert> oh
L333[09:22:11] <nxsupert> Ok.
L334[09:23:47] <nxsupert> How do you specify permgen again?
L335[09:24:22] <Caitlyn> -XX:PermSize=512m
L336[09:25:08] <Lizzy> --why-wont-you-work-how-about=512m
L337[09:25:16] <Caitlyn> lol
L338[09:27:33] <Caitlyn> Damn it... I wanna bump the RAM up on eos..
L339[09:27:37] <Caitlyn> but to do so I have to shutdown
L340[09:28:38] <gamax92> Caitlyn: what if there was a math library for lua/javascript that would do internal calculations as fractions and not decimals
L341[09:28:53] <gamax92> instead of 0.3 it stores a 3 and a 10
L342[09:28:54] <Caitlyn> Umm... woo?
L343[09:28:59] * Lizzy wonders if Kimsufi will upgrade the ram in her Dedi if she asked
L344[09:29:31] <gamax92> Caitlyn: is eos a virtual machine?
L345[09:29:34] <Caitlyn> Yes
L346[09:29:36] <gamax92> oh
L347[09:29:49] <Caitlyn> running on an 8core 64 GB host
L348[09:29:51] <gamax92> was not aware of that.
L349[09:30:15] <Caitlyn> Yeah.. I run the Dedi.. so I just setup VMs :P
L350[09:30:24] <gamax92> oh
L351[09:30:52] *** dsAway is now known as ds84182
L352[09:31:12] * Lizzy wonders if her work would let her host an IRCd on a VM in one of the HyperV servers or on one of the servers in the server farm
L353[09:31:30] <Caitlyn> but yeah.. I'm about to shutdown my MC server... figured I could toss that 6GB of RAM into Eos for 14 GB total
L354[09:32:03] * Caitlyn sighs
L355[09:32:17] <Caitlyn> I almost had access to a 16 core 128 GB server that would let me run VMs..
L356[09:32:34] <Lizzy> what happened?
L357[09:32:38] <Caitlyn> I didn't get the job.
L358[09:32:42] <Lizzy> ah
L359[09:32:43] <gamax92> Caitlyn: do you flush caches periodically?
L360[09:32:52] <Caitlyn> No
L361[09:33:13] <nxsupert> It works!
L362[09:33:16] <Caitlyn> \o/
L363[09:33:49] <gamax92> total:8176324 used:7931096
L364[09:34:05] <Lizzy> Caitlyn, do you mind zipping up the libs for the cauldron download you posted earlier?
L365[09:34:14] <Caitlyn> gamax92, I disagree https://drive.pc-logix.com/public.php?service=files&t=2dd4302e4ae4c6331eabd5963a16b972
L366[09:34:23] <Caitlyn> They're in the zip I uploaded :p
L367[09:34:30] <Lizzy> ok
L368[09:34:54] <gamax92> Caitlyn: if only that would load
L369[09:35:02] <gamax92> but its frozen my browser
L370[09:35:13] <Caitlyn> http://michi.pc-logix.com/2015-02-18_09-35-05.png
L371[09:35:17] <Caitlyn> when your browser underps then :p
L372[09:35:33] <Lizzy> dat swap usage
L373[09:35:39] <gamax92> Caitlyn: my browser crashed
L374[09:35:44] <Caitlyn> good.
L375[09:35:55] *** g is now known as gAway2002
L376[09:35:57] <gamax92> Was this your plan all along?!?
L377[09:36:01] <dangranos> i got my passport today
L378[09:36:04] <Caitlyn> Maybe.
L379[09:36:07] <Caitlyn> probably not..
L380[09:37:10] <Caitlyn> Anyway gamax92 ACTUAL RAM usage is 4762/7984M
L381[09:37:23] <Caitlyn> remember, the rest is cache and shit and gets moved out as needed.
L382[09:37:38] <gamax92> Caitlyn: but but but D:
L383[09:40:34] <Caitlyn> Well, if you'd like I can shut eos down, that'll zero out all of the caches and RAM usage!
L384[09:40:41] <gamax92> no D:
L385[09:40:53] <Lizzy> lol
L386[09:41:10] <gamax92> secretly Caitlyn hates me
L387[09:41:14] <Caitlyn> Well it's going to happen soon anyway
L388[09:41:14] ⇦ Parts: gamax92 (gamax92@The.Dragon.Slayer.PanicBNC.eu) (Leaving))
L389[09:41:15] <Caitlyn> so
L390[09:41:17] <Caitlyn> ¬_¬
L391[09:41:29] <vifino> secretly vifino likes gamax92
L392[09:41:29] <Caitlyn> Oh how I miss sajoin
L393[09:42:12] ⇨ Joins: gamax92 (gamax92@The.Dragon.Slayer.PanicBNC.eu)
L394[09:42:12] zsh sets mode: +v on gamax92
L395[09:42:27] <Lizzy> Caitlyn, wait till i shut Heyo down on saturday so we send pc-logix into a massive panic
L396[09:42:39] <gamax92> lol
L397[09:42:39] ⇨ Joins: iceman11a (iceman11a@cpe-74-141-56-150.swo.res.rr.com)
L398[09:42:42] <Caitlyn> lmao
L399[09:42:48] <Caitlyn> THat's evil..
L400[09:42:54] <Caitlyn> I like it.
L401[09:43:06] <Lizzy> Caitlyn, you should know by now. i am full of evil ideas
L402[09:43:34] <Lizzy> also i wonder what would happen if we had 2 services on a network.....
L403[09:43:39] <Caitlyn> We're women... we're good at it... it comes naturally.
L404[09:43:45] <Lizzy> mwahahah
L405[09:43:52] <Caitlyn> Well as long as both know the other is u-lined and the nicks don't clash... nothing?
L406[09:44:14] <Caitlyn> if both DON'T know the other is u-lined...
L407[09:44:15] <Caitlyn> hell
L408[09:44:16] <Caitlyn> hell happens
L409[09:45:02] <Lizzy> Caitlyn, yeah, but what would happen when someone, say, registers a channel on one and someone else registers the same on the other, what happens when those servers then link up?
L410[09:45:02] <Caitlyn> cause services-1 sets mode, services-2 corrects mode, services-1 resets mode, services-2.. etc etc
L411[09:45:27] <Caitlyn> See above.
L412[09:45:49] <Lizzy> hmm
L413[09:45:54] <Lizzy> sounds like fun
L414[09:46:00] <Caitlyn> No.. not at all :D
L415[09:46:00] * Lizzy laughs maniacally
L416[09:46:02] <gamax92> D:<
L417[09:46:17] <gamax92> Caitlyn: the computer is full of water
L418[09:46:25] <Caitlyn> wдt
L419[09:47:16] <gamax92> Feature request for OC, computers do not work with water blocks neighboring them
L420[09:48:22] <Lizzy> hmm, i wonder how hard it would be to set up sections of my site to require authentication with a client cert
L421[09:49:51] *** Magik6k|off is now known as Magik6k
L422[09:52:02] <Lizzy> Caitlyn, i wonder if you had a relay/bridge server whether you could hide services from the other side and only send through the logged in status to the other side
L423[09:52:21] <Lizzy> though that would be open to lots of abuse
L424[09:52:49] <Caitlyn> 42.
L425[09:53:15] <gamax92> Caitlyn: What about with rice
L426[09:53:19] <Magik6k> ohgod
L427[09:54:07] <Magik6k> I switched to dvorak keyboard
L428[09:55:56] <Alissa> i've never used a dvorak keyboard
L429[09:56:59] <Alissa> looks weird.
L430[09:57:10] <Magik6k> well, it's meamt to be simple
L431[09:57:49] <Magik6k> but typing on that is funny
L432[09:58:54] <Magik6k> also it has most comonly used characters in one row
L433[09:59:08] <Alissa> how can it be simple if it has aoeui instead of aeiou
L434[09:59:14] <Alissa> that'd throw me off forever
L435[09:59:18] <Magik6k> and yes, I type that slow
L436[09:59:28] <bananagram> I like colemak more
L437[09:59:40] <bananagram> the bottom row is similar to qwerty
L438[09:59:48] <bananagram> z,x,c,v
L439[10:00:09] <Alissa> I'll just stick with qwerty. much easier for me to understand.
L440[10:00:30] <gamax92> I use dvorak
L441[10:00:37] <Magik6k> colemak is too much qwerty
L442[10:00:41] ⇨ Joins: Vexatos (~Vexatos@p200300556E7F34533050F257A51FD9A5.dip0.t-ipconnect.de)
L443[10:00:41] zsh sets mode: +v on Vexatos
L444[10:00:41] <bananagram> with the j key under an index finger?
L445[10:00:49] <bananagram> who needs that
L446[10:01:16] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) (Remote host closed the connection)
L447[10:02:31] <dangranos> qwerty ftw!
L448[10:02:51] <Lizzy> ^
L449[10:03:40] <Vexatos> qwertz masterrace xD
L450[10:04:26] <gamax92> danl m.
L451[10:04:35] <gamax92> mf t.fxrape co cb yd. ,prbi nafrgy
L452[10:04:42] <gamax92> c ajjce.bynf o.y cy yr ekrpat
L453[10:05:13] <ds84182> Ох греат, И лове тхис.
L454[10:05:36] <ds84182> ውሃት ኢስ ትሂስ፧ እርመርገርድ
L455[10:05:57] <Caitlyn> ¬_¬ http://michi.pc-logix.com/2015-02-18_10-05-53.png
L456[10:06:08] <ds84182> lol
L457[10:06:14] <gamax92> jacynfb
L458[10:06:15] <gamax92> danl m.
L459[10:07:45] <gamax92> y.apo
L460[10:07:52] <ds84182> C hgoy o,cyjd.e yrr!
L461[10:08:09] <gamax92> c ajygannf ,rbe.p cu eo jrgne gbe.poyabe ydco
L462[10:08:12] <Caitlyn> ¬_¬
L463[10:08:13] <gamax92> c anor ,aby yr mat. a ypabonayrp urp ydcov
L464[10:09:53] <dangranos> ds, ne nado tak delat, eto eschyo huzhe chem translit :P
L465[10:10:01] <ds84182> http://uncyclopedia.wikia.com/wiki/Ekrpat
L466[10:10:07] <gamax92> lol
L467[10:10:09] <gamax92> okay then
L468[10:12:20] *** gAway2002 is now known as g
L469[10:13:02] <ds84182> i am typing this with dvorak...
L470[10:15:16] <ds84182> thank the reference image on wikipedia!
L471[10:15:47] <Magik6k> hmm
L472[10:15:52] <ds84182> Oh god, thats better
L473[10:16:03] <bananagram> I printed one of those out
L474[10:16:06] <ds84182> It takes too long to alt tab and figure out what key is what
L475[10:17:00] <Magik6k> Multiple displays ftw!
L476[10:17:38] *** Riking|away is now known as Riking
L477[10:19:49] <Caitlyn> wtf weather.....
L478[10:20:07] <gamax92> yd. ,.ayd.p co d.p. yr i.y frg
L479[10:20:11] * Lizzy has managed to lock her work pc up when she cleaned it's keyboard
L480[10:20:19] <Caitlyn> http://michi.pc-logix.com/2015-02-18_10-20-12.png
L481[10:20:30] <Caitlyn> 32, 26, 31, 60...
L482[10:20:34] <Caitlyn> 39 33
L483[10:21:30] <Caitlyn> http://michi.pc-logix.com/2015-02-18_10-21-26.png
L484[10:22:10] <Caitlyn> for the non ferinheight rest of the world :p
L485[10:24:44] <SkySom> Ah just like home.
L486[10:24:55] <SkySom> Snowing one day and shorts weather the next
L487[10:27:08] *** rakiru|offline is now known as Kasen
L488[10:28:12] <Caitlyn> kids have been out of school this entire week... I wonder if they're gonna go tomorrow then be out friday..
L489[10:40:04] <gamax92> Caitlyn: sounds fun
L490[10:40:40] <Alissa> sounds horrible.
L491[10:40:44] <Alissa> just like gamax92 is
L492[10:40:52] <gamax92> mmhm
L493[10:40:53] <Caitlyn> ¬_¬
L494[10:40:59] <gamax92> I'm a piece of shit
L495[10:41:31] <gamax92> Except i could give no shits
L496[10:41:43] <gamax92> Because i can move on, and forget all of you
L497[10:41:49] <gamax92> and it would make 0 difference
L498[10:42:14] <Caitlyn> :(
L499[10:43:57] *** Vexatos is now known as Guest72358
L500[10:43:59] ⇨ Joins: Vexatos (~Vexatos@p200300556E2B2C6859FE9BA722A1B697.dip0.t-ipconnect.de)
L501[10:43:59] zsh sets mode: +v on Vexatos
L502[10:45:34] ⇦ Quits: Negi (~Poireau@2a01:e35:2f6a:7060:e2ca:94ff:fe1f:76e0) (Quit: WeeChat 1.0.1)
L503[10:46:39] <gamax92> It's not like I've done it before, atleast 7 times that i can count of
L504[10:46:56] <Caitlyn> I wanna run a Lineage II server again..
L505[10:47:01] <Alissa> I almost did it once, gamax92
L506[10:47:02] <Caitlyn> WHy? IDK but I do.
L507[10:47:11] <Alissa> of course I just /had/ to keep Archimedes
L508[10:47:18] <Alissa> which is the one thing that linked me back to my old name.
L509[10:47:59] <gamax92> Alissa: you were in the same groups that you were in with the old name
L510[10:48:12] <Alissa> actually it was mainly #ocbots
L511[10:48:14] <Caitlyn> There are like 3 people who know who I was before I switched to this nick
L512[10:48:15] <Alissa> which was for testing Archimedes
L513[10:48:18] ⇦ Quits: Guest72358 (~Vexatos@p200300556E7F34533050F257A51FD9A5.dip0.t-ipconnect.de) (Ping timeout: 378 seconds)
L514[10:48:29] <gamax92> Caitlyn: am i one of them?
L515[10:48:40] <Alissa> Gtgkbai
L516[10:48:43] <dangranos> ssss anyone?
L517[10:48:52] <Caitlyn> Stary2001, Shuudoushi|Away, and Human.. but he's not around much anymore.
L518[10:49:13] <Stary2001> oh boy human
L519[10:49:46] <Caitlyn> He was around in #cc before I left..
L520[10:49:55] <Caitlyn> I offered him his bouncer back.. but he declined
L521[10:49:57] ⇦ Quits: phillips1012 (~phillips1@72.42.104.172) (Ping timeout: 378 seconds)
L522[10:50:02] <Caitlyn> haven't seen him on PC-L in ages
L523[10:50:11] <Stary2001> oh huh
L524[10:50:19] <gamax92> i wonder if Caitlyn even saw my ctcp :P
L525[10:50:25] <Caitlyn> gamax92, yes I did
L526[10:50:29] <Caitlyn> Michiyo is not what I meant
L527[10:50:33] <gamax92> oh
L528[10:50:34] <gamax92> dammit
L529[10:50:41] <ds84182> Oh yeah, that reminds me
L530[10:50:43] <Caitlyn> I had a totally different persona before then :p
L531[10:50:45] <Lizzy> Caitlyn, when you say switched do you mean from Michiyo to Caitlyn or something else which is similar to me
L532[10:50:56] <ds84182> I need my client to start autoconnecting to PC-L
L533[10:50:57] <Caitlyn> Lizzy, the 2nd
L534[10:51:00] <Lizzy> ok, that answers my question
L535[10:51:14] <gamax92> STARY2001
L536[10:51:17] <gamax92> SPILL THE BEANS
L537[10:51:45] * Lizzy tapes gamax92 to the wall with industrial strength duct tape
L538[10:51:59] * gamax92 dies from lack of oxygen
L539[10:52:07] <Caitlyn> /ns info Neo
L540[10:52:12] <Caitlyn> ^
L541[10:52:22] <gamax92> :X you are Neo?
L542[10:52:26] <Caitlyn> I keep the nick registered..
L543[10:52:35] <gamax92> D: I was right.
L544[10:52:45] <Caitlyn> Stary2001's bnc runs it for me :p
L545[10:52:47] <gamax92> you lied to me D:
L546[10:52:49] <Caitlyn> znc*
L547[10:53:00] <Stary2001> yup :p
L548[10:53:10] <Lizzy> Caitlyn, is Neo your other self?
L549[10:53:14] <Caitlyn> Yeah.
L550[10:53:26] <Caitlyn> I don't even keep it grouped to my ns account.
L551[10:53:27] <Lizzy> ah, tis cool name
L552[10:53:40] <Lizzy> I should probably seperate out my nicks
L553[10:53:45] <Caitlyn> I've been neo since I started IRCing... WAY before the matrix btw :P
L554[10:54:01] <Caitlyn> IRC at 10 or so which is 95.. Matrix was what 99/2000?
L555[10:54:22] <Caitlyn> gamax92, also when did I lie? :P
L556[10:54:36] <Caitlyn> Oh wait... nvm yeah I know what you mean
L557[10:54:47] <Caitlyn> I guess I sorta did..
L558[10:54:51] <Caitlyn> ^_^
L559[10:54:51] *** Cruor|Away is now known as Cruor
L560[10:55:34] <gamax92> Dammit Caitlyn
L561[10:56:19] <Caitlyn> Well... in a waaaaaaay it was the truth.
L562[10:56:24] <gamax92> y u make me remember crap i forgot
L563[10:57:33] <Lizzy> hmm, looks like i didn't add in Thors IPv6 address to NoIP, someone remind me to do that in about an hour
L564[10:57:44] ⇨ Joins: asie (~asie@078088168214.elblag.vectranet.pl)
L565[10:57:45] zsh sets mode: +v on asie
L566[10:57:51] <Caitlyn> Ugh I need to finish MichiBot's remind command
L567[10:58:41] <Caitlyn> %remind <seconds> Do something will message you in seconds "Do something"
L568[10:58:45] <gamax92> Caitlyn:
L569[10:58:56] <gamax92> squeaky baby
L570[10:58:57] <Caitlyn> gamax92
L571[10:59:09] <Caitlyn> o_O?
L572[10:59:13] <gamax92> :P
L573[10:59:21] <gamax92> i don't know if you still remember but i remember
L574[10:59:27] <Caitlyn> k.
L575[10:59:35] <gamax92> >:D
L576[11:01:41] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L577[11:01:54] <Caitlyn> ¬_¬ yay browser locked up
L578[11:01:55] <Caitlyn> thanks youtube
L579[11:02:21] <Caitlyn> +1 chrome atleast only this tab would be ded... with FF EVERYTHING is ded
L580[11:03:08] <dangranos> um
L581[11:03:28] <SkySom> It be ded
L582[11:03:28] <gamax92> and with netsurf, nothing works because little-to-no js support
L583[11:03:29] <dangranos> ff has E10S
L584[11:03:38] <dangranos> but its a little buggy
L585[11:03:45] <dangranos> but only 1 tab crashes
L586[11:03:56] <SkySom> lol no js support in a browser.
L587[11:04:10] <Caitlyn> Oh.. nightly?
L588[11:04:55] ⇦ Quits: iceman11a (iceman11a@cpe-74-141-56-150.swo.res.rr.com) (Quit: Leaving)
L589[11:05:06] <ds84182> Minetest puts their apk releases in a zip file
L590[11:05:08] <ds84182> how effective.
L591[11:05:15] <Caitlyn> lol...
L592[11:05:16] <Caitlyn> wдt
L593[11:05:30] <gamax92> Caitlyn: have more hints: TeamSpeak
L594[11:05:40] <Caitlyn> No, I remember.
L595[11:05:42] <Caitlyn> lol
L596[11:05:44] <gamax92> okay good
L597[11:05:55] <ds84182> they put a single file thats already compressed into a zip file... /me cringes
L598[11:06:08] <gamax92> ds84182: hey, its better than come stuff.
L599[11:06:09] <gamax92> some*
L600[11:06:15] <ds84182> trudat
L601[11:06:41] <ds84182> time to see if the gui api isn't as fucked up as it used to be
L602[11:07:42] <Caitlyn> yay... people are awake and now my internet is suddenly sub 1 mbps again
L603[11:08:03] <SkySom> Ew...
L604[11:08:11] <SkySom> Your poor internet.
L605[11:08:26] <SkySom> I hate when I got from 12-15 -> 1-2.
L606[11:08:43] <SkySom> I CAN'T STREAM THE VIDEO'S, DOWNLOAD STUFF, AND GAME AT THE SAME TIME.
L607[11:09:00] <gamax92> MyLife.tar.gz.bz2.lz.lzma.lzo.rz.xz.z.Z.7z.zip.rar.cab.arj.jar.apk.pea
L608[11:09:12] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) (Ping timeout: 378 seconds)
L609[11:09:28] <Caitlyn> SkySom, at 7 AM I had 22 Mbps, it's now 11 AM and I have .7
L610[11:09:44] <gamax92> Caitlyn: i have ~70Mbps
L611[11:09:47] <SkySom> At home I get ~15
L612[11:09:53] <gamax92> but thats only on weekends
L613[11:10:01] <SkySom> At the apartment I get ~2
L614[11:10:11] <SkySom> It's so hard to do anything at that speed.
L615[11:10:18] <gamax92> i think we got 90Mbps at on point.
L616[11:10:23] <SkySom> Though it's better than capped shit.
L617[11:10:40] <SkySom> I remember having someone call me and start talking about this great deal.
L618[11:10:56] <SkySom> Until they told me it was capped at 10gb and then throttled to hell
L619[11:11:01] <SkySom> I use 10 in a day.
L620[11:11:06] <Caitlyn> lol right?
L621[11:11:08] <SkySom> I laugh at the poor sales person.
L622[11:11:20] <SkySom> So I can tell when I'm home vs just my renter.
L623[11:11:26] <SkySom> 1Gb vs 10-12GB
L624[11:12:06] <gamax92> CAPTAIN
L625[11:12:09] <gamax92> SHITS ON FIRE
L626[11:12:13] <gamax92> WAT DO
L627[11:12:56] <Caitlyn> Enjoy the show?
L628[11:13:02] <sirius_black> :P
L629[11:13:10] <gamax92> you aren't a captain
L630[11:13:14] <gamax92> you are a Goddess
L631[11:14:29] <Caitlyn> Fair enough.
L632[11:15:06] <Caitlyn> I'd love to know why someone from Beijing keeps trying to link to the network
L633[11:15:28] <sirius_black> hax, obviously :P
L634[11:15:46] <Caitlyn> Well even if they DID figure out the link password.... links are also secured by SSL fingerprint
L635[11:15:50] <Caitlyn> so goodluckhavefun
L636[11:16:02] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L637[11:16:27] <gamax92> Caitlyn: how long would it take to brute force a file given only its size and sha512hash
L638[11:16:35] <Caitlyn> no idea?
L639[11:17:49] ⇦ Quits: ocdoc (OCDocBot@eos.pc-logix.com) (Remote host closed the connection)
L640[11:18:01] ⇨ Joins: ocdoc (gamax92@eos.pc-logix.com)
L641[11:18:21] <gamax92> ocdoc why
L642[11:18:46] <Caitlyn> lol.. wtf
L643[11:18:58] <Caitlyn> what'd you dooooooo
L644[11:19:09] <gamax92> Caitlyn: ?
L645[11:19:17] <Caitlyn> ocdoc (gamax92@eos.pc-logix.com)
L646[11:19:23] <gamax92> yes and?
L647[11:19:30] <gamax92> oh
L648[11:19:32] <gamax92> oh ...
L649[11:19:39] * gamax92 shrugs
L650[11:20:53] <gamax92> ds84182 did it
L651[11:20:56] ⇦ Parts: gamax92 (gamax92@The.Dragon.Slayer.PanicBNC.eu) (Leaving))
L652[11:21:11] <ds84182> wat
L653[11:21:32] <vifino> blameds84182.com
L654[11:21:50] ⇨ Joins: gamax92 (gamax92@The.Dragon.Slayer.PanicBNC.eu)
L655[11:21:51] zsh sets mode: +v on gamax92
L656[11:22:15] <vifino> gamax92!
L657[11:22:23] * gamax92 puts vifino in a basket
L658[11:22:28] <vifino> D:
L659[11:22:46] * vifino tries to escape but fails
L660[11:22:59] <gamax92> the basket is 1cm high
L661[11:23:01] <gamax92> how did you fail
L662[11:23:21] <vifino> .-.
L663[11:23:27] <gamax92> actually no, because we were smoothing the edges out, its less than 1cm high
L664[11:27:03] <gamax92> "There are actually multiple states to a bit, there is a 5v, a 0v, and the in between"
L665[11:27:10] <gamax92> "We don't talk about the in between"
L666[11:28:21] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) (Remote host closed the connection)
L667[11:32:56] <Lizzy> dafuq hexchat?
L668[11:33:30] <Lizzy> just notified me that 2 nicks on my watch list are offline.... i know that and they've never been online...
L669[11:33:34] <Lizzy> well
L670[11:33:44] <Lizzy> within the past weel
L671[11:33:48] <Lizzy> s/l/k
L672[11:33:48] <Kibibyte> <Lizzy> within the past week
L673[11:34:00] <Caitlyn> o_O
L674[11:34:14] <Caitlyn> Well.. it's right :P
L675[11:34:18] <Caitlyn> They are indeed offline.
L676[11:34:54] <Lizzy> Caitlyn, yeah, but it usually only does that for ones it's seen online first
L677[11:35:03] <Caitlyn> lol I know :P
L678[11:36:07] <gamax92> Caitlyn: when i accidently lagged eos, what actually happened anyway?
L679[11:36:43] <Caitlyn> I honestly have no idea... I was out of town when it happened.. it seems to have dropped connections though
L680[11:36:48] <gamax92> oh
L681[11:36:50] <Caitlyn> I assume it locked up for a bit
L682[11:37:39] <Lizzy> you lagged it enough so that it's IRCd couldn't respond to pings within 15 seconds which then made the majority of the network resync around it
L683[11:37:44] <Caitlyn> But when I got home the IRC Network was... very confused and one of the servers couldn't link
L684[11:38:09] <dangranos> bye
L685[11:38:11] <gamax92> :<
L686[11:38:16] ⇦ Quits: dangranos (~dangranos@176.50.183.94) (Remote host closed the connection)
L687[11:38:26] <Lizzy> well, some of the network. a few nodes were set to only connect to eos and thus didn't reconnect
L688[11:38:43] <gamax92> (note to self, imagemagick is infact multi threaded, just isn't on my computer)
L689[11:38:48] <Caitlyn> this has been fix't btw
L690[11:38:49] <Lizzy> lol
L691[11:39:35] <gamax92> which is still confusing for me, I ran imagemagick computer afterwards and it still only used one core
L692[11:40:04] <gamax92> yet managed to lag everything on eos, and killed my ssh connection that i couldn't go in and kill it
L693[11:40:23] <Lizzy> what i also find slightly annoyign about that instance was Stary2001 and alekso56 instantly moaning at me for breaking the network :<
L694[11:40:37] <Stary2001> sowwy
L695[11:40:43] <Caitlyn> gamax92, my imagemagick has OpenMP
L696[11:40:53] <gamax92> oh well, that'd explain it :P
L697[11:41:07] * Lizzy forgives Stary2001
L698[11:41:19] <Lizzy> just dont do it again
L699[11:41:59] <Caitlyn> http://www.imagemagick.org/script/openmp.php
L700[11:42:17] <gamax92> I've just been running everything as: nice -n 20 chrt -i 0 <command>
L701[11:42:37] <Caitlyn> I may just disable openmp :P
L702[11:42:57] <gamax92> D:< mine supports openmp as well
L703[11:43:00] <Stary2001> :p
L704[11:43:00] <gamax92> y u no multi core
L705[11:43:21] <Caitlyn> You can also -limit thread 1 to limit it to a single thread
L706[11:44:31] <Lizzy> \o/ dinner time
L707[11:44:41] <Lizzy> though to be honest i just want to sleep now
L708[11:45:17] <Caitlyn> mmmm food
L709[11:45:38] <Caitlyn> maybe I should go awake up Naomi and get some food...
L710[11:54:09] <Skye> Firefox is using 40% of my CPU, and it's stuck...
L711[11:54:11] <Skye> .-.
L712[11:58:04] <gamax92> T_T
L713[11:59:07] <gamax92> Why do i get so many calls that are like: "Hello Caroline, this is Jon at Scam State Bank, I'm calling to let you know you are overdue on your payments, please give us a call back at (555)555-2425"
L714[11:59:20] <gamax92> No I am not Caroline, please go away
L715[12:00:46] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L716[12:01:42] * Lizzy is back
L717[12:02:10] * Caitlyn is leaving
L718[12:02:11] <Lizzy> gamax92, Goodbye, Caroline
L719[12:02:19] <Lizzy> Caitlyn, NOOOOOO!!! :<
L720[12:02:29] <Caitlyn> fooooood
L721[12:02:35] <Lizzy> ok, fair enough
L722[12:05:46] <sirius_black> XD
L723[12:06:16] ⇦ Quits: asie (~asie@078088168214.elblag.vectranet.pl) (Ping timeout: 189 seconds)
L724[12:08:52] *** Vexatos is now known as Vexaton
L725[12:11:06] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) (Remote host closed the connection)
L726[12:22:44] ⇨ Joins: MrRatermat (ratermat@host81-158-132-107.range81-158.btcentralplus.com)
L727[12:31:04] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L728[12:37:53] *** Daiyousei is now known as ShoweringFairy
L729[12:49:07] ⇨ Joins: sciguyryan (sciguyryan@94.10.71.88)
L730[12:52:28] ⇦ Quits: sciguyryan (sciguyryan@94.10.71.88) (Ping timeout: 189 seconds)
L731[12:54:00] *** gamax92 is now known as Caylee
L732[12:54:05] *** Caylee is now known as gamax92
L733[12:55:49] <Caitlyn> turbo bleh'
L734[12:56:16] * gamax92 pushes the turbo button on Caitlyn's computer
L735[12:56:56] * Caitlyn is at mcdonalds and so many annoying people
L736[12:57:02] <sirius_black> XD
L737[12:57:03] <Lizzy> lol
L738[12:57:40] <Caitlyn> seriously this is not a yelling contest you fucks
L739[12:58:17] * Lizzy waits for day to come on the moon
L740[12:58:29] <vifino> Herru :o
L741[12:59:45] <Caitlyn> i wanna setup a lineage ii server again... should i hmmmm
L742[13:01:03] <Lizzy> urghh, my internet is being PoS again
L743[13:02:39] *** Vexaton is now known as Vexatos
L744[13:03:39] *** ShoweringFairy is now known as Daiyousei
L745[13:05:47] *** AtomSponge|away is now known as AtomSponge
L746[13:07:56] <Caitlyn> Check out my Ookla Speedtest result. What's your speed? http://www.speedtest.net/my-result/a/1168082901
L747[13:07:58] <Caitlyn> \o/
L748[13:08:46] *** alekso56_off is now known as alekso56
L749[13:10:13] ⇨ Joins: Negi (~Poireau@2a01:e34:ef13:7200:e2ca:94ff:fe1f:76e0)
L750[13:10:37] <Lizzy> absolute bullshit: http://www.speedtest.net/my-result/4153004540 i'm getting block lag on mc and i know it's not the server because update time/ticktime is still the same
L751[13:11:13] <Izaya> I'd take a speedtest, but that would mean installing flash
L752[13:11:50] <Temia> oh, it requires Flash?
L753[13:12:16] <Temia> Good thing you mentioned that.
L754[13:13:12] <Negi> Pocahontas arrived !
L755[13:13:24] <Lizzy> there is speedof.me which is all html5
L756[13:14:11] *** LordFokas is now known as LordFokas|off
L757[13:14:52] <Temia> Okay, it's claiming I have an upstream of 0.7mbps.
L758[13:14:58] <Temia> Which I know is bullshit.
L759[13:15:24] *** Skye is now known as Skye|Dinner
L760[13:15:29] <Lizzy> probably ISP doing selective throttling, i think mine's doing that at the moment
L761[13:15:49] <Caitlyn> lizzy, your mc server.. creative?
L762[13:16:11] <Lizzy> Caitlyn, yes, i might be doing a survival version at some point
L763[13:16:13] <Temia> Probably not. It's one of those devil-may-care small ISPs
L764[13:16:47] <Temia> And FTP, esp. SFTP isn't usually one of the things I'd see throttled most of the time.
L765[13:16:55] <Caitlyn> oh.. i was thinking about seeing if i could join but survival bores me to tears lol
L766[13:17:04] <Izaya> http://speedof.me/show.php?img=150218031355-66233.png Meanwhile I get 20Mbps down on a torrent
L767[13:17:17] <Lizzy> Caitlyn, when i do set up survival it'll run alongside the creative one
L768[13:17:29] <Caitlyn> ahh kk.
L769[13:18:16] <Lizzy> Izaya, http://speedof.me/show.php?img=150218031508-66234.png meanwhile everything else (i.e. google music) stutters
L770[13:18:45] <Izaya> :P
L771[13:18:58] <Lizzy> Caitlyn, if you want on just ask, or pop into the channel that i'm in on both here and PCL
L772[13:19:17] <Lizzy> with the exception of your channel
L773[13:19:43] <Caitlyn> i might when i get home
L774[13:20:11] <Izaya> :D Today is the second half of the week!
L775[13:20:13] <Lizzy> coolio
L776[13:20:19] <Caitlyn> headi g there no so afk
L777[13:20:35] <Izaya> yay for thursday
L778[13:20:38] <Izaya> fuck wednesday
L779[13:20:49] <Lizzy> Izaya, fuck any weekday
L780[13:21:11] <Lizzy> except maybe friday, i like friday
L781[13:21:42] <Negi> My favorite weekday is wednesday.
L782[13:35:01] ⇨ Joins: sciguyryan (~sciguyrya@109-205-170-80.dynamic.swissvpn.net)
L783[13:36:55] <Caitlyn> home//
L784[13:37:36] * ds84182 takes speed test
L785[13:37:59] <ds84182> 77ms ping
L786[13:38:28] <ds84182> ath9k will probably disconnect in the upload test
L787[13:38:32] * Izaya is going to use lain as a print server
L788[13:38:51] <ds84182> http://www.speedtest.net/my-result/4153078968
L789[13:39:25] <Caitlyn> http://speedof.me/show.php?img=150218033640-66239.png
L790[13:40:40] <ds84182> http://speedof.me/show.php?img=150218033754-66241.png
L791[13:40:44] <ds84182> fml
L792[13:40:54] <ds84182> the upload crappyness is caused by wifi drivers being shit
L793[13:41:56] <ds84182> I feel that AT&T throttles the fuck out of my connection
L794[13:44:29] <sirius_black> is a redstone IO block equivalent to a tier 1 redstone card or to a tier 2 redstone card?
L795[13:45:31] ⇨ Joins: asie (~asie@078088168214.elblag.vectranet.pl)
L796[13:45:31] zsh sets mode: +v on asie
L797[13:45:38] *** alekso56 is now known as alekso56_off
L798[13:45:50] *** Keridos_off is now known as Keridos
L799[13:46:37] <Negi> http://speedof.me/show.php?img=150218034327-66245.png Not as great as Caitlyn's but well, decent ._.
L800[13:52:52] *** Skye|Dinner is now known as Skye
L801[13:54:10] <Kubuxu> Do anyone know how form squence [1,2,3,4...] make pseoudo random sequence [0..n]? Not state can be preserved. Yes I tried (n*prime_1 + prime_2)%n
L802[13:54:31] <Kubuxu> (a*prime_1 + prime_2)%n
L803[13:54:44] <Kubuxu> Where a us input.
L804[13:55:18] <Kubuxu> It gives too uniform results. I am using it for GFX and still can see patterns.
L805[13:56:56] ⇨ Joins: irgusite (~irgusite@84-75-179-21.dclient.hispeed.ch)
L806[13:57:20] <Kubuxu> I think I thought it out. I will change transformation slighly each frame so it is unnoticable.
L807[14:01:01] *** Riking is now known as Riking|away
L808[14:02:29] <Soni> Vexatos, here's a bug for you
L809[14:02:34] ⇨ Joins: AwesomeDesktopCube (webchat@90.201.152.118)
L810[14:02:36] <AwesomeDesktopCube> hihi
L811[14:02:40] <Lizzy> o/
L812[14:02:46] <Soni> Vexatos, trying to pick block a creative chat box gives you a plain chat box
L813[14:02:56] <Vexatos> k
L814[14:03:09] <Vexatos> Open an issue on github
L815[14:06:07] * ds84182 pokes gamax92.
L816[14:09:15] <gamax92> ds84182: what
L817[14:09:25] <ds84182> hai
L818[14:10:16] <Negi> gamax92 !
L819[14:11:52] <vifino> gamax92 !
L820[14:14:45] <ds84182> gamax92 .
L821[14:16:08] <Negi> gamax92 :
L822[14:16:26] <vifino> gamax92 ¡
L823[14:16:47] <Izaya> AwesomeDesktopCube: Guess which server is back online?
L824[14:18:40] <Soni> Vexatos, also, http://youtu.be/w7JV1CgNUTE
L825[14:18:49] <Soni> thanks for the creative chatboxes
L826[14:19:11] <Vexatos> Have you opened an issue on github?
L827[14:19:16] <Soni> yes
L828[14:22:59] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) (Remote host closed the connection)
L829[14:23:41] <Soni> Vexatos, there
L830[14:23:42] ⇨ Joins: Kodos (~Kodos@2602:306:ce20:6c30:c543:db9d:2cfe:dd8e)
L831[14:23:42] zsh sets mode: +v on Kodos
L832[14:23:50] <Soni> Vexatos, what do you think of that?
L833[14:23:56] <Vexatos> Can't watch it
L834[14:24:02] <Vexatos> sais it's being processed
L835[14:24:04] <Vexatos> that video
L836[14:24:24] <Soni> uhh meh :/
L837[14:24:48] <Soni> I should've uploaded in 240p :/
L838[14:26:28] <Soni> Vexatos, let me know when you can
L839[14:26:33] *** ConcernedHobbit is now known as ConcernedAway
L840[14:27:41] *** alekso56_off is now known as alekso56
L841[14:28:09] <Soni> Vexatos, oh and don't let asie see it
L842[14:28:29] <Vexatos> Good ping you did there
L843[14:28:36] <asie> Vexatos: Soni did it intentionally
L844[14:28:44] <Soni> uhh
L845[14:28:48] <Soni> I didn't see you there
L846[14:28:50] <Vexatos> I can watch it now
L847[14:29:05] <Soni> altho I didn't look either: P
L848[14:29:25] <Soni> please don't kill me ;_;
L849[14:29:33] * Lizzy prods Caitlyn
L850[14:29:47] <Caitlyn> http://speedof.me/show.php?img=150218042656-66252.png
L851[14:29:51] <Caitlyn> well there went the good internet
L852[14:30:02] <Caitlyn> why did I get proded Lizzy?
L853[14:30:08] <Lizzy> bored
L854[14:30:15] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L855[14:30:16] <Caitlyn> Ah
L856[14:31:07] <Soni> Vexatos, so what do you think?
L857[14:31:22] <Vexatos> Quite nice
L858[14:31:26] <Vexatos> :P
L859[14:31:54] <Soni> I mean, I know chat boxes aren't displays, but w/e :P
L860[14:31:59] <Soni> it works, so why not :P
L861[14:32:11] * Lizzy pokes Caitlyn and reminds her about the mc server she runs
L862[14:32:32] <Caitlyn> Yes I remember.. :P
L863[14:32:38] <Lizzy> k, just checking
L864[14:33:02] <Soni> so vex can you remove limits on the plain chat box so we can have that in survival?
L865[14:33:21] <Soni> :P
L866[14:33:31] <Vexatos> Of course not :P
L867[14:33:44] <Soni> ;_;
L868[14:33:51] <Soni> I miss RichardG
L869[14:34:03] <Soni> aka when you could log whole servers with a chatbox
L870[14:34:28] <Soni> (it was more server-friendly too)
L871[14:36:44] <Soni> Vexatos, also why's computronics still on asie's github and not yours?
L872[14:36:54] <Vexatos> it is on mine
L873[14:38:26] *** Wuerfel_21 is now known as Away_21
L874[14:38:29] ⇦ Quits: Negi (~Poireau@2a01:e34:ef13:7200:e2ca:94ff:fe1f:76e0) (Quit: WeeChat 1.0.1)
L875[14:38:59] <Soni> Vexatos, no, yours is a fork
L876[14:39:17] <Vexatos> ah, well, it's still asie's mod
L877[14:39:21] <Vexatos> for me :3
L878[14:39:50] <Temia> I miss Nano's key. ;.;
L879[14:39:54] <Temia> Why was that removed? ;.;
L880[14:41:07] <Lizzy> crashing render issues IIRC
L881[14:41:22] <Vexatos> Yep
L882[14:41:53] <Temia> oh.
L883[14:41:55] * Temia sobs.
L884[14:42:13] <Temia> Nano got bugged ;A;
L885[14:43:16] <Vexatos> Temia, go add Armourer's Workshop
L886[14:43:19] <Vexatos> it re-adds the thing :3
L887[14:44:05] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) (Remote host closed the connection)
L888[14:46:12] <Temia> Ehhh...
L889[14:46:30] <Temia> I can't. Playing on an official pack on a server that's going unmaintained.
L890[14:47:13] <SkySom> Sounds like a server admin who needs an ass kicking.
L891[14:47:25] <SkySom> Or a mod pack dev. Not sure which is unmaintained in this case
L892[14:47:34] <Temia> Admin
L893[14:49:11] <Temia> Though we went in knowing he had no plans to maintain it.
L894[14:49:28] ⇨ Joins: Doty1154 (~doty1154@50.136.193.35)
L895[14:49:37] <SkySom> How does one go without maintaining a server.
L896[14:49:48] <SkySom> My god I go without touching it for a day and everything explodes.
L897[14:49:58] * SkySom does love mod interactions
L898[14:50:01] <Temia> Well, we'll see.
L899[14:52:13] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L900[14:58:45] ⇨ Joins: Negi (~Poireau@2a01:e35:2f6a:7060:e2ca:94ff:fe1f:76e0)
L901[15:14:47] ⇦ Quits: Kilobyte (~Kilobyte@5.231.51.78) (Ping timeout: 198 seconds)
L902[15:15:03] ⇦ Quits: Vexatos (~Vexatos@p200300556E2B2C6859FE9BA722A1B697.dip0.t-ipconnect.de) (Ping timeout: 378 seconds)
L903[15:18:16] ⇨ Joins: Kilobyte (~Kilobyte@5.231.51.78)
L904[15:18:16] zsh sets mode: +v on Kilobyte
L905[15:29:23] *** nekosune is now known as nekosune_Away
L906[15:29:41] ⇨ Joins: lperkins2 (~perkins@63.227.187.208)
L907[15:33:17] *** nekosune_Away is now known as nekosune
L908[15:34:17] <lperkins2> Okay, so IC2's universal fluid cells don't get along with OC robots.
L909[15:35:22] <lperkins2> All universal fluid cells have the same ID and metadata, so the inventory controller says they should be a match, if you try to make two different types stack, the original is lost.
L910[15:35:35] ⇦ Quits: irgusite (~irgusite@84-75-179-21.dclient.hispeed.ch) (Quit: Bye!)
L911[15:35:54] <Caitlyn> fluid is stored in the NBT
L912[15:37:03] <lperkins2> Aye, so if I were to turn on the allowItemStackNBTTags setting, I could differentiate them.
L913[15:37:18] <lperkins2> But I'm more concerned with the default behaviour which can destroy items
L914[15:38:11] ⇦ Quits: asie (~asie@078088168214.elblag.vectranet.pl) (Ping timeout: 198 seconds)
L915[15:38:42] ⇦ Quits: manmaed (~Ender@5ec2fc03.skybroadband.com) (Ping timeout: 200 seconds)
L916[15:39:15] ⇦ Quits: MrRatermat (ratermat@host81-158-132-107.range81-158.btcentralplus.com) (Ping timeout: 378 seconds)
L917[15:39:33] ⇨ Joins: Brycey92|alt (~Brycey92@wjs5241-111-149.rh.psu.edu)
L918[15:39:37] ⇦ Quits: Lathanael|Away (~Lathanael@p54971B96.dip0.t-ipconnect.de) (Ping timeout: 200 seconds)
L919[15:39:38] ⇦ Quits: Brycey92 (~Brycey92@wjs5241-111-149.rh.psu.edu) (Ping timeout: 200 seconds)
L920[15:39:38] ⇦ Quits: Inari (~Uni@p54934BD8.dip0.t-ipconnect.de) (Ping timeout: 200 seconds)
L921[15:39:45] <Lizzy> uhoh
L922[15:39:53] <Lizzy> seems like a server is dying
L923[15:39:58] ⇦ Quits: Magik6k (~Magik6k_@vh2.magik6k.net) (Ping timeout: 200 seconds)
L924[15:39:58] <Caitlyn> oh good.
L925[15:40:00] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) ()
L926[15:40:01] ⇨ Joins: Inari (~Uni@p54934BD8.dip0.t-ipconnect.de)
L927[15:40:16] <Caitlyn> I love how all of the servers have their own timeout value
L928[15:40:32] <Caitlyn> 198, 378, 200
L929[15:40:42] ⇦ Quits: mallrat208 (~mallrat20@68-204-184-175.res.bhn.net) (Ping timeout: 200 seconds)
L930[15:41:26] ⇦ Quits: Ditchbuster (~Ditchbust@c-174-51-244-114.hsd1.co.comcast.net) (Ping timeout: 200 seconds)
L931[15:41:39] ⇨ Joins: manmaed (~Ender@5ec2fc03.skybroadband.com)
L932[15:41:52] ⇨ Joins: Guest72107 (~Magik6k_@vh2.magik6k.net)
L933[15:42:01] ⇨ Joins: Ditchbuster (~Ditchbust@c-174-51-244-114.hsd1.co.comcast.net)
L934[15:42:26] ⇨ Joins: Lathanael|Away (~Lathanael@p54971B96.dip0.t-ipconnect.de)
L935[15:43:00] *** Daiyousei is now known as mkinitcpio
L936[15:44:44] ⇦ Quits: Inari (~Uni@p54934BD8.dip0.t-ipconnect.de) (Ping timeout: 200 seconds)
L937[15:44:44] ⇨ Joins: mallrat208 (~mallrat20@68-204-184-175.res.bhn.net)
L938[15:45:02] ⇨ Joins: Inari (~Uni@p54934BD8.dip0.t-ipconnect.de)
L939[15:46:13] ⇨ Joins: MrRatermat (ratermat@host81-158-132-107.range81-158.btcentralplus.com)
L940[15:46:54] *** Guest72107 is now known as Magik6k
L941[15:53:34] *** mkinitcpio is now known as Daiyousei
L942[15:53:58] ⇦ Quits: Zequan (~Zequan@d58-106-207-35.bla801.nsw.optusnet.com.au) (Ping timeout: 189 seconds)
L943[15:55:47] ⇦ Quits: Cazzar (~CazzarZNC@abrarsyed.me) (Quit: ZNC - http://znc.in)
L944[15:55:54] ⇨ Joins: iceman11a (iceman11a@cpe-74-141-56-150.swo.res.rr.com)
L945[15:56:46] ⇦ Quits: justastranger|zzz (justastran@2604:180::7239:d646) (Excess Flood)
L946[15:57:05] ⇨ Joins: justastranger (justastran@2604:180::7239:d646)
L947[16:05:28] ⇨ Joins: VikeStep (~VikeStep@CPE-121-223-12-224.lnse2.cha.bigpond.net.au)
L948[16:07:37] <Temia> I should start hanging out on Freenode... ~.
L949[16:07:39] <Temia> ~.~
L950[16:08:38] <Lizzy> Temia, come hang out on PC-Logix
L951[16:08:44] <Lizzy> (cc Caitlyn )
L952[16:08:50] <Lizzy> :P
L953[16:09:08] <Caitlyn> Yes PC-Logix has cookies!
L954[16:09:37] <SkySom> No don't go.
L955[16:09:43] <SkySom> For they are stale.
L956[16:09:52] <SkySom> And full of raisins
L957[16:09:53] <Soni> hey uhh who's trans here? (other than me)
L958[16:10:14] * Caitlyn coughs
L959[16:10:49] <Temia> >.>
L960[16:10:52] * Lizzy also coughs
L961[16:10:56] <Temia> I like oatmeal raisin cookies.
L962[16:11:02] <Temia> ... *cough* <.<
L963[16:11:07] <Lizzy> Caitlyn, we need m_cheesesandwich loaded on the network
L964[16:11:12] <SkySom> Temia, you're dead to me.
L965[16:11:17] * Temia moo :<
L966[16:11:18] <Caitlyn> m_cheesesandwich o_O
L967[16:11:18] <Soni> ok so like can you join #SpeakEasy ?
L968[16:11:24] * SkySom grumbles about oatmeal raisin
L969[16:11:25] <Lizzy> Caitlyn, yes
L970[16:11:27] <Caitlyn> No
L971[16:11:35] <Caitlyn> Lizzy, lol...
L972[16:11:36] <Caitlyn> why?
L973[16:11:37] <Temia> Uh, why? >.>
L974[16:12:02] <Lizzy> Caitlyn, idk, i just found it on inspi's faq page
L975[16:12:08] ⇦ Quits: AwesomeDesktopCube (webchat@90.201.152.118) (Quit: Web client closed)
L976[16:12:11] <Caitlyn> :P
L977[16:12:29] <Temia> Soni, any reason for this solicitation?
L978[16:12:37] <Temia> Also Lizzy, can you pass me a server address? >.>
L979[16:12:43] <Caitlyn> irc.pc-logix.com
L980[16:12:47] <Temia> Okay that works
L981[16:12:48] <Caitlyn> ssl on 6697
L982[16:12:53] <Lizzy> ninja'd by Caitlyn
L983[16:12:54] <Caitlyn> standard ports otherwise
L984[16:12:56] <Soni> trying to explain how pronouns say nothing about someone's gender
L985[16:13:18] <Lizzy> Soni, i don't need to confirm to your rules
L986[16:13:33] * Lizzy write ANARCHY on the wall in red paint
L987[16:14:03] <Soni> Lizzy, huh?
L988[16:14:05] <SkySom> OI. YOU KIDS CLEAN UP THIS MESS
L989[16:14:13] <Lizzy> NO!
L990[16:14:17] * Lizzy runs away
L991[16:14:25] * Caitlyn paints over red ANARCHY
L992[16:14:26] * SkySom sprays Lizzy with the hose
L993[16:14:35] * Caitlyn with NEON RAINBOW ANARCHY
L994[16:14:42] ⇨ Joins: Cazzar (~CazzarZNC@abrarsyed.me)
L995[16:14:42] zsh sets mode: +v on Cazzar
L996[16:15:09] * Lizzy throws glitter at SkySom
L997[16:15:17] <SkySom> Pfft.
L998[16:15:23] ⇨ Joins: TabletCube (~TCube@90.201.152.118)
L999[16:15:23] <SkySom> Glitter does not faze me.
L1000[16:15:53] <Negi> Soni : Actually, the relation between genders and pronouns depend heavily on the situation ._.
L1001[16:16:09] * Lizzy continuely throws glitter on SkySom till they're all sparkly
L1002[16:16:23] <SkySom> .... WHAT MAKES YOU THINK I WASN'T ALREADY SPARKLY
L1003[16:16:29] * Negi joins Lizzy in throwing glitter at SkySom.
L1004[16:16:37] * SkySom dances in the glitter
L1005[16:16:42] <Soni> Negi, no, I know a lot of trans "girls" who are agender but use she/her
L1006[16:17:44] <Soni> (about the "girls" part: if you're agender you can't really be a girl but w/e)
L1007[16:18:05] <Lizzy> what is this "agender"?
L1008[16:18:19] <Negi> Soni : I'm constantly flipping between agender and male :v Agenders are a bit of a specific case because it's not really in media like trans* people and stuff, so it's harder to explain :v
L1009[16:18:38] <Negi> Lizzy: People that have no gender, litterally neither a boy, a girl, nothing in between and nothing else.
L1010[16:18:44] <Lizzy> ah
L1011[16:19:52] <Negi> And you can be agender and a girl, Soni, through bigender stuff and a thing called being a demi-girl. ._.
L1012[16:19:58] <Temia> Hoo boy.
L1013[16:20:05] *** Cruor is now known as Cruor|Away
L1014[16:20:08] <Temia> I'm just gonna keep out of this. >.>;
L1015[16:20:22] * SkySom murders Temia and walks away
L1016[16:20:25] * Skye hides in the corner
L1017[16:20:28] <Negi> Temia: That's probably a good idea, I don't even know why I'm getting in that. :v
L1018[16:20:34] * Temia ows. ._.
L1019[16:20:42] <Temia> Why'd you go and do that Sky D:
L1020[16:20:43] * SkySom hides the body
L1021[16:20:46] * Lizzy rips SkySom's still beating heart out from their chest
L1022[16:20:47] <Temia> They're just coo--mmrf
L1023[16:20:48] <Soni> Negi, bigender means you're 2 genders
L1024[16:20:48] ⇨ Joins: phillips1012 (~phillips1@72.42.104.172)
L1025[16:20:52] <Soni> agender is a lack of gender
L1026[16:20:55] <SkySom> Pfft.
L1027[16:20:56] * Temia climbs out of the dumpster she was dumped into.
L1028[16:20:57] <SkySom> Heart.
L1029[16:21:03] <Temia> Please don't do that D:
L1030[16:21:05] * Dashkal resurrects Temia
L1031[16:21:07] * SkySom chuckles
L1032[16:21:20] <Temia> \o/
L1033[16:21:22] * vifino grabs Temia and runs awy
L1034[16:21:24] * SkySom has no need for puny mortal organs
L1035[16:21:26] * Temia ...meeps? o-o
L1036[16:21:28] <vifino> *away
L1037[16:21:38] <vifino> Meeeh, screw spelling :c
L1038[16:21:44] <Skye> There are two people with "Sky" at the start of their name. Oh dear...
L1039[16:21:52] <Soni> Negi, bigender is an array with 2 slots, agender is a null pointer
L1040[16:21:57] <SkySom> SkySom, > Skye
L1041[16:21:59] * Skye follows vifino
L1042[16:22:00] <SkySom> Sorry
L1043[16:22:04] <Gopher> so, are teir I redstone and wired network cards the only cards that work with microcontrollers?
L1044[16:22:19] * vifino gives Temia cake
L1045[16:22:28] <SkySom> What? There's cake over there.
L1046[16:22:30] * Temia ...nibbles on cake .w.
L1047[16:22:46] <Soni> Negi, if you put a null pointer together with a non-null pointer, and null pointers are empty spaces, you still have 2 slots, but only 1 element
L1048[16:22:56] <Gopher> ah, and debug cards
L1049[16:22:56] <Dashkal> Well, I was going to throw a heal in there too, but it appears you've been kidnapped.
L1050[16:23:11] <Temia> I'm not sure I was ever dead to begin with so o.o
L1051[16:23:15] <vifino> Not Kidnapped! D: Rescued!
L1052[16:23:18] <Temia> It's kind of hard to murder a minotaur after all
L1053[16:23:26] * vifino hugs Temia
L1054[16:23:30] * SkySom looks over at Temia
L1055[16:23:33] * Temia moos. .w.
L1056[16:23:38] <SkySom> Sounds like a challenge.
L1057[16:23:46] * Skye gives Temia a hot chocolate
L1058[16:23:48] <Temia> Try and I'll bisect you with my axe >.>
L1059[16:23:53] * Temia cocoasip.
L1060[16:23:57] * Skye throws a computer at SkySom
L1061[16:24:05] <Dashkal> Well then, the heal would have been the only important one. You may live through most anything, but I imagine you still feel pain.
L1062[16:24:09] <Dashkal> Oh well
L1063[16:24:10] <vifino> You don't like my hugs, Temia? :(
L1064[16:24:12] <Dashkal> You were 'rescued'
L1065[16:24:23] <Temia> It's so much attention @A@ *flail*
L1066[16:24:23] * SkySom ducks
L1067[16:24:34] <Negi> Well, you still pertain to the categories of "girl" and "agender" that way, Soni. :v
L1068[16:24:34] * vifino crawls in his hole and hides
L1069[16:24:37] <Skye> We provide hot chocolate and cake. what more does Temia need?
L1070[16:24:38] * SkySom shakes fist at Sky
L1071[16:25:12] <Skye> *Skye
L1072[16:25:15] <Temia> coffee? .w.
L1073[16:25:23] * Skye goes and gets coffee
L1074[16:25:26] <SkySom> I tend not to mention nicks if not necessary
L1075[16:25:43] <Temia> \o/
L1076[16:25:53] <Skye> ugh
L1077[16:25:54] <SkySom> Some people love being pinged.
L1078[16:25:57] <SkySom> Others not so much.
L1079[16:26:07] <TabletCube> Skye: did you succeed with using online.net for a VPN?
L1080[16:26:13] <Skye> I like getting pinged. I might not respond otherwise.
L1081[16:26:21] <Skye> TabletCube, I have no idea what to do.
L1082[16:26:24] <SkySom> THEN I SHALL PING YOU UNTIL THE END OF DAYS
L1083[16:26:31] * Temia yays for coffee.
L1084[16:26:42] * Dashkal sips his tea
L1085[16:26:50] * Skye returns with equipment to make coffee
L1086[16:26:51] * SkySom sips some water
L1087[16:26:54] * Lizzy shakes her fist at BSkyB
L1088[16:26:58] <Temia> Ah, lab's almost over. Gotta go. o/ ciao
L1089[16:27:02] <Dashkal> I loves me some coffee, but I'm limiting myself to one in the morning and tea the rest of the day now.
L1090[16:27:03] <Dashkal> Laters
L1091[16:27:08] <Negi> Damn you, computer :v
L1092[16:27:12] <SkySom> I don't drink Coffee.
L1093[16:27:13] <TabletCube> Skye: use the googles?
L1094[16:27:15] <Soni> Negi, you can't say demigirl = bigender[agender, girl] because agender is a lack of gender, having a lack of gender + some gender = some gender, just like 0+1 = 1
L1095[16:27:16] <SkySom> Way too much soda though.
L1096[16:27:19] ⇨ Joins: mr208 (~mallrat20@68.204.184.175)
L1097[16:27:22] <TabletCube> Lizzy: why?
L1098[16:27:24] * vifino looks out of the hole and sees coffee
L1099[16:27:31] <Lizzy> TabletCube, shitty internet
L1100[16:27:38] <Skye> TabletCube, I also don't really have the time....
L1101[16:27:40] * SkySom covers the hole
L1102[16:27:44] <lperkins2> Oh, and microcontrollers don't stay running across server restarts
L1103[16:28:00] <TabletCube> Lizzy: Sky is always shite.
L1104[16:28:10] * TabletCube wishes for A&A
L1105[16:28:22] <Lizzy> A&A?
L1106[16:28:22] <Skye> TabletCube, I want to do many things, but that fact makes me sad and do nothing.
L1107[16:28:46] <Negi> Soni: 1) Applying programmation concepts to a really fine n-dim spectrum needs a lot of adaptation. 2) I never said those were equal, but that they were still related to two groups.
L1108[16:28:47] * SkySom agrees, has way too long of shit he wants to do.
L1109[16:29:06] <SkySom> *long a list
L1110[16:29:10] * Lizzy throws glitter at Negi and Soni
L1111[16:29:17] * Skye kicks SkySom
L1112[16:29:21] * Skye frees vifino
L1113[16:29:27] * Negi gets glitter in his eyes
L1114[16:29:35] * SkySom continues to cause chaos
L1115[16:29:36] <Skye> Lizzy, what is this glitter about?
L1116[16:29:36] <Negi> Lizzy what didcha do I can't seeeeeee
L1117[16:29:41] <TabletCube> Lizzy: aa.net.uk
L1118[16:29:44] <Soni> Negi, I'm just saying you can't be bigender between agender and something else due to bigender meaning "both" as in both at the same time
L1119[16:29:50] ⇦ Quits: mallrat208 (~mallrat20@68-204-184-175.res.bhn.net) (Ping timeout: 200 seconds)
L1120[16:29:50] <SkySom> Because Glitter
L1121[16:29:59] <SkySom> It's sparkly and shit.
L1122[16:29:59] <Skye> ugh
L1123[16:30:06] * Skye sneezes
L1124[16:30:19] <Soni> ppl seem to really mess up "genderfluid" and "bigender" :/
L1125[16:30:19] <Negi> Soni: No, bigender is both as in changing between. :I
L1126[16:30:28] <Soni> no, it's both as in both at the same time
L1127[16:30:29] <Negi> Genderfluid is on a broad spectrum :I
L1128[16:30:40] <Soni> what about dual-gender?
L1129[16:30:41] <Dashkal> Yech, I cut way the hell back on soda. Far too much sugar.
L1130[16:30:50] <Dashkal> Though on that note, took me a good couple weeks to learn to drink black coffee.
L1131[16:30:54] <TabletCube> Skye: /me has a private L2 VPN between some online.net nodes
L1132[16:30:57] <Negi> dualgender is a thing ? :v
L1133[16:31:03] <Skye> TabletCube, how?
L1134[16:31:03] <Soni> yes
L1135[16:31:17] <TabletCube> Skye: tinc
L1136[16:31:18] ⇦ Quits: Ditchbuster (~Ditchbust@c-174-51-244-114.hsd1.co.comcast.net) (Ping timeout: 200 seconds)
L1137[16:31:33] <Skye> I need to email hurricane electric...
L1138[16:31:46] <SkySom> Dashkal, I was drinking like 4 bottles of pop a day.
L1139[16:31:49] <SkySom> It was insane.
L1140[16:31:54] <Dashkal> ...
L1141[16:31:54] <SkySom> I think I'm down to two.
L1142[16:32:00] <Dashkal> !
L1143[16:32:02] ⇦ Quits: vifino (~vifino@tty.sh) (Ping timeout: 200 seconds)
L1144[16:32:05] <SkySom> And trying to get down to one.
L1145[16:32:06] ⇨ Joins: vifino (vifino@tty.sh)
L1146[16:32:10] <Dashkal> Dude. I don't know you, but I'd still be sad if you up and died on me.
L1147[16:32:22] <SkySom> I'm pretty healthy.
L1148[16:32:25] <Dashkal> Go have a good look at what they shove in those things
L1149[16:32:31] <Negi> Soni: What does it means, then ?
L1150[16:32:31] <SkySom> I have.
L1151[16:32:35] <SkySom> It was not pretty.
L1152[16:32:36] * Dashkal shudders
L1153[16:32:47] <SkySom> Though my biggest thing is I need to return to exercising more.
L1154[16:32:57] <Dashkal> I still drink it at times, but I cut /way/ back.
L1155[16:33:05] <SkySom> I haven't had nearly enough exercise since I started working here.
L1156[16:33:09] <SkySom> Way too much sitting down.
L1157[16:33:16] <Soni> Negi, switching between 2 genders? you can't have a male left side and a female right side, as far as I know
L1158[16:34:05] ⇨ Joins: Ditchbuster (~Ditchbust@c-174-51-244-114.hsd1.co.comcast.net)
L1159[16:34:19] <Negi> Oh also.
L1160[16:35:04] <SkySom> But yes Dashkal I promise not to up and die on you.
L1161[16:35:11] <SkySom> Well I promise to the best of my abilities.
L1162[16:35:20] *** AtomSponge is now known as AtomSponge|away
L1163[16:35:24] <Dashkal> :P
L1164[16:35:34] <SkySom> Besides I'm probably more likely to die in a fiery explosion before I die of poor diet.
L1165[16:35:46] <Dashkal> Don't mind me. I file that kind of thing under 'general compassion for other people'.
L1166[16:36:00] <SkySom> Oh I know.
L1167[16:36:12] <SkySom> I find it odd myself. Even random internet people.
L1168[16:36:20] <Dashkal> That said, I had a Coke with lunch and enjoyed it. So *shrugs*
L1169[16:36:23] <SkySom> After getting to "know" them. I start to watch for them and shit.
L1170[16:36:38] * Lizzy had chips from the chip shop for lunch today
L1171[16:36:59] * SkySom had a Whopper and fries.
L1172[16:37:04] * SkySom whistles
L1173[16:37:22] *** Away_21 is now known as Wuerfel_21
L1174[16:37:25] <Dashkal> Two pieces of Pizza. <3 Uncle Fatih's
L1175[16:37:47] <SkySom> Uncle Fatih's?
L1176[16:37:51] <SkySom> Never heard of it.
L1177[16:37:54] <Dashkal> Pizza chain in Vancouver.
L1178[16:37:55] <SkySom> Some kinda local place?
L1179[16:38:04] <SkySom> Ah Canadian.
L1180[16:38:08] <Dashkal> Yep
L1181[16:38:12] <SkySom> Been awhile since I've been to Canada
L1182[16:38:48] <Negi> Soni: A variable set to null is a valid variable. Even if bigender is simultaneous in some cases, you can cross feminine features on some points with absence of features on others.
L1183[16:39:41] <Soni> Negi, doesn't that fit demigirl?
L1184[16:40:01] <Soni> Negi, also uhh
L1185[16:40:04] <Soni> I said simultaneous
L1186[16:40:21] <Negi> It does. But that doesn't prevent you from counting it as bigender too.
L1187[16:40:22] <Soni> let's say girl is 0xF0 and guy is 0x0F and agender is 0x00
L1188[16:40:22] ⇨ Joins: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com)
L1189[16:40:34] <Soni> bigender[guy,girl] = guy | girl = 0xFF
L1190[16:40:45] <nxsupert> o/
L1191[16:40:51] <Soni> bigender[agender,girl] = agender | girl = girl = 0xF0
L1192[16:40:56] <SkySom> o/
L1193[16:41:12] <Negi> Soni: But a gender is not defined by a single feature.
L1194[16:41:23] <SkySom> Sup nxsupert
L1195[16:41:25] <Soni> Negi, that's why I used hexadecimal and not binary
L1196[16:41:37] <nxsupert> Half of everything SkySom
L1197[16:41:48] <SkySom> Half?
L1198[16:41:55] <SkySom> Ain't that a little optimistic?
L1199[16:42:08] <Soni> Negi, also try to find a way to exploit this: http://bugs.python.org/issue23354
L1200[16:42:28] <Soni> I'd assume something like buffer underrun(?)
L1201[16:43:15] <Negi> I don't know much about what happens inside of Python tbh.
L1202[16:43:34] <SkySom> I'm not sure I'd want to know what happens inside of Python.
L1203[16:43:53] ⇦ Quits: TabletCube (~TCube@90.201.152.118) (Ping timeout: 198 seconds)
L1204[16:44:02] <Negi> Actually a bigender[agender,<x>] can't be defined by a "or".
L1205[16:44:13] <Soni> Negi, why not?
L1206[16:44:33] <Soni> overlapping characteristics just merge together
L1207[16:44:37] <Soni> like an or
L1208[16:44:44] <Negi> It's rather masking of certain bits from the <x> gender.
L1209[16:45:15] ⇦ Parts: lperkins2 (~perkins@63.227.187.208) ())
L1210[16:45:28] ⇨ Joins: TabletCube (~TCube@90.201.152.118)
L1211[16:45:40] <Daiyousei> no one wants to know what happens inside of Python
L1212[16:45:46] <Soni> no
L1213[16:45:49] <Daiyousei> because if you enter its internals, you will exit with cancer
L1214[16:45:51] <Soni> bigender is 100%/100%
L1215[16:46:05] <Negi> Soni: I don't see that anywhere.
L1216[16:46:09] <Soni> Daiyousei, you won't exit
L1217[16:46:48] <Negi> Every ressource I checked said "some traits from two distinct genders" or "identifying as two genders alternatively", Soni.
L1218[16:47:22] <Soni> then what is dual-gender?
L1219[16:48:09] <Negi> A thing that isn't defined anywhere :I
L1220[16:48:41] <Negi> Searched that. The only coherent result is the wikipedia page of...
L1221[16:48:44] <Negi> surprise...
L1222[16:48:46] <Negi> bigender.
L1223[16:49:26] <Soni> >.>
L1224[16:49:51] *** Techokami is now known as Techokami|Off
L1225[16:49:55] <Negi> "dual-gender" isn't an existing term :I
L1226[16:50:05] <Negi> Or rather it's a derivation from bigender. :I
L1227[16:53:19] *** Daiyousei is now known as table
L1228[16:53:22] *** g is now known as gAway2002
L1229[16:53:36] *** table is now known as Daiyousei
L1230[16:54:02] *** Wuerfel_21 is now known as Away_21
L1231[16:58:50] *** Brycey92|alt is now known as Brycey92
L1232[16:58:55] ⇦ Quits: Negi (~Poireau@2a01:e35:2f6a:7060:e2ca:94ff:fe1f:76e0) (Quit: Baï, may your dreams be filled with potatoes, good or bad, I don't care.)
L1233[17:02:05] ⇨ Joins: orthoplex64 (~orthoplex@cpe-68-206-247-199.satx.res.rr.com)
L1234[17:02:26] ⇦ Quits: iceman11a (iceman11a@cpe-74-141-56-150.swo.res.rr.com) (Quit: Leaving)
L1235[17:03:50] ⇦ Quits: TabletCube (~TCube@90.201.152.118) (Read error: Connection reset by peer)
L1236[17:03:50] ⇨ Joins: CompanionCube (~TCube@90.201.152.118)
L1237[17:05:54] *** manmaed is now known as manmaed|AFK
L1238[17:08:00] *** Riking|away is now known as Riking
L1239[17:11:15] *** Away_21 is now known as Wuerfel_21
L1240[17:18:06] ⇦ Quits: nxsupert (~nxsupert@host86-150-39-6.range86-150.btcentralplus.com) ()
L1241[17:23:02] ⇦ Quits: Doty1154 (~doty1154@50.136.193.35) (Ping timeout: 198 seconds)
L1242[17:29:34] *** Wuerfel_21 is now known as Away_21
L1243[17:35:22] *** alekso56 is now known as alekso56|off
L1244[17:37:30] *** alekso56|off is now known as alekso56_off
L1245[17:40:58] *** The_Doctors_Life|Away is now known as The_Doctors_Life
L1246[17:43:18] ⇦ Quits: Inari (~Uni@p54934BD8.dip0.t-ipconnect.de) (Read error: Connection reset by peer)
L1247[17:43:34] *** Techokami|Off is now known as Techokami
L1248[17:48:09] ⇦ Quits: sciguyryan (~sciguyrya@109-205-170-80.dynamic.swissvpn.net) ()
L1249[17:50:20] *** PotatoZzz is now known as PotatoTrumpet
L1250[17:51:15] <PotatoTrumpet> HEYO
L1251[17:51:48] <PotatoTrumpet> I like my MAYO
L1252[17:53:44] <PotatoTrumpet> H... h..... hello?
L1253[17:54:17] * Dashkal scuttles a bit in the darkness
L1254[17:54:23] <PotatoTrumpet> Did #oc sucumb to dysentary?
L1255[17:54:48] * PotatoTrumpet stomps on Dashkal like he is a roach
L1256[17:55:04] <Dashkal> Hey! My foot!
L1257[17:55:12] * PotatoTrumpet screams like a little girl
L1258[17:55:19] * Dashkal stabs PotatoTrumpet with a toaster... ineffectively
L1259[17:55:37] * PotatoTrumpet stabs Dashkal with a lightswitch, turning on the lights
L1260[17:55:46] <PotatoTrumpet> Hey! Why is everyone asleep?
L1261[17:55:55] * PotatoTrumpet wants to learn German
L1262[17:56:20] <PotatoTrumpet> If I learn German, I can talk normally while sounding like I am angry
L1263[17:56:59] * PotatoTrumpet wonders what english sounds like to non english speakers
L1264[17:57:12] * PotatoTrumpet wonders what it is like to think in a different language
L1265[18:00:19] <SkySom> DID I MISS THE TOASTER STABBINGS?
L1266[18:00:37] <Dashkal> Yes, yes you did.
L1267[18:00:44] <SkySom> Oh :(
L1268[18:00:44] <Dashkal> It wasn't very exciting
L1269[18:00:49] <SkySom> Damn.
L1270[18:00:57] <Dashkal> Turns out you need an accelerator of some sort to get any penetration.
L1271[18:01:05] *** Riking is now known as Riking|away
L1272[18:01:24] <SkySom> Oh I've got some penetration here
L1273[18:01:49] * Dashkal defends himself with the toaster
L1274[18:02:20] <SkySom> MY FETISH
L1275[18:02:23] <SkySom> HOW DID YOU KNOW?
L1276[18:05:25] * Dashkal invokes his infusion of otherwhere
L1277[18:20:46] <PotatoTrumpet> It's so strange seeing new people here
L1278[18:20:58] <PotatoTrumpet> I still remember when gamax92 was a wee lad
L1279[18:21:10] <PotatoTrumpet> well
L1280[18:21:26] <PotatoTrumpet> time to install linuxmint after ubuntu's utter failure at installing
L1281[18:21:29] <PotatoTrumpet> Nice knowing ya
L1282[18:21:32] ⇦ Parts: PotatoTrumpet (PotatoTrum@elitebnc6-2.clients.libirc.so) (Leaving))
L1283[18:29:30] ⇨ Joins: Doty1154 (~doty1154@50.136.193.35)
L1284[18:40:01] <Temia> Hmm.
L1285[18:40:15] *** Magik6k is now known as Magik6k|off
L1286[18:43:22] <Temia> I wonder if anyone's made an android utility that posts notifications or toaster messages when things are piped to a client utility
L1287[18:45:41] <SkySom> What?
L1288[18:45:50] <Temia> Cuz' that'd be really useful to find out WHY SSH KEEPS TERMINATING ON ME
L1289[18:45:56] <Temia> :E
L1290[18:46:02] <vifino> Temia: I'd want that :o
L1291[18:46:35] <Temia> It'd be a nice bridge between Android userland and the shell
L1292[18:46:40] <vifino> Yup.
L1293[18:46:45] <Caitlyn> Temia, https://play.google.com/store/apps/details?id=com.growlforandroid.client&hl=en
L1294[18:46:56] <Temia> eeeee :D
L1295[18:47:08] <Caitlyn> then just run the growl app on your PC iirc there are windows linux and osx clients
L1296[18:47:18] <Caitlyn> and you can push alerts around between devices
L1297[18:47:49] *** Magik6k|off is now known as Magik6k
L1298[18:47:56] <Temia> ...wait
L1299[18:47:57] <Temia> no
L1300[18:48:02] <Caitlyn> Oh.... windows and osx... I'm sure there is a 3rd party client for linux :P
L1301[18:48:06] <Temia> That's not what I want at all <.<
L1302[18:48:20] <Temia> Well
L1303[18:48:34] <vifino> Temia: Do you want it on the device?
L1304[18:48:39] <Temia> Yeah
L1305[18:48:43] <vifino> if so, me too.
L1306[18:48:47] <Caitlyn> Oh
L1307[18:48:48] <Caitlyn> ah
L1308[18:48:49] <Caitlyn> yeah
L1309[18:49:07] <vifino> Temia: Imagine something like notify-send
L1310[18:49:23] *** Magik6k is now known as Magik6k|off
L1311[18:50:09] *** kirby|away is now known as mrkirby153
L1312[18:50:46] <vifino> Even though it does not read from a pipe, you can do some bash-fo to do it anyways.
L1313[18:51:30] <Temia> Heh
L1314[18:51:58] <Temia> Hmm.
L1315[18:52:13] <Temia> Now I'm wondering something that I'll have to test...
L1316[18:52:45] <vifino> I think a notify-send is entirely possible with the ndk, but I'm not 100% sure about that.
L1317[18:54:31] <SkySom> Pushbullet for life yo
L1318[18:55:02] * SkySom <3's mirroring his phone notifications on his computer
L1319[18:55:19] <vifino> SkySom: Pushover op
L1320[18:55:32] <SkySom> You're op
L1321[18:55:37] <vifino> :)
L1322[18:55:53] <vifino> Thank you :)
L1323[18:57:16] <SkySom> ...
L1324[18:57:18] <SkySom> Damn you
L1325[19:11:48] <pong> ._. so theres going to be an international lua workshop
L1326[19:12:11] <pong> and i might be hosting it
L1327[19:12:32] <pong> (because im the only one there that knows lua >_>)
L1328[19:22:19] *** Riking|away is now known as Riking
L1329[19:29:05] <Gopher> in the whole world?
L1330[19:29:31] *** Techokami is now known as Techokami|Off
L1331[19:39:47] *** The_Doctors_Life is now known as The_Doctors_Life|Away
L1332[19:40:09] ⇨ Joins: marcin212_ (~marcin212@aadz77.neoplus.adsl.tpnet.pl)
L1333[19:41:43] ⇨ Joins: dangranos (~dangranos@176.50.183.94)
L1334[19:42:32] ⇦ Quits: marcin212 (~marcin212@bpn13.neoplus.adsl.tpnet.pl) (Ping timeout: 198 seconds)
L1335[19:43:33] ⇦ Quits: dangranos (~dangranos@176.50.183.94) (Remote host closed the connection)
L1336[19:46:51] *** nekosune is now known as nekosune_Away
L1337[19:50:03] ⇦ Quits: MrRatermat (ratermat@host81-158-132-107.range81-158.btcentralplus.com) (Ping timeout: 378 seconds)
L1338[19:51:16] *** DFrostedWang is now known as CaptainJackHardness
L1339[19:51:51] *** mrkirby153 is now known as kirby|away
L1340[19:52:08] *** CaptainJackHardness is now known as DFrostedWang
L1341[19:55:46] *** kirby|away is now known as mrkirby153
L1342[19:56:14] *** Daiyousei is now known as SleepingFairy
L1343[20:04:52] ⇦ Quits: Doty1154 (~doty1154@50.136.193.35) (Read error: Connection reset by peer)
L1344[20:21:12] *** LordFokas|off is now known as LordFokas
L1345[20:41:38] ⇨ Joins: lperkins2 (~perkins@63.227.187.208)
L1346[20:41:52] <lperkins2> How do I have a robot drain from an internal tank to a BC tank?
L1347[20:43:36] <lperkins2> Nevermind, figured it out
L1348[20:43:43] <lperkins2> it's robot.drain, not tank_controller
L1349[20:48:40] <gamax92> Gopher: http://hastebin.com/utizuhazow.txt
L1350[20:50:30] ⇦ Quits: justastranger (justastran@2604:180::7239:d646) (Excess Flood)
L1351[20:54:35] ⇨ Joins: justastranger (justastran@2604:180::7239:d646)
L1352[20:56:59] <ds84182> #p
L1353[20:56:59] <|0xDEADBEEF|> > 0.368 Seconds passed.
L1354[20:59:12] <ds84182> #p
L1355[20:59:13] <|0xDEADBEEF|> > 0.673 Seconds passed.
L1356[20:59:17] <ds84182> t-t
L1357[21:08:18] <Gopher> gamax92: wassat?
L1358[21:08:33] <gamax92> calculates maths and stuffs
L1359[21:09:02] <Gopher> it parses the expressions into literal trees of lua tables?
L1360[21:09:24] <gamax92> mhm, but then it simplifies it
L1361[21:10:13] <Gopher> will it reduce formulas containing variables?
L1362[21:10:27] <gamax92> not yet but planned
L1363[21:26:06] *** mrkirby153 is now known as kirby|away
L1364[21:31:35] ⇨ Joins: Lunatrius` (~Lunatrius@77.38.103.182)
L1365[21:33:06] ⇦ Quits: Lunatrius (~Lunatrius@77.38.103.182) (Killed (NickServ (GHOST command used by Lunatrius`)))
L1366[21:33:07] *** Lunatrius` is now known as Lunatrius
L1367[21:42:21] *** Benguin is now known as Benguin[ZzZ]
L1368[21:47:23] ⇦ Parts: lperkins2 (~perkins@63.227.187.208) ())
L1369[21:52:59] <vifino> Lizzy! \o/
L1370[21:53:05] <vifino> I can type λ now!
L1371[21:53:10] <vifino> xmodmap -e "keycode 47 = U0151 U0150 U03BB U03BB U03BB"
L1372[21:53:17] <vifino> eep eep!
L1373[22:02:47] *** kirby|away is now known as mrkirby153
L1374[22:03:44] *** mrkirby153 is now known as kirby|away
L1375[22:05:51] *** kirby|away is now known as mrkirby153
L1376[22:12:08] *** mr208 is now known as mallrat208
L1377[22:14:17] *** Riking is now known as Riking|away
L1378[22:14:49] ⇦ Quits: marcin212_ (~marcin212@aadz77.neoplus.adsl.tpnet.pl) (Quit: Leaving)
L1379[22:33:24] ⇦ Quits: Lathanael|Away (~Lathanael@p54971B96.dip0.t-ipconnect.de) (Ping timeout: 378 seconds)
L1380[22:39:33] ⇨ Joins: Lathanael|Away (~Lathanael@p5497101F.dip0.t-ipconnect.de)
L1381[22:43:15] *** Riking|away is now known as Riking
L1382[23:03:50] <gamax92> Gopher: http://hastebin.com/ufofogalug.md
L1383[23:04:19] <Gopher> useful.
L1384[23:07:43] <gamax92> i actually haven't made ^ without relying on lua for that, but i did make sure what lua gave for 2^512 was correct
L1385[23:23:53] *** justastranger is now known as justastranger|zzz
L1386[23:29:40] <LordFokas> but why not just 2 ^ 1024 ?
L1387[23:30:55] <gamax92> #lua 2^1024
L1388[23:30:55] <|0xDEADBEEF|> > inf
L1389[23:30:57] <gamax92> is why
L1390[23:32:51] <LordFokas> well lua is stupid
L1391[23:33:54] <LordFokas> because 2^512 * 2^512 == 2^1024 if it can solve one it should be able to solve the other
L1392[23:34:02] *** Cruor|Away is now known as Cruor
L1393[23:34:13] <gamax92> LordFokas: im doing multiplication myself .-.
L1394[23:34:33] <gamax92> there is a reason why at the bottom it says "lua: inf" and "libcalc: (huge number)"
L1395[23:34:54] <LordFokas> oh
L1396[23:35:07] <LordFokas> you're bypassing lua being stupid
L1397[23:35:14] <gamax92> mmhm
L1398[23:35:15] * LordFokas +1's gamax92
L1399[23:35:57] <gamax92> #lua 2^512
L1400[23:35:57] <|0xDEADBEEF|> > 1.3407807929943e+154
L1401[23:36:10] <gamax92> #lua string.format("%.0f"2^512)
L1402[23:36:10] <|0xDEADBEEF|> > lua:1: ')' expected near '2'
L1403[23:36:16] <gamax92> #lua string.format("%.0f", 2^512)
L1404[23:36:16] <|0xDEADBEEF|> > 13407807929942597099574024998205846127479365820592393377723561443721764030073546976801874298166903427690031858186486050853753882811946569946433649006084096
L1405[23:36:34] <LordFokas> gtg o/
L1406[23:37:08] *** LordFokas is now known as LordFokas|off
L1407[23:37:25] ⇨ Joins: asie (~asie@078088168214.elblag.vectranet.pl)
L1408[23:37:25] zsh sets mode: +v on asie
L1409[23:39:30] <gamax92> asie: http://hastebin.com/ebawabokix.txt
L1410[23:48:25] ⇨ Joins: lperkins2 (~perkins@63.227.187.208)
L1411[23:48:42] <lperkins2> How do I specify a destination slow for robot.suck or component.inventory_controller.suck?
L1412[23:48:52] <lperkins2> er, .suckFromSlot
L1413[23:49:22] <lperkins2> it puts the first item into the selected slot (robot.select), but a second invocation stacks with the first stack,
L1414[23:49:29] <lperkins2> even if I have a different slot selected.
L1415[23:49:33] <gamax92> lperkins2!
L1416[23:50:32] <lperkins2> Aye?
L1417[23:50:42] <gamax92> lperkins2: http://hastebin.com/ebawabokix.txt
L1418[23:50:53] <gamax92> i made a thing, it can math better than lua
L1419[23:51:04] <lperkins2> That's not hard to do...
L1420[23:51:33] <gamax92> lperkins2: :(
L1421[23:52:46] <lperkins2> Sorry, what I mean is lua sucks at math, so being better at math than lua doesn't say much.
L1422[23:53:58] <lperkins2> ugh, looks like I have to use suck then robot.transferTo...
L1423[23:54:05] <lperkins2> talk about unpredictable behaviour...
L1424[23:57:34] <lperkins2> What's the upper limit on what your algorithm can handle for a number gamax?
L1425[23:58:49] <gamax92> until lua runs out of memory
L1426[23:59:00] <lperkins2> How fast is it?
L1427[23:59:28] <gamax92> what i showed you takes exactly a second to calculate
L1428[23:59:36] <lperkins2> Heh...
L1429[23:59:39] <lperkins2> Poor poor lua
<<Prev Next>> Scroll to Top