<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:01:40] <gamax92> http://www.lexaloffle.com/bbs/?tid=2719&autoplay=1#pp
L2[00:11:56] *** Kasen is now known as rakiru|offline
L3[00:13:15] *** Cranium is now known as Cranium[Away]
L4[00:13:39] <Kodos> This is hilarious
L5[00:13:49] <Kodos> I have a turret that is shotgunning 5 rockets at bats
L6[00:28:33] ⇦ Quits: Michi (~androirc@206.255.166.15) (Remote host closed the connection)
L7[00:29:42] *** Daiyousei is now known as LearningFairy
L8[01:14:38] ⇨ Joins: ProjectRevoTPP (ProjectRev@2601:100:8001:506:e180:c4e9:c47b:f7b0)
L9[01:15:33] <ProjectRevoTPP> i can't seem to get gpu.setForeground(0x00FF00) to work
L10[01:15:38] <ProjectRevoTPP> setForeground is nil
L11[01:15:41] <ProjectRevoTPP> no it;s not?
L12[01:16:13] <ProjectRevoTPP> it just seems like documentation is shitty and nothing ever works the way i want it to work, not even example programs that supposedly work (don't work)
L13[01:16:47] <ProjectRevoTPP> i'm trying to write a program that displays centered colored text on a blank monitor. is it. is all.
L14[01:17:08] <ProjectRevoTPP> over a white background (the above example is green, i know)
L15[01:18:00] <Skye> ProjectRevoTPP: are you using a tier one or two or three GPU
L16[01:18:06] <ProjectRevoTPP> three
L17[01:18:23] <Skye> And the same tier of monitor?
L18[01:18:26] <ProjectRevoTPP> yep
L19[01:19:10] <Skye> Did you get the gpu component from the component module?
L20[01:20:27] <ProjectRevoTPP> i don't have a working example to work off ot
L21[01:20:29] <ProjectRevoTPP> of*
L22[01:20:33] <ProjectRevoTPP> so no
L23[01:21:33] <ProjectRevoTPP> im told local component = component.require("component") .. ok. but thats ambigous. replace component with gpu? whole address? part of address?
L24[01:21:34] <ProjectRevoTPP> ff.
L25[01:28:02] <Skye> Sorry, had to go for a moment
L26[01:28:28] <Skye> ProjectRevoTPP: component.gpu
L27[01:28:35] <Skye> Or require
L28[01:29:15] <Skye> Or require("component").gpu
L29[01:29:56] <ProjectRevoTPP> would that allow me to do gpu.setForeground(color)?
L30[01:30:16] <ProjectRevoTPP> there's not much documentation on fancy GPU stuff involving scaling or centering or anything
L31[01:30:49] <Skye> It should allow stuff like gpu.setForeground
L32[01:30:51] <Kodos> ~w gpu
L33[01:30:51] <ocdoc> http://ocd.cil.li/component:gpu
L34[01:31:29] <ProjectRevoTPP> and didn't work anyway
L35[01:31:34] <Skye> The fancy GPU stuff like scaling or centering, uh... Doesn't exist on the GPU itself.
L36[01:31:41] <ProjectRevoTPP> gpu is a nil value
L37[01:31:46] <Skye> Eh?
L38[01:32:07] <Kodos> Look at the top 2 lines of the example code on the page that was linked
L39[01:32:11] <Kodos> Make sure you're using that
L40[01:32:11] <Skye> Are you doing this in a file or in the Lua prompt?
L41[01:32:31] <ProjectRevoTPP> does it need to be in the LUA prompt or a file?
L42[01:33:05] <Skye> If you're doing it in a Lua prompt, you need to remove the "local"
L43[01:33:19] <ProjectRevoTPP> TIL
L44[01:33:42] <Skye> I learned that painfully
L45[01:34:41] <ProjectRevoTPP> okay now its working thanks maybe i can finish this program
L46[01:35:45] <Skye> ProjectRevoTPP: don't forget to use "local" when you do it in a file!
L47[01:36:01] <ProjectRevoTPP> yeah
L48[01:37:50] <Skye> I wonder of the requiring you not to use local in the Lua prompt can be considered a bug.
L49[01:39:07] <Kodos> It's not, since when you exit the lua prompt, all that gets reset anyway
L50[01:40:45] <ProjectRevoTPP> okay how do I bind the GPU to the screen? term is a nil value when running the program
L51[01:40:54] <Skye> Still confusing
L52[01:40:54] <Skye> As ProjectRevoTPP just shown
L53[01:41:00] <Skye> Eh?
L54[01:41:06] <Skye> term?
L55[01:41:15] <ProjectRevoTPP> i wanna clear the screen
L56[01:41:27] <Skye> ~w term
L57[01:41:29] <ocdoc> Predicted http://ocd.cil.li/api:term
L58[01:41:32] <Skye> A
L59[01:41:52] <Skye> Use require("term")
L60[01:48:26] <ProjectRevoTPP> i dont suppose there's anyway to bold text?
L61[01:48:45] <ProjectRevoTPP> well i mean, easy way to do it
L62[01:54:16] <Skye> ProjectRevoTPP: there isn't a way.
L63[01:58:42] <ProjectRevoTPP> figured.
L64[01:59:17] <ProjectRevoTPP> http://pastebin.com/sVCSa8mM i want a way to just pause forever after writing the text to the screen, like an electronic sign, but the while true do loop seems an ugly way to do it
L65[01:59:22] <ProjectRevoTPP> any better way of just pausing everything?
L66[01:59:52] <ProjectRevoTPP> its for a simple electric sign using OC monitors
L67[02:00:16] <ProjectRevoTPP> it ran, but crashed a few seconds later
L68[02:00:51] <ProjectRevoTPP> while true do sleep(number) maybe is a better way?
L69[02:01:08] <Kodos> os.sleep will put a delay
L70[02:01:16] <Kodos> Specifically, os.sleep(time in seconds)
L71[02:02:45] ⇦ Quits: mrdeadlocked (~admin@199.204.185.12) (Ping timeout: 206 seconds)
L72[02:03:40] ⇨ Joins: mrdeadlocked (~admin@199.204.185.12)
L73[02:05:43] <ProjectRevoTPP> os.sleep seems to work, tyvm for the help
L74[02:18:42] ⇦ Quits: Tahg (~Tahg@pool-96-237-111-105.bstnma.fios.verizon.net) (Ping timeout: 206 seconds)
L75[02:18:59] ⇨ Joins: Tahg (~Tahg@pool-96-237-111-105.bstnma.fios.verizon.net)
L76[02:32:10] <ProjectRevoTPP> i want to be able to run a pastebin command from LUA, how do?
L77[02:32:19] <ProjectRevoTPP> so I can just tell the autorun script to fetch the latest script
L78[02:36:37] <ProjectRevoTPP> shell.run?
L79[02:41:20] <ProjectRevoTPP> oh its execute
L80[02:49:42] ⇦ Quits: Izaya (~Izaya@210.1.213.55) (Ping timeout: 195 seconds)
L81[02:54:57] ⇨ Joins: Izaya (~Izaya@210.1.213.55)
L82[03:03:25] ⇦ Quits: Yepoleb (~quassel@91-115-117-9.adsl.highway.telekom.at) (Remote host closed the connection)
L83[03:03:40] ⇨ Joins: AndroUser2 (~androirc@206.255.166.15)
L84[03:04:39] ⇨ Joins: Yepoleb (~quassel@188-23-114-85.adsl.highway.telekom.at)
L85[03:09:06] ⇦ Quits: t3hero (~t3hero@2601:202:201:9030:bdb7:a3f7:1500:7590) (Read error: Connection reset by peer)
L86[03:12:27] ⇦ Quits: AndroUser2 (~androirc@206.255.166.15) (Ping timeout: 195 seconds)
L87[03:13:38] ⇨ Joins: AndroUser2 (~androirc@206.255.166.15)
L88[03:21:49] ⇨ Joins: Rorax (~Rorax@2400:4800:8044:f700:f03d:af0d:385d:99d7)
L89[03:22:22] <Rorax> is it me or is there only 19 inputs for nano machines, and only 5 of them have not particle based affects and some none at all
L90[03:23:43] <Rorax> whatching the video kodos linked me to, sangar says he whitelisted the effects because some where too powerful. jump boost? haste?
L91[03:27:29] ⇦ Quits: AndroUser2 (~androirc@206.255.166.15) (Read error: Connection reset by peer)
L92[03:36:08] ⇨ Joins: Turtle (~Turtle@145.37.72.49)
L93[03:41:15] <Turtle> Ooo, someone on the FTB subreddit wants to restart painterly mod support
L94[03:43:03] ⇦ Quits: v^ (~ping@c-68-41-215-101.hsd1.mi.comcast.net) (Remote host closed the connection)
L95[03:49:22] *** LearningFairy is now known as Daiyousei
L96[03:51:15] ⇨ Joins: AndroUser2 (~androirc@206.255.166.15)
L97[03:55:52] ⇦ Quits: AndroUser2 (~androirc@206.255.166.15) (Read error: Connection reset by peer)
L98[04:06:42] ⇦ Quits: ProjectRevoTPP (ProjectRev@2601:100:8001:506:e180:c4e9:c47b:f7b0) (Read error: Connection reset by peer)
L99[04:17:07] ⇨ Joins: AndroUser2 (~androirc@206.255.166.15)
L100[04:21:52] ⇦ Quits: asie (~asie@asie.pl) (Ping timeout: 195 seconds)
L101[04:23:58] ⇨ Joins: asie (~asie@asie.pl)
L102[04:26:18] ⇦ Quits: AndroUser2 (~androirc@206.255.166.15) (Ping timeout: 206 seconds)
L103[04:34:24] ⇦ Quits: brandon3055 (~Brandon@122.129.140.106) (Read error: Connection reset by peer)
L104[04:40:25] ⇨ Joins: brandon3055 (~Brandon@120.21.163.69)
L105[04:42:37] ⇨ Joins: AndroUser2 (~androirc@206.255.166.15)
L106[04:46:36] ⇦ Quits: AndroUser2 (~androirc@206.255.166.15) (Ping timeout: 206 seconds)
L107[04:48:03] ⇦ Quits: Wembly (~Wembly@50.240.220.69) (Ping timeout: 206 seconds)
L108[04:58:29] ⇦ Quits: Izaya (~Izaya@210.1.213.55) (Read error: Connection reset by peer)
L109[04:59:43] ⇨ Joins: AndroUser2 (~androirc@206.255.166.15)
L110[04:59:55] ⇨ Joins: Izaya (~Izaya@210.1.213.55)
L111[05:11:28] ⇦ Quits: AndroUser2 (~androirc@206.255.166.15) (Ping timeout: 192 seconds)
L112[05:16:00] ⇨ Joins: AndroUser2 (~androirc@206.255.166.15)
L113[05:19:58] ⇦ Quits: AndroUser2 (~androirc@206.255.166.15) (Ping timeout: 192 seconds)
L114[05:41:47] ⇨ Joins: brandon3055_ (~Brandon@120.21.154.48)
L115[05:43:32] ⇦ Quits: brandon3055 (~Brandon@120.21.163.69) (Ping timeout: 378 seconds)
L116[05:44:50] ⇦ Quits: Rorax (~Rorax@2400:4800:8044:f700:f03d:af0d:385d:99d7) (Quit: Leaving)
L117[05:59:04] ⇨ Joins: AndroUser2 (~androirc@206.255.166.15)
L118[06:00:02] ⇦ Quits: Turtle (~Turtle@145.37.72.49) (Ping timeout: 378 seconds)
L119[06:05:09] ⇦ Quits: brandon3055_ (~Brandon@120.21.154.48) (Read error: Connection reset by peer)
L120[06:06:52] ⇦ Quits: AndroUser2 (~androirc@206.255.166.15) (Ping timeout: 195 seconds)
L121[06:07:40] ⇨ Joins: Turtle (~Turtle@145.37.72.128)
L122[06:31:12] ⇨ Joins: AndroUser2 (~androirc@206.255.166.15)
L123[06:31:31] ⇦ Quits: AndroUser2 (~androirc@206.255.166.15) (Client Quit)
L124[06:32:27] ⇦ Quits: asie (~asie@asie.pl) (Ping timeout: 206 seconds)
L125[06:43:36] ⇨ Joins: asie (~asie@asie.pl)
L126[07:13:33] ⇦ Quits: surferconor425 (surfercono@mango.bnc4free.com) (Quit: Bye...)
L127[07:14:41] ⇨ Joins: Inari (~Uni@p5DEC652B.dip0.t-ipconnect.de)
L128[07:17:47] ⇦ Quits: VikeStep (~VikeStep@101.184.94.18) (Read error: Connection reset by peer)
L129[07:46:46] ⇨ Joins: Johannes13 (Johannes@141.70.98.26)
L130[08:18:35] <S3> OK.
L131[08:24:51] <gamax92> +OK
L132[08:41:48] zsh sets mode: +v on asie
L133[08:47:01] ⇦ Quits: npe|office (~NPExcepti@bps-gw.hrz.tu-chemnitz.de) (Remote host closed the connection)
L134[08:47:15] ⇦ Parts: Noob (~opera@broadband-95-84-156-76.nationalcablenetworks.ru) ())
L135[08:50:11] ⇨ Joins: Uni (~Uni@p5DEC673F.dip0.t-ipconnect.de)
L136[08:51:39] ⇨ Joins: Neppy (~Uni@p5DEC673F.dip0.t-ipconnect.de)
L137[08:52:28] ⇦ Quits: Inari (~Uni@p5DEC652B.dip0.t-ipconnect.de) (Ping timeout: 192 seconds)
L138[08:54:04] ⇦ Quits: Uni (~Uni@p5DEC673F.dip0.t-ipconnect.de) (Ping timeout: 206 seconds)
L139[08:55:31] ⇦ Quits: Neppy (~Uni@p5DEC673F.dip0.t-ipconnect.de) (Ping timeout: 206 seconds)
L140[09:00:38] <S3> .w
L141[09:00:38] <EnderBot2> The wiki can be found here http://ocd.cil.li
L142[09:00:38] <EnderBot2> Normally ^v would do this but it's not here at the moment :(
L143[09:03:23] <Lizzy> i should remove the 2nd line
L144[09:08:12] <S3> Yep.
L145[09:11:38] <S3> Silly boy
L146[09:11:44] <S3> Not*
L147[09:11:49] <S3> Silly autocorrect
L148[09:12:02] <S3> Bot*
L149[09:14:58] <S3> We are talking about flip flops in class
L150[09:21:40] ⇨ Joins: Inari (~Uni@p5DEC6754.dip0.t-ipconnect.de)
L151[09:46:34] <S3> Way
L152[09:53:31] <vifino> \o/ the guy who sold me the second mobo takes it back bcause it's faulty! \o/
L153[09:53:58] <vifino> i git muh monies bak, hooraaay
L154[09:57:56] * Skye eats vifino's monies and sneezes up a £1000 note
L155[09:58:15] <vifino> :<
L156[09:58:24] <Skye> Oh.
L157[09:58:54] <Izaya> vifino, want to hear something insane?
L158[09:59:02] <vifino> Izaya: Me?
L159[09:59:09] <vifino> Yeah, I know I am.
L160[09:59:10] * Skye eats the £1000 note and sneezes out a 2000€ note wrapped in a plastic bag
L161[09:59:11] <vifino> But sure.
L162[09:59:22] <Izaya> Not what I was thinking of but anyway
L163[09:59:37] <vifino> Go ahead.
L164[09:59:47] <Izaya> I have OS X 10.4 almost to the point of being sane
L165[10:00:25] <Izaya> tigerbrew, tmux, htop, virtual desktops, zsh, a display server...
L166[10:00:39] <Izaya> And I found a PPC version of Darwinia :D
L167[10:00:59] <vifino> Cool.
L168[10:15:24] ⇨ Joins: SergOmarov (webchat@188.191.175.156)
L169[10:15:44] <SergOmarov> hi!
L170[10:15:59] <Izaya> sup
L171[10:18:36] ⇨ Joins: Jezza (~Jezza@92.206.13.233)
L172[10:22:08] ⇨ Joins: Negi (~Poireau@2a01:e34:ef13:4150:e2ca:94ff:fe1f:76e0)
L173[10:23:16] ⇦ Quits: SergOmarov (webchat@188.191.175.156) (Ping timeout: 204 seconds)
L174[10:25:53] ⇦ Quits: Dominance (~Dominance@72-186-205-33.res.bhn.net) (Read error: Connection reset by peer)
L175[10:36:07] <Magik6k> Has anyone made networking API that could be alternative to my(network floppy)?
L176[10:38:05] <Magik6k> I want to rewrite it, but there may be someting better out there
L177[10:38:19] <Lizzy> not that i iknow of
L178[10:42:20] ⇦ Quits: Graypup_ (Graypup@lfcode.ca) (Ping timeout: 206 seconds)
L179[10:42:37] ⇦ Quits: Turtle (~Turtle@145.37.72.128) (Quit: Turtle)
L180[10:44:36] ⇨ Joins: Graypup_ (Graypup@lfcode.ca)
L181[11:09:30] ⇦ Quits: Emblem (webchat@cpe-74-74-241-16.rochester.res.rr.com) (Ping timeout: 204 seconds)
L182[11:11:27] ⇨ Joins: Vexatos (~Vexatos@p200300556E6DF945C877E531C86C6371.dip0.t-ipconnect.de)
L183[11:11:27] zsh sets mode: +v on Vexatos
L184[11:22:48] *** rakiru|offline is now known as Kasen
L185[11:24:51] <S3> So it just so turns out that I can fit 4x as much room as I can in the space of ram
L186[11:25:42] <Negi> In what? :v
L187[11:27:13] <Skye> S3, have you heard of this thing called swap?
L188[11:37:02] ⇦ Quits: DFrostedWang (~DFrostedW@38.81.149.254) (Ping timeout: 195 seconds)
L189[11:38:17] ⇦ Quits: ICWiener (~DFrostedW@38.81.149.254) (Ping timeout: 378 seconds)
L190[11:54:32] ⇦ Quits: Inari (~Uni@p5DEC6754.dip0.t-ipconnect.de) (Ping timeout: 195 seconds)
L191[11:55:16] ⇨ Joins: Inari (~Uni@p5DEC6794.dip0.t-ipconnect.de)
L192[11:56:59] <Inari> nice, gotta explain t-com their own stupid system before they understand an error xD
L193[12:02:00] <Kodos> Bork bork
L194[12:05:10] ⇨ Joins: Ellpeck (~Ellpeck@p4FE445DB.dip0.t-ipconnect.de)
L195[12:05:14] ⇨ Joins: Ellpeck|2 (~Ellpeck@p4FE445DB.dip0.t-ipconnect.de)
L196[12:05:26] ⇦ Quits: Ellpeck|2 (~Ellpeck@p4FE445DB.dip0.t-ipconnect.de) (Client Quit)
L197[12:05:35] ⇦ Quits: Ellpeck (~Ellpeck@p4FE445DB.dip0.t-ipconnect.de) (Client Quit)
L198[12:11:48] ⇨ Joins: Pyrolusite (~Pyrolusit@ARouen-651-1-474-191.w92-132.abo.wanadoo.fr)
L199[12:17:30] ⇨ Joins: Turtle (~SentientT@82-171-92-73.ip.telfort.nl)
L200[12:41:48] ⇨ Joins: Nathan1852 (~Nathan185@HSI-KBW-37-209-116-12.hsi15.kabel-badenwuerttemberg.de)
L201[12:46:18] <S3> Skye : yes why?
L202[12:46:24] <S3> What about swap
L203[12:46:55] <Inari> strong weakly accelerated particles?
L204[12:48:30] <S3> ...
L205[12:49:55] <Inari> :D
L206[12:50:08] * Inari particle showers S3
L207[12:50:09] <Inari> ;)
L208[12:51:13] * Inari takes a particle and adds a proton
L209[12:51:21] * Inari adds imaginary numberspace!
L210[12:51:24] * Inari gets a participle!
L211[12:54:41] <Turtle> o/
L212[12:55:17] ⇦ Quits: Vexatos (~Vexatos@p200300556E6DF945C877E531C86C6371.dip0.t-ipconnect.de) (Ping timeout: 378 seconds)
L213[13:05:22] ⇨ Joins: Vexatos (~Vexatos@p200300556E14A446C877E531C86C6371.dip0.t-ipconnect.de)
L214[13:05:22] zsh sets mode: +v on Vexatos
L215[13:24:49] ⇨ Joins: 1APAAAZ8H (~DFrostedW@38.81.149.254)
L216[13:24:49] ⇨ Joins: 3GRAAGTLN (~DFrostedW@38.81.149.254)
L217[13:27:17] ⇦ Quits: cpup (~cpup@32.218.117.241) (Ping timeout: 195 seconds)
L218[13:33:38] ⇨ Joins: cpup (~cpup@32.218.115.93)
L219[13:40:12] ⇦ Quits: cpup (~cpup@32.218.115.93) (Ping timeout: 206 seconds)
L220[13:40:18] ⇨ Joins: cpup (~cpup@32.218.115.93)
L221[13:53:27] <S3> Inari you know what's sunny
L222[13:53:31] <S3> Funny*
L223[13:53:44] <S3> If you take a proton
L224[13:54:00] <S3> And it moves around a room
L225[13:54:30] <S3> Depending on where you are moving with it or watching it in place will determine if you see a magnetic or an electric field
L226[13:55:02] ⇨ Joins: t3hero (~t3hero@2601:202:201:9030:bdb7:a3f7:1500:7590)
L227[14:08:16] *** 3GRAAGTLN is now known as DFrostedWang
L228[14:12:33] <gamax92> rm -rf /*
L229[14:12:59] <gamax92> and then the stream froze
L230[14:14:45] <Turtle> What stream?
L231[14:15:31] <gamax92> twitch installs arch linux
L232[14:15:37] <Turtle> ah, yeah, rip
L233[14:20:30] <gamax92> it is completely rip
L234[14:23:23] ⇦ Quits: Jezza (~Jezza@92.206.13.233) (Quit: sleepppppp)
L235[14:23:58] <Turtle> I really wonder what the sturdiest lua sandbox is, and if it is sturdy enough to give twitch a lua sandbox without huge danger to the host
L236[14:24:30] <gamax92> a vm with no networking
L237[14:24:55] <Turtle> 'to give twitch'
L238[14:25:00] <Turtle> but I assume you mean lua networking :P
L239[14:25:04] <gamax92> no
L240[14:25:12] <gamax92> i meant a vm with no networking enabled.
L241[14:25:59] <Turtle> wait, inputting commands over a terminal physical port?
L242[14:26:05] <gamax92> you can use remote desktop/streaming capabilities of the vm software instead
L243[14:26:19] <Turtle> oh, like that
L244[14:27:14] <Turtle> I guess that could work somewhat, altough iirc there's a lot of vm software that don't properly purge things like video memory data
L245[14:27:18] <Mimiru> and back to only 3 monitors :(
L246[14:27:18] <Turtle> *although
L247[14:27:26] <gamax92> :((
L248[14:27:37] <gamax92> why is my computer being a laggy
L249[14:28:39] <Turtle> How laggy?
L250[14:28:54] <gamax92> typing is somewhat delayed
L251[14:29:10] <Turtle> Check if memory is running into swap
L252[14:29:13] <gamax92> hey the stream is working again
L253[14:29:30] <gamax92> the clock on the stream is updating again and so is the display
L254[14:30:20] <Vexatos> <Turtle> I really wonder what the sturdiest lua sandbox is
L255[14:30:21] <Vexatos> Ask Cruor
L256[14:30:25] <Vexatos> he can confirm
L257[14:30:27] <Vexatos> Shurtle
L258[14:30:29] <Vexatos> is the sturdiest
L259[14:31:15] <Turtle> yeah but that is no fun
L260[14:31:46] <Mimiru> also, holy hell it's hot.
L261[14:31:48] <Vexatos> shurtle
L262[14:31:50] <Vexatos> not fun
L263[14:31:53] <Vexatos> ....what?
L264[14:32:16] <Turtle> Lua with bytecode loading in anarchy mode.
L265[14:32:31] <Turtle> Some twat on 4chan is going to HATE you for not letting him LOLHAXORDYOU it
L266[14:40:44] <gamax92> ... lol wot.
L267[14:40:56] <gamax92> they are trying to curl a xp image to the hard drive
L268[14:41:35] <gamax92> and then the command got supspeneded
L269[14:43:27] <Vexatos> I WONDER WHY
L270[14:43:29] <gamax92> yay it's unsuspended
L271[14:43:34] <Vexatos> totally not a botnet
L272[14:44:02] <Turtle> lemme guess, infected XP image?
L273[14:44:22] <gamax92> who knows :P
L274[14:44:31] <gamax92> I aint gonna invest the time in downloading and unpacking the imae
L275[14:45:00] <Turtle> also, jesus christ uni, translation that is literally worse than google translate, on exams
L276[14:46:43] <gamax92> they keep trying to ctrl-z and bg it, but they keep ctrl-z and fg it
L277[14:46:51] <Turtle> lol
L278[14:47:45] <gamax92> they got bg, finally
L279[14:48:19] <Vexatos> how is that important
L280[14:48:33] <Vexatos> like, bg or fg
L281[14:48:50] ⇦ Quits: cpup (~cpup@32.218.115.93) (Ping timeout: 206 seconds)
L282[14:48:58] ⇨ Joins: cpup (~cpup@32.218.115.93)
L283[14:51:58] <gamax92> that makes it harder to kill
L284[14:53:35] <CompanionCube> let's see how shit this winxp install is
L285[14:55:04] <Vexatos> why do they want to install XP
L286[14:55:09] <CompanionCube> idfk
L287[14:55:31] <gamax92> omfg it's windows xp.
L288[14:55:37] <gamax92> in german
L289[14:56:04] <gamax92> it has cygwin
L290[14:56:05] <Turtle> lol bash
L291[14:56:22] <gamax92> I'm surprised xp booted and didn't flip it's shit
L292[14:56:26] <Vexatos> the heck is cygwin
L293[14:56:30] <gamax92> ... vexatos.
L294[14:56:34] <gamax92> may I murder you
L295[14:56:48] <Turtle> kappa@kappapc
L296[14:56:51] <Turtle> lol.
L297[14:56:56] <Vexatos> so it is like
L298[14:57:05] <Vexatos> a custom XP version just for this stream .-.
L299[14:57:16] <Kodos> Is it possible to ban someone from interacting with a Github Repo? (Issues, PRs, etc)
L300[14:57:21] <Vexatos> some people are really.... dedicated
L301[14:57:27] <Turtle> Kodos: Probably(tn)
L302[14:57:29] <Turtle> *(tm)
L303[14:57:30] <Vexatos> dedodated, I mean
L304[14:57:49] <gamax92> i must run, but man this is actually fun to watch :P
L305[14:58:33] <CompanionCube> I wanted to see how shit the XP install was
L306[14:58:43] <CompanionCube> but it doesn't even seem to have a single piece of bloatware or malware
L307[15:00:47] <Vexatos> CompanionCube, maybe a nice 4chan botnet for a change?
L308[15:03:00] <Vexatos> Now some want to delete system32
L309[15:03:03] <Vexatos> .-.
L310[15:03:45] <Turtle> so wait, the VM is running XP?
L311[15:03:58] <Turtle> also, windows will not let them delete sys32
L312[15:05:15] <Turtle> it hogs the files far too much to do so from anything but the most obscure workarounds
L313[15:06:14] <Turtle> How'd they mount the disc to the vm? Or did they literally just unpack it onto the vm's HDD?
L314[15:07:13] ⇨ Joins: v^ (~ping@c-68-41-215-101.hsd1.mi.comcast.net)
L315[15:07:14] zsh sets mode: +v on v^
L316[15:07:21] ⇦ Quits: Vexatos (~Vexatos@p200300556E14A446C877E531C86C6371.dip0.t-ipconnect.de) (Quit: I guess I have to go now. Bye ✔)
L317[15:11:01] <Turtle> Hoooo, I am in LOVE with the deep resonance sound effects
L318[15:15:32] <Mimiru> %seen Sangar
L319[15:15:35] <MichiBot> Mimiru: Sangar was last seen 2d 23h 20m 10s ago.
L320[15:15:41] <Mimiru> >_>
L321[15:16:41] <Turtle> RIP OC PEOPLE /s
L322[15:16:58] <Turtle> (And yes THAT is the joke, before you point it out :P)
L323[15:18:24] ⇦ Quits: primetoxinz (~primetoxi@ip68-107-226-229.hr.hr.cox.net) (Remote host closed the connection)
L324[15:40:39] <S3> Ouch
L325[15:40:48] <S3> Only 408 mah left on my b battery
L326[15:40:57] <S3> That means it's about 18%
L327[15:41:03] <S3> Laptop will die soon
L328[15:50:36] <S3> Magic 6k: any plans to make mrfs journaled?
L329[15:51:02] <S3> With the way people shut off their computers...
L330[15:51:32] <S3> A meta based journal may not be safe enough but physical journals are larger
L331[15:51:55] ⇦ Quits: Ekoserin (~Ekoserin@c-73-133-224-81.hsd1.va.comcast.net) (Read error: Connection reset by peer)
L332[15:57:14] ⇨ Joins: Ekoserin (~Ekoserin@c-73-133-224-81.hsd1.va.comcast.net)
L333[15:57:56] ⇨ Joins: brandon3055 (~Brandon@122.129.140.106)
L334[16:00:09] ⇨ Joins: [1]Ekoserin (~Ekoserin@c-73-133-224-81.hsd1.va.comcast.net)
L335[16:01:38] <Turtle> o.o poor quality deep resonance crystals are NASTY
L336[16:02:59] <scj643> Immersive engineering got a big update
L337[16:03:32] <Turtle> yep
L338[16:04:29] ⇦ Quits: Ekoserin (~Ekoserin@c-73-133-224-81.hsd1.va.comcast.net) (Ping timeout: 378 seconds)
L339[16:04:29] *** [1]Ekoserin is now known as Ekoserin
L340[16:04:56] <S3> scj643: I spent the last week playing with red logic
L341[16:05:06] <S3> it na absolutely humble to project red
L342[16:05:20] <S3> sad though because the lighting in redlogic is nice
L343[16:05:45] <S3> but! today I have made 32 bytes of RAM in the same space I made 128 Bytes of ROM
L344[16:05:51] <Turtle> in deep resonance, got a 76% pure crystal, 15 block radiation radius o-o
L345[16:06:33] <S3> I left the tv on all day long and all night
L346[16:06:42] <S3> and I just got home, the entire tv is half black
L347[16:07:13] <scj643> Wow
L348[16:07:22] <S3> It just needs to be punched
L349[16:07:28] <scj643> Does red logic have everything we need
L350[16:07:38] <S3> scj643: well, I use the data cells
L351[16:07:38] <scj643> I'm in the process of updating the pack
L352[16:07:44] <S3> which are cell forms of D flip flops
L353[16:07:51] <S3> and I also use and cells
L354[16:07:56] <scj643> Can we replace project red
L355[16:07:58] *** Daiyousei is now known as SleepingFairy
L356[16:08:06] <S3> both of those are in project red only
L357[16:08:10] <scj643> And does it have ICs
L358[16:08:17] <S3> no idea
L359[16:08:22] <S3> but redlogic pisses me off
L360[16:08:46] <scj643> I need to know if OpenFM is stable
L361[16:09:14] <S3> honestly I wouldn't use redlogic on my own server
L362[16:09:30] <Lizzy> scj643, it is
L363[16:09:44] <S3> as much as I like Immibis' stuff
L364[16:09:58] <S3> chickenBones helps work on project red afaik
L365[16:10:25] <S3> I haven't seen him forever
L366[16:10:48] <scj643> Sticking with project red
L367[16:12:29] <scj643> Also any known issues with IC mod
L368[16:13:36] <scj643> Vic: you know if it's stable to run
L369[16:14:10] <S3> HOLY SHIT
L370[16:14:21] <S3> so I was just about to throw some steak in the oven
L371[16:14:38] <S3> guess what I found in the oven?
L372[16:14:47] <S3> the worst thing you can find in an oven
L373[16:14:48] <Mimiru> \o/ got my Let's Encrypt invite
L374[16:15:19] <S3> I found: An already heated oven.
L375[16:15:36] <S3> I cooked pizza in the oven last night..
L376[16:15:46] <scj643> Damn
L377[16:15:55] <scj643> Found the site for zetta industries
L378[16:16:00] <S3> and it really sucks bad
L379[16:16:04] <S3> because this is an electric oven
L380[16:16:18] <S3> so my power bill probably went up, given how inefficient it is.. I dunno
L381[16:16:22] <S3> 200 bucks or so
L382[16:16:42] <S3> ...
L383[16:21:14] <scj643> I'm uploading to my server as we speak
L384[16:22:22] <scj643> Right now I'm RSYNCing
L385[16:23:05] ⇦ Quits: Negi (~Poireau@2a01:e34:ef13:4150:e2ca:94ff:fe1f:76e0) (Quit: WeeChat 1.3)
L386[16:28:30] <gamax92> time to install networking drivers :>
L387[16:28:45] <scj643> I also switched to Debian
L388[16:28:59] <scj643> was sick of Ubuntu breaking
L389[16:33:21] ⇦ Quits: Turtle (~SentientT@82-171-92-73.ip.telfort.nl) (Quit: Nettalk6 - www.ntalk.de)
L390[16:38:20] ⇨ Joins: VikeStep (~VikeStep@101.184.94.18)
L391[16:41:00] ⇦ Quits: Pyrolusite (~Pyrolusit@ARouen-651-1-474-191.w92-132.abo.wanadoo.fr) (Quit: Leaving)
L392[16:44:27] ⇦ Quits: Nathan1852 (~Nathan185@HSI-KBW-37-209-116-12.hsi15.kabel-badenwuerttemberg.de) (Ping timeout: 195 seconds)
L393[16:54:43] * Magik6k needs 'big data' hashtable for OC
L394[16:55:37] <Magik6k> for like 2M 24 byte entries
L395[16:57:07] ⇦ Quits: brandon3055 (~Brandon@122.129.140.106) (Read error: Connection reset by peer)
L396[16:57:19] ⇨ Joins: brandon3055_ (~Brandon@120.21.97.215)
L397[16:58:22] ⇨ Joins: brandon3055__ (~Brandon@122.129.140.106)
L398[17:04:59] ⇦ Quits: brandon3055_ (~Brandon@120.21.97.215) (Ping timeout: 378 seconds)
L399[17:16:15] ⇦ Quits: brandon3055__ (~Brandon@122.129.140.106) (Read error: Connection reset by peer)
L400[17:26:31] ⇨ Joins: Rorax (~Rorax@2400:4800:8044:f700:d533:da87:29d8:1ba9)
L401[17:26:58] <Rorax> sometimes nanomachines don't respond, like shutting off an input returns true, but the effect isn't removed
L402[17:28:18] <Rorax> this case being on a server btw
L403[17:28:27] <Rorax> using a tablet to interact with the nanomachines
L404[17:28:45] <Inari> repeat till they do
L405[17:28:45] <Inari> ;D
L406[17:28:55] <Rorax> thats really the answer :P ?
L407[17:29:03] <Inari> dunno, but it works, no?
L408[17:29:19] <Rorax> just did the raw lua command like 10 times in a row
L409[17:29:23] <Rorax> did not turn it off
L410[17:29:34] <Rorax> yes I got the right index :P
L411[17:33:20] <Rorax> I also noticed last night that the nanos will only respond to up to a maximum of 19 different indexes. even though there are far more effects than that technically available
L412[17:33:39] <Rorax> most of those 19 indexes are taken up by different particle effects or nothing at all
L413[17:53:52] <gamax92> twitch installs nyan cat.
L414[17:54:07] <Rorax> ...
L415[18:04:10] <Kodos> I miss being able to just run msg in cmd and telling my wife to come here
L416[18:33:38] ⇨ Joins: primetoxinz_ (~primetoxi@ip68-107-226-229.hr.hr.cox.net)
L417[18:51:55] *** Cranium[Away] is now known as Cranium
L418[18:55:46] ⇦ Quits: Inari (~Uni@p5DEC6794.dip0.t-ipconnect.de) (Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/)
L419[19:47:41] ⇨ Joins: Nachtara_BB (~nachtara_@quartz.breakinblocks.com)
L420[19:47:49] <Nachtara_BB> hurrah!
L421[19:58:23] ⇦ Quits: Nachtara_BB (~nachtara_@quartz.breakinblocks.com) (Remote host closed the connection)
L422[20:01:45] ⇨ Joins: Nachtara_BB (~nachtara_@quartz.breakinblocks.com)
L423[20:04:50] ⇦ Quits: Nachtara_BB (~nachtara_@quartz.breakinblocks.com) (Remote host closed the connection)
L424[20:06:44] ⇨ Joins: Nachtara_BB (~nachtara_@quartz.breakinblocks.com)
L425[20:25:28] ⇨ Joins: Nachtara (uid74214@id-74214.charlton.irccloud.com)
L426[20:25:42] <Nachtara> Hello
L427[20:28:35] <Nachtara> gamax92: I have loaded your IRC client into my computer, and I was wondering how to have it deal with being unloaded
L428[20:30:22] <Mimiru> Nachtara, what do you mean?
L429[20:31:14] <Nachtara> I loaded gamax's IRC client onto my computer
L430[20:31:25] <Mimiru> Yes...
L431[20:31:26] <Nachtara> and I was testing how it deals with being unloaded
L432[20:31:41] <Nachtara> And it will disconnect, which makes sense
L433[20:32:09] <Nachtara> however, when the chunk is loaded back up, it does absolutely nothing and requires the computer to be rebooted
L434[20:32:24] <Nachtara> which in fact is really bad
L435[20:33:12] <Nachtara> because when the server restarts it effectively kills it and requires me to log in and reboot it manually
L436[20:33:27] <Nachtara> and i intended to use it to keep logs
L437[20:33:43] <Mimiru> I've not had that issue..
L438[20:34:00] <Nachtara> you mean when the server restarts?
L439[20:34:01] <Mimiru> Does it do the same with the default IRC client on the IRC disk?
L440[20:34:06] ⇨ Joins: Doty1154 (~Doty1154@2601:648:8002:ea78:934:2a1b:3625:4c79)
L441[20:34:15] <Nachtara> I used gamax's client
L442[20:34:31] <Mimiru> Yes, and I'm asking if you've also tried the default IRC client to see if it has the same issue.
L443[20:34:47] <gamax92> uhh, pretty sure the it-being-not-loaded thing makes all the sockets error and therefor disconnect.
L444[20:34:56] <gamax92> so it should handle it
L445[20:35:12] <Nachtara> Ok
L446[20:35:49] <Nachtara> it is impossible to obtain the irc floppy disk through crafting
L447[20:35:57] <Nachtara> and that is why i used gamax's client
L448[20:36:04] <Kodos> Well, that's why they call it a loot disk
L449[20:36:08] <Kodos> But you can wget it through OC's repo
L450[20:36:50] <Mimiru> wget https://raw.githubusercontent.com/MightyPirates/OpenComputers/master-MC1.7.10/src/main/resources/assets/opencomputers/loot/OpenIRC/irc.lua
L451[20:37:43] <Nachtara> Ok i'm testing something
L452[20:37:53] <Nachtara> crashing server to see if i disconnect
L453[20:48:45] <Nachtara> gamax92: does unloading the chunk do the same stuff to it that crashing server would
L454[20:49:15] <gamax92> yes
L455[20:49:22] <Nachtara> Okay
L456[20:55:53] ⇦ Quits: Nachtara_BB (~nachtara_@quartz.breakinblocks.com) (Remote host closed the connection)
L457[20:56:58] <Nachtara> Ok there i go
L458[21:01:41] <Nachtara> Mimiru: what do i type into it for default client
L459[21:02:21] <Mimiru> irc
L460[21:02:25] <Mimiru> it'll tell you what it wants
L461[21:03:41] <Nachtara> Ok
L462[21:03:51] <Nachtara> Well this is assuming i do not have the disc
L463[21:04:05] <Mimiru> you wget the client, like I showed above
L464[21:04:05] <Mimiru> wget https://raw.githubusercontent.com/MightyPirates/OpenComputers/master-MC1.7.10/src/main/resources/assets/opencomputers/loot/OpenIRC/irc.lua
L465[21:04:11] <Mimiru> and then you just type irc.
L466[21:04:27] <Mimiru> http://michi.pc-logix.com/2015-11-04_21-04-19.png
L467[21:06:18] ⇨ Joins: Wembly (~Wembly@50.240.220.69)
L468[21:07:38] <Nachtara> If i have a program named irc already will it get overwritten
L469[21:08:16] ⇨ Joins: LameIRCBot (~lameircbo@quartz.breakinblocks.com)
L470[21:08:16] <EnderBot2> !kick LameIRCBot Your owner does not have permission to bring you here. (if you feel this is an error then please tell Lizzy or Sangar)
L471[21:08:16] *** LameIRCBot was kicked by zsh ((EnderBot2 (EnderBot)) Your owner does not have permission to bring you here. (if you feel this is an error then please tell Lizzy or Sangar)))
L472[21:08:24] <Mimiru> yes
L473[21:08:30] <Nachtara> Ok good
L474[21:08:32] <Mimiru> well, I think
L475[21:08:39] <Mimiru> I dunno if you have to specify -f or not
L476[21:10:27] <Mimiru> Yeha if the file exists you have to wget -f URL
L477[21:10:36] <Nachtara> Ok
L478[21:10:41] ⇨ Joins: NachBB (~nachbb@quartz.breakinblocks.com)
L479[21:10:52] <NachBB> Hmph
L480[21:11:26] ⇦ Quits: NachBB (~nachbb@quartz.breakinblocks.com) (Remote host closed the connection)
L481[21:11:38] ⇦ Quits: Wembly (~Wembly@50.240.220.69) (Ping timeout: 206 seconds)
L482[21:12:50] ⇨ Joins: NachBB (~nachbb@quartz.breakinblocks.com)
L483[21:14:30] <NachBB> Can you see this?
L484[21:14:33] <Mimiru> Yes
L485[21:14:34] <Nachtara> Yes.
L486[21:14:39] <Nachtara> what color is the client
L487[21:14:41] <Nachtara> blue?
L488[21:14:45] <NachBB> Yes.
L489[21:14:57] <Nachtara> Mimiru- what color is default oc client
L490[21:15:19] <Mimiru> erm, it's white text on black?
L491[21:15:25] <Nachtara> crap
L492[21:15:39] <Nachtara> he's still on gamax's
L493[21:15:39] ⇨ Joins: Michi_OC (~michi_oc@tmcfan.xrbunker.com)
L494[21:15:44] <Michi_OC> test
L495[21:15:52] <Mimiru> http://michi.pc-logix.com/Minecraft_1.7.10_2015-11-04_21-15-43.png
L496[21:16:37] <Michi_OC> huh... the bounding box on my printer is a bit to small... thanks tablet.
L497[21:16:46] <Nachtara> Hm... This sucks
L498[21:17:15] <Nachtara> spence aka NachBB did you do the -f version
L499[21:17:35] <NachBB> Yes.
L500[21:17:37] <Michi_OC> If you did the wget -f URL then ran irc it should have used the defautl client
L501[21:17:59] <Nachtara> why is it using gamax's then
L502[21:18:01] <Michi_OC> wocchat, if installed via oppm has to be ran with "wocchat"
L503[21:18:14] <NachBB> http://i.imgur.com/MqGoVh8.png
L504[21:18:16] ⇦ Quits: Xakorik__ (~Xakorik@173.80.89.182) (Quit: Leaving)
L505[21:18:17] <Michi_OC> idk.... rm -rf irc.lua reboot, then wget url
L506[21:18:34] <NachBB> There, took a screenshot.
L507[21:18:49] <Nachtara> Boo
L508[21:19:05] <Michi_OC> how did you install wocchat..?
L509[21:19:19] <Nachtara> Copied it to pastebin then pastebin get
L510[21:19:26] <Michi_OC> o_O
L511[21:19:32] <Nachtara> lol
L512[21:19:34] <Michi_OC> mmhmm..
L513[21:19:37] <Nachtara> okay spence
L514[21:19:51] <Nachtara> reboot, rm -rf irc.lua
L515[21:20:03] <Nachtara> then reboot and wget that again
L516[21:20:32] <NachBB> alright
L517[21:20:36] <Mimiru> make sure you use wget https://raw.githubusercontent.com/MightyPirates/OpenComputers/master-MC1.7.10/src/main/resources/assets/opencomputers/loot/OpenIRC/irc.lua
L518[21:20:44] <Nachtara> Yeah that
L519[21:20:56] <NachBB> I'm just going to point out it does not handle copying in this very well.
L520[21:21:05] <NachBB> So would you post that in the other irc?
L521[21:21:05] <Mimiru> No, not at all. :P
L522[21:21:22] <Nachtara> :P
L523[21:21:31] <Mimiru> http://paste.pc-logix.com/view/raw/b955a0ef if it helps any :P
L524[21:21:31] <Nachtara> i sent it to you in the other irc already
L525[21:21:41] <NachBB> Still doesn't help me. :p
L526[21:22:02] <Nachtara> A
L527[21:22:10] <Nachtara> Already sent it to you
L528[21:22:34] <NachBB> Yeah but my irc client is being retarded and not copying it now
L529[21:22:36] <NachBB> give me a sec
L530[21:22:50] ⇦ Quits: NachBB (~nachbb@quartz.breakinblocks.com) (Remote host closed the connection)
L531[21:25:39] ⇨ Joins: NachBB (~nachbb@quartz.breakinblocks.com)
L532[21:25:50] <NachBB> Still blue
L533[21:25:57] <Nachtara> FUCK
L534[21:25:59] <Mimiru> …
L535[21:26:00] <Nachtara> ok giv wup
L536[21:26:01] <Mimiru> How?
L537[21:26:03] <Mimiru> ¬_¬
L538[21:26:05] <Nachtara> i'll get it tomorrow
L539[21:26:36] <Nachtara> turn it off, it's a lost cause
L540[21:26:37] <NachBB> Powering off then.
L541[21:26:39] <NachBB> Later
L542[21:26:42] <NachBB> or not I guess
L543[21:26:50] ⇦ Quits: NachBB (~nachbb@quartz.breakinblocks.com) (Remote host closed the connection)
L544[21:45:42] *** kirby|gone is now known as mrkirby153
L545[22:11:07] *** mr208 is now known as mallrat208
L546[22:29:27] ⇦ Quits: Lathanael|Away (~Lathanael@p5496076A.dip0.t-ipconnect.de) (Ping timeout: 206 seconds)
L547[22:35:41] <Kodos> What games have some sort of programming in them?
L548[22:36:09] ⇨ Joins: SergOmarov (webchat@188.191.175.156)
L549[22:36:29] <SergOmarov> Hello. There are those who create mods?
L550[22:36:29] <sugoi> Kodos: minecraft with opencomputers
L551[22:36:40] <Kodos> Serg, what do you need?
L552[22:37:01] <SergOmarov> help on the creation castom Tablet
L553[22:37:18] <Kodos> What are you trying to create?
L554[22:37:32] ⇨ Joins: Lathanael|Away (~Lathanael@p54961A47.dip0.t-ipconnect.de)
L555[22:38:44] <SergOmarov> custom Tablet, item
L556[22:39:16] <SergOmarov> I'm sorry, I have described ) "custom"
L557[22:39:18] <Kodos> I'm... not sure why you'd need a custom one. What's wrong with the ones in OC?
L558[22:40:25] <SergOmarov> I just want to expand its capabilities without using the creation of individual components
L559[22:40:46] <Kodos> What sort of capabilities?
L560[22:41:47] <SergOmarov> actions mouse, right click, left click...
L561[22:41:59] <SergOmarov> move of player
L562[22:44:35] <SergOmarov> I seen interface Tablet on li.cil.oc.api.internal, but I do not understand how to use it , in particular , the interfaces inherited them
L563[22:59:45] <Kodos> I'm not sure what you need. You can get rightclick and left click events on the Lua side
L564[23:01:22] ⇦ Quits: SergOmarov (webchat@188.191.175.156) (Ping timeout: 204 seconds)
L565[23:16:47] *** SleepingFairy is now known as Daiyousei
L566[23:17:05] ⇨ Joins: npe|office (~NPExcepti@bps-gw.hrz.tu-chemnitz.de)
L567[23:38:54] <gamax92> I launched imagemagick at idle priority, and it still froze my entire computer...
L568[23:43:05] *** Cranium is now known as Cranium[Away]
L569[23:44:15] <gamax92> 1128 - 1278
L570[23:47:00] <gamax92> lets try with 4% of the data.
L571[23:48:30] <Kodos> Anyone running MC atm with OC and LanteaCraft?
<<Prev Next>> Scroll to Top