<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:07:58] <gamax92> time to play with docker again!
L2[00:10:45] ⇦ Quits: Wiiplay123 (~kvirc@adsl-72-154-27-119.bna.bellsouth.net) (Quit: KVIrc 4.9.2 Aria http://www.kvirc.net/)
L3[00:31:14] <None> ,I found a POP Station-Looking thing for ~US$2.3... By contrast, the cheapest McDonalds full meal is ~US$3... No wonder they still make these damn things
L4[00:40:58] ⇨ Joins: AshIndigo (~EiraIRC@host-92-11-196-119.as43234.net)
L5[00:48:37] ⇦ Quits: Ai (~Nikky@nikky.moe) (Ping timeout: 189 seconds)
L6[00:49:48] ⇨ Joins: Nikky (~Nikky@nikky.moe)
L7[00:49:48] ⇦ Quits: Nikky (~Nikky@nikky.moe) (Killed (SessionServ (Connection limit exceeded.)))
L8[00:50:23] ⇨ Joins: Nikky (~Nikky@nikky.moe)
L9[00:50:23] ⇦ Quits: Nikky (~Nikky@nikky.moe) (Killed (SessionServ (Connection limit exceeded.)))
L10[00:50:37] ⇨ Joins: Nikky (~Nikky@nikky.moe)
L11[00:50:37] ⇦ Quits: Nikky (~Nikky@nikky.moe) (Killed (SessionServ (Connection limit exceeded.)))
L12[00:50:53] ⇨ Joins: Nikky (~Nikky@nikky.moe)
L13[00:50:53] ⇦ Quits: Nikky (~Nikky@nikky.moe) (Network ban)
L14[00:50:53] ⇦ Quits: Saphire (~saphire@nikky.moe) (Network ban)
L15[00:53:40] <Temia> Uh-oh
L16[01:00:17] <gamax92> oops.
L17[01:01:06] ⇦ Quits: AshIndigo (~EiraIRC@host-92-11-196-119.as43234.net) (Read error: Connection reset by peer)
L18[01:09:38] ⇨ Joins: Saphire (~saphire@nikky.moe)
L19[01:10:03] ⇨ Joins: Nikky (~Nikky@nikky.moe)
L20[01:10:49] ⇨ Joins: techno156 (~techno156@203.114.73.135)
L21[01:12:12] *** Nikky is now known as Ai
L22[01:14:18] <gamax92> Temia: I've been repeatedly processing an image with a noise reduction algorithm
L23[01:15:09] <gamax92> Temia: https://i.imgur.com/MT520xS.png this was a tree
L24[01:18:33] <gamax92> it's multi threaded too so all my cores are heating up pretty well too, ~57C
L25[01:20:18] <gamax92> which I'm just gonna pause this and then let it run overnight.
L26[01:29:21] ⇨ Joins: VikeStep (~VikeStep@192.43.96.58.static.exetel.com.au)
L27[01:58:38] ⇦ Quits: Doty1154 (~Doty1154@2601:648:8000:134f:6df2:8c67:adb6:2aab) (Read error: Connection reset by peer)
L28[02:10:44] ⇨ Joins: npe|office (~NPExcepti@bps-gw.hrz.tu-chemnitz.de)
L29[02:24:12] ⇨ Joins: diphtherial (~diphtheri@dainsleif.pw)
L30[02:29:49] <diphtherial> hello; is there an addon that allows for listening for incoming connections rather than just making outgoing connections?
L31[02:30:40] <diphtherial> currently i have a script that POSTs the contents of my refined storage system to a webserver that's running on the same machine as my MC server
L32[02:31:47] <diphtherial> the webserver caches the posted data and displays it when you access another page, but it'd be nice if the webserver could fetch the current contents of the inventory when the inventory page is accessed
L33[02:32:32] <diphtherial> or, on a simpler note, is there a way to 'cron' tasks in an opencomputer instance? right now i just have a loop with an os.sleep() call in it that posts every second or two, but i can't use the computer otherwise while the script's running
L34[02:33:03] <diphtherial> (i'm not a huge fan of periodically pushing the data out, but if there isn't another way i can live with it)
L35[02:34:09] <diphtherial> (i was also thinking about opening a tcp connection from MC to the webserver and using that to receive requests, but i'm unsure of how to integrate that with flask, the python web framework i'm using for the local webserver)
L36[02:37:01] <Izaya> diphtherial: There's a way to do background timers I think
L37[02:37:07] <Izaya> event.timer maybe?
L38[02:38:11] <Izaya> ~w event
L39[02:38:11] <ocdoc> http://ocd.cil.li/api:event
L40[02:40:41] <diphtherial> ah, thanks!
L41[02:49:36] <diphtherial> i assume that all you need to do to make a program run in 'driver mode' is to call event.listen() and then exit?
L42[03:08:57] <Temia> Diptherial, have you looked at Python's own socket library for the OC server side management?
L43[03:10:45] <Temia> It's pretty low-level though.
L44[03:10:47] <Temia> https://docs.python.org/3/library/socket.html
L45[03:11:26] <diphtherial> Temia: i've entertained it, yes. it'd be nice for it to integrate with flask's event loop, but i guess i could just have it running in a different thread
L46[03:13:19] <Temia> If you're genuinely considering threading, I'm not about to get in your way. The GIL will hardly be a problem in this scenario, in any case.
L47[03:14:04] <diphtherial> the main reason i'd consider threading is so that i don't have to write a whole IPC thing to let flask get at the socket
L48[03:14:08] <Temia> I'd offer more insight into something that plays more nicely with Flask, but I've honestly never used any web frameworks -- I mostly use Python for prototyping.
L49[03:14:13] <diphtherial> and yeah, i anticipate the socket will be blocking 99% of the time
L50[03:14:34] <diphtherial> no problem, it's nice to talk about the problem even if you don't have specific suggestions :)
L51[03:15:15] <Temia> It's nice to meet someone who knows what they're doing enough that we can skip straight to the theory portion :'D
L52[03:16:23] <diphtherial> :3
L53[03:16:30] <Temia> If you're still working on it tomorrow, I may look into Flask to get a better idea of its operational paradigm.
L54[03:17:26] <diphtherial> sounds good :) if you're looking to do web programming in python in general, i quite like flask; it's similar to django, but more modular
L55[03:17:49] <diphtherial> what language/environment do you mostly use, out of curiosity?
L56[03:19:30] <diphtherial> (python's my go-to for both work and hacking on stuff, with R a close second, and html/css/js for building viz dashboards. i use java/scala for game programming or when i otherwise have to, e.g. android dev)
L57[03:20:02] <diphtherial> (fwiw, i'm a computer scientist with an MS, currently working on a PhD)
L58[03:20:07] <diphtherial> *a MS?
L59[03:20:11] <Temia> Oh, nice.
L60[03:20:47] <diphtherial> (i figure this channel attracts a pretty wide demographic)
L61[03:20:50] <None> isn't the 'a/an' thing determined phonetically? M is 'em' so 'an MS' probably
L62[03:21:01] <diphtherial> (in terms of age, experience, etc.)
L63[03:21:23] <diphtherial> Corded: that's what i was thinking, but if you expand it out it'd be "an master's of science"
L64[03:21:29] <Temia> I'm just into programming and tinkering as a hobby. I've been messing primarily with Python, but a lot of it is spent interfacing with esoteric C libraries. It's been a while since I've had the time and peace of mind to code though... .~.
L65[03:21:33] <diphtherial> i'll go with an MS, rolls off the tongue better
L66[03:22:01] <None> I mess with python primarily
L67[03:22:04] <gamax92> Wheee
L68[03:22:07] <None> I need a good C book
L69[03:22:14] <gamax92> Quad Core computing because I can't get CUDA to work :<
L70[03:22:16] <diphtherial> Temia: ah, heh, i don't get my hands wet with the python/c interface much...kind of scares me, to be honest
L71[03:22:24] <diphtherial> i respect people who do, though
L72[03:22:26] <Temia> Oh, it should. :D
L73[03:22:40] <None> CPython is scary
L74[03:22:45] * gamax92 gives Temia ffi D:<
L75[03:23:12] <gamax92> anyway time to sleep.
L76[03:23:24] <Temia> Same. I'm expecting my passport in the morning.
L77[03:23:42] <diphtherial> alas, it's 10:20am here in der scwheiz
L78[03:23:51] <diphtherial> see you all in the later afternoon/evening, i suppose
L79[03:24:05] <None> it's 17:23 for me
L80[03:24:07] <Temia> Ciao.
L81[03:24:21] <None> what
L82[03:24:26] <diphtherial> Corded: ah, asia?
L83[03:24:39] <gamax92> Corded is a Discord - IRC relay bot
L84[03:24:50] <None> yes, asia
L85[03:24:57] <diphtherial> aha
L86[03:25:22] <diphtherial> i was wondering about all those "<None>"s, heh
L87[03:25:43] <vifino> Night, gamax92.
L88[03:26:00] <None> Did you think it's corded breaking or something
L89[03:26:29] <None> I don't think corded is written in Python anyway
L90[03:26:38] <gamax92> Java
L91[03:26:58] <None> write it in node because atwood's law
L92[04:00:13] ⇨ Joins: MindWorX (~MindWorX@2001:2012:141e:6f00:958c:87a5:9804:f720)
L93[04:09:55] <Kodos> Anyone know how to get a hold of amaxter
L94[04:19:35] <MindWorX> Is amaxter a person? :P
L95[04:24:08] ⇨ Joins: BearishMushroom (~BearishMu@90-231-174-194-no159.tbcn.telia.com)
L96[04:39:02] *** g is now known as ultros
L97[04:39:04] *** ultros is now known as g
L98[04:57:46] <Kodos> Yes, but I got it now, thanks
L99[05:40:50] <Forecaster> @Kodos: http://towerofawesome.org/files/kodos_audio
L100[05:43:50] <Kodos> \o/
L101[05:43:58] <Kodos> I'll get this inworld as soon as I can afford upload fees
L102[05:44:06] <Kodos> Much much much appreciated
L103[06:42:18] ⇨ Joins: Vexatos (~Vexatos@p200300556E5AFE315847B618F6092BFE.dip0.t-ipconnect.de)
L104[06:42:18] zsh sets mode: +v on Vexatos
L105[06:43:45] <Vexatos> o/
L106[06:45:08] <Forecaster> o-
L107[06:50:59] <MindWorX> o\
L108[06:59:29] <Kodos> o7
L109[07:00:16] <None> -O8
L110[07:07:59] ⇨ Joins: sciguyryan (~sciguyrya@45.62.37.21)
L111[07:21:25] ⇦ Quits: Dark (~MrDark@cpe-75-185-6-240.columbus.res.rr.com) (Read error: Connection reset by peer)
L112[07:21:39] <diphtherial> has anyone already written a shell that can be telnet'd into from outside the game? i was thinking about tackling it if someone hasn't already
L113[07:22:14] <diphtherial> (the idea would be to have a proxy running remotely that'd accept a connection from the computer in-game and wait for connections, then proxy the communication back and forth)
L114[07:22:44] <diphtherial> (when i say 'remotely', i mean in a separate process, whether it's on the same actual machine or not)
L115[07:25:10] <Vexatos> wew https://puu.sh/tMwpz/98984f3fcb.png
L116[07:25:14] <Vexatos> what could this be?!?
L117[07:26:15] <Ashindigo_> Open computers on 1.10.2+?
L118[07:27:18] <Vexatos> Well that has been the case for a year
L119[07:27:22] <Vexatos> I am talking something else >_>
L120[07:29:53] <Ashindigo_> More creative stuff?
L121[07:36:45] <Kodos> OC:PE?
L122[07:47:09] <Lizzy> eww no
L123[07:47:20] <Lizzy> wrong chat
L124[07:47:26] <Lizzy> -_-
L125[07:50:08] <S3> wtf
L126[07:50:15] <S3> "HARUKITAHACKER> Heloo Iam Hacker Indonesian :)"
L127[07:51:04] <diphtherial> i kind of wish discord and irc weren't hooked up like this -- i have no idea who all those people in discord are
L128[07:51:17] ⇦ Quits: npe|office (~NPExcepti@bps-gw.hrz.tu-chemnitz.de) (Remote host closed the connection)
L129[07:51:25] <Forecaster> do you have any idea who all these people on irc are?
L130[07:51:39] <diphtherial> i can at least see a list of them and tab-complete their names
L131[07:51:46] <S3> diphtherial: do you know who I am?
L132[07:52:02] <diphtherial> never mind, it was a stupid point
L133[07:52:08] <S3> lol
L134[07:56:41] <Mimiru> diphtherial, just ignore corded then
L135[07:56:45] <Mimiru> a few other people do..
L136[07:56:57] <Mimiru> Sure, you end up getting half of a conversation sometimes...
L137[07:57:50] <S3> OR
L138[07:57:56] <S3> diphtherial can download discord..
L139[08:01:23] <None> you can use discord in browser, the downloaded version is an electron app anyway
L140[08:01:47] <Vexatos> S3, found any bugs yet?
L141[08:02:38] <S3> Vexatos: is it normal for the compiler to generate code that morphs into transformers?
L142[08:02:54] <Vexatos> a what D:
L143[08:03:41] <Ashindigo_> What?
L144[08:03:45] <S3> https://en.wikipedia.org/wiki/The_Transformers_(TV_series)
L145[08:04:05] <S3> you know, robots in disguise?
L146[08:05:46] <S3> you boot OC and then all of a sudden the OC computer morphs into a dinobot
L147[08:06:00] <S3> and goes out of control
L148[08:06:21] <Vexatos> ah yea
L149[08:06:24] <Vexatos> that sometimes happens
L150[08:06:29] <Vexatos> Haven't found out why yet :X
L151[08:06:34] <Ashindigo_> :|
L152[08:07:00] <diphtherial> i have discord installed; i'm just not particularly fond of it
L153[08:07:15] <diphtherial> but yeah, noted; i retract my complaint
L154[08:07:21] <S3> diphtherial: why is that
L155[08:08:11] <S3> I like how it's a hosted application but actually not done in a snobbish way
L156[08:08:11] ⇦ Quits: MindWorX (~MindWorX@2001:2012:141e:6f00:958c:87a5:9804:f720) (Read error: Connection reset by peer)
L157[08:08:50] ⇨ Joins: MindWorX (~MindWorX@2001:2012:141e:6f00:958c:87a5:9804:f720)
L158[08:23:38] ⇨ Joins: Cervator (~Thunderbi@2601:4c1:4000:1050:35ed:3f43:668c:4942)
L159[08:40:08] ⇨ Joins: Dark (~MrDark@cpe-75-185-6-240.columbus.res.rr.com)
L160[08:49:41] <Vexatos> %tell Sangar I just found out about the Non-Disassembly Agreement.
L161[08:49:41] <MichiBot> Vexatos: Sangar will be notified of this message when next seen.
L162[08:51:09] <Kodos> Vex, what was in the picture
L163[08:51:18] <Kodos> I've been waiting for you to say so I can sleep
L164[08:51:30] <Vexatos> Kodos, floppy disks finally show up in JEI :X
L165[08:51:39] <Kodos> Oh
L166[08:51:40] <Kodos> Ffs
L167[08:51:43] <Kodos> Had me all excited
L168[08:52:02] <Forecaster> non-disassembly agreement?
L169[08:52:32] <Vexatos> yea
L170[09:00:03] <Forecaster> ??
L171[09:00:22] <Vexatos> !!
L172[09:06:10] <S3> non disassembly agreement?
L173[09:11:32] ⇦ Quits: sciguyryan (~sciguyrya@45.62.37.21) (Remote host closed the connection)
L174[09:32:00] ⇦ Quits: techno156 (~techno156@203.114.73.135) (Quit: Leaving)
L175[09:32:33] ⇨ Joins: brandon3055_ (~Brandon@122-129-151-98.dynamic.ipstaraus.com)
L176[09:33:12] ⇦ Quits: brandon3055 (~Brandon@122-129-151-98.dynamic.ipstaraus.com) (Read error: Connection reset by peer)
L177[09:42:26] <diphtherial> S3: fair, maybe i just haven't given it enough time
L178[09:48:43] ⇦ Quits: Hobbyboy (Hobbyboy@hobbyboy.co.uk) (Ping timeout: 189 seconds)
L179[09:54:51] ⇨ Joins: Hobbyboy (Hobbyboy@hobbyboy.co.uk)
L180[09:58:52] ⇨ Joins: Keanu73 (~Keanu73@host-78-148-131-109.as13285.net)
L181[10:06:31] <20kdc> dare I ask what the non-assembly agreement is?
L182[10:09:16] <Vexatos> You daren't
L183[10:10:47] * Ashindigo_ dares to ask about the agreement
L184[10:16:10] ⇨ Joins: AshIndigo (~EiraIRC@host-92-11-196-119.as43234.net)
L185[10:26:54] <Sangar> o/
L186[10:28:18] <Michiyo> \o
L187[10:28:24] <Sangar> Vexatos, re 1385, iirc it'd have to be a bitmask or something, it's one event if multiple change isn't it?
L188[10:28:36] <Sangar> nda... the command? i completely forgot about that existing :X
L189[10:29:17] <Vexatos> the redstone_changed event is quite.... embedded
L190[10:29:31] <Vexatos> called through a carpload of functions that do not carry colour information
L191[10:29:44] <Vexatos> including generic redstone update methods
L192[10:29:47] <Sangar> guess that's why noone did it yet
L193[10:30:08] <Vexatos> Also no news on whether your fix worked D:
L194[10:35:11] <Vexatos> Sangar, would /oc_sendDC be a good alias for a command called /oc_sendDebugMessage
L195[10:35:14] <Vexatos> or do you have a better idea
L196[10:39:03] <Sangar> what kind of debug message?
L197[10:39:41] <Sangar> just oc_debug maybe? oc_dbg? oc_sdbg?
L198[10:40:21] <Vexatos> Sangar, this kind of debug message https://github.com/MightyPirates/OpenComputers/pull/2256
L199[10:41:02] <Sangar> ah. well. i stand by my suggestions :P
L200[10:41:21] <Vexatos> I guess sdbg
L201[10:41:41] <Vexatos> I wanted to implement the issue
L202[10:41:42] <Vexatos> and then I realized
L203[10:41:49] <Vexatos> there is no good way to copy an item's address to clipboard
L204[10:41:55] <Vexatos> (adapter only working on blocks)
L205[10:42:03] <Vexatos> so I made a command for that too .-.
L206[10:42:08] <Sangar> ^^
L207[10:42:16] <Vexatos> so now you can debug.sendClipboardText("Vexatos", debug.address)
L208[10:42:27] <Vexatos> and I am using the Clipboard enum entry
L209[10:42:45] <Vexatos> which was only used for client->server (pasting clipboard to screens)
L210[10:42:50] <Vexatos> so unused on server->client
L211[10:43:34] <Sangar> nice
L212[10:44:12] <Vexatos> Aaand I stole QuantumNetwork and simplified it for this purpose :⁾
L213[10:44:35] <Vexatos> so uh
L214[10:44:40] <Vexatos> try it? merge it? I don't know
L215[10:46:55] <Vexatos> also Sangar hype https://github.com/MightyPirates/OpenComputers/commit/3681324d001812f896912e9aad83c0f400562ac7
L216[10:47:05] ⇨ Joins: Trangar (~Trangar@249-153-145-85.ftth.glasoperator.nl)
L217[10:47:21] <Vexatos> (this though https://github.com/MightyPirates/OpenComputers/blob/3681324d001812f896912e9aad83c0f400562ac7/src/main/scala/li/cil/oc/integration/jei/ModJEI.scala#L23-L33)
L218[10:48:32] <Forecaster> http://m.imgur.com/gallery/molUq7n
L219[10:49:03] <Forecaster> I didn't see how the table got pushed the first time, had to watch again
L220[11:17:59] <Vexatos> %tell payonel https://github.com/MightyPirates/OpenComputers/issues/2255#issuecomment-277306761
L221[11:17:59] <MichiBot> Vexatos: payonel will be notified of this message when next seen.
L222[11:18:15] ⇨ Joins: superminor2 (~SuPeR@2607:5300:60:1b63::1)
L223[11:20:13] ⇦ Parts: Chaoschaot234|away (~Chaoschao@83-221-68-156.dynamic.primacom.net) ())
L224[11:20:30] ⇨ Joins: Chaoschaot234 (~Chaoschao@83-221-68-156.dynamic.primacom.net)
L225[11:21:32] <Chaoschaot234> o0 - Names longer then 18 chars are quited? No wonder why I wan't able to change my name
L226[11:22:09] <Forecaster> no, they're silenced
L227[11:22:28] <Forecaster> oh, quieted, yes :P
L228[11:22:35] <Forecaster> I misread that
L229[11:23:15] <Forecaster> operators can see the messages though, but none are here right now
L230[11:31:56] ⇦ Quits: VikeStep (~VikeStep@192.43.96.58.static.exetel.com.au) (Ping timeout: 180 seconds)
L231[11:36:00] ⇨ Joins: Turtle (~SentientT@82.171.92.73)
L232[11:36:03] ⇦ Quits: superminor2 (~SuPeR@2607:5300:60:1b63::1) (Ping timeout: 206 seconds)
L233[11:39:37] ⇨ Joins: superminor2 (~SuPeR@eve.superminor2.net)
L234[11:47:30] <Saphire> Uh
L235[11:47:41] <Saphire> Is mozPressure supposed to be always zero?
L236[12:25:56] ⇦ Quits: Deamon (~Deamon@irc.thevoxelbox.com) (Ping timeout: 180 seconds)
L237[12:27:06] <payonel> Sangar: o/
L238[12:27:18] <payonel> Vexatos: which should be #1000, your debug card or openos upgrade? :)
L239[12:27:36] <Vexatos> sangar decides :⁾
L240[12:28:09] <payonel> ah, we'll let him merge? sounds good to me
L241[12:28:15] ⇨ Joins: Deamon (~Deamon@irc.thevoxelbox.com)
L242[12:28:19] <Vexatos> Sangar, just so you know
L243[12:28:23] <Vexatos> we are on build 998 now
L244[12:28:29] <Vexatos> so whichever PR you merge second
L245[12:28:33] <Vexatos> it will be the chosen one
L246[12:28:39] <payonel> ^.^
L247[12:29:31] <Forecaster> make a build that just changes the spelling of a word somewhere
L248[12:29:32] <payonel> gamax92: i've started my "ocpc" project (i might change the name) my cpp based oc emulator
L249[12:29:50] <payonel> got my first lua env stuff running, it's super fun
L250[12:33:17] ⇨ Joins: Wiiplay123 (~kvirc@adsl-72-154-27-119.bna.bellsouth.net)
L251[12:34:01] <gamax92> payonel: I will murder you. :3
L252[12:34:13] <payonel> haha, why?
L253[12:35:28] <gamax92> payonel: because in cpp you can do things I can't do
L254[12:35:53] <payonel> the main reason for it, btw, is to profile memory
L255[12:35:53] <gamax92> proper memory limiting is possible there
L256[12:35:58] <payonel> yeah
L257[12:36:53] <payonel> also, i'm building for linux terminals using xterm and ascii escape sequences for cursor movement, coloring, and mouse events
L258[12:38:06] <payonel> there is a lot more to do. it helps me realize even more how the ocemu project is outstanding
L259[12:39:53] <gamax92> I would have had a terminal backend if it wern't for the fact that unicode in the terminal doesn't match up entirely to what oc has
L260[12:40:05] <gamax92> some characters are missing, and some are the wrong width
L261[12:41:07] <payonel> oooo
L262[12:41:11] <payonel> i didn't consider that
L263[12:41:18] <payonel> welp
L264[12:41:20] <payonel> :)
L265[12:41:46] <payonel> i'll either intercept and adjust on the fly, or use ocemu when i need to verify unicode spacing
L266[12:42:01] ⇨ Joins: xarses_ (~xarses@c-71-198-44-234.hsd1.ca.comcast.net)
L267[12:43:02] ⇨ Joins: andreww (~xarses@67.218.117.197)
L268[12:45:26] ⇦ Quits: xarses_ (~xarses@c-71-198-44-234.hsd1.ca.comcast.net) (Ping timeout: 180 seconds)
L269[13:29:19] ⇨ Joins: rikai (~quassel@162.252.243.91)
L270[13:41:12] <Vexatos> Sangar, wake up :⁾
L271[13:41:34] <gamax92> Sangar, keep asleep
L272[13:47:41] ⇨ Joins: SinaMegapolis (webchat@188.166.60.153)
L273[13:47:55] <SinaMegapolis> hello :D
L274[13:51:06] <MGR> hello
L275[13:53:30] <SinaMegapolis> how are you?
L276[13:59:53] <gamax92> https://www.youtube.com/watch?v=43whk31Oeu8
L277[13:59:54] <MichiBot> Generation Loss | length: 2m 1s | Likes: 0 Dislikes: 0 Views: 3 | by gamax92 | Published On 3/2/2017
L278[14:01:36] <SinaMegapolis> wow
L279[14:01:57] <SinaMegapolis> can you give me a link about "what is irc channel?"?
L280[14:02:24] <gamax92> ?
L281[14:02:55] <Forecaster> http://what-is-irc-channel.com
L282[14:03:09] <SinaMegapolis> i dont know how to use irc channel (im newbie to irc :D)
L283[14:03:17] <Forecaster> you're using it right now
L284[14:03:22] <gamax92> the fact that you're typing and sending messages means you know how to use it
L285[14:03:26] <Forecaster> keep doing what you're doing
L286[14:03:53] <Forecaster> https://www.youtube.com/watch?v=bLOLd8jSAD4
L287[14:03:54] <MichiBot> #ShotsFired | length: 1m 10s | Likes: 4,400 Dislikes: 25 Views: 113,142 | by Jomm | Published On 11/10/2014
L288[14:04:11] <SinaMegapolis> oh
L289[14:04:57] <SinaMegapolis> im thinking for a custom texture pack of oc? whats your ideas?
L290[14:05:37] <Forecaster> you're free to make one
L291[14:05:42] <gamax92> Forecaster: oh.
L292[14:05:44] <gamax92> okay then.
L293[14:05:46] <Forecaster> I'm not sure what you want to hear other than that
L294[14:06:37] <SinaMegapolis> and
L295[14:06:44] <SinaMegapolis> theres one thing
L296[14:07:55] <SinaMegapolis> can i edit the textures in oc mod and then use them in format of a texturepack? or creating texture pack for oc needs other things?
L297[14:08:29] <Izaya> yeah, just have the files in the right place in a texture pack
L298[14:08:37] <Forecaster> are you asking if you have permission to modify and re-distribute the default textures?
L299[14:08:47] <Forecaster> or if you need to?
L300[14:08:50] <SinaMegapolis> um... yeah?
L301[14:09:11] <SinaMegapolis> if i need premission to?
L302[14:09:35] <SinaMegapolis> (such bad english, sorry :( )
L303[14:09:46] <Forecaster> https://github.com/MightyPirates/OpenComputers/blob/master-MC1.7.10/LICENSE
L304[14:10:06] <Forecaster> "All images / textures and localization strings (resources) are put in the
L305[14:10:08] <Forecaster> public domain"
L306[14:10:12] <Forecaster> etc
L307[14:11:08] <Forecaster> basically you don't need permission
L308[14:12:04] <Forecaster> I also belive that cc doesn't require keeping the license?
L309[14:12:21] <Forecaster> but I may be wrong about that
L310[14:14:06] <SinaMegapolis> oh good thanks
L311[14:16:47] <MindWorX> You're amazing Vexatos <3
L312[14:17:12] <Vexatos> a what
L313[14:17:18] <MindWorX> The debug card and chat commands
L314[14:17:23] <Forecaster> Lies
L315[14:17:30] <Forecaster> he's only 40% amazing
L316[14:17:31] <Vexatos> MindWorX, chat? ,_,
L317[14:17:42] <MindWorX> https://github.com/MightyPirates/OpenComputers/issues/2253
L318[14:17:44] <MindWorX> That stuff :P
L319[14:18:33] <Vexatos> ah
L320[14:19:02] <Vexatos> You need the full address of the debug card though
L321[14:19:10] <Vexatos> which you can now easily get
L322[14:19:25] <Vexatos> component.debug.sendToClipboard("yourname", component.debug.address)
L323[14:19:25] <Vexatos> wee
L324[14:19:34] <MindWorX> :D
L325[14:19:40] <SinaMegapolis> hello again
L326[14:19:54] <MindWorX> I love how efficient OC development is. Almost all my suggestions have been implemented within days.
L327[14:19:58] <SinaMegapolis> why the textures in oc github source are psd -_-
L328[14:20:11] <Vexatos> MindWorX, as long as you don't report a chunkloading-related bug, sure
L329[14:20:12] <Vexatos> ,_,
L330[14:20:24] <Sangar> >_>
L331[14:20:28] <Sangar> how did you even know i fell asleep
L332[14:20:30] <Forecaster> SinaMegapolis: you're looking at the wrong files
L333[14:20:37] <Vexatos> Sangar, because you suddenly stopped responding
L334[14:20:42] <Vexatos> instead of saying bye
L335[14:21:13] <Sangar> there could've been an earthquake! or a plain could've crashed.
L336[14:21:20] <Vexatos> In Germany?
L337[14:21:24] <Sangar> i feel stalked
L338[14:21:36] <Sangar> don't talk to me about probabilities
L339[14:21:39] <Sangar> <_<
L340[14:21:43] <Vexatos> mfw you feel stalked http://i2.wp.com/nuecke.de/wp-content/uploads/2015/08/Flo_bw.jpg
L341[14:21:53] <Sangar> <_>
L342[14:21:53] <Sangar> plz
L343[14:22:13] <Vexatos> you asked for it D:
L344[14:22:18] <Sangar> :P
L345[14:22:21] <Sangar> anyhoo
L346[14:22:28] <Sangar> i'm supposed to merge things i'm told
L347[14:22:28] <Vexatos> Sangar, two PRs
L348[14:22:32] <Vexatos> and we are on build 998
L349[14:22:34] <Vexatos> sooooo
L350[14:22:38] <Forecaster> actually I dunno how the textures are deployed
L351[14:22:40] <Forecaster> :P
L352[14:22:50] <Vexatos> Forecaster, easy
L353[14:22:52] <Forecaster> I'm guessing they're turned into images on build
L354[14:22:55] <Vexatos> take existing texture
L355[14:22:55] <Forecaster> or something
L356[14:22:59] <Vexatos> change colour palette
L357[14:22:59] <Sangar> deployed? i save for web from the psd :x
L358[14:23:03] <Vexatos> apply gradient
L359[14:23:05] <Vexatos> save
L360[14:23:10] <Forecaster> I can't find the textures in the repo
L361[14:23:13] <Forecaster> only the psd files
L362[14:23:15] <Sangar> they are in there
L363[14:23:17] <Sangar> under assets
L364[14:23:26] <Vexatos> src/main/resources/assets/opencomputers/textures
L365[14:23:27] <Sangar> src/resources something something
L366[14:23:31] <Sangar> that
L367[14:23:31] <Vexatos> snagar pls
L368[14:23:37] <Sangar> what
L369[14:23:50] <Vexatos> Not knowing your repo by heart :⁾
L370[14:23:51] <Forecaster> SinaMegapolis: https://github.com/MightyPirates/OpenComputers/tree/master-MC1.7.10/src/main/resources/assets/opencomputers/textures
L371[14:23:54] <Forecaster> there then
L372[14:24:00] <MindWorX> Could someone check up on this: https://github.com/MightyPirates/OpenComputers/issues/2252
L373[14:24:08] <SinaMegapolis> oh good, admins are here :D
L374[14:24:14] <MindWorX> Maybe give him a direction to look.
L375[14:24:17] <Vexatos> sangar is the only one that can do that :P
L376[14:24:29] <MindWorX> Yeah, I figured :P
L377[14:24:37] <MindWorX> Didn't want to tag him though.
L378[14:24:53] <Vexatos> Sangar, you better party on build 1000 because that _is_ an achievement... for a single version of minecraft :P
L379[14:24:57] * Forecaster tags Sangar with one that reads 'tag me'
L380[14:25:03] <Sangar> on a pi .-. not that i didn't do that, but... bah
L381[14:25:19] <Vexatos> Sangar, will there be pi(e) on build 1000? :⁾
L382[14:25:21] <Sangar> Vexatos, i got the alcohol ready
L383[14:25:25] <Vexatos> it would be hilarious
L384[14:25:29] <Vexatos> build 1000, fix for pi
L385[14:25:36] <Sangar> i'll see what i can do
L386[14:25:43] <SinaMegapolis> payonel said to me to suggest some of my ideas in the irc https://github.com/MightyPirates/OpenComputers/issues/2248
L387[14:25:54] <Sangar> 2256 and 2251 yes?
L388[14:26:14] <Vexatos> ya
L389[14:26:14] <SinaMegapolis> 2248
L390[14:26:38] <SinaMegapolis> why im disturbing in the admin chats :l
L391[14:27:21] <Sangar> i should probably kill the travis build stuff, since all the prs fail for some reason anyway :x
L392[14:27:41] <SinaMegapolis> vexatos a question
L393[14:27:52] <Vexatos> Sangar, only on 1.7.10
L394[14:27:55] <Vexatos> because timeout
L395[14:28:01] <Sangar> great
L396[14:28:04] <Vexatos> remember jenkins only does offline builds too
L397[14:28:15] <Vexatos> you cannot build OC anymore
L398[14:28:17] <Vexatos> online
L399[14:28:19] <Sangar> lol
L400[14:28:23] <Vexatos> in under 3 hours
L401[14:28:33] <SinaMegapolis> lol :D
L402[14:28:34] <Vexatos> not on 1.7
L403[14:28:38] <Vexatos> 1.8+ is just fine+
L404[14:28:49] <Sangar> maybe having all that integration in an extra mod wasn't such a bad idea after all :x
L405[14:28:50] <Sangar> oh well
L406[14:28:52] <Vexatos> Sangar, once you merge these, I'll merge upwards
L407[14:28:56] <Sangar> okeh
L408[14:29:03] <Forecaster> SinaMegapolis: don't ask to ask, just ask
L409[14:29:18] <Sangar> JUST DO IT
L410[14:29:21] <Sangar> uhh
L411[14:29:24] <Vexatos> Sangar, coloredlightscore is one of the bad connections
L412[14:29:34] <Vexatos> as in, endlessly loading
L413[14:29:43] <Sangar> ah. well. could just rip that out then?
L414[14:29:45] <Vexatos> you need to run gradle build --debug
L415[14:29:49] <Vexatos> to see which connections are derp
L416[14:29:56] <Vexatos> it's easy to see
L417[14:29:59] <Vexatos> where it gets stuck
L418[14:29:59] <Sangar> kewl
L419[14:30:10] <Vexatos> because it just gets stuck at "attemting to connect to <URL>"
L420[14:30:15] <Vexatos> then you remove that
L421[14:30:20] <Vexatos> and run gradle build --debug again
L422[14:30:22] <Sangar> i'll need a clean vm to test that because i don't want to crap all over my working devenv :X
L423[14:30:27] <Vexatos> yea
L424[14:30:52] <Sangar> guess i'll do that... some time...
L425[14:30:57] <Sangar> maybe even this weekend!
L426[14:31:07] <Vexatos> Yeah!
L427[14:31:19] <Vexatos> Soo who is the chosen build 1000
L428[14:31:31] <SinaMegapolis> sangar can you add "monitor" block with a real-life monitor render to oc?
L429[14:32:38] <SinaMegapolis> hello im here :l
L430[14:32:56] <Sangar> nah, i like me blocks :P can't remember how deep the hackery is in 1.8 to make multiblock screens, but it might be possible to change the model with resource packs there
L431[14:33:19] <SinaMegapolis> why does the chat suddenly stoped -_-
L432[14:34:06] <SinaMegapolis> sangar i dont like screen, its big and when i use comuter i fell like 1950 :l
L433[14:34:07] <Sangar> Vexatos, talking about it seems to have cursed my intellij .-. it's stuck in updating the gradle things so i can test
L434[14:34:20] <Vexatos> Sangar, oh I found the solution to that
L435[14:34:21] <Vexatos> see this
L436[14:34:22] <Sangar> but you don't when using floppy disks? :P
L437[14:34:29] <Sangar> oh?
L438[14:34:33] <Vexatos> yea
L439[14:34:34] <Vexatos> it's
L440[14:34:35] <Vexatos> like
L441[14:34:36] <Vexatos> hold on
L442[14:34:40] <Sangar> holding
L443[14:35:02] <Ashindigo_> Is intellij the same ide as the one in android studio?
L444[14:35:16] <SinaMegapolis> sangar i feel that. but its makes no sense to using cds with equal space with floppy in oc :l
L445[14:35:26] <Vexatos> Sangar, https://puu.sh/tMYj2/cd80310e14.png
L446[14:35:31] <Vexatos> best button
L447[14:35:33] <Vexatos> in IDEA
L448[14:35:33] <Vexatos> ever
L449[14:35:49] <Vexatos> suddenly OC builds on 1.7 D:
L450[14:35:50] <Sangar> :O i could've sworn i'd have set that in the settings way back when
L451[14:35:52] <Sangar> oh well!
L452[14:35:58] <SinaMegapolis> ashindigo yes but android studio is specalized for making android apps
L453[14:36:11] <Vexatos> actually IDEA has an android plugin
L454[14:36:44] <SinaMegapolis> yes but android studio is more user-friendly :p
L455[14:37:18] <Ashindigo_> I wish the android plugin for eclipse wasn't deprecated
L456[14:37:36] <Vexatos> eclipse is deprecated :⁾
L457[14:38:15] * Ashindigo_ pulls up his eclipse projects
L458[14:38:22] <Sangar> hahaha
L459[14:38:45] <SinaMegapolis> lol
L460[14:38:58] <Sangar> is netbeans still a thing while we're talking about dead ides? :P
L461[14:39:08] <SinaMegapolis> so where was my talking... of the floppies
L462[14:39:11] * Sangar makes all the friends
L463[14:40:30] <SinaMegapolis> yeah i think there can be rewards for "who can make good resource pack for oc?" contest :D
L464[14:40:36] <Vexatos> Sangar, CovertJagaur used to use it until about a year ago
L465[14:40:36] <Sangar> testing in 1.7 feels so weird, with the floppies having labels :x
L466[14:40:40] <Vexatos> when we got him to try IDEA
L467[14:40:59] <gamax92> IKEA?
L468[14:41:00] <Vexatos> Sangar, floppy labels on 1.10 when D:
L469[14:41:30] <Vexatos> yo sangar, you see the JEI update? :⁾
L470[14:41:37] <gamax92> IJEA?
L471[14:41:49] <Sangar> Vexatos, idk, is dynamic rendering of items a thing yet? or would we have to write a font renderer that renders to static format <_>
L472[14:41:56] <Vexatos> There is only one thing not handled: When you switch server and some floppy is gone (because it was local to the first server you went to)
L473[14:41:56] <Sangar> jei update?
L474[14:42:01] <Vexatos> since you cannot remove items at runtimg
L475[14:42:03] <Vexatos> runtime*
L476[14:42:07] <Sangar> ah
L477[14:42:08] <Vexatos> but you can add them now :X
L478[14:42:12] <Sangar> cool ^^
L479[14:42:15] <SinaMegapolis> hello everyone :l i said something and waiting for replies :l
L480[14:42:16] <Vexatos> I backported mezz's 1.11 change for that
L481[14:42:17] <Sangar> better than nothing
L482[14:42:30] <Vexatos> Sangar, pretty sure dynamic rendering is a thing
L483[14:42:31] <Sangar> mvp
L484[14:42:31] <Vexatos> and super easy
L485[14:42:35] <Vexatos> ask asie about it
L486[14:42:38] <Sangar> well then, have at it
L487[14:42:40] <Sangar> :P
L488[14:42:51] <MindWorX> SinaMegapolis, I think it's safe to assume that 99% of visual suggestions will be up to others to make. :)
L489[14:42:59] <Vexatos> Sangar, you can do rendering at all
L490[14:43:02] <Vexatos> I can not
L491[14:43:03] <Vexatos> :⁾
L492[14:43:16] <Sangar> pffff
L493[14:43:21] <Sangar> meh
L494[14:43:22] <Sangar> will see
L495[14:43:40] <Vexatos> It's one of those things that make people say "wow this is pretty neat"
L496[14:43:46] <Vexatos> because it's... unique
L497[14:43:52] <Vexatos> visually appealing
L498[14:43:53] <Vexatos> :⁾
L499[14:44:05] <SinaMegapolis> mindworx you broke my heart j-j
L500[14:44:06] <Sangar> eyecandy >>> chunk load issues
L501[14:44:09] <Sangar> i agree
L502[14:44:14] <Sangar> :3
L503[14:44:18] <Vexatos> uuuh
L504[14:44:25] <MindWorX> SinaMegapolis, Visual stuff isn't very important. OC fits Minecraft visually.
L505[14:44:29] <Vexatos> MFU >>> chunk load issues === eyecandy
L506[14:44:38] <Sangar> hah
L507[14:44:49] <AshIndigo> and is also super satisfying when making the components for stuff for some reason
L508[14:44:51] <Sangar> all right all right, if you want it in so bad :P
L509[14:44:56] <Sangar> i'll see if i can think of a texture
L510[14:45:04] <Vexatos> Dunno
L511[14:45:04] <MindWorX> SinaMegapolis, What you could do is wrap the screen in some Chisel 'n' Bits to make it more detailed.
L512[14:45:11] <Vexatos> But it sounds pretty useful, to be honest
L513[14:45:19] <Sangar> yeah
L514[14:45:21] <Vexatos> it uses power and has a very short range
L515[14:45:25] <Vexatos> so it's not like super OP
L516[14:45:31] <SinaMegapolis> mindworx yes but when i use oc i feels like im in the first computers era :l
L517[14:45:32] <Vexatos> I just hope my code is sufficiently stable :P
L518[14:45:48] <MindWorX> That's what all of Minecraft feels like though. :P
L519[14:45:50] <Sangar> \o/
L520[14:45:51] <Vexatos> SinaMegapolis, isn't that kind of the point
L521[14:45:55] <Sangar> ^
L522[14:46:14] <Sangar> to be fair, in an alternate universe
L523[14:46:21] <Sangar> because holograms and 3d printers, but still :P
L524[14:46:30] <Forecaster> retro-future!
L525[14:46:32] <Vexatos> Sangar, wow
L526[14:46:32] <Forecaster> \o/
L527[14:46:37] <Vexatos> mfu branch is what, half a year old?
L528[14:46:41] <Sangar> ll
L529[14:46:43] <Sangar> lol
L530[14:46:45] <Vexatos> I just merged master-MC1.7.10 into it
L531[14:46:46] <Vexatos> and
L532[14:46:46] <MindWorX> ll
L533[14:46:48] <Vexatos> no conflict
L534[14:46:51] <Sangar> 1.6 took what, over 1 year?
L535[14:46:53] <Sangar> ah
L536[14:46:56] <Sangar> that is wow indeed
L537[14:47:17] <Vexatos> Let's run git blame to see if any adapter code changed
L538[14:47:21] <Sangar> so how would i go about testing your debug stuff stuff
L539[14:47:21] <Vexatos> that I need to copypaste into the MFU
L540[14:47:22] <SinaMegapolis> Vexatos yes but i dont like this (a gui-based update would be good :D)
L541[14:47:26] <S3> so Vexatos porting selenec now
L542[14:47:32] <Vexatos> Sangar, it is very easy
L543[14:47:34] <S3> fortunately openos functions are almost identical
L544[14:47:37] <Vexatos> Step 1) insert debug card
L545[14:47:40] <Sangar> done
L546[14:47:41] <S3> but no argument parsing
L547[14:48:01] <Vexatos> Sangar, step 2: component.debug.sendToClipBoard("Sangar", component.debug.address)
L548[14:48:16] * Sangar hugs payonel
L549[14:48:20] <Vexatos> Step3: /oc_sdbg Ctrl+V any message at all
L550[14:48:23] <Vexatos> oh wait
L551[14:48:26] <Sangar> ctrl+left right in the lua repl is so great
L552[14:48:27] <Vexatos> Step 2.5: dmesg
L553[14:48:41] <Vexatos> so you actually receive the event
L554[14:48:42] <Vexatos> >_>
L555[14:48:49] <Vexatos> Sangar, what is ctrl+leftclick D:
L556[14:49:06] <Sangar> arrow
L557[14:49:08] <Sangar> jump words
L558[14:49:11] <Vexatos> D :
L559[14:49:12] <Vexatos> how
L560[14:49:14] <Vexatos> is this magic
L561[14:49:25] <gamax92> SinaMegapolis: why do you need a gui when the majority of what you'll be doing is working with text? Lua scripting.
L562[14:49:29] <S3> oh hi Sangar
L563[14:49:38] <Sangar> ohai
L564[14:49:38] <Vexatos> Sangar, S3 here is using selene. help
L565[14:49:40] <S3> I don't get to see you very often anymore
L566[14:49:43] <Sangar> :O
L567[14:49:44] <gamax92> and there are already a few gui frameworks out there for OC
L568[14:49:50] <Sangar> yeah, my bad :/
L569[14:50:13] <S3> Sangar: I am writing a hypervisor OS that can rin OpenOS / CraftOS / Plank9k / whatever the heck you want on OC
L570[14:50:15] <S3> it's an exokernel
L571[14:50:35] <Vexatos> Sangar, did I say half a year? last commit to mfu was may 07
L572[14:50:40] <gamax92> good luck with CraftOS
L573[14:50:42] <Vexatos> and it merged
L574[14:50:44] <gamax92> no getfenv or setfenv
L575[14:50:44] <Vexatos> with no conflict
L576[14:50:54] <S3> gamax92: I never use getfenv or setfenv
L577[14:50:56] <S3> it's evil
L578[14:51:08] <gamax92> CraftOS does and so does various CC programs
L579[14:51:23] <S3> oh shit you're right
L580[14:51:27] <S3> well hmm
L581[14:51:27] <SinaMegapolis> gamax92 becuz my point is that: i want a computers mod for having fun not just for programming (mineos on the forum helps so good so far but im not convinced)
L582[14:51:33] <S3> maybe i can find a way to generically overload them?
L583[14:51:40] <S3> probably not
L584[14:51:45] <Vexatos> Sangar, looks like the only thing I need to add is a device info, wow
L585[14:51:50] <S3> either way- I'm not worried about craftos gamax92
L586[14:51:59] <S3> it's really an exokernel that has the design of a hypervisor
L587[14:52:10] <Sangar> ahh, that stuffs
L588[14:52:24] <S3> and best of all
L589[14:52:29] <S3> I'm writing it in Selene
L590[14:52:30] <S3> Sangar: ^
L591[14:52:37] <Sangar> :D
L592[14:52:42] <Sangar> Vexatos, be proud
L593[14:52:48] <AshIndigo> heh cool i can power my computer straight from my me line
L594[14:52:57] <Vexatos> S3, don't tell me it actually works
L595[14:52:58] <S3> AshIndigo: ?
L596[14:52:58] <gamax92> SinaMegapolis: then tbh you should play with CC, OC's meant to work better on a Server where hanging a computer doesn't screw over the rest of the computers or the Server
L597[14:53:06] <S3> Vexatos: maybe..
L598[14:53:23] <AshIndigo> i just learned that an me cable can power a computer
L599[14:53:25] <S3> we will find out soon
L600[14:53:31] <S3> yes?
L601[14:53:44] <SinaMegapolis> gamaz92: isnt the cc is "just" for programming too? :l
L602[14:54:21] <gamax92> define having fun then.
L603[14:54:33] <Vexatos> Sangar, now for the hardest part of development: finding a nice brand and vendor name
L604[14:54:35] <SinaMegapolis> ._.
L605[14:54:50] <gamax92> no seriously ... do you want to play minesweeper in Minecraft or something?
L606[14:55:19] <SinaMegapolis> no, not just playing
L607[14:55:29] <S3> wait..
L608[14:55:35] <Sangar> Vexatos, yes, it always is
L609[14:55:35] <SinaMegapolis> i mean...
L610[14:55:50] <Vexatos> DeviceAttribute.Product -> "ERR NAME NOT FOUND"
L611[14:55:54] <Vexatos> need to keep the tradition alive
L612[14:55:58] <Vexatos> NOONE WILL EVER KNOW WHAT MFU MEANS
L613[14:56:06] <Vexatos> bwahahahahahhaa
L614[14:56:26] <Sangar> :D
L615[14:56:31] <gamax92> Most Fantastic Ukulele
L616[14:56:45] <Vexatos> Now for the vendor
L617[14:56:48] <Vexatos> Let's see
L618[14:56:58] <S3> damn Vexatos was able to get away with parsing command args in openos using the getopt thing
L619[14:57:03] <Sangar> ze merge is done
L620[14:57:07] <Sangar> go merge up vex
L621[14:57:13] <SinaMegapolis> look at the mineos on forums i loved that becuz it is a graphical os and we can use open os after installing openos too
L622[14:57:21] <Vexatos> Sangar, OpenOS merge too?
L623[14:57:24] <Sangar> yes
L624[14:57:30] <Sangar> i'm sneaky like that :3
L625[14:57:41] <Vexatos> I just saw
L626[14:57:43] <Vexatos> build 999
L627[14:57:44] <Vexatos> you
L628[14:57:45] <Vexatos> aaaaaaaaaaaa
L629[14:57:46] <Sangar> :D
L630[14:57:50] <Vexatos> will 1000 be
L631[14:57:52] <gamax92> nothing about a GUI is fun, it's the things you run with it that make it fun
L632[14:57:53] <Vexatos> T H E M F U?!?
L633[14:57:58] <Vexatos> that would be
L634[14:58:00] <Vexatos> the coolest thing
L635[14:58:03] <SinaMegapolis> i mean oc should have some options for non-progrmmer players who want do what they want without programming
L636[14:58:20] <Forecaster> it does have that...
L637[14:58:21] <Vexatos> the what?
L638[14:58:25] <gamax92> And what I asked you, is what do you want a computer mod to do besides not being able to be programed.
L639[14:58:29] <Forecaster> there's tons of pre-made programs
L640[14:59:10] <SinaMegapolis> ._.
L641[14:59:14] <SinaMegapolis> .....
L642[14:59:30] <gamax92> is MineOS fun becomes it comes with a bunch of crap pre installed? because again there's lots of existing stuff for OC that you can just download and never touch it's code
L643[14:59:47] <Vexatos> DeviceAttribute.Vendor -> "Aperture Science Electrotransmission Laboratories"
L644[14:59:49] <Vexatos> naaaah
L645[14:59:55] <Vexatos> Sangar, by far the hardest part
L646[15:00:01] <Sangar> Vexatos, sooo tempting :P http://i.imgur.com/iuI506N.png
L647[15:00:05] ⇦ Quits: Keanu73 (~Keanu73@host-78-148-131-109.as13285.net) (Read error: Connection reset by peer)
L648[15:00:13] <Vexatos> Sangar, hah
L649[15:00:14] <SinaMegapolis> .....
L650[15:01:08] <Sangar> crud, build.properties is already on 1.6.1 :x
L651[15:01:21] <Vexatos> already?
L652[15:01:25] <Vexatos> you mean still
L653[15:01:28] <Vexatos> 1.6.1 is released
L654[15:01:28] <SinaMegapolis> ...
L655[15:01:29] <Vexatos> >_>
L656[15:01:31] <gamax92> please stop with the dots
L657[15:01:33] <Sangar> it did?
L658[15:01:34] <Vexatos> ...
L659[15:01:36] <Sangar> when? :x
L660[15:01:45] <Vexatos> Sangar, remember adapter sides?
L661[15:01:47] ⇨ Joins: Keanu73 (~Keanu73@host-78-148-131-109.as13285.net)
L662[15:01:50] <Sangar> time to change a milestone name!
L663[15:01:56] <20kdc> build 1000 is happening?
L664[15:02:00] <Vexatos> No
L665[15:02:03] <20kdc> aw
L666[15:02:07] <Vexatos> he is skipping it :⁾
L667[15:02:12] <20kdc> *who*
L668[15:02:14] <Vexatos> maybe it will be the MFU
L669[15:02:19] <gamax92> Sangar: call it Fusilli
L670[15:02:21] <Vexatos> I'm working on the PR right now
L671[15:02:31] <Vexatos> gamax92, …
L672[15:02:37] <Corded> * 20kdc imagines Sangar as a trollface for the skipping.
L673[15:02:39] <Sangar> gamax92, only major version ups get names :P
L674[15:02:47] <gamax92> oh
L675[15:02:48] <gamax92> right
L676[15:02:53] <Vexatos> I guess default vendor is fine :X
L677[15:03:00] <Vexatos> No wait
L678[15:03:01] <Vexatos> uuuh
L679[15:03:03] <SinaMegapolis> gamax i dont know how to say but.....
L680[15:03:05] <Vexatos> Scummtech!
L681[15:03:13] <Vexatos> that sounds like a great name for reliable electronics
L682[15:03:19] <Forecaster> Scamtech
L683[15:03:19] <Vexatos> very trustworthy
L684[15:03:25] <Sangar> hahaha
L685[15:03:26] <Vexatos> Forecaster, that would ruin the joke
L686[15:03:30] <gamax92> Magic Smoke
L687[15:03:40] <Sangar> Scamtech would work for the spoofing card :P
L688[15:03:47] <Forecaster> ^
L689[15:04:12] <Skye> there needs to be a sniffing card! :P
L690[15:04:22] <gamax92> and a woofing card!
L691[15:04:23] <Sangar> to detect smells?
L692[15:04:24] <Vexatos> Sangar, spoofing card is "Hosencorp AG", go figure
L693[15:04:27] <Sangar> "PIG DETECTED"
L694[15:04:30] <gamax92> wait are we talking about the same thing?
L695[15:04:31] <Sangar> <_>
L696[15:04:35] <Sangar> well played
L697[15:04:38] <Vexatos> ikr
L698[15:04:46] <Vexatos> i was so proud when I came up with that
L699[15:04:49] <SinaMegapolis> but..... i think....... argh
L700[15:04:50] <Sangar> haha
L701[15:05:01] <Vexatos> like, "which vendor for the spoofing card, uuuuh OH WAIT"
L702[15:05:47] <Vexatos> Sangar, https://github.com/asiekierka/Computronics/blob/master/src/main/java/pl/asie/computronics/util/OCUtils.java#L68-L79
L703[15:05:59] <Vexatos> guess which vendor sells what :⁾
L704[15:06:01] <Vexatos> (not too hard)
L705[15:06:02] <SinaMegapolis> its too hard for me too say
L706[15:06:07] <Sangar> ^^
L707[15:06:25] <Sangar> ahhh, good old hugging creeper
L708[15:06:37] <SinaMegapolis> i think there should be some changes.....
L709[15:06:50] <Sangar> ch- ch- ch- changes~
L710[15:07:20] <Sangar> now as to 1000. what a conundrum
L711[15:07:32] <Sangar> what to do what to do
L712[15:07:35] <Sangar> oh right
L713[15:07:50] <Sangar> brb
L714[15:07:54] <SinaMegapolis> mabye open os can be a blank gui os with a editor program and .... a file explorer? -_-
L715[15:08:06] <SinaMegapolis> my brain turned off!
L716[15:08:14] <Vexatos> Sangar, oh ch't https://github.com/MightyPirates/OpenComputers/pull/2257
L717[15:10:34] <SinaMegapolis> the oc in first look looks so old (i fell im in 1950 ._.) mabye there can be some gui updates? making oc closer to real-life? ;l
L718[15:11:23] <Forecaster> I'm not sure why you think that there aren't command line systems anymore
L719[15:11:45] <Forecaster> or why anyone else would *want* oc to look like real-life
L720[15:11:49] <SinaMegapolis> i didnt say that
L721[15:11:52] <gamax92> or that using ls and cd is hard
L722[15:12:22] <SinaMegapolis> i.... its...
L723[15:13:29] <SinaMegapolis> using a shell os is hard "just for me" becuz i "like" gui os
L724[15:14:02] <Forecaster> that's not a very good argument for why it should change for everyone
L725[15:14:09] <SinaMegapolis> and..... and.... argh its too hard to think for me
L726[15:14:17] <Sangar> nobody tell him about circuity
L727[15:14:20] <Forecaster> besides like you know there are GUI os's already
L728[15:14:27] <AshIndigo> i like my shell based os especially in minecraft
L729[15:14:28] <Sangar> which i should work on again some more...
L730[15:14:38] <Sangar> at least i got cp/m to boot a while back!
L731[15:14:46] <gamax92> Sangar: eyy, nice
L732[15:16:01] <SinaMegapolis> i didnt say everyone im just saying you can publish gui updates for anyone who doesnt like shell oses(people can install gui option or not :l )
L733[15:16:32] <Forecaster> those people can get mineOS
L734[15:16:33] <Sangar> doesn't mineos have a pretty simple to use installer?
L735[15:16:43] <SinaMegapolis> i cant find good words to say( my countrys language is persian ._.)
L736[15:16:55] <SinaMegapolis> mineos has bug
L737[15:17:18] <SinaMegapolis> and its creator doestn seem to care to it anymore
L738[15:17:39] <20kdc> SinaMegapolis: what would your ideal SimpleOS(tm) have...?
L739[15:17:49] <20kdc> (note: not actually a trademark.)
L740[15:18:35] <Vexatos> Sangar, have fun testing the MFU :⁾
L741[15:19:07] <Sangar> .-.
L742[15:19:44] <SinaMegapolis> corded: my ideal os is mineos (without bugs) becuz we can use mineos and openos together and mineos has some good apps such as mine code
L743[15:20:15] <SinaMegapolis> but its russian creator left some bugs in it and doesnt answer to people anymore
L744[15:20:57] <SinaMegapolis> most of bugs are runtime errors: "attepmt to index 'f' (a nil value)"
L745[15:21:41] <20kdc> and this is apparently the kind of error messages it has: ecs.error("Этой программе требуется камера из мода Computronix.")
L746[15:22:06] <20kdc> This means "install a camera from Computronics", judging by context.
L747[15:22:18] <SinaMegapolis> ,_,
L748[15:23:25] <SinaMegapolis> if mineos is officaly included in next updates of oc (in an floppy disk) with bug-support and english translate it would be great :D
L749[15:24:17] <SinaMegapolis> wouldnt it?
L750[15:24:28] <SinaMegapolis> (zzzzzz...)
L751[15:24:28] <20kdc> Assuming the thing could be maintained, I guess
L752[15:25:08] <20kdc> I'm getting the distinct impression that MineOS was built Russian-first, English-second. Which is all well and good considering most people build things English-first, *everybody else*-second, but given that the fact is the majority of likely contributors will not know Russian, could be an issue.
L753[15:25:32] <SinaMegapolis> yes
L754[15:25:41] <SinaMegapolis> (zzzzzzzz....)
L755[15:25:49] <20kdc> And given that this code is what you're mentioning bugs ought to be fixed in, could be an issue indeed.
L756[15:26:04] <SinaMegapolis> yeah
L757[15:26:22] <SinaMegapolis> annnnnd its creator doesnt seem to care about mineos anymore ._.
L758[15:26:28] <20kdc> At least some of it's concepts are decent, like the double-buffering system.
L759[15:26:55] <SinaMegapolis> (zzzzzzz......)
L760[15:27:04] <20kdc> ...why do you keep falling asleep?
L761[15:27:10] <SinaMegapolis> im going to fall asleep lol
L762[15:27:32] <Forecaster> oh is the conversation going to slow for you...
L763[15:27:36] <20kdc> I don't type and read through infinitely fast... anyway, I can't *find* a license. That isn't good news.
L764[15:27:40] <SinaMegapolis> becuz im tired (its 00.56 at my country)
L765[15:28:11] <20kdc> Oh
L766[15:28:12] <20kdc> found it
L767[15:28:13] <20kdc> https://github.com/IgorTimofeev/OpenComputers/blob/0857eecfdd0d79b1b4622ee2de1bab708aaada44/MineOS/License/English.txt
L768[15:28:21] <20kdc> and it adds up to *haha this isn't happening.*
L769[15:28:28] <SinaMegapolis> yes one mre thing
L770[15:28:30] <Sangar> iirc one of the reasones of it as a loot disk not getting merged was him not wanting to put it under a proper license
L771[15:28:39] <Vexatos> Sangar, by the way, I think this was necessary but you might still want to look over it https://github.com/MightyPirates/OpenComputers/commit/9332bc70cd118c5aa3e2a81f2e404acd757fd4b8
L772[15:28:49] <20kdc> The license says no redistribution. I couldn't fork it even if it was reasonable to maintain.
L773[15:29:00] <SinaMegapolis> argh thats so bad
L774[15:29:28] <Sangar> Vexatos, can't even remember how that worked, but if it works, great :P
L775[15:29:44] <SinaMegapolis> cant you create one os like mineos but officaly for oc? (gui version of openos ._.)
L776[15:29:48] <Vexatos> Sangar, basically, loot disks were never really synched to the client
L777[15:29:51] <Vexatos> as in, the recipes
L778[15:30:01] <Sangar> ah, quite probable
L779[15:30:02] <Vexatos> so the scrench recipe worked but it was not visible
L780[15:30:10] <Vexatos> (you could still pull out of the empty output slot=
L781[15:30:30] <Vexatos> so with this I am effectively sending the cycling disks twice
L782[15:30:42] <Sangar> eh, it's not a lot of data so whatever
L783[15:30:51] <SinaMegapolis> (zzzzzzz........)
L784[15:31:00] <SinaMegapolis> oh one thing
L785[15:31:15] <SinaMegapolis> i need to go sleep
L786[15:31:16] <SinaMegapolis> bye
L787[15:31:41] <Vexatos> Sangar, merged all upwards
L788[15:32:06] <Sangar> great
L789[15:33:19] <20kdc> (I believe SinaMegapolis has abandoned their terminal.)
L790[15:33:51] <Vexatos> Sangar, sooo 2257 confirmed?!=
L791[15:33:54] <Vexatos> ?!?*
L792[15:34:06] <Vexatos> would be the most appropriate build 1000
L793[15:34:11] <Vexatos> considering it's been sitting there for almost a year
L794[15:34:12] <Vexatos> :⁾
L795[15:34:29] ⇦ Quits: SinaMegapolis (webchat@188.166.60.153) (Ping timeout: 180 seconds)
L796[15:34:34] <Sangar> i can neither confirm nor deny these baseless rumours ;)
L797[15:35:50] <Vexatos> Sangar, baseless https://puu.sh/tN2KU/c6afbe1d64.png
L798[15:36:33] <Sangar> :P
L799[15:36:40] <Vexatos> Sangar, this HDD reset issue though
L800[15:36:44] <Vexatos> it is driving me mad
L801[15:36:50] <Vexatos> such a critical bug
L802[15:36:56] <Vexatos> and so many people have it
L803[15:37:00] <Vexatos> and I can't reproduce
L804[15:37:01] <Vexatos> aaaaargh
L805[15:37:13] <AshIndigo> does it affect 1.7.10?
L806[15:37:21] * AshIndigo goes to backup his hard drive
L807[15:37:21] <Vexatos> apparently not
L808[15:37:31] <Vexatos> I have not heard a report of it happening, at least
L809[15:37:38] <Vexatos> all reports so far have been of 1.10
L810[15:37:44] <Vexatos> but 1.8 and 1.9 does not have many players
L811[15:37:48] <Vexatos> so it might occur there too
L812[15:39:45] <Sangar> yeah, and i have no idea what could be causing it :/
L813[15:40:09] <Sangar> has there been any reports with *just* oc and it happening?
L814[15:40:22] <Sangar> aka could it be in some weird way a cross mod issue?
L815[15:40:26] ⇦ Quits: Keanu73 (~Keanu73@host-78-148-131-109.as13285.net) (Read error: Connection reset by peer)
L816[15:41:32] ⇦ Quits: rikai (~quassel@162.252.243.91) (Remote host closed the connection)
L817[15:43:57] <Vexatos> Sangar, well, there was this https://github.com/MightyPirates/OpenComputers/issues/2092#issuecomment-272668497
L818[15:44:18] <Vexatos> " I was able to consistently replicate a computer freeze issue and associate it to Aroma 1997 Dimension Worlds, but I was unable to replicate the UUID reset."
L819[15:44:26] *** medsouz|offline is now known as medsouz
L820[15:50:26] ⇦ Quits: Wiiplay123 (~kvirc@adsl-72-154-27-119.bna.bellsouth.net) (Ping timeout: 180 seconds)
L821[15:51:53] ⇨ Joins: Wiiplay123 (~kvirc@adsl-72-154-27-119.bna.bellsouth.net)
L822[15:53:31] <AshIndigo> is there a way for OC to get a fluids color?
L823[15:53:47] <AshIndigo> or would i have to make my own definintions
L824[15:54:03] <Sangar> i'm not sure there's even color information available on the server
L825[15:54:57] <Sangar> hmm, there is a getColor
L826[15:55:21] <Vexatos> Sangar, soo ya, HDD reset/computer freeze (read: chunk loading) issues > MFU > floppy labels, then release hopefully?
L827[15:55:43] <Sangar> uhuh
L828[15:55:48] <Vexatos> or maybe MFU first just to get that build 1000, whatever
L829[15:55:58] <Vexatos> But I think that is the ony big bug in OC right now
L830[15:55:59] <Sangar> tho with no lead on the uuid issue... that'll be a bit of a problem
L831[15:56:03] <Vexatos> ya
L832[15:56:39] <Sangar> i'll try to repro in non-dev over the weekend (probably), if i can then at least i have something to test changes against...
L833[15:58:42] <AshIndigo> where did you find getColor?
L834[15:58:56] <Sangar> Fluid
L835[15:58:58] <Sangar> as in java
L836[15:59:04] <Sangar> as in it would be possible to expose that
L837[15:59:07] <AshIndigo> oh not lua
L838[16:00:36] <Sangar> oh ffs, UpgradeMF.png not UpgradeMFU.png of course .-.
L839[16:00:45] <Sangar> Vexatos, "TODO really, do this" uhhh
L840[16:00:49] <Sangar> is that final? >_>
L841[16:00:59] <Vexatos> it is part of https://github.com/MightyPirates/OpenComputers/issues/1781
L842[16:01:06] <Vexatos> says "Tooltip." there
L843[16:01:11] <Sangar> pfff
L844[16:01:20] <Vexatos> :P
L845[16:08:53] ⇨ Joins: BurningPrincess (~BurningPr@2607:f358:1f:177:177:de66:4930:6ee6)
L846[16:08:55] <payonel> back from long meeting, catching up on irc chat
L847[16:09:14] <payonel> so 999, you're going to skip to 1001!? ha that would be pretty funny
L848[16:09:25] <Sangar> i'm undecided :P
L849[16:10:34] <Vexatos> either that or M F U M F U M F U
L850[16:11:01] <gamax92> Memory Formatting Unit
L851[16:11:39] ⇦ Parts: BurningPrincess (~BurningPr@2607:f358:1f:177:177:de66:4930:6ee6) (Goodbye. ))
L852[16:12:19] <payonel> Vexatos: i've noticed you mention mfu many times but i've never checked what youre referring to. mfu -- battery power from ic2?
L853[16:16:02] <Kodos> Magical Fairydust Upgrade
L854[16:16:15] <Kodos> 3 block range wireless adapter, iirc
L855[16:16:17] <Sangar> Voldemort!
L856[16:18:14] <Sangar> Vexatos, you write the manual entry
L857[16:18:38] <Vexatos> Kodos, not quite
L858[16:19:34] <Kodos> Or wait, not adapter
L859[16:19:41] <Kodos> Remote component connections, 3 block range, yes?
L860[16:20:03] <gamax92> Magnets?
L861[16:21:59] <Vexatos> Sangar, what does I put in it D:
L862[16:22:02] <Vexatos> I am not rashy! D:
L863[16:23:23] <Sangar> text, mostly
L864[16:24:50] <Vexatos> Sangar, should I specify the max range (three blocks) even though it is a config setting?
L865[16:25:18] <payonel> Vexatos: but what feature do you want for mfus?
L866[16:25:40] ⇨ Joins: techno156 (~techno156@203.114.73.135)
L867[16:25:45] <Sangar> Vexatos, i probably would, but "a very limited range" might also do
L868[16:26:06] <Sangar> alternatively the good old "up to 3 blocks (unless changed in the config)"
L869[16:26:58] <payonel> Sangar: there was a request for a mouse-up event (like "drop") to be sent even without drag. i propose "drop" without "drag"
L870[16:27:02] <Vexatos> Sangar, eh https://puu.sh/tN6En/b3c127a7a9.png
L871[16:27:33] <Sangar> *act
L872[16:27:35] <Vexatos> Sangar, s/at/act
L873[16:27:36] <Vexatos> ya
L874[16:27:48] <Sangar> sounds fine
L875[16:27:50] <payonel> remote adapters...interesting
L876[16:27:59] <Sangar> https://gfycat.com/ImpressiveChubbyCob
L877[16:28:01] <payonel> what does the mf stand for? u is upgrade i assume
L878[16:28:29] <Vexatos> Sangar, this a bit better? https://puu.sh/tN6Lt/360d53c38c.png
L879[16:28:34] <Vexatos> payonel, don't ask
L880[16:28:39] <Vexatos> rule #1 of the MFU
L881[16:28:48] <Vexatos> do not ask about the meaning
L882[16:28:53] <payonel> :)
L883[16:28:56] <Vexatos> only Sangar and I know and it should stay that way >:D
L884[16:29:07] <payonel> haha, noted
L885[16:29:12] <Sangar> good
L886[16:29:22] <XDjackieXD> xD
L887[16:29:41] <Vexatos> Sangar, as a response to the screenshot?
L888[16:29:45] <Sangar> yes
L889[16:29:46] <Vexatos> also that renderer is 3fancy5me
L890[16:29:50] <Vexatos> that is why YOU do the rendering
L891[16:29:53] <payonel> Sangar: you like the ^arrow movement? :) i'll add ^w for word cutting next
L892[16:30:04] <Izaya> is an MFU anything like an SD card?
L893[16:30:06] <Sangar> Vexatos, heh
L894[16:30:11] <Sangar> payonel, oh my
L895[16:30:12] <Izaya> :3
L896[16:30:41] <Vexatos> Sangar, I don't have to register the manual page manually (haha), right
L897[16:30:46] <Vexatos> just item/mfu.md should work?
L898[16:30:55] <payonel> Sangar: any other hotkey requests? btw (not sure if you read the changelist) but the "smart tab complete" is now shared to the shell too
L899[16:31:10] <Sangar> Vexatos, iirc, yes, just remember to also add it to the index page
L900[16:31:18] <Sangar> that's what i always forgot :P
L901[16:31:24] <payonel> so, 'cd /path/a[tab]' can autocomplete deeply, multiple times when there is only 1
L902[16:31:24] <Vexatos> Sangar, should remove the inv controller from the adapter's manual page
L903[16:31:29] <Sangar> payonel, not off the top of my head
L904[16:31:30] <Vexatos> because you should use transposers instead D:
L905[16:31:47] <Sangar> if you could by some arcane magic implement a selection, that'd be rad tho ;)
L906[16:32:08] <payonel> oh when tab complete shows a selection below the prompt?
L907[16:32:15] <Sangar> Vexatos, haha, fair enough ;)
L908[16:33:49] <Sangar> payonel, or in general? tho clipboard would be interesting because any script should not get writeaccess to player's real clipboard :P
L909[16:34:18] <Vexatos> adapter.md
L910[16:34:19] <Vexatos> "Furthermore, you can insert a bound MFU to interact with blocks a few spaces away, remotely."
L911[16:34:24] <Vexatos> good bad english? .-.
L912[16:34:52] <Sangar> seems redundant?
L913[16:34:58] <Sangar> the a few spaces away and remotely
L914[16:34:58] <Vexatos> "MFU" being a link to the page
L915[16:35:01] <Vexatos> right
L916[16:35:18] <Sangar> otherwise, sounds fine to me
L917[16:35:37] <payonel> Sangar: re: clipboard. what are people often wanting in their clipboard? if address, note there is more component data now under /dev
L918[16:35:58] <payonel> so, for example, your gpu address can be obtained: cat /dev/components/by-type/gpu/0/address`
L919[16:36:14] * payonel meant to `` the whole cmd
L920[16:36:20] <Vexatos> Sangar, committed
L921[16:36:40] <Sangar> for the tooltip, "Allows adapters to access blocks they are not adjacent to." fine?
L922[16:36:55] <Vexatos> sure
L923[16:36:58] <Sangar> k
L924[16:37:01] <Vexatos> should I add it or will you
L925[16:37:08] <Sangar> i will
L926[16:37:33] <payonel> is that being added to 1.7.10?
L927[16:37:36] <payonel> the mfu
L928[16:37:50] <Vexatos> Sangar, please test the manual page
L929[16:37:56] <Vexatos> whether I derped any links or the image
L930[16:38:00] <Sangar> gaah, merge conflict :P
L931[16:38:00] <Vexatos> payonel, yes
L932[16:38:03] * Sangar shakes fist
L933[16:38:06] <Vexatos> nooo
L934[16:38:13] <Vexatos> but how
L935[16:38:19] <Sangar> you also edited the tooltip :P
L936[16:38:19] <Vexatos> I just changed manual pages
L937[16:38:25] <Vexatos> >_>
L938[16:38:25] <Sangar> by making it a more elaborate todo
L939[16:38:28] <Sangar> :P
L940[16:38:47] * Vexatos is now known as MoreElaboratos
L941[16:39:05] <Sangar> indeed
L942[16:39:37] <Vexatos> oh I see checkboxes are checked :3
L943[16:41:26] <Sangar> manpage seems to work
L944[16:41:50] <Sangar> wll
L945[16:41:54] <Sangar> this is it
L946[16:41:55] <Vexatos> aand another commit
L947[16:41:58] <Sangar> the moment of truth
L948[16:42:03] <Sangar> uwot
L949[16:42:28] <Vexatos> hold on
L950[16:42:38] * Sangar holds
L951[16:43:49] <Vexatos> There
L952[16:44:16] <Vexatos> Properified the English
L953[16:44:28] <Sangar> if you say so
L954[16:45:01] <Vexatos> that should be it though
L955[16:45:02] <Sangar> i'd say it was more proper before :x
L956[16:45:15] <Vexatos> wait
L957[16:45:16] <Vexatos> it was
L958[16:45:22] <Vexatos> I just misread the first sentence
L959[16:45:22] <Sangar> "having placed it" might work this way
L960[16:46:01] <Vexatos> Sangar, you saw nothing
L961[16:46:05] <Sangar> right
L962[16:46:11] <Vexatos> hard branch reset \:D/
L963[16:46:16] <Sangar> <_>
L964[16:46:24] <Sangar> will do
L965[16:46:37] ⇦ Quits: Trangar (~Trangar@249-153-145-85.ftth.glasoperator.nl) (Quit: Leaving)
L966[16:46:39] <Vexatos> I just reset it to the previous commit, what could go wrong
L967[16:47:03] <Sangar> well i already pulled, so i had to, too ;) but 'tis fine
L968[16:47:41] <Vexatos> "TIS fine"
L969[16:48:26] <Sangar> IT'S HAPPENING
L970[16:48:36] <Vexatos> inb4 build failed
L971[16:48:45] <Sangar> hahahaha
L972[16:48:48] <Sangar> yes
L973[16:48:54] <Vexatos> that last fail on all branches
L974[16:48:56] <Vexatos> a few weeks ago
L975[16:49:02] <Vexatos> caused by bspk.rs being down
L976[16:49:41] <Vexatos> Sangar, O BOI O BOI https://puu.sh/tN8cM/7bcca8e234.png
L977[16:49:56] <AshIndigo> huzzah!
L978[16:49:57] <Vexatos> Sangar, PARTY
L979[16:50:01] <payonel> haha, WOO
L980[16:50:03] <Vexatos> better do the twitter thing
L981[16:50:03] <payonel> \o/
L982[16:50:26] <payonel> itshappening.gif
L983[16:51:09] <Sangar> \o/
L984[16:51:11] * Sangar dances
L985[16:51:42] * Sangar proceeds to consume aforementioned alcohol
L986[16:52:22] * Vexatos replaces with orange juice
L987[16:52:30] * payonel drinks dew
L988[16:52:55] <Sangar> now who'll do the merging up? >_>
L989[16:53:04] * payonel is afk
L990[16:53:17] * Sangar is suddenly so totally afk as well
L991[16:53:41] <Vexatos> Sangar, I heard you like blockstates
L992[16:53:49] <Vexatos> In other news
L993[16:53:52] <Vexatos> It's almost midnight
L994[16:54:21] <Vexatos> And I should really go sleep because I am a responsible adult unlike Sangar who drinks alcohol at midnight and should clearly be punished for doing so by having to merge upwards
L995[16:56:47] <Sangar> <_>
L996[16:56:53] <Sangar> but i have no idea how the thing works
L997[16:57:07] <Sangar> oh well
L998[16:57:10] <Sangar> i'll see how far i get
L999[16:57:16] <Sangar> before falling asleep again
L1000[16:58:32] <payonel> Sangar: make it a drinking game. every git command/github command you take a drink
L1001[16:59:15] <Sangar> i would like to survive this night .-.
L1002[16:59:36] <payonel> :/
L1003[17:00:38] <Sangar> does running scripts i wrote ages ago do run all the needed git commands count?
L1004[17:00:49] <Vexatos> at least IDEA has smart merging
L1005[17:01:02] <Vexatos> bless this merging window
L1006[17:03:17] <Izaya> drinking games make everything more fun
L1007[17:05:40] <Sangar> the eternal quest for the ballmer peak
L1008[17:05:41] ⇦ Quits: Hobbyboy (Hobbyboy@hobbyboy.co.uk) (Ping timeout: 206 seconds)
L1009[17:05:52] ⇨ Joins: Hobbyboy (Hobbyboy@hobbyboy.co.uk)
L1010[17:05:55] <Vexatos> Sangar, did you test the recipe? :P
L1011[17:06:01] <Vexatos> i.e. is it there ,-,
L1012[17:06:07] <Sangar> no, i just pressed r and it showed something :P
L1013[17:06:39] ⇨ Joins: DevonX| (~DevonX@128.77.91.12)
L1014[17:08:05] <Sangar> oh my
L1015[17:08:08] <Sangar> oh my oh my
L1016[17:08:13] <Sangar> it almost looks like it compiles
L1017[17:08:29] <Marcel> one question ... why does many mods require so many ASM?
L1018[17:08:37] <Sangar> now to see if it crashes
L1019[17:08:37] <Marcel> It causes headaches to me
L1020[17:09:04] <Sangar> because getting pull requests into forge can be a major pain
L1021[17:09:36] <Vexatos> Sangar, I would like to remind you
L1022[17:09:45] <Vexatos> that the first release of OC for 1.7.10 was on July 8, 2014
L1023[17:09:53] <Marcel> have read about it as reika asked for it ... but I have taken a look on how the asm is working in logistics pipes because OC Support did not work
L1024[17:10:04] <Sangar> Vexatos, that... was a long time ago
L1025[17:11:51] <Sangar> can't speak for lp, but in oc's case most of it stems from a time when there was no capability system, by now most of oc's asm could be avoided
L1026[17:12:06] <Sangar> except for one or two things (like the leash rendering correction)
L1027[17:16:07] <Vexatos> also @Callback
L1028[17:17:40] ⇨ Joins: VikeStep (~VikeStep@192.43.96.58.static.exetel.com.au)
L1029[17:19:54] <Sangar> 1.8.9 works
L1030[17:20:07] <Sangar> isn't that just reflection
L1031[17:20:41] <Sangar> or did actually merge the fancy function generation to avoid reflection thing?
L1032[17:20:48] <Sangar> i know i messed around with that once
L1033[17:20:50] <Sangar> oh well :P
L1034[17:23:36] <Sangar> 194 doesn't because i had too many ides open .-.
L1035[17:24:10] ⇨ Joins: rikai (~quassel@2607:5300:60:1308::1)
L1036[17:24:20] <Kodos> tbh, I think a lot of folks are on 1.7.10 or 1.10.2 anyway
L1037[17:24:31] <Kodos> The only reason I'd be on 1.8.9 is Intangible, and that isn't quite worth it, imo
L1038[17:24:47] <Sangar> it just means i tested the wrong version :P it'll be fixed in a moment
L1039[17:44:25] <Sangar> allright, all done
L1040[17:46:28] <Vexatos> yay
L1041[17:46:35] <Vexatos> Now I really need to go sleep
L1042[17:47:34] * Kodos goes back to harassing people for rack mounted relays, raids, and geolyzers
L1043[17:51:53] ⇦ Quits: Vexatos (~Vexatos@p200300556E5AFE315847B618F6092BFE.dip0.t-ipconnect.de) (Quit: I guess I have to go now. Bye ✔)
L1044[17:52:41] ⇦ Quits: jackmcbarn (jackmcbarn@gateway.insomnia247.nl) (Ping timeout: 192 seconds)
L1045[17:54:58] ⇨ Joins: jackmcbarn (jackmcbarn@gateway.insomnia247.nl)
L1046[18:01:59] <Sangar> %tell Vexatos welp, looks like floppy label rendering won't happen. closest thing is ForgeHooksClient.registerTESRItemStack, but the TESR gets no context whatsoever, so there's no access to the nbt, so... yeah. and i cba to asm that in.
L1047[18:01:59] <MichiBot> Sangar: Vexatos will be notified of this message when next seen.
L1048[18:02:40] <Sangar> and with that i'm off, too, night o/
L1049[18:14:17] *** wer38|AFK is now known as wer38
L1050[18:31:09] ⇦ Quits: Ashindigo_ (uid202308@id-202308.hathersage.irccloud.com) (Quit: Connection closed for inactivity)
L1051[18:54:51] <Wiiplay123> Which is more included in popular modpacks as of right now, OC or CC?
L1052[18:55:13] <Wiiplay123> Is CC still included in modern modpacks, I forgot to check
L1053[18:55:28] <AshIndigo> what counts as modern?
L1054[18:57:17] ⇨ Joins: Ashindigo_ (uid202308@2604:8300:100:200b:6667:7:3:1644)
L1055[19:10:05] ⇦ Quits: DevonX| (~DevonX@128.77.91.12) (Read error: Connection reset by peer)
L1056[19:22:48] <payonel> Wiiplay123: does this count as modern? https://www.feed-the-beast.com/projects/ftb-unstable-1-10/files/2329967
L1057[19:22:51] <payonel> includes cc and oc
L1058[19:24:00] <payonel> https://www.feed-the-beast.com/projects/ftb-presents-direwolf20-1-10/files/2370171 has only OC
L1059[19:24:31] <payonel> https://www.feed-the-beast.com/projects/ftb-presents-skyfactory-3/files/2373054 has only OC (not CC), but does have ActuallyComputers
L1060[19:24:49] <payonel> which is an addon to oc? i dont know
L1061[19:24:50] <Kodos> DW20 has OC only, too
L1062[19:24:58] <Kodos> Pretty sure
L1063[19:25:03] <payonel> yeah ^
L1064[19:25:05] <payonel> that was my 2nd link
L1065[19:25:10] <Kodos> Ah
L1066[19:25:34] <Kodos> In any case, CC is a thing of the past, between OC being on many versions (With full support) and dan taking for fucking ever to do fuckall with CC
L1067[19:26:02] <payonel> :)
L1068[19:26:07] <payonel> ok, afk till another time
L1069[19:26:08] <payonel> o/
L1070[19:26:56] <Wiiplay123> Basically CC is way simpler to craft because it's just some stone and redstone and glass
L1071[19:27:21] <Temia> It's also way simpler to DoS the server with :V
L1072[19:27:34] <Temia> ActuallyComputers looks to be just an OC integration addon
L1073[19:34:21] ⇨ Joins: Doty1154 (~Doty1154@2601:648:8000:134f:7194:ae49:ac3:fa99)
L1074[19:40:30] ⇨ Joins: brandon3055 (~Brandon@122-129-151-98.dynamic.ipstaraus.com)
L1075[19:40:44] ⇦ Quits: Turtle (~SentientT@82.171.92.73) (Quit: Nettalk6 - www.ntalk.de)
L1076[19:41:18] ⇦ Quits: brandon3055_ (~Brandon@122-129-151-98.dynamic.ipstaraus.com) (Read error: Connection reset by peer)
L1077[19:43:40] <S3> Forecaster:
L1078[20:18:03] ⇦ Quits: VikeStep (~VikeStep@192.43.96.58.static.exetel.com.au) (Ping timeout: 206 seconds)
L1079[20:30:34] ⇨ Joins: VikeStep (~VikeStep@192.43.96.58.static.exetel.com.au)
L1080[20:46:42] <S3> I dunno...
L1081[21:19:50] ⇨ Joins: Xal (~xal@S0106f0f2490b0073.vw.shawcable.net)
L1082[21:27:09] ⇦ Quits: AshIndigo (~EiraIRC@host-92-11-196-119.as43234.net) (Read error: Connection reset by peer)
L1083[21:31:09] ⇦ Quits: Ashindigo_ (uid202308@2604:8300:100:200b:6667:7:3:1644) (Quit: Connection closed for inactivity)
L1084[21:44:12] ⇨ Joins: Ashindigo_ (uid202308@id-202308.hathersage.irccloud.com)
L1085[22:04:08] ⇦ Quits: Xal (~xal@S0106f0f2490b0073.vw.shawcable.net) (Remote host closed the connection)
L1086[22:17:13] *** medsouz is now known as medsouz|offline
L1087[22:19:12] ⇨ Joins: Nachtara (~Nachiebre@173-22-110-5.client.mchsi.com)
L1088[22:20:07] ⇦ Parts: Graypup_ (Graypup@lfcode.ca) (Thanks for all the entertainment))
L1089[23:06:22] ⇦ Quits: Wiiplay123 (~kvirc@adsl-72-154-27-119.bna.bellsouth.net) (Read error: Connection reset by peer)
L1090[23:12:26] ⇦ Quits: BearishMushroom (~BearishMu@90-231-174-194-no159.tbcn.telia.com) (Read error: Connection reset by peer)
L1091[23:17:17] <Kodos> Holy shit P:R hit 1.10
L1092[23:26:11] <Antheus> %weather 76020
L1093[23:26:14] <MichiBot> Current weather for Azle, TX Current Temp: 42.0°F/5.6°C Feels Like: 42°F/6°C Current Humidity: 72% Wind: From the WSW 0.0 Mph/0.0 Km/h Conditions: Overcast
L1094[23:26:23] <Antheus> damn that's cold
L1095[23:27:24] <Kodos> %weather 62012
L1096[23:27:25] <MichiBot> Current weather for Brighton, IL Current Temp: 17.4°F/-8.1°C Feels Like: 17°F/-8°C Current Humidity: 62% Wind: From the WNW 0.0 Mph/0.0 Km/h Conditions: Partly Cloudy
L1097[23:27:36] <Kodos> Wait when the fuck did it get that cold here
L1098[23:28:37] <Antheus> when the earth was created
L1099[23:28:58] <Antheus> despite the rest of the crust being molten, Brighton, IL was still a frozen hell hole
L1100[23:35:36] <Kodos> No shit
L1101[23:35:37] <Kodos> Lol
L1102[23:35:45] <Kodos> So, dev build with MFU now?
L1103[23:40:17] ⇦ Quits: Nachtara (~Nachiebre@173-22-110-5.client.mchsi.com) (Quit: Mischief Managed!)
L1104[23:57:25] ⇦ Quits: Altenius (Altenius@Moving.Mountains.At.PanicBNC.us) (Quit: o/)
<<Prev Next>> Scroll to Top