<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:28:44] <Roachy> I recall seeing
something like writing to a screen uses RAM. My robot's screen
stopped showing my debug text output while quarrying. Would that be
a result of running out of memory somehow? If so, how would I go
about clearing that?
L2[01:10:40] ⇦
Quits: Cervator (~Thunderbi@2601:4c1:4000:1050:f556:6174:a15f:ac9e)
(Quit: Cervator)
L3[02:16:36] ⇦
Quits: viomi (~viomi@kurosawa.daviszone.org) (Remote host closed
the connection)
L4[02:31:21] <gamax92> A Fast Voxel
Traversal Algorithm for Ray Tracing
L5[02:32:59] <gamax92> I can apply this for
both block selection and movement collision detection
L6[02:34:16] <gamax92> Instead of slowly
advancing a ray 700 times which somehow works full speed
>_>
L7[02:38:10] <gamax92> Hmm, I'd also need to
know what side of the block I hit it from ...
L8[02:39:25] <gamax92> In both cases, so my
implementation can keep track of that
L9[02:56:12] <gamax92> It'll just give me
both the collision block and the last checked block
L10[03:19:28] ⇨
Joins: Turtle (~SentientT@ip5657cbb2.direct-adsl.nl)
L11[03:31:25] <payonel> Izaya: i saw your
comment about oom on openos, using just cd /fe3 or some such
L12[03:33:28] <payonel> Izaya:
anyways...openos takes 136k to boot, leaving ~60k on a single T1
mem stick
L13[03:34:19] <payonel> using tab complete
will load in about 25k of that [ technically, a lot of libs are
loaded fully for tab complete, redirects, pipes, subcommand
substitution, etc ]
L14[03:34:30] <payonel> but even so, openos
runs fine with 35k free
L15[03:34:53] <payonel> however, if you've
loaded your own libs and junk, or have run programs that loaded
term lib, and such ...
L16[03:34:59] <payonel> then you're left
with even less
L17[03:35:38] <payonel> %tell izaya you
can't use all of openos on 1 stick of t1 ram. all of openos is
about 205 or 210 k, but only 136k is allocated to boot
L18[03:35:39] <MichiBot> payonel: izaya
will be notified of this message when next seen.
L19[03:37:11] ⇨
Joins: Vexatos
(~Vexatos@p200300556E201778B038B5D2F2DCB62B.dip0.t-ipconnect.de)
L20[03:37:11] zsh
sets mode: +v on Vexatos
L21[04:08:46] ⇨
Joins: Inari (~Pinkishu@p4FC1E9CF.dip0.t-ipconnect.de)
L23[04:41:19] <ben_mkiv> lmao
L25[04:42:06] <MichiBot>
Cat In A Shark
Costume Chases A Duck While Riding A Roomba | length:
2m
46s | Likes:
56,662 Dislikes:
1,600 Views:
10,052,601 | by
TexasGirly1979 | Published On 1/11/2012
L26[04:42:43] <Inari> That title :P
L27[04:42:48] <ben_mkiv> ^^
L28[04:42:51] <ben_mkiv> "This should
be the opening video to the interenet"
L29[04:42:52] <ben_mkiv> xD
L31[04:56:59] <ben_mkiv> majestic
<3
L32[05:04:13] <Inari> Ugh, I have this song
stuck in myhead ;-;
L33[05:35:01] ⇦
Quits: ben_mkiv (~ben_mkiv@p4FED4BAF.dip0.t-ipconnect.de) (Ping
timeout: 198 seconds)
L34[05:36:16] ⇦
Quits: g (~g@ultros.tentacles.are.evidently.sexy) (Quit: ZNC -
http://znc.in)
L35[05:38:41] ⇨
Joins: g (~g@ultros.tentacles.are.evidently.sexy)
L36[05:52:30] <Izaya> payonel: T1.5, and
it's an old copy
L37[06:15:46] ⇨
Joins: Thutmose
(~Patrick@2602:30a:c0ab:a810:d879:352c:61fc:f169)
L38[06:31:20] ⇨
Joins: BearishMushroom
(~BearishMu@c-82-209-154-59.cust.bredband2.com)
L39[07:10:36] <AmandaC> Inari: is it the
song that never ends?
L40[07:22:19] <Inari> AmandaC: Hm?
L42[08:40:41] ⇨
Joins: Nachtara
(~Nachiebre@173-22-110-5.client.mchsi.com)
L43[08:56:13] ⇨
Joins: Jobs2k
(webchat@cpc123394-stev9-2-0-cust82.9-2.cable.virginm.net)
L44[08:58:34] <Jobs2k> Hello good people!
If there is any coder here that understands event.listen and
"Bad Arguments" I would be gratefull for some help.
L45[08:59:10] <Mimiru> just show your code
and wait a bit
L46[09:00:51] <Inari> Bare your code
infront of this gazing crowd!
L47[09:03:55] <Jobs2k> local event =
require("event")
event.listen("touch",screenCheck) function
screenCheck(_,_,eventX,eventY,_,playerName) if playerName ~= nil
then print("Event registered by "..playerName.." at
"..eventX.." / "..eventY) end end
L48[09:04:16] <Jobs2k> I don't know how I
can format that to be 'readable'. :(
L49[09:04:25] <Inari> By using
pastebin
L50[09:04:33] <Jobs2k> yeah, good
point
L51[09:04:58] <Inari> Well if you get some
"bad argument" error I'd assume it's because you call
event.listen before creating the function
L52[09:06:58] <Mimiru> Also
touch(screenAddress: string, x: number, y: number, button: number,
playerName: string) that's 5 args returned..
L53[09:07:14] <Mimiru> you've got 6 in your
function, likely means you're not gonna get the data you want
L54[09:09:15] <Jobs2k> Thank you to both of
you! I think it's the positioning that is the issue here then. That
makes the error (bad argument #2) understandable.
L55[09:09:23] <Inari> Damn I just realized
how I could have phrased my earlier line better
L56[09:09:49] <Jobs2k> why would I see some
code out there for OC that has 6 args?
L57[09:10:24] <Jobs2k> how would you have
phrased it? I'm curious now
L58[09:11:33] <Inari> "Lay it all bare
infront of this gazing crowd!" it keeps the meaning the same
in context but makes it sound even lewder
L60[09:11:45] <Mimiru> >_>
L62[09:12:05] <Jobs2k> :D It does!
L63[09:12:14] <Inari> See I find
approval!
L64[09:12:19] <Inari> Notlike Temia who
always spraybottles me instead
L65[09:12:28] <Jobs2k> 0_0
L66[09:12:48] *
Mimiru gets out the supersoaker
L68[09:12:56] *
Izaya pulls out a nerf gun
L69[09:12:58] <Mimiru> fuck this spray
bottle shit.
L70[09:13:13] <Inari> %stab Mimiru's super
soaker tank
L71[09:13:14] *
MichiBot slaps Mimiru's super soaker tank with a micro-singularity
doing [2] damage
L72[09:13:23] <Mimiru> I have more.
L74[09:13:32] <Mimiru> I have
children..
L75[09:13:39] <Inari> Ew children
L76[09:13:40] *
Inari runs
L77[09:13:46] <Izaya> just pu- wait.
L78[09:13:49] <Jobs2k> 2 damage? It's only
leaking, just go full boar!
L79[09:13:50] * Skye
gets out the water bucket
L80[09:13:57] *
Izaya shuts up before he says something questionable
L81[09:14:01] <Mimiru> lol
L82[09:14:06] * Skye
raises an eyebrow at Izaya
L83[09:14:14] <Inari> Hrm
L84[09:14:19] <Inari> I now feel thirsty
though :P
L85[09:14:27] *
Izaya shoots a nerf dart at Skye
L86[09:14:42] *
Izaya turns on the torch and laser pointer attached to his
cheap-ass gun
L87[09:15:01] *
AmandaC wonders why Izaya has a cheap ass-gun.
L88[09:15:02] * Skye
closes her eyes
L89[09:15:16] <Skye> Izaya, do not point
lasers into eyes
L90[09:15:19] *
Izaya totally didn't attach the equivelant of a spoiler to his
shitty nerf gun
L91[09:15:24] <Izaya> Skye: no, just
foreheads
L92[09:15:41] * Skye
opens her eyes
L93[09:15:51] * Skye
walks over to Inari
L94[09:15:58] * Skye
pours the water bucket over Inari
L95[09:16:01] <AmandaC> D:
L97[09:16:04] <MichiBot> Sat Sep 23
17:13:25 CDT 2017 @koopa_kinte: Since “disrespecting the flag” is
still the narrative being used, this courtesy of the US Flag Code
Chapter 10: Respect for flag
L98[09:16:17] *
AmandaC hisses at Skye for dumping water on her ( as she was in
Inari's lap )
L99[09:18:05] * Skye
throws a towel over AmandaC
L100[09:18:31] <Inari> %pet AmandaC
L101[09:18:31] *
MichiBot pets AmandaC with an orange oil lamp. AmandaC recovers 7
health!
L102[09:20:21] <Jobs2k> I'm sitting here
feeling bad I interupted the flow of the story now.
L103[09:20:34] <Skye> what story
L104[09:20:37] <Skye> there's never a
story
L105[09:20:39] <AmandaC> Jobs2k: don't
feel bad, this happens all the time
L106[09:20:40] <Skye> only chaos
L107[09:20:48] <Jobs2k> I still get an
error though
L108[09:21:05] <Jobs2k> I always feel
bad?
L109[09:21:08] <AmandaC> I don't see a
pastebin of the code, yet, tho
L110[09:21:59] <AmandaC> If the OC
Computer has an internet card , you should be able to use `pastebin
put <file>` and get a pastebin.com ID out
L111[09:22:29] <Jobs2k> damn it! Sorry!
Fine, I'll dump the lot ... give me a bit to pull it from the
server ... it doesn't have 'net access'
L112[09:22:52] <AmandaC> ah
L113[09:23:11] <AmandaC> WEll, we can't
help on half the information. The error may not lie wehre you think
it does.
L117[09:27:54] <Mimiru> that code
works
L118[09:28:45] <Inari> this "end end
end" makes me irrationally angry xD
L119[09:28:46] <Jobs2k> so my error is
elsewhere, but I can't understand where ... and I've changed it due
to suggestions here
L120[09:28:56] <Inari> What error do you
get even
L121[09:30:09] <Jobs2k> I know, I prefer
to align ends to the stuff above but I'm trying to keep things on
the screen to find this error
L122[09:30:46] <Inari> What error
though
L123[09:31:06] <Jobs2k> current error from
that code is: bad ergument #2 (number expected, got nil):
L124[09:31:21] <Inari> line?
L125[09:31:58] <Inari> Oh I see
L126[09:32:06] <Inari> probably line 12
and 13 :P
L127[09:32:10] <Mimiru> lots of stuff is
calling "a"
L128[09:32:13] <Mimiru> and nothing is
setting "a"
L129[09:32:19] <Mimiru> cause you've got a
loop commented
L130[09:32:29] <Jobs2k> argument* ... no
line, that's the confusing part. It moves on to stack traceback:
[C]: in function 'error'
L131[09:32:46] <Mimiru> well "a
lot" 2 lines" meh
L132[09:32:50] <Inari> xD
L133[09:32:50] <Mimiru> I should have
slept.
L134[09:32:54] <Inari> I was going to poke
at that
L135[09:32:55] <Inari> :<
L136[09:33:13] <Jobs2k> the 'a' used is
only local to the function from what I understand
L137[09:33:20] <Mimiru>
ele.setBundledOutput(3,a,0)
L138[09:33:27] <Mimiru>
door.setBundledOutput(3,a,0)
L139[09:33:34] <Mimiru> but you have the
loop that sets "a" commented out
L140[09:33:35] <Inari> Jobs2k: line
12/13
L141[09:33:37] <Jobs2k> those can be
commented again
L142[09:33:39] <Mimiru> so a never has a
value.
L143[09:34:06] <Mimiru> then comment them
out, and try again? cause.. that would cause number expected got
nil..
L144[09:34:17] <Jobs2k> not really, not a
long term held value
L145[09:34:27] <Inari> What
L146[09:34:36] <Mimiru> Erm.
L147[09:34:44] <Inari> Look at line
12
L148[09:34:46] <Jobs2k> IT'S FECKING
WORKING!!!!!!!!!!
L149[09:34:49] <Mimiru> they get executed,
with a not having a vlue.
L150[09:35:02] <Mimiru>
"nil"
L151[09:35:21] <Jobs2k> yeha, that's the
bitch that was messing with me!
L152[09:35:22] <Mimiru> thank gods.. I can
close MC again
L153[09:35:26] <Inari> I need to PR a
%slap command
L154[09:36:03] <Jobs2k> Thank you Mimiru
for going that far, and thank you for all who helped me understand
this annoyance!
L155[09:36:41] <Mimiru> %slap Inari
L156[09:36:41] *
MichiBot Slaps Inari
L157[09:36:46] <Mimiru> it's boring, but
it works ;P
L158[09:36:47] <Inari> I mean like %stab
:P
L159[09:36:54] <Inari> Also why is slaps
capitalized
L160[09:36:56] <Inari> p-l-s
L161[09:37:08] <Mimiru> Because fuck
you
L162[09:37:10] <Mimiru> that's why
L163[09:37:15] <Syrren> You know you've
been using Lisp too much when...
L164[09:37:25] <Inari> If I do that, then
on my own terms!
L165[09:37:30] <Mimiru> %delcommand
slap
L166[09:37:30] <MichiBot> Mimiru: Command
deleted
L167[09:37:32] <Jobs2k> That was the final
straw to having a fully working elevator. Now it's just down to
configuring screens on each floor and setting what events
fire
L168[09:37:36] <Mimiru> %addcommand slap
ACTION slaps {0}
L169[09:37:36] <MichiBot> Mimiru: Command
Added
L170[09:37:39] <Syrren> ...you try to
interpret things like this x-y-z as a lisp function
abbreviation
L171[09:38:25] <Mimiru> I'll add something
to the dynamic parser so you can use {item} or whatever to select
an item..
L172[09:39:19] <Syrren> (context: in the
Lisp community, people often refer to functions/variables with
names like "save-buffers-kill-terminal" as s-b-k-t)
L173[09:43:51] <Inari> %give MichiBot a
water extinguisher
L174[09:43:51] *
MichiBot accepts the water extinguisher and adds it to her
inventory
L175[09:55:45]
⇨ Joins: Laine_prikol (~kvirc@85.173.200.183)
L176[10:06:22] <Forecaster> corded has
fallen asleep apparently :P
L177[10:06:42] <Forecaster> or the API
borked, messages are only going one-way currently
L178[10:06:49] <Forecaster> %stab
L179[10:06:50] *
MichiBot flails at nothingness with an orange oil lamp
L180[10:07:37] *
Mimiru shrugs and gives very few fucks
L181[10:08:07] <Forecaster> it'll probably
fix itself eventually or something
L182[10:08:48] ⇦
Quits: Corded (~MichiBot@hekate.pc-logix.com) ()
L183[10:09:03]
⇨ Joins: Corded (~MichiBot@hekate.pc-logix.com)
L184[10:09:03]
zsh sets mode: +v on Corded
L185[10:10:27] <Mimiru> <@Mimiru>
^slap merp
L186[10:10:27] <Mimiru> * MichiBot2 slaps
merp with a music box playing the song of storms
L187[10:10:27] <MichiBot> Mimiru: ohno
D:
L188[10:10:28] <MichiBot> Hello
Mimiru
L189[10:10:31] <Mimiru> ._.
L190[10:10:51] <Forecaster> xD
L191[10:11:27] <Mimiru> addcommand slap
ACTION slaps {0} with [randomitem]
L192[10:15:17] <Mimiru> test
L193[10:15:19] ⇦
Quits: Corded (~MichiBot@hekate.pc-logix.com) ()
L194[10:15:40]
⇨ Joins: Corded (~MichiBot@hekate.pc-logix.com)
L195[10:15:40]
zsh sets mode: +v on Corded
L196[10:15:56] <payonel> %lua
computer.shutdown()
L197[10:15:56] <MichiBot> main:1: attempt
to index global 'computer' (a nil value)
L198[10:16:00] <Mimiru> o_O
L199[10:16:03] <payonel> :P
L200[10:20:03] <Inari> Haha
L201[10:20:17] <Inari> %lua
require("computer")
L202[10:20:17] <MichiBot> main:1: attempt
to call global 'require' (a nil value)
L203[10:20:18] <Inari> :<
L204[10:23:39] ⇦
Quits: Corded (~MichiBot@hekate.pc-logix.com) ()
L205[10:28:20]
⇨ Joins: Corded (~MichiBot@hekate.pc-logix.com)
L206[10:28:20]
zsh sets mode: +v on Corded
L207[10:28:54] <Lizzy> nope, nothing irc
side @Mimiru
L208[10:29:06] <Lizzy> nothign either both
ways by the looks of it
L209[10:29:18] ⇦
Quits: Corded (~MichiBot@hekate.pc-logix.com) (Client
Quit)
L210[10:29:45]
⇨ Joins: Corded (~MichiBot@hekate.pc-logix.com)
L211[10:29:45]
zsh sets mode: +v on Corded
L212[10:30:29] *
Mimiru sighs
L213[10:30:36] <Mimiru> yeah.. it's just
fucked
L214[10:30:40] <Mimiru> so..
whatever
L215[10:30:53] ⇦
Quits: Corded (~MichiBot@hekate.pc-logix.com) (Client
Quit)
L216[10:31:39] ⇦
Parts: Laine_prikol (~kvirc@85.173.200.183) (Once you know what it
is you want to be true, instinct is a very useful device for
enabling you to know that it is))
L217[10:32:19] <Mimiru> I can't update the
JDA version in Corded either.
L218[10:54:44] ⇦
Quits: Mimiru (~Mimiru@2607:5300:61:8d9::1bad:babe) (Quit: ZNC -
http://znc.in)
L219[10:55:01] ⇦
Quits: Michiyo (~Michiyo@mail.pc-logix.com) (Quit:
Leaving)
L220[10:56:54] *
Izaya pokes asie
L221[10:57:09] <Izaya> asie: is DFPWM high
enough quality to store 300 baud modem noise?
L222[10:57:23] <Izaya> (I think it's FSK
but \o/ )
L223[10:58:20] <Skye> Izaya, why do you
need modulation
L224[10:58:34] <Izaya> Skye: no particular
reason
L225[10:58:37] *
Izaya hisses static
L226[11:27:13] <gamax92> I think
greasemonkey is the one to ask about that
L227[11:32:06]
⇨ Joins: Kodos
(~Kodos@2602:306:ce20:6c30:80d1:7b56:8bff:a0e4)
L228[11:32:06]
zsh sets mode: +v on Kodos
L229[11:37:23] <Kodos> o/
L230[11:46:42] <Inari> Woo
L231[11:46:44] <Inari> I tamed
ninjaforms
L232[11:48:15]
⇨ Joins: Cervator
(~Thunderbi@2601:4c1:4000:1050:6cb8:40bd:277d:f4ba)
L233[11:50:46] <gamax92> Inari: tame the
minotaur
L234[11:50:54] <Inari> Haha, no
L235[11:51:01] <Inari> Then again
L236[11:51:04] <Inari> She isn't hard to
tame
L237[11:51:06] <Inari> %pet Temia
L238[11:51:06] *
MichiBot pets Temia with dead HDD. Temia recovers 7
health!
L239[11:51:17] <gamax92> Dead HDD
L240[11:51:20] *
Temia muus?
L241[11:51:21] <gamax92> Good choice
L242[11:51:33] <Temia> Ooh, dead HDD? Can
I hit it with my axe? 'w'
L243[11:51:39] <gamax92> sure
L244[11:51:40] <Inari> Of course
L245[11:51:44] <Temia> \o/
L246[11:51:45] <Inari> %give Temia a dead
HDD
L247[11:51:45] *
MichiBot searches through her inventory for a bit. "I couldn't
find anything..."
L248[11:51:50] <Inari> %give Temia dead
HDD
L249[11:51:50] *
MichiBot gives Temia dead HDD from her inventory
L250[11:51:57] *
Temia yays and takes it out back!
L251[11:52:01] *
Temia WHACK. WHACK. WHACK.
L252[11:52:17] *
Temia returns. "Data securely destroyed."
'w'
L253[11:52:20] <Inari> You should
advertise that as a service
L254[11:52:55] *
Skye overloads acronyms
L255[11:54:00] <Inari> TIL of cute penis
plushies
L256[11:54:11] <gamax92> Woah now
L257[11:54:40] <Temia> <_<;
L258[11:54:56] <Inari> I'm not even sure
if I'm allowed to link those here or not...
L259[11:55:23] <gamax92> Gee what do you
think.
L260[11:55:34] <Inari> They aren't age
filtered on amazon so
L261[11:55:35] <Inari> %shrug
L262[11:55:35] <MichiBot> No you
shrug!
L263[11:56:28] <Temia> ...realtalk, I may
or may not own a plush tentacle >__>;
L264[11:57:02] <Inari> I kinda want one
now ;D
L265[11:58:00] <gamax92> I may or may not
own a plush body pillow
L266[11:58:19] <Inari> I got a body pillow
once, wasn't very fond of it though
L267[11:58:47] <Inari> You must be
/////verryyyy///// lonely if thsoe give you any kinda comfort
L268[12:00:05] <Forecaster> or maybe not
everyone is the same :P
L269[12:00:15] <gamax92> The correct
answer was that I don't own one
L270[12:00:52] <Skye> if you want a body
pillow for... reasons... then it's probably what Inari said or
something. If you just want a big pillow, then I don't see anything
wrong with that
L271[12:01:11] <Inari> I suppose
L273[12:05:31] <MichiBot> Sun Sep 24
12:19:07 CDT 2017 @greenphlem: All the correct answers on my online
quiz are different fonts because my teacher copied/pasted them from
a vocab PD…
https://t.co/UkDjO3vXEZ
L274[12:05:42] <Greenphlem> Lmao
hello
L275[12:06:08] <Inari> Oh
L276[12:06:09] <Inari> Hi :D
L277[12:06:16] <Greenphlem> o/
L278[12:06:23] <Inari> Didn't know you
were here xD
L279[12:11:03] <Forecaster> crap, I may
have half-finished permissions changes in here...
L280[12:11:15] <Inari> Ohhh?
L281[12:11:17] <Inari> What can we
abuse?
L282[12:11:23] <Forecaster> nothing
L283[12:11:43] <Forecaster> I just
replaced michiyo's number based system with a string based one
:P
L284[12:11:59] <Forecaster> which
automatically converts into numbers for levels
L285[12:12:28] <Forecaster> I'm not sure
if I actually finished the conversion though... and just didn't
commit anything...
L286[12:14:40] <Inari> Numbers are
bad
L287[12:15:12] <gamax92> what if it was a
bitmask
L288[12:15:31] <Forecaster> numbers are
annoying for permissions because it's difficult to
re-arrange/insert/remote ranks
L289[12:15:41] <Inari> It's also not super
user friendly
L290[12:15:45] <Forecaster>
s/remote/remove/
L291[12:15:45] <MichiBot>
<Forecaster> numbers are annoying for permissions because
it's difficult to re-arrange/insert/remove ranks
L292[12:16:12]
⇨ Joins: Sladex
(~sladex@94.109-247-67.customer.lyse.net)
L293[12:16:48] <gamax92> is it a list of
tokens now?
L294[12:16:50] ⇦
Quits: rashy (~rashdanml@d154-20-196-69.bchsia.telus.net) (Read
error: Connection reset by peer)
L295[12:17:47] <Forecaster> it's a set of
static strings in Permissions (so you can just do Permissions.ADMIN
when creating a command or such)
L296[12:17:58]
⇨ Joins: rashy
(~rashdanml@d154-20-196-69.bchsia.telus.net)
L297[12:18:07] <Forecaster> those are then
put into a string array which creates the rankings
L298[12:18:15] ⇦
Quits: Sladex (~sladex@94.109-247-67.customer.lyse.net) (Client
Quit)
L299[12:19:07] <Forecaster> 21
L300[12:19:13] <Forecaster> oops
L301[12:19:25] <gamax92> 49
L302[12:19:42] <Forecaster> Inari: can you
join #MichiBot and do ?test
L303[12:36:56]
⇨ Joins: rashdanml
(~rashdanml@d154-20-196-69.bchsia.telus.net)
L304[12:39:14] ⇦
Quits: rashy (~rashdanml@d154-20-196-69.bchsia.telus.net) (Ping
timeout: 186 seconds)
L305[12:41:27]
⇨ Joins: LightDust
(~lightdust@net-47-53-70-147.cust.vodafonedsl.it)
L306[12:41:30] <LightDust> hey
L307[12:42:08] ⇦
Quits: LightDust (~lightdust@net-47-53-70-147.cust.vodafonedsl.it)
(Remote host closed the connection)
L308[12:44:18] <Inari> Bye
L309[12:47:23] <gamax92> hey
L310[13:01:28] <Forecaster> %bye
L311[13:01:28] <MichiBot> Oh, well, bye I
guess...
L312[13:01:35] <Inari> Hehe
L313[13:01:47] <Inari> In a few years
we'll only talk through bot commands
L314[13:03:02] <Forecaster> %silly
L315[13:03:02] <MichiBot> Thats
ridiculous!
L316[13:03:43] <Forecaster> no I did not
add that just for that reply what are these questions
L317[13:04:07] <Forecaster> (I totally
did)
L318[13:05:07] <Kodos> %quote Kodos
L319[13:05:08] <MichiBot> Quote #4:
<Kodos> Life is too short for matching socks.
L320[13:09:43] <Forecaster> %quote
L321[13:09:43] <MichiBot> Quote #139:
<Inari> goes to find thes oruce
L322[13:13:44]
⇨ Joins: Cogitabundus (~HAL@122.15.77.139)
L323[14:09:48] ⇦
Quits: Cogitabundus (~HAL@122.15.77.139) (Quit:
Leaving)
L324[14:29:56] <Inari> wildcard (noun) a
permission to be as lewdly wild as you wish to be
L325[14:40:59] <gamax92> %quote
L326[14:41:00] <MichiBot> Quote #1:
<Lizzy> well, fuck...
L327[14:41:16] <gamax92> %quote
gamax92
L328[14:41:17] <MichiBot> Quote #154:
<gamax92> Inari: it's true though, you can't be stealthy in
heals
L329[14:41:24] <gamax92> mmhm
L330[14:46:46] <AmandaC> %choose snack or
no snack
L331[14:46:47] <MichiBot> AmandaC:
snack
L332[15:19:05]
⇨ Joins: ben_mkiv
(~ben_mkiv@p4fed4baf.dip0.t-ipconnect.de)
L333[16:02:20]
⇨ Joins: Schzd
(~Schzdadep@modemcable250.104-59-74.mc.videotron.ca)
L334[16:06:59] ⇦
Quits: Nachtara (~Nachiebre@173-22-110-5.client.mchsi.com) (Quit:
Blue skidoo, we can too!)
L335[16:11:01]
⇨ Joins: Michiyo (~Michiyo@mail.pc-logix.com)
L336[16:11:01]
zsh sets mode: +o on Michiyo
L337[16:17:57]
⇨ Joins: Corded (~MichiBot@hekate.pc-logix.com)
L338[16:17:57]
zsh sets mode: +v on Corded
L339[16:18:19] <Michiyo> .
L340[16:18:31] <Michiyo> There.
L341[16:19:56]
<Mimiru>
.
L342[16:43:34] ⇦
Parts: Jobs2k
(webchat@cpc123394-stev9-2-0-cust82.9-2.cable.virginm.net)
())
L343[16:46:23] ⇦
Quits: Inari (~Pinkishu@p4FC1E9CF.dip0.t-ipconnect.de) (Quit: 'Any
bang is a good bang‽ Interrobang!')
L344[17:04:21] ⇦
Quits: Vexatos
(~Vexatos@p200300556E201778B038B5D2F2DCB62B.dip0.t-ipconnect.de)
(Quit: I guess I have to go now. Bye ✔)
L345[17:10:10] ⇦
Quits: BearishMushroom
(~BearishMu@c-82-209-154-59.cust.bredband2.com) (Read error:
Connection reset by peer)
L346[18:06:48]
<Mimiru>
Also.. I have no idea what these "categories" are...
nothing looks different
L347[18:17:41] ⇦
Quits: Turtle (~SentientT@ip5657cbb2.direct-adsl.nl) (Read error:
Connection reset by peer)
L348[18:18:04]
⇨ Joins: Mimiru
(~Mimiru@2607:5300:61:8d9::1bad:babe)
L349[18:18:04]
zsh sets mode: +o on Mimiru
L350[18:34:29] <AmandaC> %choose shower
now or forever hold the peace
L351[18:34:30] <MichiBot> AmandaC: shower
now
L352[18:43:54] ⇦
Quits: ben_mkiv (~ben_mkiv@p4fed4baf.dip0.t-ipconnect.de) (Ping
timeout: 200 seconds)
L353[19:04:51] *
AmandaC beams a single drop of water onto Mimiru's head. runs
off
L354[19:29:54] <OneM_Industries> Is there
any documentation for the Computronics switchboard? I can't find
any.
L355[19:32:44] <Kodos> Mimiru, check
Discord for updates
L356[19:35:22] <Mimiru> ?
L357[19:35:46] <Mimiru> I'm in atleast 2
discord servers with categories... and I see nothing
different
L358[19:39:01] <Kodos> Did you get the new
update that had categories? Clients have to update, too. Or are you
saying that OC doesn't have categories but others do
L359[19:39:54] <Mimiru> I'm on the PTB we
supposedly have them
L360[19:41:21] <Kodos> ¯\_(ツ)_/¯
L361[19:44:36]
<Kodos> I
see the categories
L362[19:45:32] <Mimiru> Forecaster said
Railcraft has them, and I don't see them
L363[19:45:42] <Mimiru> Lizzy says her
server has them, and I don't see 'em
L364[19:45:43] <Mimiru> so IDK
L365[19:45:46]
⇨ Joins: Doty1154
(~Doty1154@2601:648:8000:134f:c9cb:2e81:5960:6fc3)
L366[19:48:10]
<Kodos> I'm
not in Railcraft's discord/IRC anymore or I'd look
L367[19:48:32]
<Kodos> You
might try swapping over to the live build
L368[19:48:46] <Mimiru> PTB on server,
normal on desktop
L369[19:52:26] <Mimiru> reinstalled
discord and they show up now
L370[21:30:39] ⇦
Quits: rashdanml (~rashdanml@d154-20-196-69.bchsia.telus.net) (Read
error: Connection reset by peer)
L371[21:31:45]
⇨ Joins: rashy
(~rashdanml@d154-20-196-69.bchsia.telus.net)
L373[21:45:52] *
AmandaC curls up, dozes
L374[21:47:33] ⇦
Quits: rashy (~rashdanml@d154-20-196-69.bchsia.telus.net) (Read
error: Connection reset by peer)
L375[21:48:36]
⇨ Joins: rashy
(~rashdanml@d154-20-196-69.bchsia.telus.net)
L376[21:52:53] ⇦
Quits: Doty1154 (~Doty1154@2601:648:8000:134f:c9cb:2e81:5960:6fc3)
(Quit: Leaving)
L377[22:00:41]
<chernobyl>
How easy is it to change/add new items/features to opencomputers
yourself?
L378[22:01:33] <MineRobber9000> depends on
what you're trying to do
L379[22:01:41] <MineRobber9000> and how
much experience you have with Scala
L380[22:01:49] <MineRobber9000> (the main
development language)
L381[22:02:56]
<chernobyl>
ie a bigger eeprom/more powerful CPU etc
L382[22:03:08] <MineRobber9000> hmmm
L383[22:04:35] <MineRobber9000> the basic
questions: how skilled are you at Scala
L384[22:04:38] <MineRobber9000> this
/2
L385[22:04:41] <MineRobber9000> damn
it
L386[22:04:56] <MineRobber9000> *this
affects how much you'll be able to do
L387[22:05:35]
<chernobyl>
I haven't heard of scala before this lol
L388[22:05:46] <MineRobber9000> then you
may have some problems
L389[22:06:34]
<chernobyl>
the main question is where are the items defined in the .jar file
structure
L390[22:08:30] <MineRobber9000> I think
you're going about this wrong
L391[22:08:51]
<chernobyl>
The mod is contained within the .jar file, no?
L392[22:09:04] <MineRobber9000> the CPU is
defined in li.cil.oc.common.item.CPU
L393[22:09:11] <MineRobber9000> The mod is
open sourced
L394[22:09:12]
<chernobyl>
thanks
L395[22:09:23] <MineRobber9000> you don't
need to go about modifying the JAR
L396[22:09:50]
<chernobyl>
i dont know any other way of doing it
L398[22:10:57] <MineRobber9000> you write
some code and build it (like the mod devs would have
L399[22:11:00] <MineRobber9000>
*have)
L400[22:11:46]
<chernobyl>
with scala i presume
L401[22:12:10] <MineRobber9000> yes
L403[22:14:23] <MineRobber9000>
s/things/files/
L405[22:15:38]
<chernobyl>
GUIs are overrated
L406[22:19:37] <MineRobber9000> ?
L407[22:32:55] ⇦
Quits: Lathanael|Away (~Lathanael@p54960776.dip0.t-ipconnect.de)
(Ping timeout: 186 seconds)
L408[22:39:09]
⇨ Joins: Lathanael|Away
(~Lathanael@p54960BA1.dip0.t-ipconnect.de)
L409[23:17:20]
⇨ Joins: ben_mkiv
(~ben_mkiv@p4fed5fbd.dip0.t-ipconnect.de)
L410[23:45:45]
<Kodos>
@chernobyl Why would you need/want a bigger CPU? It works fine
already