<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:21:20] ⇦
Quits: Kleadron
(Kleadron!~kleadron@c-73-254-147-9.hsd1.wa.comcast.net) (Ping
timeout: 206 seconds)
L2[00:30:21] ⇨
Joins: Kleadron
(Kleadron!~kleadron@c-73-254-147-9.hsd1.wa.comcast.net)
L3[00:38:15] ⇦
Quits: cpw (cpw!~cpw@192-0-136-170.cpe.teksavvy.com) (Ping timeout:
202 seconds)
L4[00:46:28]
<Zef>
Somebody told me they code with html
L5[00:46:41]
<Zef> And
got really pissy at me when I said that html is not a programming
language
L6[00:48:56] <ben_mkiv> but its code
L7[00:49:13] ⇨
Joins: cpw (cpw!~cpw@192-0-136-170.cpe.teksavvy.com)
L8[00:49:32] <ben_mkiv> and its kinda
programming, just not dynamic
L9[00:57:45] <MichiBot> @The_Stargazer
REMINDER: Galaxtone vs Zen1th modjam
L10[01:12:10]
<Forecaster>
%tonk
L11[01:12:11] <MichiBot> Sard! Forecaster!
You beat Kodos's previous record of <0 (By 1 hour, 23 minutes
and 58 seconds)! I hope you're happy!
L12[01:12:12] <MichiBot> Forecaster's new
record is 1 hour, 23 minutes and 58 seconds! Forecaster also gained
0.0014 tonk points for stealing the tonk.
L13[01:12:47]
<Forecaster>
markup is not programming
L15[01:24:26] ⇨
Joins: FeelsbadLemon
(FeelsbadLemon!webchat@cpe-66-91-118-77.hawaii.res.rr.com)
L16[01:25:37] <FeelsbadLemon> How does an
eeprom know what component.proxy does when I can't even do that in
a regular program without using "require" to grab the
component api
L17[01:26:06] <FeelsbadLemon> I'm trying to
learn how to write onto eeprom's so I can start messing with
drones
L18[01:32:22] <fingercomp> `component` is
available in the environment in which the BIOS is executed, but
OpenOS runs scripts in a different environment, without
`component`
L19[01:36:39] <FeelsbadLemon> ah okay.
Could somebody also explain to me in detail the structure of these
parenthesis here? ' modem =
component.proxy(component.list("modem")()) '
L20[01:36:45]
<The_Stargazer> fingercomp: so, globals
only?
L21[01:36:57]
<The_Stargazer> finally I have a legitimate
excuse to use globals!
L22[01:36:58] <FeelsbadLemon> I want to
know why there is an extra () after "modem"
L23[01:37:06]
<The_Stargazer> because it's an iterator
function
L24[01:37:09] <fingercomp> @The_Stargazer
no, you should use a table
L25[01:37:22]
<The_Stargazer> hmm
L26[01:37:45] <FeelsbadLemon> Could you
explain what an iterator function is?
L27[01:37:54]
<The_Stargazer> basically it returns the
next value when called
L28[01:38:15] <FeelsbadLemon> Next value of
what?
L29[01:38:24]
<The_Stargazer> whatever's in the
function
L30[01:38:28]
<The_Stargazer> it's kinda hard to
explain
L31[01:38:39]
<The_Stargazer> in the component.list
case
L32[01:38:42]
<The_Stargazer> the next component
L33[01:38:51]
<The_Stargazer> basically
L34[01:38:56] <fingercomp> in Lua an
iterator is a function that you can put into a `for in` loop
L35[01:38:57]
<The_Stargazer> component.list() returns a
table
L36[01:39:00]
<The_Stargazer> ^
L37[01:39:00]
<The_Stargazer> that
L38[01:39:28] <FeelsbadLemon> so what
purpose do the () serve?
L39[01:39:43] <FeelsbadLemon> can you put
something inside of them? like an integer?
L40[01:39:53] <fingercomp> it just calls
the function to retrieve the value
L41[01:40:19] ⇦
Quits: Cervator
(Cervator!~Thunderbi@2601:4c1:4000:362c:3552:69f2:d9ed:6a3b) (Ping
timeout: 202 seconds)
L42[01:40:40]
<The_Stargazer> fingercomp: idea. Store the
values in a table, then update that table when it receives a
"SET VAR=[blah] VALUE=[blah] AUTHCODE=[blah]"
message
L43[01:40:47]
<The_Stargazer> would that work?
L44[01:41:03] <fingercomp> yeah
L45[01:41:26]
<The_Stargazer> aight, I'll do that
L46[01:42:01] <FeelsbadLemon> so where I'm
really lost is why it's component.list("modem")() and not
just component.list("modem")
L47[01:42:15] <FeelsbadLemon> and forgive
me if this is a really stupid question
L48[01:42:17]
<The_Stargazer> because iterator
functions
L49[01:42:22] <fingercomp>
`component.list("modem")` returns a function that, when
called, returns an address
L50[01:42:25]
<The_Stargazer>
component.list("modem") returns an iterator
L51[01:42:30]
<The_Stargazer> yes
L52[01:42:30]
<The_Stargazer> that
L53[01:43:10] <fingercomp> it's an iterator
because each time you call that function you get another address,
but that doesn't really matter in this case
L54[01:43:23] <FeelsbadLemon> the extra ()
is just using the address to get the value?
L55[01:43:39] <fingercomp> it calls that
function
L56[01:43:43]
<Forecaster>
it's basically
L58[01:44:30] <FeelsbadLemon> Ah that makes
a lot more sense
L59[01:44:44] <FeelsbadLemon> () is just
shorthand for iterator()
L60[01:45:10]
<Forecaster>
it just calls the iterator function without assigning it to a
variable first
L61[01:45:34] <FeelsbadLemon> gotcha
L62[01:45:44]
<Forecaster>
but if you had multiple modems you could do
L64[01:45:59]
<Forecaster>
and the second time you call the iterator it returns the next
modem, and so on
L65[01:46:18] <FeelsbadLemon> oh wow
L66[01:46:19]
<Forecaster>
which you'd do in a loop
L67[01:46:52] <FeelsbadLemon> so is it
really necessary to use an iterator here if I have only one
modem?
L68[01:47:19]
<Forecaster>
yes because you want the list with the modem in it, you want the
first modem in the list
L69[01:47:20] <FeelsbadLemon> or is this
really the only way to call that function
L70[01:47:28]
<Forecaster>
yes because you don't want the list with the modem in it, you want
the first modem in the list [Edited]
L71[01:47:42]
<The_Stargazer> question
L72[01:47:44] <FeelsbadLemon> okay
gotcha
L73[01:48:14]
<The_Stargazer> if I assign a value in a
table to a variable
L74[01:48:14]
<The_Stargazer> then change that
value
L75[01:48:15]
<The_Stargazer> does the variable update
accordingly?
L76[01:48:42]
<Forecaster>
no
L77[01:48:45]
<The_Stargazer> oh
L78[01:48:53]
<The_Stargazer> so it's not a pointer
L79[01:49:01]
<The_Stargazer> is it possible to create a
pointer?
L80[01:49:10]
<The_Stargazer> so that `key` resolves to
`data[1]`
L81[01:49:28]
<The_Stargazer> and if `data[1]` changes
from `blah` to `blahblah`
L82[01:49:28]
<The_Stargazer> `key` becomes
`blahblah`
L83[01:49:33]
<Forecaster>
no idea
L84[01:49:36]
<The_Stargazer> ok
L85[01:53:14] <fingercomp> it is possible,
yes, but there are other ways to handle that
L86[01:53:25] <fingercomp> 1. access the
table directly
L87[01:53:53]
<The_Stargazer> (which I do
currently)
L88[01:53:59] <fingercomp> 2. create a
function that updates the values and returns them so that you can
do `v1, v2, v3 = update(1, 2, 3)`, for example
L89[01:54:43] <fingercomp> finally, if you
really want to use "pointers", wrap each value into a
table and use that table everywhere
L90[01:54:56] <fingercomp> because tables
are always passed by reference
L91[01:55:22] <FeelsbadLemon> How can I use
print() and other basic things like that in an eeprom?
L92[01:55:27] <fingercomp> local value =
{1}; local ref = value; ref[1] = 42; print(value[1]) -->
42
L93[01:55:38] <FeelsbadLemon> am I limited
to component usages like drone.setText and stuff like that?
L94[01:55:48]
<The_Stargazer> uh
L95[01:55:54]
<The_Stargazer> you can send messages over
the modem.
L96[01:55:55] <fingercomp> FeelsbadLemon:
yes
L97[01:56:12]
<The_Stargazer> but yeah if you wanna print
on the drone's teeny tiny screen then yea you are
L98[01:56:35] <FeelsbadLemon> Okay thank
you
L99[01:56:42] <fingercomp> you can make
your own implementation of `print` and use it in the program
L100[01:57:04] <FeelsbadLemon> Oh do you
mind sharing how?
L101[01:57:35]
⇨ Joins: Cervator
(Cervator!~Thunderbi@2601:4c1:4000:362c:3552:69f2:d9ed:6a3b)
L103[02:02:37]
<The_Stargazer> will this (specifically the
`break`) work?
L104[02:02:59]
<Forecaster>
you don't call break
L105[02:03:03]
<The_Stargazer> oh
L106[02:03:10] ⇦
Quits: FeelsbadLemon
(FeelsbadLemon!webchat@cpe-66-91-118-77.hawaii.res.rr.com) (Quit:
webchat.esper.net)
L107[02:03:33]
<The_Stargazer> (basically what it's sposed
to do is throw lots of garbage at a client that didn't send the
right hash until the client gives up)
L108[02:03:44] ⇦
Quits: Kleadron
(Kleadron!~kleadron@c-73-254-147-9.hsd1.wa.comcast.net) (Ping
timeout: 190 seconds)
L109[02:05:44]
<The_Stargazer> the idea is that a
malicious client will crash (or at least close the socket) because
it's having at least a kilobyte of garbage from /dev/random thrown
at it
L110[02:05:56]
<The_Stargazer> in short: it's a DoS
attack, on malicious clients.
L111[02:06:05]
<The_Stargazer> (which is kind of ironic
imo)
L112[02:08:54]
<Forecaster>
sounds fun
L113[02:09:13]
<The_Stargazer> indeed
L114[02:09:37]
<The_Stargazer> you'd never think a
security program would be performing a DoS
L115[02:09:39]
<The_Stargazer> but here we are
L116[02:10:47]
<The_Stargazer> can a thread kill
itself?
L117[02:13:56] <fingercomp> sure, why
not
L118[02:14:26]
<The_Stargazer> so you can call `t:kill()`
from within `t`?
L119[02:14:50] <fingercomp> if you have a
reference to `t`, yes
L120[02:16:07]
<The_Stargazer> what?!
L121[02:16:07]
<The_Stargazer> the thread.. continues
executing? even after I call `t:kill()`
L123[02:16:52]
<The_Stargazer> ok hmm
L124[02:17:01]
<The_Stargazer> even without the call to
`kill()` it still says `dead`
L125[02:18:45]
<Zef>
Because the thread executes it's code and dies
L126[02:18:52]
<The_Stargazer> ah
L127[02:18:54]
<Zef> At
least that's what i think
L128[02:19:04]
<Zef> I've
not used threads much
L130[02:19:16]
<The_Stargazer> any idea if this'll kill it
when the loop breaks?
L131[02:22:13] <fingercomp> no, it will
throw an error because `attackThread` is `nil`
L132[02:22:20] <fingercomp> you don't need
that call anyway
L133[02:22:54] <fingercomp> the thread
should automatically die when it returns from the main
function
L134[02:23:25]
<The_Stargazer> oh ok
L135[02:24:59]
<The_Stargazer> afk
L136[02:31:55]
<The_Stargazer> payonel: can you build OCVM
on a mac with clang?
L137[02:57:59]
<Kodos>
%tonk
L138[02:57:59] <MichiBot> Potzblitz!
Kodos! You beat Forecaster's previous record of 1 hour, 23 minutes
and 58 seconds (By 21 minutes and 49 seconds)! I hope you're
happy!
L139[02:58:00] <MichiBot> Kodos's new
record is 1 hour, 45 minutes and 48 seconds! Kodos also gained
0.00072 (0.00036 x 2) tonk points for stealing the tonk.
L140[03:04:16] ⇦
Quits: ATMunn
(ATMunn!ATMunn@2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.rdns.hellomouse.net)
(Quit: lol rip)
L141[03:04:31]
⇨ Joins: ATMunn (ATMunn!ATMunn@hellomouse.net)
L142[03:20:40]
⇨ Joins: shawn196
(shawn196!~shawn156@c-76-25-73-212.hsd1.co.comcast.net)
L143[03:22:38] ⇦
Quits: {Opsimath}Shawn
({Opsimath}Shawn!~shawn156@c-76-25-73-212.hsd1.co.comcast.net)
(Ping timeout: 190 seconds)
L144[03:25:16]
<Forecaster>
%sip random
L145[03:25:16] <MichiBot> You drink a
solid titanium potion (New!). A tiny genie appears, gives
Forecaster a thumbs up, and poofs away.
L146[03:51:44] ***
brandon3055_ is now known as brandon3055
L147[03:56:13] <ben_mkiv> did anyone work
on porting oc to 1.14 yet?
L148[03:57:15]
<Kodos>
***display screens***
L149[04:27:51]
⇨ Joins: Inari
(Inari!~Pinkishu@pD9E8E6E5.dip0.t-ipconnect.de)
L150[04:28:16]
⇨ Joins: baschdel
(baschdel!~baschdel@2a01:5c0:e09e:7401:da4a:21b2:703f:ebf3)
L151[04:49:18]
<Forecaster>
%tonk
L152[04:49:19] <MichiBot> Goshhawk!
Forecaster! You beat Kodos's previous record of 1 hour, 45 minutes
and 48 seconds (By 5 minutes and 31 seconds)! I hope you're
happy!
L153[04:49:20] <MichiBot> Forecaster's new
record is 1 hour, 51 minutes and 19 seconds! Forecaster also gained
0.00018 (0.00009 x 2) tonk points for stealing the tonk.
L154[05:17:02]
<Kodos> Oh
neat, Bewitchment updated to beta
L155[05:32:11] <Inari> %pet AmandaC
L156[05:32:12] *
MichiBot pets AmandaC with a Magic mysterious fix for the %give
command! (25%). 23 health gained (21+2)!
L157[05:37:55]
<Forecaster>
is that the new Witchery?
L158[05:38:45] ⇦
Quits: baschdel
(baschdel!~baschdel@2a01:5c0:e09e:7401:da4a:21b2:703f:ebf3) (Ping
timeout: 198 seconds)
L159[05:51:43] <ben_mkiv> looks like it
is
L160[06:20:57]
⇨ Joins: Rahix
(Rahix!~Rahix@p578adb1c.dip0.t-ipconnect.de)
L161[06:28:37] ⇦
Quits: ben_mkiv (ben_mkiv!~ben_mkiv@88.130.156.106) (Remote host
closed the connection)
L162[06:42:42]
<Kodos>
Yes
L163[06:42:44]
<Kodos>
%tonk
L164[06:42:45] <MichiBot> Dagnabbit!
Kodos! You beat Forecaster's previous record of 1 hour, 51 minutes
and 19 seconds (By 2 minutes and 5 seconds)! I hope you're
happy!
L165[06:42:46] <MichiBot> Kodos's new
record is 1 hour, 53 minutes and 25 seconds! Kodos also gained
0.00006 (0.00003 x 2) tonk points for stealing the tonk.
L166[06:46:45] <AmandaC> Right, lets
fact-check my subconscious
L167[06:46:58] <AmandaC> %translate ru
soap
L168[06:46:59] <MichiBot> ru soap
L169[06:47:02] <AmandaC> ...
L170[06:47:10] <Inari> Heh
L171[06:47:14] <AmandaC> %translate en ru
soap
L172[06:47:14] <MichiBot> Мыло
L173[06:47:17] <Inari> %pet AmandaC
L174[06:47:18] *
MichiBot pets AmandaC with cookie. 4 health gained!
L175[06:47:35] <AmandaC> %translate en ru
russia
L176[06:47:37] <MichiBot> Россия
L177[06:47:43] <AmandaC> Okay, good
L178[06:48:02] <AmandaC> I'd have been
very concerned if my brain hadn't made up that random fact
L179[06:48:20]
<NotBob> Что
??
L180[06:48:54] <AmandaC> My subconscious
decided that in Russian the same word was used for soap and for
russia
L181[06:49:40] <AmandaC> And it was using
something like kanji to show this, but that's just the usual dream
text jumbling
L182[06:50:08]
<NotBob>
What in the heavens
L183[06:50:11]
<NotBob>
?
L184[06:50:16]
<NotBob> why
soap
L185[06:50:22] <AmandaC> No idea
L186[06:50:35]
<Forecaster>
%eat soap
L187[06:50:35] *
MichiBot snatches it and eats it
L188[06:50:37]
<NotBob> i
dount some country name means a thing
L189[06:50:46]
<NotBob>
%eat Россия
L190[06:50:47] *
MichiBot snatches it and eats it
L191[06:52:16]
⇨ Joins: Vexatos
(Vexatos!~Vexatos@port-92-193-58-217.dynamic.qsc.de)
L192[06:52:16] <AmandaC> This was in the
middle of some kind of massive outbreak if a deadly virus which
happen as some random person in my dream was yelling at her
kindergarten crash for breaking her heart, then turning into some
kind of bird lady
L193[06:52:17]
zsh sets mode: +v on Vexatos
L194[06:53:07] <AmandaC> Ask Inari, she'll
tell you this is part for the course with my dreams though
L195[06:53:39]
<NotBob>
Bruh
L196[06:57:30] <Inari> Haha
L197[06:59:28] <Skye> AmandaC: your dreams
are weird
L198[07:01:10] <Inari> Mine are weird
too
L199[07:01:22] <Inari> For some reason
nuclear annihilation is a somewhat frequent theme in them
L200[07:13:23] <AmandaC> Skye:
yeah...
L201[07:13:42] <AmandaC> And they're
aggressively anti-lucid
L202[07:14:14] <AmandaC> Any time I
discovered a reliable dream sign, it goes away
L203[07:14:25]
<NotBob> i
dont dream
L204[07:14:32]
<NotBob>
ez
L205[07:15:35] <AmandaC> You do, you just
don't remember them
L206[07:15:44] <AmandaC> Everyone
dreams
L207[07:15:46]
<NotBob>
lies
L208[07:15:56]
<NotBob>
time warps as i close my eyes
L209[07:16:00] <AmandaC> It's part of REM
sleep
L210[07:16:17]
<Forecaster>
I only very rarely remember dreaming
L211[07:16:46] <Izaya> just don't enter
rem sleep
L212[07:17:22] <AmandaC> Sure. Enjoy your
30m of sleep at a time
L213[07:18:24] *
Izaya takes a shot
L214[07:20:59]
<NotBob>
Ahahaha
L215[07:22:46] <dequbed> AmandaC: One of
my dreams once included working computers and a C-compiler once. My
brain *really* doesn't want to give me dream signs =.='
L216[07:24:50]
<BobThePotato> I was stuck in a loop in my
previous dream
L217[07:27:04]
<NotBob>
Dreams are a lie
L218[07:30:43]
<Forecaster>
that is true because dreams are not representative of reality
:P
L219[07:31:13]
<Forecaster>
%sip random
L220[07:31:14] <MichiBot> You drink a
fiery black potion (New!). Forecaster gets an urge to have another
potion.
L221[07:31:24]
<Forecaster>
%quaff random
L222[07:31:24] <MichiBot> You drink a
smooth tomato potion (New!). Forecaster forgets the location of a
great treasure.
L223[07:31:25] <Lizzy> %tonk
L224[07:31:25] <MichiBot> I'm sorry Lizzy,
you were not able to beat Kodos's record of 1 hour, 53 minutes and
25 seconds this time. 48 minutes and 40 seconds were wasted! Missed
by 1 hour, 4 minutes and 44 seconds!
L225[07:31:32]
<Forecaster>
aw
L226[07:31:34] <Lizzy> :<
L227[07:50:24]
⇨ Joins: ben_mkiv
(ben_mkiv!~ben_mkiv@88.130.156.106)
L228[07:51:47]
⇨ Joins: Thutmose
(Thutmose!~Patrick@host-69-59-79-181.nctv.com)
L229[07:51:56]
⇨ Joins: Prof_David
(Prof_David!~neuge@2a02:560:4224:c200:7576:88c3:b5d3:52fc)
L230[07:57:59] <Skye> AmandaC: I once had
a dream that was an IRC chat log
L231[07:58:23] <AmandaC> Skye: I used to
frequently get those, then it turned into a dream sign, so they
stopped
L232[07:58:49] <Skye> I never have had my
dreams antagonise me
L233[07:58:57] <Skye> I just have baffling
dreams
L234[08:03:39] <Lizzy> my dreams of late
have been going back to my magical girl transformation ones
L235[08:09:54]
<NotBob>
hecc
L236[08:10:55] ⇦
Quits: Rahix (Rahix!~Rahix@p578adb1c.dip0.t-ipconnect.de) (Remote
host closed the connection)
L237[08:10:59] ⇦
Quits: Prof_David
(Prof_David!~neuge@2a02:560:4224:c200:7576:88c3:b5d3:52fc) (Remote
host closed the connection)
L238[08:12:17]
<Kodos> My
favorite dream was the one where I was a civilian helicopter
pilot
L239[08:14:23] <Lizzy> %tonk
L240[08:14:23] <MichiBot> I'm sorry Lizzy,
you were not able to beat Kodos's record of 1 hour, 53 minutes and
25 seconds this time. 42 minutes and 57 seconds were wasted! Missed
by 1 hour, 10 minutes and 27 seconds!
L241[08:14:30]
<NotBob>
Apache Attack Helicopter
L242[08:14:30] <Lizzy> wait brain
why
L243[08:14:37] <Lizzy> %loot
L244[08:14:37] <MichiBot> Lizzy: You get a
loot box! It contains another settlement that needs your help.
(100%)
L245[08:14:44] <Lizzy> that's what i was
trying to do, stupid brain
L246[08:15:09]
<NotBob>
lmfao
L247[08:15:13]
<NotBob>
%bap Lizzy
L248[08:15:13] *
MichiBot baps Lizzy with Soupy Entertainment System
L249[08:15:21]
<NotBob>
More sleepy than me smh
L250[08:15:49] <Lizzy> nah i just saw my
previous tonk attempt and my brain was like "yes"
L251[08:16:04]
<NotBob>
yes
L252[09:17:06]
⇨ Joins: Prof_David
(Prof_David!~neuge@2a02:560:4224:c200:7576:88c3:b5d3:52fc)
L253[09:32:12] <ben_mkiv> my only
helicopter dream involved a crashing
L254[09:40:00] <AmandaC> Skye: I'm just
thinking my subconcious is a troll
L256[09:51:27]
<Adorable-Catgirl> :GWchinaSakuraThinking:
i wonder if this will werk
L257[09:51:34]
<Adorable-Catgirl> %loot
L258[09:51:34] <MichiBot>
Adorable-Catgirl: You get a loot box! It contains a cookie with
raisins. (100%)
L259[09:51:45]
<Adorable-Catgirl> cool
L260[09:51:49]
<Adorable-Catgirl> it do
L261[09:53:11]
<Adorable-Catgirl> %tonk
L262[09:53:12] <MichiBot> I'm sorry
Adorable-Catgirl, you were not able to beat Kodos's record of 1
hour, 53 minutes and 25 seconds this time. 1 hour, 38 minutes and
48 seconds were wasted! Missed by 14 minutes and 36 seconds!
L263[09:54:08]
<Forecaster>
%loot the cookie
L264[09:54:08] <MichiBot> Forecaster: You
stab the cookie! It dropped a 20ft pole. (100%)!
L265[09:54:09]
<Adorable-Catgirl> %inv add Hi-Point
Firearms Yeet Cannon YC-9
L266[09:54:10] *
MichiBot summons 'Hi-Point Firearms Yeet Cannon YC-9' and adds to
her inventory. This seems rather fragile...
L267[09:54:46]
<Adorable-Catgirl> %loot @Forecaster
L268[09:54:56]
<Adorable-Catgirl> :(
L269[09:55:03]
<Forecaster>
1 minute cooldown
L270[09:55:15]
<Adorable-Catgirl> oh
L271[09:55:16]
<Adorable-Catgirl> i c
L272[09:55:19]
<Adorable-Catgirl> thanks
L273[09:57:25]
<Adorable-Catgirl> %loot @NotBob
L274[09:57:25] <MichiBot>
Adorable-Catgirl: You stab the @NotBob! It dropped a leaf.
(100%)!
L275[09:57:59]
<NotBob>
%slap @Adorable-Catgirl
L276[09:57:59] *
MichiBot slaps @Adorable-Catgirl with demonic laptop doing 4
damage
L277[09:58:05]
<NotBob>
Yes
L278[09:58:09]
<NotBob>
Laptop from hell
L279[09:58:15]
<NotBob>
8752°C
L280[09:58:39]
<Adorable-Catgirl> wait how do i see
michibots inventory
L281[09:59:30]
<NotBob>
:GWlulurdMmmYea:
L282[09:59:40] <Lizzy> %inv list
L284[10:08:02] <ben_mkiv> %loot
L285[10:08:02] <MichiBot> ben_mkiv: You
get a loot box! It contains a frog leg. (100%)
L286[10:08:44] <ben_mkiv> %inv add frog
which is missing a leg
L287[10:08:45] *
MichiBot summons 'frog which is missing a leg' and adds to her
inventory. This seems rather fragile...
L288[10:22:00] <Lizzy> %tonkout
L289[10:22:00] <MichiBot> I'm sorry Lizzy,
you were not able to beat Kodos's record of 1 hour, 53 minutes and
25 seconds this time. 28 minutes and 48 seconds were wasted! Missed
by 1 hour, 24 minutes and 37 seconds!
L290[10:22:14] <Lizzy> whaa
L291[10:22:16] <Lizzy> oh
L292[10:22:23] <Lizzy> catgirl tried it
earlier
L293[10:22:26] <Lizzy> fuuuck
L294[10:38:14] <CompanionCube>
%huggle
L295[10:38:18] <CompanionCube>
%juggle
L296[10:38:18] *
MichiBot juggles with Forecaster's left shoe, a piece of shrapnel
from the big bang, & an inertial API
L297[10:47:35]
<Forecaster>
dammit python
L298[10:47:42]
<Forecaster>
why wont you just create the missing dirs
L299[10:47:51]
<Forecaster>
it does *not* already exist
L300[10:48:57]
<Forecaster>
%stab Python
L301[10:49:47]
<NotBob>
Pythecc
L302[10:50:28]
<Forecaster>
oh, I was using the wrong variable, source instead of target
L303[10:50:41]
<Forecaster>
now it's not finding the file instead
L304[10:56:26] <Temia> womp womp
L305[10:57:57]
<Forecaster>
siiigh
L306[11:08:35]
<Forecaster>
....
L307[11:08:41]
<Forecaster>
mkdir isn't creating the dir
L308[11:08:52]
<Forecaster>
then the link complains that the dir doesn't exist
L309[11:08:54]
<Forecaster>
-_-
L310[11:09:56]
<Forecaster>
and mkdir isn't throwing an error... it just doesn't create
anything...
L311[11:26:17]
<Forecaster>
okay, works better now
L312[11:26:33]
<Forecaster>
for some reason it worked when I ran mkdir in the prompt, but not
in the script...
L313[11:38:34] <Temia> are you sure the
working directories were the same?
L314[11:42:23]
<Forecaster>
it was an absolute path
L315[11:46:18] ⇦
Quits: ben_mkiv (ben_mkiv!~ben_mkiv@88.130.156.106) (Ping timeout:
190 seconds)
L316[11:52:28]
<AdorableCatgirl> %inv add the all new 2001
Isuzu Trooper
L317[11:52:29] *
MichiBot summons 'the all new 2001 Isuzu Trooper' and adds to her
inventory. This seems rather fragile...
L318[12:00:14]
<Forecaster>
well, undid most of that, cause it just messed things up
L319[12:00:35]
⇨ Joins: ben_mkiv
(ben_mkiv!~ben_mkiv@88.130.157.24)
L320[12:11:35] ⇦
Quits: MajGenRelativity
(MajGenRelativity!~MajGenRel@c-73-123-203-209.hsd1.ma.comcast.net)
(Quit: Leaving)
L322[12:20:29]
<Forecaster>
okay?
L323[12:20:56]
<NotBob> *my
time has come*
L324[12:22:04]
<AdorableCatgirl> semiauto hair tie gun
B)
L325[12:22:14]
<AdorableCatgirl> 4 shots, with quick
reload
L326[12:23:37] <Temia> Waiting for it to
be immortalized in the Gungeon
L327[12:30:21]
<AdorableCatgirl> i'm trying to convert a
video to vp9 webm
L328[12:30:34]
<AdorableCatgirl> i should have just used
my threadripper build--
L330[12:31:13]
<AdorableCatgirl> artifacting like a bitch
but w/e
L331[12:31:15]
<NotBob> CPU
COOLER ATTAC
L332[12:31:54] <Temia> I would totally
mess with a D-rank gun that let me fire hair ties and played a
silly elastic twang during the reload sequence
L333[12:32:32]
<AdorableCatgirl> reloading is a bit of a
bitch but
L334[12:32:42]
<AdorableCatgirl> i'll fuckin record
this
L335[12:34:03] <Temia> With practice I'm
sure you can get it
L336[12:36:24] <Temia> I just practiced
with some hair ties in a colour I will likely never use and my old
phone
L337[12:36:36] <Temia> I lost one hairtie
already but I'm enjoying seeing how fast I can reload them
L338[12:37:31]
<AdorableCatgirl> i load 4 at once
L339[12:37:40]
<AdorableCatgirl> sec, gotta convert 3gp to
webm
L340[12:38:25] *
Mimiru grumbles
L341[12:38:37] <Mimiru> Can't login to GTA
cause my damn 2fa app reset.
L342[12:38:48]
<Forecaster>
sounds fun
L343[12:39:06] <Mimiru> Yep, loads.
L344[12:39:19] <Mimiru> Now I have to
contact their support and try to confirm my identity so I can get
it removed.
L345[12:39:29] <Mimiru> So I can then
re-add it.
L346[12:42:37]
<AdorableCatgirl> "explicit
content"
L347[12:42:46]
<AdorableCatgirl> TIL hair ties are
explicit
L349[12:43:22]
<AdorableCatgirl> also watch as i knock my
phone over
L351[12:44:11] <Temia> hgdlg
L352[12:44:31] <Temia> I almost tried to
use my old phone to make a call since it was sitting on my desk and
more familiar to me than my new one ;w;
L353[12:45:00]
<AdorableCatgirl> i have an LG Risio 3 and
an OG LG Stylo
L354[12:45:07]
<AdorableCatgirl> stylo doesn't have
service
L355[12:45:08]
<AdorableCatgirl> yet
L356[12:45:23]
<AdorableCatgirl> gonna switch to t-mobile
soon tbh
L357[12:46:15] <Temia> Old phone was a
Galaxy S Relay 4G (unlocked), and my new one is a Telus-locked
Galaxy S8 .w.
L358[12:46:27] <Temia> With a keyboard
cover because fuck virtual keyboards forever
L359[12:48:30]
<Mimiru>
Keyboard cover for the S8? Linky? :D
L360[12:50:28]
<AdorableCatgirl> i like my old Stylo
L361[12:50:32]
<AdorableCatgirl> it's comfi
L363[12:53:33] <Temia> The layout's a bit
weird, and it seems to still operate with the capacitive
touchscreen through an autodetection mechanism that hooks to the
Samsung keyboard, but it's still nice and tactile, all things
considered
L364[12:54:04]
<Mimiru>
Oh...
L365[12:54:08]
<Mimiru>
That's interesting.
L366[12:54:16] <Temia> I've been
considering trying to get a spare board to take apart and
experiment with, possibly switching the keys with clear ones while
redirecting the hook to another program
L367[13:02:10]
⇨ Joins: Kleadron
(Kleadron!~kleadron@c-73-254-147-9.hsd1.wa.comcast.net)
L368[13:31:10]
<Forecaster>
%tonkout
L369[13:31:11] <MichiBot> Dagnabbit!
Forecaster! You beat Kodos's previous record of 1 hour, 53 minutes
and 25 seconds (By 1 hour, 15 minutes and 44 seconds)! I hope
you're happy!
L370[13:31:11] <MichiBot> Forecaster has
stolen the tonkout! Tonk has been reset! They gained 0.003 tonk
points! plus 0.002 bonus points for consecutive hours! (Reduced to
50% because stealing) Current score: 0.71367
L371[13:46:14] ⇦
Quits: Prof_David
(Prof_David!~neuge@2a02:560:4224:c200:7576:88c3:b5d3:52fc) (Remote
host closed the connection)
L372[13:50:59]
<Kleadron> i
found a dumb bug in my personal modpack where redstone updates
cause the chunk to disappear
L373[13:51:21]
<Kleadron>
im suspecting its optifine
L374[13:53:38]
<Kleadron>
it was
L375[13:55:35]
<NotBob>
obviously optifine
L376[14:00:44]
<Kleadron> i
had an interesting idea to transfer 4 bit data through a single
redstone wire
L377[14:00:52]
<Kleadron>
redstone can have 16 different values
L378[14:01:11]
<Kleadron>
if you change the power level of the redstone you can change the
value
L379[14:01:24]
<Kleadron>
so my idea was to use comparators to transfer the signal
L380[14:01:57]
<Kleadron>
doing this with opencomputers is really impractical and dumb but it
makes it easier to do the concept
L381[14:02:09]
<Kleadron>
but this could be useful in vanilla minecraft
L382[14:03:11]
<NotBob> OC
has Networking so..
L383[14:03:14]
<Kleadron> I
KNOW
L384[14:03:18]
<NotBob> i
mean a redstone system is indeed cool
L385[14:03:26]
<NotBob> but
redstone speed tough
L386[14:03:27]
<NotBob> and
range
L387[14:03:28]
<Kleadron> i
already said this would be impractical and dumb in OC
L388[14:03:49]
<Kleadron>
this is more useful for vanilla minecraft redstone builds
L389[14:04:34]
<Kleadron>
an extension to my idea: if you want to transfer more information
just add more wires
L390[14:05:01]
<NotBob>
obviously
L391[14:09:19]
<Zef> Hold
on
L393[14:09:43]
<Zef> I did
this before
L394[14:09:51]
<Zef> It was
single bits at a time though
L395[14:11:37]
<Zef> Also
you'd have to make a comparator chain, any redstone dust would be
degregating the signla
L396[14:11:41]
<Zef> Also
you'd have to make a comparator chain, any redstone dust would be
degregating the signal [Edited]
L397[14:12:48]
<Kleadron> i
know
L400[14:13:13]
<Kleadron>
the clock signal also has to be delayed
L401[14:14:44]
<AdorableCatgirl> well
L402[14:14:51]
<AdorableCatgirl> ~~projectred~~
L403[14:14:57]
<Kleadron>
hmmm
L404[14:15:08]
⇨ Joins: asie (asie!~asie@asie.pl)
L405[14:15:08]
zsh sets mode: +v on asie
L406[14:15:12] <asie> EXCELLENT NEWS
L408[14:15:18]
<Kleadron>
oh my god why don't i have-
L409[14:15:24]
<Kleadron>
what
L410[14:15:25] <asie> CHARSET SUPPORT FOR
OPENCOMPUTERS
L411[14:15:32] <asie> as in,
SimpleLogic
L412[14:15:44] <Inari> Neat
L413[14:15:47] <Inari> Whats
SimpleLogic
L415[14:15:58] <Vexatos> asie, I will
review this when I have time, so ETA for merge is late september
2020
L416[14:15:58] <asie> wait no
L417[14:16:00] <asie> wrong link
L421[14:16:22] <asie> wait that last one
doesn't owrk either
L423[14:16:31] <Vexatos> I should be
working on my theoretical chemistry report that is due in 1.5
weeks
L425[14:16:35] <Vexatos> but I am not
doing that anyway
L426[14:16:37] <asie> all you need to
know
L428[14:16:55] <Vexatos> payonel, you
here?
L429[14:16:58] <asie> wait, wrong
channel
L430[14:17:15] <Vexatos> asie, we don't
really accept dependencies anymore and instead mirror them
ourselves so I kinda need payonel here I think
L431[14:17:31] <asie> Vexatos: sure, you
know what to mirror tho
L432[14:17:51] <asie> also don't bother
backporting, that you could doesn't mean that you should
L433[14:18:37]
<Kleadron>
this just looks like some version of project red for 1.12
L434[14:18:47] <asie> it has
traditions
L435[14:18:52] <asie> also, it has some
different features than p:red
L436[14:19:13] <asie> and it uses
mcmultipart, so C&B support etc
L438[14:20:56] <Mimiru> payo is not
connected to the bouncer at the moment
L439[14:21:23]
<Forecaster>
leave a message after the beep
L440[14:21:36]
<Forecaster>
*beeeeeeeeees they're everywhere aaaah*
L441[14:22:39] <Inari> Mimiru casually
exosing details
L443[14:29:15]
<Mimiru>
SERVER. FOLDERS.
L445[14:29:37]
<NotBob>
yes
L446[14:29:44]
<NotBob> Its
a thing now
L447[14:29:49]
<NotBob> and
annoying asf when moving servers
L448[14:30:09]
<Mimiru> I
Just left a METRIC ton of discord servers cause I was tired of them
just.. hanging out
L449[14:30:11]
<Mimiru> and
now....
L450[14:30:12]
<Mimiru> NOW
THIS?!
L451[14:30:14]
<Mimiru>
(╯°□°)╯︵ ┻━┻
L452[14:30:21]
<NotBob>
:GWcorbinHolyFuck:
L453[14:30:28]
<Mimiru>
Also, I'm not sure how it's annoying works the same as before
mostly
L454[14:30:49]
<NotBob> as
i try to drop, it makes a folder
L455[14:30:58]
<Mimiru>
Odd, not for me
L456[14:30:58]
<NotBob> i
drop not on a server icon
L457[14:31:19]
<NotBob>
well i have a werid mouse at the same time
L458[14:31:29]
<NotBob> it
can often pentaclick for no reason
L459[14:32:41]
<Mimiru>
Like.. I don't have to scroll my server list anymore.
L460[14:33:26]
<NotBob> all
my visited servers fit on my screen
L461[14:33:27]
<NotBob> so
im ok
L462[14:33:32]
<Brisingr
Aerowing> All my Discords are MC related, so I'm not sure how
I'd put them in folders. By theme?
L463[14:33:39]
<Mimiru> It
was a... long scroll to the bottom of my discord
L464[14:34:04]
<NotBob>
scroll quest : discord edition
L465[14:36:38]
<Mimiru>
FOLDERRRRRRSSSSSSS
L466[14:39:26]
<Forecaster>
neat
L467[14:56:28]
<Kleadron>
oh wow
L468[14:56:40]
<Kleadron>
red alloy wire does actually transfer the redstone power
level
L469[14:56:42]
<Kleadron>
that's useful
L470[15:18:06] <stephan48>
bin/tmux-attach.sh irssi-mac
L471[15:40:13]
⇨ Joins: FeelsbadLemon
(FeelsbadLemon!webchat@cpe-66-91-118-77.hawaii.res.rr.com)
L472[15:40:29] <FeelsbadLemon> is there a
function to get the address of a computer? I'm certain there is but
I can't find it on the wiki.
L473[15:41:42] <Lizzy> didn't you ask that
the other day
L474[15:42:05] <Lizzy> the computer
component should have the address like all components
L475[15:43:18] <FeelsbadLemon> I don't
think so. I've been asking a lot of questions.
L476[15:46:12]
⇨ Joins: test
(test!webchat@cpe-67-255-56-4.stny.res.rr.com)
L477[15:46:24] ⇦
Parts: test (test!webchat@cpe-67-255-56-4.stny.res.rr.com)
())
L478[15:47:37]
⇨ Joins: fwegiowejgiewjg
(fwegiowejgiewjg!webchat@cpe-67-255-56-4.stny.res.rr.com)
L479[15:47:40] ⇦
Parts: fwegiowejgiewjg
(fwegiowejgiewjg!webchat@cpe-67-255-56-4.stny.res.rr.com)
())
L480[15:57:32] <AmandaC>
`computer.addresss()`
L481[15:59:16] <AmandaC> s/sss/ss/
L482[15:59:16] <MichiBot> <AmandaC>
`computer.address()`
L483[16:00:37] <SquidDev> %tonk
L484[16:00:39] <MichiBot> Sard! SquidDev!
You beat Forecaster's previous record of <0 (By 2 hours, 29
minutes and 27 seconds)! I hope you're happy!
L485[16:00:40] <MichiBot> SquidDev's new
record is 2 hours, 29 minutes and 27 seconds! SquidDev also gained
0.00249 tonk points for stealing the tonk.
L486[16:13:38]
⇨ Joins: flappy
(flappy!~flappy@88-113-149-197.elisa-laajakaista.fi)
L487[16:15:00] ⇦
Quits: LeshaInc (LeshaInc!LeshaInc@fomalhaut.me) (Quit: Слишком
поздно.Ничего нельзя вернуть.Ничто не возвращается.Так же,как не
возвращается прожитое мгновение.)
L488[16:32:09]
<Ariri>
%choose 1 or 2 or 3
L489[16:32:09] <MichiBot> Ariri: I
received a message from future you, said to go with
"1".
L490[16:32:17]
<Ariri>
%choose 1 or 2 or 3
L491[16:32:18] <MichiBot> Ariri: I saw
that "2" is the best choice in a vision
L492[17:09:02] ⇦
Quits: Vexatos (Vexatos!~Vexatos@port-92-193-58-217.dynamic.qsc.de)
(Quit: Insert quantum chemistry joke here)
L493[17:23:02] ⇦
Quits: Inari (Inari!~Pinkishu@pD9E8E6E5.dip0.t-ipconnect.de) (Read
error: Connection reset by peer)
L494[17:40:33] ⇦
Quits: flappy (flappy!~flappy@88-113-149-197.elisa-laajakaista.fi)
(Ping timeout: 190 seconds)
L495[18:14:26] <AmandaC> %8ball rain
time?
L496[18:14:26] <MichiBot> AmandaC: Signs
point to yes
L497[18:34:36] <CompanionCube> %tonk
L498[18:34:37] <MichiBot> Heckgosh!
CompanionCube! You beat SquidDev's previous record of 2 hours, 29
minutes and 27 seconds (By 4 minutes and 32 seconds)! I hope you're
happy!
L499[18:34:38] <MichiBot> CompanionCube's
new record is 2 hours, 33 minutes and 59 seconds! CompanionCube
also gained 0.00024 (0.00008 x 3) tonk points for stealing the
tonk.
L500[18:45:23] <AmandaC> %choose irradiate
or waves
L501[18:45:23] <MichiBot> AmandaC: If I
had a gold nugget for every time someone asked me about
"waves"
L502[18:56:19]
<AdorableCatgirl> americans: america
sux
L504[18:56:20] <MichiBot>
The Greatest
Democracy the World has ever known. | length:
5s |
Likes:
1,496 Dislikes:
4 Views:
23,847 | by
Clancker
Zearmox | Published On 17/3/2019
L505[19:02:31]
⇨ Joins: MajGenRelativity
(MajGenRelativity!~MajGenRel@c-73-123-203-209.hsd1.ma.comcast.net)
L507[19:20:59] <MichiBot> AmandaC: Inari
will be notified of this message when next seen.
L508[19:24:14]
<Zef> fuck
america
L509[19:25:13] <AmandaC> You'll have to be
more specific, what'd we do now? Or just a general statement.
L510[19:25:35] <AmandaC> It's so hard to
keep track, as an american, what war crimes and other acts against
humanity we've committed
L511[19:25:54] *
AmandaC stops before she makes herself even sadder
L512[19:29:12] <AmandaC> %choose starbound
or duskers
L513[19:29:13] <MichiBot> AmandaC:
"duskers" is for cool kids!
L514[19:29:29] <AmandaC> %8ball am I a
cool goat kitten?
L515[19:29:30] <MichiBot> AmandaC: [ The
Bowling ball doesn't answer ]
L516[19:42:34] <AmandaC> Well that was a
short run
L517[19:50:21] ⇦
Quits: FeelsbadLemon
(FeelsbadLemon!webchat@cpe-66-91-118-77.hawaii.res.rr.com) (Quit:
webchat.esper.net)
L518[19:54:46] ⇦
Quits: Kleadron
(Kleadron!~kleadron@c-73-254-147-9.hsd1.wa.comcast.net) (Quit: Xbox
overlords taking over the planet)
L519[20:08:41]
⇨ Joins: Wiiplay123
(Wiiplay123!~Wiiplay12@2600:1700:91b1:7e90:79ab:bb46:5df:3388)
L520[20:12:30]
<Kodos>
Duskers is fun, but I'm sad it's not being worked on, and not
moddable
L521[20:20:34] <AmandaC> I'm screwed in my
save again I think. I'm out of fuel, and not getting any from the
ship I'm near
L522[21:00:41] <CompanionCube> %tonk
L523[21:00:41] <MichiBot> You still hold
the record CompanionCube, for now... 2 hours, 33 minutes and 59
seconds
L524[21:00:48] <CompanionCube>
%tonkout
L525[21:00:48] <MichiBot> I'm sorry
CompanionCube, you were not able to beat CompanionCube's record of
2 hours, 33 minutes and 59 seconds this time. 2 hours, 26 minutes
and 11 seconds were wasted! Missed by 7 minutes and 48
seconds!
L526[21:00:54] <CompanionCube> damn
L527[21:46:08] ⇦
Quits: Thutmose (Thutmose!~Patrick@host-69-59-79-181.nctv.com)
(Quit: Leaving.)
L528[22:06:22]
<AdorableCatgirl> %tonk
L529[22:06:22] <MichiBot> I'm sorry
AdorableCatgirl, you were not able to beat CompanionCube's record
of 2 hours, 33 minutes and 59 seconds this time. 1 hour, 5 minutes
and 34 seconds were wasted! Missed by 1 hour, 28 minutes and 24
seconds!
L530[22:09:49]
<Ariri>
%tonk
L531[22:09:50] <MichiBot> I'm sorry Ariri,
you were not able to beat CompanionCube's record of 2 hours, 33
minutes and 59 seconds this time. 3 minutes and 27 seconds were
wasted! Missed by 2 hours, 30 minutes and 32 seconds!
L532[22:09:58]
<Ariri>
chotto matte
L533[22:17:01]
<AdorableCatgirl> %tonk
L534[22:17:01] <MichiBot> I'm sorry
AdorableCatgirl, you were not able to beat CompanionCube's record
of 2 hours, 33 minutes and 59 seconds this time. 7 minutes and 11
seconds were wasted! Missed by 2 hours, 26 minutes and 48
seconds!
L535[23:42:04] ⇦
Quits: CarlenWhite
(CarlenWhite!~CarlenWhi@183.sub-174-241-143.myvzw.com) (Ping
timeout: 190 seconds)
L536[23:47:54]
⇨ Joins: CarlenWhite
(CarlenWhite!~CarlenWhi@79.sub-174-231-134.myvzw.com)