<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:00:08] ⇨ Joins: Corded (discord@2607:5300:60:51da::c0f:fee)
L2[00:00:08] zsh sets mode: +v on Corded
L3[00:04:00] *** Kimiro is now known as CB|Away
L4[00:07:50] *** CB|Away is now known as Kimiro
L5[00:11:51] ⇨ Joins: npe|office (~NPExcepti@bps-gw.hrz.tu-chemnitz.de)
L6[00:17:42] *** Daiyousei is now known as Mayonne
L7[00:17:50] *** Kimiro is now known as CB|Away
L8[00:19:39] *** Kasen is now known as rakiru|offline
L9[00:24:06] ⇦ Quits: Temportalist (uid37180@id-37180.charlton.irccloud.com) (Quit: Connection closed for inactivity)
L10[00:27:14] *** CB|Away is now known as Kimiro
L11[00:27:28] ⇨ Joins: Tahg (~Tahg@pool-72-74-136-57.bstnma.fios.verizon.net)
L12[00:43:19] <KittyKath> payonel / Antheus: The Chain went Spaceport (RIP) -> Kerbalstuff (RIP) -> Spacedock.info (not yet RIP). The last two have a decent API too.
L13[00:59:45] ⇦ Quits: Kimiro (~TimeDrago@S0106c8fb2655ca42.ed.shawcable.net) (Quit: Time heals all wounds, but heals time?)
L14[01:01:29] ⇨ Joins: Kimiro (~MobileDra@199-7-159-28.eng.wind.ca)
L15[01:36:30] ⇦ Quits: Doty1154 (~Doty1154@2601:648:8000:134f:41f7:956e:ccec:afe7) (Read error: Connection reset by peer)
L16[01:44:54] * Kimiro slaps Lizzy with a $20 bill and a slice of American cheese
L17[02:01:50] ⇨ Joins: techno156 (~techno156@84.03.01a8.ip4.static.sl-reverse.com)
L18[02:02:07] ⇦ Quits: techno156 (~techno156@84.03.01a8.ip4.static.sl-reverse.com) (Remote host closed the connection)
L19[02:02:28] ⇨ Joins: techno156 (~techno156@84.03.01a8.ip4.static.sl-reverse.com)
L20[02:04:43] ⇦ Quits: cpup (~cpup@32.218.118.125) (Ping timeout: 190 seconds)
L21[02:04:51] ⇨ Joins: cpup (~cpup@32.218.118.125)
L22[02:15:13] ⇨ Joins: Inari (~Pinkishu@p5DEC6326.dip0.t-ipconnect.de)
L23[02:17:10] ⇨ Joins: chikken_ (webchat@97-82-122-94.dhcp.mdfd.or.charter.com)
L24[02:17:27] <chikken_> is there a way to paint and draw a image as in computercraft?
L25[02:17:38] <chikken_> im wanting to add it to a gui
L26[02:19:24] <Kodos> Hokay
L27[02:19:27] <Kodos> Found the game I ant
L28[02:19:28] <Kodos> want*
L29[02:22:08] <greaser|q> there are ways to do it in opencomputers
L30[02:22:28] <greaser|q> sure there are also ways to do it in CC but imho OC is better
L31[02:23:20] <greaser|q> if all you want to do is paint then you'd be better off doing it using 160x50
L32[02:23:45] <greaser|q> or 80x50 if you want square pixels
L33[02:23:53] <greaser|q> or 160x100 for the same effect if you don't mind things being a little slow
L34[02:24:07] <greaser|q> ...and somewhat tricky to use
L35[02:25:19] <greaser|q> chikken_: https://oc.cil.li/index.php?/topic/864-chenthread-image-format-high-quality-images-on-opencomputers/
L36[02:25:39] <greaser|q> won't let you draw inside OC itself but it's probably the best way to get high quality images drawn
L37[02:30:13] <chikken_> greaser|q thaknyou
L38[02:30:33] <chikken_> how would i draw images for this ?
L39[02:31:20] <chikken_> greaser|q: im also trying to make antimated pictures for a stargate, when a chevron is engaged it shows on the screen
L40[02:34:52] <greaser|q> chikken_: ah right you'll probably want to work out how to draw things yourself in code...
L41[02:34:55] <greaser|q> http://ocdoc.cil.li/component:gpu
L42[02:35:08] <greaser|q> component = require("component")
L43[02:35:12] <greaser|q> gpu = component.gpu
L44[02:35:17] <greaser|q> ^ that should get you started
L45[02:36:07] <chikken_> i still dont get it
L46[02:36:17] <greaser|q> █ <-- copy-paste that, that'll get you the foreground colour
L47[02:36:39] <greaser|q> it's U+2588 FULL BLOCK
L48[02:37:27] <chikken_> so do i draw out each pixel?
L49[02:42:40] <greaser|q> sorry had a phone call
L50[02:42:44] <greaser|q> chikken_: that's one way to do it
L51[02:43:18] <greaser|q> there are function call rate limits you may want to be wary of but for now it should be fine to just do a set() for every point
L52[02:45:32] *** Kimiro is now known as DragonBoots
L53[02:45:40] *** DragonBoots is now known as Kimiro
L54[02:55:26] ⇦ Quits: cpup (~cpup@32.218.118.125) (Ping timeout: 198 seconds)
L55[03:02:28] <Inari> i'd go with half blocks
L56[03:02:33] <Inari> then you get actual pixels
L57[03:02:34] <Inari> :p
L58[03:03:42] <Inari> but yeah, just try the set method, can still optimize it later
L59[03:04:12] <Inari> optimizations suhc as: set all pixels of a colour beofre moving to the next colour, fill rectangular areas of pixels of same colour instead of calling set on each
L60[03:04:24] <Inari> or making hte viewport smaller and copying a buffered version form outside of it
L61[03:04:40] <Izaya> that works?
L62[03:05:20] <Inari> well that was teh point of it being added?
L63[03:05:22] <greaser|q> currently the highest res you can get uses the braille section of unicode
L64[03:05:35] <Izaya> so it was added
L65[03:05:37] <Izaya> nice
L66[03:05:47] <Inari> im not sure if its in 1.5.22 though :P
L67[03:05:59] <Izaya> I only use dev builds anyways
L68[03:08:18] ⇨ Joins: Keanu73 (~Keanu73@host-92-28-79-49.as13285.net)
L69[03:08:35] ⇦ Quits: Keanu73 (~Keanu73@host-92-28-79-49.as13285.net) (Client Quit)
L70[03:08:45] ⇨ Joins: cpup (~cpup@32.218.118.125)
L71[03:08:59] ⇨ Joins: Keanu73 (~Keanu73@host-92-28-79-49.as13285.net)
L72[03:12:01] <greaser|q> it's probably not in 1.5.22
L73[03:12:55] ⇨ Joins: sciguyryan (~sciguyrya@95.211.184.245)
L74[03:15:50] ⇦ Quits: cpup (~cpup@32.218.118.125) (Ping timeout: 198 seconds)
L75[03:21:58] ⇨ Joins: cpup (~cpup@32.218.118.125)
L76[03:42:37] ⇨ Joins: ahh11 (ahh11@cpc84033-pool15-2-0-cust1005.15-1.cable.virginm.net)
L77[03:42:49] ⇦ Parts: ahh11 (ahh11@cpc84033-pool15-2-0-cust1005.15-1.cable.virginm.net) ())
L78[03:56:17] <Izaya> Is there a max size for the signal buffer?
L79[04:01:40] * Lizzy groans and wonders why she has what smells like cheese on her face
L80[04:09:01] * Izaya hmms
L81[04:09:17] <Izaya> If I were writing a preprocessor that could replace strings in a file
L82[04:09:27] <Izaya> what would be a good way to have one of those?
L83[04:09:38] <Izaya> --[[replacethis]]-- maybe?
L84[04:11:53] <Izaya> --[[replacethis]
L85[04:11:56] <Izaya> --[[replacethis]] *
L86[04:12:07] <Izaya> because putting the -- on the end comments out the rest of the line
L87[04:18:08] <Lizzy> Izaya, you could potentially have the --[[ some text ]]-- and just have it replace out the end 'tags' as well as the start ones
L88[04:18:12] <Lizzy> or something
L89[04:22:56] *** gAway2002 is now known as g
L90[04:28:44] <Izaya> so evidently this just dies with 'computer halted'
L91[04:28:51] <Izaya> wonderful
L92[04:29:37] <Izaya> it'd be nice if the computer wouldn't bluescreen and instead leave the error up
L93[04:30:37] <Lizzy> aha, I can subscribe to notifications from subforums on the oc forums
L94[04:30:52] * Lizzy has now subbed to the website feedback subforum
L95[05:04:10] <Izaya> well that's an interesting bug
L96[05:04:31] <Izaya> when I go past the max X coord on the screen, my display system wraps around... to the same line
L97[05:35:25] <Izaya> And once again to the state of "It's not working and I don't know why"
L98[05:36:42] <Izaya> so instead of 1 from the event
L99[05:36:48] <Izaya> it's sending "> "?
L100[05:40:53] <Izaya> it's pulling chars from the screen, it seems
L101[05:40:56] * Izaya hrms
L102[05:40:58] <Izaya> OH
L103[05:41:00] <Izaya> I'm an idiot
L104[05:41:08] ⇨ Joins: Turtle (~SentientT@82-171-92-73.ip.telfort.nl)
L105[05:41:17] <Izaya> it's yielding and then the value changes
L106[05:43:15] <Izaya> yay
L107[05:43:23] <Izaya> "networking" stack works
L108[05:49:07] <Izaya> "networking" "stack" rather
L109[05:49:39] <Izaya> tomorrow I'll try to throw together a remote login system I guess
L110[06:01:53] <Kodos> o.o https://pastebin.com/6jkTUN3g
L111[06:10:38] <Lizzy> Anyone who has played on my server in the past (or anyone who hasn't, I don't mind) take a look at http://goo.gl/forms/v2Y2JXeZAa
L112[06:15:02] <Lizzy> KittyKath, :3
L113[06:16:29] <KittyKath> Lizzy: Yeessh. Also I really don't care about the MC version but you made that field required :O
L114[06:16:54] <Lizzy> I know
L115[06:19:54] <Lizzy> also the old Enderverse topic was the 5th most liked post on the forums, probably would have been more if i didn't shut it down
L116[06:21:34] <Lizzy> and the topic itself has 4019 views
L117[06:21:53] <Lizzy> granted a few of them might have been me today
L118[06:22:23] <Lizzy> 2nd most viewed server topic, first being Leadcraft
L119[06:24:00] * Lizzy should really be working on getting backups setup on Athar...
L120[06:24:46] ⇦ Quits: Dimensional (~kvirc@40.134.242.242) (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/)
L121[06:25:36] <Lizzy> but why do things when you can procrastinate?
L122[06:25:47] <Lizzy> that should be my motto
L123[06:26:56] <Lizzy> gah, so much stuff i could be doing ¬_¬
L124[06:27:07] <Lizzy> .load
L125[06:27:08] <EnderBot2> CPU: 1.78 1.57 1.65 , RAM: 17.5G/31.3G (~55.8%), SWAP: 305.3M/88.2G (~0.3%)
L126[06:27:37] <Lizzy> ^ i think that would support another 4GB mc server running :P
L127[06:31:45] <Forecaster> smart moving :D
L128[06:34:42] <Lizzy> no
L129[06:39:23] <Forecaster> with that attitude you'll never get to climb things >:
L130[06:43:14] <Lizzy> well you didn't even put it throug the form :P
L131[06:43:42] <Lizzy> also hmm, do i want to create a multi-story train yard?
L132[06:44:28] <Izaya> no
L133[06:44:38] <Izaya> you should make a multi-storey one instead
L134[06:45:13] <Lizzy> shut up, i know i can't spell
L135[06:47:41] <Izaya> https://pb.i0i0.me/p/HofGyBGM not that anyone uses it, but this new version has a networking stack
L136[06:47:50] <Izaya> it is very much not final
L137[06:49:45] <Izaya> https://lain.shadowkat.net/~izaya/kbuild.tar if anyone wants the sources there they are
L138[06:49:48] ⇨ Joins: Elizabeth (~elizabeth@tmcfan.xrbunker.com)
L139[06:50:05] zsh sets mode: +o on Elizabeth
L140[06:50:26] <Izaya> really need to make a global vars system
L141[06:51:07] <Elizabeth> why does Wocchat's text entry bar use black text and a black backgropund?
L142[06:51:18] <Elizabeth> I can't see the ship i type :<
L143[06:52:13] <Elizabeth> Also using Primusrun, mc is running at 60fps
L144[06:52:20] <Elizabeth> though it is jittering a bit
L145[06:52:25] <Skye> For some reason
L146[06:52:26] <Elizabeth> (on my laptop, this is)
L147[06:52:31] <Skye> 1.9 runs at 120fps
L148[06:52:49] <Skye> while I remember 1.4 struggling on 50fps
L149[06:55:22] <KittyKath> Skye: M$ does have some good programmers on board.
L150[06:56:00] <Skye> for my cousin, it's the other way around
L151[06:57:00] ⇦ Quits: Icedream (~icedream@has.streaminginter.net) (Quit: A lol made me boom.)
L152[07:00:31] <CompanionCube> ayy
L153[07:01:48] ⇨ Joins: Icedream (~icedream@has.streaminginter.net)
L154[07:05:29] * Izaya mumbles something about aliens
L155[07:06:20] <CompanionCube> Izaya, so
L156[07:06:32] <Elizabeth> hmm, i think wocchat is derping slightlu
L157[07:06:32] <Izaya> so
L158[07:06:36] <CompanionCube> apparently there's a bill in the US that quite literally makes all modern web browsers illegal
L159[07:07:05] <Skye> huh?
L160[07:07:09] <Izaya> ...
L161[07:07:23] <Elizabeth> I'd be lying if i said i was suprised
L162[07:07:27] <CompanionCube> because they support TLS/SSL and the bill is about encryption
L163[07:07:51] <Izaya> are they munitions?
L164[07:09:54] <Skye> not anymore
L165[07:11:09] <CompanionCube> no
L166[07:11:38] <CompanionCube> 'The proposed regulations demand all software providers comply with court orders to make data and communications encrypted by their products, available to enforcement agencies on demand.'
L167[07:11:41] <CompanionCube> 'nuff said
L168[07:12:46] * Izaya sighs
L169[07:12:52] <Izaya> that, as usual
L170[07:12:55] <Izaya> makes
L171[07:12:57] <Izaya> no
L172[07:12:59] <Izaya> sense
L173[07:13:03] ⇨ Joins: MajGenRelativity (~MajGenRel@c-66-31-214-12.hsd1.ma.comcast.net)
L174[07:13:30] <CompanionCube> Izaya, of course since no mechanism exists in TLS
L175[07:16:09] <CompanionCube> https://www.justsecurity.org/30740/feinstein-burr-bill-bans-browser/
L176[07:17:52] <Izaya> this is why we can't have nice things
L177[07:21:57] <CompanionCube> on the plus side, this bill likely has no chance of passing due to absurdity
L178[07:24:25] <CompanionCube> Izaya, now consider all the software stores/repositories resident in the US
L179[07:24:35] <CompanionCube> foreign security nightmare much?
L180[07:27:24] <Izaya> why there is so much stuff still running in the US I don't understand
L181[07:28:05] <CompanionCube> especially considering this:
L182[07:28:17] <CompanionCube> 'They�re not party to the communications, and they don�t have the cryptographic keys the browser generated for any session. Which means that under Feinstein-Burr, no modern Web browsers can be hosted by an app store (or other distributor of software licenses), at least in their current forms.'
L183[07:28:23] ⇦ Quits: Elizabeth (~elizabeth@tmcfan.xrbunker.com) (Remote host closed the connection)
L184[07:30:04] <Lizzy> %tell gamax92 I got a too long without yeilding error when using Wocchat :/
L185[07:30:05] <MichiBot> Lizzy: gamax92 will be notified of this message when next seen.
L186[07:30:39] ⇨ Joins: Yepoleb (~yepoleb@178-191-131-154.adsl.highway.telekom.at)
L187[07:30:42] <Lizzy> The US needs a 5th of November that worked
L188[07:31:59] ⇨ Joins: LuMistry (uid146685@id-146685.charlton.irccloud.com)
L189[07:32:16] <LuMistry> Greetings
L190[07:33:00] ⇨ Joins: Elizabeth (~elizabeth@tmcfan.xrbunker.com)
L191[07:33:00] zsh sets mode: +o on Elizabeth
L192[07:35:15] *** Gavle|Away is now known as Gavle
L193[07:35:25] <Izaya> Welp, I have rustc and cargo on monolith, so I can now compile rust on a Pentium Dual E2200
L194[07:35:28] <Izaya> 'wooooo'
L195[07:48:14] ⇦ Quits: cpup (~cpup@32.218.118.125) (Ping timeout: 198 seconds)
L196[07:51:03] <Inari> https://imgur.com/gallery/1zYm5QN
L197[07:53:46] ⇨ Joins: cpup (~cpup@32.218.113.129)
L198[07:54:58] <Inari> https://imgur.com/gallery/DQfPHrH heh
L199[07:59:33] *** amadornes[OFF] is now known as amadornes
L200[07:59:56] ⇨ Joins: Vexatos (~Vexatos@p200300556E32CA42C11F41E3410D6803.dip0.t-ipconnect.de)
L201[07:59:57] zsh sets mode: +v on Vexatos
L202[08:00:57] <Vexatos> Hello
L203[08:02:56] * vifino groans and throws himself at Lizzy
L204[08:05:54] * Lizzy falls over
L205[08:07:27] <Vexatos> so apparently the latest update of wine-staging is borked
L206[08:07:28] <Vexatos> yay
L207[08:23:14] ⇨ Joins: Dracotech (~techno156@137.154.59.231)
L208[08:25:27] ⇦ Quits: techno156 (~techno156@84.03.01a8.ip4.static.sl-reverse.com) (Ping timeout: 198 seconds)
L209[08:34:40] <Lizzy> Vexatos, http://i.imgur.com/jnnOEf0.png what do the numbers 4 and 15 represent? (this is output from print( event.pull() )
L210[08:34:43] <Lizzy> )
L211[08:35:54] * KittyKath hugs Vexatos
L212[08:35:56] <KittyKath> hai
L213[08:36:37] <Vexatos> if it's a locomotive, it'll be the two colours
L214[08:36:51] <Vexatos> should work with OpenOS' colors API
L215[08:37:19] <Lizzy> Ah
L216[08:37:39] <Lizzy> yeah, it's a default coloured Electric loco
L217[08:39:25] * Lizzy has Tea
L218[08:41:15] <Inari> LizzyTheSiren, eh?
L219[08:42:07] <Lizzy> yes, that's my MC name
L220[08:44:56] * Lizzy stabs Sangar
L221[08:45:01] <Lizzy> y u no here?
L222[08:51:07] * Izaya hrms about coroutines
L223[08:51:40] <Izaya> well I mean if I can split threads at any point I might as well have blocking reads
L224[08:52:40] <Vexatos> what the heck
L225[08:53:39] <Vexatos> my computer is unable to unpack wine-staging-i386 >_>
L226[08:54:05] <Vexatos> computer please
L227[08:54:51] <Izaya> "no" ~ computer
L228[08:54:54] * Saphire ships people around o.o
L229[08:55:43] <CompanionCube> blocking reads isn't that bad
L230[08:56:53] <Izaya> I figure if you can have a separate listener thread you might as well use that
L231[08:59:45] <Vexatos> in other news, wine can't update anymore >_>
L232[09:01:03] <S3> Good. Nobody needs wine
L233[09:01:11] <S3> you should use beer instead
L234[09:01:50] <S3> "Beer" is a program that stands for: "Beer Emulates an Emulator for Redmond
L235[09:02:43] <Lizzy> hmm
L236[09:02:59] <Lizzy> do I have the code from my first computer-controlled railroad anywhere...
L237[09:03:16] <S3> Lizzy: using steves carts detector?
L238[09:03:21] <Lizzy> ?
L239[09:03:54] <S3> I made a railroad control system that could sense any train by its contents just by creating a table of the train in lua from the cart detector
L240[09:04:05] <S3> by doing that it knew which train was coming, etc
L241[09:04:23] <Lizzy> you mean data like in http://i.imgur.com/jnnOEf0.png ?
L242[09:04:37] <Lizzy> ^ Is using OpenComputers, RailCraft and Computronics
L243[09:04:53] <S3> yeah itw as like that
L244[09:04:58] <S3> and then it would network and make switches, etc
L245[09:05:33] <Elizabeth> I really need to get EIRAIRC on this instacne
L246[09:05:39] <Elizabeth> *instance
L247[09:05:40] <S3> vifino: WATCH OUT!
L248[09:05:45] <S3> apparently lizzy is a siren
L249[09:05:49] <S3> according to that screenshot
L250[09:05:58] <Lizzy> too late
L251[09:06:02] <S3> she might eat yo face
L252[09:06:04] <Lizzy> he is already under my control
L253[09:07:33] ⇦ Quits: Dracotech (~techno156@137.154.59.231) (Quit: There are those who live without living. Don't be one of those.)
L254[09:07:36] * Lizzy mwahahahas
L255[09:07:43] <Lizzy> Also he's playing fallout at the moment
L256[09:07:55] <S3> All part of your plan?
L257[09:08:17] <Lizzy> yes
L258[09:09:07] * S3 stays in the US; As far accross the ocean as possible
L259[09:09:32] <Lizzy> also S3: http://i.imgur.com/r3i3fx7.png each of those switch lever motors will eventually be replaced with a routing switch motor that'll then get updated by a computer
L260[09:09:50] ⇦ Quits: xarses (~xarses@c-73-202-191-48.hsd1.ca.comcast.net) (Ping timeout: 198 seconds)
L261[09:09:57] <S3> ooooh
L262[09:10:02] <Elizabeth> lets hope this computer stays chunk loaded
L263[09:10:20] <S3> what's with the giant circles on your map?
L264[09:10:31] <Lizzy> that's the building I'm under
L265[09:11:23] <Lizzy> also the RC intergration and occasionally the chatbox are the only things i use from computronics :P
L266[09:12:00] * Izaya uses the camera for drone navigation
L267[09:12:34] ⇦ Quits: brandon3055 (~Brandon@122.129.140.1) (Read error: Connection reset by peer)
L268[09:12:49] <S3> Is this on the OC server?!
L269[09:12:54] <Lizzy> ?
L270[09:13:45] <S3> nvm
L271[09:16:04] * S3 sneaks the curse launcher at work and sets up MC
L272[09:16:21] <Izaya> ewww curse
L273[09:16:43] <Michiyo> S3, no, it's my server
L274[09:17:06] <S3> Izaya: curse is pretty useful for hiding MC from the boss
L275[09:17:06] <S3> :)
L276[09:17:15] <S3> Michiyo: oh?
L277[09:17:26] <S3> whatchya got for a modpack?
L278[09:18:13] <Michiyo> http://www.technicpack.net/modpack/pc-logix-17.422708/mods
L279[09:18:25] <S3> OOH! I have never heard of logix
L280[09:18:35] <Michiyo> o_O
L281[09:18:43] <S3> that is a beautiful pack
L282[09:19:05] <S3> omg and you have zetta industries too
L283[09:19:14] <S3> is that the one that coems with the OC Immersive engineering cables?
L284[09:19:39] <Michiyo> yeah
L285[09:19:48] <S3> neat
L286[09:20:07] <S3> you got a lot of people on there?
L287[09:20:10] <Michiyo> no
L288[09:21:05] <Michiyo> theres like 5-6 tops and never at the same time, it's a pretty private server
L289[09:23:29] <S3> I see
L290[09:24:43] <S3> Well that's too bad, I've been looking for a server to play on
L291[09:25:39] * Lizzy is going to be starting her server back up soon
L292[09:26:00] * Michiyo cries
L293[09:26:01] <Michiyo> :P
L294[09:27:02] <S3> I guess I can fire up yet another server with logix to play with it
L295[09:27:04] <S3> lol
L296[09:27:21] <Michiyo> "PC-Logix"
L297[09:27:26] <Michiyo> lol
L298[09:27:30] <S3> is that what its calleed?
L299[09:27:33] <Michiyo> yes
L300[09:27:35] <S3> ohyes
L301[09:27:40] <Lizzy> oh
L302[09:27:41] <S3> okay, I didn't see the PC- there
L303[09:27:46] <S3> I'm peripherally blind
L304[09:27:55] <Lizzy> It's shift-tab to switch between chatting destinations with EiraIRC
L305[09:28:17] <Lizzy> oh, i also need to make this prefix the channel
L306[09:28:54] <S3> The only thing I don't like about this modpack is that it doesn't have BOP (but I can add it)
L307[09:29:06] <S3> After having the eye candy of bop I can't live without it heh
L308[09:34:50] <Michiyo> used to have exbl
L309[09:34:58] <Michiyo> but I pulled it for... some reason
L310[09:35:03] ⇦ Quits: VikeStep (~VikeStep@101.184.243.180) (Read error: Connection reset by peer)
L311[09:35:13] <Michiyo> err
L312[09:35:15] <Michiyo> ebxl
L313[09:35:51] <S3> ebxl sucks though
L314[09:35:55] <S3> bop is so much better
L315[09:36:11] <S3> the eye candy is tormenting
L316[09:36:19] <g> bop? ebxl?
L317[09:36:30] <S3> BOP is Biomes O' Plenty
L318[09:36:32] <Michiyo> I know one of the devs for ebxl so I was running it to help them test and crap
L319[09:36:33] <Lizzy> Biomes O' Plenty, Extra Biomes XL
L320[09:36:34] <S3> ebxl is Extra Biomes XL:
L321[09:36:38] <g> ah right, I see
L322[09:37:29] <Michiyo> http://minecraft.curseforge.com/members/allaryin
L323[09:37:37] <S3> I use bop with seus shaders
L324[09:37:49] <g> shaders would not go nicely with the 195 mods we use
L325[09:37:57] ⇨ Joins: Trangar (~Trangar@181-219-144-85.ftth.glasoperator.nl)
L326[09:37:59] <S3> g: it'd be fine for me
L327[09:38:05] <g> oh yeah?
L328[09:38:06] <g> :P
L329[09:38:13] <S3> I uses seus shaders with a 512x texture pack on infinity
L330[09:38:14] <S3> :D
L331[09:38:26] <S3> and get like more than 100FPS
L332[09:38:30] <CompanionCube> https://petitions.whitehouse.gov//petition/outlaw-programming-languages-threaten-safety-american-people-and-work-counter-our-way-life
L333[09:38:36] <CompanionCube> someone was tripping
L334[09:38:53] <S3> g: I have a GTX 770 and an i7 4770K, 16GB of ram with a low CAS.. etc
L335[09:38:59] <S3> so it's no biggie
L336[09:39:05] <g> you have a pretty close setup to me then
L337[09:39:06] <S3> and my resolution is 2048x1536
L338[09:39:12] <Lizzy> ffs, EiraIRC
L339[09:39:18] <g> lol, eirairc
L340[09:39:21] <g> worst mod I've ever used
L341[09:39:57] <Lizzy> eh, it's being annoying
L342[09:39:57] ⇦ Quits: Trangar (~Trangar@181-219-144-85.ftth.glasoperator.nl) (Client Quit)
L343[09:40:04] <Izaya> I wonder if I can make Transmission text me when a download is done
L344[09:40:06] <S3> g: http://biomesoplenty.wikia.com/wiki/Category:Biomes
L345[09:40:09] ⇨ Joins: Trangar (~Trangar@181-219-144-85.ftth.glasoperator.nl)
L346[09:40:16] <S3> there's a thing there to scroll through all their biomes
L347[09:40:20] <S3> check em out :)
L348[09:40:29] <Izaya> Sacred Springs best
L349[09:40:47] <Lizzy> test
L350[09:40:49] ⇦ Quits: bauen1 (~quassel@ip5f5ac2a4.dynamic.kabel-deutschland.de) (Remote host closed the connection)
L351[09:40:50] <Lizzy> ¬_¬
L352[09:40:58] <Izaya> success
L353[09:41:48] * Lizzy presents her middle finger to EiraIRC
L354[09:43:17] <Elizabeth> test
L355[09:43:22] <Lizzy> at fucking last
L356[09:43:36] <Lizzy> i can now see the tags of where people are talking from
L357[09:43:45] ⇦ Quits: Elizabeth (~elizabeth@tmcfan.xrbunker.com) (Quit: kbai)
L358[09:44:03] ⇨ Joins: xarses (~xarses@64.124.158.100)
L359[09:45:48] <Lizzy> https://imgur.com/f54tKjL I hope this works(the screenshot, not the potential spaghetti signals init
L360[09:46:04] <Lizzy> oh wow it did
L361[09:46:59] ⇨ Joins: Nathan1852 (~Nathan185@HSI-KBW-109-192-133-159.hsi6.kabel-badenwuerttemberg.de)
L362[09:47:36] ⇦ Quits: npe|office (~NPExcepti@bps-gw.hrz.tu-chemnitz.de) (Remote host closed the connection)
L363[09:48:26] *** medsouz|offline is now known as medsouz
L364[09:51:37] <S3> Izaya: I once got a circular mountain range of "alps"
L365[09:51:44] <S3> and the center was a giant courtyard
L366[09:51:53] <S3> so we dug a tunnel to it and made our city in there
L367[09:51:55] <S3> :D
L368[09:52:00] <S3> it was protected from baddies
L369[09:52:00] <Izaya> Niiice.
L370[09:52:07] <S3> yeah I miss that map :(
L371[09:53:33] <S3> Installing PC-LOGIX now
L372[09:53:42] <Lizzy> :D
L373[09:54:12] <S3> It may be a nice modpack to experiment with Ocranet
L374[09:55:25] <S3> Well
L375[09:55:36] <S3> The good news is I have 900 down and like 600 up
L376[09:55:46] <S3> at work
L377[09:55:53] <S3> mbit
L378[09:56:03] <S3> (it's really a gig down / up but)
L379[09:56:22] <S3> so what I could do is click on "open world to LAN"
L380[09:56:27] <S3> since I have an external IP
L381[09:56:36] <S3> every machine on campus has an external IP heh
L382[09:56:44] <Lizzy> IPv6?
L383[09:57:01] <Lizzy> or does your campus have a shit-tonne of IPv4 addresses
L384[09:57:07] <S3> we JUST deployed ipv6.
L385[09:57:10] <Lizzy> ah
L386[09:57:18] <S3> and yes we do have a few /16s
L387[09:57:30] <S3> you want to know where all the upv6 addresses went? here..
L388[09:57:41] <S3> ipv4*
L389[09:57:45] <Lizzy> lol
L390[09:58:10] <Lizzy> your company singlehandedly exaughested the IPv4 address space
L391[09:58:16] * Lizzy can't spell to save her life
L392[09:58:44] <S3> Lizzy: our university recently opened one of their /16 blocks for a few dorms and it was full by the end of the semester
L393[09:59:00] <S3> they were saving it
L394[09:59:07] <Lizzy> lol
L395[09:59:22] <CompanionCube> saving it for what
L396[09:59:32] <S3> for exhaystion apparently
L397[09:59:53] <Izaya> Sell it off, make a killing
L398[10:00:31] <CompanionCube> well, I'd imagine IPv4 is moderately valuable, especially now that ARIN has officially exhausted the supply in NA.
L399[10:17:05] *** SleepyFlenix is now known as Flenix
L400[10:27:18] *** medsouz is now known as medsouz|offline
L401[10:43:52] ⇦ Quits: sciguyryan (~sciguyrya@95.211.184.245) (Remote host closed the connection)
L402[10:44:32] ⇨ Joins: Jezza (~Jezza@92.206.5.6)
L403[10:49:42] ⇦ Quits: scj643 (~quassel@2604:a880:800:10::145:3001) (Read error: Connection reset by peer)
L404[10:49:52] ⇨ Joins: scj643 (~quassel@2604:a880:800:10::145:3001)
L405[10:54:40] ⇨ Joins: bauen1 (~quassel@2a02:810d:1980:1584:c1f7:5cb4:93d3:3324)
L406[10:55:07] ⇦ Quits: scj643 (~quassel@2604:a880:800:10::145:3001) (Remote host closed the connection)
L407[10:55:14] ⇨ Joins: scj643 (~quassel@2604:a880:800:10::145:3001)
L408[11:04:22] <Saphire> Hey
L409[11:04:34] <Saphire> So... anyone wants a raw filesystem?
L410[11:04:39] <Saphire> Or.. anything?
L411[11:05:00] * Saphire had a bit of breakdown and tries to find something to do and not to try again
L412[11:05:06] <Saphire> *cry again
L413[11:05:08] <Saphire> bleh
L414[11:06:15] * Lizzy pets Saphire
L415[11:06:55] <Saphire> But really, any requests?
L416[11:07:07] <Saphire> ...do we even have a place to put requests for programs?
L417[11:08:40] <CompanionCube> we have a forum about stuffs
L418[11:08:54] <Saphire> yeah, found it
L419[11:13:21] ⇦ Quits: Vexatos (~Vexatos@p200300556E32CA42C11F41E3410D6803.dip0.t-ipconnect.de) (Remote host closed the connection)
L420[11:14:07] ⇨ Joins: Vexatos (~Vexatos@p200300556E32CA42C11F41E3410D6803.dip0.t-ipconnect.de)
L421[11:14:07] zsh sets mode: +v on Vexatos
L422[11:15:21] ⇨ Joins: Crinkly_ (webchat@5ec13d72.skybroadband.com)
L423[11:15:28] <Crinkly_> hi
L424[11:15:29] <Crinkly_> Any idea why i'm getting "Failed opening file fro writing: file not found" when trying to use the pastebin command
L425[11:17:23] <Lizzy> is the file you're trying to read from actua;y there
L426[11:18:43] <Crinkly_> Yea
L427[11:18:53] <Crinkly_> http://pastebin.com/bR33cXDU
L428[11:19:05] <Crinkly_> using "pastebin get bR33cXDU holo"
L429[11:19:21] <Lizzy> hmm
L430[11:20:06] <Lizzy> have you installed openos to the hard drive? (i.e. you're not running straight from the floppy), the floppy is read only so wouldn't be able to save your paste to it
L431[11:20:23] <Crinkly_> Yea I've just realised I hadn't done that, doign it now :)
L432[11:20:50] <Crinkly_> Working now, thanks!
L433[11:21:01] <Lizzy> awesome!
L434[11:22:26] ⇦ Quits: MajGenRelativity (~MajGenRel@c-66-31-214-12.hsd1.ma.comcast.net) (Ping timeout: 198 seconds)
L435[11:25:41] ⇨ Joins: BearishMushroom (~BearishMu@90-231-174-194-no159.tbcn.telia.com)
L436[11:27:47] *** medsouz|offline is now known as medsouz
L437[11:28:21] *** Gavle is now known as Gavle|Away
L438[11:36:12] ⇦ Quits: jackmcbarn (~jackmcbar@gateway.insomnia247.nl) (Ping timeout: 192 seconds)
L439[11:39:13] <Saphire> Hoi
L440[11:39:39] <Saphire> https://github.com/OpenPrograms/Fingercomp-Programs HOW I DIDNT KNEW ABOUT THIS GOODNESS
L441[11:39:45] * Saphire points out the chat thing
L442[11:40:08] <Saphire> https://github.com/OpenPrograms/Fingercomp-Programs/tree/master/opg-chat even
L443[11:43:57] ⇨ Joins: jackmcbarn (~jackmcbar@gateway.insomnia247.nl)
L444[11:52:29] *** Gavle|Away is now known as Gavle
L445[11:52:59] ⇨ Joins: MajGenRelativity (~MajGenRel@c-66-31-214-12.hsd1.ma.comcast.net)
L446[11:54:04] *** Gavle is now known as Gavle|Away
L447[11:55:14] *** rakiru|offline is now known as Kasen
L448[12:21:48] <chikken_> i sdcrolled up my chat and saw this, https://petitions.whitehouse.gov//petition/outlaw-programming-languages-threaten-safety-american-people-and-work-counter-our-way-life, can a coding language even be against the law?
L449[12:23:19] <ping> chikken_, politics is a joke
L450[12:23:28] ⇦ Quits: Kimiro (~MobileDra@199-7-159-28.eng.wind.ca) (Quit: Connection lost: Psionic link severed.)
L451[12:23:29] <ping> programming languages can be illegal whenever someone wants
L452[12:23:58] <chikken_> Thats plain stupid ;-;
L453[12:24:25] <chikken_> lol good thing it only has 101 petioners
L454[12:24:42] ⇨ Joins: Temportalist (uid37180@2604:8300:100:200b:6667:3:0:913c)
L455[12:26:45] ⇦ Quits: MajGenRelativity (~MajGenRel@c-66-31-214-12.hsd1.ma.comcast.net) (Quit: Bye)
L456[12:33:31] <Inari> chikken: that doesnt load for me :<
L457[12:34:42] <Inari> so basically someone who dislikes java/javscript/ruby made up a BS reason to outlaw them and wanted to see how many petitions they can get?
L458[12:34:55] <Inari> well petitioners
L459[12:42:25] <CompanionCube> I bet they program in C/C++
L460[12:43:17] <XDjackieXD> lol
L461[12:45:01] <S3> the iniversity runs DAFUQ
L462[12:45:08] <S3> Michiyo: I downloaded PC-Logix!@
L463[12:45:14] <S3> and when I run it it says we can't find forge
L464[12:45:15] <S3> lol
L465[12:56:21] <g> S3, does biomes o plenty not add itself to existing maps?
L466[12:56:38] <Michiyo> You're installing and launching via technic, right?
L467[12:56:54] <Michiyo> cause I use that pack quiet often, with no issue
L468[13:04:50] <S3> It was BOP
L469[13:04:55] <S3> I had to pick an older bop
L470[13:05:50] <gamax92> s/DN/DD/
L471[13:05:52] <MichiBot> <Saphire> https://github.com/OpenPrograms/Fingercomp-Programs HOW I DIDDT KNEW ABOUT THIS GOODNESS
L472[13:05:56] <gamax92> oops
L473[13:06:06] <gamax92> D:< Lizzy
L474[13:13:51] <S3> WTF?
L475[13:13:56] <S3> The dirt is trying to kill me!
L476[13:14:08] <gamax92> S3:
L477[13:14:25] <gamax92> The baseline is being too filtered
L478[13:14:57] ⇦ Quits: payonel (~sugoi@75-165-6-59.tukw.qwest.net) (Quit: nsa found me)
L479[13:15:51] <g> S3, that's ender zoo
L480[13:15:51] <g> xD
L481[13:16:06] <gamax92> g
L482[13:16:10] <g> hai
L483[13:16:18] <gamax92> hey there :3
L484[13:16:23] <g> sup?
L485[13:16:27] <g> :P
L486[13:18:46] <Michiyo> Ahh yeah, we're on an older forge, cause I'm lazy
L487[13:19:43] <gamax92> Michiyo: hello
L488[13:19:50] <Michiyo> gamax92, Hey
L489[13:22:11] ⇦ Quits: xarses (~xarses@64.124.158.100) (Remote host closed the connection)
L490[13:22:18] ⇨ Joins: sugoi (~sugoi@75-165-6-59.tukw.qwest.net)
L491[13:22:18] zsh sets mode: +v on sugoi
L492[13:22:20] ⇨ Joins: xarses (~xarses@64.124.158.100)
L493[13:22:21] *** sugoi is now known as payonel
L494[13:22:24] <g> gamax92 is super friendly today :P
L495[13:22:41] <gamax92> hey payonel
L496[13:22:46] <gamax92> fuck you <3
L497[13:22:57] <payonel> go to hell you magnificent bastard
L498[13:28:19] ⇦ Quits: Trangar (~Trangar@181-219-144-85.ftth.glasoperator.nl) (Quit: Leaving)
L499[13:28:24] <KittyKath> Izaya: Want to write Apple Product Security signed malware?
L500[13:28:41] <Stary2001> Hehehehehehehe.
L501[13:32:46] ⇨ Joins: Pyrolusite (~Pyrolusit@ARouen-651-1-277-109.w109-209.abo.wanadoo.fr)
L502[13:36:50] ⇨ Joins: Laine_prikol (webchat@94.233.21.235)
L503[13:36:58] <Laine_prikol> hello IRC!
L504[13:37:21] <gamax92> IRC replies with hello
L505[13:37:59] <Laine_prikol> Что
L506[13:38:03] <Laine_prikol> Я не понял
L507[13:38:42] <Laine_prikol> Ah
L508[13:39:13] <gamax92> :P
L509[13:43:50] <gamax92> I wish I could block out this message :/ "ATTENTION: default value of option"
L510[13:43:52] <S3> GAH!
L511[13:43:59] <S3> Michiyo: how do I turn fullbright off?
L512[13:44:00] <S3> heh
L513[13:44:08] <gamax92> but that would either mean trying to dump a NULL in the library or recompiling
L514[13:44:34] <Mimiru> S3, it's one of the many conflicting binds
L515[13:44:37] <Mimiru> iirc it's - by default
L516[13:44:45] <Mimiru> idk for sure though
L517[13:45:05] <S3> it was off when I first played
L518[13:45:12] <S3> then it like turned itself on on the first night lol
L519[13:45:13] <payonel> Mimiru: you're fast at responding to either name
L520[13:45:16] ⇨ Joins: AlexisMachina (uid57631@id-57631.charlton.irccloud.com)
L521[13:45:17] <S3> like at midnight
L522[13:45:26] <Mimiru> payonel, they both ping me
L523[13:45:29] <payonel> do you have Michiyo ping you ...
L524[13:45:31] <payonel> ^
L525[13:45:34] <payonel> :)
L526[13:45:54] <Mimiru> Caitlyn,Michiyo,Mimiru,Michi,OpenSec,OpenSecurity,OpenFM,OpenPrinter,LanteaCraft
L527[13:46:07] <Mimiru> my highlight list :p
L528[13:46:34] <Mimiru> Also, got lucky I was sitting down to my computer at homewaiting on my lunch to microwave
L529[13:46:41] <Mimiru> s/mewa/me wa/
L530[13:46:42] <MichiBot> <Mimiru> Also, got lucky I was sitting down to my computer at home waiting on my lunch to microwave
L531[13:52:01] * Lizzy stabs Sangar some more
L532[13:53:17] <Mimiru> Good.. good... Let the hate flow through you
L533[13:57:51] <S3> I opened up a port!
L534[13:57:59] <S3> but I'm looking for a nice spawn
L535[13:58:31] <Lizzy> grr, stupid CoFH and their shitty update messages
L536[13:58:40] <Lizzy> i don't need it being spammed on every join to the server
L537[14:01:22] <Inari> http://imgur.com/gallery/tTgRJ27
L538[14:06:26] ⇦ Quits: Laine_prikol (webchat@94.233.21.235) (Quit: Web client closed)
L539[14:14:06] ⇦ Quits: Crinkly_ (webchat@5ec13d72.skybroadband.com) (Ping timeout: 195 seconds)
L540[14:19:00] <Inari> http://imgur.com/gallery/B5luOWO
L541[14:25:17] ⇦ Quits: chikken_ (webchat@97-82-122-94.dhcp.mdfd.or.charter.com) (Quit: Web client closed)
L542[14:25:45] <Kodos> Mimiru, did you see http://puu.sh/ozIzj/8a0e5dc8bf.png yet?
L543[14:26:27] ⇨ Joins: CyberTurd (~CyberTurd@host86-145-128-75.range86-145.btcentralplus.com)
L544[14:28:45] <Lizzy> Inari, http://i.imgur.com/ZQLQOWW.jpg
L545[14:29:09] <Lizzy> now, back to mc
L546[14:30:56] <Inari> how does lesbian titfuck even work
L547[14:31:05] <gamax92> Inari: strap on
L548[14:31:19] <Inari> ehj
L549[14:32:15] <Michiyo> Kodos, nice
L550[14:32:25] <Lizzy> *sounds of odd memories surfacing in Inari's head*
L551[14:32:37] <Inari> memories?
L552[14:32:54] ⇦ Quits: rikai (~quassel@rekd.net) (Ping timeout: 384 seconds)
L553[14:34:20] ⇨ Joins: rikai (~quassel@rekd.net)
L554[14:34:31] ⇦ Quits: CyberTurd (~CyberTurd@host86-145-128-75.range86-145.btcentralplus.com) (Quit: Leaving)
L555[14:42:52] <S3> ... this fullbright thing is really pissing me off
L556[14:44:12] <gamax92> S3: then go into your keybinds, unbind the other things, and press the key
L557[14:44:18] <gamax92> or go take the mod for it and remove it
L558[14:44:27] <Michiyo> seriously, it's in the bind options...
L559[14:44:28] <S3> there's nothing in there
L560[14:44:38] <S3> and I don't want to reboot mc because people re playing on it lol
L561[14:45:25] <Lizzy> - key by default
L562[14:45:27] <S3> got it
L563[14:45:31] <Michiyo> check your options voxelvis...
L564[14:45:32] <Michiyo> nvm
L565[14:46:03] <Lizzy> grr, tabbychat doesn't let EiraIRC show it's stuff :(
L566[14:47:47] <gamax92> Katie
L567[14:47:58] <Michiyo> gamax92,
L568[14:48:09] <gamax92> Damn. you didn't list that one :P
L569[14:48:16] <Michiyo> :P
L570[14:48:51] <Lizzy> laptop jet turbine mode: Activate!
L571[14:59:57] ⇦ Quits: payonel (~sugoi@75-165-6-59.tukw.qwest.net) (Quit: nsa found me)
L572[15:10:42] ⇨ Joins: Kimiro (~TimeDrago@s0106c8fb2655ca42.ed.shawcable.net)
L573[15:12:59] <S3> OK ok
L574[15:13:07] <S3> gamax92: I work at a call center at a university
L575[15:13:16] <S3> at least one of the places I work
L576[15:13:47] <S3> guy just came in and asked me if his laptop weighed more when the battery is fully charged
L577[15:14:18] ⇦ Quits: Keanu73 (~Keanu73@host-92-28-79-49.as13285.net) (Quit: Gotta go to bed or something. See ya!)
L578[15:17:59] <Kodos> Not gonna lie, CoD:IW looks pretty epic
L579[15:19:06] <Vexatos> Hm
L580[15:19:20] <Vexatos> cod? I think I had that once
L581[15:19:25] <Vexatos> in some restaurant in Hamburg
L582[15:22:45] ⇦ Quits: Vexatos (~Vexatos@p200300556E32CA42C11F41E3410D6803.dip0.t-ipconnect.de) (Quit: I guess I have to go now. Bye ✔)
L583[15:24:14] <gamax92> S3: what is the hash of a zero byte file
L584[15:25:03] <S3> gamax92: depends on the inode size.
L585[15:25:14] <S3> I would think
L586[15:25:29] <gamax92> I wouldn't thing
L587[15:26:24] <S3> no I don't think now because it goes until EOF right?
L588[15:27:11] <S3> which can happen before that probably 4KB alignment
L589[15:28:15] <Temia> d41d8cd98f00b204e9800998ecf8427e /dev/null
L590[15:28:32] <gamax92> heh, Temia
L591[15:29:01] <Temia> :>
L592[15:36:19] <S3> paid internet bill
L593[15:36:21] <S3> 100 bucks
L594[15:36:21] <S3> lol
L595[15:36:36] <S3> for 8 down 1 up
L596[15:36:39] <S3> (mbit)
L597[15:36:50] <g> wat
L598[15:36:55] <S3> yep
L599[15:36:59] <g> we pay €35/mo for uncapped best-in-area speed
L600[15:37:09] <S3> where is that?
L601[15:37:12] <g> Ireland
L602[15:37:24] <g> it's 100/10
L603[15:38:25] <Dashkal> My area wants 123 CAD/mo for that
L604[15:38:29] <Kodos> I pay about 50 bucks a month for 10/1, but only because the ISP here has a monoopoly
L605[15:38:45] <g> I enjoy that we can get a best-in-area package
L606[15:39:05] <g> If the net speeds in this area goes up, eg, due to better infrastructure, we get upgraded to it, no extra charge
L607[15:39:52] <Dashkal> Heh, I'm lucky if they don't just drop the speeds and say "deal with it or go without"
L608[15:40:11] <Dashkal> They do that. They're piling more people in and not upgrading the infrastructure.
L609[15:41:04] <g> see, a monopoly of that kind would be illegal in europe
L610[15:42:27] <Dashkal> The thing is that nobody else wants to even try to break the monopoly.
L611[15:42:52] <Dashkal> Nobody wants to pay to lay new cable, only to come up against an incumbent with a ton of mindshare.
L612[15:43:12] <S3> g at least I have 1000/1000 here at work
L613[15:43:14] <S3> :)
L614[15:43:58] <S3> it tends to hover around 850/600 or so though
L615[15:44:08] <S3> down and up
L616[15:44:28] <Lizzy> https://imgur.com/XfFyL6z hmm, should i do the wall design like the stone or moss cobble
L617[15:45:10] *** medsouz is now known as medsouz|offline
L618[15:52:47] ⇦ Quits: Icedream (~icedream@has.streaminginter.net) (Quit: A lol made me boom.)
L619[15:55:16] <Lizzy> cool
L620[15:55:20] <Lizzy> whoops
L621[16:02:55] ⇨ Joins: brandon3055 (~Brandon@122.129.140.1)
L622[16:07:27] *** Gavle|Away is now known as Gavle
L623[16:09:57] ⇨ Joins: MajGenRelativity (~MajGenRel@c-66-31-214-12.hsd1.ma.comcast.net)
L624[16:11:44] ⇨ Joins: Icedream (~icedream@has.streaminginter.net)
L625[16:25:04] <g> http://imgur.com/gallery/BvExp9V
L626[16:39:51] ⇨ Joins: chikken_ (webchat@97-82-122-94.dhcp.mdfd.or.charter.com)
L627[16:40:20] <chikken_> is there a way to fill a screen with a color using just its address?
L628[16:40:50] <chikken_> im using the walk event to make a floor and i want it to fill each screen with a random color when walked on
L629[16:41:05] <chikken_> Or event a better idea
L630[16:41:14] <chikken_> have a color for each different player
L631[16:41:54] <chikken_> even* lol is there a easy way of doing this? would just getting the w, h good enough and times it buy then screen position?
L632[16:42:29] <Lizzy> you'd have to bind the gpu to the screen first, but yeah, after that you /should/ be able to just
L633[16:42:32] <Lizzy> fill the screen
L634[16:43:29] <chikken_> oh i was looking at the gpu api and i missed the bind function xD
L635[16:44:01] *** amadornes is now known as amadornes[OFF]
L636[16:44:25] <chikken_> hmm that may be a problem though
L637[16:44:58] <chikken_> it can only be bound to one at once, would it be better if i just did the width heigth and just do math for it?
L638[16:46:17] <Lizzy> hmm
L639[16:46:31] <Lizzy> you could always switch out the screens with .bind()
L640[16:46:39] <Lizzy> IIRC they don't clean when they're unbound
L641[16:46:55] <Lizzy> could be wrong though, i don't do much with screens
L642[16:47:22] <chikken_> lets hope not
L643[16:49:09] ⇦ Quits: Pyrolusite (~Pyrolusit@ARouen-651-1-277-109.w109-209.abo.wanadoo.fr) (Quit: Leaving)
L644[16:49:37] <chikken_> lizzy should i set the background or fill?
L645[16:49:51] <Lizzy> err, not sure
L646[16:51:29] <chikken_> i did curScreen = gpu.bind(screenAddress)
L647[16:51:37] <chikken_> would i do curScreen.fill()
L648[16:51:42] <chikken_> or gpu.fil()
L649[16:51:48] <Lizzy> the latter
L650[16:52:09] <chikken_> huh?
L651[16:52:22] <Lizzy> the gpu.fill() one
L652[16:54:35] <chikken_> crap, whats the button combination for the solid block?
L653[16:54:48] * Lizzy shrugs
L654[16:54:53] <Inari> http://imgur.com/gallery/8doclxK
L655[16:56:17] <chikken_> ▐
L656[16:56:43] <chikken_> how do i input that?
L657[16:56:46] <chikken_> its a alt code
L658[16:56:57] <Lizzy> copy it then press the inset key ingame
L659[17:03:45] <chikken_> i dont think you can bind single screen like that
L660[17:03:57] <Lizzy> ?
L661[17:04:30] <chikken_> i think you can only bind to seperate screens
L662[17:06:22] <Lizzy> when you say seperate screens do you mean the screens in their non-multiblock form?
L663[17:06:28] ⇦ Quits: Jezza (~Jezza@92.206.5.6) (Ping timeout: 384 seconds)
L664[17:09:07] <chikken_> they're a multi-block
L665[17:10:06] <chikken_> .0
L666[17:17:24] <chikken_> anything Lizzy ?
L667[17:17:28] <Lizzy> ?
L668[17:17:35] *** Gavle is now known as Gavle|Away
L669[17:18:19] <chikken_> how would i select each screen without binding them since i cant
L670[17:18:25] <Lizzy> you can
L671[17:18:41] <Lizzy> use the address of the bottom left-most screen
L672[17:18:52] <chikken_> even though they're a multiblock on the ground
L673[17:18:58] <Lizzy> hmm
L674[17:19:10] <Lizzy> i think the screens have an address
L675[17:19:23] <chikken_> they do
L676[17:19:32] <Lizzy> which is also sent in the touch/walk event so you could always bind on the fly from that
L677[17:19:51] <chikken_> im doing that
L678[17:19:58] <chikken_> im using the address from the event
L679[17:20:17] <g> the ender zoo direwolve
L680[17:20:19] <g> +S
L681[17:20:21] <g> are SO NOISY
L682[17:20:27] <g> and everywhere in the twilight forest
L683[17:20:59] <chikken_> but when i do gpu(0,0, w, h, "▐") fills every screen
L684[17:21:08] <Lizzy> hmm
L685[17:21:27] <Lizzy> I don't know then, as i said, i havent done much with screeens
L686[17:22:06] <Skye> chikken_: screenshot of your screen setup
L687[17:23:08] *** Flenix is now known as FleepySlenix
L688[17:23:15] <chikken_> http://puu.sh/oE7vc/be8fc41a8b.jpg
L689[17:25:51] <Lizzy> ah crap
L690[17:26:04] <Lizzy> I stayed up way longer than i wanted to
L691[17:27:03] ⇦ Quits: Icedream (~icedream@has.streaminginter.net) (Quit: A lol made me boom.)
L692[17:27:06] * Lizzy falls asleep on the sofa
L693[17:27:20] * Lizzy falls asleep on one of the sofas in the room *
L694[17:27:36] <chikken_> ▐http://puu.sh/oE7Kg/2d206c2ce1.jpg
L695[17:28:10] <chikken_> pastbin.com/PnwSxTGP
L696[17:28:23] <chikken_> http://www.pastebin.com/PnwSxTGP
L697[17:29:06] <chikken_> Skye: you see anything wrong with it?
L698[17:29:45] * KittyKath puts a blanket over Lizzy
L699[17:30:07] <Skye> chikken_: well, it's one large screen
L700[17:31:34] <Izaya> Know what'd be great?
L701[17:31:59] <CompanionCube> what
L702[17:32:03] <Izaya> Being able to use f2fs on an Android phone on the SD card
L703[17:32:13] <Izaya> fat32 sucks
L704[17:32:29] <Inari> fat sucks in general
L705[17:32:44] <CompanionCube> FAT is likely good if you're an OS dev needing a filesystem
L706[17:33:04] <Izaya> It's a bad filesystem but it's nice and simple
L707[17:33:22] <CompanionCube> welo
L708[17:33:25] <Izaya> still, f2fs is designed for flash storage
L709[17:33:27] <chikken_> Skye: lizzy said i could select each screen seperatly
L710[17:33:30] <CompanionCube> guess I get to either avoid GTK3
L711[17:33:42] <CompanionCube> get into GTK3 theming
L712[17:33:56] <Izaya> chikken_: to separate them, you can dye them
L713[17:33:57] <CompanionCube> use onestepback - or switch to Qt.
L714[17:34:11] <chikken_> oh boy
L715[17:34:16] <chikken_> but that'll be so much work
L716[17:34:19] <CompanionCube> http://gnome-look.org/content/show.php?content=163472
L717[17:34:24] <Izaya> I'm thinking I might try gtk theming
L718[17:34:34] <chikken_> could i just do the math for it to find each screen?
L719[17:34:42] <chikken_> im wanting to making a trailing thing Izaya
L720[17:34:54] <Inari> chikken: of course you could do the math :P
L721[17:34:56] <Inari> wht would stop you
L722[17:35:15] <Izaya> Oh that's probably simpler
L723[17:35:33] <Izaya> I thought you wanted a multimonitor setup or something
L724[17:35:33] <Inari> you can also probably just get the x/y and draw around it :f
L725[17:36:48] * CompanionCube is unsure which path to take
L726[17:37:01] <CompanionCube> GTK theming seems particularly masochistic.
L727[17:38:40] <CompanionCube> Avoiding GTK3 seems to be a difficult if not impossible. Making my desktop look like NeXTStep would look odd as hell with my DE's black/blue UI theme. Moving to Qt seems like the best option here.
L728[17:40:51] ⇦ Quits: xarses (~xarses@64.124.158.100) (Ping timeout: 201 seconds)
L729[17:42:43] ⇦ Quits: Nathan1852 (~Nathan185@HSI-KBW-109-192-133-159.hsi6.kabel-badenwuerttemberg.de) (Ping timeout: 190 seconds)
L730[17:42:54] <chikken_> Izaya: that wont work
L731[17:43:17] <chikken_> because the walk event returns the x,y as screens
L732[17:43:39] <chikken_> 6 screens say if i stand in the bottom right its be 2,3 or 3,2
L733[17:44:00] <chikken_> it doesnt work like touch or id already know what to do
L734[17:44:06] ⇦ Quits: Temportalist (uid37180@2604:8300:100:200b:6667:3:0:913c) (Quit: Connection closed for inactivity)
L735[17:46:23] *** kirby|gone is now known as mrkirby153
L736[17:46:36] <chikken_> so how could i do it for that ? Antheus
L737[17:46:41] <chikken_> Inari *
L738[17:51:59] <chikken_> no one?
L739[18:00:55] ⇨ Joins: badcode9 (webchat@pool-108-21-181-19.nycmny.fios.verizon.net)
L740[18:01:15] ⇦ Quits: badcode9 (webchat@pool-108-21-181-19.nycmny.fios.verizon.net) (Client Quit)
L741[18:03:51] ⇨ Joins: xarses (~xarses@c-73-202-191-48.hsd1.ca.comcast.net)
L742[18:04:51] ⇨ Joins: CJL125 (webchat@user-10mt4d0.cable.mindspring.com)
L743[18:04:54] <CJL125> Hello!
L744[18:05:00] <chikken_> hi
L745[18:05:23] <CJL125> So immersive engineering just went into open beta for 1.8.9 :D
L746[18:05:52] <CJL125> And I was wondering- could you use a microcontroller to pull items out of inventories and onto conveyor belts?
L747[18:06:28] ⇦ Quits: BearishMushroom (~BearishMu@90-231-174-194-no159.tbcn.telia.com) (Remote host closed the connection)
L748[18:06:33] <S3> ok
L749[18:06:43] <S3> so I wonder.. I doubt I finished uploading that thing
L750[18:08:11] <g> CJL125, if it has its own inventory, yes, with a dropper
L751[18:08:28] <g> I don't think microcontrollers can work with outer peripherals though, so you can't just use a transposer placed in the world
L752[18:09:53] <CJL125> ...darn, I was looking for a better option than hoppers for getting items onto conveyor belts.
L753[18:10:18] <CJL125> ...I thought that microcontrollers could use inventory upgrades.
L754[18:10:32] <g> maybe they can? idk
L755[18:13:05] *** g is now known as gAway2002
L756[18:13:49] <CJL125> ...if they could, that would imply the ability to interact with outside inventories, if only by pulling items from them or pushing items to them.
L757[18:14:22] <CJL125> And that would be great, because the microcontrollers actually fit really well with IE asthetically.
L758[18:18:38] <CJL125> ACtually, the whole mod does.
L759[18:19:26] <CJL125> If there's one thing that opencomputers flat out does better than computercraft, it's asthetics.
L760[18:20:04] <CJL125> The blocks textures are great, as are the models.
L761[18:21:33] <CJL125> ...I know, that's subjective.
L762[18:21:52] ⇦ Quits: CJL125 (webchat@user-10mt4d0.cable.mindspring.com) (Quit: Web client closed)
L763[18:30:31] ⇨ Joins: Doty1154 (~Doty1154@2601:648:8000:134f:69bf:4fc8:ec9a:4ce8)
L764[18:30:41] ⇨ Joins: MajGenRelativity_ (~MajGenRel@c-66-31-214-12.hsd1.ma.comcast.net)
L765[18:30:44] <Inari> ~oc event
L766[18:30:44] <ocdoc> http://ocd.cil.li/api:event
L767[18:31:38] ⇨ Joins: OmegaCenti (~OmegaCent@70-138-81-89.lightspeed.hstntx.sbcglobal.net)
L768[18:32:10] <Inari> chikken_: well use theinfo which screen and resolution to get the area :P
L769[18:32:13] <Inari> but im off, nigth
L770[18:32:23] ⇦ Quits: Inari (~Pinkishu@p5DEC6326.dip0.t-ipconnect.de) (Read error: Connection reset by peer)
L771[18:33:16] ⇦ Quits: MajGenRelativity (~MajGenRel@c-66-31-214-12.hsd1.ma.comcast.net) (Ping timeout: 201 seconds)
L772[18:44:03] *** Kimiro is now known as CB|Away
L773[18:44:08] *** CB|Away is now known as Kimiro
L774[18:44:12] *** Kimiro is now known as CB|Away
L775[18:51:10] ⇨ Joins: MajGenRelativity__ (~MajGenRel@c-66-31-214-12.hsd1.ma.comcast.net)
L776[18:53:37] ⇦ Quits: MajGenRelativity_ (~MajGenRel@c-66-31-214-12.hsd1.ma.comcast.net) (Ping timeout: 201 seconds)
L777[19:08:12] <Antheus> I think my break from MC has been long enough :P
L778[19:10:05] <Dashkal> You pick an... interesting time to return. We're in total flux. Some mods still on 1.7, some dual 1.7/1.8.9, some 1.9...
L779[19:10:21] <Antheus> mods are on 1.9 now?
L780[19:10:45] <Dashkal> Some, not many. No recommended forge build yet.
L781[19:11:08] <Dashkal> Blood Magic and DrCyano's suite are the two large ones I know of so far.
L782[19:11:31] <Dashkal> RFTools/Deep Resonance
L783[19:12:51] <Antheus> 110 packages to upgrade
L784[19:13:13] <Antheus> I'll do it when I go to bed
L785[19:17:40] ⇦ Quits: Tedster (~Tedster@host109-154-129-240.range109-154.btcentralplus.com) (Ping timeout: 201 seconds)
L786[19:21:31] ⇨ Joins: techno156 (~techno156@137.154.59.231)
L787[19:22:09] *** CB|Away is now known as Kimiro
L788[19:31:03] ⇨ Joins: Tedster (~Tedster@host109-155-107-147.range109-155.btcentralplus.com)
L789[19:32:26] ⇦ Quits: Turtle (~SentientT@82-171-92-73.ip.telfort.nl) (Quit: Nettalk6 - www.ntalk.de)
L790[19:46:16] ⇦ Quits: MajGenRelativity__ (~MajGenRel@c-66-31-214-12.hsd1.ma.comcast.net) (Quit: Bye)
L791[19:53:10] ⇦ Quits: jackmcbarn (~jackmcbar@gateway.insomnia247.nl) (Ping timeout: 192 seconds)
L792[19:54:01] ⇦ Quits: techno156 (~techno156@137.154.59.231) (Read error: Connection reset by peer)
L793[19:57:23] ⇦ Quits: cpup (~cpup@32.218.113.129) (Ping timeout: 190 seconds)
L794[19:58:43] ⇨ Joins: jackmcbarn (~jackmcbar@gateway.insomnia247.nl)
L795[19:59:06] ⇨ Joins: cpup (~cpup@32.218.113.129)
L796[20:00:47] ⇦ Quits: Kimiro (~TimeDrago@s0106c8fb2655ca42.ed.shawcable.net) (Quit: Time heals all wounds, but heals time?)
L797[20:05:38] ⇦ Quits: jackmcbarn (~jackmcbar@gateway.insomnia247.nl) (Ping timeout: 192 seconds)
L798[20:06:14] ⇨ Joins: jackmcbarn (~jackmcbar@gateway.insomnia247.nl)
L799[20:27:11] ⇨ Joins: Solace7 (~solace7@c-98-244-24-234.hsd1.ca.comcast.net)
L800[20:29:18] <Solace7> Anyone know of any alternatives to DW20s Button API?
L801[20:42:59] <Antheus> Not that I know of :P
L802[20:43:09] <Antheus> Could always make your own
L803[20:48:08] *** medsouz|offline is now known as medsouz
L804[20:48:25] <Antheus> OC has more people than CC
L805[20:48:27] <Antheus> .-.
L806[20:53:01] ⇨ Joins: Kimiro (~TimeDrago@S0106c8fb2655ca42.ed.shawcable.net)
L807[20:58:11] <Temia> wow, really?
L808[20:58:16] <Temia> That's hilarious.
L809[20:59:12] <Antheus> I'm starting to try to find some colleges I want to go to
L810[20:59:27] <Antheus> But I don't know exactly what I want to do
L811[21:00:45] <gamax92> mmm ... college.
L812[21:02:55] <Antheus> University of Texas is looking kinda good
L813[21:05:52] <lashtear> austin's nice
L814[21:06:18] <Ajloveslily> Antheus, go to Oklahoma State Uni
L815[21:06:57] <Antheus> ew Oklahoma
L816[21:07:00] <Ajloveslily> ^
L817[21:08:44] <Antheus> I mean, it's about the same distance from me as austin...
L818[21:09:38] * gamax92
L819[21:09:39] * gamax92
L820[21:10:26] <Antheus> Unless I get a scholarship, I probally won't leave Texas due to out of state tuition
L821[21:14:28] * Ajloveslily
L822[21:20:20] ⇦ Quits: wembly (~wembly@50.240.220.69) (Ping timeout: 384 seconds)
L823[21:27:08] ⇨ Joins: wembly (~wembly@50.240.220.69)
L824[22:02:47] ⇦ Quits: LuMistry (uid146685@id-146685.charlton.irccloud.com) (Quit: Connection closed for inactivity)
L825[22:18:41] <S3> you know
L826[22:18:55] <S3> it's great when people ask you why Slackware Linux is called slackware
L827[22:18:59] <S3> gamax92: ^
L828[22:19:18] <S3> and you end up informing them that Slack is a religious tenet
L829[22:19:28] <S3> and their reaction is like..... .... ..... ....
L830[22:26:31] <gamax92> S3: mmm, installpkg
L831[22:26:43] <S3> ?
L832[22:26:50] <S3> sboinstall!
L833[22:27:07] <gamax92> that's for slackbuilds yes
L834[22:29:16] <S3> I really wish that slackports pulled through
L835[22:29:41] <Mimiru> Hmm... wonder if the pack could survive a update to latest forge
L836[22:29:59] <S3> because a BSD port system for Slackware would be fantastic
L837[22:32:01] <S3> anyone got an idea for roaming numbers in Ocranet?
L838[22:32:18] <S3> like for example let's say you had a tablet thing.. your number should be the same EVERYWHERE.
L839[22:43:03] <Mimiru> ugh.... files.minecraftforge.com seems to be super slow
L840[22:43:14] <Mimiru> err
L841[22:43:15] <Mimiru> .net
L842[22:43:18] <Mimiru> don't click the .com
L843[22:43:19] <Mimiru> ¬_¬
L844[22:45:14] ⇦ Quits: Lathanael|Away (~Lathanael@p549606E4.dip0.t-ipconnect.de) (Ping timeout: 198 seconds)
L845[22:46:07] <Mimiru> S3, if you want to use the newer BOP 2.2.8.2 will have the latest forge
L846[22:46:40] <Mimiru> If you want to test you can manually switch to that version
L847[22:47:28] <Mimiru> Also, change logs for the pack http://minecraft.pc-logix.com/pages/changelog?effipb=yes&oldvn=2.2.8.1&newvn=2.2.8.2
L848[22:54:33] ⇨ Joins: Lathanael|Away (~Lathanael@p549609CA.dip0.t-ipconnect.de)
L849[23:12:37] ⇦ Quits: Johannes13 (~Johannes1@141.70.98.128) (Read error: Connection reset by peer)
L850[23:12:53] ⇦ Quits: Wug (~Wug@wuggl.es) (Ping timeout: 198 seconds)
L851[23:14:40] ⇨ Joins: Skwid (Ajloveslil@welcome.to.pandoras.box.panicbnc.eu)
L852[23:15:08] ⇦ Quits: Reika (~Reika@reika.kalseki.mods.abrarsyed.com) (*.net *.split)
L853[23:15:08] ⇦ Quits: Ajloveslily (Ajloveslil@welcome.to.pandoras.box.panicbnc.eu) (*.net *.split)
L854[23:15:08] ⇦ Quits: Kamran (Kamran@Youre.All.Mad.PanicBNC.ca) (*.net *.split)
L855[23:15:08] ⇦ Quits: Lumien (Elite13049@ipv6.6.sigma.elitebnc.org) (*.net *.split)
L856[23:15:08] ⇦ Quits: Lymia (~lymia@magical.girl.lyrical.lymia.moe) (*.net *.split)
L857[23:15:13] <^v4> Oh noes! chaos split 3:
L858[23:15:13] <^v> Oh noes! chaos split 3:
L859[23:15:20] ⇨ Joins: Lumien- (Elite13049@ipv6.6.sigma.elitebnc.org)
L860[23:16:26] *** Skwid is now known as Ajloveslily
L861[23:17:22] ⇨ Joins: Kamran (Kamran@Youre.All.Mad.PanicBNC.ca)
L862[23:19:53] ⇨ Joins: Wug (~Wug@wuggl.es)
L863[23:34:49] ⇨ Joins: Reika (~Reika@reika.kalseki.mods.abrarsyed.com)
L864[23:34:49] ⇨ Joins: Lymia (~lymia@magical.girl.lyrical.lymia.moe)
L865[23:35:09] ⇦ Quits: Doty1154 (~Doty1154@2601:648:8000:134f:69bf:4fc8:ec9a:4ce8) (Read error: Connection reset by peer)
L866[23:46:42] ⇦ Quits: Yepoleb (~yepoleb@178-191-131-154.adsl.highway.telekom.at) (Quit: Yepoleb)
L867[23:59:55] ⇦ Quits: Corded (discord@2607:5300:60:51da::c0f:fee) (Remote host closed the connection)
<<Prev Next>> Scroll to Top