<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:10:23] ⇨
Joins: npe|office
(~NPExcepti@bps-gw.hrz.tu-chemnitz.de)
L2[00:11:59] <sugoi> #lua
f=function(...)print( (...) )end f('abc')
L3[00:12:00] <|0xDEADBEEF|> > abc |
nil
L4[00:12:07] <sugoi> #lua
f=function(...)print( (...) )end f('abc','foo')
L5[00:12:07] <|0xDEADBEEF|> > abc |
nil
L6[00:12:24] <sugoi> is that safe? is that
lua compliant? to say (...) instead of ({...})[1] ?
L7[00:12:58] <gamax92> sugoi: doing () is
better than ({})[1]
L8[00:13:27] <sugoi> feels better :) just
wanted to be sure it was also correct
L9[00:13:40] <sugoi> what about...
L10[00:13:52] <sugoi> #lua
f=function(...)local v=... print( v )end f('abc','foo')
L11[00:13:53] <|0xDEADBEEF|> > abc |
nil
L12[00:13:57] <sugoi> that ok too?
L13[00:14:00] <sugoi> v=...
L14[00:14:28] *
gamax92 shrugs, you do what you do
L15[00:14:31] <sugoi> pj pj!
L16[00:14:34] <sugoi> haha, pj
L17[00:14:36] <sugoi> meant oh
L18[00:14:38] <sugoi> can i ...
L19[00:14:52] <sugoi> #lua
f=function(...)local a,b=... print(b,c)end f('abc','foo')
L20[00:14:52] <|0xDEADBEEF|> > foo |
nil
L21[00:14:57] <sugoi> oh sad
L22[00:15:11] <sugoi> wait
L23[00:15:12] <gamax92> you did b,c
L24[00:15:13] <sugoi> i'm an idiot
L25[00:15:15] <sugoi> thanks :)
L26[00:15:19] <sugoi> #lua
f=function(...)local a,b=... print(b,a)end f('abc','foo')
L27[00:15:20] <|0xDEADBEEF|> > foo abc |
nil
L28[00:15:24] <sugoi> #lua
f=function(...)local a,b=... print(b,a)end
f('abc','foo','bar')
L29[00:15:24] <|0xDEADBEEF|> > foo abc |
nil
L30[00:15:26] <sugoi> woot!
L31[00:15:37] <Antheus> gamax92, how crazy
would it be to have an autorun file that checks github to see if a
program has updated, downloaded it, then rebooted be?
L32[00:15:41] <Antheus> or is that
sane
L33[00:15:51] <gamax92> sugoi: this is what
I did when I also wanted to make functions that checked for no
value passed
L34[00:16:00] <gamax92> i.e
select("#",...)
L35[00:16:30] <sugoi> #lua
f=function(...)print(select('#',...))end f('abc','foo','bar')
L36[00:16:30] <|0xDEADBEEF|> > 3 |
nil
L37[00:16:34] <sugoi> neato
L38[00:17:27] <sugoi> #lua
f=function(...)local a=...print(a,...))end
f('abc','foo','bar')
L39[00:17:27] <|0xDEADBEEF|> > [string
"lua"]:1: unexpected symbol near ')'
L40[00:17:37] <sugoi> #lua
f=function(...)local a=... print(a,...)end
f('abc','foo','bar')
L41[00:17:38] <|0xDEADBEEF|> > abc abc
foo bar | nil
L42[00:17:45] *
sugoi does happy dance
L43[00:19:11] <gamax92> sugoi: bascically,
if you did f() vs f(nil), you'd get 0 and 1
L44[00:19:20] <gamax92> select lets us
check that
L45[00:19:22] <sugoi> oh that select '#'
?
L46[00:19:29] <sugoi> i've sometimes
wondered
L47[00:19:29] <gamax92> yeah
L48[00:19:30] <sugoi> thanks
L49[00:19:39] <sugoi> i've never needed
that (yet)
L50[00:19:43] <gamax92> #lua
select("#")
L51[00:19:43] <|0xDEADBEEF|> > 0
L52[00:19:45] <gamax92> #lua
select("#",nil)
L53[00:19:45] <|0xDEADBEEF|> > 1
L54[00:19:49] <sugoi> why would you
care?
L55[00:20:00] <sugoi> that's not
sarcastic
L56[00:20:14] <gamax92> making accurate
reproduction of C/Java functions for emulators
L57[00:20:34] <gamax92> where lua can spit
out stuff like expected blah, got no value
L58[00:20:35] <sugoi> for method
overloading?
L59[00:21:31] <AlmtyBob> Can I communicate
via wireless modem between an OC PC and a CC turtle?
L60[00:21:41] <sugoi> probably not, but i
dont know
L61[00:22:01] <sugoi> it'd definitely have
to be an intentional cross mod feature
L62[00:22:19] <sugoi> are at least an api
one or the other supports
L63[00:22:26] <sugoi> but i'm
doubtful
L64[00:22:45] <AlmtyBob> ah, a switch will
work
L65[00:23:06] ***
Daiyousei is now known as LearningFairy
L66[00:23:36] ⇦
Quits: Doty1154 (~Doty1154@2601:648:8002:c1a1:55d8:41ec:8389:93ca)
(Read error: Connection reset by peer)
L67[00:25:16] <gamax92> sugoi: cc and oc
can talk to eachother over the network
L68[00:25:25] <sugoi> AlmtyBob: i'm
wrong!
L69[00:25:41] <AlmtyBob> can they send
eachother wireless messages directly?
L70[00:28:54] <gamax92> uhh ... wireless
... dunno about that
L71[00:29:17] <gamax92> never personally
tried, also it's been quite a while since I did any CC/OC
networking
L72[00:30:16] <AlmtyBob> alright, I'll give
it a shot, thanks
L73[00:36:00] <greaser|q> fun thing about
select "#" is it only checks the first char of the
string
L74[00:36:14] <greaser|q> just found that
out right now
L75[00:40:54] ⇦
Quits: h3po (~h3po@aftr-5-146-248-138.unity-media.net) (Quit:
Leaving.)
L76[00:42:36] ***
Antheus is now known as AntheusSleep
L77[00:50:28] <Saphire> Who is kappa?
L78[01:13:07] ⇨
Joins: mr_joseph
(~mr_joseph@24-217-84-88.dhcp.stls.mo.charter.com)
L79[01:14:43] ⇦
Quits: mr_joseph (~mr_joseph@24-217-84-88.dhcp.stls.mo.charter.com)
(Client Quit)
L80[01:16:06] ⇨
Joins: VikeStep (~VikeStep@101.184.165.77)
L81[01:17:14] ⇨
Joins: mr_joseph
(~mr_joseph@24-217-84-88.dhcp.stls.mo.charter.com)
L82[01:17:20] <mr_joseph> Ello
L83[01:22:52] ⇦
Quits: mr_joseph (~mr_joseph@24-217-84-88.dhcp.stls.mo.charter.com)
(Quit: mr_joseph)
L84[01:28:25] <sugoi> gamax92: i'm really
anxious now
L85[01:28:42] <sugoi> finished my final
metamorphisis of my memory savings idea
L86[01:28:58] <sugoi> it runs in ocemu, but
now to actually measure the results in-game
L87[01:29:29] <Saphire> Huh?
L88[01:31:19] <sugoi> Saphire: i've been
working to reduce the ram cost of booting openos
L89[01:31:46] <Saphire> on-demand loading
of things?
L90[01:31:53] <sugoi> yeah
L91[01:35:45] <sugoi> i've had various
ideas, but the overhead of each idea thus far has been
unacceptable
L92[01:42:28] <greaser|q> gotta love CC
networking, or at least when the only forms of networking were
bundled cable and wireless modems
L93[01:42:51] <greaser|q> it was a lot
better to just use a wireless modem because the cable was either
dog slow, slowed everything down, or both
L94[01:43:53] <sugoi> gamax92: i dropped
memory by 4260 bytes by lazy loading filesystem alone
L95[01:44:24] <sugoi> this new lazy system
is super low memory
L96[01:44:26] <sugoi> BUT...
L97[01:44:32] <sugoi> it gives up the cache
really fast :/
L98[01:44:44] <sugoi> which isn't really
what we want
L99[01:45:10] <sugoi> i might...make the
cache live at least as long as the parent process that loaded
them
L100[01:45:55] <sugoi> hmm, except for
init
L101[01:46:06] <sugoi> or not
L102[01:46:09] <sugoi> hrm
L103[01:46:11] <sugoi> :)
L104[02:33:26]
⇨ Joins: sciguyryan (~sciguyrya@37.48.86.178)
L105[02:47:18]
⇨ Joins: squarism
(~squarism@c-73-25-21-253.hsd1.or.comcast.net)
L106[02:47:46] ⇦
Quits: squarism (~squarism@c-73-25-21-253.hsd1.or.comcast.net)
(Client Quit)
L107[02:48:24]
⇨ Joins: squarism
(~squarism@c-73-25-21-253.hsd1.or.comcast.net)
L108[02:54:37] ⇦
Parts: squarism (~squarism@c-73-25-21-253.hsd1.or.comcast.net)
())
L109[03:00:30]
⇨ Joins: Turtle (~SentientT@145.37.53.185)
L110[03:03:14] ⇦
Quits: Something12 (~Something@184.65.42.207) (Ping timeout: 198
seconds)
L111[03:03:25] ⇦
Quits: Yepoleb (~quassel@194-166-3-19.adsl.highway.telekom.at)
(Ping timeout: 194 seconds)
L112[03:04:37]
⇨ Joins: Yepoleb
(~quassel@188-22-163-42.adsl.highway.telekom.at)
L113[03:41:47] *
Lizzy groans
L114[03:48:56] <sugoi> Lizzy: you
okay?
L115[03:49:23] <Lizzy> define
"okay", I'm alive physically, i think
L116[04:00:07] <Turtle> yaaaay variables
everywhere .-.
L117[04:06:11] <sugoi> well on some good
news ---
L118[04:06:32] ⇦
Quits: AngieBLD (AngieBLD@2001:19f0:6800:8161:a:1ce:c01d:babe)
(*.net *.split)
L119[04:06:32] ⇦
Quits: Techokami (Techokami@2001:19f0:6800:8161:1:be:a:7001) (*.net
*.split)
L120[04:06:32] ⇦
Quits: LordFokas (LordFokas@2001:19f0:6800:8161:1:be:a:7001) (*.net
*.split)
L121[04:06:32] ⇦
Quits: VikeStep (~VikeStep@101.184.165.77) (*.net
*.split)
L122[04:06:32] ⇦
Quits: npe|office (~NPExcepti@bps-gw.hrz.tu-chemnitz.de) (*.net
*.split)
L123[04:06:32] ⇦
Quits: Greenphlem (uid22276@id-22276.tooting.irccloud.com) (*.net
*.split)
L124[04:06:32] ⇦
Quits: Tedster
(~Tedster@host86-170-31-233.range86-170.btcentralplus.com) (*.net
*.split)
L125[04:06:32] ⇦
Quits: primetoxinz (~primetoxi@ip68-107-226-229.hr.hr.cox.net)
(*.net *.split)
L126[04:06:32] ⇦
Quits: septi25 (~septi25@ipb21a8a62.dynamic.kabel-deutschland.de)
(*.net *.split)
L127[04:06:32] ⇦
Quits: Saphire (~Saphire@176.50.147.150) (*.net
*.split)
L128[04:06:32] ⇦
Quits: CompanionCube (samis@znc.stary2001.co.uk) (*.net
*.split)
L129[04:06:32] ⇦
Quits: ocdoc (gamax92@eos.pc-logix.com) (*.net
*.split)
L130[04:06:32] ⇦
Quits: johnlage (johnlage@204.44.91.127) (*.net
*.split)
L131[04:06:32] ⇦
Quits: Magik6k (~Magik6k_@magik6k.net) (*.net *.split)
L132[04:06:32] ⇦
Quits: lashtear (~lashtear@cpe-50-113-67-84.san.res.rr.com) (*.net
*.split)
L133[04:06:32] ⇦
Quits: Forecaster (~Forecaste@83.223.1.173) (*.net
*.split)
L134[04:06:32] ⇦
Quits: mallrat208 (~mallrat20@184-88-190-37.res.bhn.net) (*.net
*.split)
L135[04:06:32] ⇦
Quits: Roadcrosser (~potato@ultros.tentacles.are.evidently.sexy)
(*.net *.split)
L136[04:06:32] ⇦
Quits: alekso56 (~znc@ti0107a400-2313.bb.online.no) (*.net
*.split)
L137[04:06:32] ⇦
Quits: Guest49073 (michiyo@eos.pc-logix.com) (*.net
*.split)
L138[04:06:32] ⇦
Quits: gAway2002 (~g@ultros.tentacles.are.evidently.sexy) (*.net
*.split)
L139[04:06:32] ⇦
Quits: nxsupert (nxsupert@2001:19f0:6800:8161:1337:c0de:4:11fe)
(*.net *.split)
L140[04:06:32] ⇦
Quits: AntheusSleep (Antheus@2001:19f0:6800:8161:1:be:a:7001)
(*.net *.split)
L141[04:06:32] ⇦
Quits: m_A_y_A_t
(Riry@These.Arent.The.Droid.Youre.Looking.For.PanicBNC.org) (*.net
*.split)
L142[04:06:32] ⇦
Quits: EnderBot2 (enderbot2@athar.theender.net) (*.net
*.split)
L143[04:06:32] ⇦
Quits: careo (~careo@exsurgent.com) (*.net *.split)
L144[04:06:32] ⇦
Quits: dustinm` (~dustinm@2607:5300:100:200::160d) (*.net
*.split)
L145[04:06:32] ⇦
Quits: Michiyo (Michiyo@mail.pc-logix.com) (*.net
*.split)
L146[04:06:32] ⇦
Quits: malcom2073_ (~quassel@mikesshop.net) (*.net
*.split)
L147[04:06:32] ⇦
Quits: Pwootage (~Pwootage@54.243.207.243) (*.net
*.split)
L148[04:06:32] ⇦
Quits: marcin212 (~marcin212@bymarcin.com) (*.net
*.split)
L149[04:06:32] ⇦
Quits: DFrostedWang
(~DFrostedW@ec2-52-10-198-190.us-west-2.compute.amazonaws.com)
(*.net *.split)
L150[04:06:32] ⇦
Quits: Kilobyte (~kilobyte@cucumber.kilobyte22.de) (*.net
*.split)
L151[04:06:33] ⇦
Quits: Naomi_ (Naomi@eos.pc-logix.com) (*.net *.split)
L152[04:06:33] ⇦
Quits: tekacs (~tekacs@tekacs.com) (*.net *.split)
L153[04:06:33] ⇦
Quits: bananagram (~bananagra@2604:180:0:af5::9) (*.net
*.split)
L154[04:06:33] ⇦
Quits: Keridos|away (~Keridos@ironhide.stw-bonn.de) (*.net
*.split)
L155[04:06:33] ⇦
Quits: Zerant (~Zerant@5.196.237.209) (*.net *.split)
L156[04:06:33] ⇦
Quits: `-` (ds84182@eos.pc-logix.com) (*.net *.split)
L157[04:06:33] ⇦
Quits: MichiBot (~lb@eos.pc-logix.com) (*.net *.split)
L158[04:06:33] ⇦
Quits: Thog (~Thog@is.aww.moe) (*.net *.split)
L159[04:06:33] ⇦
Quits: rakiru|offline
(znc@hi.i.wanted.to.let.you.all.know.that.i.think.incest.is.wince.st)
(*.net *.split)
L160[04:06:33] ⇦
Quits: Wolf480pl (wolf480pl@faris.ijestfajnie.pl) (*.net
*.split)
L161[04:06:33] ⇦
Quits: alfw|Off (~alfw@znc.exozone.net) (*.net
*.split)
L162[04:06:33] ⇦
Quits: cloakable
(~cloakable@cpc87169-aztw31-2-0-cust145.18-1.cable.virginm.net)
(*.net *.split)
L163[04:06:33] ⇦
Quits: Altenius (Altenius@Moving.Mountains.At.PanicBNC.us) (*.net
*.split)
L164[04:06:33] ⇦
Quits: ven000m (~e@149.3.143.68) (*.net *.split)
L165[04:06:33] ⇦
Quits: Vic (~Vic@nightfall.moe) (*.net *.split)
L166[04:06:33] ⇦
Quits: DrummerMC (DrummerMC@no.love.for.the.world.panicbnc.org)
(*.net *.split)
L167[04:06:33] ⇦
Quits: Lizzy (lizzy@lizzy.theender.net) (*.net
*.split)
L168[04:06:33] ⇦
Quits: Ender (Ender@athar.theender.net) (*.net
*.split)
L169[04:06:33] ⇦
Quits: Hobbyboy (Hobbyboy@hobbyboy.co.uk) (*.net
*.split)
L170[04:06:33] ⇦
Quits: infina (~infina@9600-baud.net) (*.net *.split)
L171[04:06:33] ⇦
Quits: S3 (~S3@9600-baud.net) (*.net *.split)
L172[04:06:33] <sugoi> i'm 42 bytes away
from openos 1.6 booting on tier 1.5 ram with a minimum of 50k ram
free
L173[04:06:36] <sugoi> and
L174[04:06:36] <^v> Oh noes!
insanity,portlane split 3:
L175[04:07:06] <sugoi> and i have a lot
more room for improvement now opened up thanks to lazy loading
library working
L176[04:07:17] <sugoi> working efficiently
too
L177[04:07:21] <sugoi> anyways, time for
sleep
L178[04:07:31] <sugoi> bye all!
L179[04:08:14]
⇨ Joins: VikeStep (~VikeStep@101.184.165.77)
L180[04:08:14]
⇨ Joins: npe|office
(~NPExcepti@bps-gw.hrz.tu-chemnitz.de)
L181[04:08:14]
⇨ Joins: Greenphlem
(uid22276@id-22276.tooting.irccloud.com)
L182[04:08:14]
⇨ Joins: Tedster
(~Tedster@host86-170-31-233.range86-170.btcentralplus.com)
L183[04:08:14]
⇨ Joins: primetoxinz
(~primetoxi@ip68-107-226-229.hr.hr.cox.net)
L184[04:08:14]
⇨ Joins: septi25
(~septi25@ipb21a8a62.dynamic.kabel-deutschland.de)
L185[04:08:14]
⇨ Joins: Saphire (~Saphire@176.50.147.150)
L186[04:08:14]
⇨ Joins: AntheusSleep
(Antheus@2001:19f0:6800:8161:1:be:a:7001)
L187[04:08:14]
⇨ Joins: CompanionCube
(samis@znc.stary2001.co.uk)
L188[04:08:14]
⇨ Joins: ocdoc (gamax92@eos.pc-logix.com)
L189[04:08:14]
⇨ Joins: johnlage (johnlage@204.44.91.127)
L190[04:08:14]
⇨ Joins: gAway2002
(~g@ultros.tentacles.are.evidently.sexy)
L191[04:08:14]
⇨ Joins: Magik6k (~Magik6k_@magik6k.net)
L192[04:08:14]
⇨ Joins: lashtear
(~lashtear@cpe-50-113-67-84.san.res.rr.com)
L193[04:08:14]
⇨ Joins: Forecaster (~Forecaste@83.223.1.173)
L194[04:08:14]
⇨ Joins: mallrat208
(~mallrat20@184-88-190-37.res.bhn.net)
L195[04:08:14]
⇨ Joins: Roadcrosser
(~potato@ultros.tentacles.are.evidently.sexy)
L196[04:08:14]
⇨ Joins: alekso56
(~znc@ti0107a400-2313.bb.online.no)
L197[04:08:14]
⇨ Joins: Guest49073 (michiyo@eos.pc-logix.com)
L198[04:08:14]
⇨ Joins: AngieBLD
(AngieBLD@2001:19f0:6800:8161:a:1ce:c01d:babe)
L199[04:08:14]
⇨ Joins: nxsupert
(nxsupert@2001:19f0:6800:8161:1337:c0de:4:11fe)
L200[04:08:14]
⇨ Joins: Techokami
(Techokami@2001:19f0:6800:8161:1:be:a:7001)
L201[04:08:14]
⇨ Joins: LordFokas
(LordFokas@2001:19f0:6800:8161:1:be:a:7001)
L202[04:08:14]
⇨ Joins: infina (~infina@9600-baud.net)
L203[04:08:14]
⇨ Joins: m_A_y_A_t
(Riry@These.Arent.The.Droid.Youre.Looking.For.PanicBNC.org)
L204[04:08:14]
⇨ Joins: malcom2073_ (~quassel@mikesshop.net)
L205[04:08:14]
⇨ Joins: EnderBot2
(enderbot2@athar.theender.net)
L206[04:08:14]
⇨ Joins: careo (~careo@exsurgent.com)
L207[04:08:14]
⇨ Joins: dustinm`
(~dustinm@2607:5300:100:200::160d)
L208[04:08:14]
⇨ Joins: Michiyo (Michiyo@mail.pc-logix.com)
L209[04:08:14]
⇨ Joins: Pwootage (~Pwootage@54.243.207.243)
L210[04:08:14]
⇨ Joins: marcin212 (~marcin212@bymarcin.com)
L211[04:08:14]
⇨ Joins: DFrostedWang
(~DFrostedW@ec2-52-10-198-190.us-west-2.compute.amazonaws.com)
L212[04:08:14]
⇨ Joins: Kilobyte
(~kilobyte@cucumber.kilobyte22.de)
L213[04:08:14]
nova.esper.net sets mode: +v on Kilobyte
L214[04:08:14]
⇨ Joins: S3 (~S3@9600-baud.net)
L215[04:08:14]
⇨ Joins: Hobbyboy (Hobbyboy@hobbyboy.co.uk)
L216[04:08:14]
⇨ Joins: Ender (Ender@athar.theender.net)
L217[04:08:14]
⇨ Joins: Lizzy (lizzy@lizzy.theender.net)
L218[04:08:14]
⇨ Joins: DrummerMC
(DrummerMC@no.love.for.the.world.panicbnc.org)
L219[04:08:14]
⇨ Joins: Vic (~Vic@nightfall.moe)
L220[04:08:14]
⇨ Joins: ven000m (~e@149.3.143.68)
L221[04:08:14]
⇨ Joins: Altenius
(Altenius@Moving.Mountains.At.PanicBNC.us)
L222[04:08:14]
⇨ Joins: cloakable
(~cloakable@cpc87169-aztw31-2-0-cust145.18-1.cable.virginm.net)
L223[04:08:14]
⇨ Joins: Wolf480pl
(wolf480pl@faris.ijestfajnie.pl)
L224[04:08:14]
⇨ Joins: alfw|Off (~alfw@znc.exozone.net)
L225[04:08:14]
⇨ Joins: rakiru|offline
(znc@hi.i.wanted.to.let.you.all.know.that.i.think.incest.is.wince.st)
L226[04:08:14] *** nova.esper.net sets mode: +o
Lizzy
L227[04:08:14]
⇨ Joins: Thog (~Thog@is.aww.moe)
L228[04:08:14]
⇨ Joins: MichiBot (~lb@eos.pc-logix.com)
L229[04:08:14]
⇨ Joins: `-` (ds84182@eos.pc-logix.com)
L230[04:08:14]
⇨ Joins: Zerant (~Zerant@5.196.237.209)
L231[04:08:14]
⇨ Joins: Keridos|away
(~Keridos@ironhide.stw-bonn.de)
L232[04:08:14]
⇨ Joins: bananagram
(~bananagra@2604:180:0:af5::9)
L233[04:08:14]
⇨ Joins: tekacs (~tekacs@tekacs.com)
L234[04:08:14]
⇨ Joins: Naomi_ (Naomi@eos.pc-logix.com)
L235[04:08:14] *** nova.esper.net sets mode: +v
MichiBot
L236[04:08:32] <Turtle> That's a lot of
netsplit
L237[04:12:30] <Lizzy> aand their
back
L238[04:12:33] <Lizzy> *they're
L239[04:12:34] <Turtle> ... why does
whatsapp have to be such asshats about their desktop client,
ugh.
L240[04:12:45] <Saphire> whoa
L241[04:12:50] <Saphire> It lagged
L242[04:13:14] <Saphire> I mean, i got
join messages in one channel much latter than other
L243[04:23:50] ***
gAway2002 is now known as g
L244[04:34:24] <g> Turtle: ?
L245[04:34:45] <Turtle> it's being
obnoxious with poor wifi connection
L246[04:36:15] <g> ah, I see
L247[04:39:23] <Turtle> They're using some
wonky system based on the phone number, and nuked the api someone
hacked together, not too happy about that either >.>
L248[04:39:43] <g> most similar services
don't want bots
L249[04:40:01] <g> they didn't want to do
rate limiting so bots can just try every phone number
L250[04:41:26] <Turtle> Yeah, but there's
no real point, there's plenty of hackery to hook up sim cards to
computers/servers
L251[04:41:36] <g> I know that
L253[04:41:41] <g> is anyone in here an
nginx wizard?
L254[04:41:50] <Turtle> and I'm fairly
certain if you really wanted to you can just bulk-buy god knows how
many sim cards
L255[04:42:06] <Turtle> didn't some
australian skype connection duder make bank using cheap prepaid sim
cards? :p
L257[04:42:49] <g> fuck me, this nginx
issue is confusing
L258[04:43:07] <g> I have a site config
set up and it seems to just not be parsing it at all, but there are
no errors..
L259[04:43:24] <g> all the others in the
folder work fine and it falls through to one of the others
L260[04:43:39] <g> (if I remove that one
it falls through to a different one, if I remove all the others
then it doesn't start)
L261[04:43:45] <Turtle> vOv, I'm currently
hacking an automated website testing tool into an api abstracted to
hell
L262[04:43:57] <g> lol, I see
L263[04:44:15] <Turtle> TLDR: A database,
hooked up to a website, with JESUS FUCKING CHRIST WHO HURT YOUR
SOUL amounts of JS
L264[04:44:56] <Turtle> At which I pointed
a browser-driver to pull/push data
L265[04:49:50] <Turtle> (I did it before
for a hacky bot, now making it into a proper library because
:effort: required to maintain two slightly modified copies of the
same code in two bots
L266[04:50:40] ⇦
Quits: calclavia (uid15812@2001:67c:2f08:6::3dc4) (Quit: Connection
closed for inactivity)
L267[04:53:37] ***
LearningFairy is now known as Daiyousei
L268[04:55:05] ⇦
Quits: Madxmike (~Madxmike@71-90-219-250.dhcp.spbg.sc.charter.com)
(Remote host closed the connection)
L269[05:03:49] ⇦
Quits: Turtle (~SentientT@145.37.53.185) (Quit: Nettalk6 -
www.ntalk.de)
L270[05:23:40]
⇨ Joins: Turtle (~SentientT@145.37.53.185)
L271[05:32:20] *
vifino groans
L272[05:32:39] *
vifino stumbles towards Lizzy and flops on her
L273[05:33:05] *
Lizzy pets vifino then falls asleep slightly
L274[05:33:24] *
vifino purrs
L275[05:33:31] *
Saphire flops
L276[05:35:12] <DeanIsaKitty> Uhm, honest
question: Does anybody in this channel actually use msgpack?
L277[05:35:44] <Saphire> A what?
L279[05:36:47] <vifino> DeanIsaKitty: I
do.
L280[05:37:04] <DeanIsaKitty> vifino: You
don't count
L281[05:37:12] <vifino> wat
L282[05:37:14] <vifino> Why?
L283[05:37:20] <Saphire> Um, on phone with
no mem to chat and browse
L284[05:37:37] <Saphire> Also, dial-up
like inet
L285[05:37:49] <DeanIsaKitty> Because I
*know* there is no reasoning behind your decisions vifino :3
L286[05:38:02] <Saphire> So, what is it
?
L287[05:38:19] <vifino> DeanIsaKitty:
There is.
L288[05:38:49] <DeanIsaKitty> Saphire:
Quote: "It's like JSON. but fast and small. MessagePack is an
efficient binary serialization format."
L289[05:39:02] <DeanIsaKitty> vifino: So
why did you choose msgpack then?
L290[05:39:10] <Saphire> Ah
L291[05:39:23] <Saphire> i thonk cjdns
uses something like this?
L292[05:39:31] <Saphire> Its
software
L293[05:39:43] <vifino> I use msgpack
because it's smaller than json for example, it also performs a bit
better, probably just because it has less to process.
L294[05:39:57] <Saphire> And sorry, I'm
not into binary formats
L295[05:40:20] <Saphire> Though, it sounds
nice
L296[05:40:52] <DeanIsaKitty> Saphire:
*please* don't use msgpack.
L297[05:41:01] <Saphire> Hm?
L298[05:41:04] <DeanIsaKitty> vifino: And
what made you choose msgpack over any other format?
L299[05:41:07] <vifino> DeanIsaKitty: I
use msgpack as a serialization type of thing to transfer data
between threads :P
L300[05:41:28] <DeanIsaKitty> Saphire:
msgpack combines the worst of every world. Literally. ._.
L301[05:41:37] <vifino> Well, not lua
instances
L302[05:41:43] <vifino> i can't
words
L303[05:41:45] <Saphire>
binary+json?
L304[05:41:51] <vifino> Well, not normal
threads, lua instances*
L305[05:42:37] <vifino> DeanIsaKitty: Got
something better, then?
L306[05:42:46] <DeanIsaKitty> vifino: Yes.
About every other format there is.
L307[05:42:58] <vifino> So go ahead, I'm
listening.
L308[05:43:25] <DeanIsaKitty>
{"compact": true, "schema":0} thats the example
that they provide
L309[05:43:35] <vifino> And?
L310[05:43:37] <DeanIsaKitty> in JSON
thats 27 bytes, in msgpack thats 1
L311[05:43:39] <DeanIsaKitty> 18
L312[05:43:45] <vifino> Aaaand?
L313[05:45:13] <Saphire> >schema
0
L314[05:45:16] <Saphire> Uh
L315[05:45:37] <DeanIsaKitty> now, lets
think about it. compact is a bool. schema seems to be an int giving
an ID. Lets assume there are 1000 other possible schemas. 1000 can
be represented with 10 bits. So all in all, this takes 11 bits in
an efficient encoding, like PER. 12 bits if you use signed Per.
Thats not even 2 bytes.
L316[05:46:31] <DeanIsaKitty> msgpack is
literally binary formats for people that don't know how to do
binary formats.
L317[05:46:49] <vifino> Nice.
L318[05:47:19] <DeanIsaKitty> And it
doesnt even have the advantage of being human readable like
JSON.
L319[05:48:49] <DeanIsaKitty> vifino: The
only place where msgpack would be even reasonably efficient would
be protocols with big amounts of textdata. And I guarantee that a
BER based encoding in that case would be at least an order of
magnitude faster to decode.
L320[05:49:26] <vifino> Alright, since
there are so many other good encoding thingies, show me one that
has implementations for both lua and go, where the lua one has to
support custom types, both performing reasonably fast.
L321[05:49:49] <vifino> I'll happily
switch to that then.
L322[05:49:51] <DeanIsaKitty> There are
ASN.1 impls for Lua and Go. Both of them are sucker. :)
L323[05:50:16] <DeanIsaKitty> Sorry that
you can't do research.
L324[05:50:37] <vifino> Sorry that you
think I care.
L325[05:50:53] <DeanIsaKitty> I don't.
Thats why I said you don't count.
L326[05:51:02] <vifino> Awesome.
L327[05:52:08] <DeanIsaKitty> So, anybody
using msgpack over any other binary format?
L328[05:52:11] <vifino> Except that I do
care, and I did search. As the nmap implementation for ASN.1 goes,
it doesn't support custom types.
L329[05:52:28] <vifino> Actually,
hmm
L330[05:52:49] <DeanIsaKitty> vifino: Give
me *anything* ASN.1 doesn't support. I dare you
L331[05:53:20] <DeanIsaKitty> You can do
bitstrings for fucks sake. You can encode any random array of bits
if you care enough.
L332[05:54:00] <DeanIsaKitty> Talking from
a 8 bit CPU to a 7 bit microcontroller? No problem, ASN.1 got you
covered.
L333[05:54:47] <vifino> Sadly nmap's
implementation is under the GPL.
L334[05:59:53] <vifino> Also, most of my
reasoning is because it's the best I knew, having very solid
implementations.
L335[06:00:22] <DeanIsaKitty> You don't
care about efficiency either, do you?
L336[06:00:53] <vifino> I do.
L337[06:01:37] <DeanIsaKitty> Then why do
you use msgpack again?
L338[06:02:24] <vifino> "because it's
the best I knew, having very solid implementations".
L339[06:03:45] <DeanIsaKitty> So ease of
use?
L340[06:05:05] <vifino> Sure, why
not.
L341[06:05:54] <DeanIsaKitty> Okay
L342[06:06:01]
⇨ Joins: Madxmike
(~Madxmike@71-90-219-250.dhcp.spbg.sc.charter.com)
L343[06:10:29] ⇦
Quits: Roadcrosser (~potato@ultros.tentacles.are.evidently.sexy)
(Quit: Twenty Percent isn't enough!)
L344[06:11:06] ⇦
Quits: g (~g@ultros.tentacles.are.evidently.sexy) (Quit:
Leaving)
L345[06:13:49] ⇦
Quits: Madxmike (~Madxmike@71-90-219-250.dhcp.spbg.sc.charter.com)
(Remote host closed the connection)
L346[06:21:17] *
Lizzy sighs deeply and curls up into a fetus position
L347[06:25:02] *
vifino picks up Lizzy and snuggles her
L348[06:25:20]
⇨ Joins: MajGenRelativity
(~MajGenRel@c-73-186-66-242.hsd1.ma.comcast.net)
L349[06:27:49] <dangranos> Q_Q
L350[06:27:56] *
dangranos wants to slap asie
L351[06:32:08] <MajGenRelativity>
O_O
L352[06:32:25] <Turtle> ... yaaaaaaaay
installing java application on a windows server that does IPC (via
file IO because of course it's file IO) with some TCL script
L353[06:33:03] <Turtle> Java has had
spamming a child process and capturing it's STDIO for... how long
now?
L355[06:43:53] <Mimiru> gamax92, except...
when I go to build it on jenkins it's going to jkind of want a dev
version too
L356[06:46:26]
⇨ Joins: AlexisMachina
(uid57631@id-57631.charlton.irccloud.com)
L357[06:57:54] <vifino> Looks like go is
broken on alpine x86.
L358[06:58:02] <vifino> Le sigh.
L359[06:59:24] ⇦
Quits: VikeStep (~VikeStep@101.184.165.77) (Quit:
Leaving)
L360[07:01:14] ⇦
Quits: MajGenRelativity
(~MajGenRel@c-73-186-66-242.hsd1.ma.comcast.net) (Quit: Time to go,
to adventure!)
L361[07:02:24] ⇦
Quits: wembly (~wembly@50.240.220.69) (Ping timeout: 198
seconds)
L362[07:05:20]
⇨ Joins: wembly (~wembly@50.240.220.69)
L363[07:15:34]
⇨ Joins: Roadcrosser
(~potato@ultros.tentacles.are.evidently.sexy)
L364[07:16:01] ***
Roadcrosser is now known as Guest52863
L365[07:16:07]
⇨ Joins: g
(~g@ultros.tentacles.are.evidently.sexy)
L366[07:17:24] *** g
is now known as gDroid2002
L367[07:22:35] *
Lizzy sighs
L368[07:28:35] *
vifino picks up Lizzy and goes to get food
L369[07:31:18] ***
Keridos|away is now known as Keridos
L370[07:37:42] ***
cbcercas|AFK is now known as cbcercas
L371[07:48:09]
⇨ Joins: h3po
(~h3po@aftr-5-146-248-7.unity-media.net)
L372[07:50:03] ⇦
Quits: npe|office (~NPExcepti@bps-gw.hrz.tu-chemnitz.de) (Remote
host closed the connection)
L373[08:17:40]
⇨ Joins: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net)
L374[08:17:40]
zsh sets mode: +v on Kodos
L375[08:23:21]
⇨ Joins: fotoply
(~fotoply@2-104-228-18-static.dk.customer.tdc.net)
L376[08:38:09] ⇦
Quits: Turtle (~SentientT@145.37.53.185) (Quit: Nettalk6 -
www.ntalk.de)
L377[08:39:30] ***
amadornes[OFF] is now known as amadornes
L378[08:46:41]
⇨ Joins: Turtle (~SentientT@145.37.53.185)
L379[08:46:44] ***
cbcercas is now known as cbcercas|AFK
L380[08:48:09] ***
Keridos is now known as Keridos|away
L381[08:56:00]
⇨ Joins: Inari
(~Pinkishu@p5DEC6D1A.dip0.t-ipconnect.de)
L382[08:56:04] *
Michiyo thinks about getting a gas can and some
matches
L383[08:57:03] <Inari> Michiyo: pls
L384[08:57:09] <Inari> leave the gas to
the german engineers
L385[08:57:32] <Michiyo> nop
L386[08:59:25] *
Inari waits an operation and resumes
L387[08:59:58] <Lizzy> Inari, ....
L388[09:00:04] <Inari> ;D
L389[09:00:55] *
Lizzy sighs
L390[09:01:27] *
Inari catches the sigh and sells it to vifino
L391[09:04:36] <Lizzy> :@
L392[09:04:45] <Lizzy> PC FUCKING COMPLY
WITH THE POLICY
L393[09:05:12] <Michiyo> lol Inari
L394[09:07:15] *
Lizzy curls up in a ball and cries
L395[09:08:06] *
Inari ponders alsoo selling Lizzy's tears but decides not
to
L396[09:09:37] *
vifino slaps Inari
L397[09:09:37] *
EnderBot2 chuckles
L398[09:09:41] <Inari> :<
L399[09:09:48] *
vifino picks up Lizzy and hugs her tightly
L400[09:09:51] *
gDroid2002 hugs Lizzy
L401[09:10:15] *
gDroid2002 also hugs Inari and Michiyo
L402[09:10:19] <gDroid2002> hugs
everywhere!
L403[09:10:34] *
Lizzy continues crying, ignoring her surroundings
L404[09:10:38] *
Inari phases through and hops back away a bit
L405[09:10:40] <gDroid2002> how is
everyone doing in their natural habitats today?
L406[09:10:49] <Kodos> F-f-f-fine
L407[09:10:55] <Kodos> %weather
62012
L408[09:10:59] <MichiBot> Kodos: Current
weather for 62012 Current Temp: 10°F/-12°C Feels Like: 10°F/-12°C
Current Humidity: 92 Wind: From the N 0 Mph/0 Km/h Conditions:
Partly Cloudy
L409[09:11:24] <gDroid2002> That's like
"Fuck that I'm staying in bed" temperature
L410[09:11:46] <Inari> thats like
"kigurumi and tea time" temperature
L411[09:12:22] <gDroid2002> if you like
frozen tea
L412[09:12:25] <gDroid2002> :P
L413[09:12:32] *
vifino hugs Lizzy tighter, holding and lightly petting her while
she cries
L414[09:13:25] <Kodos> The best
part?
L415[09:13:31] <Kodos> I just got done
walking to the mailbox and back
L416[09:13:39] <Kodos> Because I have to
get my mother's mail while they're on vacation
L417[09:13:48] <gDroid2002> how many
icicles are hanging from your nose?
L418[09:13:57] <gDroid2002> :P
L419[09:14:08] <Inari> gDroid2002: i tend
to not live outside
L420[09:14:08] <Inari> so
L421[09:14:16] <Inari> gDroid2002: plus
the tea is kept warm oon a stove :3
L422[09:14:29] <gDroid2002> Inari, Yeah
but with temps that cold you're going to have a hard time warming a
house
L423[09:14:38] <Inari> eh
L424[09:14:40] <Inari> not really no
L425[09:15:11] <gDroid2002> rip your
wallet
L426[09:15:26] <Inari> wood-burnign oven
ftw
L427[09:15:36] <Inari> good isolation
ehlps
L428[09:15:37] <Inari> :p
L429[09:16:05] <DeanIsaKitty> You people
<.< There is no such thing as bad weather, only bad
clothing.
L430[09:16:24] <gDroid2002> What, like
sandals with socks?
L431[09:16:30] <Inari> DeanIsaKitty: there
is bad weather
L432[09:16:32] <Inari> its called
sun
L433[09:16:46] <Inari> and yeah kigurumi
keeps you nicely warm even if the house is a little cold
L434[09:16:47] <gDroid2002> I guess Inari
burns then :P
L435[09:17:03] <gDroid2002> What's that,
one of those blanket heater table things?
L436[09:17:10] <Inari> that are
kotatsu
L438[09:17:35] <DeanIsaKitty> Inari:
Xeroderma pigmentosum? <.>
L439[09:17:41] <gDroid2002> Oh right, the
animal onesies
L440[09:17:44] <gDroid2002> :P
L441[09:18:02] <Inari> DeanIsaKitty: nah,
sun is just annoying, too hot and im in a muhc better mood if its
snowy or rainy
L442[09:18:27] *
Lizzy should probably go do work stuff instead of sitting around
just existing
L443[09:18:43] <DeanIsaKitty> Lizzy:
yes
L444[09:19:48] ***
cbcercas|AFK is now known as cbcercas
L445[09:21:05] *
Lizzy stops crying, wipes her face then gets up and wanders
off
L446[09:34:08] <Kodos> %g silly songs beep
beep
L448[09:35:07] <Inari> Kodos: always keep
beeping?
L449[09:35:39] <Kodos> I just like the
song and remembered it while I was doing stuff
L450[09:35:42] <Kodos> So I wanted to
listen to it
L451[09:41:52] *
Lizzy sighs
L452[09:43:31] <Cazzar> Hmm... I wonder...
@Cazzar
L453[09:44:05] <Cazzar>
"<Cazzar> Hmm... I wonder... @invalid-user" GJ
Corded
L454[09:44:30] <Michiyo>
#blamediscordapi
L455[09:44:40] <DeanIsaKitty>
#blamesangar
L456[09:44:57] <Kodos> Oooh new snapshot
today
L457[09:44:58] <Michiyo> Cause it's
happened on atleast 4 different bot frameworks not remotely related
to corded.
L458[09:45:17] <DeanIsaKitty> Soooooo,
discord sucks? :P
L459[09:45:25] <Michiyo> -_-
L460[09:45:29] <Cazzar> No
L461[09:45:31] <Michiyo> Yes... that's
CLEARLY what I said, isn't it.
L462[09:45:49] <DeanIsaKitty> Michiyo: No
you didn't. That's what *I* said :P
L463[09:45:50] <vifino> My replacement nas
parts arrived.
L464[09:45:52] <vifino> Yay.
L465[09:45:55] <gDroid2002> The API is
very strange
L466[09:45:55] <Cazzar> You need to
explicitly mention the users being mentioned in the post.
L467[09:46:21] <Cazzar> The api is..
Interesting at the least.
L468[09:46:27] <gDroid2002> I get that
error with the client if I tag someone in a message, lose
connection, and send it when I reconnect
L469[09:47:01] <gDroid2002> just with the
standard client
L470[09:48:25] <Cazzar> Report it as a
bug?
L471[09:49:01] <DeanIsaKitty> Michiyo: Do
you really take me seriously when I hate on stuff? I dislike
stupidity, but I honestly couldn't care less about people using
Discord in any way whatsoever. I mean I won't use it but I won't
stop anybody from using it. Now stop being so easily offended ffs.
-.-
L472[09:50:02] *
Lizzy returns and curls back up into her ball
L473[09:52:44] <Michiyo> Who said I was
offended?
L474[09:53:47] <gDroid2002> I don't see
how you'd think Michiyo was offended there
L475[09:54:14] <DeanIsaKitty> No you were
not. But you sometimes are by me which annoys me.
L476[09:54:29]
<
Pwootage> Cazzar: the ref worked
for me
L477[09:54:34] <Michiyo> ...
L479[09:54:55]
<
Pwootage> (I think that links
properly in IRC)
L480[09:55:05] <Michiyo> It does.. it's a
long link, but it works
L481[09:55:14]
<
Cazzar> Yeah
L482[09:55:23]
<
Cazzar> Weird... Let's see
@Cazzar
L483[09:55:38]
<
Cazzar> I can @ myself but that
didn't work...
L484[09:55:45] <Michiyo> Testing
@Cazzar
L485[09:55:56]
<
Pwootage> All of these refs have
worked from my screen
L486[09:55:59]
<
Cazzar> Invalid-user for me.
L487[09:56:02] <DeanIsaKitty> Is it
@everybody or @all ?
L488[09:56:04] *
Michiyo shrugs
L489[09:56:11]
<
Pwootage> I don't know, I have it
disabled :P
L490[09:56:27] <Michiyo> Everybody, but
it's disabled for everyone except mods and admins iirc
L491[09:56:39] <Michiyo> I think it's
@everybody anyway
L493[09:57:19]
<
Cazzar> That crop
L494[09:57:28]
<
Pwootage> everyone, according to
the config
L495[09:57:50]
<
Cazzar> Its @ everyone
L496[09:57:50] <Michiyo> ahh, @everyone
then k
L497[09:57:58] <Michiyo> but yeah... it's
disabled unless you're admin, or mod
L498[09:58:29]
<
Pwootage> Man, now I'm thinking
about working on getting x86 working in OC again ;-;
L499[09:59:22] <DeanIsaKitty> Cazzar: It
may just be because you're pinging yourself from IRC and Discord
tries to be smart. Or does it happen with every nick Corded
mentions?
L500[09:59:22] <Michiyo> %weather
72396
L501[09:59:24] <MichiBot> Michiyo: Current
weather for 72396 Current Temp: 31°F/-1°C Feels Like: 25°F/-4°C
Current Humidity: 100 Wind: From the N 6 Mph/9 Km/h Conditions:
Mist
L502[09:59:51] <Cazzar> DeanIsaKitty see
the last link
L503[10:00:17] <Michiyo> I'm installing
discord on my phone atm
L504[10:00:35] <Cazzar> I /am/ using the
beta too.
L505[10:01:30]
<
Mimiru> Test
L506[10:01:34] <Michiyo> k.. @Mimiru
L507[10:01:42] <Michiyo> huh..
invalid-user
L508[10:01:44]
<
Pwootage> It's broken on android,
apparently
L509[10:01:47]
<
Pwootage> works fine on
desktop
L510[10:01:52]
<
Pwootage> (checked my phone as
well)
L511[10:02:06]
<
Mimiru> Fun...
L512[10:02:13]
<
Cazzar> What use cases do we
have?
L513[10:02:24] ⇦
Quits: Turtle (~SentientT@145.37.53.185) (Quit: Nettalk6 -
www.ntalk.de)
L514[10:02:33]
<
Cazzar> Desktop: fine, Android
beta: no... ?
L515[10:02:35]
<
Mimiru> @Cazzar
L516[10:02:39] <DeanIsaKitty> Is the
android app propietary?
L517[10:02:40]
<
Cazzar> Works.
L518[10:02:51]
<
Cazzar> Dean, whole thing is
technically
L519[10:03:13] <DeanIsaKitty> Ok, I said
that wrong. Is the Android app disclosed source?
L520[10:04:08]
<
Mimiru> @Mimiru
L521[10:04:15]
<
Mimiru> .. idk
L522[10:04:20]
<
Mimiru> Yes dean
L523[10:04:43]
<
Cazzar> @Mimiru what are you
running, Android?
L524[10:04:52] <Kodos> Where's the best
place to get resource packs
L525[10:05:48] <Michiyo> I have both
browser and android atm
L526[10:06:13] <Michiyo> Kodos idk... I
never use 'em.. :P Back in the day I just checked the forums, but
curse seems to have a resource pack section
L527[10:06:28] <DeanIsaKitty> Discord is
the only cross-platform voice and text chat app designed
specifically for gamers. Apparently Hammer & Chisel never heard
about Mumble. Figures
L528[10:07:25] <Michiyo> TS3 is pretty
cross platform too...
L529[10:07:50] <DeanIsaKitty> True
L530[10:07:50] <Michiyo> I do like that I
can run discord in just a browser though
L531[10:08:09] <DeanIsaKitty> Yeah, I hate
that but its a nice little feature :P
L532[10:08:14]
<
Cazzar> Dean, mumble isnt
officially on iOS.
L533[10:08:27] <Lizzy> who cares about
iOS?
L534[10:08:32] <Michiyo> iOS users?
L535[10:08:33] <DeanIsaKitty> Cazzar,
Discord is not on Linux.
L536[10:08:37]
⇨ Joins: Vexatos
(~Vexatos@p200300556E6CB7232D05F0CEFC6B98F6.dip0.t-ipconnect.de)
L537[10:08:37]
zsh sets mode: +v on Vexatos
L538[10:08:45] <DeanIsaKitty> Or did they
release a client now?
L539[10:08:56] <Cazzar> By being in a web
browser, technically it is.
L540[10:08:59] <Michiyo> Discord IS on
linux, briwser :P
L541[10:09:02] <Michiyo> browser*
L542[10:09:11] <DeanIsaKitty> *sigh*
L543[10:09:33] <DeanIsaKitty> Technically
Mumble is on iOS then too.
L544[10:09:42] <Cazzar> Because the
desktop app is just chromium.
L545[10:09:54] <Lizzy> Anyone know of any
good video conference type software that isn't skype or google
hangouts?
L546[10:09:58] <Cazzar> AFAIK, mumble isnt
a wrbapp...
L547[10:10:11] <Cazzar> Anyway, its
0310
L549[10:10:48] <Lizzy> also i like how the
discord comparison page doesn't even list mumble
L550[10:10:56] <Cazzar> The seller makes
me sketchy.
L551[10:11:19] <DeanIsaKitty> Lizzy:
Jitsi. XMPP+Jingle+FOSS
L552[10:11:31] <DeanIsaKitty> Cazzar: so?
Its still the official client.
L553[10:11:32] <Lizzy> hmm
L554[10:12:03] <gDroid2002> mumble isn't
very gamer-y
L555[10:12:07] <DeanIsaKitty> Lizzy: Also
actually encrypted. Not like Skype, good crypto.
L556[10:12:11] <DeanIsaKitty> gDroid2002:
How so>
L557[10:12:13] <DeanIsaKitty> *?
L558[10:12:19] <gDroid2002> it also makes
my computer completely crash at random
L559[10:12:21] <Cazzar> [03:10:10]
<+Cazzar> Anyway, its 0310
L560[10:12:35] <Cazzar> Aka, idgaf,
sleep.
L561[10:12:41] <gDroid2002> it's no more
gamery than any other voice server
L562[10:12:54] <DeanIsaKitty> gDroid2002:
And Discord is specifically gamery how?
L563[10:12:55] <gDroid2002> vent is the
only really game oriented one outside of Discord
L564[10:13:01] <Lizzy> DeanIsaKitty, skype
was out the window straight away, fuck that quality
L565[10:13:19] <Cazzar> Skype's codec is
shit.
L566[10:13:24] <gDroid2002> because it's
designed to be light and not interfere and it has a games friendly
overly and shows what you're playing?
L567[10:13:39] <gDroid2002> s/Skype's
codec/Skype/
L568[10:13:39] <MichiBot> <Cazzar>
Skype is shit.
L569[10:13:44] <DeanIsaKitty> gDroid2002:
So does Mumble.
L570[10:13:56] <gDroid2002> DeanIsaKitty,
Sure, but it's a complete afterthought
L571[10:14:06] <DeanIsaKitty> Lizzy:
Technically Tox has video&audio too. I never tried that
though.
L572[10:14:09] <DeanIsaKitty> gDroid2002:
Nah
L573[10:14:10] <Cazzar> gDroid2002 I only
use it as a chat with certain people.
L574[10:14:15] <gDroid2002> have you used
Discord's overlay?
L575[10:14:29] <gDroid2002> it's not just
a static "who is talking" thing
L576[10:14:56] <Lizzy> discord doesn't
have an overlay when i use it, also i don't like overlays, they
either get annoying or don't fit in with the other bits on the
screens
L577[10:15:01] <Cazzar> The discord
overlay broke my r6s
L578[10:15:02] <gDroid2002> you can click
on it to do various different things without ever leaving your
game
L579[10:15:06] <gDroid2002> the overlay is
beta
L580[10:15:20] <Cazzar> Lizzy konami code
then check options.
L581[10:15:26] <gDroid2002> you can access
it by typing the Konami code into chat with the chat box
deselected
L582[10:15:36] <Lizzy> Cazzar, ?
L583[10:15:45] <DeanIsaKitty> gDroid2002:
Mumble was designed with gaming very specifically in mind. Not as
an afterthought. :)
L584[10:16:04] <Cazzar> Should hear a
chime, its how you activate access to the overlay
L585[10:16:12] <gDroid2002> DeanIsaKitty,
I'd believe that if it was any kind of a quality product
L586[10:16:13] <Kodos> MFW I make a moving
engine with sticky pistons, redstone blocks, and slime blocks on
accident
L587[10:16:21] <gDroid2002> entire PC
lockups aren't acceptable
L588[10:16:48] <Lizzy> gDroid2002, i have
never had issues with mumble
L589[10:17:13] <gDroid2002> I'm sure I
could list things you've had problems with that I haven't too
L590[10:17:21] <DeanIsaKitty> gDroid2002:
Mumble is pretty high quality. I want to see you putting out
anything nearly as good. :)
L591[10:17:33] <gDroid2002> DeanIsaKitty,
that's a fallacy
L592[10:17:37] ***
Cranium[Away] is now known as Cranium
L593[10:17:46] <DeanIsaKitty> gDroid2002:
"it doesn't work for me so its bad" is too
L594[10:18:03] <gDroid2002> Er, it doesn't
work for a lot of people I know
L595[10:18:19] <gDroid2002> that's the
specific issue I have, but they aren't interested in fixing
it
L596[10:18:27] <DeanIsaKitty> gDroid2002:
Lemme guess, all programmers with very good knowledge of how a
computer works and using Linux?
L597[10:18:37] <gDroid2002> No?
L598[10:18:46] <DeanIsaKitty> That was
sarcastic.
L600[10:19:02] <gDroid2002> What was the
point of saying it then? ._.
L601[10:19:41] <DeanIsaKitty> gDroid2002:
What if I would tell you that Mumble was not designed with Windows
in Mind?
L602[10:20:04] <DeanIsaKitty> And most of
its devs hate Redmont and what comes out of it with a
passion?
L603[10:20:05] <gDroid2002> That kinda
goes without saying given the window toolkit it seems to be
using
L604[10:20:16] <Cazzar> Wait
L605[10:20:25] <DeanIsaKitty> gDroid2002:
Oh no, they are using a cross platform toolkit! THey MUST hate
windows!
L606[10:20:30] <DeanIsaKitty> WTF are you
talking about?
L607[10:20:35] <Cazzar> Designed for
gamers, wasn't designed with windows in mind
L608[10:20:46] <Cazzar> Logical
contractions anyone?
L609[10:20:48] <DeanIsaKitty> Cazzar:
There are games that run on Linux. :)
L610[10:20:59] <Cazzar> No fucking
shit
L611[10:21:10] <gDroid2002> yeah, there
were probably like 2 games that were worth playing on Linux when
mumble came out
L612[10:21:10] <DeanIsaKitty> No, really.
For once I'm not even joking
L613[10:21:18] <Cazzar> But the Major
marketshare for games, is windows.
L614[10:21:39] <gDroid2002> also not
liking windows isn't a good reason to ignore your windows
userbase
L615[10:21:55] <DeanIsaKitty> Cazzar: That
is true. It does work very well under Windows tbh if you poke
around the config a little bit ;)
L616[10:21:58] <gDroid2002> you ported the
thing or deliberately wrote cross-platform
L617[10:22:22] <DeanIsaKitty> gDroid2002:
Not wanting to deal with shit is a good reason to avoid shit.
L618[10:22:56] <gDroid2002> they lost the
use of that point when they decided to build windows binaries
L619[10:23:16] <Cazzar> DeanIsaKitty even
as someone who would run Linux sometimes, if I have to be poking in
configs to get a VoIP application to work well, I'll move to
another system which is less hassle.
L620[10:23:23]
Lizzy sets mode: -o on Lizzy
L621[10:23:23] <DeanIsaKitty> gDroid2002:
Do you know about the thing called config file? Mumble has
one.
L622[10:23:36] <Lizzy> going to detach,
poke me when the conversation changes
L623[10:23:36] <DeanIsaKitty> Cazzar: You
are free to do so
L624[10:23:37] <gDroid2002> Why should I
need to touch a config file?
L625[10:23:48] <DeanIsaKitty> gDroid2002:
Why not?
L626[10:23:50] <gDroid2002> it's a gui
client with its own settings dialogs
L627[10:23:57] <DeanIsaKitty> gDroid2002:
You can use that too.
L628[10:24:02] <DeanIsaKitty> Has all the
options you need ;)
L629[10:24:15] <gDroid2002> so what was
your point about the config file?
L630[10:24:25] <Cazzar> Anyway, this
conversation is just becoming arguments about personal bias.
L631[10:24:36] <DeanIsaKitty> Cazzar: It
was from the very start :D
L632[10:24:52] <gDroid2002> I don't
dislike mumble, in fact I go out of my way to support it in
Ultros
L633[10:24:58] <DeanIsaKitty> gDroid2002:
a settings dialog is a frontend for a config file, at least in this
case :P
L634[10:25:20] <gDroid2002> okay, well
"edit the settings lol" didn't fix the hangs for me
L635[10:25:21] <Cazzar> Yes, and this is
where I am calling the line for me. So, no more responses
here.
L636[10:25:37] <DeanIsaKitty> gDroid2002:
ultros?
L637[10:25:45] <DeanIsaKitty> Cazzar:
Cool, you have fun the :P
L638[10:25:48] <gDroid2002> multi-protocol
bot project
L639[10:26:00]
<
Pwootage> Mumble is ...meh
L641[10:26:12] <gDroid2002> ultros.io,
yeah
L642[10:26:29] <DeanIsaKitty> Ah,
cool
L643[10:26:50]
<
Pwootage> Also I apparently was
replying to a message from 10 minutes ago, sorry :P hadn't
reconnected yet apparently
L644[10:27:03] <DeanIsaKitty> Welp, goona
look at the code, maybe you even did something at the level of
mumble. Which has a shit codebase tbh
L645[10:27:11] <DeanIsaKitty> Pwootage:
np
L646[10:27:21] <gDroid2002> We wrote a
twisted protocol around their pb2 file
L647[10:27:32] <gDroid2002> it's still a
mess to work with though, and nothing is documented
L648[10:27:43] <gDroid2002> we don't yet
have voice support
L649[10:28:30]
<
Pwootage> Tbh discord is the only
decent-looking voice/text chat I've ever used... everything else is
incredibly ugly
L650[10:28:44] <gDroid2002> Eh, I prefer
function over form
L651[10:28:46]
<
Pwootage> (even most IRC clients
are ugly)
L652[10:28:50] <gDroid2002> I like that
Discord is centralized
L653[10:29:07] <gDroid2002> just install
the client and login and all your servers, messages, etc are
there
L654[10:29:10] <DeanIsaKitty> I hate that
part the most. SPF are a bad thing <.<
L655[10:29:21]
⇨ Joins: Keanu73
(~Keanu73@host-89-240-96-146.as13285.net)
L656[10:29:37] <gDroid2002> single page
frameworks?
L657[10:29:42] <gDroid2002> not a fan
either
L658[10:30:08] <DeanIsaKitty> Single
points of failure
L659[10:30:18] <DeanIsaKitty> but single
page apps are bad too
L660[10:30:20] <gDroid2002> Ah, I
see
L661[10:30:25] ***
alfw|Off is now known as alfw
L662[10:30:35] <gDroid2002> I used to
agree but it's so inconvenient to host everything yourself
L663[10:30:43] <gDroid2002> and not
necessarily cheap
L664[10:30:55] <DeanIsaKitty> gDroid2002:
You don't have to. Do you host your own IRC server?
L665[10:30:56]
<
Pwootage> It's not a single point
of failure unless you write bad code or use one server (and afaik
discord does neither)
L666[10:31:05] <gDroid2002> I did up until
October, yes
L667[10:31:09] <DeanIsaKitty> OR your own
mail? or your own Jabber? If yes, you dont need too
L668[10:31:15] <DeanIsaKitty> its still
decentralized
L669[10:31:18]
<
Pwootage> I would like to point out
most IRC servers are explicitly designed to be hard to set up,
which is dumb
L670[10:31:18] <Michiyo> I do all of those
things.
L671[10:31:19] <Michiyo> :P
L672[10:31:21] <gDroid2002> I do host my
own mail, yes
L673[10:31:24] <gDroid2002> and I do need
to
L674[10:31:29] <DeanIsaKitty> Pwootage: It
still is, shut up <.<
L675[10:31:39] <gDroid2002> you want to
point me to a decent free mail provider that lets me use my own
domain and isn't in Russia or China?
L676[10:31:42] <gDroid2002> :P
L677[10:31:49] <DeanIsaKitty> gDroid2002:
Thats not the point
L678[10:31:58] <gDroid2002> what is the
Pont?
L679[10:32:01] <gDroid2002> point *
L680[10:32:05] <Michiyo> ^?
L681[10:32:12]
<
Pwootage> gDroid: preeeety sure
gmail works for that
L682[10:32:18] <gDroid2002> not free
L683[10:32:21] <Michiyo> ^.
L684[10:32:27]
<
Pwootage> Uh, it was last I
checked
L685[10:32:30]
<
Pwootage> hm
L686[10:32:30] <gDroid2002> used to be,
but they started charging for it
L687[10:32:32] <Michiyo> it USED to be
free, it isn't anymore.
L688[10:32:39] <gDroid2002> Google Apps
isn't free anymore
L689[10:32:43] <DeanIsaKitty> That you can
have decentralized stuff without hosting it yourself.
L690[10:33:07] <gDroid2002> Well, sure,
esper has multiple IRC servers
L691[10:33:16] <gDroid2002> Discord has a
metric ton of operational servers
L692[10:33:18]
<
Pwootage> Hosting stuff yourself is
more centralized than "centralized" SAAS, I would like to
point out
L693[10:33:38] <gDroid2002> But that's
still centralized somehow?
L694[10:34:10] <gDroid2002> That's what
you implied when I mentioned Discord anyway :P
L695[10:34:32]
<
Pwootage> I never said discord was
centralized, did I?
L696[10:34:35] <DeanIsaKitty> gDroid2002:
Do you know that there is no one central server that everybody has
to sync to? How failure resistant is the whole network? Can you
split off an own subnet if you want?
L697[10:34:46] <Inari> but discord is
centralized
L698[10:34:50]
⇨ Joins: surferconor425|Cloud
(uid77899@id-77899.tooting.irccloud.com)
L699[10:34:57]
<
Pwootage> Centralized, not single
point of failure
L700[10:35:12] <gDroid2002> Discord as a
service is centralized, but it's not like they aren't distributed
over their own network
L701[10:35:22] <Inari> ya :P
L702[10:35:25] <Inari> but noone cares
abotu that
L703[10:35:25] <Inari> :D
L704[10:35:36] <Evey> Single point of
failure doesn't mean just the servers that run it
L705[10:35:39]
<
Pwootage> That's the point of SaaS,
it's supposed to just work
L706[10:36:14] <gDroid2002> I know that
some people are afraid of anything they don't host since they think
every company will suddenly shut down and disappear with their
data
L707[10:36:16] <Kodos> No one cares about
this entire conversation
L708[10:36:20] <gDroid2002> but I'm
assuming that isn't what this is about
L709[10:36:22] <DeanIsaKitty> Kodos:
Correct
L710[10:36:33]
<
Pwootage> Yeah I don't think the
people in this conversation really care :P (I don't)
L711[10:36:44] <DeanIsaKitty> gDroid2002:
No, actually it is.
L712[10:36:54] <Corded> *
Pwootage
continues his search for an embeddable x86 emulator
L713[10:36:57] <gDroid2002> That sounds a
little paranoid if you don't mind me saying
L714[10:37:12] <DeanIsaKitty> gDroid2002:
ffs, check my hostname if You didn't get it already <.<
L715[10:37:15] <gDroid2002> It happens but
it's hardly a certainty
L716[10:37:36] <Evey> but it's still a
possibility
L717[10:37:39] <DeanIsaKitty> gDroid2002:
Its really easy to take down the discord network in comparison to
lets say the XMPP network
L718[10:37:46] ⇦
Quits: sciguyryan (~sciguyrya@37.48.86.178) (Remote host closed the
connection)
L719[10:37:53] <gDroid2002> you can't live
based on what /might/ happen
L720[10:38:04] <gDroid2002> I might wake
up and have a meteor fall on my head
L721[10:38:20] <Kodos> I might wake up and
find that someone actually made rackmounted RAIDs
L722[10:38:32] <DeanIsaKitty> gDroid2002:
But you can use failure proof tech thats just as well as not
failure proof tech that is also operated by one company inside the
influence of all three letter services.
L723[10:38:40] <DeanIsaKitty> just as
good
L724[10:38:50] <gDroid2002> I don't
follow
L725[10:38:59] <gDroid2002> Do you mean
like how anyone can start a reddit close?
L726[10:39:05] <gDroid2002> clone *
L727[10:39:10] <DeanIsaKitty> Uhm,
no
L728[10:39:34] <DeanIsaKitty> If you're an
three letter service and you decide Facebook needs to go, what
would you do?
L729[10:39:51] <gDroid2002> firstly,
what's a three letter service?
L730[10:40:03] <Inari> become an 8 letter
service
L731[10:40:05] <Inari> like facebook
L732[10:40:09] <gDroid2002> lol
L733[10:40:11] <DeanIsaKitty> gDroid2002:
CIA/FBI/NSA etc :P
L734[10:40:17] <Inari> oh
L735[10:40:19] <gDroid2002> oh
L736[10:40:20] <Inari> i thouhgt
ICQ/MSN/AIM
L737[10:40:21] <Inari> :p
L738[10:40:24] <gDroid2002> you mean like
blocking?
L739[10:40:39] <gDroid2002> that's
pointless though, people would leave my country if I blocked
Facebook
L740[10:40:52] <gDroid2002> or find a way
around it
L741[10:41:05] <DeanIsaKitty> gDroid2002:
You're the CIA. You can just tell Facebook to stop existing. its a
thing, you know?
L742[10:41:25] <gDroid2002> it's not as
simple as that, but I can hypothesize
L743[10:41:31] <DeanIsaKitty> gDroid2002:
Uhm...
L744[10:41:38] <Lizzy> That;s what the
government want's you to think
L745[10:41:42] <DeanIsaKitty> actually it
is. thats the problem we have with the NSA
L746[10:41:42] <Lizzy> !op
L747[10:41:42]
zsh sets mode: +o on Lizzy
L748[10:41:50] <Inari> DeanIsaKitty: in
theory you can
L749[10:42:00] <gDroid2002> that's the
problem you have with the NSA /for companies in the US/
L750[10:42:02] <Inari> in practice,
that'll not do well on the reelection
L751[10:42:05] <DeanIsaKitty> Inari: The
NSA made everybody they code do whatever they wanted
L752[10:42:15] <Inari> yeah
L753[10:42:19] <DeanIsaKitty> gDroid2002:
where is facebook again?
L754[10:42:20] <Inari> cause people dont
care about the code :P
L755[10:42:24] <Inari> they do care about
using facebook
L756[10:42:33]
⇨ Joins: Mettaton_Fab
(~mettaton_@p54BCB4FE.dip0.t-ipconnect.de)
L757[10:42:36] <Kodos> Hollly fuck
guys
L758[10:42:37] <gDroid2002> Facebook has
stuff all over the world, they can just shut down the US
datacentres2and move
L759[10:42:48] <DeanIsaKitty> gDroid2002:
And do yourself a favour and check where discord is hosted.
L760[10:42:56] <DeanIsaKitty> gDroid2002:
They can and they do.
L761[10:43:08] ***
cbcercas is now known as cbcercas|AFK
L762[10:43:18] <gDroid2002> Discord also
has a worldwide network
L763[10:43:19] <DeanIsaKitty> Kodos:
:3
L764[10:43:36] <gDroid2002> although if it
didn't I assume they'd just migrate anyway
L765[10:43:38] <DeanIsaKitty> gDroid2002:
the NSA can pressure an US based company to do anything. So that
point is sadly not valid
L766[10:43:39] <Inari> time to have tea
and eat blood capsules
L767[10:43:41]
<
Pwootage> I wonder if I could use
KVM to embed x86 in OC
L768[10:43:43] <Inari> and im all out of
blood apsules
L769[10:43:45] <Kodos> I'll be back later,
after you guys are done with the pointless drivel and banter
L770[10:43:51] ⇦
Quits: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net) (Quit: Web
client closed)
L771[10:43:59] <gDroid2002> Kodos, but
we're on IRC, it's the lifeblood maaaab
L772[10:44:01] <DeanIsaKitty> We got the
first one out :D
L773[10:44:01] <gDroid2002> maaaan*
L774[10:44:18] <Inari> DeanIsaKitty= >
DIK => three letter service
L775[10:44:37] <gDroid2002> =>
innuendo
L776[10:44:39] <DeanIsaKitty> Inari:
ILLUMINATI!!!
L777[10:44:40] <gDroid2002> :3
L778[10:44:45] <Inari> lol
L779[10:44:50] <Mettaton_Fab> I am
obsessed with Undertale
L780[10:44:58] <DeanIsaKitty>
Mettaton_Fab: Wrong channel
L781[10:45:02] *
gDroid2002 hides and hisses
L782[10:45:06] <Inari> i dont get the
undertale hype
L783[10:45:18] <gDroid2002> I get it, I
just disagree
L784[10:45:22] *
Lizzy wants to smash her face into the ground after falling off a
cliff
L785[10:45:23] <Mettaton_Fab> where is the
.cfg file of oc again?
L786[10:45:25] <DeanIsaKitty> gDroid2002:
To make this short because I'm getting bored: I want to see you -
or the NSA - take down diaspora. :P
L787[10:45:27] <Inari> its nice, but thats
kind of it
L788[10:45:40] <gDroid2002> DeanIsaKitty,
diaspora is great, but nobody uses it
L789[10:45:42] <Temia> In
config/opencomputers.cfg
L790[10:45:44] <Mettaton_Fab> screen res
too high
L791[10:45:45] <Inari> whats a
diaspora
L792[10:45:53] <DeanIsaKitty> Inari:
Facebook in decentralized :P
L793[10:45:56] <Temia> You can change that
in-game
L794[10:46:03] <Inari> ah, i dont care
about facebook
L795[10:46:04] <gDroid2002> It's a social
network made up of like.. servers people host everywhere
L796[10:46:06] *
Inari moves on
L797[10:46:11] <Temia> Run 'resolution 80
25'
L798[10:46:20] <Mettaton_Fab> how can i
change it in-game?
L799[10:46:30] <DeanIsaKitty> Inari:
that's a good principle :D
L800[10:46:33] <Lizzy> Mettaton_Fab, use
the resoloution program
L801[10:46:42] <Lizzy> like what Temia
said
L802[10:46:47] <DeanIsaKitty>
Mettaton_Fab: Listen to what Temia said
L803[10:46:51] <Inari> i think i missed
the social media/network hypetrain
L804[10:46:52] <Mettaton_Fab> but...
how?
L805[10:46:56] <Temia> Again
L806[10:46:56] <Inari> andn ow its way too
late to jump on
L807[10:47:06] <Temia> In OpenOS, run
'resolution 80 25'
L808[10:47:14] <gDroid2002> I don't care
too much about Facebook either but it's useful
L809[10:47:15] <Mettaton_Fab> oh...
L810[10:47:28] <Mettaton_Fab> i must try
that now
L811[10:47:32] <Inari> do it before you
upset the Temia
L812[10:47:36] <Temia> ...No offense but
the way you speak makes you seem more like your cousin. `-`
L813[10:47:41] ⇦
Quits: Mettaton_Fab (~mettaton_@p54BCB4FE.dip0.t-ipconnect.de)
(Remote host closed the connection)
L814[10:47:53] <Inari> what xD
L815[10:47:58] <DeanIsaKitty> Temia: How
do you know Mettatons cousin? <.<
L816[10:48:01] *
Lizzy curls back up into her ball
L817[10:48:02] <Inari> that instaquit
thouhg
L818[10:48:19]
⇨ Joins: Mettton_Fab
(~mettton_f@p54BCB4FE.dip0.t-ipconnect.de)
L819[10:48:30] <Temia> It's an Undertale
joke. `o`
L820[10:48:43] <Mettton_Fab> what
undertale joke?
L821[10:48:48] <Temia> <Temia> ...No
offense but the way you speak makes you seem more like your cousin.
`-`
L822[10:48:48] <Daiyousei> memetale is the
new fnaf
L823[10:48:51] ***
cbcercas|AFK is now known as cbcercas
L824[10:48:53] <Temia> I posted that right
before you left.
L825[10:49:32] <Mettton_Fab> anyone wanna
read a undertale joke?
L826[10:49:34] <gDroid2002> Undertale
looks like an excessively mediocre game
L827[10:49:38] <Inari> i wanna play
quadrilateral cowboy :<
L828[10:49:40] <gDroid2002> I don't mind
it though
L829[10:49:45] <gDroid2002> but I do mind
the fandom
L830[10:49:57] <gDroid2002> as a brony,
that probably makes me a hypocrite, but whatever
L831[10:49:59] <DeanIsaKitty> I want to
play No mans sky :<
L832[10:50:04] <DeanIsaKitty> gDroid2002:
Nah
L833[10:50:08] <Mettton_Fab> like, the
people that make music with dogs.
L834[10:50:17] <Inari> well being a
hyprcite only matters if you're trying to justify an argument with
it
L835[10:50:18] *
Lizzy doesn't want to play this "life" game
anymore
L836[10:50:24] <Mettton_Fab> undertale
music
L837[10:50:34] <DeanIsaKitty> gDroid2002:
It makes you an idiot and a browny, but not a hypocrite
L838[10:50:37] <Inari> i want to play
diablo 2
L839[10:50:56] <Daiyousei> undertale is an
alright game
L840[10:50:56] <gDroid2002> bronies aren't
all bad maaaaan
L841[10:50:57] <Mettton_Fab> isnt that
very old?
L842[10:50:58] <Daiyousei> but has a
shitty fanbase
L843[10:50:58] *
vifino picks up Lizzy and carries her around
L844[10:50:59] <gDroid2002> :P
L846[10:51:02] <MichiBot> DeanIsaKitty:
CARTOON HORSE PROGRAM!! | length:
3m 6s | Likes:
34098 Dislikes:
1289 Views:
1543621 | by
Krunkidile
L847[10:51:15] <gDroid2002> can't watch
right now, will when I get home
L848[10:51:50] <Mettton_Fab> wait, lemme
try
L849[10:52:04] <gDroid2002> I dunno, I
can't complain about the Undertale people too much because I know
they're going through the brony/furry thing of very loud
objectionable outliers
L850[10:52:14] <DeanIsaKitty> I like it
when people don't see the name Krunkidile and just go "no,
FUCK THIS I'M OUT" but instead take me seriously :3
L851[10:52:27]
⇨ Joins: MajGenRelativity
(~Hi@2600:1000:b013:9b6c:0:48:c76b:9801)
L852[10:52:30] <DeanIsaKitty> furry has
that too? :D
L853[10:52:42] <gDroid2002> Furry was the
first community to showcase that iirc
L854[10:52:57] <DeanIsaKitty> Well, I
don't care about either, so meh
L855[10:52:59] <Inari> gDroid2002: do you
support those people?
L856[10:53:05] <gDroid2002> most fandoms
get a bad name because of the annoying loud people
L857[10:53:08] <Inari> or rather
L858[10:53:10] <Temia> gDroid, I haven't
heard you really call attention to your being a brony so... Not so
hypocritical?
L859[10:53:14] <gDroid2002> Inari, Furries
or annoying people?
L860[10:53:16] <Inari> do you think its
good that they are loud and annoying?
L861[10:53:26] <DeanIsaKitty> gDroid2002:
Whats the difference again?
L862[10:53:35] <Lizzy> from my experiences
in person with a furry, they're fucking weird
L863[10:53:44] <Inari> Lizzy: lol
L864[10:53:47] <gDroid2002> Most furries
are pretty normal
L865[10:53:49] *
Temia cough.
L866[10:53:52] <gDroid2002> ._.
L867[10:53:53] <Michiyo> ...
L868[10:53:58] *
DeanIsaKitty pokes Temia
L869[10:54:02] *
Temia moos. o-o
L870[10:54:02] <gDroid2002> I know several
IRL
L871[10:54:05] <Mettton_Fab> the artwork
is only NSFW
L872[10:54:05] *
Inari temias DeanIsaKitty
L873[10:54:05] <DeanIsaKitty> Nah, its
still weird
L874[10:54:12] *
DeanIsaKitty Inaris Inari
L875[10:54:21] *
Inari Inaris Inari's Inari
L876[10:54:25] <Temia> Don't feed the
fox.
L877[10:54:27] <gDroid2002> Mettton_Fab,
?
L878[10:54:28] <Temia> Or its food.
L879[10:54:32] <Lizzy> they're probably
not that bad but the one i'm refering to is weird
L880[10:54:43] <gDroid2002> Well, it's
like any fandom really
L881[10:54:44] <DeanIsaKitty> Temia: Your
bf is a fox? :P
L882[10:54:47] <Mettton_Fab> wot?
L883[10:54:47] <Temia> No.
L884[10:54:55] ⇦
Quits: MajGenRelativity (~Hi@2600:1000:b013:9b6c:0:48:c76b:9801)
(Client Quit)
L885[10:54:56] <DeanIsaKitty> Lizzy:
Temia? :P
L886[10:55:02] <gDroid2002> you hear about
the weird ones that are loud, annoying, or have strange
fetishes
L887[10:55:04] <Temia> What. D:<
L888[10:55:05] <DeanIsaKitty> MGR did the
right thing :D
L889[10:55:12] <DeanIsaKitty> gDroid2002:
Maybe?
L890[10:55:16] <Lizzy> DeanIsaKitty, no,
old real life friend
L891[10:55:18] <DeanIsaKitty> Temia!
\o/
L892[10:55:20] <Lizzy> well
L893[10:55:22] <gDroid2002> because the
normal ones aren't interested in going LOOK AT ME, I'M A
FURRY
L894[10:55:26] <Temia> Dean Imma
headbuttchu.
L895[10:55:28] <Lizzy> someone i went to
school with
L896[10:55:38] <DeanIsaKitty> Temia: Ok
<3
L897[10:55:57] <DeanIsaKitty> LOOK AT HIM
gDroid2002 IS A BROWNY!
L898[10:56:02] <Inari> what did MGR
do?
L899[10:56:06] <gDroid2002> Lol
L900[10:56:12] <Mettton_Fab> Oh!
Brownies!
L901[10:56:18] <DeanIsaKitty> Inari: Leave
instantly >:P
L902[10:56:25] <Inari> what did he
leave?
L903[10:56:33] <gDroid2002> Don't get me
wrong, I've seen the "bad" mlp stuff too
L904[10:56:35] <DeanIsaKitty> #oc
L905[10:56:43] <Inari> ah :P
L906[10:56:43] <DeanIsaKitty> gDroid2002:
mlp? what now?
L907[10:56:49] <gDroid2002> there used to
be a #clop on esper (NSFW if it still exists)
L908[10:56:49] <DeanIsaKitty> Do i want to
know?
L909[10:56:56] <gDroid2002> DeanIsaKitty,
my little pony
L910[10:57:05] <DeanIsaKitty> Ah
L911[10:57:17] <Inari> most people mind
dfc more than mlp i think
L912[10:57:22] ⇦
Quits: Mettton_Fab (~mettton_f@p54BCB4FE.dip0.t-ipconnect.de)
(Remote host closed the connection)
L913[10:57:25] <gDroid2002> dfc?
L914[10:57:31] <Inari> delicious flat
chest
L915[10:57:38] <gDroid2002> Haven't seen
that around
L916[10:57:49]
⇨ Joins: Mettaton_Fab
(~mettaton_@p54BCB4FE.dip0.t-ipconnect.de)
L917[10:57:58] <Inari> you probably havent
been around a lot of loli lovers
L918[10:57:59] <Lizzy> what the fuck is
this topic.....
L919[10:58:04] <gDroid2002> I know a
few
L920[10:58:07] <Mettaton_Fab> loli!
L921[10:58:10] <gDroid2002> But not many,
yeah
L922[10:58:12] <gDroid2002> xD
L923[10:58:15] <Temia> welp.
L924[10:58:21] <gDroid2002> Not my thing
really
L925[10:58:26] <Inari> heh even TV TRopes
mentions it
L926[10:58:30] <Temia> We're quickly
hitting rock bottom with this topic, yeah.
L927[10:58:46] <Mettaton_Fab> how about
temmie
L928[10:58:53] <Temia> Die in a
fire.
L929[10:58:58] <gDroid2002> yeah
L930[10:59:03] <DeanIsaKitty>
temmie?
L931[10:59:03] <gDroid2002> so about that
OC
L932[10:59:04] <Lizzy> If I wasn't feeling
so shit, I'd be making innuendos
L933[10:59:12] <Mettaton_Fab> Not Temia,
Temmie
L934[10:59:12] <Temia> Dean, no.
L935[10:59:17] <Temia> ...
L936[10:59:20] <Inari> whats a
temmie
L937[10:59:21] <Temia> Finally someone
gets it:T
L938[10:59:27] <Mettaton_Fab> There is a
Temmie called Bob
L939[10:59:29] <Temia> s/it:T/it :T
L940[10:59:31] <MichiBot> <Temia>
Finally someone gets it :T
L941[10:59:43] <DeanIsaKitty> Temia: Ok,
I'll trust your judgement :P
L942[10:59:46] <Inari> ":T"
<- temia holding a hammer in her mouth
L943[10:59:50] <gDroid2002> lol
L944[10:59:51] <Temia> No
L945[10:59:57] <Temia> puffed cheek
L946[11:00:00] <gDroid2002> Oh, if you
think this is weird
L947[11:00:01] <Temia> :T
L948[11:00:06] <Inari> arent those usually
rounded
L949[11:00:07] <DeanIsaKitty> :I
L950[11:00:16] <gDroid2002> you should see
what the remaining members of my old community talk about at night
on Discord
L951[11:00:22] <Temia> I AM WORKING WITH A
LIMITED MEDIUM >:T
L952[11:00:31] *
Temia gnaws on
L953[11:00:32] <Inari> time to move to
discord
L954[11:00:34] <gDroid2002> we called it
"late night Archives" for years
L955[11:00:37] <DeanIsaKitty> Temia: But
your mind is endless~
L956[11:00:55] <Temia> ASCII doesn't give
a shit about my mind
L957[11:01:08] <gDroid2002> oh, that
reminds me somehow
L958[11:01:10] <Temia> And I can't be
arsed to reach for the AltGr key
L959[11:01:11] <Mettaton_Fab> It fills you
with Detemmienation
L961[11:01:18] <Temia> DROP DEAD
L962[11:01:18] <Temia> D:<
L963[11:01:21] <DeanIsaKitty> Temia: Lazy
ass bitch
L964[11:01:24] <Inari> "SIGNWRITING
CHEEKS PUFFED" supposedly
L965[11:01:27] <gDroid2002> has anyone
written like a webserver/client type thing for OC yet?
L966[11:01:50] <gDroid2002> Also DNS
L967[11:01:55] <DeanIsaKitty>
CompanionCube!
L968[11:02:05] <gDroid2002> Oh,
figures
L969[11:02:09] <gDroid2002> he was one of
mine actually
L970[11:02:10] <Inari> gDroid2002: dunno,
write an MC server?
L971[11:02:10] <gDroid2002> lol
L972[11:02:26] <gDroid2002> people from my
community I mean
L973[11:04:51] <Mettaton_Fab> and people
from the undwertale community
L974[11:05:21]
⇨ Joins: Temportalist
(uid37180@id-37180.charlton.irccloud.com)
L975[11:05:43] <Temia> Guh. My laptop's
pointer is on the fritz. I guess this means I should actually get
out of bed and do things from my workstation.
L976[11:06:02] <gDroid2002> Mettaton_Fab,
you sound like a person that browses undertail
L977[11:06:08]
⇨ Joins: Tiktalik
(~tiktalik@2607:fcd0:daaa:1400:f::4)
L978[11:06:21] <Mettaton_Fab> nope, only
undertale
L979[11:06:34] <gDroid2002> mhm. for the
plot, eh?
L980[11:06:38] <gDroid2002> :P
L981[11:06:44]
⇨ Joins: MajGenRelativity
(~Hi@2600:1000:b031:98b9:0:48:c76c:9101)
L982[11:06:54] <Tiktalik> wozzis about
undertale
L983[11:06:57] <Mettaton_Fab> undertail is
not worth the interwebs
L984[11:07:09] <gDroid2002> til,
L985[11:07:11] <gDroid2002> er
L986[11:07:14] <gDroid2002> no,
SwiftKey
L987[11:07:24] <gDroid2002> Tiktalik, just
joking about the NSFW
L988[11:07:44] ***
Cranium is now known as Cranium[Away]
L989[11:07:51] <Tiktalik> Mettaton_Fab:
but you have to admit mettaton has hot hot legs, right?
L990[11:08:18] <Mettaton_Fab> "who
needs arms when you have legs like these?"
L991[11:08:51] <Tiktalik> hot leg, hot hot
leg
L992[11:08:54] <Tiktalik> leg so hot u fry
an egg
L993[11:09:09] ***
Cranium[Away] is now known as Cranium
L994[11:09:37] <MajGenRelativity> Hi
L995[11:09:57] <Mettaton_Fab> search for
cooking with undyne on youtube
L996[11:10:16] <MajGenRelativity> Do you
mean cooking with liquid nitrogen?
L997[11:10:24] <MajGenRelativity> Because
that is the best way to cook
L998[11:10:33] <Mettaton_Fab> nope,
cooking with brutality
L999[11:10:39] <MajGenRelativity>
Idk
L1000[11:10:52] <MajGenRelativity>
Nitrogen is pretty awesome
L1001[11:11:03] <MajGenRelativity> Flash
freeze, then hit the thing with a hammer
L1002[11:11:13] <MajGenRelativity>
Instant bite sized food
L1003[11:11:40] <Mettaton_Fab> wait,
undyne + liquid nitrogen = Fun
L1004[11:11:50] <MajGenRelativity> What
is undyne
L1005[11:12:11] <Temia> Angry fish.
L1006[11:12:22] *
MajGenRelativity throws cows at Temia
L1007[11:12:46] <MajGenRelativity> I will
have to look undyne up when I return home
L1008[11:13:05] <Vexatos>
MajGenRelativity, but liquid oxygen is way cooler
L1009[11:13:08] <Vexatos> well, not
literally
L1010[11:13:16] <Vexatos> actually it's
about 10 °C warmer
L1011[11:13:18] <MajGenRelativity> Liquid
helium
L1012[11:13:24] <Vexatos> But
figuratively
L1013[11:13:25] <Vexatos> it's
cooler
L1014[11:13:28] <Vexatos> because it's
blue
L1015[11:13:30] <Vexatos> bright
blue
L1016[11:13:31] *
Temia catches her sisters and lets them roam \o/
L1017[11:13:32] <Vexatos> :O
L1018[11:13:49] <MajGenRelativity>
Superfluid liquid heliun
L1019[11:13:55] <MajGenRelativity>
Helium*
L1020[11:14:00] *
Mettaton_Fab eats food made by undyne
L1021[11:14:00] *
DeanIsaKitty throws a bull at Temia
L1022[11:14:10] <Vexatos>
MajGenRelativity, oxygen > any other gas
L1023[11:14:11] <Temia> I HAVE A
BOYFRIEND D:
L1024[11:14:13] <Vexatos> because
blue
L1025[11:14:14] *
Temia smacks it away
L1026[11:14:15] *
MajGenRelativity throws more cows than Temia can catch
L1027[11:14:19] <Vexatos> any other
liquid gas*
L1028[11:14:31] <DeanIsaKitty> Temia: Do
you fuck every bull that you meet?? ffs lady 0.0
L1029[11:14:37] <Temia> No, as in
L1030[11:14:41] <MajGenRelativity>
Vexatos, true
L1031[11:14:41] <Temia> I have a
boyfriend already :T
L1032[11:14:55] <Temia> That isn't the
bull
L1033[11:15:00] <DeanIsaKitty> Temia: It
wasn't even a beautiful bull! girl get some standards!
L1034[11:15:11] <Temia> screw you, you
furry :T
L1035[11:15:11]
⇨ Joins: sciguyryan (~sciguyrya@37.48.80.241)
L1036[11:15:21]
<
Pwootage> *sigh* looks like it's
time to re-open-up oc-qemu and get it working with x86
L1037[11:15:24] <DeanIsaKitty> Nah
:3
L1038[11:15:26] *
MajGenRelativity lobs liquid oxygen at Vexatos
L1039[11:15:27] *
Temia is buried in a torrential downpour of cows
L1040[11:15:43] *
MajGenRelativity digs Temia out
L1041[11:15:52] *
Mettaton_Fab throws Temmies at Temia
L1042[11:16:05] <MajGenRelativity>
Temmies?
L1043[11:16:09] <Temia> :|
L1044[11:16:21] <MajGenRelativity> What
are those?
L1045[11:16:22] *
Temia axemurders Mettaton. Goes back to her pile of cows and hides
forever.
L1046[11:16:34] <Temia> Don't ask,
Maj.
L1047[11:16:36] <Temia> Just...
don't.
L1048[11:16:44] *
MajGenRelativity shrugs
L1049[11:16:46] *
DeanIsaKitty hands Temia a pommel.
L1050[11:16:52] <DeanIsaKitty> End him
rightly!
L1051[11:16:56] <Mettaton_Fab> I am not
mettaton EX, so i am not corporeal
L1052[11:17:00] *
MajGenRelativity digs Temia out of here pile of cows
L1053[11:17:09] <MajGenRelativity>
Her*
L1054[11:17:11] <Temia> I am a minotaur,
dammit. The axe is the only way :T
L1055[11:17:26] *
Temia huffs and digs herself back in! >:T
L1056[11:17:32] <DeanIsaKitty> You could
horn him Temia >.>
L1057[11:17:42] *
MajGenRelativity removes all cows from around Temia
L1058[11:17:54]
⇨ Joins: Turtle
(~SentientT@82-171-92-73.ip.telfort.nl)
L1059[11:17:55] *
Temia sulks in a cowless void ._.
L1060[11:17:59] *
Mettaton_Fab hugs Temia to Detemmination
L1061[11:18:04] *
MajGenRelativity has cows
L1062[11:18:19] *
MajGenRelativity can make an extremely large cow farm for
Temia
L1063[11:18:24] *
Temia genocides Mettaton so hard. :T
L1064[11:18:25] *
DeanIsaKitty hands Temia a plush cow
L1065[11:18:39] *
Temia already has one, Dean, but thanks >.>
L1066[11:18:51] <MajGenRelativity>
#hasalltheRF
L1067[11:19:08] *
Mettaton_Fab gets corporeal
L1068[11:19:14] <MajGenRelativity> Auto
suggest feature on my keyboard randomly offered that up
L1069[11:19:26] <MajGenRelativity> I
guess it figured out I was talking about MC
L1070[11:19:32] *
DeanIsaKitty hands Temia a pink plush unicorn
L1071[11:19:46] <Tiktalik> can I install
openOS on my computer
L1072[11:19:47] *
MajGenRelativity hands Temia a DeanIsaKitty
L1073[11:19:54] *
Temia forwards both to gDroid2002.
L1074[11:20:00] *
DeanIsaKitty holds on to Temia
L1075[11:20:14] <DeanIsaKitty> Noooo,
don't give me awaaay :<
L1076[11:20:22]
⇨ Joins: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net)
L1077[11:20:22]
zsh sets mode: +v on Kodos
L1078[11:20:28] <DeanIsaKitty> Hey Kodos
:D
L1079[11:20:35] <Kodos> Are you guys done
finally
L1080[11:20:38] <DeanIsaKitty> Yeah
L1081[11:20:38] *
MajGenRelativity pulls DeanIsaKitty off Temia and sends him to
gDroid2002
L1082[11:20:40] <Kodos> k
L1083[11:20:57] <Kodos> Someone remind
Sangar to push 1.5.22 to curse
L1084[11:20:59] <dangranos> wtf
L1085[11:21:07] <Michiyo> What the actual
fuck did I just come back to?
L1086[11:21:08] <MajGenRelativity> Hi
dangranos
L1087[11:21:08] <Tiktalik> can I install
openOS on my actual computer
L1088[11:21:13] <sugoi> is it .seen or
%seen ?
L1089[11:21:14] <dangranos> table.remove
returns an element of table
L1090[11:21:16] <Kodos> %
L1091[11:21:17] *
DeanIsaKitty kicks MajGenRelativity in the curbs and returns to
Temia
L1092[11:21:19] <MajGenRelativity>
Michiyo, nobody knows
L1093[11:21:20] <dangranos>
MajGenRelativity: hai
L1094[11:21:23] <sugoi> @seen
Sandra
L1095[11:21:25] <sugoi> derp
L1096[11:21:25] <Michiyo> michibot's
commands prefix is %
L1097[11:21:28] <sugoi> @seen
Sangar
L1098[11:21:31] <Michiyo> -_-
L1099[11:21:31] <sugoi> %seen
Sangar
L1100[11:21:32] <MichiBot> sugoi: Sangar
was last seen 1d 21h 2m 52s ago.
L1101[11:21:32] <DeanIsaKitty> %seen
Saphire
L1102[11:21:33] <MichiBot> DeanIsaKitty:
Saphire was last seen 5h 36m 17s ago.
L1103[11:21:37] <Temia> Katie, help
;_;
L1104[11:21:38] <Kodos> You guys fail so
hard
L1105[11:21:46] <Kodos> But
L1106[11:21:47] *
Mettaton_Fab hugs Temia
L1107[11:21:48] <sugoi> Kodos: :)
L1108[11:21:55] <Michiyo> Temia I would,
but I think I need to run FAR FAR AWAY
L1110[11:21:57] <Temia> BADTOUCH ROBOT
;A;
L1111[11:22:05] <Saphire> DeanIsaKitty:
hm?
L1112[11:22:07] <Temia> Noooo, save meeee
;A;
L1113[11:22:16] <Michiyo> Yeah lol the
iso thread was great
L1114[11:22:22] <dangranos> DeanIsaKitty:
did you wanted something?
L1115[11:22:39] <DeanIsaKitty> Saphire:
Hai :D
L1116[11:22:39] *
Mettaton_Fab hugs Temia more
L1117[11:22:45] <DeanIsaKitty> dangranos:
No go away :|
L1118[11:22:51] <Michiyo> %seen
Michiyo
L1119[11:22:51] <MichiBot> Michiyo:
Michiyo was last seen 0s ago.
L1120[11:22:55] <Michiyo> %seen
Mimiru
L1121[11:22:55] *
dangranos is Saphire
L1122[11:22:55] <MichiBot> Michiyo:
Mimiru was last seen 4h 39m 2s ago.
L1123[11:23:01] <Saphire> (and
reverse)
L1124[11:23:03] <Saphire> :P
L1125[11:23:04] <MajGenRelativity> I
thought dangranos was Saphire?
L1126[11:23:11] <Saphire> ^
L1127[11:23:16] <Saphire> just being
bored
L1128[11:23:28] <Saphire> also, backup
bouncer too \o/
L1129[11:23:31] <MajGenRelativity> Anyone
seen XP01 lately?
L1130[11:23:32] <Temia> Mettaton,
seriously, stop :T
L1131[11:23:54] *
Mettaton_Fab hugs Temia less
L1132[11:24:02] *
Tiktalik puts Mettaton_Fab in a box
L1133[11:24:03] <MajGenRelativity> It
would have had fun with all the /me commands
L1134[11:24:04] <Temia> Go back to Tumblr
and bone a skeleton or something, just lay off ffs.
L1135[11:24:11] <Mettaton_Fab> me hugs
temia no more
L1136[11:24:16] *
Tiktalik puts Temia in a different box in a galaxy far, far
away.
L1137[11:24:28] <MajGenRelativity> In a
time long, long ago?
L1138[11:24:41] <Tiktalik> nah, that's a
little excessive
L1139[11:24:50] *
Mettaton_Fab gets teleported to Temia, cuz Sans
L1140[11:24:53] <MajGenRelativity> *plays
Star Wars opening music*
L1141[11:24:57] *
Saphire glues another m to Temia
L1142[11:25:00] *
Tiktalik tosses Mettaton_Fab back in the box.
L1143[11:25:05] *
Tiktalik glues Mettaton_Fab down.
L1144[11:25:16] <DeanIsaKitty> wtf is
wrong with Mettaton_Fab <.<
L1145[11:25:17] *
MajGenRelativity throws Temia into a giant cow
L1146[11:25:30] <MajGenRelativity> A cow,
the size of the sun
L1147[11:25:35] <Mettaton_Fab> Just
Mettathings
L1148[11:25:54] <Tiktalik> -_-
L1149[11:25:57] <Saphire> >throwing
minotaur into cow
L1150[11:25:57] <Mettaton_Fab> Y' know,
gotta put some more backBone into it
L1151[11:26:06] <Saphire> OH YOU
L1152[11:26:18] <MajGenRelativity>
Internet backbone infrastructure?
L1153[11:26:22] <DeanIsaKitty> Good to
know that socially I am one of the less weird people in here
:D
L1154[11:26:31] <Saphire> DeanIsaKitty:
undertale
L1155[11:26:35] <MajGenRelativity>
DeanIsaKitty, everyone is weird here
L1156[11:26:39] <Saphire> ^
L1157[11:26:41] *
Mettaton_Fab hugs DeanIsaKitty
L1158[11:26:53] <Kodos> Woo, Project E
for 1.8.9 =D
L1159[11:26:53] <DeanIsaKitty>
Saphire?
L1160[11:26:54] <Tiktalik> Mettaton_Fab:
stahp, you have reached the point of no longer funny
L1161[11:27:04] <Kodos> Hope Thaumcraft 5
stuff has EMC values
L1162[11:27:06] <DeanIsaKitty> Tiktalik:
I can defend myself, thanks :)
L1163[11:27:07] <Michiyo> Kodos
OpenPrinter is almost ported to 1.8.9 :P
L1164[11:27:08] *
MajGenRelativity sneaks up on Mettaton with a Draconic Staff of
Power
L1165[11:27:11] <Kodos> \o/
L1166[11:27:12] <Saphire> DeanIsaKitty:
the references
L1167[11:27:14] <Saphire> all of
them
L1168[11:27:18] <Saphire> are of
undertale
L1169[11:27:22] <Kodos> Now we just need
OC 1.6 on 1.8.9
L1170[11:27:23] <DeanIsaKitty> Saphire:
Ah, ok
L1171[11:27:23] <Michiyo> the lack of
OC:Dev has kinda halted progress though :P
L1172[11:27:30] <Saphire> (mettaton,
bones)
L1173[11:27:34] <Kodos> y u no bon2
L1174[11:27:36] <sugoi> Kodos: so openos
1.6 --- my lazy load finally is a small fixed cost (per library)
and with just some filesystem api and tab-completion in shell i've
already saved 9k. openos 1.6 now boots with ~65k free on T1.5
ram
L1175[11:27:42] <Saphire> also,
Temmi
L1176[11:27:48] <Michiyo> Ok, now you
tell jenkins how to use a bon'd jar..
L1177[11:27:52] <Michiyo> I'll wait while
you convince it
L1178[11:27:58] <Saphire> (No, don't call
Temia like this, it's bad idea)
L1179[11:28:15] *
Mettaton_Fab gets a box of Temmie
L1180[11:28:18] *
Saphire pats poor Temia
L1181[11:28:26] <Kodos> Just curious, why
isn't there a 1.6 OC in 1.8.9 yet
L1182[11:28:34] <MajGenRelativity> Null
argumentexception?
L1183[11:28:35] <Michiyo>
#asksangar
L1184[11:28:37] <Kodos> Is it just
because productivity is zilch, or was there a bug
L1185[11:28:40] <MajGenRelativity> What
even is a Temmie
L1186[11:28:42] <Vexatos> Michiyo, y u no
deobfCompile in gradle
L1187[11:28:45] <Saphire> "The
table.remove function removes (and returns) an element from a given
position in an array, moving down other elements to close space and
decrementing the size of the array."
L1188[11:28:46] <Saphire> wtf
L1189[11:28:54] <Saphire> it returns the
element of aray
L1190[11:28:56] <Mettaton_Fab>
Temmie?
L1191[11:28:56] <Saphire> *array
L1192[11:29:10] <Michiyo> Vexatos cause I
had no idea that existed, and when I was asking for help last night
no one seemed to know either?
L1193[11:29:12] <Saphire> Temia: i'm
sorry
L1194[11:29:21] <Mettaton_Fab> A mix of
Cat and dog, 2 pairs of ears
L1195[11:29:22] <Michiyo> And now I'm at
work, and by the time I get home I'll have forgot?
L1196[11:29:29] <MajGenRelativity>
Um
L1197[11:29:39] <MajGenRelativity> Why
are Temmies a thing?
L1198[11:29:39] <Kodos> %tell Mimiru
deobfCompile in gradle
L1199[11:29:39] <MichiBot> Kodos: Mimiru
will be notified of this message when next seen.
L1200[11:29:40] ***
cbcercas is now known as cbcercas|AFK
L1201[11:29:50] <MajGenRelativity>
Dog+cat??????
L1202[11:29:51] <Saphire>
MajGenRelativity: ask TobyFox
L1203[11:30:02] ***
Keridos|away is now known as Keridos
L1204[11:30:04] <Saphire> .g temmie
L1205[11:30:11] <Saphire> %g temmie
L1206[11:30:14] <Saphire> ugh
L1208[11:30:47] <Michiyo> I wonder if
that also checks NS ident when it does tells..
L1209[11:30:50] <Michiyo> it seems not
:P
L1210[11:31:11] *
MajGenRelativity flips over #oc
L1211[11:31:11]
⇨ Joins: Lumindia_
(~IceChat9@nj-76-1-233-73.dhcp.embarqhsd.net)
L1212[11:31:19] <MajGenRelativity> %flip
#oc
L1213[11:31:21] <MichiBot>
MajGenRelativity: (╯°□°)╯︵ɔo#
L1214[11:32:02] <Michiyo> Saphire first
command to the bot requires it to whois you, check it's permissions
system, cache your data, and do some other stuff, initial lookup is
in the area of 2-4 seconds depending on how shitty esper wants to
be at that moment
L1215[11:32:06] <Lumindia_> #flip
Something Something Determination
L1216[11:32:12] <Lumindia_> ... oh
wait
L1217[11:32:17] <Lumindia_> %flip
Something Something Determination
L1218[11:32:19] <MichiBot> Lumindia_:
(╯°□°)╯︵uoıʇɐuıɯɹǝʇǝᗡ ɓuıɥʇǝɯoS ɓuıɥʇǝɯoS
L1219[11:32:23] <Lumindia_> I wo
nder...
L1220[11:32:27] <MajGenRelativity> %flip
Lumindia_
L1221[11:32:28] <MichiBot>
MajGenRelativity: (╯°□°)╯︵‾ɐıpuıɯn˥
L1222[11:32:36] <Lumindia_> %flip
(╯°□°)╯︵uoıʇɐuıɯɹǝʇǝᗡ ɓuıɥʇǝɯoS ɓuıɥʇǝɯoS
L1223[11:32:37] <Saphire> MichiBot:
ah
L1224[11:32:37] <MichiBot> Lumindia_:
(╯°□°)╯︵Something Something Determination︵╯)°□°╯)
L1225[11:32:42] <Saphire> %g ping
L1227[11:32:46] <Saphire> XD
L1228[11:32:51] <Saphire> wat
L1229[11:32:57] <MajGenRelativity> By the
way Lumindia, I got to give you the new modpack
L1230[11:33:09] <Saphire>
MajGenRelativity: did izaya moved?
L1231[11:33:24] <MajGenRelativity> You
can join #yuonsurvival now Lumindia to get the pack
L1232[11:33:28] <MajGenRelativity>
Saphire, idk
L1233[11:33:36] <Michiyo> it also
requires recache if you've not sent a command in the last 5
minutes
L1234[11:33:39] <MajGenRelativity> Izaya
won't give me coords
L1235[11:34:15] <Temia> Wait.
L1236[11:34:21] <Temia> Lumin's
joining?
L1237[11:34:27] <Kodos> Whoa, something
in 1.8.9 gave me autostep
L1238[11:34:31] *
Lumindia_ poked head in
L1239[11:34:32] <MajGenRelativity> Lumin,
was on before
L1240[11:34:48] <MajGenRelativity> He
just hadn't got the new pack
L1241[11:34:56] <MajGenRelativity> At
#yuonsurvival
L1242[11:35:11]
⇦ Quits: MajGenRelativity
(~Hi@2600:1000:b031:98b9:0:48:c76c:9101) (Quit: The Major shall
return)
L1243[11:35:15] <Saphire> ugh
L1244[11:35:15] <Lumindia_> wait, Tem is
in the thing now?
L1245[11:35:16] <Lumindia_> '-'
L1246[11:35:17] <Saphire> >
print(table.remove(({"ab","cd","ef"}),1))
L1247[11:35:19] <Saphire> ab
L1248[11:35:23] <Saphire> wtf
L1249[11:35:36] <Saphire> isn't that
supposed to return table?
L1251[11:38:10] <|0xDEADBEEF|> >
[string "lua"]:1: <name> expected near '//'
L1252[11:38:11] <Kodos> #lua
print(table.remove(({"ab","cd","ef"}),1))
L1253[11:38:11] <vifino> ...
L1254[11:38:11] <|0xDEADBEEF|> > ab |
nil
L1255[11:38:20] <vifino> clipboard,
please
L1256[11:38:29] <vifino> ugh
L1257[11:38:44] <Kodos> #l53
print(table.remove(({"ab","cd","ef"}),1))
L1258[11:38:47] <vifino> im destroyed
from building my new nas .-.
L1259[11:38:56] <vifino> Kodos:
Watch.
L1260[11:38:59] <vifino> #lua
_VERSIN
L1261[11:38:59] <|0xDEADBEEF|> >
nil
L1262[11:39:02] <vifino> #lua
_VERSION
L1263[11:39:02] <|0xDEADBEEF|> > Lua
5.3 Sandbox
L1264[11:39:08] <vifino> It's 5.3
already.
L1265[11:39:14] <Kodos> Ah
L1266[11:39:27] <Kodos> For some reason,
I thought you had to prefix it so it knew
L1267[11:39:32] <Kodos> Unless you
updated the sandbox
L1268[11:39:42] <vifino> Nah, it's been
5.3 for ages.
L1269[11:39:43] <Inari> Saphire: why
would it return table :P
L1270[11:39:59] <Saphire> ...
L1271[11:40:04] <Saphire> REALLY
L1272[11:40:06] <Saphire> it's a..
L1273[11:40:07]
<
Pwootage> Who wants to write some
x86 assembly? :D
L1274[11:40:12] <Saphire> you're freaking
kidding me
L1275[11:40:15] <vifino> Pwootage:
Depends.
L1276[11:40:20] <Inari> Saphire:
wat
L1277[11:40:29] <Saphire> it's the only
function that doesn't returns modified value but just modifies
it
L1278[11:40:30] <DeanIsaKitty> Pwootage:
Sure
L1279[11:40:32] <Inari> Saphire is
secretely Cruor
L1280[11:40:35]
<
Pwootage> vifino: it would end up
running in OC, if I can ever fix my qemu bridge (again)
L1281[11:40:37] <vifino> As long as it's
not x86_64, sure, why not.
L1282[11:40:48] <vifino> Pwootage:
Awesome.
L1283[11:40:59] <Inari> Saphire:
nah
L1284[11:41:03] <Inari> there are more
functions like that
L1285[11:41:13] <vifino> DeanIsaKitty:
Check xmpp please. ._.
L1286[11:41:27] <DeanIsaKitty>
*sigh*
L1287[11:41:34] <Inari> i didnt know
table.move is a thing
L1288[11:41:34] <Inari> nice
L1290[11:42:24] <MichiBot> Vexatos:
OpenComputers: Now in your pocket! (WIP) | length:
27s | Likes:
18 Dislikes:
0 Views:
172 | by
asciicharismatic
L1291[11:42:54]
<
Pwootage> Whaaaaaat is that
L1292[11:42:58] <Inari> #lua a1 =
{"a", "b", "c", "d",
e"} a2 = {} table.move(a1, 2, 4, 2, a2) for k,v in pairs(a2)
do print(k.."=>"..v) end
L1293[11:42:58] <|0xDEADBEEF|> >
[string "lua"]:1: '}' expected near '='
L1294[11:43:01] <Inari> :<
L1295[11:43:18] <Inari> #lua a1 =
{"a", "b", "c", "d",
"e"} a2 = {} table.move(a1, 2, 4, 2, a2) for k,v in
pairs(a2) do print(k.."=>"..v) end
L1296[11:43:18] <|0xDEADBEEF|> >
2=>b | 3=>c | 4=>d | nil
L1297[11:43:23] <Inari> nice
L1298[11:43:33]
<
Pwootage> I like ow it shows 29M
ram :D
L1299[11:43:45] <Inari> i dislike
L1300[11:43:46] <Inari> bad OC
clone
L1301[11:44:19]
<
Pwootage> How hard would it be to
compile Lua bare-bones? How many deps does it have?
L1303[11:44:21] <MichiBot> Vexatos:
(╯°□°)╯︵Is⊥INı⇂∀‾Iפ=ʌ¿ɥɔʇɐʍ/ɯoɔ˙ǝqnʇnoʎ˙ʍʍʍ//:sdʇʇɥ
L1304[11:44:22] <MichiBot> Vexatos:
OpenComputers: Now in your pocket! (WIP) | length:
27s | Likes:
18 Dislikes:
0 Views:
172 | by
asciicharismatic
L1305[11:44:27] <Kodos> %g 3D Minecraft
resource packs
L1307[11:44:35] <Kodos> err
L1308[11:44:51]
⇨ Joins: asieLuPI
(~asielupi@178235239234.elblag.vectranet.pl)
L1309[11:44:55] <asieLuPI> hello
L1310[11:45:05] <Vexatos> asie pls
L1311[11:45:06] <vifino> Hey
asieLuPI.
L1312[11:45:15] <Vexatos> I can't even
read it on stream
L1313[11:45:17] <vifino> Pipit?
L1314[11:45:18] <Vexatos> the camera is
so bad
L1315[11:45:23] <vifino> Mmmm.
L1316[11:45:36] <Vexatos> so I assume the
internet API works now
L1317[11:45:41]
⇦ Quits: asieLuPI
(~asielupi@178235239234.elblag.vectranet.pl) (Remote host closed
the connection)
L1318[11:45:47] <asie>
"Killed"
L1319[11:45:50] <asie> WELL.
L1320[11:45:50] <Vexatos> Or maybe
not
L1321[11:45:52] <asie> Magik6k: YOU
TRIED
L1322[11:45:54] <asie> THERE WAS AN
ATTEMPT
L1323[11:45:57] <Cruor> Inari: u wot
m8
L1324[11:45:59] <asie> but yeah
L1325[11:46:08] <Magik6k> heh
L1326[11:46:11] <asie> i just typed from
OpenIRC on OpenOS on LuPI on a Zipit Z2
L1327[11:46:16] <Magik6k> at least you
joined
L1328[11:46:20] <asie> Magik6k: and said
hello
L1329[11:46:21] <Magik6k> somehow
L1330[11:46:25] <asie> magic
L1331[11:46:30]
<
Pwootage> wiki says ANSI c...
wasn't there someone here who's working on OC on raspi?
L1332[11:46:30] <Magik6k> oh,
indeed
L1333[11:47:31] <Magik6k> Pwootage, me,
asie
L1334[11:48:25]
<
Pwootage> I'm currently working on
an OS written as much in JS as possible, probably could port it to
lua too if you wanted
L1335[11:48:31] <Vexatos> Magik6k, fix
yer interwebs
L1336[11:48:50]
<
Pwootage> and by if you wanted I
mean if you want to run OC without the linux kernel
L1337[11:48:52] <Mettaton_Fab> Ever heard
about JavaOS?
L1338[11:49:06]
<
Pwootage> Wasn't that abandoned a
decade ago?
L1339[11:49:11] <Kubuxu> It was
L1341[11:49:28] <Mettaton_Fab> Guess why?
Its Bad.
L1342[11:49:31] <Magik6k> have fun
L1343[11:49:32] <Magik6k> :P
L1344[11:50:25]
<
Pwootage> Yeah writing an ethernet
driver is going to be ..."fun"
L1345[11:50:31]
⇨ Joins: MajGenRelativity
(~Hi@c-24-63-210-98.hsd1.ma.comcast.net)
L1346[11:52:08] <MajGenRelativity>
o/
L1347[11:53:33]
⇨ Joins: rikai (~quassel@rekd.net)
L1348[11:54:53] *
MajGenRelativity shrugs
L1349[11:55:26] *
Mettaton_Fab gets temmie out
L1350[11:55:48]
⇦ Quits: cpup (~cpup@32.218.114.144) (Ping timeout: 198
seconds)
L1351[11:55:55] *
MajGenRelativity smacks Mettaton with Draconic Staff of
Power
L1352[11:56:04] ***
rakiru|offline is now known as Kasen
L1353[11:56:20] *
Mettaton_Fab hides under a box of temmie flakes
L1354[11:56:46] <Kodos> We need a kick
bot with trigger words
L1355[11:56:46] *
MajGenRelativity sweeps aside box with staff and keeps
swinging
L1356[11:57:02] *
Mettaton_Fab hides
L1357[11:57:15] *
MajGenRelativity looks
L1358[11:57:15]
⇨ Joins: cpup (~cpup@32.218.114.144)
L1359[11:57:21] *
MajGenRelativity finds
L1360[11:57:33] <Kodos> This is spam,
right?
L1362[11:57:34] *
Mettaton_Fab desintegrates
L1363[11:57:40]
<
Pwootage> Magik6k: Imight want to
ask you a bit about how you implemented that, the Linux kernel has
lovely things like ethernet drivers I might want to use
L1364[11:57:46] <Inari> Kasen: nice host
there
L1365[11:58:22] <MajGenRelativity> Hi
Inari
L1366[11:58:26] <Kubuxu> Pwootage: It
uses linux kernel so you can use it (Just create raw socket
).
L1367[11:58:45] <Inari> ohi
L1368[11:59:02] <MajGenRelativity> I must
go
L1369[11:59:07] <MajGenRelativity> My
people need me
L1370[11:59:12]
⇦ Quits: MajGenRelativity
(~Hi@c-24-63-210-98.hsd1.ma.comcast.net) (Quit: The Major shall
return)
L1371[11:59:23]
<
Pwootage> OH MAN DOCKER PROVIDES A
LINUX KERNEL
L1372[11:59:30] <Corded> *
Pwootage idea
L1373[11:59:56] <Mettaton_Fab> a am
watching that video right now, it's so funny
L1374[12:00:14] <Lumindia_> Suddenly, a
sexy killer robot
L1375[12:00:15] <Lumindia_> '-'
L1376[12:00:21] <Lumindia_> "Smells
like Mettaton"
L1377[12:00:35] <Lumindia_> something
something legs
L1378[12:00:43] <Skye> Wat
L1379[12:00:48] <Mettaton_Fab> We know
that i smell like mettaton.
L1380[12:01:08] <Skye> Wat
L1381[12:04:57]
⇦ Quits: AlexisMachina
(uid57631@id-57631.charlton.irccloud.com) (Quit: Connection closed
for inactivity)
L1382[12:09:38] <gamax92> hai
L1383[12:10:06] <Mettaton_Fab>
Where?
L1384[12:10:40] ***
gDroid2002 is now known as g
L1385[12:11:27] <gamax92> Kodos: can
Mettaton_Fab be removed?
L1386[12:11:58] <Mettaton_Fab> actually,
i'm not doing somethig on oc
L1387[12:12:55] ***
Mettaton_Fab was kicked by zsh ((DeanIsaKitty (Dean4Devil)) Yeah he
can))
L1388[12:13:12] <Saphire> "Easiest
enemy in the game. 1ATK 1DEF"
L1389[12:13:12] <Lumindia_> ...
L1390[12:13:16] <Lumindia_> '-'
L1391[12:13:19] <Lumindia_> no, that's
Sans
L1392[12:13:23]
⇨ Joins: Mettaton_Fab
(~mettaton_@p54BCB4FE.dip0.t-ipconnect.de)
L1393[12:13:25] <DeanIsaKitty> gamax92:
Does that help? :P
L1394[12:13:34] <gamax92> no, it came
back
L1395[12:13:42] <Kodos> Mettaton_Fab:
Please refrain from spamming in the future
L1397[12:13:58] <Lumindia_> '-' what
spam?
L1398[12:13:59] <DeanIsaKitty> You just
asked if it *can* be removed, not to remove it. :P
L1399[12:14:01] <Lumindia_> I didn't see
him spamming?
L1400[12:14:11] <Kodos> The constant
/me'ing
L1401[12:14:15] <DeanIsaKitty> Lumindia_:
Don't question Kodos <.<
L1402[12:14:18] <Lumindia_> when was
that?
L1403[12:14:22] <DeanIsaKitty> Whatever
you do, do not question Kodos <.>
L1404[12:14:29] <Kodos> Oi vey
L1405[12:14:29]
<
Pwootage> Magik6k: If you don't
mind me asking, where are the docs you used about writing an
'init'? I'm sure I can find them if I continue to google, but you
might be able to speed things up a little
L1406[12:14:41] <Kodos> Lumindia_: When
he and MGR were going back and forth
L1407[12:14:44] <Kodos> Before MGR
left
L1408[12:14:49] <Mettaton_Fab> another
person was involved in it.
L1409[12:14:59] <Kodos> Yes, and he is on
his last straw
L1410[12:15:42] <DeanIsaKitty>
Mettaton_Fab: Just because many do something it doesn't make it
legal <.<
L1411[12:16:05] <Magik6k> Pwootage, I
just compiled static binary and put it as /sbin/init and it
works
L1412[12:16:18] <Saphire> Mettaton_Fab:
there is mirror behind you!
L1413[12:16:22] <Magik6k> You need to
mount /proc, /tmp, etc. if you need manually
L1414[12:16:33] <Mettaton_Fab> i won't
turn around!
L1415[12:17:05] *
Saphire walks around Mettaton_Fab and flicks the switch
back
L1416[12:17:31] <Mettaton_Fab> its a
blind switch
L1417[12:17:40] *
gamax92 blushes the disk cache to disk
L1418[12:17:41] <gamax92> ...
flushes
L1419[12:17:53] <gamax92> the cache is
blushing!
L1420[12:17:54] <vifino> * gamax92
blushes
L1421[12:17:58]
<
Pwootage> Magik6k: well that's
easy... You're not using anything arm-specific are you? That might
be easier to set up than I thought
L1422[12:18:04] <gamax92> vifino:
o-oh
L1423[12:18:14] <vifino> :P
L1424[12:18:17] <vifino> gamax92!
L1425[12:18:19] <Magik6k> Pwootage, nah,
it's that easy
L1426[12:18:21] <vifino> How are
you?
L1427[12:18:21] <gamax92> vifino!
L1428[12:18:47] <gamax92> muy bien
L1429[12:18:54] <vifino> Good.
L1430[12:19:03] <vifino> I'm quite
fine.
L1431[12:19:10] <gamax92> vifino: wanna
help me write a tool for ocemu?
L1432[12:19:19] <vifino> gamax92: Sure,
but depends.
L1433[12:19:59] <gamax92> it traverses
the entire environment and calculates an arbitrary number for
memory usage of all the tables, and various
not-ocemu-functions
L1434[12:19:59] <Mettaton_Fab> no hug
here?
L1435[12:20:05] <Inari> better than a
robot killing sexy time
L1436[12:20:10] <Inari> oh i was scrolle
dup
L1437[12:20:19] <gamax92> and then
outputs it to a file as a tree
L1438[12:20:31] ***
Lumindia_ is now known as Jerry
L1439[12:20:32] <Jerry> Jerry
L1440[12:20:44] <vifino> gamax92:
collectgarbage()? :D
L1441[12:20:44] <gamax92> stop with the
fucking Undertale shit
L1442[12:20:50] <Jerry> ...
L1443[12:20:51] <Jerry> fine
L1444[12:20:56] <gamax92> vifino: for
memory usage count?
L1445[12:20:58] ***
Jerry is now known as LlyWhite
L1446[12:21:00] ***
LlyWhite is now known as LilyWhite
L1447[12:21:03] <vifino> gamax92: shush,
close enough :<
L1448[12:21:05] <LilyWhite> No need to
yell at me about it
L1449[12:21:19] <gamax92> vifino: no I'm
confused, what's collectgarbage for
L1450[12:21:30] <vifino> gamax92:
collectgarbage("count")
L1451[12:21:41] <Mettaton_Fab> But,
Mettaton would be a really good entertainer, If he would
exist.
L1452[12:21:45] <gamax92> yeah but that
won't give me memory usage of say a specific table
L1453[12:21:56] <vifino> no idea how to
get that though :s
L1454[12:22:05] <gamax92> by manually
calculateing it
L1455[12:22:10]
⇦ Parts: LilyWhite
(~IceChat9@nj-76-1-233-73.dhcp.embarqhsd.net) ())
L1456[12:22:18] *
Saphire pokes gamax92 just for fun
L1457[12:22:22] <Tiktalik> does crafting
an opencomputers manual with a disk consume the manual
L1458[12:22:24]
<
Pwootage> Note: you have to build
LuPI2 on Linux (wrong headers on osx :P)
L1459[12:22:52] <gamax92> which is why
the number is arbitrary because, Lua and it's string hashes and
hash tables and other weird ness causing different memory usage
counts for what is technically the exact same tables
L1460[12:23:27] <Saphire> Magik6k: better
interface with some kind of descriptions and search for mpt
when?
L1461[12:24:54] <Magik6k> Saphire, Dunno,
I'll rewrite it to playframework eventually, but I have LuPi and
some other projects to do
L1462[12:25:22]
⇦ Quits: sugoi (~sugoi@174-31-156-220.tukw.qwest.net) (Ping
timeout: 186 seconds)
L1463[12:25:24] <Kodos> .rb Holy shit
it's cold outside.
L1464[12:25:30] <Kodos> Aww, is that
broken?
L1465[12:25:44]
<
Pwootage> Magik6k: man I wish I had
time... I'd totally help rewrite that in play/angular, but way too
much to do :P
L1466[12:26:11] <Magik6k> Well, same
here
L1467[12:26:13] <vifino> #rainbow Holy
shit it's cold outside.
L1468[12:26:13] <|0xDEADBEEF|> >
Holy shit
it's
cold outside.
L1469[12:26:23] <Magik6k> But angular is
meh
L1470[12:26:37] <Magik6k> I used it but
eww
L1471[12:26:37] <gamax92> vifino: I guess
that's a no
L1472[12:26:40]
<
Pwootage> Angular2 is awesome
L1473[12:26:48] <vifino> gamax92: I don't
know how ._.
L1474[12:26:56] <gamax92> alright
L1475[12:26:57] <Kodos> Ah
L1476[12:27:01]
⇨ Joins: t3hero
(~t3hero@2601:202:200:fb50:bdb7:a3f7:1500:7590)
L1477[12:27:01] <g> |0xDEADBEEF|: baby
it's cold outside
L1478[12:27:02]
<
Pwootage> and it's way better than
any other alternative I've used (not that jquery or react or flex
or whatever are bad)
L1479[12:27:05] <Magik6k> I'll use scala
+ scala.js(vanilla DOM)
L1480[12:27:12]
<
Pwootage> Scalajs is awesome
L1481[12:27:17] <gamax92> Pwootage:
whazat
L1482[12:27:28] <g> how many bots in here
again? :P
L1483[12:27:30]
<
Pwootage> gamax92: whta's
what?
L1484[12:27:36] <gamax92> scalajs
L1485[12:27:39] <g> I put my vote in for
gamax92 as best bot
L1486[12:27:44]
<
Pwootage> Magik6k: build deps for
lupi?
L1487[12:27:48]
⇨ Joins: sugoi
(~sugoi@71-217-113-217.tukw.qwest.net)
L1488[12:27:51] <gamax92> sugoi
L1489[12:27:52] <Magik6k> umm
L1490[12:27:56]
<
Pwootage> gamax92: scala -> js
compiler, it's sweet
L1491[12:28:04] <Magik6k> none other than
make/gcc :D
L1492[12:28:14] <Daiyousei> "A safer
way to build robust front-end web applications!"
L1493[12:28:15] <Daiyousei> u wot
L1494[12:28:16] <Daiyousei> ogod
L1495[12:28:19] <Daiyousei> oh my god
no
L1496[12:28:26] <gamax92> sugoi: I'm
making a tool for ocemu: it traverses the entire environment and
calculates an arbitrary number for memory usage of all the tables,
and various not-ocemu-functions and then outputs it to a file as a
tree
L1497[12:28:50] <gamax92> if I can't get
that memory usage thing to work, I'll still just make it output a
giant tree
L1498[12:29:00] <Inari> lol
L1499[12:29:05]
<
Pwootage> Magik6k: defsdidn't
compile, will try again when I get on the train :P
L1500[12:29:22] <Magik6k> lel
L1501[12:29:27] <gamax92> trains are
proven to help your compiling process 82% of the time
L1502[12:29:58] <Inari> of course
L1503[12:30:05] <Inari> becuae you are
already in a train you are quicker
L1504[12:30:08] <Inari> hence it will
compile better
L1505[12:31:00]
<
Pwootage> They do, especially when
you don't want to drop your laptop walking to the train :P
L1506[12:31:11]
<
Pwootage> They do, especially when
you don't want to drop your laptop walking to the train :P
L1507[12:31:19] <gamax92> They do,
especially when you don't want to drop your laptop walking to the
train :P
L1508[12:31:27]
<
Pwootage> That may have doubled,
sorry
L1509[12:31:33] <gamax92> it did :P
L1510[12:31:44] <Inari> They do,
especially when you don't want to drop your laptop walking to the
train :P
L1511[12:31:45] <Inari> did it?
L1512[12:32:29]
<
Pwootage> Texting and walking is
probably not the best idea
L1513[12:32:34]
<
Pwootage> Yet here I am
L1514[12:33:41]
⇦ Quits: cpup (~cpup@32.218.114.144) (Ping timeout: 194
seconds)
L1515[12:34:29]
⇦ Quits: Meow-J (uid69628@id-69628.highgate.irccloud.com)
(Quit: Connection closed for inactivity)
L1516[12:42:25] <Tiktalik> um
L1517[12:42:38] <Tiktalik> my screen and
keyboard are showing up as weird blocks that are definitely not
screens or keyboards
L1518[12:43:01] <Mettaton_Fab> what do
they look like?
L1519[12:43:47] <gamax92> Tiktalik:
update to a dev version of oc
L1520[12:43:56] <Kodos> Yep, known
bug
L1521[12:44:01] <gamax92> I assume you're
using 1.8.8/1.8.9?, that got fixed
L1522[12:44:17] <Tiktalik> thanks!
L1523[12:46:48]
⇦ Quits: Mettaton_Fab
(~mettaton_@p54BCB4FE.dip0.t-ipconnect.de) (Remote host closed the
connection)
L1524[12:49:58]
⇨ Joins: Mettaton_Fab
(~mettaton_@p54BCB4FE.dip0.t-ipconnect.de)
L1525[12:50:29]
⇨ Joins: cpup (~cpup@32.218.116.17)
L1526[12:55:20]
<
MajGenRelativity> Hi
L1527[12:56:34]
⇦ Quits: Mettaton_Fab
(~mettaton_@p54BCB4FE.dip0.t-ipconnect.de) (Ping timeout: 186
seconds)
L1528[12:56:44]
<
MajGenRelativity> How is
everyone?
L1529[12:56:51] <DeanIsaKitty> Good, and
you?
L1530[12:56:56]
<
MajGenRelativity> Good
L1531[12:56:56] <gamax92> Dead, and
you?
L1532[12:57:25]
<
MajGenRelativity> Considering how
to write my laser turret security program
L1533[12:57:34]
<
MajGenRelativity> How is death
gamax92?
L1534[12:57:47] <gamax92> He's a nice
guy
L1535[12:58:00]
<
MajGenRelativity> How did you
die?
L1536[12:58:03] <gamax92> has a kind
heart, gave me time to prepare and all that stuff
L1537[12:58:09]
<
MajGenRelativity> Did you get
killed to death?
L1538[12:58:26] <gamax92> Yeah, sadly,
though being killed to death isn't actually as painful as it
sounds
L1539[12:58:48]
<
MajGenRelativity> Oh man
L1540[12:59:09]
<
MajGenRelativity> I had a friend
who was shot with a knife, and he told me it was immensely
painful
L1541[12:59:16]
<
MajGenRelativity> I'm glad your
death wasn't
L1542[12:59:32]
⇨ Joins: Mettaton_fab
(~mettaton_@p54BCB4FE.dip0.t-ipconnect.de)
L1543[13:01:25] <Corded> *
MajGenRelativity walks away humming Darude Sandstorm
L1544[13:01:33]
<
Pwootage> Magik6k: needs xxd,
whatever that is (I'm on a mac so building with a nifty docker
script I wrote to cross-compile other things)
L1545[13:01:54]
<
MajGenRelativity> Hi Pwootage
L1546[13:02:16] <Mettaton_fab> why Darude
Sandstorm
L1547[13:02:24]
<
MajGenRelativity> I like the
song
L1548[13:02:53] <Mettaton_fab> how about
Dogrude-Houndstorm?
L1549[13:03:07]
<
MajGenRelativity> Never heard if
it
L1550[13:03:15] <DeanIsaKitty> Villagers
- Snowstorm?
L1551[13:03:17] <Mettaton_fab> youtube
it.
L1552[13:03:44]
<
MajGenRelativity> It cannot be as
good as Dedotated Wamstorm
L1553[13:04:32] <Mettaton_fab>
Dogrude-Houndstorm exists. I did research on it.
L1554[13:04:49]
<
MajGenRelativity> I believe
you
L1555[13:05:33] <Mettaton_fab> The music
vieo describes Undertale's Annoying dog.
L1556[13:05:59] <Corded> *
MajGenRelativity steers away from Undertale talk
L1557[13:07:48] <Tiktalik> well...
L1558[13:07:49]
<
Pwootage> Part of hexdump, I guess?
Wonder why it doesn't come with that
L1559[13:07:51] <Tiktalik> I have a
computer now
L1560[13:07:54] <Tiktalik> what do I do
with it
L1561[13:08:04] <gamax92> Pwootage:
hexdump -C -v
L1562[13:08:08] <Mettaton_fab> USE
IT:
L1563[13:08:13] <gamax92> take a potato
chip
L1564[13:08:32] <Mettaton_fab> sorry for
the caps.
L1565[13:10:28]
<
Mimiru> Everyone is fired. Thank
you, have a good day
L1566[13:10:39] <Mettaton_fab> Wot?
L1567[13:10:48]
<
Pwootage> I'm fired? D:
L1568[13:11:24] <gamax92> Pack your bags,
you're out of here.
L1569[13:11:37] <Mettaton_fab> can i copy
a tablet?
L1570[13:11:40]
<
Pwootage> Uh, apparently xxd is
part of vim on ubuntu. Alright?
L1571[13:12:54] *
CompanionCube doesn't work for you
L1572[13:14:35] <Magik6k> Pwootage, ah
that
L1573[13:14:51] <Magik6k> It turns binary
data to C struct
L1574[13:15:08] <Magik6k> [C array]
L1575[13:15:27]
<
Pwootage> Magik6k: yeah, that makes
sense... nonetheless, still need to modify the docker image I'm
using to install vim-common (go figure)
L1576[13:19:39]
<
Pwootage> Magik6k: which files are
required on the filesystem? Or are they all compiled-in?
L1577[13:20:07] <gamax92> greaser|q:
how's that replacement kernel going
L1578[13:20:11] <gamax92> also does it
have a github
L1579[13:20:12]
<
MajGenRelativity> Everyone is
fired?
L1580[13:20:18]
<
MajGenRelativity> O_O
L1581[13:20:34] <greaser|q> i'm not sure
if i'll work on it today, i got distracted by other things last
night but eh, may or may not
L1582[13:21:22] <Mettaton_fab> any good
programs for OC?
L1583[13:21:34]
<
MajGenRelativity> TACEATS
L1584[13:21:50] <Mettaton_fab> Wuts
dat?
L1585[13:22:00]
<
MajGenRelativity> Security
program
L1586[13:22:16]
<
MajGenRelativity> I will explain
later, I must go
L1587[13:22:44] <Shuudoushi> %seen
Sangar
L1588[13:22:47] <MichiBot> Shuudoushi:
Sangar was last seen 1d 23h 4m 4s ago.
L1589[13:22:58] <Michiyo> Yes,
fired.
L1590[13:23:09] <g> Michiyo: D:
L1591[13:23:13] <Michiyo> If you refuse
to leave the building, you will be loaded into the cannon, and
fired into the sun.
L1592[13:23:22] <Magik6k> Pwootage, make
directory called root where you run it and put there
OpenOS/Plan9k
L1593[13:23:25] <Shuudoushi> lulz
L1594[13:23:57] <Tiktalik> but what can I
do with this computer?
L1595[13:24:03] <Vexatos> anything
L1596[13:24:16] <Tiktalik> can I install
freeBSD
L1597[13:24:20]
<
Pwootage> Magik6k: kk
L1598[13:24:23] <Tiktalik> (that was a
joke)
L1599[13:24:37] <Shuudoushi> Tiktalik:
maybe after the ARM archis working
L1600[13:24:46] <Tiktalik> sugoi: ARM
archis?
L1601[13:24:48] <Magik6k> Tiktalik, There
is goy working on BSD port
L1602[13:24:52] <Magik6k> *guy
L1603[13:24:54] <Tiktalik> ...
L1604[13:24:55] <Tiktalik> oh my
god
L1605[13:24:55]
<
Pwootage> Magik6k: so I need a
/root folder as of right now? (if I'm running it as init)
L1606[13:25:01] <vifino> Shushy!
L1607[13:25:03] <Magik6k> yup
L1608[13:25:06] <vifino> You're
alive!
L1609[13:25:07] <vifino> :D
L1610[13:25:11] <Shuudoushi> yeah?
L1611[13:25:18] <vifino> Helloes.
L1612[13:25:22] <Shuudoushi> o/
L1613[13:25:28] <vifino> \o
L1614[13:25:54] <Tiktalik> well, should I
maybe set up a user account?
L1615[13:25:58] <Tiktalik> or
something?
L1616[13:26:06] <Tiktalik> are those a
thing
L1617[13:26:14] <Tiktalik> or do I just
make a random folder to shove my crap into
L1618[13:26:23] <Shuudoushi> I'm thinking
in order to get around term.write() crashing SOS that I'm just
going to go with io.write...
L1619[13:26:39]
<
Pwootage> Hm, apparently docker
disallows 'epoll_ctl', might have to tweak lupi a bit I guess
L1620[13:27:04]
⇨ Joins: MajGenRelativity
(~Hi@2600:1000:b027:2fd5:0:48:c776:fc01)
L1621[13:27:08] <Magik6k> epoll is linux
specific
L1622[13:27:23] <Magik6k> and events
are/will be built around it
L1623[13:27:23]
⇦ Parts: MajGenRelativity
(~Hi@2600:1000:b027:2fd5:0:48:c776:fc01) ())
L1624[13:27:36] <Magik6k> other ways are
shit ;p
L1625[13:27:43] <Shuudoushi> that or
maybe if I have /boot/kernel/SecureOS launch the login
screen...
L1626[13:27:46] <Mettaton_fab> wot?
L1627[13:27:49] <Magik6k> select is
O(n)
L1628[13:28:50] <Shuudoushi> well, I'll
have to test that later, now that the rain has stopped, I need to
head up to the shop and work on my car x.x
L1629[13:29:01] <Michiyo> So... Kibibyte
hasn't been here in quiet a while... anyone know if thats gonna
change..?
L1630[13:29:20]
<
MajGenRelativity> Mettaton, I PM
you more info
L1631[13:29:24] <Mettaton_fab>
Kibibyte?
L1632[13:29:27] <gamax92> good
riddance
L1633[13:29:31] <Michiyo> A bot.
L1634[13:29:39]
<
MajGenRelativity> PM'd
L1635[13:29:58] <Shuudoushi> Magik6k: is
the version of openloader that ships with plan9k more up-to-date
than the loot disk version?
L1636[13:30:07] <Kubuxu> pwootage: There
has to be a way around that, otherwise you couldn't run NodeJS
inside docker.
L1637[13:30:21] <Mettaton_fab> how do i
pm?
L1638[13:30:30]
<
MajGenRelativity> Um
L1639[13:30:33] <Shuudoushi> ./dialog
<name>
L1640[13:30:33] <Magik6k> Shuudoushi,
it's exactly tohe one from MPT
L1641[13:30:35]
<
Pwootage> I think I am running it
incorrectly, or something
L1642[13:30:37] <Magik6k> *the
L1643[13:30:42]
<
MajGenRelativity> There should be
another tab or window open with my name?
L1644[13:30:56]
<
Pwootage> Maybe forgetting to
create a device or something
L1645[13:30:57] <Magik6k> but the one on
loot disk /may/ be outdated
L1646[13:31:01] <Mettaton_fab> dude, i'm
on oc
L1647[13:31:06] <Mettaton_fab> in
mc
L1648[13:31:09] <Shuudoushi> Magik6k: ok,
I pulled it from the OC repo
L1649[13:31:13] <gamax92> openirc doesn't
have tabs
L1650[13:31:18] <gamax92> wocchat
does
L1651[13:31:21]
<
MajGenRelativity> Oh
L1652[13:31:22]
<
MajGenRelativity> That is an issue
Mettaton
L1653[13:31:32] <gamax92> if you have t2
or t3 (t3 is recommended) you should switch to wocchat
L1654[13:31:41] <Mettaton_fab> wait,
goota switch systems.
L1655[13:31:43]
<
MajGenRelativity> I recommend
getting an IRC client like Hexchat
L1656[13:31:46] <Michiyo> wocchat is the
win.
L1657[13:31:52]
<
MajGenRelativity> Wat
L1658[13:32:02]
⇦ Quits: Mettaton_fab
(~mettaton_@p54BCB4FE.dip0.t-ipconnect.de) (Remote host closed the
connection)
L1659[13:32:11] <Shuudoushi> right, time
to get ready to work on my car
L1660[13:32:15]
⇨ Joins: Mettaton_Fab
(webchat@p54BCB4FE.dip0.t-ipconnect.de)
L1661[13:32:15]
<
MajGenRelativity> Discord, why you
screwing with my message order in poor data conmection???
L1662[13:32:16] <gamax92> ... what's
default anyway, tree or tabs
L1663[13:32:16] <Michiyo> Have fun
Shuudoushi
L1664[13:32:19] <Shuudoushi> bye till
tonight o/
L1665[13:32:27] <Shuudoushi> Michiyo:
shoot me...
L1666[13:32:32] *
Michiyo shoots Shuudoushi
L1667[13:32:33]
⇨ Joins: MajGenRelativity
(~Hi@2600:1000:b027:2fd5:0:48:c776:fc01)
L1668[13:32:49] ***
Shuudoushi is now known as Shuudoushi|Away
L1669[13:33:09] *
Lizzy is building flatpacked furnature
L1670[13:33:17] <MajGenRelativity>
Mettaton, I sent you a PM
L1671[13:33:18] <Magik6k> Hmm, wocchat
may be nice LuPI benchmark
L1672[13:34:25] <gamax92> Magik6k:
:P?
L1673[13:34:40] <gamax92> Magik6k: did
your native thingy whatever get a native renderer btw, would like
to see it
L1674[13:35:36] <Magik6k> gamax92, asie
is working on direct framebuffor rendering
L1675[13:35:46] <gamax92> yes,
"would like to see it"
L1676[13:35:47] <asie> yes
L1677[13:35:48] <gamax92> code wise
L1678[13:35:49] <Magik6k> With much
success I have to say :D
L1680[13:36:37] *
Lizzy misses vifino
L1681[13:36:43]
⇨ Joins: irc_port
(webchat@agbx7.neoplus.adsl.tpnet.pl)
L1682[13:37:02]
⇦ Quits: irc_port (webchat@agbx7.neoplus.adsl.tpnet.pl)
(Client Quit)
L1683[13:38:10] <gamax92> asie: umm, fb
or framebuffer branches
L1684[13:38:27] <asie> gamax92:
framebuffer
L1685[13:38:30] <asie> but it's also
outdated
L1686[13:38:35] <asie> i'm working on
improving the code
L1687[13:39:09] <Vexatos> Best benchmark:
Run it on the lowest-spec system in a 10km vicinity
L1688[13:39:13] <Vexatos> i.e. a Zipit
Z2
L1689[13:39:29] <asie> uhh
L1690[13:39:35] <asie> it's only the
lowest-spec system in a 2m vicinity
L1691[13:39:40] <asie> my ZX Spectrum
+128K is 2m away
L1692[13:39:58] <Magik6k> ^ That may be a
bit harder
L1693[13:40:05] *
vifino kisses Lizzy and holds her hand
L1694[13:40:18] <gamax92> sadly I don't
have a pi so I can't test most of this
L1695[13:40:38]
⇦ Quits: Mettaton_Fab (webchat@p54BCB4FE.dip0.t-ipconnect.de)
(Quit: Web client closed)
L1696[13:40:39] <Magik6k> gamax92, It
runs on anything with 4M+ of ram
L1697[13:40:40] <Lizzy> YAY
L1698[13:40:47] <gamax92> Magik6k:
oh
L1699[13:40:54] *
Lizzy smothers vifino in kisses
L1700[13:41:14] <gamax92> Magik6k: starts
using OC as main operating system for netbook :P
L1701[13:41:35] <Magik6k> heh
L1702[13:43:38]
⇨ Joins: irc_port
(webchat@agbx7.neoplus.adsl.tpnet.pl)
L1703[13:43:45]
⇦ Parts: irc_port (webchat@agbx7.neoplus.adsl.tpnet.pl)
())
L1704[13:44:08] <Magik6k> I wonder how
hard would it be to replace androin on a phone with it
L1705[13:45:38] <MajGenRelativity> Who is
irc port?
L1706[13:46:27] <gamax92> some poland
person
L1707[13:46:35] <Michiyo> o_O
L1708[13:46:49] <MajGenRelativity>
O_o
L1709[13:46:57] <CompanionCube> who was
phone
L1710[13:47:35] <MajGenRelativity> Who
was you?
L1711[13:47:38] <gamax92> who was not
kill
L1712[13:47:49] <MajGenRelativity> Why
are we here?
L1713[13:47:57] <MajGenRelativity>
Deeeeeeeeep
L1714[13:48:11] <g> who the hell is
CompanionCube?
L1715[13:48:13] <g> never heard of
them
L1716[13:48:15] <Tiktalik> is there a
command to find out how much RAM you have?
L1717[13:48:19] <Tiktalik> and disk
space?
L1718[13:48:23] <CompanionCube> I've
never heard of you either g
L1719[13:48:27] <g> must be some kinda
bot
L1720[13:48:29] <MajGenRelativity>
Lol
L1721[13:48:37] ***
Tiktalik is now known as o
L1723[13:48:47] <MajGenRelativity> CC is
not a bot
L1724[13:48:56] <g> MajGenRelativity:
it's okay, I'm messing around
L1725[13:48:56] <MajGenRelativity>
XD
L1726[13:48:59] <g> I've known him for 8
years
L1728[13:49:01] <MajGenRelativity>
Ik
L1729[13:49:11] <MajGenRelativity> I'm
extremely random and dumb
L1730[13:49:26] <CompanionCube> must
wonder how many people try to get your nick each day
L1731[13:49:38] <g> are you secretly Katy
t3h PeNgU1N oF d00m?
L1732[13:49:44] <Vexatos> o: how about
the df command >_>
L1733[13:49:46] <g> my nick? it doesn't
happen much
L1734[13:49:58] <g> mostly because I'm
using it
L1735[13:50:12] <Vexatos> Like
justasausage
L1736[13:50:18] <justasausage> what
L1737[13:50:27] ***
justasausage is now known as `
L1738[13:50:28] <Vexatos> justasausage,
all your fancy nicknames
L1739[13:50:28] *
` coughs
L1740[13:50:30] <Vexatos> yesss
L1741[13:50:35] <Vexatos> also
justabracket
L1743[13:50:49] <`> or { if i'm feeling
fancy
L1744[13:51:21] <MajGenRelativity> What
about `-` ¿
L1745[13:51:26] <MajGenRelativity>
?
L1746[13:51:37] <g> O remember when esper
didn't force nick changes automatically if you took someone's
nick
L1748[13:51:43] <g> you had to set that
up yourself
L1749[13:51:50] <o> it does that
automatically now?
L1750[13:52:00] <`> You have to enable
nick protection
L1751[13:52:15] <g> afaik that's the
default now
L1752[13:52:20] *
` shrugs
L1753[13:52:28] <`> Wasn't default when I
registered
L1754[13:52:30] <MajGenRelativity> Shrug
on, shrug off
L1755[13:52:54] *
` toggles MajGenRelativity
L1756[13:53:03] *
g sands MajGenRelativity with a sanding machine
L1757[13:53:05] <g> skin on, skin
off..
L1759[13:53:09]
⇨ Joins: MGR
(~Hi@c-24-63-210-98.hsd1.ma.comcast.net)
L1760[13:53:35] <g> My General
Romance
L1761[13:54:31] <MGR> What?
L1762[13:54:42] <g> mom's great
ravioli
L1763[13:55:02] <g> matron gains
raise
L1764[13:55:07] <MGR> Why are you sanding
me?
L1765[13:55:26] <g> meat grilled
rarely
L1766[13:55:44] <MGR> Stahp
L1767[13:55:46]
⇦ Quits: MajGenRelativity
(~Hi@2600:1000:b027:2fd5:0:48:c776:fc01) (Ping timeout: 186
seconds)
L1768[13:55:56] <g> mom greets
redditors
L1769[13:56:08] ***
MGR is now known as MajGenRelativity
L1770[13:56:49] <MajGenRelativity> %flip
g
L1771[13:56:49] <MichiBot>
MajGenRelativity: (╯°□°)╯︵ɓ
L1772[13:57:04] <g> %unflip
L1773[13:57:12] *
g sits on Michiyo / Mimiru
L1774[13:57:36] *
MajGenRelativity sits on g
L1775[13:58:41] <Michiyo> December 15th
2017..... way to long from now
L1776[13:58:54] <g> seems a bit early to
be planning for christmas
L1777[13:59:04] ***
Cranium is now known as Cranium[Away]
L1778[13:59:28] <o> Magik6k: so there's
seriously a guy working on a bsd port?
L1779[13:59:39] <Michiyo> Star Wars Ep
VIII
L1780[14:00:08] <Magik6k> well, I'm not
into details, but yep
L1781[14:00:12] <Magik6k> o ^
L1782[14:00:34] <Magik6k> I made unix
like OS
L1783[14:00:38] <Magik6k> [plan9k]
L1784[14:00:52] <MajGenRelativity> Dec 15
2017 is too far away
L1785[14:01:08] <MajGenRelativity> I
don't like how they got rid of the Legends continuity though
L1786[14:02:04] <o> Magik6k: where do I
find custom OSes?
L1787[14:02:16] <Vexatos> ~w custom
oses
L1789[14:02:21] *
Vexatos takes cover
L1790[14:02:22] <Magik6k> Plan9k is on
loot disk
L1791[14:02:24]
⇦ Quits: sciguyryan (~sciguyrya@37.48.80.241) (Remote host
closed the connection)
L1792[14:02:26] <MajGenRelativity> Plan9k
is a loot floppy
L1793[14:02:29] <Magik6k> OCBSD,
dunno
L1794[14:02:30] <MajGenRelativity>
Snipe!
L1795[14:04:47] <MajGenRelativity> I need
to write a custom EEPROM for my program eventually
L1796[14:06:01]
⇦ Quits: MajGenRelativity
(~Hi@c-24-63-210-98.hsd1.ma.comcast.net) (Quit: The Major shall
return)
L1797[14:06:41]
⇨ Joins: AlexisMachina
(uid57631@id-57631.charlton.irccloud.com)
L1798[14:07:49]
⇨ Joins: CrazyCode
(webchat@house.crazycode.info)
L1799[14:09:59]
⇨ Joins: payonel (webchat@132.188.64.212)
L1800[14:10:06] <payonel> Vexatos:
hello
L1801[14:10:13] <payonel> %seen
Sangar
L1802[14:10:14] <MichiBot> payonel:
Sangar was last seen 1d 23h 51m 33s ago.
L1803[14:13:51] <Vexatos> ?_?
L1804[14:14:46] <Vexatos> ϙ_ϙ
L1805[14:14:52] <Vexatos> Ϙ_Ϙ
L1806[14:14:58] <Vexatos> O_O
L1807[14:15:22] <CrazyCode> Hi. I am
trying to track down a bug and am wondering if anyone has seen
similar (on 1.7.10 latest Open Computers). When using the
inventory_controllers getStackInSlot (or internal varient) the
label minechem elements oxygen when running local game but
element.o when connected to server (tested against our live server
a fresh local server with clone /mods/ /config/)
L1808[14:16:29] <g> that sounds like
something in minechem, unless it's OC that supports it rather than
it supporting OC
L1809[14:16:52] <g> make sure the server
is running the same version of the mods as you are in local
play
L1810[14:17:57]
<
Pwootage> Magik6k: ok so I'm
obviously derping here somewhere, the exact error I'm getting is
'epoll_ctl: Operation not permitted' (I do see a 'LuPI L0
INIT')
L1811[14:18:14]
<
Pwootage> it's definately running
as root (I think, anyway)
L1812[14:18:21] <Magik6k> Pwootage, are
you on linux?
L1813[14:18:22] <CrazyCode> it is.. i ran
up a fresh server cloning the client mods and configs so there is
no difference
L1814[14:18:39]
<
Pwootage> Magik6k: osx
L1815[14:18:43]
<
Pwootage> (running docker which is
linux)
L1816[14:18:51]
<
Pwootage> so... sort of?
L1817[14:19:04] <Magik6k> but does docker
run linux kernel?
L1818[14:19:18]
<
Pwootage> Yes, it has to
L1819[14:19:26]
<
Pwootage> docker is actually
running in a linux VM
L1820[14:19:29] <Magik6k> which
version?
L1821[14:19:37]
<
Pwootage> Good question...
sec
L1822[14:20:19]
<
Pwootage> Linux be038e75f51d
4.1.13-boot2docker #1 SMP Fri Nov 20 19:05:50 UTC 2015 x86_64
GNU/Linux
L1823[14:20:27]
<
Pwootage> (uname -a)
L1824[14:20:28] <Magik6k> lel
L1825[14:20:40] <Magik6k> epoll is since
2.5.442.5.44
L1826[14:20:46] <greaser|q> oh hey i have
4.1.13
L1827[14:20:47] <Magik6k> *2.5.44
L1828[14:20:54] <greaser|q> Linux sas
4.1.13 #2 SMP PREEMPT Sun Jan 10 20:59:52 UTC 2016 x86_64 Intel(R)
Core(TM) i5-2450M CPU @ 2.50GHz GenuineIntel GNU/Linux
L1829[14:21:07] <Magik6k> Linux nexus
4.4.0-rc5-mainline #1 SMP PREEMPT Sat Dec 19 22:56:16 CET 2015
x86_64 GNU/Linux
L1830[14:21:08] <greaser|q> ^ note the
PREEMPT
L1831[14:21:09] <Magik6k> :P
L1832[14:21:11] <greaser|q>
motherfuckers
L1833[14:21:16]
<
Pwootage> Yeah I think I have a
perm issue or am missing a file or something
L1834[14:21:24] <greaser|q> although not
sure what i have to do to get it to say REALTIME
L1835[14:21:29] <greaser|q> maybe it's
that third scheduler option
L1836[14:21:53] <Magik6k> hmmm
L1837[14:22:00] <vifino> 5Linux
vifino-MacBookPro 4.3.1-pf #1 SMP PREEMPT Sat Dec 5 12:53:58 CET
2015 x86_64 GNU/Linux
L1838[14:22:02] <vifino> :D?
L1839[14:22:22]
⇨ Joins: Nathan1852
(~Nathan185@HSI-KBW-134-3-200-62.hsi14.kabel-badenwuerttemberg.de)
L1840[14:22:52]
<
Pwootage> Darwin
Pwootages-MacBook-Pro.local 15.0.0 Darwin Kernel [...]
L1841[14:23:02] <vifino> Pwootages
L1842[14:23:31]
<
Pwootage> Yeah I didn't set that,
autogenerated by osx
L1843[14:23:53] <vifino> skrub
L1844[14:25:46]
⇦ Quits: surferconor425|Cloud
(uid77899@id-77899.tooting.irccloud.com) (Quit: Connection closed
for inactivity)
L1845[14:30:23]
⇨ Joins: Meelock
(webchat@c-98-237-249-34.hsd1.wa.comcast.net)
L1846[14:30:55] <CompanionCube> Linux
arch-desktop 4.3.3-2-ARCH #1 SMP PREEMPT Wed Dec 23 20:09:18 CET
2015 x86_64 GNU/Linux
L1847[14:31:15]
<
Meelock> hello
L1848[14:32:04] <CompanionCube> hi
L1849[14:32:29]
<
Meelock> just wandering, why does
the version checker say that open computers needs to be
updated?
L1850[14:32:44] <CompanionCube> perhaps
because it might be oudated?
L1851[14:33:01]
<
Meelock> (that literaly doesnt make
since)
L1852[14:33:08]
<
Meelock> its the latest
version
L1853[14:33:19] <CompanionCube> are you
entirely sure about that, it might be worth double-checking
L1854[14:33:58]
<
Meelock> ...yes? its the latest
version, just checked. theres only one 1.8.9 version XD
L1855[14:34:32]
<
Pwootage> ah of cousre mknod
doesn't work the same way on osx, might have to wait until I get
home and have proper linux to really mess with this more
L1856[14:34:50]
<
Pwootage> (that or build my docker
image using docker, which I've done once or twice before)
L1857[14:34:56] <CompanionCube> hm
L1858[14:35:29] <Michiyo> Theres a few
1.8.9 builds :P
L1859[14:35:31] <Michiyo> On maven
anywaqy
L1860[14:35:36] <Michiyo> s/q//
L1861[14:35:36] <MichiBot>
<Michiyo> On maven anyway
L1862[14:36:56] <Michiyo> 21.1, 21.2-dev,
21.3-dev, 22.2, 22.3, 22.4-dev, 22.5-dev..
L1863[14:36:56]
<
Meelock> alright but the jenkins
build server hasnt been updated in 4 days, and the website and the
curse forge are still on 1.5.21.1
L1864[14:36:57] <Michiyo> lol
L1865[14:37:42] <Michiyo> 22.3 is on
jenjkins
L1866[14:37:45] <Michiyo> jenkins*
L1867[14:37:48] *
Michiyo stabs RDP
L1868[14:37:51]
<
Pwootage> Magik6k: which fd do you
call epoll_ctl on first? That may clear this up quickly
L1869[14:38:05]
<
Meelock> wat
L1870[14:38:22] <Michiyo>
OpenComputers-MC1.8.9-1.5.22.3.jar
L1873[14:39:07]
<
Meelock> alright ill check that out
(but really the version checker mod currently is REALLY
weird)
L1874[14:39:32]
<
Meelock> *acting
L1875[14:40:21]
<
Meelock> oki bai
L1876[14:40:25] <Michiyo> o/
L1877[14:42:13] <Michiyo> Ohshi...
L1878[14:42:15] ***
Michiyo is now known as Caitlyn
L1879[14:42:30] <Caitlyn> This nick
expired ._.
L1880[14:42:51] ***
Caitlyn is now known as Katie
L1881[14:42:56] ***
Katie is now known as Michiyo
L1882[14:43:17] <Michiyo> I need a script
for that -_-
L1883[14:45:32] <payonel> gamax92: i
actually found a place that the emulator WORDS and in-game
doesnt
L1884[14:45:42] <payonel> works*
L1885[14:45:50] <gamax92> whatzat?
L1886[14:46:25] <payonel> in lua prompt
(/bin/lua.lua from the openos shell prompt)
L1887[14:46:42] <payonel> if i just
=some_table (which invokes serialization)
L1888[14:47:11]
<
Pwootage> I wonder if it's creating
stdin/stdout incorrectly? hm
L1889[14:47:13] <payonel> and that
some_table has __index hits due to custom __pairs ... which then
tries to load() ....
L1890[14:47:18] <payonel> in ocemu, it's
fine
L1891[14:47:28] <payonel> but that yields
out of the lowest coroutine
L1892[14:47:35] <payonel> in ocemu,
that's just another lua coroutine
L1893[14:47:39] <payonel> everyone is
happy
L1894[14:47:43] <gamax92> .-. wtf are you
saying
L1895[14:47:44] <payonel> but in-game,
that's back to java
L1896[14:47:49] <payonel> and lua doesn't
allow that
L1897[14:48:37] <gamax92> I understood
none of that
L1898[14:49:23] <payonel> if you call
yield on the bottom of the stack in-game -- you're trying to yield
back to java
L1899[14:49:33] <payonel> and lua doesn't
like that
L1900[14:49:40] <payonel> you'll get:
attempt to yield across metamethod/C-call boundary
L1901[14:50:02] <payonel> the emulator is
FINE doing that, bc it is a lua coroutine too
L1902[14:52:58] <Magik6k> Pwootage,
stdin
L1903[14:53:00] <Magik6k> 0
L1904[14:53:47]
<
Pwootage> Magik6k: yeah I don't
know why epoll would fail on stdin... that's really weird, it
obviously works in node
L1905[14:54:32]
⇨ Joins: surferconor425|Cloud
(uid77899@id-77899.tooting.irccloud.com)
L1906[14:55:27]
⇦ Quits: CrazyCode (webchat@house.crazycode.info) (Quit: Web
client closed)
L1907[14:57:04]
⇦ Quits: Meelock
(webchat@c-98-237-249-34.hsd1.wa.comcast.net) (Ping timeout: 204
seconds)
L1908[15:15:52]
⇦ Quits: Keanu73 (~Keanu73@host-89-240-96-146.as13285.net)
(Quit: Gotta go to bed or something. See ya!)
L1909[15:18:12] <o> where can I find the
computer api?
L1910[15:18:17] <o> i want to see if the
delay after a beep can be removed
L1911[15:21:18] ***
o is now known as Tiktalik
L1912[15:24:35]
<
MajGenRelativity> Hello
L1913[15:25:37] <Tiktalik> hey
L1914[15:25:37] <Kodos> Gonna go try LOTR
mod =D
L1915[15:26:07] <Tiktalik> is the
computer API part of the gritty bits of the mod that are
inaccessible?
L1916[15:35:42] <Michiyo> Tiktalik
github
L1917[15:36:41] <Tiktalik> Michiyo: I
don't even know what file it might be in
L1918[15:36:56] <Vexatos> ~w computer
api
L1920[15:37:17] <Tiktalik> Vexatos:
looked there
L1921[15:37:24]
⇨ Joins: Doty1154
(~Doty1154@2601:648:8002:c1a1:11a4:4505:36e9:408e)
L1922[15:38:03] <Vexatos> computer.beep
is blocking if you mean that
L1923[15:38:09] <Vexatos> that's why
there is the beep card
L1924[15:38:14] <Tiktalik>
blocking?
L1925[15:38:34] <Tiktalik> beep
card?
L1926[15:38:51] <Vexatos> yes
L1927[15:38:51] <Vexatos> yes
L1928[15:38:53]
⇨ Joins: MajGenRelativity
(~MajGenRel@c-73-186-66-242.hsd1.ma.comcast.net)
L1929[15:39:00] <Tiktalik> what do you
mean by blocking
L1930[15:39:19] <Vexatos> what you mean
by "delay" probably
L1931[15:39:44] <Tiktalik> I mean, after
each beep there's a short time before the next
L1932[15:41:26] <Vexatos> do you
os.sleep()?
L1933[15:41:54] <Tiktalik> no
L1934[15:42:01] <Tiktalik> i've literally
just got a bunch of beeps on a regular ol' computer
L1935[15:42:07] <Tiktalik> and there's a
brief silent period between each one
L1936[15:43:33] <Kodos> That delay is why
I didn't use computer.beep for music
L1937[15:43:45] <Tiktalik> Kodos: did you
use anything else for music?
L1938[15:43:45] <Kodos> Still waiting on
my Chiptune card
L1939[15:44:03] <Michiyo> Chiptune
card?
L1940[15:44:03] <Kodos> The Beep Card
from Computronics, but I never got around to converting my music to
table format
L1941[15:44:11] <Kodos> It was an idea
tossed around ages ago
L1942[15:44:16] <Tiktalik> lol
L1943[15:44:39] <Tiktalik> Kodos: see,
what I want to know is where the hell the beep is handled- is it
actually a java thing that OC just accesses?
L1944[15:44:58] <Tiktalik> or is it lua
that makes a beep
L1945[15:45:09] <Michiyo> well.. it's
scala..
L1946[15:46:12] <Tiktalik> Vexatos: is
computronics 1.8.9?
L1947[15:46:27] <Kodos> Lol
L1948[15:46:35] <Tiktalik> i'm guessing
not
L1949[15:47:47] <Tiktalik> Michiyo: it's
scala?
L1950[15:48:14] <Michiyo> Yeah..
L1951[15:49:09] <Michiyo> I found it in
the API.. but not anywhere else..
L1952[15:49:18] <Michiyo> I'm at work
though.. so kinda hard to really search
L1953[15:49:55] <Kodos> Okay, time to
design a Thaumcraft build
L1955[15:50:33] <Michiyo> That's the API
stuff for it..
L1956[15:50:35] ***
Vic is now known as Vi
L1957[15:50:42] <Michiyo> but that's of
course not the actual beep stuff
L1958[15:51:09]
⇨ Joins: markman4897
(~markman48@user10.c2.kamnik.kabelnet.net)
L1959[15:51:21] <Kodos> I would love to
know what the fuck is giving me autostep in 1.8.9
L1960[15:51:21] <Michiyo> Be responsible
in how you limit calls to this, as each call will cause
L1961[15:51:21] <Michiyo> * a packet to
be sent to all nearby clients, and will cause the receiving
L1962[15:51:21] <Michiyo> * clients to
generate the required sound sample on-the-fly.
L1963[15:51:24] <Michiyo> Wee spam
L1966[15:51:49]
⇦ Quits: markman4897
(~markman48@user10.c2.kamnik.kabelnet.net) (Client
Quit)
L1967[15:52:09]
⇨ Joins: markman4897
(~markman48@user10.c2.kamnik.kabelnet.net)
L1968[15:52:16]
⇦ Quits: markman4897
(~markman48@user10.c2.kamnik.kabelnet.net) (Remote host closed the
connection)
L1969[15:52:20] <Michiyo> -_- my 2 year
old has a sinus infection
L1970[15:52:22] *
Michiyo sighs
L1971[15:52:32] <Kodos> Ouch
L1972[15:53:40] <Tiktalik> now I'm going
to see if I can edit out the delay somehow
L1973[15:53:41] <Inari> at least not
cosinus
L1974[15:53:42] *
Inari hides
L1975[15:54:07] *
Michiyo glares at where Inari.. was
L1976[15:54:49] <Inari> well at the ver
yleast im happy never having to deal with that
L1977[15:55:04] <vifino> never say
never.
L1978[15:55:19]
⇨ Joins: Tedster_
(~Tedster@host86-170-31-233.range86-170.btcentralplus.com)
L1979[15:55:30] <Inari> except for things
im very set at with, yeah :P
L1980[15:55:33] *
vifino throws sinus curves at Inari
L1981[15:55:42] <Inari> i meant 2 year
olds
L1982[15:55:54] <vifino> you don't plan
to have a family?
L1983[15:56:00] <Inari> no?
L1984[15:56:30] <Michiyo> I know lots of
people like that.. lol
L1985[15:56:49] <Inari> i literally cant
stand kids :P
L1986[15:56:50] <Michiyo> Having 2 kids,
I can honestly say, I don't blame them, but I love the fuck outa my
kids :P
L1987[15:57:09] <Inari> or anything
coming with having them for that matter
L1988[15:57:24]
⇨ Joins: Tedster__
(~Tedster@host86-170-31-233.range86-170.btcentralplus.com)
L1989[15:57:34]
⇦ Quits: Tedster
(~Tedster@host86-170-31-233.range86-170.btcentralplus.com) (Ping
timeout: 189 seconds)
L1990[15:58:09] ***
Tedster__ is now known as Tedster
L1991[15:58:10] <Pwootage> Magik6k: i'm
an idiot, stdin was closed, that's why it wasn't working >.>
running it in interactive mode gets me ...further, anyway
L1992[15:58:37] <Inari> i keep mxing up
mimiru and michiyo
L1993[15:58:50] <Inari> similar names,
same colour :P
L1994[15:59:00] <vifino> Michiyo: Let's
not tell her.
L1995[15:59:05]
⇦ Quits: Tedster_
(~Tedster@host86-170-31-233.range86-170.btcentralplus.com) (Ping
timeout: 194 seconds)
L1996[15:59:11] <Pwootage> Magik6k: error
I'm getting now is 'Module textgpu:42: attempt to index a nil value
(field 'sandbox')'
L1997[15:59:25] <Inari> tell what
L1998[16:00:02] <vifino> asie: By the
way, does LuPi have support for just using a terminal as it's
interface and not only a raw frame buffer?
L1999[16:00:07] <Inari> D:
L2000[16:00:10] <asie> vifino: yes
L2001[16:00:10] <Inari> dont just ignore
me
L2002[16:00:13] <asie> but you're limited
to 8 colors then
L2003[16:00:23] <vifino> asie: but but
but 256 colors
L2004[16:00:24] <vifino> D:
L2005[16:00:26] <asie> vifino: but but
but no
L2006[16:00:31] <asie> unless you PR
:D
L2007[16:00:36] <vifino> ugh
L2008[16:00:36] <Michiyo> Inari and the
same person. :P
L2009[16:00:43] <Inari> Michiyo: ah
:P
L2010[16:00:43] <vifino> asie: poke me
with the repo plez
L2011[16:00:44] <Michiyo> vifino sorry
:P
L2012[16:00:52] <Inari> thats even more
confusing xD but k
L2013[16:00:53] <asie> Magik6k: poke
vifino with the repo plez
L2014[16:00:53] *
vifino gives Michiyo the killer eyes
L2015[16:01:05] <Michiyo> I didn't read
it until I'd already hit enter..
L2016[16:01:12] <vifino> .-.
L2017[16:01:31] <Michiyo> Inari this
client sits on one of my servers and controls michibot incase
Kibibyte shows up
L2019[16:01:41] <Pwootage> (I had it
open)
L2020[16:01:43] <Michiyo> I also use it
to chat.. since I'm at work I just RDP into the server
L2021[16:02:24] <Michiyo> I can also
browse and crap without my boss seeing what I'm looking at :P
L2023[16:03:01] <Inari> Michiyo: all the
hentai!
L2024[16:03:43] <Tiktalik> blargh
L2025[16:03:47] <Tiktalik> no beep
card
L2026[16:03:48] *
Dashkal blinks
L2027[16:03:49] <Tiktalik> enforced beep
delay
L2028[16:03:50] <Dashkal> and next
channel...
L2029[16:04:19] <Inari> Dashkal: ?
L2030[16:05:09] <Dashkal> Just responding
to your hentai joke. (Assuming it's a joke, sure as hell not
clicking from the office)
L2031[16:05:22] <Inari> that was actaull
unrealted lol
L2032[16:05:35] <Inari> the joke was at
michiyo being abel to browse things without the boss knowing what
:P
L2033[16:05:41] <Dashkal> I'm channel
surfing, so I miss context.
L2034[16:05:50] <Inari> the 4cdn things
are sfw
L2035[16:05:55] <Dashkal> Currently stuck
on an odd type puzzle at work, so I do that to let my brain rest a
moment
L2036[16:06:04] <Inari> what puzzle
L2037[16:06:19] <Dashkal> I want to pull
a function call through a tuple of optionals
L2038[16:07:29] *
Skye pokes Temia
L2039[16:07:36] *
Temia squeakmoo.
L2040[16:07:50] <Kodos> Does Project E
have a channel
L2041[16:08:28] <Skye> Temia, did you
whois me and accidently click? :P
L2042[16:08:38] <Temia> No
L2043[16:08:44] <Temia> Discussion in
another channel
L2044[16:08:52] <Temia> Also Inari
L2045[16:09:01] <Temia> That comic is
intensely nationalistic, painting Ruby as a rockstar
L2046[16:09:04]
⇦ Quits: malcom2073_ (~quassel@mikesshop.net) (Quit: No Ping
reply in 180 seconds.)
L2047[16:09:15] ***
Daiyousei is now known as SleepingFairy
L2048[16:09:25] <Lizzy> new desk built
and stuff on it \o/
L2049[16:09:33] <Pwootage> Lizzy:
\o/
L2050[16:09:48] <Skye> Temia, now I'm
curious... :P
L2051[16:09:50] <Tiktalik> And
ill-informed, painting PHP as /not/ being an eight armed horrifying
monstrosity.
L2052[16:09:59] <Michiyo> ._.
L2053[16:10:05] <Temia> Boring technical
talk about a Discord/IRC bridge apparently
L2054[16:10:10] <Michiyo> I think I just
pulled something with my eye roll
L2055[16:10:10] <Pwootage> PHP is worse
than that, even
L2056[16:10:10] <Skye> ah
L2057[16:10:17] <Skye> for that join
#obsidian
L2058[16:10:18] <Temia> PHP is
Frankenstein's monster.
L2059[16:10:21] <Skye> and poke
copygirl
L2060[16:10:27] <Temia> Yeah, I
saw.
L2061[16:10:28] <Michiyo> damn it I
pulled something again.
L2062[16:10:42] <Michiyo> you people and
your eye roll worthy comments.
L2063[16:10:45] <Temia> But the other
channel got mentioned too and I accidentally clicked on it.
L2064[16:10:56] <Tiktalik> Well,
obviously in order to get any decent music-making done, I'm gonna
need noteblocks and redstone wire stuff hooked up
L2065[16:11:14] <Michiyo> Or.. just not
use 1.8.9 :P
L2066[16:11:17] <Skye> Temia, #sapphire
is the crazy dump for #obsidian
L2067[16:11:23] <Temia> Ah.
L2068[16:11:30] <Temia> Well, point
being, it was a misclick.
L2069[16:11:33] <Tiktalik> Michiyo: I
already have my mods together and I'm getting 60fps.
L2070[16:11:35] <Michiyo> 1.7.10 is where
it's AT yo
L2071[16:11:37] <Tiktalik> I /like/
1.8.9. >_>
L2072[16:11:41] <Skye> makes sense
L2073[16:11:59] <Michiyo> I get 6-0fps..
:P
L2074[16:15:00] <Michiyo> Man why isn't
it Thrusday, atleast I'd have tomorrow off if it was..
L2075[16:16:57] <Tiktalik> does fnuecke
ever come on?
L2076[16:18:42] <g> anyone bored enough
to give me a hand with some linux?
L2077[16:18:47] <Tiktalik> g: whatcha
need
L2078[16:18:48] <Magik6k> Pwootage,
pushed textgpu fix
L2079[16:18:53] <Tiktalik> oh, he's
sangar
L2080[16:18:56] <Kodos> Ti- yeah
L2081[16:19:03] <Tiktalik> hey sangar you
fucking tease why did you toss a mandatory pause between beeps
>:(
L2083[16:19:09] <g> I've got nginx set up
with http and https, which was working until a little earlier
on
L2084[16:19:25] <g> I noticed nginx
suddenly stopped listening, turns out another process was waiting
for 443 and swiped the port when nginx restarted a process
L2085[16:19:33] <g> I killed the process
that swiped it, nginx started back up
L2086[16:19:40] <g> but now I can't
connect to 443 remotely - only locally
L2087[16:19:44] <g> iptables looks
fine
L2088[16:19:48] <Tiktalik> can't help you
there
L2089[16:19:52] <Tiktalik> that's not
linux, that's nginx :P
L2090[16:19:57] <g> no, nginx is
fine
L2091[16:20:02] <g> it's listening
correctly
L2092[16:20:32] <g> I can see in netstat
that it's listening on 0.0.0.0:443, which is normal
L2093[16:21:56] <g> the connection error
is "connection refused", though. hm.
L2094[16:22:09] <Tiktalik> have
youuuu
L2095[16:22:13] <Tiktalik> tried turning
it off and on again?
L2096[16:22:30] <g> have restarted
today
L2097[16:22:41] <g> not recently, but
would like to avoid that given the amount of stuff I'd have to
restart
L2098[16:22:51] <DeanIsaKitty> g check
the nginx config if it really listens to all incoming
L2099[16:23:32] <g> I just do, eg, listen
443 ssl http2;
L2100[16:23:35] <Kodos> Oh nice, OC stuff
has P:E EMC values
L2101[16:23:58] <Pwootage> Magik6k:
'Module filesystem:60: Filesystem root is not a directory!' (there
is a folder in there named 'root' with openos in it)
L2102[16:24:09] <g> explicitly picking
0.0.0.0:443 doesn't change it
L2103[16:24:22] <DeanIsaKitty> g if you
do precisely that you're fine. Then go check `iptables -L`
L2104[16:24:39] <g> iptables looks fine,
there's an ACCEPT rule for that port and there doesn't appear to be
any denies
L2105[16:25:02] <DeanIsaKitty> does it
work if you go local->global interface?
L2106[16:25:45] <Magik6k> Pwootage, it
should work
L2107[16:25:48] <g> yes, curl -I -k
https://<external ip> works
L2108[16:25:49] <Magik6k> check
rights
L2109[16:25:51] <Magik6k> etc
L2110[16:26:03] <DeanIsaKitty> g: then
the issue is outside that server.
L2111[16:26:12] <g> balls, okay
L2112[16:26:15] <g> time to bitch at
ovh
L2113[16:26:22] <DeanIsaKitty> g: Before
you do that
L2114[16:26:23] <Lizzy> %isup
theender.net
L2118[16:26:39] <DeanIsaKitty> g: Try a
proxy, try using the ip directly etc
L2119[16:26:52] <Lizzy> gg MichiBot /
Mimiru
L2120[16:27:07] ***
Cranium[Away] is now known as Cranium
L2121[16:27:10] <g> why does it assume
http
L2123[16:27:24] <Lizzy> i think it just
adds that
L2124[16:27:24] <DeanIsaKitty> g: nvm,
https on ultros is down for me too
L2125[16:27:34] <g> DeanIsaKitty: it's up
for isitup.org though
L2126[16:27:56] <DeanIsaKitty> g: Failed
to connect to ultros.io port 443: Connection refused.
L2127[16:28:00] <g> unless that's just
testing 80
L2129[16:28:07] <DeanIsaKitty> Do you do
filtering based on origin? <.<
L2130[16:28:13] <Michiyo> yeah...
michibot just sticks the http:// on the front.. idk why :/
L2131[16:28:17] <DeanIsaKitty> Because if
so you deserve a slap
L2132[16:28:38] <g> filtering based on
origin?
L2133[16:28:44] <g> you mean, the IP it's
coming from?
L2134[16:28:45] <g> if so, no
L2135[16:28:49] <DeanIsaKitty> Yeah
that
L2136[16:29:16] <g> it'd time out instead
of being refused if it hit the firewall in that way anyway
L2137[16:30:25] <Michiyo> pushing a fix
to michibot it'll updaten ext time I restart
L2138[16:30:27] <Michiyo> cust afk
L2139[16:31:34] <Pwootage> Magik6k:
drwxrwxrwx 9 root wheel 306 Jan 20 12:27 root
L2140[16:31:38] <Pwootage> (wheel is
group 0 on osx)
L2141[16:32:36]
⇦ Quits: MichiBot (~lb@eos.pc-logix.com) ()
L2142[16:32:37] <Magik6k> lel
L2143[16:33:08]
⇨ Joins: MichiBot (~lb@eos.pc-logix.com)
L2144[16:33:08]
zsh sets mode: +v on MichiBot
L2147[16:34:42]
⇦ Parts: payonel (webchat@132.188.64.212) ())
L2148[16:34:44] <Michiyo> Oh..
L2149[16:34:55] <Michiyo> So fail on
https.. :/
L2150[16:35:42] <Michiyo> I added code to
do https->http cause of self signed certs causing java to flip
out
L2151[16:36:27]
⇦ Quits: MichiBot (~lb@eos.pc-logix.com) (Client
Quit)
L2152[16:36:48] <MajGenRelativity> how do
I get the methods of a component?
L2153[16:36:55] <g> Michiyo: not using
self-signed certs here
L2155[16:37:46] <Michiyo> I didn't figure
you were, but the code is still there to switch all https to
http
L2156[16:38:08] <g> can't you just catch
the exception?
L2157[16:38:22] <MajGenRelativity>
Mimiru/Michiyo, how do I get the methods for the energy
turret
L2158[16:38:29] <MajGenRelativity> it was
component.os_energyturret.xxx
L2159[16:38:31] <Michiyo> Do you see the
bot here currently?
L2161[16:38:41] <MajGenRelativity> I
can't recall the last bit
L2162[16:38:43] <Michiyo> I'm fixing
it.
L2163[16:38:50] <g> that wasn't evident,
but okay
L2164[16:38:53] <Michiyo> :P
L2165[16:39:09] <Michiyo>
MajGenRelativity drop to lua shell, and type
component.os_energyturret.<tab>
L2166[16:39:15] <MajGenRelativity>
:)
L2167[16:39:16] <Michiyo> then tab
through it and you'll get them all
L2168[16:39:16] <MajGenRelativity>
thanks
L2169[16:39:38] <MajGenRelativity>
isOnTarget()?
L2170[16:39:40] <MajGenRelativity> what
does that do?
L2171[16:39:58] ***
amadornes is now known as amadornes[OFF]
L2172[16:40:25]
⇨ Joins: MichiBot (~lb@eos.pc-logix.com)
L2173[16:40:26]
zsh sets mode: +v on MichiBot
L2174[16:40:38] <Michiyo> it has docs.. I
just don't remember how to print them in game
L2175[16:40:45]
⇦ Quits: MichiBot (~lb@eos.pc-logix.com) (Client
Quit)
L2176[16:41:04] <MajGenRelativity> does
it mean it has finished moving?
L2177[16:41:13] <Kodos> To its designated
direction, yes
L2178[16:41:14] <Michiyo> I think so..
I'd have to go look at the code
L2179[16:41:25] <MajGenRelativity> Thx
Kodos
L2180[16:41:34] <Michiyo> god damn it
something has locked the sqllitedb
L2181[16:41:39] <Tiktalik> Kodos: if the
beeper was cool, we could do stuff like this :(
L2183[16:42:25] <Tiktalik>
nevermind
L2184[16:42:28] <Tiktalik> thats a shitty
example
L2186[16:43:03]
⇨ Joins: MichiBot (~lb@eos.pc-logix.com)
L2187[16:43:04]
zsh sets mode: +v on MichiBot
L2193[16:44:33] <Michiyo> having jenkins
build when I push to github is handy.. lol
L2194[16:44:43] <g> yup, that's what I
have bamboo do
L2195[16:44:48] <g> does jenkins do
deployments too?
L2196[16:44:51] <MajGenRelativity> um, my
turret won't shoot
L2197[16:44:53] <Pwootage> OH BECAUSE
IT"S /sbin/init -.-
L2198[16:45:35] <Michiyo>
MajGenRelativity does it print anything when you try?
L2199[16:45:47] <MajGenRelativity> in
lua, or just in a program?
L2200[16:46:01] <g> Tiktalik: that was
unpleasant to hear through headphones
L2201[16:46:04] <Michiyo> Either...
fire() returns an error
L2202[16:46:23] <Tiktalik> g: pfft, it
just takes some getting used to
L2204[16:46:25] <Pwootage> Moved it, same
problem :(
L2205[16:46:31] <g> DeanIsaKitty, aren't
we in the same datacentre?
L2206[16:46:34] <Michiyo> throw new
Exception("not enough energy"); throw new
Exception("gun hasn't cooled"); throw new
Exception("powered off")
L2207[16:46:37] <g> I'm in the same
datacentre as someone else here
L2208[16:46:37] <Michiyo> or
"true"
L2209[16:46:41] <Michiyo> g, me
L2210[16:46:49] <g> Michiyo, can you
check something quickly?
L2211[16:47:04] <Michiyo> yeah, I just
happen to be on the box that's in the same DC.. :p
L2212[16:47:08] <Michiyo> So is
Michiyo
L2213[16:47:11] <Michiyo> err
MichiBot
L2215[16:47:29] <Michiyo> umm... and now
I have to SSH into eos :P
L2216[16:47:43] <MajGenRelativity>
Michiyo, my program isn't printing anything
L2217[16:47:48] <MajGenRelativity> it
just ends
L2218[16:48:07] <g> Michiyo: oh wait, the
bot is there too? then it's my machine that's the issue
L2220[16:48:13] <Michiyo> g, connection
refused
L2221[16:48:39] <Michiyo> But yeah,
MichiBot is on Eos, which is on Midori, which also hosts Bast
L2222[16:48:48] <Michiyo> bast =
mail
L2223[16:48:54] <Kodos> Jesus, a vanilla
furnace with 5 Arcane Bellows causes a stack of ore to only use 3
coal
L2224[16:48:58] <MajGenRelativity>
Michiyo, how do I get the return?
L2225[16:49:08]
⇦ Quits: Vexatos
(~Vexatos@p200300556E6CB7232D05F0CEFC6B98F6.dip0.t-ipconnect.de)
(Quit: I guess I have to go now. Bye ✔)
L2226[16:49:18] <Michiyo> well... you'd
print it.. or if you're in the lua shell you'd = it
L2227[16:49:20] <g> I seriously have no
idea what could possibly cause this
L2228[16:49:28] <Michiyo> so like
=component.os_energyturret.fire()
L2229[16:49:29] <g> the port is open in
the firewall, server is listening..
L2230[16:49:42] <Michiyo> or.. in script
print(component.os_energyturret.fire())
L2231[16:49:52] <Michiyo> or whatever you
used as a variable for the turret
L2232[16:50:11] <Michiyo> eg turret =
component.os_energyturret print(turret.fire())
L2233[16:51:01] <Michiyo> on error you'll
get like nil error
L2234[16:51:06] <Michiyo> on success
you'll just get true
L2235[16:51:17] <MajGenRelativity>
Michiyo, it was odd
L2236[16:51:46] <MajGenRelativity> nil
pcl.opensecurity.entity.EntityEnergyBolt.func_70016_h(DDD)V
L2237[16:51:53] <Michiyo> ...
L2238[16:52:00] <Michiyo> How the fuck
did you even
L2239[16:52:24] <MajGenRelativity> I did
local turret=component.os_energyturret
L2240[16:52:30] <MajGenRelativity> then
print(turret.fire())
L2241[16:52:41] <Michiyo> I think that
means something is stopping it from spawning it's entity
L2242[16:52:52] <Kodos>
inb4peacefulmodeborks it
L2243[16:53:04] <MajGenRelativity> It
isn't in peaceful kodos
L2244[16:53:25] <MajGenRelativity>
Michiyo, how do i fix?
L2245[16:53:44] <Michiyo> DO you have
some kind of world protection going on...
L2246[16:53:47] <Michiyo> or..
anything?
L2247[16:54:02] <MajGenRelativity> I
don't have any plugins at all, or any kind of mod world protection
that I know of
L2248[16:54:43] <Michiyo>
"net/minecraft/entity/Entity.setVelocity
L2249[16:54:47]
⇨ Joins: sciguyryan (~sciguyrya@95.211.188.225)
L2250[16:54:55] <Michiyo> that's
func_70016_h"
L2251[16:55:00] <MajGenRelativity>
Well
L2252[16:55:03] *
Michiyo stabs "
L2253[16:55:37] <Michiyo>
setVelocity((float)(-Math.sin(yaw) * Math.cos(pitch)),
(float)-Math.sin(pitch), (float)(Math.cos(yaw) *
Math.cos(pitch)));
L2254[16:55:52] <Michiyo> Which means
your yaw or pitch must be... out of bounds some how
L2255[16:55:56] <Ivoah> Where's a link to
the latest download for TIS-3D?
L2256[16:56:00] <MajGenRelativity> it's
0, -30?
L2257[16:56:09] <MajGenRelativity>
Michiyo, I'm going to go eat food
L2258[16:56:12] <Michiyo> try setting it
to 0,0
L2259[16:56:16] <Michiyo> and
firing
L2260[16:56:18] <MajGenRelativity>
Michiyo, will do
L2261[16:56:25] <MajGenRelativity> After
I inhale the food
L2262[16:56:43] <Michiyo> I'm wondering
if it's getting a negitive value in pitch...
L2263[16:56:56] <MajGenRelativity> I
think I did moveTo(90, -30) first
L2264[16:57:09] <Michiyo> I'm thinking
it's the pitch..
L2265[16:58:31] <Michiyo> If so... I have
no idea how to fix it.. woo
L2266[16:59:18] <Michiyo> I fired the gun
with it sitting at a negitive pitch though..
L2267[16:59:28] <MajGenRelativity>
Michiyo, I'll let ya know
L2268[16:59:38] <Michiyo> afk cust
L2269[16:59:43] <MajGenRelativity> If
negative pitch is an issue, it annihilates my idea for the
Enshenya
L2270[17:00:00] <MajGenRelativity> Also,
Michiyo, feature suggestion: laser sharks, nah, laser robots
L2271[17:01:19]
⇦ Quits: Turtle (~SentientT@82-171-92-73.ip.telfort.nl)
(Quit: Nettalk6 - www.ntalk.de)
L2272[17:01:41] <Michiyo> Well if
negitive pitch is the issue, I'm sure I can fix it... one day
L2273[17:01:49] <Michiyo> but no on the
suggestion :P
L2275[17:01:59] <Michiyo> Well..
L2276[17:02:00] <Michiyo> meh
L2277[17:02:13] <Michiyo> laser upgrade
for robots..
L2278[17:02:14] <Michiyo> hmm
L2279[17:02:14] <Kodos> (Yes it's a real
mod)
L2280[17:04:09]
⇦ Quits: Nathan1852
(~Nathan185@HSI-KBW-134-3-200-62.hsi14.kabel-badenwuerttemberg.de)
(Read error: Connection reset by peer)
L2281[17:04:28]
⇨ Joins: IzayaMC (~EiraIRC@210.1.213.55)
L2282[17:04:31] <Michiyo> I'll have to
wait til I get home to even try to figure out how that math
works
L2283[17:05:46]
⇦ Quits: surferconor425|Cloud
(uid77899@id-77899.tooting.irccloud.com) (Quit: Connection closed
for inactivity)
L2284[17:07:45] <g> bah, I'll just
restart the damn server
L2286[17:08:10]
⇦ Quits: Kodos
(webchat@108-226-6-195.lightspeed.stlsmo.sbcglobal.net) (Ping
timeout: 204 seconds)
L2288[17:08:35] <g> I did shutdown -r
now
L2289[17:08:37] <g> and I'm still
here
L2290[17:08:40]
⇦ Quits: Guest52863
(~potato@ultros.tentacles.are.evidently.sexy) (Quit: Twenty Percent
isn't enough!)
L2291[17:08:40]
⇦ Quits: g (~g@ultros.tentacles.are.evidently.sexy) (Quit:
Leaving)
L2292[17:14:18] <Pwootage> AHA /tmp
doesn't exist, that's the problem
L2294[17:15:47] <Michiyo> Fuck yes, I for
one welcome our new.. (old?) english overlords(ladies?)
L2295[17:15:56] <Lizzy> :P
L2296[17:16:26] <Michiyo> If trump wins
I'll gladly fight for England.
L2297[17:16:27] <Michiyo> lol
L2298[17:19:40] <Pwootage> Magik6k:
'Module textgpu:103: attempt to index a nil value (global
'termutils')'
L2299[17:20:08] <Michiyo> 11 effing
painful mindnumbing minutes
L2300[17:20:10] <Michiyo> and now
10
L2301[17:23:22] <MajGenRelativity>
Michiyo, you really should do laser upgrade for robots
L2302[17:23:28] <MajGenRelativity> I
think it's a decent idea
L2303[17:24:39] ***
Shuudoushi|Away is now known as Shuudoushi
L2304[17:25:17] <Magik6k> wut
L2305[17:25:48] <Shuudoushi> that fucking
upper ball joint and (the thing that connects the rack and pinion
to the knuckle, the name escapes me atm...) are going to be the
death of me...
L2306[17:25:50] <Michiyo> anyway counting
drawer, so afk
L2307[17:26:40] <Magik6k> Pwootage, it
can't break like that lol
L2308[17:26:48] <Shuudoushi> Michiyo: if
trump wins, I'll cover your right
L2309[17:26:53] <Pwootage> Magik6k: Let
me try cleaning and rebuilding I GUESS
L2310[17:27:01] <Magik6k> Pwootage, make
build
L2311[17:27:57] <Shuudoushi> Magik6k:
want to hear something kinda funny? term.write() in my login boot
script is crashing SOS :D
L2312[17:28:08] <Shuudoushi> HOW THE
ACTUAL FUCK!
L2313[17:28:22] <Magik6k> gimme
traceback
L2314[17:28:35] <Shuudoushi> give me a
sec
L2315[17:28:39] <Pwootage> Magik6k: how
do I get a traceback?
L2316[17:28:50] <Magik6k> That was to
Shuudoushi :P
L2318[17:29:36] <Magik6k> Ah, that's
vanilla OC
L2319[17:30:10]
⇦ Quits: sciguyryan (~sciguyrya@95.211.188.225) (Remote host
closed the connection)
L2320[17:30:20] <Shuudoushi> line 746 is
value = text:gsub("\0", "") which is part of
methods:write()
L2321[17:30:26] <Pwootage> Magik6k: 'make
build' and it's still giving that error
L2322[17:31:15] <Shuudoushi> I'm going to
try io.write and see if it still breaks...
L2323[17:32:27] <Shuudoushi> still
crashing is the same place...
L2324[17:32:33] <Shuudoushi>
s/is/in
L2325[17:32:33] <MichiBot>
<Shuudoushi> still crashing in the same place...
L2326[17:32:54] <Magik6k> Pwootage, it's
like natives didn't load
L2327[17:33:31] <Magik6k> which is not
possible X.X
L2328[17:34:10] <Pwootage> I am running
this on x86, remember, but that shouldn't be an issue
L2329[17:34:18] <Shuudoushi> why is this
crashing like a bitch...
L2330[17:34:29] <Magik6k> oh
L2331[17:34:41] <Shuudoushi> let's make
the init launch the login script and move it somewhere
else...
L2332[17:34:44] <Magik6k> But it did run
on 32 ARM
L2333[17:34:49] <Magik6k> 32bit
L2334[17:35:07] <MajGenRelativity>
Michiyo, pitch is the second number in moveTo, right?
L2335[17:35:44] <MajGenRelativity>
Michiyo, it won't work
L2336[17:35:50] <MajGenRelativity>
Posting issue to GitHub now
L2337[17:36:02] <Pwootage> Magik6k: I am
technically running it on x86_64 but I can set up my pi with docker
to see if it runs on ARM when I get home
L2338[17:36:19] ***
Vaht is now known as Tahg
L2339[17:36:48] <Shuudoushi> right
L2340[17:37:02] <Shuudoushi> so the issue
really is with the term lib...
L2341[17:37:29] <Shuudoushi> why is gsub
returning nil though...
L2342[17:38:31] *
vifino picks up Lizzy and carries her to bed
L2344[17:42:42] <`-`> Oooh, arm? What are
we talking about :DDDDDDDDDDDDD
L2346[17:43:18] <`-`> Nothing
interesting
L2348[17:43:59] <S3> nobody is in this OC
ts server
L2350[17:44:25] <MajGenRelativity> S3,
what?
L2351[17:44:36] <S3> the pc-logix TS
server for OC
L2352[17:45:36] *
MajGenRelativity shrugs
L2353[17:45:39] <MajGenRelativity> my
server has lots of people
L2354[17:45:44] <S3> ohh?
L2355[17:45:48] <S3> for OC?
L2356[17:45:49] <Shuudoushi> I still have
no idea why it wasn't working, but commenting out line 746 has kept
it from crashing at least...
L2357[17:46:09] <S3> what is this
server
L2358[17:46:21] <IzayaMC> As much as I
hate to say it, yes, MGR's server has people.
L2360[17:46:40] <S3> How do I connect to
that?
L2361[17:47:02] <Shuudoushi> this should
be interesting
L2362[17:47:22] <MajGenRelativity> S3, my
server isn't specifically for OC, but it has the mod, yes
L2363[17:47:34] <MajGenRelativity> my irc
channel is #yuonsurvival it has all the stuff you need
L2364[17:47:45] <S3> oh you're talking
about an MC server
L2365[17:47:46] <S3> not a
teamspeak
L2366[17:48:06] <MajGenRelativity> oh,
TS
L2367[17:48:08] <MajGenRelativity>
Teamspeak XD
L2368[17:48:17] <MajGenRelativity> I
thought it was Test Server
L2369[17:48:31] <Shuudoushi> dip shit
lol
L2370[17:48:54]
<
Pwootage> I'd like to say that
teamspeak is empty because we have a discord, but discord is empty
too (mostly)
L2371[17:49:14]
<
MajGenRelativity> Hi Pwootage
L2372[17:49:38] <S3> no I'm talking about
eos.pc-logix.com
L2373[17:49:46] <S3> one of the OC
unofficial TS servers
L2374[17:50:13] <Shuudoushi> oh, I forgot
about that one
L2375[17:50:27] <S3> is on port 9999 man,
you can't forget that
L2376[17:50:59] <MajGenRelativity> ah,
ok
L2377[17:51:08] <MajGenRelativity> well,
you're still welcome on my server :)
L2378[17:51:50] <S3> I gotta program this
Cortex-M4 tonight
L2380[17:52:10] <Shuudoushi> surface
mount?
L2381[17:52:16] <S3> yes.
L2382[17:52:24] <Shuudoushi> best of luck
my friend
L2383[17:54:23] <Shuudoushi> looks like
we have a 9th planet again, this one has a 20k year orbit
L2384[17:55:35] <S3> ok. I need to fix a
netboot
L2385[17:57:53]
⇨ Joins: Nachtara
(~Nachie@50-83-108-134.client.mchsi.com)
L2386[17:58:26] <Shuudoushi> I wonder how
long it would take me to build a cortex m4 in MC using project
red...
L2387[17:58:48] <IzayaMC> Anyone got any
resources on how current BC fillers work?
L2388[17:59:19] <Shuudoushi> is it air?
yes, place block. no, don't place block
L2389[17:59:24] <Shuudoushi> there
L2390[17:59:26] <IzayaMC> ._.
L2391[17:59:29] <Shuudoushi> lol
L2392[17:59:31] <IzayaMC> How do I make
it do anything?
L2393[17:59:44] <Shuudoushi> give it
blocks and power
L2394[17:59:54] <IzayaMC> I want it to
destroy this stone
L2395[17:59:57] <IzayaMC> I gave it
power
L2396[18:00:00] <IzayaMC> set it to clear
mode
L2397[18:00:01] <Shuudoushi> oh, and use
land markers to set the area
L2398[18:00:07] <IzayaMC> and I used land
marks
L2399[18:00:09] <S3> Shuudoushi, too
long
L2400[18:00:12] <IzayaMC> and it has done
zilch
L2401[18:00:20] <S3> look at my old
project to build a 6502 using only pistons and redstone
torches
L2402[18:00:22] <S3> and diodes
L2403[18:00:26] <S3> repeaters*
L2404[18:00:43] <Shuudoushi> S3: I want
to put it into a PR IC
L2405[18:00:53] <Shuudoushi> i.e. pistons
are a no go
L2406[18:00:54] <S3> it would take
thousands.
L2407[18:01:14] <IzayaMC> Why not
something really simple?
L2408[18:01:24] <Shuudoushi> nah, I'm
pretty good at compressing stuff using PR
L2409[18:01:49] <Shuudoushi> Izaya: did
you put glass panels in the filler?
L2410[18:01:56] <Shuudoushi> or is that
the builder...
L2411[18:02:00] <Shuudoushi> either
way
L2413[18:03:32] <Shuudoushi> shut up and
do what I say *hits Izaya with a stick*
L2414[18:04:15] <IzayaMC> I gave it glass
panes
L2415[18:04:18] <IzayaMC> did nothing
still
L2416[18:04:21] <Shuudoushi> I hurt too
much to find the info you require
L2417[18:08:49] ***
AntheusSleep is now known as Antheus
L2418[18:11:03] <Tiktalik> there a mod
that adds rotten flesh to leather for 1.8?
L2419[18:12:28] <Shuudoushi> TC
L2420[18:12:30] <Shuudoushi> iirc
L2421[18:13:09] <Izaya> Antheus, I made a
filler and made it work, now clearing out more of the
basement
L2422[18:14:16] <IzayaMC> EIO batteries
are fun
L2423[18:14:21] <IzayaMC> gah still IRC
>.<
L2424[18:17:07] <Tiktalik> can servers
beep?
L2425[18:18:05] <Antheus> lol
L2426[18:18:09] <Antheus> :P
L2427[18:18:16] <CompanionCube> Izaya,
so#
L2428[18:18:25] <Izaya> so
L2429[18:18:35] *
CompanionCube learned that virtual lisp machines are actually a
thing
L2430[18:18:56] <Izaya> like,
emulators?
L2431[18:19:03] <CompanionCube>
indeed
L2432[18:19:10] <CompanionCube> One made
by the original company even
L2433[18:19:11] <Izaya> of course they
are
L2434[18:19:14] <Izaya> o.O
L2435[18:19:18] <Izaya> okay that was
unexpected
L2436[18:19:38] <Tiktalik> no
seriously
L2437[18:19:45] <CompanionCube> it runs
on linux even
L2438[18:19:46] <Tiktalik> is there
anything that would stop a server from beeping
L2439[18:20:07] <CompanionCube> standard
x86 code
L2440[18:20:08]
⇨ Joins: Something12
(~Something@S010634bdfa9eca7b.vs.shawcable.net)
L2441[18:20:36] <CompanionCube> Izaya,
getting it running successfully involves using positively ancient
releases of Ubuntu
L2442[18:20:57] <Izaya> 11.10?
L2443[18:21:01] <Antheus> Tiktalik,
stoping the program that is making it beep?
L2444[18:21:02] <CompanionCube>
older
L2445[18:21:09] <Izaya> 8.10?
L2446[18:21:16] <CompanionCube> slightly
older
L2447[18:21:18] <Antheus> 1.0
L2448[18:21:24] <Izaya> 8.04?
L2449[18:21:30] <CompanionCube> slightly
older
L2450[18:21:35] <Izaya> 7.10
L2451[18:21:41] <Antheus> irad(22)
L2452[18:21:44] <CompanionCube> one
more
L2453[18:21:49] <Izaya> 7.04
L2454[18:21:51] <Izaya> what the
fuck
L2455[18:21:57] <CompanionCube> Izaya,
that and 6.x
L2456[18:22:58] <CompanionCube> Izaya, it
gets weirder
L2457[18:23:18] <CompanionCube> in that
it is subtly incompatible with versions of Xorg past a certain
point
L2458[18:24:13] <Izaya> Why not use an
open-source emulator?
L2459[18:24:43] <Tiktalik> Antheus: ok,
good to know- I'm pondering writing a controller to make a bunch of
servers play music
L2460[18:24:54] <CompanionCube> Izaya, I
think the source code was actually leaked
L2461[18:27:07] <CompanionCube> can't get
much more accurate than that
L2462[18:27:26] <Izaya> is there a
Winderps version?
L2463[18:27:43] <CompanionCube> what do
you think
L2464[18:27:47] <Shuudoushi> I still have
no idea why line 746 was returning nil and crashing SecureOS... But
commenting it out seems to have "fixed" it
L2465[18:27:57] <Izaya> probably?
L2466[18:29:06] <CompanionCube> Izaya,
considering that's it's run on ancient ubuntu do you really think
Windows would be supported
L2467[18:29:23] <greaser|q> i think i
have one of the oldest versions of ubuntu somewhere
L2468[18:29:35] <greaser|q> oh yeah quick
q, what is ubuntu a *direct* descendant of
L2469[18:29:46] <CompanionCube>
Debian?
L2470[18:29:51] <greaser|q> way too
indirect
L2471[18:29:58] <Izaya> well I was
thinking it's older version of Windows would be easier to run than
an older version of Linux
L2472[18:30:27] <greaser|q> i think
there's two distros between debian and ubuntu in the distro
"family tree" so to speak
L2473[18:30:43] <greaser|q> the one that
comes after debian is knoppix
L2474[18:30:53] <greaser|q> then the one
after that, what's it called? (and then ubuntu follows)
L2475[18:31:27] <greaser|q> i actually
have a copy of that descendant, it's a really fucking important one
as just about every linux distro uses something it introduced these
days, even though Nobody Has Heard Of It Ever
L2476[18:31:43] <Izaya> What
distro?
L2477[18:32:08] <CompanionCube> Izaya, do
you think an emulator for an entirely different CPU architecture
and shit would be easier to write and run on windows
L2478[18:33:00] <Izaya> qemu is a thing I
guess
L2479[18:33:08] <greaser|q> what's the
distro that ubuntu used as a base originally
L2480[18:33:09] <Izaya> does it support
other architectures on Winderps?
L2481[18:33:18] <greaser|q> no it's not
debian, i'm talking about the direct descendant
L2482[18:33:30] <CompanionCube> Izaya,
likely
L2483[18:33:38] <CompanionCube> but it'd
likely be easier to just target *nix
L2484[18:33:53] <greaser|q> ...or at
least the livecd used it
L2485[18:35:33] ***
Cranium is now known as Cranium[Away]
L2487[18:36:42] <Shuudoushi> lol, I think
I broke it XD
L2489[18:42:17] <Mimiru> .
L2490[18:42:50] <MajGenRelativity>
Mimiru, did you get some time to view my github issue?
L2491[18:43:00] <Mimiru> I *just* got
home
L2492[18:43:02] <Mimiru> but yes
L2493[18:43:44] <Shuudoushi> how can all
this be so broken...
L2494[18:44:17] <Shuudoushi> OH YEAH!!!
It's broken b/c I'm the one who proted it...
L2495[18:44:23] <Shuudoushi>
ported*
L2496[18:47:32] <Mimiru>
MajGenRelativity, can't reproduce
L2497[18:47:40] <MajGenRelativity>
?!
L2498[18:47:44] <Shuudoushi> oh
ffs...
L2500[18:48:16] <MajGenRelativity>
hm
L2501[18:48:18] <MajGenRelativity> lemme
try
L2502[18:48:37] <Mimiru> I even watched
the projectile fire
L2503[18:48:43] <Mimiru> and heard the
sound
L2504[18:49:42] <vifino> Awesome. Got
bedrock linux set up.
L2505[18:49:50] <vifino> On alpine. Like
a baws.
L2506[18:50:40]
⇦ Quits: Nachtara (~Nachie@50-83-108-134.client.mchsi.com)
(Killed (NickServ (GHOST command used by Nachie_)))
L2507[18:50:46]
⇨ Joins: Nachtara
(~Nachie@50-83-108-134.client.mchsi.com)
L2508[18:51:22] ***
Cranium[Away] is now known as Cranium
L2509[18:51:33] <Shuudoushi> edit is
working again >.>
L2510[18:52:10] <Shuudoushi> I thought I
removed an old function... but added the new functions to the old
on by mistake >.>
L2511[18:52:21] <Shuudoushi> one*
L2512[18:52:27]
⇦ Quits: Nachtara (~Nachie@50-83-108-134.client.mchsi.com)
(Killed (NickServ (GHOST command used by Nachie_)))
L2513[18:52:30] <Shuudoushi> Mimiru: can
you fire me?
L2514[18:52:31]
⇨ Joins: Nachtara
(~Nachie@50-83-108-134.client.mchsi.com)
L2515[18:52:33] <Shuudoushi> out of a
cannon
L2516[18:52:37] <Shuudoushi> into the
sun...
L2517[18:52:44] <Mimiru> Sure
L2518[18:52:45] <Mimiru> hop in
L2519[18:52:54] *
Shuudoushi crawls into the cannon.
L2520[18:53:05] *
Mimiru aims it at the sun
L2521[18:53:11] *
Mimiru removes all safeties
L2522[18:53:13] *
Mimiru fires
L2523[18:53:30] <Shuudoushi> the size of
the idiot I feel like right now cannot be measured...
L2524[18:53:50] <Shuudoushi> now let's
see if multi-monitor is really working or not :D
L2525[18:55:59] <Shuudoushi> does not
like having the login script as a boot file...
L2527[18:57:55] <Shuudoushi> should I
make the login script just get fired by the init and be done with
it?
L2529[18:58:20] <Mimiru> from a -30 aimed
turret
L2530[18:58:43] <MajGenRelativity>
Mimiru, could it be something in my modpack?
L2531[18:59:24] <Mimiru> Well.. that's
all I can think it could be
L2532[18:59:29] <Mimiru> but I dunno what
would be the issue
L2533[18:59:42] <MajGenRelativity> do you
want the modpack link?
L2534[18:59:48] <MajGenRelativity> you
can even test it on my server :P
L2535[19:00:06] <Mimiru> I'll pass for
now, I'm expecting friends soon
L2536[19:00:26] <MajGenRelativity> ok,
but I do need some help eventually :)
L2537[19:00:30] <MajGenRelativity>
TACEATS2 depends on it
L2538[19:00:52] <Mimiru> Well... do a
binary test of your mods and try to find the offending one in
SP..
L2539[19:02:05] <MajGenRelativity> a
what?
L2540[19:02:08] <Mimiru> I mean.. that's
exactly what I'm going to have to do if I was to test this.
L2541[19:02:16] <MajGenRelativity>
Mimiru, I dunno what a binary test is
L2542[19:02:20] <Mimiru> Binary test...
take out half your mods, and try it.
L2543[19:02:27] <Mimiru> if the issue
exists swap out that half for the otherh alf.
L2544[19:02:28] <MajGenRelativity> oh,
ok
L2545[19:02:38] <MajGenRelativity> I'll
work on that tomorrow
L2546[19:02:42] <Mimiru> if the issue
stops then your issue is in the first half, now half the first
half..
L2547[19:04:02]
⇨ Joins: XP01 (~xp01@ov9.bisecthosting.com)
L2548[19:04:16] *
XP01 waves
L2549[19:04:32] <MajGenRelativity>
welcome back XP01
L2550[19:13:40] *
Saphire yawns ans waves bak to XP01 while trying to stay
awake
L2551[19:15:29] *
Dashkal starts playing relaxing music
L2552[19:17:56] <Tiktalik> Magik6k: you
still here?
L2553[19:22:54] <Magik6k> yup
L2554[19:23:04] <Magik6k> Tiktalik,
^
L2555[19:23:05] <Tiktalik> there any
suggested system specs for plan9k?
L2556[19:23:06] <Tiktalik> i just found
it
L2557[19:23:16] <Magik6k> 2xT2 ram
L2558[19:23:45]
⇦ Quits: IzayaMC (~EiraIRC@210.1.213.55) (Remote host closed
the connection)
L2559[19:24:06] <Tiktalik> ok, so a t2
PC?
L2560[19:24:16] <Magik6k> yup
L2561[19:24:40]
⇦ Quits: Nachtara (~Nachie@50-83-108-134.client.mchsi.com)
(Killed (NickServ (GHOST command used by Nachie_)))
L2562[19:24:46]
⇨ Joins: Nachtara
(~Nachie@50-83-108-134.client.mchsi.com)
L2563[19:29:41]
⇦ Quits: v^ (~v^@c-68-41-215-101.hsd1.mi.comcast.net) (Ping
timeout: 194 seconds)
L2564[19:32:01]
⇨ Joins: v^
(~v^@c-68-41-215-101.hsd1.mi.comcast.net)
L2565[19:32:02]
zsh sets mode: +v on v^
L2566[19:32:40]
⇦ Quits: MajGenRelativity
(~MajGenRel@c-73-186-66-242.hsd1.ma.comcast.net) (Quit: Time to go,
to adventure!)
L2567[19:38:01]
⇨ Joins: surferconor425|Cloud
(uid77899@id-77899.tooting.irccloud.com)
L2568[19:48:47] <Shuudoushi> hmmm
L2569[19:49:14] <Shuudoushi> where should
I put my login script to aim the init to it...
L2570[19:49:37] <Shuudoushi> %seen
sugoi
L2571[19:49:37] <MichiBot> Shuudoushi:
sugoi was last seen 7h 21m 48s ago.
L2572[19:50:14] <Mimiru> Put it over
there
L2573[19:50:17] <Mimiru> between that
thing
L2574[19:50:18] <Mimiru> and the other
one
L2575[19:50:28] *
Shuudoushi sighs.
L2576[19:50:39] <Shuudoushi> /root it is
then
L2577[19:51:06] <Antheus> .-.
L2578[19:52:00]
<
Antheus> ?
L2579[19:52:32]
⇨ Joins: Something12_
(~Something@S010634bdfa9eca7b.vs.shawcable.net)
L2580[19:53:56]
⇦ Quits: Something12
(~Something@S010634bdfa9eca7b.vs.shawcable.net) (Ping timeout: 198
seconds)
L2581[19:54:01]
⇦ Quits: Nachtara (~Nachie@50-83-108-134.client.mchsi.com)
(Read error: Connection reset by peer)
L2582[19:57:01] ***
Antheus is now known as AntheusAFK
L2585[20:09:47]
⇨ Joins: [zzz] (~Something@184.65.42.207)
L2587[20:12:23]
⇦ Quits: Something12_
(~Something@S010634bdfa9eca7b.vs.shawcable.net) (Ping timeout: 198
seconds)
L2589[20:15:24] <Mimiru> not it
L2591[20:16:19] <Pwootage> Magik6k: I'm
home now, getting ready to boot up my raspi and try it there
L2592[20:16:55] <Magik6k> Pwootage,
heh
L2593[20:17:02] <Magik6k> it's 3AM
here
L2594[20:20:58] <Pwootage> Well don't go
to sleep yet I might need more debugging from you ;)
L2597[20:33:10] <Shuudoushi> huh, so exit
will cause a logout...
L2598[20:33:20] <Shuudoushi> fuck it, it
works
L2599[20:42:00] ***
` is now known as {
L2600[20:44:31]
⇨ Joins: Something12_
(~Something@S010634bdfa9eca7b.vs.shawcable.net)
L2601[20:47:29]
⇦ Quits: [zzz] (~Something@184.65.42.207) (Ping timeout: 198
seconds)
L2602[20:53:41]
⇦ Quits: h3po (~h3po@aftr-5-146-248-7.unity-media.net) (Quit:
Leaving.)
L2603[20:58:15] <Shuudoushi> Mimiru: SOS
is almost ready to get a release update
L2604[20:58:31] <Shuudoushi> whens the
next release of OS coming?
L2605[21:02:22] <Shuudoushi> anyone
wouldn't by any chance have the link for #oc espernet webchat link
laying around would they?
L2606[21:02:55]
<
Pwootage> Ok after an emergency fix
to my teamspeak server, finally getting by pi booted up lol
L2607[21:03:04]
<
Pwootage> There's al ink to it on
the wiki somewhere It hink
L2609[21:04:53] <Shuudoushi> holy shit,
he lives!!!!
L2610[21:05:46] <Tiin57> do I?
L2611[21:06:09] <Mimiru> Shuudoushi, no
idea
L2612[21:06:15] <Tiin57> I could still be
a figment of your imagination after all these years
L2613[21:06:26] <Mimiru> Also, Shuudoushi
who the hell are you talking too?
L2614[21:06:49] <Tiin57> Mimiru:
>_> I'm dead, not invisible.
L2615[21:06:56] *
Shuudoushi slaps Mimiru.
L2616[21:06:56] *
EnderBot2 laughs
L2617[21:07:09] *
Mimiru shanks Shuudoushi
L2618[21:07:41] *
Shuudoushi stops the shank and cuts Mimirus head off with
it.
L2619[21:07:51] <Shuudoushi> too
far?
L2620[21:07:54] <Shuudoushi> lol
L2621[21:07:59] <Tiin57>
s/head/genitals/
L2622[21:07:59] <MichiBot>
<Shuudoushi> *** stops the shank and cuts Mimirus genitals
off with it.
L2623[21:08:02] <Tiin57> now it's too
far
L2624[21:08:02] <Mimiru> Immortal
goddess, I care not.
L2625[21:08:12] <Shuudoushi> XD
L2626[21:16:51]
⇦ Quits: fotoply
(~fotoply@2-104-228-18-static.dk.customer.tdc.net) (Read error:
Connection reset by peer)
L2627[21:26:41]
⇨ Joins: calclavia
(uid15812@richmond.irccloud.com)
L2628[21:26:41]
zsh sets mode: +v on calclavia
L2629[21:27:23] ***
bananagram is now known as Porygon
L2630[21:35:45] <Pwootage> whyyyyy, I
don't have a linux box with an sd card reader D:
L2631[21:35:52] <Pwootage> wait maybe I
can boot my mac into an arch disk
L2632[21:44:53] <Shuudoushi> ...
L2633[21:45:02] <Shuudoushi> are you
using a mirco sd/
L2634[21:45:04] <Shuudoushi> ?*
L2635[21:45:16] <Shuudoushi> ...
micro*
L2636[21:45:29] <Shuudoushi> Pwootage:
^
L2637[21:45:46]
⇦ Quits: surferconor425|Cloud
(uid77899@id-77899.tooting.irccloud.com) (Quit: Connection closed
for inactivity)
L2638[21:45:56]
<
Pwootage> I have an adapter but
yeah
L2639[21:46:06] <Shuudoushi> then use
your phone
L2640[21:46:12]
<
Pwootage> Basically I'm installing
arch to a usb I have so I can boot to it on my mac and install that
way
L2641[21:46:26]
<
Pwootage> I need a linux box, my
mac as a port :P (hence installing linux on my usb)
L2642[21:46:51] <Shuudoushi> or you can
just use your phone and a linux box that just has a usb
port...
L2643[21:47:09]
<
Pwootage> Need raw access to the
disk, also my phone doesn' thave a microsd slot :P
L2644[21:47:24] <Shuudoushi> you must
have a samsung...
L2645[21:47:33] <Shuudoushi> or an
iphone
L2646[21:47:34]
<
Pwootage> Neuxus 6
L2647[21:47:39] <Shuudoushi>
ewwww....
L2648[21:47:44]
<
Pwootage> It's awesome
L2649[21:47:55] <Shuudoushi> wait... that
thing does have an SD card in it...
L2650[21:48:01]
<
Pwootage> No sd card slot no
L2651[21:48:16] <Shuudoushi> yes there
is, but it involves taking the phone apart
L2652[21:48:25] <Shuudoushi> and
unsoldering a few things
L2653[21:48:30]
<
Pwootage> yeah no that's not
happening :P
L2654[21:48:33] <Shuudoushi> either way,
not advisable
L2655[21:48:38] <Shuudoushi> lol
L2656[21:49:24] <Shuudoushi> you need to
just get you one of those super cheap ass phone from wal-mart or
whatever and root it
L2657[21:49:59] <Shuudoushi> they make
great SD card readers that you can even use to just quickly
download something
L2658[21:50:04]
<
Pwootage> or a sd/microsd card
reader that's usb
L2659[21:50:13]
<
Pwootage> for like $10 on
amazon
L2660[21:50:31] <Shuudoushi> that's
around the same I would pay for one of the phones I'm talking about
lol
L2661[21:50:51] <Shuudoushi> but i also
use SD cards for flashing car computers
L2662[21:51:03] <Shuudoushi> so using the
phone is easier for me in that case
L2663[21:51:34] <Shuudoushi> "OH...
I forgot something... Where's that phone... Download done, back in
the car this thing goes." lol
L2664[21:52:02] <Shuudoushi> beats
walking back to my computer, logging in and grabbing the file that
way
L2665[21:53:12] <Shuudoushi> btw,
ardouinos make for some decent ECUs :D
L2666[21:53:25] <Shuudoushi> pretty sure
I butchered that, but fuck it
L2667[22:02:13]
<
Pwootage> You did, but yes they
do
L2668[22:10:16]
<
Pwootage> AAAH I DON'T HAVE A CROSS
COMPILER D:
L2669[22:10:26] <Shuudoushi> lol
L2670[22:12:54]
<
Pwootage> I have a script for
building them but it takes like an hour... *sigh*
L2671[22:14:55]
<
Pwootage> may as well start i tI
guess
L2672[22:19:00]
⇨ Joins: VikeStep (~VikeStep@101.184.165.77)
L2673[22:19:17]
⇦ Quits: Lathanael|Away
(~Lathanael@p54961DF0.dip0.t-ipconnect.de) (Ping timeout: 198
seconds)
L2674[22:28:04]
⇨ Joins: Lathanael|Away
(~Lathanael@p54961E2F.dip0.t-ipconnect.de)
L2675[22:53:56] ***
kirby|gone is now known as mrkirby153
L2676[23:08:35] <Pwootage> %tell Magik6k
Aha, it's because the term isn't coming up so 'return' is getting
called, 'if (tcgetattr (STDOUT_FILENO, &old) != 0)
return;'
L2677[23:08:36] <MichiBot> Pwootage:
Magik6k will be notified of this message when next seen.
L2678[23:11:21] <Pwootage> (pretty
obvious once I sat down and actually looked at the code)
L2679[23:19:37]
⇨ Joins: Madxmike
(~Madxmike@71-90-219-250.dhcp.spbg.sc.charter.com)
L2680[23:21:50] ***
Cranium is now known as Cranium[Away]
L2681[23:23:55]
<
Pwootage> Term still broken but
it's running openOS!
L2682[23:24:07] ***
SleepingFairy is now known as Daiyousei
L2683[23:24:58]
⇦ Quits: AlexisMachina
(uid57631@id-57631.charlton.irccloud.com) (Quit: Connection closed
for inactivity)
L2684[23:26:33]
⇨ Joins: npe|office
(~NPExcepti@bps-gw.hrz.tu-chemnitz.de)
L2685[23:27:44]
<
Pwootage> Note to self: run OpenOS
on my 32gb ram linux box, I'm betting it will break (hard)
L2686[23:33:29]
⇦ Quits: Temportalist
(uid37180@id-37180.charlton.irccloud.com) (Quit: Connection closed
for inactivity)
L2688[23:50:12] <MichiBot> Pwootage:
Magik6k will be notified of this message when next seen.