<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:04:36] *** Riking|away is now known as Riking
L2[00:06:18] ⇦ Quits: MrRatermat (~ratermat@host81-158-132-107.range81-158.btcentralplus.com) (Ping timeout: 378 seconds)
L3[00:07:24] <Soni> why are computers fit for minecraft but not player-bound "survival" command blocks?
L4[00:11:16] *** Timmy94 is now known as Timmy94|SleepingMan
L5[00:13:02] ⇨ Joins: TabletCube (~TCube@95f1fee7.skybroadband.com)
L6[00:18:29] <Temia> Hmm.
L7[00:19:45] ⇦ Quits: marcin212_ (~marcin212@176.111.135.116) (Quit: Leaving)
L8[00:19:58] ⇨ Joins: marcin212_ (~marcin212@176.111.135.116)
L9[00:29:04] <heatseeker0> Am I correct drones aren't able to place or break blocks?
L10[00:29:46] <Temia> And I'm curious -- are there offscreen framebuffer objects that can be used for caching drawing data? :o
L11[00:30:25] <Temia> Wait, I guess that'd require being able to specify the framebuffer in question for the GPU API... .-.
L12[00:31:26] <Shuudoushi> heatseeker0: they cannot
L13[00:31:56] <heatseeker0> :(
L14[00:32:04] <Shuudoushi> robots can though!
L15[00:32:12] <Temia> Or is there a way to actually set up an overdraw buffer for GPUs?
L16[00:32:13] <heatseeker0> So apart from minor automations possibly with redstone they aren't more than a nifty flying thing
L17[00:32:25] <ShadowKatStudios> Shuudoushi: What's wrong with me writing a BIOS? D:
L18[00:32:36] <heatseeker0> I know robots fairly well, was hoping to get something done with drones since heard they move much faster
L19[00:32:48] <heatseeker0> Which is true I suppose, but they do little other than move :)
L20[00:32:49] <Shuudoushi> SKS, nothing really lol, I just wanted to bust your balls a bit XD
L21[00:33:21] <Shuudoushi> heatseeker0: iirc, they can interact with blocks, while robots can't
L22[00:33:36] <heatseeker0> interact how?
L23[00:33:53] <Shuudoushi> Temia: it should be possible to make a buffer yes
L24[00:34:07] <Temia> Ah, alright.
L25[00:34:14] <Shuudoushi> heatseeker0: that I'm not sure on, it's been awhile sence I watched to video on them
L26[00:34:15] <heatseeker0> it's own api is mainly changing color, moving and setting the acceleration
L27[00:34:33] <heatseeker0> oh and writing text on it's small display
L28[00:34:56] <Shuudoushi> it can also wrangle stuff for you!
L29[00:35:06] <heatseeker0> yes with the leash upgrade
L30[00:35:14] <Shuudoushi> you can make one that goes and finds villagers and brings them back toa pin :P
L31[00:35:14] <Temia> Mostly wondering because the idea I have involves using half-blocks to create graphics with double the vertical resolution, and if there was a way to copy that all at once it wouldn't take forever to draw with all the background/foreground colour changes per character
L32[00:35:16] <heatseeker0> i wanted them to place some markers for me
L33[00:35:27] <ShadowKatStudios> Drones can't break/place blocks
L34[00:35:30] <ShadowKatStudios> Robots can.
L35[00:35:41] <heatseeker0> yea, guess i'll have to level up a robot then
L36[00:36:05] <heatseeker0> i have a little program i wrote for robots to place ender quarry markers for me in a pattern i specify
L37[00:36:15] <heatseeker0> but since they have to travel a few thousand blocks, it's slow
L38[00:36:16] <Shuudoushi> Temia: I guess you can use gpu.pull to get the information off the screen then write it to a file?
L39[00:36:22] <heatseeker0> was hoping to speed it up with drones
L40[00:36:36] <heatseeker0> umm... can drones deploy robots from their internal inventory? :)
L41[00:36:50] <Shuudoushi> that's a good question
L42[00:36:54] <Shuudoushi> go try it rq
L43[00:37:17] <Temia> Pull? Is that a recent method? I don't see it in the wiki
L44[00:37:27] <Shuudoushi> I think that's it...
L45[00:37:29] <Shuudoushi> one sec
L46[00:38:02] <Shuudoushi> ah, copy
L47[00:38:12] <Shuudoushi> I knew it was something like that lol
L48[00:38:37] <Temia> But that only copies on a single screen -- there's no way to define source or target buffers AFAICT
L49[00:38:54] <Temia> Unless that's been added in a recent update .-.
L50[00:40:33] <Shuudoushi> this is the closest I could find to what I think your talking about
L51[00:40:46] <Shuudoushi> http://ocdoc.cil.li/component:gpu get(x, y)
L52[00:41:20] <Temia> Yeah. Sadly, single character. x.x
L53[00:41:59] <Shuudoushi> for i=1,10 do i,v ipairs() end
L54[00:42:07] <Shuudoushi> or soemthing like that
L55[00:42:38] <Shuudoushi> just use to catch each char and save it someplace somehow, and maybe it would act the way you want?
L56[00:43:04] <Temia> Rather the reverse -- I want to quickly render half-block pixel art onscreen
L57[00:43:24] <Shuudoushi> fill(x, y)?
L58[00:43:31] <Shuudoushi> well
L59[00:43:45] <Shuudoushi> fill(x, y, w, h char))
L60[00:43:48] <Temia> That doesn't do anything about the foreground/background colours which are the key part :P
L61[00:44:10] <Shuudoushi> unicode may help?
L62[00:44:43] <Shuudoushi> unicode.cahr(219) should do
L63[00:45:00] <Temia> That's not the problem .-. I was already going to use the half-block character
L64[00:45:01] <Shuudoushi> then just set the forground color through the normal means?
L65[00:45:29] <Temia> It's just that even with the build 313 update, it'd take a significant amount of time to draw an image onscreen if I had to change the foreground/background colours constantly
L66[00:45:47] <Shuudoushi> ture
L67[00:45:51] <Shuudoushi> true*
L68[00:45:56] <Shuudoushi> hmmm
L69[00:46:07] <Temia> I'm not even sure if the copy() method copies colour attributes as well, I'm just assuming x.x
L70[00:47:10] <Shuudoushi> I know get does...
L71[00:47:12] <Temia> If there was a way to specifically alter the colours of a given character onscreen without making three calls that'd be at least a little better, but...
L72[00:47:20] <Shuudoushi> but copy I'm unsure of as well...
L73[00:48:42] <Shuudoushi> I've never really used gpu calls much, so I'm mostly just throwing ideasout atm...
L74[00:50:52] <Temia> mrf. .-. I might have to write a few new methods and submit a PR if I want to get anywhere with this...
L75[00:51:10] <Shuudoushi> maybe...
L76[00:51:20] *** alekso56 is now known as alekso56_off
L77[00:52:05] <Shuudoushi> ... should I include a built-in updater for this program...
L78[00:52:20] ⇦ Quits: TabletCube (~TCube@95f1fee7.skybroadband.com) (Remote host closed the connection)
L79[00:53:19] <Shuudoushi> wget seems to like raw downloads like this https://raw.githubusercontent.com/Shuudoushi/Misc-Programs/master/BR_Reactor.lua
L80[00:54:51] <Shuudoushi> what are the args for wget again...
L81[00:55:30] <Caitlyn> wget http://url.com/file localname
L82[00:55:30] <Caitlyn> ?
L83[00:56:22] <Shuudoushi> err, modifiers?
L84[00:56:30] <Shuudoushi> like -f and ect
L85[00:57:47] <Shuudoushi> I have the feeling I'm using this wrong... is it wrong? shell.execute("wget, -fq, https://raw.githubusercontent.com/Shuudoushi/Misc-Programs/master/BR_Reactor.lua, reactor.lua")
L86[00:58:05] <ShadowKatStudios> kill the commas
L87[00:58:20] <ShadowKatStudios> fire is optional
L88[00:58:35] <Shuudoushi> lol, I know, but fuck it
L89[00:58:42] <Shuudoushi> same with -q and -Q
L90[00:59:21] <Shuudoushi> I'll just do the updater as ultra simple >.>
L91[01:00:02] <Caitlyn> https://github.com/OpenPrograms/Kenny-Programs/blob/master/LC_Control/stargate.lua#L51-L54
L92[01:00:05] <Caitlyn> is how I did it
L93[01:00:53] <Shuudoushi> hmmm
L94[01:01:43] <Shuudoushi> well, this is manual update, but if I do auto-update checks later, I may steal that from you lol
L95[01:01:44] *** Pwootage|Off is now known as Pwootage
L96[01:02:28] <Shuudoushi> let me rephrase that, I'm just doing a simple manual update system, no update checks
L97[01:02:32] <Caitlyn> Spoiler that goes to line friggen 142
L98[01:03:08] <Pwootage> I probably should write a tutorial and post about pacyak somewhere, so that people might actually use it
L99[01:03:49] <Soni> I have a theory
L100[01:03:54] <Soni> forgecraft uses VPN
L101[01:04:10] <Shuudoushi> I should maybe do an external config so when it updates, it hangs onto anything the user set...
L102[01:10:55] <ShadowKatStudios> Soni: I have a theory
L103[01:10:59] <ShadowKatStudios> but yours may be correct
L104[01:18:26] ⇦ Quits: Timmy94|SleepingMan (webchat@95.91.62.70) (Ping timeout: 186 seconds)
L105[01:22:33] ⇦ Quits: marcin212_ (~marcin212@176.111.135.116) (Quit: Leaving)
L106[01:22:56] ⇨ Joins: marcin212 (~marcin212@176.111.135.116)
L107[01:27:01] *** Uni is now known as Inari
L108[01:27:19] * Shuudoushi licks Inari.
L109[01:27:21] <Shuudoushi> hi lol
L110[01:27:39] * Inari knifes Shuudoushi's tongue
L111[01:27:40] <Shuudoushi> and that's my act of creepiness out of the way for the day lol
L112[01:27:44] <Shuudoushi> LMFAO
L113[01:32:30] <Shuudoushi> anyone want to try their hand at breaking this for me? https://github.com/Shuudoushi/Misc-Programs/blob/master/BR_Reactor.lua
L114[01:34:48] <Shuudoushi> I just realized that I have sub uis inside of uis...
L115[01:37:41] <Shuudoushi> if you're afraid of snakes, you may not want to click this http://puu.sh/f26DJ/f72ba74673.png
L116[01:38:59] <Inari> "breaking"?
L117[01:39:16] ⇦ Quits: marcin212 (~marcin212@176.111.135.116) (Quit: Leaving)
L118[01:39:26] <Temia> Snakes? :O
L119[01:39:28] * Temia click
L120[01:39:30] <Shuudoushi> find bugs and ect
L121[01:39:35] <Temia> Oh my god snaaaakes <3 so cute
L122[01:39:55] <Shuudoushi> their crawling all over everything I have to click on...
L123[01:40:03] <ShadowKatStudios> Those aren't the Mo Creatures ones, are they?
L124[01:40:08] <Temia> That's even more adorable!
L125[01:40:43] <Kodos> Which mod are those solars from
L126[01:45:09] * Kodos slaps Shuudoushi
L127[01:45:09] * EnderBot2 laughs
L128[01:45:18] <Shuudoushi> Kodos: ?
L129[01:45:34] <Shuudoushi> mekanisim iirc
L130[01:45:37] <Kodos> Ah
L131[01:45:49] <Kodos> Does Meka still murder TPS over long periods of time?
L132[01:45:52] <Shuudoushi> mekanism*
L133[01:46:00] <Shuudoushi> doesn't seem it
L134[01:46:53] <Kodos> k
L135[01:46:59] <Kodos> Now to figure out why I'd need Meka over what I already have
L136[01:47:18] <Shuudoushi> factories
L137[01:47:35] <Shuudoushi> ore proc + 9000 lol
L138[01:47:42] <Kodos> I use Big Factories as it is
L139[01:47:47] <Kodos> Ore tripling without too much nonsense
L140[01:47:55] <Kodos> And multiblocks
L141[01:47:57] <Kodos> as opposed to magic blocks
L142[01:48:15] <Kodos> Plus a use for Cactus
L143[01:48:19] <Shuudoushi> meka also has ore x5ing :D
L144[01:48:24] <Shuudoushi> LMFAO
L145[01:48:31] <Kodos> Yeah, have you seen the process needed for 5x?
L146[01:48:35] <Kodos> I'll pass
L147[01:48:36] <Shuudoushi> oh, and cheaper IC2 stuff
L148[01:48:42] <Kodos> Lolic2
L149[01:48:47] <Shuudoushi> XD
L150[01:48:52] <Kodos> Only thing that's good from IC2 is UUM, and I can get that with MineChem
L151[01:54:29] ⇨ Joins: Karasuro (webchat@24-159-78-95.static.jcsn.tn.charter.com)
L152[01:55:30] <Kodos> Is there a way to add a custom error when using ctrl+alt+c to break out of a program
L153[01:58:32] <Shuudoushi> yes :D
L154[01:59:18] <Shuudoushi> wait, like program crash error, or just a simple in program error?
L155[01:59:52] <ShadowKatStudios> For when you terminate a program
L156[02:00:06] <ShadowKatStudios> Kodos: Make a listener that outputs an error and unregisters itself
L157[02:00:26] <Shuudoushi> local function check() -- Prevents "ctrl+alt+c".
L158[02:00:26] <Shuudoushi> if keyboard.isControlDown() and keyboard.isAltDown() then
L159[02:00:26] <Shuudoushi> computer.shutdown(true)
L160[02:00:26] <Shuudoushi> end
L161[02:00:26] <Shuudoushi> end
L162[02:00:27] <Shuudoushi> event.listen("key_down", check)
L163[02:00:30] <Shuudoushi> + a print?
L164[02:00:50] <Kodos> here, hang on
L165[02:00:52] <Shuudoushi> jacked that from one of my programs btw lol
L166[02:00:52] <ShadowKatStudios> + a print and no reboot
L167[02:01:01] <Shuudoushi> ^
L168[02:01:06] <ShadowKatStudios> + making sure it's a C
L169[02:01:14] <Kodos> http://puu.sh/f29JB/46c2f68a09.jpg
L170[02:01:25] <Kodos> I want something custom instead of the wall of redtext
L171[02:01:37] <Shuudoushi> ah!
L172[02:01:51] <Shuudoushi> there is, kinda
L173[02:02:11] <Shuudoushi> edit event.lua and change the message
L174[02:02:42] <Kodos> I don't want to edit any files, just something I can put in my code
L175[02:03:02] <Shuudoushi> well... then your sol afaik
L176[02:03:07] <Kodos> Lol
L177[02:03:10] <Kodos> I'm also soi, back in a bit
L178[02:04:14] <Temia> Huh, is there no way to handle exceptions?
L179[02:05:26] <Shuudoushi> brb
L180[02:15:17] <Kodos> Back
L181[02:15:25] <Shuudoushi> wb
L182[02:15:27] <Kodos> ty
L183[02:15:33] <Shuudoushi> what kind of loop are ou using?
L184[02:15:41] <Shuudoushi> you*
L185[02:15:55] <Shuudoushi> just a while true?
L186[02:15:57] <Kodos> it's just a while loop, but I added in a 0 second sleep so I could terminate
L187[02:16:06] <Shuudoushi> kk
L188[02:16:11] <Shuudoushi> give me a min
L189[02:20:00] <Caitlyn> http://puu.sh/f2bZH/5730744f0d.jpg far right is my tablet ^_^
L190[02:21:48] <ShadowKatStudios> 1024x768?
L191[02:22:10] <Caitlyn> 1289x720
L192[02:22:12] <Caitlyn> err
L193[02:22:14] <Caitlyn> 1280*
L194[02:22:19] <Shuudoushi> Kodos: http://puu.sh/f2cw5/8138d0d3c6.txt
L195[02:22:28] <ShadowKatStudios> huh
L196[02:22:40] <Temia> That's some animoo. o3o
L197[02:22:56] <Shuudoushi> lol
L198[02:23:06] <Caitlyn> 1920x1080, 1680x1050, 1440x900, 1280x720
L199[02:23:18] <Caitlyn> 42" 22" 19" 7"
L200[02:23:41] * Temia contemplates doing a composite of her systems, but she can't be arsed
L201[02:24:10] <Shuudoushi> Kodos: last one had a typo, use this one http://puu.sh/f2cIF/f514ec6a9f.txt
L202[02:24:20] <Caitlyn> Also every 10 minutes I get random "Anime Girl" wallpapers! http://puu.sh/f2cK7/b41bc6184f.jpg
L203[02:24:30] <Temia> Plus I haven't really done any desktop customisation lately .-.
L204[02:24:36] <Shuudoushi> you sick fuck...
L205[02:24:37] <Shuudoushi> lol
L206[02:24:56] <Temia> Caitlyn: Set me up with a selection of random catboys and I'll look the other way for yours
L207[02:25:00] <ShadowKatStudios> Whatever floats your goat I guess
L208[02:25:08] * ShadowKatStudios hides his anime folder
L209[02:25:18] <Caitlyn> Temia, this is Display Fusion doing google image searches for "Anime Girls" with safe search off
L210[02:25:22] <Temia> Ah.
L211[02:25:25] <Temia> ...
L212[02:25:25] * Kodos hides his hentai folder
L213[02:25:32] <Temia> Yeah, I think I'll just stick to local content
L214[02:25:41] <Caitlyn> Funny enough... I've not had any *really* NSFW images
L215[02:25:50] <Shuudoushi> Kodos: that work for you?
L216[02:25:56] <Kodos> Will try it in a bit
L217[02:26:00] <Shuudoushi> kk
L218[02:26:19] <Shuudoushi> it /SHOULD/ work
L219[02:26:33] <ShadowKatStudios> So I have a cat laying on my chest
L220[02:26:33] <Temia> But seriously, I kind of have stringent wallpaper needs .-.;
L221[02:26:41] <Shuudoushi> it should be faster than the native ctrl+alt+c
L222[02:26:56] <Temia> For my college laptop, something pretty but won't get even the most inquisitive people asking questions
L223[02:27:09] <Temia> For my desktop, 3360x1050
L224[02:27:23] <Kodos> I enjoy Rainmeter personally, but it eats CPU sometimes
L225[02:27:25] <ShadowKatStudios> heh, worried about what people think?
L226[02:27:39] <Temia> And for my gaming laptop, something relevant to the games I play, which proves problematic since I'm kind of an edge case on the demographics for 90% of them. .-.;
L227[02:27:44] <Shuudoushi> people think things of other people o.O
L228[02:27:50] <ShadowKatStudios> I showed my wallpaper on my school laptop to one of my friends
L229[02:27:56] <Temia> I don't want to be bothered by anyone, simply
L230[02:28:01] <Temia> I am not a very social person.
L231[02:28:03] <ShadowKatStudios> He said "She wears too many clothes"
L232[02:28:10] <Shuudoushi> LMFAO
L233[02:28:22] <Temia> My current wallpapers aren't even of people.
L234[02:28:42] <Temia> Well, except one of the ones in my desktop rotation but that's a shot of a spacewalk on the ISS -- it could be anyone in that suit
L235[02:28:56] <Shuudoushi> my wallpaper right now is me bbqing a riekling >.>
L236[02:29:30] <Shuudoushi> http://puu.sh/f2ds9/b909e1d798.png
L237[02:29:58] <ShadowKatStudios> My wallpapers at the moment: laptop: custom Tsugumi wallpaprt, desktop: Windows: Madobe Yui, Linux: Nagato Yuki
L238[02:30:21] <ShadowKatStudios> Tablet: Isako
L239[02:30:25] <Temia> Eh, fuck it, lemme fire up the screengrabber
L240[02:30:34] <Shuudoushi> lol
L241[02:31:01] <Shuudoushi> my 2nd monitor is full of too much shit to see the wallpaper >.>
L242[02:31:33] *** Azazel is now known as Hitler_x_Mami
L243[02:31:39] ⇦ Quits: GreaseMonkey (greaser@segfault.net.nz) (Ping timeout: 200 seconds)
L244[02:31:46] *** Hitler_x_Mami is now known as Azazel
L245[02:31:56] <Shuudoushi> http://puu.sh/f2dLB/ea3580e8fb.png
L246[02:32:20] <ShadowKatStudios> notable lack of an ssh session
L247[02:32:23] <Shuudoushi> I still haven't figured out how to change the sity for the weather meter...
L248[02:33:02] <Shuudoushi> it auto set while I was still on my VPN and I haven't be able to change it since x.x
L249[02:33:08] <Temia> Uploading
L250[02:33:14] <Shuudoushi> that's on the other monitor
L251[02:33:21] ⇨ Joins: GreaseMonkey (greaser@segfault.net.nz)
L252[02:33:39] <Shuudoushi> SKS^
L253[02:34:00] <ShadowKatStudios> -*
L254[02:34:04] <ShadowKatStudios> wtf
L255[02:34:09] <Shuudoushi> lol
L256[02:34:10] <Temia> http://www.cleverpun.com/random/priv/CLaptop.png
L257[02:34:17] <ShadowKatStudios> f4c25n n4036c2
L258[02:35:21] <Shuudoushi> Temia: why you have no RAM?
L259[02:35:52] <Temia> 2006-era compact form-factor laptop.
L260[02:36:03] <Shuudoushi> ah
L261[02:36:04] <Temia> Takes only one stick of DDR2.
L262[02:36:16] <Shuudoushi> the ones where the RAM is soldered to the fucking board huh
L263[02:36:21] <Pwootage> 32 bit, probably
L264[02:36:29] <Temia> Oh, no, this is switchable
L265[02:36:34] <Temia> It's just at its maximum capacity
L266[02:36:39] <Shuudoushi> LMFAO
L267[02:36:42] <ShadowKatStudios> http://shadowkat.tk/image/tsugumi.shadowkat.tk-blue-v4.png laptop
L268[02:36:51] <Temia> And yeah, this laptop is 32-bit, hence the i686 kernel
L269[02:37:13] <ShadowKatStudios> ohyay another xfce4 user
L270[02:37:31] <ShadowKatStudios> How old is a laptop to still be 32-bit?
L271[02:38:21] <Temia> Like I said, it's 2006-era, it was just of limited capability to begin with so they didn't spring for proper x86-64 platform support.
L272[02:38:22] <Shuudoushi> circa 2006
L273[02:38:49] <Temia> It's got an ATA-ZIF interface for its drive and an Intel Core Duo. Just... Core. That should tell you a bit about it.
L274[02:39:08] <Karasuro> <- is running 32-bit Windows on 64-bit pc
L275[02:39:11] <ShadowKatStudios> Ohyeah, you told me about the SSD
L276[02:39:18] <Temia> But it's as cheap as free and is pretty solid as it's a business model so I'm not complaining
L277[02:39:21] ⇦ Quits: GreaseMonkey (greaser@segfault.net.nz) (Ping timeout: 200 seconds)
L278[02:39:30] <Temia> Well, except the SSD, but yeah
L279[02:39:54] <ShadowKatStudios> You can get 16GB ATA flash modules
L280[02:39:58] <ShadowKatStudios> which is cool
L281[02:39:59] <Temia> It'd be as cheap as free if I didn't have any standards to uphold myself to
L282[02:40:03] <Temia> Oh, I know.
L283[02:40:09] <Temia> I got a 32GB one, actually :P
L284[02:40:13] <ShadowKatStudios> I'm considering getting one for my server after a case
L285[02:40:20] <Temia> No TRIM, but it's smart enough to do its own wear-leveling at least
L286[02:40:24] ⇨ Joins: GreaseMonkey (greaser@segfault.net.nz)
L287[02:40:33] <ShadowKatStudios> (new case, flex-ATX motherboard and mid-tower case)
L288[02:40:38] <Pwootage> I love SSDs
L289[02:40:59] <Temia> They're nice, even if I have to rely on budget or secondhand hardware to enjoy the experience
L290[02:42:07] <ShadowKatStudios> Which brand of flash module do you have?
L291[02:42:52] ⇨ Joins: Satori (webchat@5.100.120.185)
L292[02:43:27] <Temia> For the laptop, Kingspec. Only one I could find for this interface, but I know a guy who knows a guy named Anand, and he vouched for it -- middling performance but still trustworthy
L293[02:44:49] <Temia> Desktop is using a Kingston HyperX 120GB model, one of two that my dad gave me a year or so back after he replaced them with 240GB models in his own machine
L294[02:45:21] <Temia> The other is currently not in use as it was planned to be my windows partition, but then my dad sent me a gaming laptop with a pair of Samsung EVO 500GB SSDs in RAID 0 so I'm kinda at a loss.
L295[02:45:25] <Temia> >_>;;;
L296[02:45:51] <Satori> Is there any server with OpenComputers, where it's easy to get first pc and provide needed energy?
L297[02:46:47] <LordFokas> RAID-0 with SSDs, like you needed them to be any faster.
L298[02:47:03] <ShadowKatStudios> LordFokas: Give it 10 years
L299[02:47:39] * Caitlyn stabs ISP
L300[02:47:48] <ShadowKatStudios> I, personally, am waiting until the day that RAM density is high enough for RAM drives to be reasonably prices
L301[02:47:56] <ShadowKatStudios> s/es/ed
L302[02:47:56] <Kibibyte> <ShadowKatStudios> I, personally, am waiting until the day that RAM density is high enough for RAM drived to be reasonably prices
L303[02:48:09] <ShadowKatStudios> ._.
L304[02:48:15] <LordFokas> SKS, yeah, but still! At this point the bottleneck is probably everywhere except in the disk speed.
L305[02:48:29] <ShadowKatStudios> Indeed.
L306[02:48:32] <LordFokas> like the bus speeds on the motherboard
L307[02:48:54] <Temia> Fokas: I know, it's positively insane
L308[02:49:13] <Temia> It's insane that my dad even went and bought me a gaming laptop, much less one with further customisations like that. @_@
L309[02:49:22] <Temia> Then again he seems to have a fetish for RAIDing SSDs so I dunno
L310[02:49:35] <Kodos> ~w loadfile
L311[02:49:35] <ocdoc> http://www.lua.org/manual/5.2/manual.html#pdf-loadfile
L312[02:49:37] <LordFokas> what does it matter if you can get your SSDs to read at 12Gbps and respond in <1ms if the board can't drain all that?
L313[02:49:55] <Temia> Seriously
L314[02:52:52] <Caitlyn> http://www.speedtest.net/result/4089468031.png
L315[02:52:53] <Caitlyn> yay
L316[02:53:14] <ShadowKatStudios> um
L317[02:53:25] <ShadowKatStudios> your download is worse than your upload?
L318[02:53:31] <ShadowKatStudios> can I have your internet?
L319[02:53:50] <Caitlyn> you want my .67 down?
L320[02:54:16] ⇦ Quits: _Ivoah (~Ivoah@dsl-216-227-122-44.taconic.net) (Read error: Connection reset by peer)
L321[02:54:35] <ShadowKatStudios> I want that ratio.
L322[02:54:44] <ShadowKatStudios> I want to keep my down
L323[02:54:48] <Caitlyn> lol it's usually 20/3
L324[02:54:55] <ShadowKatStudios> fuck <1Mbps down
L325[02:55:01] <Caitlyn> it's just been in the crapper for 2+ days
L326[02:55:06] <ShadowKatStudios> also fuck <1Mbps up
L327[02:55:42] <Temia> :<
L328[02:55:54] * Temia has 1mbit down and a 1:4 ratio on her upstream.
L329[02:58:33] ⇨ Joins: Ivoah (~Ivoah@dsl-216-227-122-44.taconic.net)
L330[03:03:35] ⇦ Quits: Karasuro (webchat@24-159-78-95.static.jcsn.tn.charter.com) (Quit: Web client closed)
L331[03:06:29] *** ds84182 is now known as dsAway
L332[03:09:52] ⇦ Quits: Alissa (~alissa@vps.alissa.ml) (Quit: WeeChat 1.2-dev)
L333[03:10:04] ⇨ Joins: Alissa (PotaDOSv3@vps.alissa.ml)
L334[03:15:58] <Caitlyn> neat.... HexChat is readable at 7"
L335[03:16:00] ⇦ Quits: Alissa (PotaDOSv3@vps.alissa.ml) (Quit: WeeChat 1.2-dev)
L336[03:16:08] <Ivoah> Minecraft crashes whenever I try to open the search tab in the creative inventory, here's the crash report: http://pastebin.com/s5bWDGZx
L337[03:16:11] ⇨ Joins: Alissa (PotaDOSv3@vps.alissa.ml)
L338[03:17:56] <Kodos> Update your Forge
L339[03:18:04] <Ivoah> Okay
L340[03:20:55] <Ivoah> I updated forge and it still crashes :(
L341[03:21:03] <Shuudoushi> btw, not the best place to post crash reports...
L342[03:21:13] <Ivoah> Shuudoushi: Where should I?
L343[03:21:29] <Shuudoushi> upload the latest report and I'll take a look though...
L344[03:21:59] <Shuudoushi> to the offending mods bug report section
L345[03:22:02] <Shuudoushi> or if your brave
L346[03:22:16] <Caitlyn> Shuudoushi, it refrences OC in the error, so this is a decent best guess :P
L347[03:22:25] <Shuudoushi> fair enough
L348[03:22:51] <Ivoah> I'm fairly certain that OC is causing the crash, MC worked fine before, and the crash says that it is because of OC
L349[03:22:52] <Ivoah> http://pastebin.com/7VSqHsaW
L350[03:22:57] <Shuudoushi> but if your brave, you could also try the chan for forge
L351[03:23:04] <Caitlyn> hahaha
L352[03:23:07] <Caitlyn> hahahaaaahahahahah
L353[03:23:09] <Caitlyn> HAHAHAHAHAHA
L354[03:23:09] <ShadowKatStudios> I feel rich, $2 million
L355[03:23:18] * Caitlyn falls out of her chair
L356[03:23:35] <ShadowKatStudios> Nice impersonation of Lex, Caitlyn, needs a little more "insane" though
L357[03:23:44] <Caitlyn> lmfao
L358[03:23:59] <Shuudoushi> lmfao
L359[03:24:13] <Shuudoushi> Ivoah: and when did you say the crash took place?
L360[03:24:31] <Ivoah> When opening up the search tab in the creative inventory
L361[03:24:37] <Ivoah> It works fine in windows
L362[03:24:38] <Caitlyn> use the scroll bar luke
L363[03:24:39] <Shuudoushi> opening your inv, or typing something into the search box?
L364[03:24:52] <Ivoah> Selecting the search tab
L365[03:24:56] <Shuudoushi> hmmm
L366[03:24:56] <Caitlyn> OH EM EFF GEE
L367[03:24:57] <Caitlyn> I'
L368[03:25:01] <Caitlyn> I'm going to stab my ISP
L369[03:25:06] <Shuudoushi> XD
L370[03:25:11] <Ivoah> So I can open the inv just fine, but once I click the search tab *poof* bye bye MC
L371[03:25:19] <Shuudoushi> hmmm
L372[03:26:02] <Shuudoushi> update java...
L373[03:26:20] <Ivoah> I have 1.8 already
L374[03:26:28] <Shuudoushi> 1.6.0_65 was a LONG time ago...
L375[03:26:38] <Shuudoushi> then you forgot to remove 1.6...
L376[03:26:46] <Shuudoushi> b/c that's what MC is wanting to use
L377[03:26:48] <Ivoah> Oh, that's Apple's java
L378[03:27:02] <Shuudoushi> yeah... tell MC to not use that one
L379[03:27:32] <Ivoah> Great, thanks Shuudoushi
L380[03:27:53] <Shuudoushi> that couldn't be the only issue o.O
L381[03:29:10] <Shuudoushi> wtf java...
L382[03:30:08] <Shuudoushi> Ivoah: did that really fix it...
L383[03:30:25] <Ivoah> I'm trying to get MC to use 1.8 now...
L384[03:30:30] <Shuudoushi> ah
L385[03:30:35] <Shuudoushi> I was about to say lol
L386[03:31:00] <Shuudoushi> changing javas ver should fix a few other issues you may run into, but I don't think it will fix everything
L387[03:31:52] <Shuudoushi> Ivoah: btw, disabling or removing Java 1.6 should force MC to use 1.8
L388[03:32:10] <Ivoah> The launcher requires 1.6 for some stupid reason
L389[03:32:22] <Ivoah> but I can get the game to use 1.8
L390[03:32:23] <Shuudoushi> which launcher are you using?
L391[03:32:39] <Ivoah> The default one
L392[03:32:44] <Shuudoushi> oh...
L393[03:32:49] <Shuudoushi> yeah...
L394[03:33:09] <Shuudoushi> that will require a little hackery to get it to use 1.8 or 1.7...
L395[03:33:40] <Shuudoushi> just force javas path to be that of 1.8, should get everything playing nice
L396[03:34:00] <Caitlyn> %p
L397[03:34:03] <MichiBot> Ping reply from Caitlyn 2.91s
L398[03:34:04] <MichiBot1> Ping reply from Caitlyn 3.52s
L399[03:34:07] <Caitlyn> wtf
L400[03:34:11] <Shuudoushi> if i remembered what apples file pathing was like for java, I could just give you a console command to use...
L401[03:34:13] <Caitlyn> %part
L402[03:34:13] ⇦ Parts: MichiBot (~lb@eos.pc-logix.com) (Commanded to part by Caitlyn))
L403[03:34:13] ⇦ Parts: MichiBot1 (~lb@eos.pc-logix.com) (Commanded to part by Caitlyn))
L404[03:34:15] *** Techokami is now known as Techokami|Off
L405[03:34:23] <Ivoah> Just made MC use 1.8, let's see if it works
L406[03:34:28] <Caitlyn> http://puu.sh/f2lQ7/42f1b37c3e.jpg
L407[03:34:39] <Ivoah> Shuudoushi: I've got that part
L408[03:34:40] <Shuudoushi> Caitlyn: that was interesting...
L409[03:34:52] <Caitlyn> 0.08 has been my high point
L410[03:34:57] <Shuudoushi> oh wow...
L411[03:35:05] <Caitlyn> OH WAIT
L412[03:35:05] <Shuudoushi> dude...
L413[03:35:07] <Caitlyn> GUIZ!
L414[03:35:10] <Caitlyn> 0.09!
L415[03:35:11] <Ivoah> Yay! That fixed it!
L416[03:35:12] <Shuudoushi> go shoot your ISP in the face...
L417[03:35:20] <Ivoah> Shuudoushi: Thanks a bunch!
L418[03:35:33] <Shuudoushi> Ivoah: OC must have been trying to call on something that 1.6 didn't have
L419[03:35:39] *** AngieBLD is now known as AngieBLD|Off
L420[03:36:48] <Shuudoushi> and np yo
L421[03:37:49] <Ivoah> What does "Architecture Lua" mean for the cpu? Can it support other languages?
L422[03:38:05] <ShadowKatStudios> If a mod impliments them
L423[03:38:08] <Caitlyn> Yep
L424[03:38:17] <Ivoah> are there any mods for python?
L425[03:38:20] <Pwootage> One of my favorite parts of OC
L426[03:38:35] <Pwootage> afaik there arn't any actually completed archetectures besides lua atm
L427[03:38:42] <Shuudoushi> Caitlyn: get to work on adding python support to OC!!!
L428[03:38:47] <Caitlyn> No
L429[03:38:54] <Shuudoushi> YES!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
L430[03:39:03] <Caitlyn> no
L431[03:39:07] * ShadowKatStudios wants lisp
L432[03:39:07] <Shuudoushi> T.T
L433[03:39:11] <Pwootage> Incoming ones I know of: arm, x86, 65020
L434[03:39:23] <Ivoah> Pwootage: Seriously?
L435[03:39:24] <Shuudoushi> lol
L436[03:39:29] <Caitlyn> Yes
L437[03:39:32] <Pwootage> Yes seriously
L438[03:39:37] <Shuudoushi> x86 is going to make OC explode XD
L439[03:39:39] <Caitlyn> http://www.speedtest.net/result/4089532470.png
L440[03:39:41] <Pwootage> well, 6502
L441[03:39:55] <Caitlyn> Shuudoushi, it's like 33 mhz or something :P
L442[03:40:04] <Pwootage> I can't remember who was working on x86... I'm really looking forward to arm, though
L443[03:40:05] <Ivoah> I was just saying that there should be a computer mod for minecraft that adds virtualized computers running linux
L444[03:40:11] ⇦ Quits: lperkins2 (~perkins@63.227.187.208) (Ping timeout: 189 seconds)
L445[03:40:12] <Shuudoushi> idk what OC cpus can handle XD
L446[03:40:32] <Shuudoushi> Ivoah: OC kinda is already that in a way lol
L447[03:40:43] <Pwootage> Oh, right, I actually wrote working openrisc arch ages ago, but I decided it kinda sucks and never implemented the MMU
L448[03:40:51] <Ivoah> Shuudoushi: But it's not linux
L449[03:41:05] <Shuudoushi> that's why i said kinda lol
L450[03:41:06] <Inari> just tell linus to code linux in lua now
L451[03:41:06] <Pwootage> linux will be able to run in the x86 one for sure, but it'll be slow :P
L452[03:41:20] <Ivoah> I want to be able to program in C++!
L453[03:41:29] <Ivoah> Pwootage: Linux runs on arm too
L454[03:41:32] <ShadowKatStudios> >want
L455[03:41:35] <ShadowKatStudios> >C++
L456[03:41:48] <ShadowKatStudios> Odd choice of words. Most people I know that know C++ hate C++
L457[03:41:51] <Pwootage> Yeah but the arm arch isn't implementing a standard MMU or terminal, so you'd have to patch the kernel
L458[03:42:04] <Pwootage> I don't *hate* c++... but it definately has some issues
L459[03:42:35] <Ivoah> Alright then java!
L460[03:42:47] <Ivoah> Java running in a computer running in a game made in java
L461[03:42:59] <Shuudoushi> lmao
L462[03:42:59] * ShadowKatStudios still wants lisp
L463[03:43:06] <Inari> www.d-e-f-i-n-i-t-e-l-y.com
L464[03:43:55] <Shuudoushi> Caitlyn: want to kill m yet? http://puu.sh/f2n6n/47a1a21da9.png
L465[03:44:04] <Shuudoushi> me*
L466[03:44:19] <Caitlyn> Shuudoushi, you see this @ by my name?
L467[03:44:22] ⇨ Joins: lperkins2 (~perkins@63.227.187.208)
L468[03:44:26] ⇦ Parts: lperkins2 (~perkins@63.227.187.208) ())
L469[03:44:27] <Shuudoushi> >.>
L470[03:44:35] <Shuudoushi> :P
L471[03:44:45] <Caitlyn> I've not yet had a chance to abuse my @
L472[03:44:48] <Shuudoushi> this can only end baddly >.>
L473[03:45:00] <Caitlyn> lol
L474[03:45:07] <Caitlyn> I'm not that much of a raging bitch.. :P
L475[03:45:13] <Shuudoushi> XD
L476[03:46:02] <Shuudoushi> hmmm
L477[03:46:18] <Shuudoushi> anyone bother making a github client in OC yet?
L478[03:46:41] <Pwootage> well
L479[03:46:56] <Pwootage> pacyak lets you install packages from raw.github (or any other webserver)
L480[03:47:27] <Shuudoushi> I can get raw.github stuff with wget though,,,
L481[03:47:39] <Ivoah> What's the difference between tier 1 and 2 screens?
L482[03:47:44] <Pwootage> yeah but it will pull down whatever files are defined in your package.json :P
L483[03:48:03] <Shuudoushi> color depth and t2+ can be used as touch screens Ivoah
L484[03:48:12] <Pwootage> alike so: https://github.com/Pwootage/pacyak/blob/master/package.json
L485[03:48:14] <Ivoah> I meant 2 and 3
L486[03:48:18] <Pwootage> resolution
L487[03:48:23] <Pwootage> and number of colors
L488[03:48:27] <Shuudoushi> ^
L489[03:48:35] <Caitlyn> ugh 3.5/2 is a shit ton better then 0.13/2
L490[03:48:44] <Shuudoushi> lol
L491[03:49:00] <Ivoah> I can't read the tier 3 screen with the minecraft window the default size
L492[03:49:06] <Shuudoushi> go get a gun, go to your ISPs ofice, and go all postal on their asses
L493[03:49:06] * gamax92 is transliteralation German
L494[03:49:28] <Kodos> Ivoah, have you tried maximizing the Minecraft window?
L495[03:49:30] <Shuudoushi> s/ofice/office
L496[03:49:31] <Kibibyte> <Shuudoushi> go get a gun, go to your ISPs office, and go all postal on their asses
L497[03:49:40] <gamax92> I have to go look at Forge namings anyway, all of this stuff is like "life energy" instead of "health", maybe thats a german thing but i dunno.
L498[03:50:02] <Caitlyn> I'm not sure if GUI Scale matters but I run "normal" and not ZOMFGHUGE and have no issue at 1920x1080 :P
L499[03:50:28] <Caitlyn> AUTO gui scale is effing evil
L500[03:50:33] <Shuudoushi> ^
L501[03:50:34] <gamax92> teah lol
L502[03:50:39] <Shuudoushi> agreed
L503[03:50:45] <bananagram> if x86 is being implemented, the JVM should be implemented too
L504[03:50:45] <Pwootage> I lose resolution on my macbook on t3 screens
L505[03:50:45] ⇨ Joins: IvoahMC (~ivoahmc@dsl-216-227-122-44.taconic.net)
L506[03:50:46] <Pwootage> interestingly
L507[03:50:54] ⇦ Quits: IvoahMC (~ivoahmc@dsl-216-227-122-44.taconic.net) (Client Quit)
L508[03:50:55] <Pwootage> problem: 4mb of ram
L509[03:50:55] <Shuudoushi> gamax92: talk to Inari on that one
L510[03:51:00] <Pwootage> barely enough to run linux :P
L511[03:51:11] <Shuudoushi> lmao
L512[03:51:13] <gamax92> uhh
L513[03:51:30] <Shuudoushi> Pwootage: that's why you make a cluster OS :D
L514[03:51:37] <gamax92> istFliegenMoeglich
L515[03:51:47] <gamax92> is like isFlyingPossible
L516[03:52:13] <Shuudoushi> idk, I can't read german to save my life
L517[03:52:23] <Shuudoushi> I can speak a bit of it, but that's it lol
L518[03:52:26] <gamax92> Shuudoushi: good to know if i ever need to threaten your life
L519[03:52:39] <Shuudoushi> google translate mofo
L520[03:54:39] <Shuudoushi> いけいけばか
L521[03:55:11] <Shuudoushi> now I get it to change fucking char set -_-
L522[03:55:41] <Shuudoushi> would appear I wiped out my keybinds at some point again...
L523[03:57:14] <Shuudoushi> and ofc I typo the piss out of it... oh well
L524[04:02:43] <Inari> Shuudoushi: why talk to me?
L525[04:02:58] <Shuudoushi> german
L526[04:03:26] <Inari> ?
L527[04:03:53] <Shuudoushi> it's your native lang isn't it?
L528[04:04:23] <Inari> yeah
L529[04:04:30] <Inari> oh
L530[04:04:33] <Shuudoushi> lol
L531[04:04:35] <Inari> you were talking to gamax, i missed that
L532[04:04:39] <Shuudoushi> silly girl
L533[04:04:47] <ShadowKatStudios> TIL
L534[04:05:11] <Shuudoushi> yeah, iirc, german is his 3rd lang?
L535[04:05:54] <Shuudoushi> don't quote me on that, it's hard to keep track lol
L536[04:07:23] <gamax92> err ... no
L537[04:07:28] <gamax92> I only know English
L538[04:08:19] <Shuudoushi> ah lol
L539[04:08:35] <Shuudoushi> then who was it again that learned german as a 3rd lang...
L540[04:08:46] <Shuudoushi> idk, like I said, it's hard to keep track lol
L541[04:14:12] ⇨ Joins: MichiBot (~lb@eos.pc-logix.com)
L542[04:14:12] ⇨ Joins: MichiBot1 (~lb@eos.pc-logix.com)
L543[04:14:28] ⇦ Quits: MichiBot1 (~lb@eos.pc-logix.com) ()
L544[04:14:33] <Caitlyn> ¬_¬
L545[04:14:51] <Shuudoushi> lol
L546[04:14:54] <gamax92> lol
L547[04:15:00] <Shuudoushi> having issues there?
L548[04:15:20] <Caitlyn> just had 2 instances of the bot running..
L549[04:15:25] <Caitlyn> no idea why
L550[04:15:27] <Caitlyn> but an easy fix
L551[04:15:33] <Caitlyn> kill -9 pid
L552[04:15:52] <Caitlyn> I was then told I had no permissions
L553[04:15:57] <Caitlyn> cause I killed it from anothr user
L554[04:16:08] <Caitlyn> so I used my awesome new alias "fuckyou"
L555[04:16:11] <Caitlyn> and it ran it with sudo
L556[04:16:35] <Caitlyn> alias fuckyou='sudo $(history -p !-1)' ftfw
L557[04:17:30] <Shuudoushi> lol
L558[04:17:34] <Shuudoushi> nice
L559[04:18:25] <Shuudoushi> I like it, but it might hurts my eyes after a bit... http://puu.sh/f2rjh/61f539bfc5.png (the color skym)
L560[04:18:53] <Shuudoushi> schem****
L561[04:19:19] <Shuudoushi> skym? wtf is a skym? fucking brain no work today -_-
L562[04:19:33] ⇦ Quits: Inari (~Uni@p54934DCB.dip0.t-ipconnect.de) (Ping timeout: 194 seconds)
L563[04:19:47] <Caitlyn> Oh man using the tablet as a monitor is MURDERING the battery...
L564[04:19:59] <Shuudoushi> XD
L565[04:20:03] <Caitlyn> It's draining f aster then a 2.5 amp charger will charge it
L566[04:20:05] <Shuudoushi> one would think yeah
L567[04:20:27] <Shuudoushi> hook it into a USB 3.0 port then?
L568[04:20:55] <Caitlyn> erm.. it's USB 2 only so it wouldn't negotiate a higher amperage
L569[04:21:06] <Shuudoushi> oh...
L570[04:21:10] <Shuudoushi> well then...
L571[04:21:13] <ShadowKatStudios> >USB 3.0
L572[04:21:16] <ShadowKatStudios> Sure.
L573[04:21:37] <ShadowKatStudios> ffs
L574[04:22:01] <Shuudoushi> on my board at least, the 3.0 ports can supply up to 4 amp I think it was
L575[04:22:31] <Shuudoushi> but idr if that was total, or each
L576[04:23:15] <Caitlyn> spec says 900 mA iirc
L577[04:23:23] <Caitlyn> but devices have to ask for it
L578[04:24:25] <Shuudoushi> my mobo can use supercharger, which can push extra amps when requested
L579[04:24:44] <Shuudoushi> but I think that 4 amp was total
L580[04:25:33] <Shuudoushi> Kodos: that code I give ya work?
L581[04:25:37] *** PotatoTrumpet is now known as Potato|Sleep
L582[04:27:29] <Shuudoushi> Caitlyn: any ideas on how to keep the UI from flashing a lot in this program? https://github.com/Shuudoushi/Misc-Programs/blob/master/BR_Reactor.lua
L583[04:27:53] ⇦ Quits: Lathanael|Away (~Lathanael@p54971A57.dip0.t-ipconnect.de) (Ping timeout: 200 seconds)
L584[04:28:15] <Caitlyn> Yes.
L585[04:28:22] <Shuudoushi> other than "get better at making UIs"
L586[04:28:30] <Caitlyn> Oh
L587[04:28:32] <Caitlyn> No..
L588[04:28:36] <Shuudoushi> ...
L589[04:28:42] <Soni> 2 things I want in OC:
L590[04:28:44] <Soni> 1. js
L591[04:28:52] <Soni> 2. a way to crack forgecraft's VPN
L592[04:28:54] <Shuudoushi> make n add-on for it
L593[04:29:04] <ShadowKatStudios> 3 minutes ago: "I know! I'll play skyrim!" *looks at thermometer* "Maybe not right now."
L594[04:29:20] <Caitlyn> Oh good
L595[04:29:21] <Shuudoushi> and forgecraft just uses a rotating IP last I checked...
L596[04:29:26] ⇦ Quits: Satori (webchat@5.100.120.185) (Quit: Web client closed)
L597[04:29:26] <Caitlyn> I can lock my tablet and not lose connection
L598[04:30:01] ⇨ Joins: Lathanael|Away (~Lathanael@p54971E24.dip0.t-ipconnect.de)
L599[04:30:43] <Shuudoushi> Caitlyn: you didn't know that locking tablets and phones didn't kill the USB data transfer?
L600[04:30:47] <Soni> fine crack direwolf20's PC for me
L601[04:30:56] <Caitlyn> Shuudoushi, it's not USB?
L602[04:30:57] <Shuudoushi> why would I want to?
L603[04:31:09] <Shuudoushi> BT and Wifi is the same way
L604[04:31:20] <Shuudoushi> unless you have a power saver option
L605[04:31:34] <Soni> why not?
L606[04:31:41] <Caitlyn> It wasn't so much about it loosing connectivity as much as it fucking the app up
L607[04:31:43] <Caitlyn> now stfu
L608[04:31:45] <Caitlyn> :D
L609[04:31:49] <Shuudoushi> XD
L610[04:31:53] <Shuudoushi> fair enough lol
L611[04:32:11] <Shuudoushi> Soni: b/c I don't feel like having the FBI kick in my door again
L612[04:32:16] ⇨ Joins: VikeStep (~VikeStep@101.162.12.98)
L613[04:32:17] <ShadowKatStudios> So
L614[04:32:35] <Soni> xD
L615[04:32:36] <ShadowKatStudios> I'm gonna have in my computer a) a GeForce 220GT, and b) a GeForce 8600GT
L616[04:32:41] <ShadowKatStudios> this should be fun
L617[04:32:48] <Temia> gasp
L618[04:32:57] <Shuudoushi> that's going to end in tears...
L619[04:32:58] <Temia> An 8600GT that still works to this day?
L620[04:33:05] <Shuudoushi> ikr lol
L621[04:33:07] <Caitlyn> Careful there ShadowKatStudios you're almost in this decade!
L622[04:33:14] <Shuudoushi> XD
L623[04:33:19] <Temia> I thought they drove themselves to extinction by heat death!
L624[04:33:20] <Soni> ShadowKatStudios, use an Wii U
L625[04:33:24] <Soni> way more efficient
L626[04:33:34] <Caitlyn> Temia, I still have an 8600GT running in my server
L627[04:33:45] <Temia> uwot
L628[04:33:58] <Temia> Why?
L629[04:34:00] <Shuudoushi> I forgot about that XD
L630[04:34:06] <Caitlyn> I needed video output to the TV.. and it does like *nothing* other then show the desktop at times
L631[04:34:11] <Caitlyn> and no onboard video
L632[04:34:14] <Temia> Ah.
L633[04:34:14] <Shuudoushi> it's a server... it doesn't really nee any GPU...
L634[04:34:21] <ShadowKatStudios> Temia: Mine still runs, it seems to be a later model- 1GB VRAM
L635[04:34:34] <Caitlyn> Shuudoushi, it does need a GPU
L636[04:34:42] <ShadowKatStudios> I was using it up until last week
L637[04:34:48] <Temia> So I'm guessing you don't have it configured to really activate any hardware acceleration features
L638[04:34:54] <Caitlyn> Hard to output to TV without a video output
L639[04:34:56] <Shuudoushi> I meant high GPU load kind of need Caitlyn
L640[04:35:09] <ShadowKatStudios> Full accel, but manually set to fan 100%
L641[04:35:48] <Shuudoushi> it's not like you use that server for hardcore gaming or anything lol
L642[04:35:56] <Caitlyn> it used to run Windows Media Center output.. but we moved to a 360 because hdmi
L643[04:35:57] <Shuudoushi> it's mostly media last I heard of it lol
L644[04:36:10] <Temia> Ah .-.
L645[04:36:30] <Shuudoushi> so HA!
L646[04:36:32] <Shuudoushi> lol
L647[04:36:36] <Temia> Still, an 8600 in a server...
L648[04:36:51] <Caitlyn> well it is a quadcore phenom with 6 GB RAM
L649[04:36:55] <Temia> I'd look for ANYTHING else at that point for reliability's sake
L650[04:37:00] <Caitlyn> so.. it could run a game or 2
L651[04:37:20] <Caitlyn> I've dualboxed EvE on it.. lol
L652[04:37:24] <Shuudoushi> I was using a readeon 6450 for a while there Temia
L653[04:37:32] <Shuudoushi> those things die just as easy lol
L654[04:37:40] <Temia> Heh
L655[04:37:43] <Temia> But seriously
L656[04:38:03] <Temia> Speaking as someone who had to use a fried 8600 until a replacement could arrive
L657[04:38:06] <Shuudoushi> fuck it, I'm done fixing spelling errors tonight...
L658[04:38:11] <Caitlyn> my 8600 outlasted my 560...
L659[04:38:25] <Shuudoushi> you finally killed the 560 XD
L660[04:38:25] <Caitlyn> by... A LOT
L661[04:38:40] <Caitlyn> "finally"?
L662[04:38:43] <Temia> I was lucky that any hardware accelerated operation even to the faintest smooth scroll *only* produced massive artifacting
L663[04:38:46] <Caitlyn> dafuq you on about?
L664[04:39:02] <Caitlyn> Temia, the BIOS god damn screen made mine unusable
L665[04:39:09] <Shuudoushi> not but a year and a half ago you had a 560 didn't you?
L666[04:39:22] <Caitlyn> That'd be my 260... which I'm currently using
L667[04:39:27] <Shuudoushi> ah
L668[04:39:32] <Shuudoushi> that's right lol
L669[04:40:07] <Caitlyn> So yes, my 8600, AND my 260 outlived my 560
L670[04:40:11] <Shuudoushi> I still have that 6450 laying around some where if you want to use it Caitlyn lol
L671[04:40:23] <Caitlyn> I'm pretty sure my old 9600 is still kicking ass
L672[04:40:30] <Caitlyn> Nah, I'll pass
L673[04:40:31] <Shuudoushi> XD
L674[04:40:32] <Caitlyn> thanks though
L675[04:40:32] <Temia> The 260 is no big surprise.
L676[04:40:42] <Caitlyn> I'll be sitting on a pair of 960s in about am onth
L677[04:40:47] <Temia> The 8600 though is by experience
L678[04:40:47] <Shuudoushi> 2XX's are some tough mofos
L679[04:40:53] <Shuudoushi> nice
L680[04:41:10] <Caitlyn> well... I'll have one, I have to share :P
L681[04:41:12] <Temia> Anywho, I should get some sleep. Night
L682[04:41:13] <Caitlyn> damn relationships
L683[04:41:19] <Caitlyn> Night Temia
L684[04:41:28] <Shuudoushi> night Temia
L685[04:41:35] <Shuudoushi> lmao Caitlyn
L686[04:41:52] <Caitlyn> http://www.speedtest.net/result/4089601763.png
L687[04:41:56] <Caitlyn> yay it's slowly getting better
L688[04:42:04] ⇦ Quits: Potato|Sleep (Potato_Eli@elitebnc6-2.clients.libirc.so) (Ping timeout: 198 seconds)
L689[04:42:27] <Caitlyn> Shuudoushi, you're IPv4 only right?
L690[04:42:43] <Shuudoushi> I still can't figure out why my turbine is spining out of control so much...
L691[04:42:56] <Shuudoushi> IPv4 and IPv6 atm iirc
L692[04:43:00] <Caitlyn> oh crap
L693[04:43:01] <Caitlyn> ok
L694[04:43:04] <Shuudoushi> why?
L695[04:43:16] <Caitlyn> I needed to see what hitting http://ipv6.pcldns.com/myip.phpdid on a ipv4 only connection
L696[04:43:23] <Caitlyn> err...
L697[04:43:31] <Caitlyn> s/phpdid/php did
L698[04:43:31] <Kibibyte> <Caitlyn> I needed to see what hitting http://ipv6.pcldns.com/myip.php did on a ipv4 only connection
L699[04:44:06] ⇨ Joins: Potato_Elite (Potato_Eli@elitebnc6-2.clients.libirc.so)
L700[04:44:26] <Shuudoushi> I think I can force IPv4, but I don't feel like having to force reboot my computer if what i think will happen happens
L701[04:44:34] <ShadowKatStudios> ._. I just had to explain to my sister that the reason I have no friends is that I don't want any
L702[04:44:49] <Caitlyn> Shuudoushi, don't worry about it
L703[04:45:06] <Shuudoushi> ShadowKatStudios: tell her to go fuck herself with a cactus, I think she'll get the point after that
L704[04:45:06] <ShadowKatStudios> http://i.imgur.com/EcRVM1f.png So it worked.
L705[04:45:43] <ShadowKatStudios> Need to enable manual control, though
L706[04:45:45] <ShadowKatStudios> then restart X
L707[04:46:21] <Shuudoushi> but yeah, Caitlyn, about the UI flash...
L708[04:47:06] <Shuudoushi> I can't think of a way to make the outputs dynamic while the rest remains static...
L709[04:51:33] <Kodos> Are you redrawing the entire screen every time something changes?
L710[04:52:15] <Shuudoushi> just every 1 second >.>
L711[04:55:59] <Kodos> Okay, now how much of that screen needs to be changed, and how much could you get away with leaving up as it is
L712[04:56:41] <Shuudoushi> not a lot, and a lot lol
L713[04:58:15] <Shuudoushi> everything that can be static is the first bit of each line
L714[04:58:35] <Shuudoushi> it's just the numbers that need to change really
L715[04:59:40] ⇨ Joins: Benguin (~Ben@adsl-83-100-188-68.karoo.KCOM.COM)
L716[05:04:11] <ShadowKatStudios> http://i.imgur.com/mqknqUL.jpg :D
L717[05:04:37] <ShadowKatStudios> Windows can cope with monitors on different GPUs, evidently
L718[05:06:12] <Shuudoushi> yep
L719[05:06:30] <ShadowKatStudios> Linux would need more work in xorg.conf, and you know the xkcd
L720[05:06:42] *** SleepingFairy is now known as Daiyousei
L721[05:06:58] <ShadowKatStudios> http://xkcd.com/963/
L722[05:08:50] <Caitlyn> Umm IIRC I had multi monitors working on Fedora across my 560 and 260
L723[05:09:20] <Caitlyn> and I don't think I even looked at the xorg config after the first time
L724[05:09:56] <ShadowKatStudios> Odd, I'll see what happens when I boot into it again
L725[05:10:45] <Temia> It's odd, I had multimonitors working seamlessly out of the box when I set up my desktop o.o
L726[05:10:55] <Temia> also I am bad at committing to sleep
L727[05:11:05] <Caitlyn> so it seems Temia :P
L728[05:11:52] <ShadowKatStudios> Interesting- my sister takes on the personality of my dad (who we don't talk about any more) when my mum leaves.
L729[05:12:34] <Shuudoushi> lol Temia
L730[05:13:57] ⇦ Quits: mr208 (~mallrat20@68-204-184-175.res.bhn.net) (Read error: Connection reset by peer)
L731[05:15:05] *** Kasen is now known as rakiru|offline
L732[05:15:28] <ShadowKatStudios> > Removed by the request of copyright owner, yesterday
L733[05:15:30] <ShadowKatStudios> Daaamnit
L734[05:16:52] <Shuudoushi> ?
L735[05:18:08] <ShadowKatStudios> Trying to get Fallout: New Vegas
L736[05:22:16] <Shuudoushi> lol
L737[05:23:23] <ShadowKatStudios> Hopefully running Skyrim on my 220GT will be faster than my 8600GT
L738[05:23:27] <ShadowKatStudios> Cooler, too.
L739[05:23:45] <Shuudoushi> lol
L740[05:24:08] ⇦ Quits: Hobbyboy (Hobbyboy@hobbyboy.co.uk) (Ping timeout: 189 seconds)
L741[05:24:33] ⇦ Quits: mrkirby153 (mrkirby153@the.government.stole-your.pw) (Ping timeout: 194 seconds)
L742[05:29:27] <ShadowKatStudios> Vampire pathfinding is terrible.
L743[05:29:35] <Kodos> Neat, someone just bought me StarMade
L744[05:32:22] ⇨ Joins: JjStAr992_Gaming (~EIRC_RR@CPE-124-180-213-71.lns8.lon.bigpond.net.au)
L745[05:34:51] ⇨ Joins: mrkirby153 (mrkirby153@the.government.stole-your.pw)
L746[05:35:32] ⇦ Quits: JjStAr992_Gaming (~EIRC_RR@CPE-124-180-213-71.lns8.lon.bigpond.net.au) (Read error: Connection reset by peer)
L747[05:38:42] ⇨ Joins: mallrat208 (~mallrat20@68-204-184-175.res.bhn.net)
L748[05:41:35] ⇦ Quits: theREALorthoplex64 (~orthoplex@cpe-68-206-247-199.satx.res.rr.com) (Ping timeout: 200 seconds)
L749[05:45:33] <ShadowKatStudios> So
L750[05:45:43] <ShadowKatStudios> I think 2 GPUs may be a little too much for my cooling
L751[05:46:17] <Caitlyn> lil, I have a 560 and a 260 crammed into my little mid case...
L752[05:46:44] <Caitlyn> the 260 is like 4 inches longer than the 560 and touches the drive rack..
L753[05:46:48] <ShadowKatStudios> My full-ATX case is a cheap consumer one from around 2000
L754[05:46:48] <Caitlyn> s/lil/lol
L755[05:46:48] <Kibibyte> <Caitlyn> lol, I have a 560 and a 260 crammed into my little mid case...
L756[05:47:10] <ShadowKatStudios> It has no space for frontal cooling
L757[05:47:12] <Caitlyn> I heat my corner of the room with my computer and the server
L758[05:47:13] ⇨ Joins: JjStAr992_Gaming (~EIRC_RR@CPE-124-180-213-71.lns8.lon.bigpond.net.au)
L759[05:48:21] <ShadowKatStudios> I had to break out the desk fan again- first time since installing the 220GT
L760[05:51:08] <Caitlyn> my box fan is busy cooling the server :P
L761[05:51:22] <Caitlyn> funny enough the GPU is ice cold..
L762[05:51:55] <ShadowKatStudios> My server runs at max of 5C hotter than ambient temperature
L763[05:51:59] <ShadowKatStudios> VIA C3 ftw
L764[05:52:05] *** Azazel is now known as DoorLord
L765[05:52:15] <Caitlyn> Phenom 9750 lol
L766[05:52:50] <Temia> I can't remember the model of Phenom in my computer anymore .w.
L767[05:53:06] <Caitlyn> this CPU would bluescreen 5+ times a day in GFs pc...
L768[05:53:28] <Temia> All I recall is that it's an AM3 Phenom II on an AM2+ board, was one of the highest in the 95W TDP class...
L769[05:53:29] <Caitlyn> upgraded her to a II and put the old board in the server, and it's BSOD'd exactly 0 times
L770[05:53:31] <Caitlyn> no idea why
L771[05:53:54] <Caitlyn> this is a II 955 Black
L772[05:53:56] <Temia> ...and never had any stability issues with it despite relying on backwards-compatibility either.
L773[05:54:01] <Temia> AH RIGHT
L774[05:54:04] <Temia> Mine was a 945
L775[05:54:04] <Caitlyn> I wanted the 960... but meh
L776[05:54:09] <Temia> Thanks for jogging my memory
L777[05:54:14] <ShadowKatStudios> My desktop has an i3 4160, a GT 220 and an 8600GT, and now runs at upwards of 60 C
L778[05:55:05] <ShadowKatStudios> I'm debating whether the 8600GT is worth the third monitor
L779[05:55:33] <Caitlyn> <3 my 3rd (and now 4thish monitors)
L780[05:56:13] <ShadowKatStudios> I want to get a 1600x900 as my centre considering you can't get 1440x900s any more
L781[05:56:30] <Caitlyn> get a 1600x900 and I'll trade :P
L782[05:56:51] <Caitlyn> This is a recapped "V7" monitor...
L783[05:56:56] <Caitlyn> I recapped it myself
L784[05:57:05] <ShadowKatStudios> V7?
L785[05:57:07] <Caitlyn> stupid cheap caps..
L786[05:57:09] <Temia> recapping sounds fun =w=
L787[05:57:38] <Caitlyn> ShadowKatStudios, it's branded V7 the edid is R19w12
L788[05:57:47] <Caitlyn> Temia, it's really not :P
L789[05:57:58] <ShadowKatStudios> :o I can finally find out the model number of my Dell monitor
L790[05:58:25] <Caitlyn> http://www.amazon.com/V7-R19W12-19-inch-Widescreen-Monitor/dp/B000OAXVUW
L791[05:58:27] <Temia> Hmm, I guess not if SMD caps are involved at any rate
L792[05:58:34] <Caitlyn> I picked it up free from one of my PC tech jobs..
L793[05:58:44] <ShadowKatStudios> My two 1440x900s are an Acer x193w and a Compaq WF1907, and my weird other one is a Dell E172FP
L794[05:58:55] <Caitlyn> Nah not surface mount, just a huge pain in the ass to find decent caps for it
L795[05:59:18] <Temia> I already have a bad enough tremor that I destroyed a polymer thermal fuse trying to wire up a PoGPIO setup for my RPi.
L796[05:59:45] <Temia> I spent a lot of effort finding the same fuse it used too :<
L797[06:00:10] <Caitlyn> ugh I hate frontend design...
L798[06:00:13] <Caitlyn> I also hate css
L799[06:00:16] <Caitlyn> and javascript
L800[06:00:22] <ShadowKatStudios> So if 1440x900 is 16:10, what is 1600x900?
L801[06:01:22] <ShadowKatStudios> ._. it's 16:9
L802[06:01:25] <ShadowKatStudios> simple maths
L803[06:01:40] * Temia patpats
L804[06:01:58] <Temia> I don't think I could ever stand to be on 16:9 for a workstation
L805[06:02:16] <Temia> I'm like 16:10 at least
L806[06:02:23] <Caitlyn> 4:3 masterrace
L807[06:02:25] <Caitlyn> :/
L808[06:02:32] <Temia> I will use 5:4s over WXGAs.
L809[06:02:51] <ShadowKatStudios> Well, I'm using 32:10- ie 16:5 when I only have two monitors
L810[06:03:10] <ShadowKatStudios> You can't really calculate the aspect ratio with different size and resolution screens, though
L811[06:03:17] <Temia> Technically so am I yeah :P
L812[06:03:21] <Temia> But still
L813[06:07:32] <gamax92> 11:7
L814[06:12:20] <ShadowKatStudios> Man, the difference a gigabyte cooler makes
L815[06:12:57] <ShadowKatStudios> So my 220GT is above my 8600GT, and my 220GT is running at an unusually high 40C, probably due to the 8600GT running at 62C below it.
L816[06:13:24] <Caitlyn> ShadowKatStudios, I have a 560 cooler I can send you :P
L817[06:13:36] <ShadowKatStudios> Would it fit on an 8600GT? :P
L818[06:13:44] * Caitlyn turbo shrugs
L819[06:17:32] <ShadowKatStudios> So apparently I can use my 8600GT as a physx processor considering I play on a monitor hooked up to my gt220
L820[06:17:57] <Caitlyn> yeah I use my 260 for physx while playing on the 560
L821[06:20:47] *** Daiyousei is now known as LearningFairy
L822[06:31:52] <ShadowKatStudios> http://i.imgur.com/nUH9JF6.webm
L823[06:35:12] <gamax92> What if you had multi multicore processors
L824[06:37:38] <ShadowKatStudios> Skulltrail.
L825[06:49:58] *** Kiloff is now known as Kilobyte
L826[06:51:10] *** LordFokas is now known as LordFokas|off
L827[07:05:41] ⇦ Quits: JjStAr992_Gaming (~EIRC_RR@CPE-124-180-213-71.lns8.lon.bigpond.net.au) (Read error: Connection reset by peer)
L828[07:09:16] ⇨ Joins: Vexatos (~Vexatos@p200300556E1C1F8965BE28531B945D83.dip0.t-ipconnect.de)
L829[07:09:16] zsh sets mode: +v on Vexatos
L830[07:12:37] <gamax92> Totally use it for video processing
L831[07:12:51] <gamax92> Ohai Vexatos
L832[07:12:55] <Vexatos> Hi
L833[07:13:17] ⇨ Joins: JjStAr992_Gaming (~EIRC_RR@CPE-124-180-213-71.lns8.lon.bigpond.net.au)
L834[07:14:08] <gamax92> I need to get mcp 1.2.4
L835[07:14:26] <gamax92> Or well ... mcp for mc 1.2.4
L836[07:15:04] <gamax92> And then to magically make it work
L837[07:16:58] *** Cruor|Away is now known as Cruor
L838[07:21:09] ⇨ Joins: asie (~asie@078088168214.elblag.vectranet.pl)
L839[07:21:09] zsh sets mode: +v on asie
L840[07:36:10] ⇨ Joins: CompanionCube (~samis@95f1fee7.skybroadband.com)
L841[07:44:03] <Caitlyn> http://puu.sh/f2MiR/f1d90748c2.png
L842[07:44:08] <Caitlyn> that's a rather large change.. lol
L843[07:48:23] ⇦ Quits: Vexatos (~Vexatos@p200300556E1C1F8965BE28531B945D83.dip0.t-ipconnect.de) (Quit: I guess I have to go now. Bye ✔)
L844[07:55:05] *** DoorLord is now known as Elizaveta
L845[07:57:04] <Kodos> Hmm, bandwidth usage in OC... I wonder if that'd be trackable
L846[07:57:08] <Kodos> ie between a computer and a server
L847[08:06:54] ⇦ Quits: CompanionCube (~samis@95f1fee7.skybroadband.com) (Remote host closed the connection)
L848[08:10:57] ⇨ Joins: Timmy94 (webchat@95.91.62.70)
L849[08:18:49] *** Forecaster71 is now known as Forecaster
L850[08:21:49] ⇨ Joins: Hobby_boy (~Hobbyboy@host86-191-128-51.range86-191.btcentralplus.com)
L851[08:24:32] ⇨ Joins: DarkIRC (~dark@92.40.248.12.threembb.co.uk)
L852[08:29:56] *** Skye is now known as Skye|away
L853[08:32:07] <Cruor> what are the resolutions and colors for each screen tier? .-.
L854[08:32:19] <Cruor> wiki bot senpai
L855[08:32:28] <Cruor> ~w screen
L856[08:32:28] <ocdoc> http://ocd.cil.li/component:screen
L857[08:32:48] <Caitlyn> http://ocdoc.cil.li/block:screen
L858[08:37:07] ⇦ Quits: Elizaveta (uid52684@id-52684.charlton.irccloud.com) ()
L859[08:37:22] *** gAway2002 is now known as g
L860[08:37:48] <Cruor> color depth is bits per channel, or whole color? >_<
L861[08:39:32] <Cruor> .-. is there channels even
L862[08:41:11] <Cruor> im going to assume the 240 colors things on t3 is linspace(0, 255, 15) stuff >_<
L863[08:42:40] ⇦ Quits: Hobby_boy (~Hobbyboy@host86-191-128-51.range86-191.btcentralplus.com) (Remote host closed the connection)
L864[08:42:56] ⇨ Joins: Hobby_boy (~Hobbyboy@host86-191-128-51.range86-191.btcentralplus.com)
L865[08:45:37] ⇦ Quits: Hobby_boy (~Hobbyboy@host86-191-128-51.range86-191.btcentralplus.com) (Remote host closed the connection)
L866[08:45:51] ⇨ Joins: Hobby_boy (~Hobbyboy@host86-191-128-51.range86-191.btcentralplus.com)
L867[08:53:33] <heatseeker0> Is there any sort of API documentation on the database upgrade?
L868[08:56:32] <Sleepdra> ~w database
L869[08:56:32] <ocdoc> http://ocd.cil.li/component:database
L870[08:56:38] <Sleepdra> heatseeker0, ^
L871[08:56:53] <heatseeker0> Thank you
L872[08:57:23] <heatseeker0> I'm thinking to use it to recognize if specific items are present in robot inventory or not
L873[08:57:27] <Cruor> ~w screen block
L874[08:57:27] <ocdoc> http://ocd.cil.li/block:screen
L875[08:57:30] <Cruor> AHA
L876[08:57:50] <Cruor> is the db upgrade like the old ASTU book things?
L877[08:58:05] <Cruor> (for these that used CC 2 years ago :p)
L878[08:58:23] <heatseeker0> No clue, haven't played with CC that much. Just basic things like strip mining, informational displays
L879[08:59:03] <Cruor> ASTU thing tok item X and put it with name Y into the book
L880[08:59:16] <heatseeker0> Right
L881[08:59:18] <Cruor> then you could ask the book what slot n contained, returning name Y if it recognised it
L882[08:59:27] <Cruor> ... thats basicly it
L883[08:59:56] <heatseeker0> What I want to build is a fully autonomous robot. Have it detect tesseracts in inventory, place it down, recharge itself then carry on
L884[09:00:12] <Cruor> so how does these hashes work?
L885[09:00:23] <heatseeker0> Instead of hardcoding a slot where tesseract is supposed to be placed by player, I want to let them place it anywhere and have the robot detect it's presence
L886[09:00:39] <Cruor> are they seeded by the unique db item, world, robot? >_<
L887[09:01:08] <heatseeker0> hashes... " value is guaranteed to be the same for identical item stacks, allowing comparison of item stacks across a network"
L888[09:01:09] <Cruor> can i throw hash X at someone and say "this is a dirt block"
L889[09:01:47] <heatseeker0> so i'm guessing it's made of item id, nbt data and other similar stuff that makes an item unique
L890[09:02:07] <heatseeker0> haven't played with the database upgrade yet, i'll know more after i've fiddled with it for a bit
L891[09:02:31] <Cruor> does db X generate the same hash as db Y, that is the question
L892[09:02:49] <heatseeker0> the quoted part lead me to believe that yes, yes it does
L893[09:02:56] <Cruor> inb4 some insane uuid seed
L894[09:03:15] ⇦ Quits: Yepoleb (~quassel@178-190-231-175.adsl.highway.telekom.at) (Quit: No Ping reply in 180 seconds.)
L895[09:04:20] ⇨ Joins: Yepoleb (~quassel@178-191-14-36.adsl.highway.telekom.at)
L896[09:07:07] <Cruor> does OC have bold/italic/underline?
L897[09:07:19] <Cruor> ~w terminal
L898[09:07:19] <ocdoc> http://ocd.cil.li/item:terminal
L899[09:07:25] <Cruor> ;_; not the item
L900[09:07:28] <Cruor> ~w terminal api
L901[09:07:28] <ocdoc> Predicted http://ocd.cil.li/api:term
L902[09:07:40] <heatseeker0> ~w gpu
L903[09:07:40] <ocdoc> http://ocd.cil.li/component:gpu
L904[09:07:49] <heatseeker0> that is probably what you seek
L905[09:09:42] *** Skye|away is now known as Skye|school
L906[09:10:38] <heatseeker0> daww... enhancement suggestion: have the remote terminal able to be bound to robots in addition to servers
L907[09:10:41] <Sleepdra> ocdoc is best bot ever.
L908[09:10:41] <Cruor> god bless OC ;_;
L909[09:10:49] <Cruor> Sleepdra: its damn horrible :p
L910[09:10:58] <Sleepdra> heatseeker0, he's planning on removing remote terminals in 1.8.
L911[09:11:10] <heatseeker0> and replace them with something?
L912[09:11:15] <Sleepdra> tablets.
L913[09:11:20] <heatseeker0> tablets are awesome
L914[09:11:32] <heatseeker0> if only they had 1 more card slot, so i can have both wireless and internet in them
L915[09:11:45] <Dashkal> If he's going to replace them with tablets, will there be an rsh in the standard programs then?
L916[09:12:13] <Cruor> if ocdoc could you know, give the top 3 predicted links
L917[09:12:15] <Cruor> dat be great
L918[09:12:17] <Sleepdra> Dashkal, feel like writing one?
L919[09:12:23] <Dashkal> Sleepdra: Not in Lua I don't.
L920[09:12:29] <heatseeker0> how would rsh work given you may not have network or wireless cards on a device?
L921[09:12:39] <Sleepdra> it'd only work if you did have one.
L922[09:12:40] <Dashkal> But seriously. Without an rsh, tablets do not replace remote terminals.
L923[09:12:57] <heatseeker0> Dashkal, you can write a rsh for a particular setup
L924[09:13:07] <heatseeker0> e.g. over networks, binding to a specific port
L925[09:13:21] <Dashkal> I'm well aware that I could do so. Just sad that it looks like that's an incoming nerf.
L926[09:13:26] <Dashkal> I'll just stick a monitor on the case
L927[09:13:34] <Sleepdra> rsh wouldn't work in a lot of cases anyway.
L928[09:13:54] <heatseeker0> Sleepdra, any insight on the why he's removing them?
L929[09:13:56] <Sleepdra> There was an issue for it, lemme see if I can find it.
L930[09:14:49] <Sleepdra> Let's me say this: remote terminals were a stopgap solution until I had the time to fully implement tablets. Therefore I strongly would prefer people using tablets to remote control robots.
L931[09:14:54] <Sleepdra> - Sangar.
L932[09:15:23] <Dashkal> Yeah, nerf inc. Bleh. Oh well, I think I'd rather go without remote than deal with wireless network drops and remote code enough to write my own shell. Itch not that itchy.
L933[09:15:32] <heatseeker0> Makes sense. tablets are more flexible than remote terminals anyway
L934[09:15:41] <Sleepdra> https://github.com/MightyPirates/OpenComputers/issues/733 in fact that issue is heatseeker0's suggestion.
L935[09:16:16] <Sleepdra> it's pretty much it.
L936[09:16:45] <heatseeker0> "multiple tablet tiers" if i would get one with 3 cards i'd be happy :)
L937[09:16:53] <Sleepdra> yeah, that's his plan.
L938[09:17:02] <Sleepdra> I think.
L939[09:17:15] <heatseeker0> so graphics, internet & wireless
L940[09:17:43] <Sleepdra> I swear I made a tablet with those once.
L941[09:17:49] ⇦ Quits: Forecaster (~Forecaste@83.223.1.173) (Quit: I am a locomotive. Mine is the power of iron and steam.)
L942[09:17:54] <heatseeker0> not possible
L943[09:17:59] <heatseeker0> (anymore at least)
L944[09:18:00] ⇨ Joins: Forecaster (~Forecaste@83.223.1.173)
L945[09:18:21] <Sleepdra> Maybe it was either a: an old version, b: me misremembering.
L946[09:18:22] <heatseeker0> since tablets only have 2 card slots, and one of those is reserved for graphics
L947[09:18:31] <heatseeker0> and they don't accept card upgrades either
L948[09:18:52] <Sleepdra> I also think there was an issue about allowing tablets to take a container.
L949[09:19:41] <Sleepdra> https://github.com/MightyPirates/OpenComputers/issues/709
L950[09:19:44] <Sleepdra> there it is.
L951[09:20:37] <heatseeker0> mhm, cool
L952[09:21:01] <heatseeker0> thing is if you mess up and somehow make the os on tabled unusable, you have to disassemble the damn thing to fix it
L953[09:21:01] *** alekso56_off is now known as alekso56
L954[09:21:21] <heatseeker0> which would kind of make sense in a real world laptop with no dvd anyway
L955[09:22:06] <Dashkal> Not quite that extreme. You can access it's drive is you stick it into a charger that a computer can see
L956[09:22:07] <Sleepdra> well of course.
L957[09:22:10] <Sleepdra> yeah.
L958[09:22:20] <Dashkal> minus the '
L959[09:22:35] <heatseeker0> oh i didn't knew that
L960[09:22:58] *** Riking is now known as Riking|away
L961[09:22:59] <heatseeker0> daww... am i missing something but placing a robot next to a screen doesn't make that screen available to the robot as a component?
L962[09:23:23] <Dashkal> Robots cannot see components. That's their fundamental limitation
L963[09:23:29] <heatseeker0> right
L964[09:23:47] <Dashkal> Wireless card and a cooperating computer
L965[09:23:56] <heatseeker0> mhm
L966[09:24:12] <heatseeker0> or simply write the stuff in notepad and smuggle it over the interwebz
L967[09:25:38] <heatseeker0> hrmpf... no database component :(
L968[09:25:43] <Sleepdra> or redstone card.
L969[09:26:40] *** alekso56 is now known as alekso56_off
L970[09:26:56] <Dashkal> Heh, beeping out signals with morse code.
L971[09:27:07] <Dashkal> Having to do that lead to my asking for the linked cards.
L972[09:28:22] <Sleepdra> Linked cards are cool.
L973[09:28:30] <Sleepdra> I /love/ linked cards.
L974[09:28:39] <Dashkal> As do I.
L975[09:28:42] <heatseeker0> was thinking to set up a distributed chat / irc sort of thing for people on my server
L976[09:28:45] <heatseeker0> with linked cards
L977[09:28:58] <Dashkal> My use case was so I could smuggle information about my BR from the reactor site to my workshop. Beeping it over wireless redstone wasn't a fun thing...
L978[09:29:01] <heatseeker0> plus a central file repository
L979[09:30:27] <Dashkal> Heh. Minus the central repo and you're describing a thing I once attempted to stick into the WoW UI
L980[09:31:09] <heatseeker0> i could then have them pay some sort of fee (have to think of suitable "coins" to use for this) for daily / weekly / monthly access
L981[09:31:19] <heatseeker0> that could be fun
L982[09:32:01] <heatseeker0> another question: can robots with wireless cards act as wireless repeaters, extending the wireless range of a base computer?
L983[09:32:24] <Sleepdra> heatseeker0, you can use a access point for that.
L984[09:32:34] <heatseeker0> i know i can, here's my thought
L985[09:32:41] <heatseeker0> i have a skyblock server
L986[09:33:10] <heatseeker0> have some robots move around and detect signal strength, and when it's dipping below a certain level position themselves so they extend the signal with another "cell"
L987[09:33:34] <Sleepdra> they can place down access points if you want.
L988[09:33:48] <heatseeker0> indeed, why didn't i think of that.
L989[09:34:11] <heatseeker0> but question still remains... is a computer with a wireless card coded to also act as a repeater?
L990[09:34:20] <Sleepdra> I don't think so no.
L991[09:34:42] <heatseeker0> e.g. computer A and B are in range, B and C are in range, but A and C directly are not. Are A and C able to communicate by default?
L992[09:34:50] <Sleepdra> as that would lead to network loops I believe.
L993[09:35:08] <heatseeker0> yes, i suppose it would
L994[09:35:20] <heatseeker0> and having more than one access point would not?
L995[09:35:42] <Sleepdra> I believe access points are specially coded for that.
L996[09:35:58] <Sleepdra> maybe open an issue and see what people have to say.
L997[09:36:00] <heatseeker0> makes sense, i see
L998[09:36:17] <heatseeker0> maybe i'll try it for myself and see what's possible and what not before bothering others :)
L999[09:37:16] <Dashkal> heatseeker0: There's a network stack available as bonus loot that will try to solve that sort of problem
L1000[09:37:25] <Dashkal> I've had issues communicating via anything but UUIDs, but it's there
L1001[09:38:00] <heatseeker0> messed a bit with that network disk code, didn't look too deep into it yet
L1002[09:42:56] <DarkIRC> that awkward moment when you think someone is attacking your lan but it turns out to be a wireless printer you installed yesterday
L1003[09:43:44] <DarkIRC> but why the printer has to send so many requests is anyones guess
L1004[09:45:26] <Dashkal> Time to sleep.
L1005[09:49:57] *** Skye|school is now known as Skye|away
L1006[09:52:02] ⇦ Quits: DarkIRC (~dark@92.40.248.12.threembb.co.uk) (Quit: Nettalk6 - www.ntalk.de)
L1007[09:53:12] *** Sleepdra is now known as Sandra
L1008[09:53:51] * ShadowKatStudios has an OS that supports remote login anyway
L1009[09:54:08] <ShadowKatStudios> ohyay, out of context 'cause I was scrolled up
L1010[09:54:49] <ShadowKatStudios> http://i.imgur.com/XffvCqH.jpg
L1011[09:54:59] <Cruor> ShadowKatStudios: this is why you dont scroll
L1012[09:55:00] <heatseeker0> grrr... getting itchy here and just throwing random questions: anyone had experience recently with submitting a pack with ftb launcher? how long did it take to get it approved?
L1013[09:55:48] <heatseeker0> been 4 days, had 10 views on my submission yet no feedback whatsoever yet. wondering if this is a bad sign or normal?
L1014[09:56:47] <Cruor> im supposed to buy stickers to put on my servers... right?
L1015[09:57:26] <Cruor> OOOO
L1016[09:57:32] <Cruor> i want stickers/decals for OC
L1017[09:57:54] <Cruor> 16x16 RGBA image you can overlay on anyside of the computer case
L1018[09:58:22] <Cruor> or, use the color system of t3 screens :p
L1019[09:58:28] <ShadowKatStudios> 16x16 is a little large, isn't it- that's full-size textures
L1020[09:58:43] <asie> ^
L1021[09:58:49] <Cruor> yup, thats the point of alpha channel
L1022[09:58:53] <asie> i demand FSF stickers
L1023[09:59:28] <Cruor> i want stickers now :<
L1024[10:05:32] <Cruor> are you trying to tell me, that i give OC 0x123456, and it give me the closest color? .-.
L1025[10:05:45] <ShadowKatStudios> more or less
L1026[10:06:04] <Cruor> yay :D
L1027[10:06:31] <Cruor> i wanna derp with OC now :<
L1028[10:07:26] <Cruor> and then on the t3 screen i can set color palets to get exactly the color i want? :>
L1029[10:07:43] <ShadowKatStudios> No idea, I work in monochrome
L1030[10:07:50] * Cruor throws keyboard out the window
L1031[10:07:58] <ShadowKatStudios> Cruor: Experiment.
L1032[10:08:05] <Cruor> work.png
L1033[10:09:13] <ShadowKatStudios> Ask Snagar or Temi_a then - Snagar is the main dev, and Temi_a likes drawing pictures. Other people would know, but they spring to mind.
L1034[10:11:37] <Lumien> Does the tractor beam use up power per use?
L1035[10:14:15] <heatseeker0> ~ tablet
L1036[10:14:27] <heatseeker0> ~w tablet
L1037[10:14:27] <ocdoc> http://ocd.cil.li/item:tablet
L1038[10:16:28] <heatseeker0> ~w inventory_controller
L1039[10:16:28] <ocdoc> http://ocd.cil.li/component:inventory_controller
L1040[10:17:59] *** Kodos is now known as Kodos|Zzz
L1041[10:20:00] <heatseeker0> ~w inventory
L1042[10:20:00] <ocdoc> Predicted http://ocd.cil.li/item:inventory_upgrade
L1043[10:20:18] <heatseeker0> ~w robot
L1044[10:20:18] <ocdoc> http://ocd.cil.li/api:robot
L1045[10:20:48] <heatseeker0> right... so i don't seem to find a way to get the hash value of an item in robot's inventory
L1046[10:31:38] <heatseeker0> hmm... inventory.getInventorySize(side.back) seems to barf with "unsupported side" but http://ocdoc.cil.li/component:inventory_controller says the back side is for robot own inventory. thoughts?
L1047[10:36:39] <heatseeker0> interestingly enough inventory.getStackInSlot(side.back, 1) works as expected. i think this is a bug
L1048[10:48:06] <heatseeker0> ~w redstone
L1049[10:48:06] <ocdoc> http://ocd.cil.li/component:redstone
L1050[11:00:53] <Lumien> the experience robot upgrade is completely passive right?
L1051[11:03:38] *** Cruor is now known as Cruor|Away
L1052[11:04:07] <heatseeker0> i think so
L1053[11:04:59] <Lumien> Does it also increase the speed of the turtle using "no tool" or just tools?
L1054[11:05:23] <heatseeker0> *ahem* robot. speed you mean move speed? if so, yes
L1055[11:05:35] ⇦ Quits: asie (~asie@078088168214.elblag.vectranet.pl) (Ping timeout: 194 seconds)
L1056[11:17:07] <Lumien> oh whoops xD, no i mean the experience upgrade makes the tool cooldown shorter right?
L1057[11:17:39] *** Keridos is now known as Keridos_off
L1058[11:18:27] <heatseeker0> not sure but i think yes
L1059[11:22:52] <heatseeker0> hmm... for some reason shift right click with a wrench equipped doesn't seem to remove a placed tesseract
L1060[11:23:22] <heatseeker0> but swinging a pickaxe does
L1061[11:24:15] ⇨ Joins: Inari (~Uni@p54934DCB.dip0.t-ipconnect.de)
L1062[11:28:31] ⇨ Joins: tattyseal (~tattyseal@95.144.48.41)
L1063[11:32:31] *** Cazzar|Away is now known as Cazzar
L1064[11:38:31] ⇨ Joins: Johannes13_ (~Johannes@141.70.98.52)
L1065[11:46:35] <Lumien> heat are you sure more experience also makes the robot move faster?
L1066[11:47:58] ⇨ Joins: dangranos (~dangranos@178.186.2.37)
L1067[11:48:42] <dangranos> hello
L1068[11:52:36] *** manmaed|AFK is now known as manmaed
L1069[11:59:02] <heatseeker0> Lumien, that's what says in the demo vid. I'm currently building a setup and software to level up robots. Once that is done I'll let you know if they move faster or not
L1070[12:01:29] <heatseeker0> However at first glance I don't see any config setting to alter this speed, unlike the other bonuses xp gives
L1071[12:06:21] <heatseeker0> ~w experience
L1072[12:06:21] <ocdoc> http://ocd.cil.li/component:experience
L1073[12:11:41] <heatseeker0> ~w chat
L1074[12:11:41] <ocdoc> Predicted http://ocd.cil.li/api:internet
L1075[12:12:05] <heatseeker0> it doesn't know computronics addons :(
L1076[12:14:12] <dangranos> #google computronics chatbox
L1077[12:14:13] -Kibibyte- dangranos: 7 results total; First: Computronics - ComputerCraft | http://www.computercraft.info/forums2/index.php?/topic/17430-mc-1641721710-cc-15x16x-computronics-060-audio-tapes-cameras-encryption/
L1078[12:14:18] <dangranos> meh
L1079[12:20:07] ⇦ Quits: JjStAr992_Gaming (~EIRC_RR@CPE-124-180-213-71.lns8.lon.bigpond.net.au) (Ping timeout: 194 seconds)
L1080[12:30:44] *** tattyseal is now known as tattyseal|soup
L1081[12:32:43] <heatseeker0> is there a max level an experience upgrade can get to?
L1082[12:33:55] ⇦ Quits: VikeStep (~VikeStep@101.162.12.98) (Quit: Leaving)
L1083[12:40:23] *** tattyseal|soup is now known as tattyseal
L1084[12:43:46] ⇦ Quits: Timmy94 (webchat@95.91.62.70) (Ping timeout: 186 seconds)
L1085[12:47:11] ⇨ Joins: asie (~asie@078088168214.elblag.vectranet.pl)
L1086[12:47:11] zsh sets mode: +v on asie
L1087[12:51:50] ⇦ Quits: calclavia (sid15812@id-15812.charlton.irccloud.com) ()
L1088[12:52:07] ⇨ Joins: calclavia (sid15812@id-15812.uxbridge.irccloud.com)
L1089[12:52:07] zsh sets mode: +v on calclavia
L1090[13:01:02] *** LearningFairy is now known as Daiyousei
L1091[13:15:10] <Lumien> i think in some video it said 30
L1092[13:16:05] *** Keridos_off is now known as Keridos
L1093[13:18:18] ⇦ Quits: alekso56_off (~alekso56@ti0020a400-0050.bb.online.no) (Ping timeout: 378 seconds)
L1094[13:18:57] ⇨ Joins: theREALorthoplex64 (~orthoplex@cpe-68-206-247-199.satx.res.rr.com)
L1095[13:39:36] *** ShadowKatStudios is now known as SKS-Away
L1096[13:39:39] ⇦ Quits: tattyseal (~tattyseal@95.144.48.41) (Quit: Leaving)
L1097[13:41:37] ⇨ Joins: WebFreak001 (~WebONator@ip-84-118-185-73.unity-media.net)
L1098[13:42:42] *** Skye|away is now known as Skye
L1099[13:57:35] ⇨ Joins: Zequan (~Zequan@d110-33-241-71.bla801.nsw.optusnet.com.au)
L1100[14:02:24] ⇨ Joins: alekso56_off (~alekso56@ti0020a400-3659.bb.online.no)
L1101[14:06:27] *** Skye is now known as Skye|away
L1102[14:12:01] <WebFreak001> does anyone know if palletes for screens actually do anything in terms of performance or color depth instead of hex colors?
L1103[14:14:28] *** SKS-Away is now known as ShadowKatStudios
L1104[14:15:54] ⇦ Quits: tekacs (sid17636@id-17636.charlton.irccloud.com) ()
L1105[14:16:03] ⇨ Joins: tekacs (sid17636@id-17636.uxbridge.irccloud.com)
L1106[14:22:59] ⇦ Quits: theREALorthoplex64 (~orthoplex@cpe-68-206-247-199.satx.res.rr.com) (Ping timeout: 200 seconds)
L1107[14:23:48] ⇨ Joins: Hogenheim (webchat@d51A5ECD9.access.telenet.be)
L1108[14:23:59] <Hogenheim> Hallo
L1109[14:24:17] <WebFreak001> hi
L1110[14:24:32] *** Cruor|Away is now known as Cruor
L1111[14:24:41] <Hogenheim> i have a question about opencomputers is this the right place to ask them?
L1112[14:24:49] <WebFreak001> "Don't ask to ask, just ask!
L1113[14:24:49] <WebFreak001> "
L1114[14:24:55] <Hogenheim> true
L1115[14:25:17] <Hogenheim> i have a tier one case with screen en keyboard place like showed in multipe youtube vids
L1116[14:25:25] <Cruor> WebFreak001: wtf i sue you for copying CC topic :<
L1117[14:25:36] <Hogenheim> the case contains a graphics card cpu and memory
L1118[14:25:39] <WebFreak001> xD i quoted it, i didnt copy it lol
L1119[14:25:41] <Hogenheim> it has enough power
L1120[14:25:49] <Hogenheim> but when i turn it on it just sais BEEP
L1121[14:25:54] <Hogenheim> nothing else
L1122[14:25:55] <Keridos> Hogenheim: You need a boot device and a bios
L1123[14:25:57] <Cruor> I WILL HUNT YOU DOWN :<
L1124[14:26:03] <Hogenheim> i added an eeprom
L1125[14:26:04] <dangranos> sue sangar :P
L1126[14:26:08] <Keridos> lua one?
L1127[14:26:13] <WebFreak001> add lua bios and openos and a drive
L1128[14:26:20] <dangranos> #suesangar
L1129[14:26:25] <Hogenheim> it just sais eeprom
L1130[14:26:25] *** Daiyousei is now known as ShoweringFairy
L1131[14:26:27] <Keridos> yes
L1132[14:26:35] <Keridos> what WebFreak001 saii
L1133[14:26:36] <Keridos> said
L1134[14:26:42] <Keridos> or i did actually as well :D
L1135[14:26:45] <WebFreak001> then run install on openos then you can remove the openos floppy and add stuff like openloader because thats nice for making os's :p
L1136[14:26:46] <Hogenheim> how do i had a lua bios
L1137[14:26:55] <Keridos> eeprom plus book
L1138[14:26:59] <Hogenheim> aaach
L1139[14:27:01] <dangranos> ^
L1140[14:27:05] <Cruor> aaacho? :o
L1141[14:27:08] <Hogenheim> lets try that :)
L1142[14:27:17] <Hogenheim> sec
L1143[14:27:31] <Hogenheim> i've been at it all day
L1144[14:27:33] <Cruor> i wanna home, and derp with OC, i think .-.
L1145[14:27:45] <Hogenheim> i am going insane about this :)
L1146[14:27:56] <Cruor> i dont blame you ;_;
L1147[14:28:20] <WebFreak001> is posting screenshots allowed?
L1148[14:28:47] <Cruor> preferably, i guess, if it is related .-.
L1149[14:28:49] <dangranos> why it shouldnt be allowed?
L1150[14:28:53] <Cruor> if it isnt related, post it anyway
L1151[14:29:12] <dangranos> this channel can be very offtopic normally
L1152[14:29:14] <Cruor> by all means, "i have a problem *picture of cat*"
L1153[14:29:29] <ShadowKatStudios> :D
L1154[14:29:30] * dangranos pokes sks
L1155[14:29:32] <dangranos> damn
L1156[14:29:36] <WebFreak001> http://i.imgur.com/HBHoTUm.png this is the stuff i have Hogenheim ^^
L1157[14:29:41] <ShadowKatStudios> Heh, ninja'd
L1158[14:30:13] <ShadowKatStudios> WebFreak001: Make sure the EEPROM is the Lua BIOS and switch out the OpenLoader for an OpenOS disk
L1159[14:30:38] <WebFreak001> i added a Lua BIOS and ran flash install or something like that from openloader
L1160[14:30:43] <dangranos> ouch
L1161[14:30:52] <Hogenheim> so in a crafting bench added the eeprom and a book
L1162[14:30:56] <Hogenheim> that makes a bios
L1163[14:30:57] <Hogenheim> ?
L1164[14:30:58] <dangranos> sore throat
L1165[14:31:04] ⇦ Quits: alekso56_off (~alekso56@ti0020a400-3659.bb.online.no) (Read error: Connection reset by peer)
L1166[14:31:05] <WebFreak001> if it says bios
L1167[14:31:13] <ShadowKatStudios> WebFreak001: Owait, you're not the one having the issue
L1168[14:31:14] <Keridos> it should say lua bios
L1169[14:31:21] <Hogenheim> nope
L1170[14:31:21] <ShadowKatStudios> Do excuse me, I just woke up
L1171[14:31:27] <Hogenheim> allas
L1172[14:31:28] <Cruor> why is OC components so sane ;_;
L1173[14:31:34] <WebFreak001> i think i recently saw a bug on github that you cant craft the EEPROM once you put it in the computer
L1174[14:31:35] <Hogenheim> it sais eeprom
L1175[14:31:40] <Hogenheim> ach
L1176[14:31:41] <Hogenheim> ok
L1177[14:31:43] <Hogenheim> damn it
L1178[14:31:48] <Keridos> WebFreak001: i was able to do it in the newest version
L1179[14:31:51] <dangranos> ^
L1180[14:31:54] <dangranos> update
L1181[14:32:03] <WebFreak001> hm ok then its fixed :p
L1182[14:32:20] <WebFreak001> well i got it for programming xD
L1183[14:32:20] <Cruor> now if Lua had range objects...
L1184[14:32:20] <Hogenheim> allright
L1185[14:32:21] <Cruor> get(x: number, y: number): string, number, number, number or nil, number or nil
L1186[14:32:22] <Hogenheim> NICE
L1187[14:32:23] <Cruor> >_<
L1188[14:32:31] <Hogenheim> my god
L1189[14:32:36] <Hogenheim> a day waisted
L1190[14:32:38] <Hogenheim> :(
L1191[14:32:38] <ShadowKatStudios> Cruor: Can't cope with the sanity of OC compared to CC?
L1192[14:32:44] <WebFreak001> i wanted to make a D compiler for OC
L1193[14:32:45] <dangranos> :D
L1194[14:32:51] <Cruor> ShadowKatStudios: nope
L1195[14:32:56] <dangranos> WebFreak001, what stopped you?
L1196[14:33:17] <WebFreak001> what stopped me? I got the idea like a few hours today and i didnt even start yet xD
L1197[14:33:22] <ShadowKatStudios> D is the thing that came after C, right?
L1198[14:33:33] <WebFreak001> http://dlang.org/
L1199[14:34:10] <ShadowKatStudios> C-like indeed
L1200[14:34:12] <WebFreak001> i love D ^^
L1201[14:34:23] <Cruor> ill consider using OC once i get my cruor friendly recipes going >_<
L1202[14:34:24] <WebFreak001> it compiles natively. You could say its C++ rethought ^^
L1203[14:34:39] <ShadowKatStudios> WebFreak001: Take one of those out of context.
L1204[14:34:59] <ShadowKatStudios> Cruor: I'm working on a super-simple super-cheap recipe set- I call it CC-style recipes
L1205[14:35:06] <ShadowKatStudios> Just to poke fun at CC
L1206[14:35:06] <Cruor> ShadowKatStudios: i prefer Julia, she runs great, but the D is also quite good
L1207[14:35:31] <Caitlyn> Cruor, likes the D, check..
L1208[14:35:49] <Cruor> god bless the D \o/
L1209[14:35:55] <WebFreak001> but until I want to make a D compiler I will make something different because lua OOP is pretty garbage and all the D compilers are OOP xD
L1210[14:36:11] <dangranos> we need x86 (at least) architecture
L1211[14:36:12] <Cruor> s/OOP//
L1212[14:36:12] <Kibibyte> <WebFreak001> but until I want to make a D compiler I will make something different because lua is pretty garbage and all the D compilers are OOP xD
L1213[14:36:20] <dangranos> s/ /
L1214[14:36:20] <Kibibyte> <WebFreak001> but until I want to make a D compiler I will make something different because lua is pretty garbage and all the D compilers are OOP xD
L1215[14:36:23] <ShadowKatStudios> WebFreak001: Is there D in Java? Alternatively pull a Sangar and make it work using native lubs'
L1216[14:36:25] <ShadowKatStudios> libs*
L1217[14:36:27] ⇦ Quits: CoderPuppy (~cpup@32.218.112.219) (Read error: Connection reset by peer)
L1218[14:36:32] <WebFreak001> dont think so
L1219[14:36:41] <WebFreak001> there is DMD, GDC and LDC
L1220[14:36:55] <WebFreak001> DMD has DMC (C compiler) as backend, GDC GCC and LDC LLVM
L1221[14:36:57] ⇨ Joins: alekso56_off (~alekso56@ti0020a400-3659.bb.online.no)
L1222[14:37:05] <Keridos> hm
L1223[14:37:17] <Keridos> alternative languages instead of lua would be awesome in OC
L1224[14:37:17] <WebFreak001> so its not a scripting language that makes it hard to integrate
L1225[14:37:30] <Cruor> Python please
L1226[14:37:31] <Cruor> .-.
L1227[14:37:35] <WebFreak001> and javascript D
L1228[14:37:36] <WebFreak001> xD
L1229[14:37:37] <Keridos> I mean I can use lua, but I really like c-style languages more
L1230[14:37:46] <ShadowKatStudios> Keridos: Well, we have 6502.
L1231[14:37:48] * Cruor throws Lua in the GC
L1232[14:37:52] <Hogenheim> anybody got a nice mininging script in lua ?
L1233[14:37:53] <Keridos> assembler?
L1234[14:37:58] <Cruor> we have 6502? o_o
L1235[14:38:02] <Cruor> GIF
L1236[14:38:05] <ShadowKatStudios> Cruor: Talk to gamax
L1237[14:38:17] <Cruor> gamax92: you sun of a potato, gif
L1238[14:38:21] <WebFreak001> i would like javascript, because then you could use TypeScript, CoffeeScript or Dart
L1239[14:38:30] <Cruor> or Python :>
L1240[14:38:42] <WebFreak001> also there is already some kind of javascript support in java
L1241[14:38:43] <Cruor> http://www.skulpt.org/
L1242[14:38:50] <Keridos> the D compiler would allow to use D instead of lua?
L1243[14:38:51] <WebFreak001> idk im mostly C# and D coder
L1244[14:38:56] <Cruor> i vote for JS juts for the sake of getting Python
L1245[14:39:04] <dangranos> screw languages, we need VM
L1246[14:39:13] <Cruor> screw VMs, we need not Lua :>
L1247[14:39:43] <WebFreak001> we could make a javascript -> lua compiler together :P
L1248[14:39:53] <ShadowKatStudios> Lua isn't going anywhere from OC. Doesn't stop you from writing another env, though
L1249[14:40:15] <WebFreak001> https://code.google.com/p/v8/ http://www.ecma-international.org/publications/standards/Ecma-262.htm
L1250[14:40:35] <WebFreak001> good resources if someone want to make a javascript runtime/compiler
L1251[14:40:47] * ShadowKatStudios dislikes javascript
L1252[14:40:54] <dangranos> for those who can code in java/scala, you could write addon for OC that adds new architecture
L1253[14:41:19] <WebFreak001> ShadowKatStudios you can use Dart, TypeScript or CoffeeScript if we have javascript :P
L1254[14:41:35] * heatseeker0 would love to be able to write Java "scripts" that run on OC computers
L1255[14:41:36] <ShadowKatStudios> I just want lisp
L1256[14:41:53] <WebFreak001> there is a lisp -> lua program on the OC forums
L1257[14:42:25] <ShadowKatStudios> I know.
L1258[14:42:27] *** Cazzar is now known as Cazzar|Away
L1259[14:42:28] <ShadowKatStudios> It doesn't run.
L1260[14:42:37] <WebFreak001> well i didnt try it yet
L1261[14:42:58] <ShadowKatStudios> "Lisp is a shiv which comes in many forms. Anyone who uses this is probably crazy and dangerous."
L1262[14:43:29] <ShadowKatStudios> Anyone know how the stupid new MC item naming system works? How do I refer to a feather?
L1263[14:43:34] <ShadowKatStudios> minecraft:feather?
L1264[14:43:43] <WebFreak001> yeah or just feather
L1265[14:43:48] <WebFreak001> i think the minecraft: is optional
L1266[14:44:01] <WebFreak001> it works without it for me every time
L1267[14:44:22] <ShadowKatStudios> I'm modifying the OC recipes to be as cheap as CC, gotta be on the safe side
L1268[14:44:47] <WebFreak001> oh in java, isnt there an enum then? xD
L1269[14:45:00] <ShadowKatStudios> Java? Nope.
L1270[14:45:05] <ShadowKatStudios> OC has config files for this
L1271[14:45:13] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1272[14:45:16] <WebFreak001> oh yeah config files xD
L1273[14:45:22] ⇦ Quits: Zequan (~Zequan@d110-33-241-71.bla801.nsw.optusnet.com.au) (Quit: Cocoa and coffee is all I need!)
L1274[14:45:32] <heatseeker0> There's this: https://github.com/zekesonxx/pinecone
L1275[14:47:30] <WebFreak001> comments dont work srsly?
L1276[14:48:28] <ShadowKatStudios> Cruor: THe main issue you have with OC's recipes is the greg-like amount of steps, right?
L1277[14:49:03] <gamax92> inb4 is not here
L1278[14:49:55] <WebFreak001> right now my os is called SOS lol
L1279[14:50:26] <Cruor> ShadowKatStudios: yup
L1280[14:50:42] <ShadowKatStudios> Cruor: Well, I'm eliminating half the items in the mod, so yay
L1281[14:50:54] <gamax92> lol
L1282[14:51:03] <Cruor> pretty much doing the same >_<
L1283[14:51:11] <Cruor> and reduced the silly amount of diamonds
L1284[14:51:14] <gamax92> Lets see who does it better.
L1285[14:51:21] <gamax92> You have one hour
L1286[14:51:22] <gamax92> Go!
L1287[14:51:32] <ShadowKatStudios> Mine has funny comments depending on what music I'm listening to
L1288[14:51:32] <Ender> I have to go to some safeguarding thing soon :/
L1289[14:51:46] <ShadowKatStudios> Therefore I win
L1290[14:51:51] <Cruor> gamax92: no .-.
L1291[14:51:59] <gamax92> oh
L1292[14:52:05] *** Cazzar|Away is now known as Cazzar
L1293[14:52:09] <gamax92> well i guess you win by default ShadowKatStudios
L1294[14:52:21] <Cruor> how would i even make recipes at work
L1295[14:52:26] <Cruor> 10min before we are done <_>
L1296[14:52:43] <gamax92> Cruor y u @ work.
L1297[14:52:56] <Cruor> cuz i get phat lewt for hanging on irc
L1298[14:53:02] <Ender> Also I managed to get dynamically set active tabs working on my site (not live yet, still in rev envy)
L1299[14:53:05] <Ender> *rev
L1300[14:53:11] <ShadowKatStudios> http://youtu.be/QqWVJ0G8Siw
L1301[14:53:12] <Ender> Duck off tablet
L1302[14:53:12] -Kibibyte- [ShadowKatStudios] 「ME!ME!ME! feat. Daoko」 TeddyLoid - Lyrics! Full Song! ºDownload Availableº Original Soundtrack | by nBDyZSm1S2UFwgzCyIbCQg | 5m37s | 4w6d ago | 674,232 views | Rated: 4.92/5.00
L1303[14:53:30] <Cruor> is there any emulators for OC?
L1304[14:53:34] <WebFreak001> RIP Headphones
L1305[14:53:42] ⇨ Joins: marcin212 (~marcin212@176.111.135.116)
L1306[14:53:49] <ShadowKatStudios> There's one that only builds on Linux and doesn't have any docs as to how
L1307[14:53:58] <Ender> Cruor, Alexius has one
L1308[14:54:03] <gamax92> lol
L1309[14:54:05] <Cruor> Kibibyte: y u use userID, instead of username
L1310[14:54:06] <Cruor> D:
L1311[14:54:10] <Ender> Not sure what state its in though
L1312[14:54:13] <Cruor> userId is scary ;_;
L1313[14:54:22] <Keridos> Hm, me controllers getItemsInNetwork() returns nil for me on my me controller
L1314[14:54:22] <WebFreak001> since its open source it shouldnt be hard to make a OC emulator
L1315[14:54:48] <ShadowKatStudios> keyboard { input: [[button, button, button] [button, button, button]] }
L1316[14:55:01] <Cruor> ShadowKatStudios: pretty much, lol
L1317[14:55:16] <Cruor> think i have button * 3, stone * 3
L1318[14:55:23] <Cruor> or something >_< i dont remember
L1319[14:55:31] <Cruor> gtfo button groups and what not
L1320[14:55:45] <Keridos> lol
L1321[14:55:47] <ShadowKatStudios> Cruor: Opinion on transistor recipe?
L1322[14:55:48] <Keridos> not enough memory
L1323[14:55:52] <Cruor> i removed transistors
L1324[14:56:02] <ShadowKatStudios> I was gonna skip all the chip tiers
L1325[14:56:12] <ShadowKatStudios> Just have transistors
L1326[14:56:23] <ShadowKatStudios> Fuck realism, these are CC-style recipes
L1327[14:56:34] <Cruor> i have tiers, just made t1 stone/iron based, t2 gold based, t3 lapis/obsidian/diamond
L1328[14:56:38] <Ender> ewww cc
L1329[14:56:39] <Hogenheim> any side with usefulle lau scripts for robots?
L1330[14:56:47] <ShadowKatStudios> nau
L1331[14:56:48] <Hogenheim> any sites*
L1332[14:57:13] <Ender> Hogenheim, checked the forums?
L1333[14:57:15] <ShadowKatStudios> Hogenheim: Uhm, the forums would be the only place, most of the dev that goes on here is purely theoretical
L1334[14:57:16] <Keridos> ok i have 2181 different items in my network
L1335[14:57:25] <WebFreak001> OC is much better for making OSs ^^
L1336[14:57:32] <Keridos> ouch
L1337[14:57:35] <Cruor> > CC can OS
L1338[14:57:40] <ShadowKatStudios> > CC
L1339[14:57:42] <ShadowKatStudios> > OS
L1340[14:57:44] <Keridos> it lists them in a table
L1341[14:57:45] <Cruor> > resource packs
L1342[14:57:45] <ShadowKatStudios> choose one
L1343[14:57:52] ⇨ Joins: Johannes13__ (~Johannes@141.70.98.52)
L1344[14:57:55] <Cruor> > implying
L1345[14:57:56] <Cruor> > hi
L1346[14:58:01] <ShadowKatStudios> > evening
L1347[14:58:06] <ShadowKatStudios> > morning actually
L1348[14:58:11] <Cruor> > i dont think the scrubs can see our text
L1349[14:58:15] <Ender> > afternoon
L1350[14:58:16] <Keridos> wow autocrafting per OC computer is really not good now
L1351[14:58:25] <ShadowKatStudios> > greentext can be invisible to some
L1352[14:58:26] <WebFreak001> then make a mod for it xD
L1353[14:58:31] <Cruor> D: RRRUUUUUN
L1354[14:58:35] <Cruor> 1600RUNNNN
L1355[14:58:43] <Keridos> you need to cycle through one large list of craftables then cycle through the complete list of all items in the network for each item you want to craft
L1356[14:58:44] <ShadowKatStudios> 4PM
L1357[14:58:53] <Keridos> that is gonna be slow as hell
L1358[14:58:53] <ShadowKatStudios> :P good 2 AM
L1359[14:58:54] <Ender> > hello ShadowKatStudios
L1360[14:59:06] <ShadowKatStudios> >Touche, Ender
L1361[14:59:06] *** Cruor is now known as Cruor|Away
L1362[14:59:14] <Hogenheim> owkey thanks for the information
L1363[14:59:17] <ShadowKatStudios> ._.
L1364[14:59:21] *** ShoweringFairy is now known as Daiyousei
L1365[14:59:23] <Keridos> how fast is OC lua btw?
L1366[14:59:23] <Ender> Anyway, I g2g for some time
L1367[14:59:24] <Hogenheim> the mod is awsome if you know how it works
L1368[14:59:47] <ShadowKatStudios> Keridos: It uses native lua rather than LuaJ
L1369[14:59:59] ⇦ Quits: Johannes13_ (~Johannes@141.70.98.52) (Ping timeout: 189 seconds)
L1370[15:00:00] <WebFreak001> use coroutines if you want to process something
L1371[15:00:10] <Keridos> can it thread?
L1372[15:00:27] <ShadowKatStudios> Coroutines, no proper threading though
L1373[15:00:31] ⇦ Quits: Hogenheim (webchat@d51A5ECD9.access.telenet.be) (Quit: Web client closed)
L1374[15:00:31] <WebFreak001> coroutine is thready enough
L1375[15:00:39] <Keridos> hm, should I just fire coroutines for all the crafting requests?
L1376[15:00:49] <Keridos> basically i have a table of things i want to keep a stock of in my system
L1377[15:01:06] <ShadowKatStudios> The best you can do for preemptive is force threads to yield
L1378[15:01:23] <Keridos> and the controller can getCraftables and getItemsInNetwork. getcraftables is about 100 long, getitems about 2200 items
L1379[15:01:32] <WebFreak001> i guess creating coroutines is taking time too so i wouldnt make for every recipe but for like ever 8th recipe or so
L1380[15:01:55] <Keridos> and I had the feeling that even cycling a modest long list takes multiple seconds
L1381[15:02:10] <WebFreak001> depends on what you do in that loop
L1382[15:02:18] <Keridos> so this would need the lua to cycle through about 200k items in worstcase
L1383[15:02:44] <Keridos> https://paste.ee/p/yENYo
L1384[15:02:56] <Keridos> the me controller had a neat bug
L1385[15:03:15] <Keridos> getCraftables returned the items in the network for their crafting jobs rather than the amount the recipe produces
L1386[15:03:21] <WebFreak001> dont print for every entry lol
L1387[15:03:30] <Keridos> I don'T
L1388[15:03:46] <Keridos> that is only printed when the if casement is equal
L1389[15:04:02] <ShadowKatStudios> So now that I'm running with 2 GPUs, does that warrant a new guts pic?
L1390[15:04:08] <Keridos> and that will only happen once for both loops
L1391[15:04:33] <Keridos> thing is now I have to loop through the item list as well
L1392[15:04:56] <Keridos> currently the full loop through my 25ish entries for autocrafting and 120 or so recipes takes about 30 seconds
L1393[15:05:13] <Keridos> now multiply that times 2200 would mean it'd take several hours for one cycle now
L1394[15:05:39] <Temia> I don't think I've taken a guts pic for the past seven years .-.
L1395[15:06:01] <Keridos> I think we need a function that can list the amount of items in the network by the label used for crafting jobs
L1396[15:08:16] <WebFreak001> is there a way to copy a byte array to the screen without rendering it pixel by pixel so its fast?
L1397[15:08:47] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 189 seconds)
L1398[15:08:59] *** Techokami|Off is now known as Techokami
L1399[15:13:03] <ShadowKatStudios> WebFreak001: Not at the moment, hopefully in 1.5 there will be an off-screen rendering area or something, or possibly just copying from a buffer, but nothing for now
L1400[15:13:38] <WebFreak001> :C
L1401[15:17:03] <ShadowKatStudios> Anyway, time to reboot to attempt to get multi-GPU working
L1402[15:17:36] <Temia> Oh, someone else is looking into it?
L1403[15:17:40] *** ShadowKatStudios is now known as SKS-Away
L1404[15:17:48] <Temia> And there are plaaaans? o.o
L1405[15:17:55] <Temia> I wasn't told of this yesterday D:
L1406[15:18:15] <gamax92> looking into what
L1407[15:18:54] <Temia> The idea of copying arrays from offscreen.
L1408[15:18:59] <Temia> For performance purposes
L1409[15:25:23] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1410[15:29:38] ⇦ Quits: cpup (~cpup@32.218.112.219) (Remote host closed the connection)
L1411[15:29:50] ⇨ Joins: CoderPuppy (~cpup@32.218.112.219)
L1412[15:33:23] ⇦ Quits: CoderPuppy (~cpup@32.218.112.219) (Ping timeout: 194 seconds)
L1413[15:35:13] ⇦ Quits: Soni (SoniEx2@187.2.53.62) (Ping timeout: 200 seconds)
L1414[15:38:10] *** Cruor|Away is now known as Cruor
L1415[15:38:56] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1416[15:39:55] *** g is now known as gAway2002
L1417[15:40:36] ⇨ Joins: Soni (SoniEx2@187.2.53.62)
L1418[15:40:37] ⇨ Joins: dangranos_ (~dangranos@37.23.234.93)
L1419[15:42:33] ⇦ Quits: asie (~asie@078088168214.elblag.vectranet.pl) (Ping timeout: 200 seconds)
L1420[15:43:21] ⇦ Quits: dangranos (~dangranos@178.186.2.37) (Ping timeout: 194 seconds)
L1421[15:45:14] <heatseeker0> Does anyone know if the robot XP is lost if it gets disassembled?
L1422[15:45:31] <heatseeker0> It would be neat if it were stored in the experience upgrade.
L1423[15:45:37] <Ender> And back
L1424[15:45:43] ⇨ Joins: Vexatos (~Vexatos@p200300556E1C1F8965BE28531B945D83.dip0.t-ipconnect.de)
L1425[15:45:43] zsh sets mode: +v on Vexatos
L1426[15:45:52] <Ender> heatseeker0 I think it is stored
L1427[15:45:59] <Vexatos> \o
L1428[15:46:13] <heatseeker0> Let's put this theory to test
L1429[15:46:49] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 194 seconds)
L1430[15:54:55] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1431[15:59:50] *** prassel|off is now known as prasselpikachu
L1432[16:02:12] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 378 seconds)
L1433[16:12:01] <Soni> why is default buffer size so huge? (half the free RAM?!)
L1434[16:12:21] <dangranos_> this is going to hurt
L1435[16:12:27] <dangranos_> i hate sore throat
L1436[16:12:28] <Soni> wait bbiab
L1437[16:12:35] <Soni> well, uhh
L1438[16:12:36] <Soni> bbl
L1439[16:13:14] *** gAway2002 is now known as g
L1440[16:15:26] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1441[16:15:42] *** prasselpikachu is now known as prassel|off
L1442[16:16:59] ⇦ Quits: johnlage (johnlage@never.use.root.sx) (Remote host closed the connection)
L1443[16:18:10] *** prassel|off is now known as prasselpikachu
L1444[16:20:33] ⇨ Joins: johnlage (johnlage@never.use.root.sx)
L1445[16:25:29] ⇨ Joins: asie (~asie@078088168214.elblag.vectranet.pl)
L1446[16:25:29] zsh sets mode: +v on asie
L1447[16:26:24] ⇦ Quits: ^v (~ping@2601:4:680:104c:44f6:6486:edf6:56d7) (Ping timeout: 378 seconds)
L1448[16:27:23] <dangranos_> http://imgur.com/gallery/ouQli
L1449[16:28:09] *** prasselpikachu is now known as prassel|off
L1450[16:33:00] *** dangranos_ is now known as dangranos
L1451[16:37:15] ⇨ Joins: ^v (~ping@2601:4:680:104c:505e:fb1a:b94c:ce87)
L1452[16:42:21] ⇨ Joins: Vexaton (~Vexatos@p200300556E1C1F97FDD7DCCC27304971.dip0.t-ipconnect.de)
L1453[16:42:21] zsh sets mode: +v on Vexaton
L1454[16:42:44] ⇦ Quits: Vexatos (~Vexatos@p200300556E1C1F8965BE28531B945D83.dip0.t-ipconnect.de) (Killed (anarchy.esper.net (Nickname regained by services)))
L1455[16:42:44] *** Vexaton is now known as Vexatos
L1456[16:44:55] ⇦ Quits: johnlage (johnlage@never.use.root.sx) (Quit: *.I *.died)
L1457[16:46:16] *** alekso56_off is now known as alekso56
L1458[16:46:43] ⇨ Joins: johnlage (johnlage@never.use.root.sx)
L1459[16:48:01] ⇨ Joins: Thog (~Thog@37.187.216.30)
L1460[16:48:36] *** SKS-Away is now known as ShadowKatStudios
L1461[16:49:01] <ShadowKatStudios> Well this is a new thing.
L1462[16:49:17] <ShadowKatStudios> I just did some cable management on my desktop.
L1463[16:49:19] <ShadowKatStudios> It looks so much nicer :D
L1464[16:49:49] <asie> Sangar?
L1465[16:49:53] <ShadowKatStudios> Shitty consumer cases are shitty, though- it wouldn't close unless my motherboard cable was in the right spot 'n' stuff
L1466[16:50:42] <ShadowKatStudios> Also I'm using sandwich bag ties to bind cables together and to the case.
L1467[16:54:43] ⇨ Joins: MrRatermat (~ratermat@host81-158-132-107.range81-158.btcentralplus.com)
L1468[17:09:35] *** LordFokas|off is now known as LordFokas
L1469[17:14:21] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 194 seconds)
L1470[17:15:29] <Temia> I'm sorry.
L1471[17:16:23] * gamax92 glomps Temia
L1472[17:17:31] <Alissa> Hi sorry, I'm Alissa.
L1473[17:17:31] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1474[17:17:48] <Temia> Gack what D:
L1475[17:17:54] <Temia> Why glomping!?
L1476[17:18:04] * ShadowKatStudios is doing his annual workspace clean
L1477[17:18:05] <Temia> Help! Dx *flailmoo*
L1478[17:18:16] * ShadowKatStudios offers Temia a screwdriver
L1479[17:18:30] <ShadowKatStudios> Hit him with that a few times. If that fails, stab him with it.
L1480[17:19:04] <gamax92> Temia: .-. my hugs are not to harm .-.
L1481[17:19:08] <gamax92> y u find harm
L1482[17:19:12] *** Greylocke|afk is now known as Greylcoke
L1483[17:19:16] *** Greylcoke is now known as Greylocke
L1484[17:20:03] <Temia> I am confused and nervous D:
L1485[17:21:24] <ShadowKatStudios> Temia: Use the screwdriver.
L1486[17:21:43] * gamax92 takes screwdriver and stabs ShadowKatStudios
L1487[17:21:53] * ShadowKatStudios wants to see gamax92 get stabbed, not for any particular reason, but just for the lulz
L1488[17:21:53] <gamax92> y u supply people with weapons
L1489[17:21:58] <gamax92> you are a violent person
L1490[17:21:59] <ShadowKatStudios> Okay, that works.
L1491[17:22:03] * ShadowKatStudios pulls out a pocketknife
L1492[17:22:14] * ShadowKatStudios stabs gamax92 several times in the back
L1493[17:22:35] <ShadowKatStudios> Because it's less effort.
L1494[17:22:40] <Temia> .-.
L1495[17:22:57] * gamax92 pulls out a automatic and fills ShadowKatStudios's with bullets
L1496[17:23:09] * ShadowKatStudios phases out temporarily
L1497[17:24:21] <Temia> If you want stabbing, why didn't you say so? I've got pointy implements of my own .-.
L1498[17:24:23] * Temia headbutts gamax.
L1499[17:24:37] ⇨ Joins: Negi (~Poireau@2a01:e35:2f6a:7060:e2ca:94ff:fe1f:76e0)
L1500[17:24:47] * gamax92 explodes, showering Temia with blood
L1501[17:24:48] <ShadowKatStudios> :D
L1502[17:24:53] <Temia> .-.
L1503[17:24:57] * Temia mu.
L1504[17:25:00] * Temia showers.
L1505[17:25:01] * ShadowKatStudios offers Temia a towel
L1506[17:25:04] <ShadowKatStudios> ._.
L1507[17:25:06] <ShadowKatStudios> Ninjas.
L1508[17:25:15] <gamax92> DAYUM NINJAS
L1509[17:25:29] <Negi> N i n j a \o/
L1510[17:25:35] <Negi> I have problems breathing.
L1511[17:25:45] <ShadowKatStudios> That's not good.
L1512[17:25:49] <gamax92> D:
L1513[17:25:54] <ShadowKatStudios> I'd suggest seeing someone about that
L1514[17:26:21] *** Skye|away is now known as Skye
L1515[17:26:24] <gamax92> its like trying to type "How" but instead put
L1516[17:26:31] <gamax92> fucking keyboard, pls
L1517[17:26:43] <gamax92> its like trying to type "How" but instead put "Hot", and then instead of hitting backspace you hit enter
L1518[17:26:53] <gamax92> also, i just accidently did that latter part.
L1519[17:27:40] *** Skye is now known as Skye|homework
L1520[17:27:56] <ShadowKatStudios> I just found a stickynote from last december- anyone want to guess what it says on it?
L1521[17:28:14] <gamax92> TODO: Shower
L1522[17:28:22] <gamax92> that?
L1523[17:28:24] <ShadowKatStudios> "1150 or bust"
L1524[17:29:01] <gamax92> ????
L1525[17:29:12] <ShadowKatStudios> I was buying a new CPU
L1526[17:29:15] <ShadowKatStudios> and motherboard
L1527[17:29:17] <ShadowKatStudios> and RAM
L1528[17:29:33] <ShadowKatStudios> 1150 or nothing
L1529[17:29:38] *** rakiru|offline is now known as Kasen
L1530[17:29:57] ⇦ Quits: asie (~asie@078088168214.elblag.vectranet.pl) (Ping timeout: 194 seconds)
L1531[17:30:00] <ShadowKatStudios> I may finally have space for an intake fan.
L1532[17:30:04] <ShadowKatStudios> :D
L1533[17:31:42] <Ivoah> How do you write data to an EEPROM chip?
L1534[17:31:48] <Ivoah> from a computer
L1535[17:31:59] <ShadowKatStudios> component.eeprom.set
L1536[17:33:55] <Ivoah> Oh, you can remove the Lua BIOS after the computer boots, great
L1537[17:34:35] <ShadowKatStudios> Yep :D
L1538[17:36:28] <Negi> If you don't have easy access to the case, it's better to leave it in, tho :_:
L1539[17:37:28] <ShadowKatStudios> You can also add another case to act as an EEPROM writer
L1540[17:37:29] <Ivoah> There should be an EEPROM reader/writer block
L1541[17:37:35] <Ivoah> ninja'd
L1542[17:38:01] <Temia> Can you actually write to it from another computer though?
L1543[17:38:08] ⇨ Joins: sciguyryan (~sciguyrya@93-94-245-32.dynamic.swissvpn.net)
L1544[17:38:44] <gamax92> can I format EEPROM's as an MSDOS filesystem?
L1545[17:38:44] <gamax92> probably not.
L1546[17:38:44] <gamax92> whats FAT12's limit
L1547[17:40:10] <ShadowKatStudios> Temia: I've heard reports of ti
L1548[17:40:12] <ShadowKatStudios> it
L1549[17:40:30] <Temia> Neat. o.o I figured you'd need to be able to turn on the computer to access it via the component API but neat!
L1550[17:40:48] <Temia> also Gamax, It might be easier to just write an address table and emulate that as a filesystem
L1551[17:41:20] <Ivoah> Is there any way to scroll in the terminal?
L1552[17:41:26] <ShadowKatStudios> gamax92: I'm betting FAT12's lower limit is more than 4k
L1553[17:41:47] <Temia> Might be better to try making an initramfs, especially if you can make some compact compression code
L1554[17:41:55] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 198 seconds)
L1555[17:42:21] <ShadowKatStudios> You can save 1/8 of the space by cutting out the unused ASCII bit
L1556[17:43:32] <Temia> Maybe in combination with other algorithms, but on its own I can't help but wonder if the code to break it back into an 8-bit addressing space would take more space
L1557[17:43:45] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1558[17:44:32] <ShadowKatStudios> Probably heh
L1559[17:45:09] <gamax92> Temia: an address table?
L1560[17:45:43] <Temia> Yeah. A table of filename strings followed by the linear address in memory where they start.
L1561[17:45:46] <gamax92> oh.
L1562[17:45:48] <gamax92> ._.
L1563[17:46:21] ⇨ Joins: IvoahMC (~ivoahmc@dsl-216-227-122-44.taconic.net)
L1564[17:49:24] <ShadowKatStudios> So my server takes >10 seconds of 100% CPU usage to scale a 2592x1944 image down to 640x480
L1565[17:49:42] <gamax92> /!\ GAMAX92 WAS STARTLED /!\
L1566[17:49:52] <gamax92> these colors are awful, dammit XChat
L1567[17:52:17] <Ivoah> Why won't my drone turn on?
L1568[17:55:28] <ShadowKatStudios> Has it got an EEPROM?
L1569[17:55:32] <ShadowKatStudios> Has it got power?
L1570[17:58:04] <IvoahMC> It has an EEPROM and I disabled power
L1571[17:58:32] <ShadowKatStudios> What program does the EEPROM have?
L1572[17:59:07] <IvoahMC> I put the LuaBIOS in it
L1573[17:59:26] <IvoahMC> *Lua BIOS
L1574[17:59:28] <ShadowKatStudios> That won't work very well in a drone- nothing to boot from, for a start.
L1575[17:59:37] <ShadowKatStudios> http://shadowkat.tk/projects/skex-BIOS
L1576[17:59:55] <ShadowKatStudios> Go for the oldest version, least bugs
L1577[18:02:29] <IvoahMC> Why did you upload it as a .tar and not .lua?
L1578[18:02:39] <ShadowKatStudios> IvoahMC: There are two files.
L1579[18:02:55] <ShadowKatStudios> One is a client for an OpenOS computer, and one is the program itself
L1580[18:02:56] <IvoahMC> Good point then
L1581[18:03:12] <ShadowKatStudios> If you grab the tar program from oppm you can extract them in-game
L1582[18:03:22] <ShadowKatStudios> http://shadowkat.tk/network/nagato.php yay finally updated Nagato's page- also, anyone care to tell me how slowly the images load?
L1583[18:04:34] <IvoahMC> How do I flash the eeprom?
L1584[18:05:22] <ShadowKatStudios> Uh, you'll need a new EEPROM to flash the drone- craft it, swap it for the Lua BIOS in your computer, run 'flash skex.lua', follow the prompts, then craft the flashed EEPROM with the drone.
L1585[18:06:12] <IvoahMC> great, also can a computer have 2 screens?
L1586[18:06:39] <ShadowKatStudios> None of the OSes support to outputting to two screens at once, but you can use two if you have a program for it.
L1587[18:07:29] ⇦ Quits: IvoahMC (~ivoahmc@dsl-216-227-122-44.taconic.net) (Quit: IvoahMC)
L1588[18:09:23] <dangranos> bye, sleep
L1589[18:10:23] <ShadowKatStudios> o/
L1590[18:10:46] <Temia> Has anyone written a pure-lua gzip implementation yet? .-.
L1591[18:11:00] <Temia> Or just any compression...
L1592[18:11:53] <ShadowKatStudios> There are two compression libs
L1593[18:12:07] <ShadowKatStudios> Neither are less than 4k and they both need quite a bit of memory
L1594[18:12:09] <Temia> \o/
L1595[18:12:10] <Temia> Darn.
L1596[18:12:15] <Alissa> Temia: I think gamax92 might've tried it once
L1597[18:12:28] <Temia> They'd still work pretty nicely for tarballs though, probably
L1598[18:12:54] <ShadowKatStudios> 5 AM...
L1599[18:13:00] <ShadowKatStudios> Guess it's time to do the bins
L1600[18:13:47] ⇨ Joins: danphone (~AndChat62@37.23.234.93)
L1601[18:15:18] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 378 seconds)
L1602[18:15:21] <danphone> it wont fit on eeprom
L1603[18:15:27] ⇦ Quits: dangranos (~dangranos@37.23.234.93) (Ping timeout: 194 seconds)
L1604[18:15:28] ⇨ Joins: CoderPuppy (~cpup@32.218.112.219)
L1605[18:16:14] <ShadowKatStudios> http://commons.wikimedia.org/wiki/Category:Computer_hardware_icons so this could be useful
L1606[18:21:07] <danphone> huh?
L1607[18:21:43] <Temia> That sounds like a CHALLENGE.
L1608[18:21:52] <Temia> But compression algorithms aren't my field so meh
L1609[18:22:13] *** prassel|off is now known as prasselpikachu
L1610[18:24:08] ⇦ Quits: CoderPuppy (~cpup@32.218.112.219) (Ping timeout: 194 seconds)
L1611[18:28:39] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1612[18:30:08] *** prasselpikachu is now known as prassel|off
L1613[18:30:30] *** Skye|homework is now known as skyem123
L1614[18:30:41] *** skyem123 is now known as Skye
L1615[18:32:38] *** Kodos|Zzz is now known as Kodos|Out
L1616[18:33:43] ⇨ Joins: MindWorX (webchat@194.239.74.250)
L1617[18:34:46] <MindWorX> Sangar: Is there any reason we don't have a creative tablet case? We have creative case, drone and microcontroller.
L1618[18:35:13] <Vexatos> MindWorX, tablets are not creative enough, obviously >_>
L1619[18:35:22] <Vexatos> (I have no idea)
L1620[18:35:35] <Vexatos> Open an issue on github so he'll notice, should be easy to do
L1621[18:38:08] <MindWorX> I agree. I was just curious if there was a decision behind it. :P
L1622[18:38:29] <MindWorX> I'll open the issue, and get some clarification.
L1623[18:38:37] ⇨ Joins: CompanionCube (~samis@95f1b78c.skybroadband.com)
L1624[18:40:35] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 194 seconds)
L1625[18:42:03] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1626[18:42:38] ⇨ Joins: asie (~asie@078088168214.elblag.vectranet.pl)
L1627[18:42:38] zsh sets mode: +v on asie
L1628[18:49:33] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 200 seconds)
L1629[18:50:45] *** prassel|off is now known as prasselpikachu
L1630[18:52:43] <MindWorX> Vexatos: And here it is: https://github.com/MightyPirates/OpenComputers/issues/857
L1631[18:53:17] <Vexatos> Yup
L1632[18:53:22] <Vexatos> that will make him notice it for sure
L1633[18:54:05] *** prasselpikachu is now known as prassel|off
L1634[18:54:44] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1635[18:54:45] <MindWorX> Well, he's usually quick to expedite my requests, so I hope he'll be this time as well. :P
L1636[19:02:09] <MindWorX> Is it possible to make a volume read-only without being able to change it back?
L1637[19:03:01] *** Riking|away is now known as Riking
L1638[19:03:04] <Vexatos> Yes
L1639[19:03:10] <MindWorX> Alright.
L1640[19:03:55] <MindWorX> So I could make a tablet the main interface in a challenge map, without the tablet affecting the course?
L1641[19:04:06] <Vexatos> http://ocdoc.cil.li/component:filesystem
L1642[19:04:18] <Vexatos> brb
L1643[19:04:20] <Vexatos> porridge
L1644[19:06:00] <ShadowKatStudios> Is it weird that I take the rubbish out at 5 AM?
L1645[19:06:05] <Inari> yep
L1646[19:06:12] <ShadowKatStudios> Good to know.
L1647[19:06:20] <ShadowKatStudios> But that time of day is so much nicer! :D
L1648[19:09:41] <Inari> its weird that you do it at all
L1649[19:09:47] <Inari> yuo'Re supposed to program something to do it for you
L1650[19:10:02] <ShadowKatStudios> Oh, I mean in real life- I lack the funding for robots
L1651[19:11:46] ⇦ Quits: cpup (~cpup@32.218.112.219) (Read error: Connection reset by peer)
L1652[19:12:56] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1653[19:15:49] *** prassel|off is now known as prasselpikachu
L1654[19:17:00] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 194 seconds)
L1655[19:18:31] *** Daiyousei is now known as Generic_IKEA_Chair
L1656[19:19:56] *** Generic_IKEA_Chair is now known as Daiyousei
L1657[19:23:50] *** prasselpikachu is now known as prassel|off
L1658[19:24:00] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1659[19:26:16] *** ShadowKatStudios is now known as SKS-Away
L1660[19:30:25] <Ivoah> Is there a way to get a remote lua prompt on a drone?
L1661[19:30:51] <Dashkal> Certainly. You're going to have to write some code though.
L1662[19:31:47] <Dashkal> This video shows a simple one: https://www.youtube.com/watch?v=W5JTRKdup7s
L1663[19:31:48] -Kibibyte- [Dashkal] OpenComputers: Christmas Presents! | by fnuecke | 12m44s | 4w6d ago | 315 views | Rated: 5.00/5.00
L1664[19:35:19] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 198 seconds)
L1665[19:38:17] *** SKS-Away is now known as ShadowKatStudios
L1666[19:38:50] <ShadowKatStudios> Ivoah: I have a program that does that.
L1667[19:39:01] <ShadowKatStudios> http://shadowkat.tk/projects/skex-BIOS
L1668[19:39:52] <Vexatos> snagar also made one
L1669[19:41:35] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1670[19:42:13] *** Skye is now known as Skye|dinner
L1671[19:43:05] <Ivoah> ShadowKatStudios: How do I get a lua prompt using skex?
L1672[19:44:33] *** prassel|off is now known as prasselpikachu
L1673[19:47:49] <vifino> q_q i want to install eCFW on my ps vita
L1674[19:48:02] <vifino> because emulators
L1675[19:48:38] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 194 seconds)
L1676[19:50:15] <Ivoah> Does OC work with CC floppy disks?
L1677[19:50:38] <Vexatos> Why would you want to use CC floppy disks?
L1678[19:52:31] <Ivoah> I have no idea, but the seem to work
L1679[19:52:49] <Vexatos> They probably do
L1680[19:52:53] <Vexatos> just use OC floppies
L1681[19:52:55] <Vexatos> they are better
L1682[19:53:06] <Vexatos> because you can properly label them :3
L1683[19:54:53] <Ivoah> You can label CC floppies too
L1684[19:55:16] <ShadowKatStudios> CC floppies are smaller
L1685[19:55:21] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1686[19:55:31] <CompanionCube> gah
L1687[19:55:35] <CompanionCube> this pings me
L1688[19:55:41] <Ivoah> It's an easy way to transfer programs from CC to OC
L1689[19:55:49] <Vexatos> Ivoah, but does their name display on the item icon?
L1690[19:55:55] <Vexatos> s/name/label
L1691[19:55:55] <Kibibyte> <Vexatos> Ivoah, but does their label display on the item icon?
L1692[19:56:04] <Ivoah> It might
L1693[19:56:09] <Ender> CC
L1694[19:56:12] <Ender> is ew
L1695[19:58:19] *** Lathanael|Away is now known as Lathanael
L1696[19:59:11] *** Skye|dinner is now known as Skye|
L1697[19:59:13] *** Skye| is now known as Skye
L1698[19:59:13] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 200 seconds)
L1699[20:00:20] ⇦ Quits: asie (~asie@078088168214.elblag.vectranet.pl) (Ping timeout: 194 seconds)
L1700[20:00:44] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1701[20:02:15] <Ivoah> I tried installing telnet with oppm, but it won't run
L1702[20:04:00] <ShadowKatStudios> Got an internet card?
L1703[20:04:25] <Ivoah> Yep
L1704[20:04:54] <ShadowKatStudios> Dunno then.
L1705[20:05:05] <Ivoah> The error is: "/usr/bin/telnet.lua:1: unexpected symbol near char(239)"
L1706[20:05:24] <ShadowKatStudios> #lua char(239)
L1707[20:05:24] <|0xDEADBEEF|> > lua:1: attempt to call global 'char' (a nil value)
L1708[20:05:46] <ShadowKatStudios> Check for syntax errors and stuff in /usr/bin/telnet.lua I guess
L1709[20:06:33] <Ender> #lua string.char(239)
L1710[20:06:33] <|0xDEADBEEF|> > �
L1711[20:07:59] <Ivoah> The word char never appears in the code
L1712[20:08:02] ⇦ Quits: MindWorX (webchat@194.239.74.250) (Ping timeout: 186 seconds)
L1713[20:09:30] <ShadowKatStudios> http://i.imgur.com/3aX1v6x.webm Never thought of doing this.
L1714[20:15:30] ⇦ Quits: cpup (~cpup@32.218.112.219) (Read error: Connection reset by peer)
L1715[20:16:28] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1716[20:18:34] <ShadowKatStudios> Wallpaper. http://i.imgur.com/GBUNPja.jpg
L1717[20:26:45] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 378 seconds)
L1718[20:27:15] <ShadowKatStudios> http://i.imgur.com/nUH9JF6.webm
L1719[20:28:12] <Vexatos> ingeniosus
L1720[20:28:54] *** Skye is now known as skyem123
L1721[20:29:18] *** skyem123 is now known as Skye
L1722[20:32:22] ⇦ Quits: Alissa (PotaDOSv3@vps.alissa.ml) (Quit: WeeChat 1.2-dev)
L1723[20:33:09] ⇨ Joins: Alissa (Alissa@vps.alissa.ml)
L1724[20:35:37] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1725[20:41:38] ⇦ Quits: Vexatos (~Vexatos@p200300556E1C1F97FDD7DCCC27304971.dip0.t-ipconnect.de) (Quit: I guess I have to go now. Bye ✔)
L1726[20:49:07] ⇦ Quits: Alissa (Alissa@vps.alissa.ml) (Quit: WeeChat 1.2-dev)
L1727[20:49:29] ⇦ Quits: CompanionCube (~samis@95f1b78c.skybroadband.com) (Remote host closed the connection)
L1728[20:49:51] ⇨ Joins: CompanionCube (~samis@95f1b78c.skybroadband.com)
L1729[20:52:46] ⇨ Joins: Alissa (Alissa@vps.alissa.ml)
L1730[20:53:30] ⇦ Quits: Alissa (Alissa@vps.alissa.ml) (Client Quit)
L1731[20:55:20] ⇨ Joins: Hobbyboy (Hobbyboy@2a01:7e00:e000:d9::3)
L1732[21:00:08] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 194 seconds)
L1733[21:03:21] ⇦ Quits: Hobbyboy (Hobbyboy@2a01:7e00:e000:d9::3) (Quit: I think the BNC broke.)
L1734[21:04:48] ⇨ Joins: Hobbyboy (Hobbyboy@1.ipv6.golf.yourbnc.co.uk)
L1735[21:06:45] *** Riking is now known as Riking|away
L1736[21:10:12] *** Keridos is now known as Keridos_off
L1737[21:10:33] <Shuudoushi> and my computer died last night for no reason again...
L1738[21:12:51] ⇦ Quits: FireBall1725 (sid36174@id-36174.brockwell.irccloud.com) (Remote host closed the connection)
L1739[21:13:54] <Shuudoushi> anyone know of a good tut for making UIs in OC?
L1740[21:18:34] *** dsAway is now known as ds84182
L1741[21:19:50] ⇦ Quits: Hobbyboy (Hobbyboy@1.ipv6.golf.yourbnc.co.uk) (Quit: I think the BNC broke.)
L1742[21:20:04] ⇨ Joins: Hobbyboy (Hobbyboy@hobbyboy.co.uk)
L1743[21:20:10] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1744[21:24:59] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 189 seconds)
L1745[21:30:23] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1746[21:36:06] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 194 seconds)
L1747[21:39:22] ⇨ Joins: FireBall1725 (sid36174@id-36174.brockwell.irccloud.com)
L1748[21:40:02] *** prasselpikachu is now known as prassel|off
L1749[21:40:48] *** prassel|off is now known as prasselpikachu
L1750[21:41:22] *** Skye is now known as Skye|away
L1751[21:43:13] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1752[21:48:29] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 200 seconds)
L1753[21:55:09] ⇦ Quits: CompanionCube (~samis@95f1b78c.skybroadband.com) (Remote host closed the connection)
L1754[21:58:10] ⇨ Joins: TabletCube (~TCube@95f1b78c.skybroadband.com)
L1755[21:59:10] <TwoWholeWorms> ShadowKatStudios: Well, that's one way to take out the dragons in Skyrim. :p
L1756[21:59:35] <ShadowKatStudios> I just had the weirdest mental image
L1757[21:59:55] <ShadowKatStudios> A dragon's skin stretched across a desk, therefore making a dragon desktop
L1758[22:00:26] <TwoWholeWorms> Huh. I would've sworn you were going to say "Vladimir Putin riding a dragon into battle on the White House's lawn."
L1759[22:00:47] <TabletCube> ShadowKatStudios: Would it be win to have working x86 gcc on my tablet?
L1760[22:00:58] <Stary2001> lol
L1761[22:01:15] <ShadowKatStudios> I'd be more interested to see Vladimir Putin burning down the Australian parliament building, but y'know
L1762[22:01:29] <ShadowKatStudios> TabletCube: If you want it, why are you asking me?
L1763[22:01:43] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1764[22:01:53] <TabletCube> ShadowKatStudios: just curious as to what you would think
L1765[22:02:03] <ShadowKatStudios> Is your tablet x86?
L1766[22:02:05] <ShadowKatStudios> http://i.imgur.com/6u3dd.png
L1767[22:02:15] <TabletCube> ShadowKatStudios: yes
L1768[22:02:20] <ShadowKatStudios> Then yes.
L1769[22:02:28] <ShadowKatStudios> Also, I'm sorry for your loss.
L1770[22:03:00] <TabletCube> ...wut?
L1771[22:03:41] <ShadowKatStudios> An x86 tablet implies a Windows tablet.
L1772[22:03:45] <Stary2001> Nope.
L1773[22:03:45] <ShadowKatStudios> I'm sorry for your loss.
L1774[22:03:47] <Stary2001> Android. :p
L1775[22:03:52] <ShadowKatStudios> ...wut?
L1776[22:03:55] <Stary2001> ShadowKatStudios: Android runs on x86, y'know
L1777[22:04:09] *** Cruor is now known as Cruor|Away
L1778[22:04:14] <ShadowKatStudios> I thought Android x86 was sort of shit
L1779[22:04:27] <TabletCube> ShadowKatStudios: nope
L1780[22:04:41] <TabletCube> Android 4.4 here, google play works
L1781[22:04:50] <ShadowKatStudios> Does Minecraft run?
L1782[22:04:58] <TabletCube> heck, the CPU has VT-x
L1783[22:05:11] <Temia> It has somewhat limited support for stuff that requires native code for performance reasons, naturally
L1784[22:05:42] *** Riking|away is now known as Riking
L1785[22:05:43] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 200 seconds)
L1786[22:06:40] ⇦ Quits: Hobby_boy (~Hobbyboy@host86-191-128-51.range86-191.btcentralplus.com) (Remote host closed the connection)
L1787[22:06:44] * TabletCube hasn't tried MC:PE
L1788[22:06:49] ⇨ Joins: VikeStep (~VikeStep@101.162.12.98)
L1789[22:06:57] <ShadowKatStudios> TabletCube: I'll upload my .apk of v.90 onto lain if you want
L1790[22:07:12] <ds84182> iiiiiiiiiiiiiiiiiiiiiiiiiiiillllllllllllllllllllllleeeeeeeeeeeeeeeeeggggggggaaaaaaaaaaalllllllll
L1791[22:07:30] <ShadowKatStudios> Still, non-ARM android seems as foreign as non-x86 Windows
L1792[22:07:35] ⇨ Joins: asie (~asie@078088168214.elblag.vectranet.pl)
L1793[22:07:35] zsh sets mode: +v on asie
L1794[22:07:40] <TabletCube> ds84182: implying i was going to pay for it anyway
L1795[22:07:45] <ds84182> iiiiiiiiiiiiiiiiiiiiiiiiiiiillllllllllllllllllllllleeeeeeeeeeeeeeeeeggggggggaaaaaaaaaaalllllllll
L1796[22:07:58] <ShadowKatStudios> ds84182: I also have a .tar.gz of a lot of commercial BeOS software on there.
L1797[22:08:19] <ShadowKatStudios> Also 500GB worth of 720p anime
L1798[22:08:25] <TabletCube> Off to install an SSH Client.
L1799[22:08:26] <ds84182> oh my god
L1800[22:08:29] <ds84182> let me in
L1801[22:08:31] <ds84182> let me in
L1802[22:08:32] <ds84182> let me in
L1803[22:08:36] <ShadowKatStudios> https://technet.microsoft.com/en-au/sysinternals/bb896653.aspx so this is interesting
L1804[22:08:50] <ShadowKatStudios> ds84182: I have an upstream of <1Mbps due to Australia
L1805[22:08:58] <ds84182> then again, if you could lower the resolution of the anime that would be great
L1806[22:09:14] <ShadowKatStudios> Lower than 720p?
L1807[22:09:20] <TabletCube> ShadowKatStudios: sysinternals is wij
L1808[22:09:20] <ds84182> Ye
L1809[22:09:27] <ShadowKatStudios> What, are you watching on a CRT?
L1810[22:09:36] <ds84182> lol
L1811[22:09:42] <ds84182> nah, I have shitternet here too
L1812[22:09:52] <TabletCube> on one machine I set procexp.exe to be my tskmge
L1813[22:09:59] <TabletCube> *tskmgr
L1814[22:10:02] <ds84182> I think my max is 1 Mbp
L1815[22:10:10] <ds84182> And I have about 12 devices on the network
L1816[22:10:15] <ShadowKatStudios> 1 Megabit per.
L1817[22:10:43] <ds84182> Nah, I don't think it's 1 megabit per
L1818[22:11:10] <ds84182> we have trouble watching youtube videos once there are about 3 yt videos open
L1819[22:11:24] <ShadowKatStudios> Geez, at least I get 20Mbps down
L1820[22:11:39] <ds84182> lol
L1821[22:11:50] <ds84182> We may be switching internet providers once again
L1822[22:11:54] <TabletCube> ShadowKatStudios: my internet is crap at night too
L1823[22:12:01] <ds84182> then I can host servers on my local network again
L1824[22:12:01] <ds84182> ( ͡^ ͜ʖ ͡^)
L1825[22:12:10] <TabletCube> because ISP and wiring a shit
L1826[22:12:35] <TabletCube> ds84182: your ISP doesn't let you do that?
L1827[22:12:54] <ShadowKatStudios> TabletCube: If he has 1Mbps *down*...
L1828[22:13:27] <TabletCube> ShadowKatStudios: I get that on speedtest.net at night.
L1829[22:13:42] <TabletCube> much better in the morning though
L1830[22:13:59] <ShadowKatStudios> My internet is best around 2 AM
L1831[22:16:02] <ds84182> TabletCube: the dsl modem has no options for it
L1832[22:16:16] <ds84182> yet it is able to FORWARD MY ROUTER LOGIN PAGE RANDOMLY
L1833[22:16:34] <TabletCube> ds84182: options for what? Port forwarding?
L1834[22:16:38] <ds84182> yes
L1835[22:17:00] <TabletCube> Try getting a modem that isn't a POS?
L1836[22:17:14] <ds84182> too late for that
L1837[22:17:35] <ShadowKatStudios> ds84182: I have a static IP and a very configurable router :P
L1838[22:18:15] <Stary2001> ^^
L1839[22:18:17] * TabletCube has custom firmware for his ISP-router as an alpha-stage side-project
L1840[22:19:13] <TabletCube> Joys of using GPL'd released code.
L1841[22:19:56] <ShadowKatStudios> "joys" Didn't you have to fight a heap for it?
L1842[22:20:16] *** Kodos|Out is now known as Kodos
L1843[22:20:20] ⇦ Quits: WebFreak001 (~WebONator@ip-84-118-185-73.unity-media.net) (Quit: Leaving)
L1844[22:20:30] <TabletCube> ShadowKatStudios: nah
L1845[22:20:42] <TabletCube> lots of waiting involved
L1846[22:21:09] <TabletCube> and /me is currently bitching at them for latest one
L1847[22:21:29] ⇦ Quits: Negi (~Poireau@2a01:e35:2f6a:7060:e2ca:94ff:fe1f:76e0) (Quit: WeeChat 1.0.1)
L1848[22:21:48] <Kodos> HAII
L1849[22:22:04] <TabletCube> Some reverse-engineering / learning involved too
L1850[22:32:19] *** Benguin is now known as Benguin[ZzZ]
L1851[22:33:44] ⇦ Quits: asie (~asie@078088168214.elblag.vectranet.pl) (Ping timeout: 189 seconds)
L1852[22:34:39] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1853[22:34:48] *** prasselpikachu is now known as prassel|off
L1854[22:36:59] <gamax92> Techokami: Where can i get mcp for mc 1.2.4
L1855[22:37:40] <Techokami> gamax92: no idea. Why such an old version of MCP?
L1856[22:38:05] <gamax92> Because I'm translating this old MC client for Wii that happens to be in German
L1857[22:38:10] <gamax92> so want MCP conventions for it
L1858[22:38:43] <gamax92> found it, mcp61
L1859[22:40:40] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 194 seconds)
L1860[22:40:57] ⇦ Quits: MrRatermat (~ratermat@host81-158-132-107.range81-158.btcentralplus.com) (Ping timeout: 378 seconds)
L1861[22:41:00] <gamax92> ._. i don't remember how to use plain mcp
L1862[22:41:37] ⇦ Quits: Inari (~Uni@p54934DCB.dip0.t-ipconnect.de) (Ping timeout: 198 seconds)
L1863[22:47:19] <ds84182> fail
L1864[22:47:33] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1865[22:54:40] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 198 seconds)
L1866[22:56:24] *** alekso56 is now known as alekso56_off
L1867[23:02:51] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1868[23:03:42] <Pwootage> ds84182: o/
L1869[23:03:58] <ds84182> p/
L1870[23:04:05] <Pwootage> \q
L1871[23:04:08] <ds84182> wait, what happened to my head
L1872[23:04:10] <ds84182> d/
L1873[23:04:48] <Pwootage> So how's arm coming?
L1874[23:05:34] <Pwootage> Oh my, I knew I forgot one...
L1875[23:05:37] <Pwootage> /b
L1876[23:06:59] <Shuudoushi> ?
L1877[23:09:02] <gamax92> mcp62 is not setting up \o/
L1878[23:09:53] ⇦ Quits: TabletCube (~TCube@95f1b78c.skybroadband.com) (Remote host closed the connection)
L1879[23:11:07] *** AngieBLD|Off is now known as AngieBLD
L1880[23:13:57] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 378 seconds)
L1881[23:14:35] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1882[23:16:25] *** manmaed is now known as manmaed|AFK
L1883[23:19:04] ⇨ Joins: TabletCube (~TCube@95f1b78c.skybroadband.com)
L1884[23:19:23] ⇨ Joins: pong (~notPing@198.109.114.66)
L1885[23:19:23] zsh sets mode: +v on pong
L1886[23:24:49] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 198 seconds)
L1887[23:25:38] <Caitlyn> tablet as monitor is handy for temp monitors and the like
L1888[23:27:03] <Temia> Come to think of it what's used for remote shells in OC?
L1889[23:27:21] <Caitlyn> magic..
L1890[23:27:51] <Kodos> remote shells?
L1891[23:28:12] <Temia> Yeah, like ssh? Or nsh if we're talking CC?
L1892[23:28:34] <Kodos> I don't think anyone's coded one yet, but I could be wrong
L1893[23:28:54] <Temia> Don't tell me CC has one up on you guys for that when OC's the one that's got server racks. o.o
L1894[23:29:25] <Temia> Well, I guess I know what I can play with in my spare time then
L1895[23:29:26] <TabletCube> Temia: CC has a prebuilt network stack though
L1896[23:30:19] <Temia> Yeah, but surely someone's implemented the nagle algorithm for minimising unnecessary packets in OC?
L1897[23:30:27] ⇨ Joins: theREALorthoplex64 (~orthoplex@cpe-68-206-247-199.satx.res.rr.com)
L1898[23:30:54] <TabletCube> ...no
L1899[23:31:21] <Temia> Well, I guess I'll take a shot at it myself then
L1900[23:31:30] <TabletCube> We don't even have routing or a non-complex DNS system yet
L1901[23:31:41] <Dashkal> There's an attempt on the network disk
L1902[23:31:41] ⇨ Joins: cpup (~cpup@32.218.112.219)
L1903[23:31:45] <TabletCube> yes
L1904[23:31:47] <Temia> Oh
L1905[23:31:48] <Dashkal> When it works, it does both routing and dns
L1906[23:31:49] <TabletCube> #~~
L1907[23:31:51] <Temia> Okay cool.
L1908[23:32:03] <Dashkal> Distributed DNS system.
L1909[23:32:05] <Temia> Ah, you mean for routing/DNS.
L1910[23:32:08] <ShadowKatStudios> Temia: The rewrite for micrOS has remote shell support
L1911[23:32:12] <Dashkal> Nifty tech, but I have mixed results with it
L1912[23:32:15] <Temia> Ahhh.
L1913[23:32:26] <ShadowKatStudios> Not that it runs or is even anything more than a few syscalls, but it runs,.
L1914[23:32:32] <TabletCube> Dashkal: how mixed
L1915[23:32:36] <ShadowKatStudios> wait
L1916[23:32:39] <ShadowKatStudios> no, it doesn't run
L1917[23:32:41] <ShadowKatStudios> wtf
L1918[23:32:45] <Temia> Well I figure if someone can make a genuine CraftOS remote shell, I can do the same without needing to hack up OpenOS
L1919[23:32:47] * vifino pokes ShadowKatStudios
L1920[23:32:49] <ShadowKatStudios> The designs include support for alternate shell
L1921[23:32:51] <Dashkal> TabletCube: Sometimes they just won't route. In some cases, they won't see even neighbours.
L1922[23:32:52] <ShadowKatStudios> Hai vifino
L1923[23:32:57] * vifino pokes ShadowKatStudios again
L1924[23:33:00] <Dashkal> Always seems to work if I skip the dns bit and just use uuids.
L1925[23:33:05] * ShadowKatStudios pokes vifino
L1926[23:33:06] ⇦ Quits: sciguyryan (~sciguyrya@93-94-245-32.dynamic.swissvpn.net) ()
L1927[23:33:07] * gamax92 stabs ShadowKatStudios with a screwdriver
L1928[23:33:09] <gamax92> Hai sks
L1929[23:33:14] * ShadowKatStudios phases out
L1930[23:33:21] <Temia> Speaking of which, hey vifino, how functional is your OC emulator?
L1931[23:33:27] <vifino> ShadowKatStudios: I got an american telephone number!
L1932[23:33:28] <Dashkal> I can't get anything consistent here. Frustrating.
L1933[23:33:31] * ShadowKatStudios moves to a position behind gamax92
L1934[23:33:32] <TabletCube> Dashkal: I would rather use a simple network model and add shit on top
L1935[23:33:42] * ShadowKatStudios repeatedly stabs gamax92 with a pocketknife
L1936[23:33:43] * gamax92 is wearing a ShadowKatStudios proof suit
L1937[23:33:44] <gamax92> sorry
L1938[23:33:45] <vifino> Temia: Ah, well, it is not really made by me, but rather Altenius.
L1939[23:33:47] <gamax92> no stabby
L1940[23:33:49] <Temia> Ah
L1941[23:33:49] <ShadowKatStudios> Shiny, vifino.
L1942[23:33:57] <Dashkal> TabletCube: It was intended to be. The "DNS" bit was really just publishing additional addresses and broadcasting them the same as UUIDs.
L1943[23:34:01] * ShadowKatStudios instead sends gamax92 to the void
L1944[23:34:02] <vifino> I just made some changes and set up the build system once, which is broken now.
L1945[23:34:32] <Dashkal> It's worth having a look at. The stack isn't all that complex.
L1946[23:34:37] <gamax92> there
L1947[23:34:37] * TabletCube had an idea for a simple network
L1948[23:34:44] <gamax92> mcp62 decompiles in windows.
L1949[23:34:44] <Temia> Well, I wasn't getting anywhere with the Qt-based emulator I was pointed at, so.
L1950[23:34:46] <Dashkal> I can't use it, but I can certainly learn from it.
L1951[23:34:50] <TabletCube> 1) do we know address X
L1952[23:34:51] <gamax92> OH GOD
L1953[23:34:53] <gamax92> IT USES JAD
L1954[23:34:56] <gamax92> JAD
L1955[23:34:59] <vifino> JAD
L1956[23:35:06] <ShadowKatStudios> JAD?
L1957[23:35:07] <vifino> JihAD
L1958[23:35:08] <TabletCube> 2) if not, fling it off to a default gateway
L1959[23:35:18] <gamax92> JAD is a terrible and old java decompiler
L1960[23:35:23] <vifino> ew
L1961[23:35:29] <TabletCube> A network model for clients in 2 sentences.
L1962[23:35:45] <Shuudoushi> lol TabletCube
L1963[23:35:50] <Dashkal> TabletCube: This system was simpler than that. "Broadcast my addresses over all links". "Rebroadcast any address over all other links". "Something something don't loop forever" (Didn't read that part)
L1964[23:36:05] <TabletCube> Dashkal: neat
L1965[23:36:08] <Dashkal> The broadcasts form a routing table (remember where the broadcast came from)
L1966[23:36:50] <Dashkal> The concept is sound. I intend on redoing it when I get my language out of my IDE and into the game.
L1967[23:36:58] <Temia> Hmm.
L1968[23:37:21] <Temia> I could see a sort of hierarchial addressing system working.
L1969[23:37:44] <ShadowKatStudios> I wrote a more-or-less functional routing system at one point- routing was manual
L1970[23:37:51] <Shuudoushi> I still need to get off my ass and finish working out the bugs in this... https://github.com/Shuudoushi/OpenOS_Plus
L1971[23:37:52] <Dashkal> And since the "DNS" bit was really just broadcasting other addresses the same way, it should have just worked. Sadly, bugs.
L1972[23:38:03] <Dashkal> And I couldn't figure them out in the day or so I spent on it
L1973[23:38:10] <Shuudoushi> then i need to setup a working BIOs flash for it...
L1974[23:38:32] <Temia> Hmm.
L1975[23:38:38] <Temia> Now I'm starting to get an idea.
L1976[23:38:46] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 198 seconds)
L1977[23:38:52] <TabletCube> Dashkal: maybe you could go mdns-ish and centralise dns by announcing a 'dns' address
L1978[23:39:11] <Dashkal> Perhaps so. Briefly pondered just adding a dns server.
L1979[23:39:17] <Shuudoushi> anyone feel up to rewriting oppm sometime?
L1980[23:39:26] <TabletCube> That way you decouple DNS from the network
L1981[23:39:36] * ShadowKatStudios wants oppm with caching
L1982[23:39:43] <Shuudoushi> ^
L1983[23:39:49] <vifino> ShadowKatStudios: I want to play something .-.
L1984[23:39:50] <Shuudoushi> and a better UI ...
L1985[23:39:53] <TabletCube> Dashkal: I have a half-implemented DNS server if you're interested
L1986[23:40:04] * Dashkal shakes his head
L1987[23:40:07] <ShadowKatStudios> vifino: I'm playing OpenTTD at the moment
L1988[23:40:07] <Dashkal> I'm no fan of Lua
L1989[23:40:17] <Temia> Perhaps DNS announcement can be propogated downward from certain attachment points in the hierarchy, dependent on which tier it's attached to...
L1990[23:40:17] <Dashkal> Digging in that network stack was the last straw for me :P
L1991[23:40:25] <vifino> ShadowKatStudios: Butbutbut the savefile!
L1992[23:40:35] <ShadowKatStudios> We have electric trains now
L1993[23:40:42] <ShadowKatStudios> we can have a fully electric network
L1994[23:40:49] <Shuudoushi> Dashkal: then make a python arch for OC!
L1995[23:40:56] <Dashkal> Shuudoushi: *shudders*
L1996[23:41:00] <Shuudoushi> XD
L1997[23:41:04] <TabletCube> Shuudoushi: samdboxing miight be hard
L1998[23:41:07] <Dashkal> I'm thinking more like Haskell.
L1999[23:41:10] <ShadowKatStudios> I want lisp for OC
L2000[23:41:13] <ShadowKatStudios> that'd be cool
L2001[23:41:26] <Temia> Would be interesting to see a Python sandbox, if it's doable
L2002[23:41:36] <Shuudoushi> TabletCube: that's where the challenge lays :P
L2003[23:41:40] <Dashkal> I already wrote my first prototype. Need to rethink the interpreter a bit. The AST came out pretty good on the first attempt though.
L2004[23:41:50] <Temia> Surely someone's done research on that... *google*
L2005[23:41:54] <Dashkal> A language that loses variable bindings isn't so useful >.>
L2006[23:42:23] <Dashkal> Temia: Jython + Java classloader + security manager?
L2007[23:42:28] <Shuudoushi> Temia: I would love Python for OC, as I suck less at py then I do lua >.>
L2008[23:42:30] <Dashkal> I poked at that briefly a few years back
L2009[23:43:04] <TabletCube> Plus
L2010[23:43:06] <Temia> https://wiki.python.org/moin/SandboxedPython Well, it has been looked at in other situations. Not sure how well Jython would work admittedly
L2011[23:43:15] <TabletCube> 'Batteries included'
L2012[23:43:21] <Shuudoushi> lol
L2013[23:43:39] <Temia> And yeah, I personally prefer Python over Lua, though the latter's... workable.
L2014[23:44:23] <Shuudoushi> I still need to learn Java...
L2015[23:44:24] <TabletCube> PyPy has support for creating a sandboxed Python interpreter. The Java and CLR/.NET runtimes support restricted execution, and these can be utilised through the Jython and IronPython variants of Python (as well as by other languages, obviously).
L2016[23:44:25] <ShadowKatStudios> I like lua's syntax over python but Python has more modules
L2017[23:44:37] <Shuudoushi> tried a few years ago... but gave up on it >.>
L2018[23:44:53] ⇨ Joins: cpup (~cpup@32.218.112.219)
L2019[23:45:42] <Dashkal> I'm not entirely certain it would work at all. It's possible Jython demands too many permissions in normal operation to be effectively sandboxed.
L2020[23:45:57] <Dashkal> Shuudoushi: You're not missing much :P
L2021[23:46:04] <Dashkal> If you must go JVM, I'd suggest Scala. But even then...
L2022[23:46:05] <Shuudoushi> didn't think so lol
L2023[23:46:23] <Shuudoushi> I would just like to make a few add-ons for mods mostly lol
L2024[23:46:37] <Dashkal> For that, I use Scala. Also work :P
L2025[23:47:18] <Shuudoushi> I already know sangars response for adding huge things to OC, "Then go mod it."
L2026[23:47:50] <Kodos> If I knew how to make a language, I'd write it for OC
L2027[23:47:52] <Sangar> no, "make a pr" :P
L2028[23:48:08] <Dashkal> I dunno, ask for exactly the right thing and it's been known to happen :P
L2029[23:48:08] <Shuudoushi> close enough lol
L2030[23:48:11] <Kodos> I legit want to make a very simple programming language for idiots like me who have no programming experience
L2031[23:48:26] <TabletCube> Kodos: so
L2032[23:48:36] <ShadowKatStudios> Kodos: So python?
L2033[23:48:39] <Dashkal> Kodos: Seriously. Stop. Learn to program properly instead of trying to bring the language to you. It /is/ hard. And worth it.
L2034[23:48:41] <Shuudoushi> XD
L2035[23:48:45] <TabletCube> Some dialect of BASIC?
L2036[23:48:53] * Dashkal shoots TabletCube in the face with a GOTO
L2037[23:48:58] <Shuudoushi> better than forth...
L2038[23:48:59] <Kodos> No no, I want to make something that will make Lua or BASIC look like Brainfuck
L2039[23:49:13] <Dashkal> I'd argue otherwise. FORTH is a step up from BASIC. And FORTH is ... yech
L2040[23:49:14] <Shuudoushi> forth sucks...
L2041[23:49:26] <Dashkal> Agreed
L2042[23:49:27] <TabletCube> I never got into forth
L2043[23:49:30] <Dashkal> Basic is worse.
L2044[23:49:50] <TabletCube> Kodos: so
L2045[23:49:50] <Shuudoushi> TabletCube: go play with RP2s computers
L2046[23:49:58] <Shuudoushi> you'll want to die >.>
L2047[23:50:03] <TabletCube> Inform 7 for OC? :p
L2048[23:50:15] <Dashkal> Funny thing there? I actually didn't mind using forth in that context. I found it well suited to the kinds of things you did with that computer.
L2049[23:50:44] <Shuudoushi> it is suited for the mod, but it still sucks
L2050[23:50:51] *** Daiyousei is now known as SleepingFairy
L2051[23:50:53] <Dashkal> The whole RPN bit took me a couple hours to wrap the brain around, but *shrugs* syntax is the easy part of a language.
L2052[23:51:01] <ShadowKatStudios> I like FORTH!
L2053[23:51:16] <ShadowKatStudios> It's weird, but it's a good weird
L2054[23:51:22] <Shuudoushi> ...
L2055[23:51:44] <Shuudoushi> word based langs like forth just fuck with my head too much
L2056[23:52:42] <TabletCube> The smallest inform 7 program iirc is "There is a room."
L2057[23:53:12] <Shuudoushi> well that's a problem... http://puu.sh/f4IqZ/b3ffbebf70.png
L2058[23:53:47] <TabletCube> Kodos: ^
L2059[23:54:05] <Dashkal> Meh, FORTH on the computer directly was a bit of a brain bend. Saner if you write it out with some sort of indentation rules ahead of time.
L2060[23:54:12] <Kodos> Actually
L2061[23:54:18] <Kodos> I may make a lib file for Lua to simplify things
L2062[23:54:22] <Dashkal> I wrote my programs in a different syntax entirely so I could design quickly.
L2063[23:54:40] *** Lathanael is now known as Lathanael|Away
L2064[23:54:43] <Kodos> Question: If I use variables to define operators, like == and ~=, would that work in a program?
L2065[23:54:46] ⇦ Quits: cpup (~cpup@32.218.112.219) (Ping timeout: 194 seconds)
L2066[23:54:58] <Kodos> For example, local is = ==
L2067[23:55:19] <Kodos> So instead of if x == 1, i could do if x is 1
L2068[23:55:44] <ShadowKatStudios> no
L2069[23:55:47] <Kodos> Lame
L2070[23:55:55] <ShadowKatStudios> Kodos: Write a sed script for it
L2071[23:55:59] <Kodos> A wut
L2072[23:56:25] <ShadowKatStudios> ._. Write a program that takes an input of a program with your words and converts it to lua
L2073[23:56:37] <ds84182> oh no
L2074[23:56:38] <ds84182> pls
L2075[23:56:42] <ds84182> don't do it
L2076[23:56:55] <Shuudoushi> XD
L2077[23:57:09] <Shuudoushi> oh and Kodos, that bit of code I give you work?
L2078[23:57:11] <ds84182> pls, parsing natural language is hell
L2079[23:57:22] <ds84182> there is a 200mb library just for parsing english
L2080[23:57:26] <Kodos> Shuu, not really, but I stopped caring :x
L2081[23:57:34] <Shuudoushi> lol
L2082[23:57:50] <Shuudoushi> did you add the func call within the loop?
L2083[23:57:50] <TabletCube> ds84182: if you restrict the input it's easier
L2084[23:58:05] <Kodos> I'm not sure what all I did, I was half asleep
L2085[23:58:12] <Shuudoushi> XD
L2086[23:58:30] <TabletCube> There is an entire natural-language-style language designed for making a specific type of game
L2087[23:58:33] <Shuudoushi> for anyone wandering what we're on about http://puu.sh/f4Jdp/b06287aeb4.txt
L2088[23:59:06] <ds84182> https://github.com/cmusphinx/sphinx4 + http://nlp.stanford.edu/software/ = shit
L2089[23:59:17] <Shuudoushi> lol
L2090[23:59:28] ⇨ Joins: cpup (~cpup@32.218.112.219)
<<Prev Next>> Scroll to Top