<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:13:20] <CompanionCube> Amanda: iirc
dlclose works on glibc but on musl it's a no-op
L2[00:14:19] <Amanda> Last I looked into it
(late '00s, early '10s) it was a no-op in glibc as well
L3[00:21:20] <Hawk777> Well, it doesn’t
appear to be any more… I tried OCa’s code and it crashed for me
too, and then removing the dlclose line fixed it.
L4[00:21:38] <Hawk777> There is
RTLD_NODELETE which makes dlclose into a noop though.
L5[00:26:15] <Hawk777> When I needed to
clean up and reinitialize a .so file’s data, I definitely went with
the “fork, dlopen, do the thing, and then die” option, since it
works reliably and dlclose has so many caveats.
L6[00:28:45] <MichiBot> Amanda REMINDER:
take some mining fighters from Radia
L7[01:14:14]
<lunar_sam>
"the gunship is now equipped with weaponry which lets it go
toe to toe with a capital ship because someone forgot to tell the
engineers we're fighting mech to mech in this game"
L8[01:14:14]
<lunar_sam>
Message #general
L9[01:14:18]
<lunar_sam>
man
L10[01:14:24]
<lunar_sam>
i love copying a message and having it do that
L11[01:14:36]
<lunar_sam>
thanks discord
L12[01:14:40]
<lunar_sam>
anyways
L13[01:14:47]
<lunar_sam>
just reposting a message i sent elsewhere
L14[01:23:36] <Michiyo> FFS I'm almost
tempted to offer money for someone else to solve this problem
._.
L15[01:25:46] <Hawk777> Well I’m not taking
it. I hate text parsing too :(
L16[01:26:11] <Hawk777> It’s not something
you can throw a tool at though, I take it?
L17[01:26:39] <Michiyo> I dunno, this is a
file format from a game from ~04, which the developers hated
themselfs...
L18[01:27:34] <Hawk777> Just wondering if
something like a yacc grammar would help.
L20[01:28:30] <Michiyo> there are a TON of
these NPC files, that all have costumes I need to parse out so I
can then do *MORE* parsing to then convert the resulting costumes
into CSV to feed into the game for it to render out
screenshots
L21[01:28:57] <Michiyo> I have a parser for
the Costume portion already
L22[01:29:06] <Hawk777> Oh that actually
does look like it would be doable with yacc/bison I think.
L23[01:29:12] <Hawk777> And probably not
that hard.
L25[01:31:40] <Michiyo> it makes me
sad.
L26[01:32:52] <Hawk777> I realize that you
might not have intended for your TODO list to include “learn
yacc/bison” today. Just an idea if you feel like it.
L27[01:33:20] <Hawk777> Or any of the other
parser generators, the file format looks like most of them would
probably handle it.
L28[01:33:38] <Michiyo> I don't even know
what yacc/bison is :D
L29[01:33:44] <Michiyo> so yeah, wasn't on
the radar lol
L30[01:35:00] <Hawk777> Ah. Basically, you
write a description of the language and hang callbacks off certain
portions of the grammar, run it, and it generates a pile of code
which you link into your program. You feed tokens in (which in turn
are usually generated from a stream of bytes by lexx/flexx, using
regexes) and it calls your callbacks each time the relevant piece
of grammar is hit, allowing you to build up some kind of tree
structure in memory.
L31[01:38:04] <Hawk777> So you could write
something like “An NPC comprises the NPC keyword, a quoted string
literal, a left brace, a DisplayName keyword, a quoted string, and
so on” (in yacc language), where repetitions (there are zero or
more CostumeParts), arbitrary ordering (EntTypeFile could come
before or after CostumeFilePrefix), optional parts (BoneScale could
be omittted), and even lookahead branching (this keyword can be
followed by either text or
L32[01:38:04] <Hawk777> integer, and the
thing *following* the text or integer tells you whether it ought to
be parsed as text or integer) are possible, with just simple
examples.
L33[01:38:24] <Hawk777> I believe you can
parse even C source code with a yacc grammar, though probably not
C++ source code because C++’s grammar is insane.
L34[01:40:01] <Michiyo> That makes my head
hurt more than the regex I've been trying lol
L35[01:40:46] <Hawk777> haha well,
YMMV
L36[02:25:25] <Amanda> %choose be
responsible or zzzmew? I hardly knew 'er
L37[02:25:25] <MichiBot> Amanda: I sense
some "be responsible" in your future!
L38[02:25:36] <Amanda> probably for the
best
L39[02:25:48] *
Amanda curls up around Elfi, does a heccen zzzmew after unwinding
some
L40[02:41:53]
<Z0idberg>
@Ocawesome101 this is quite the book .. so uh... what's going on
now? Where you at
L41[02:42:37]
<Ocawesome101> We figured out it was me
calling dlclose() when I shouldn’t have been
L42[02:48:04]
<Z0idberg>
.........
L43[02:48:50]
<Z0idberg>
Interacting with closed handles are we?
L44[03:04:54]
<Ocawesome101> >Z0idberg: Interacting
with closed handles are we?
L45[03:04:54]
<Ocawesome101> more like unloaded shared
libraries
L46[04:20:38]
<Vaur>
%tonk
L47[04:20:39] <MichiBot> Yippee! Vaur! You
beat Forecaster's previous record of 3 hours, 14 minutes and 9
seconds (By 2 hours, 54 minutes and 40 seconds)! I hope you're
happy!
L48[04:20:40] <MichiBot> Vaur's new record
is 6 hours, 8 minutes and 50 seconds! Vaur also gained 0.01164
(0.00291 x 4) tonk points for stealing the tonk. Position #2 =>
#1. (Overtook Forecaster)
L49[05:54:46] ⇦
Quits: Hawk777 (~chead@2607:c000:827d:fa00:fed7:70ab:64eb:2e20)
(Quit: Leaving.)
L50[06:00:31] ⇦
Quits: glasspelican (~quassel@2607:5300:201:3100::325) (Quit:
http://quassel-irc.org - Chat comfortably.
Anywhere.)
L51[06:01:05] ⇨
Joins: glasspelican (~quassel@2607:5300:201:3100::325)
L52[06:57:03]
<Wattana>
any of you guys experienced at writing parsers for stuff like LLVM
IR?
L53[06:57:44]
<Wattana>
i'm tryna write something to translate IR to CA65 assembly because
CC65 doesn't support some modern C features
L54[07:38:10] <Michiyo> %redshell
Vaur
L55[07:38:10] <MichiBot> Michiyo: You hit
Vaur! They lost 0.0360775 tonk points which you gain!
Congratulations! Position #3 => #2 (Overtook Vaur) Need
0.0319675 more points to pass Forecaster!
L56[07:49:27] ⇨
Joins: Vexatos
(~Vexatos@port-92-192-76-172.dynamic.as20676.net)
L57[07:49:27] zsh
sets mode: +v on Vexatos
L58[08:01:23]
<Vaur>
%sip
L59[08:01:23] <MichiBot> You drink a
stirring tiberium potion (New!). Vaur's shoes are now slightly too
large until the next time they hug someone.
L60[10:10:16]
<Vaur>
%sip
L61[10:10:17] <MichiBot> You drink a dusty
jumbonium potion (New!). Vaur feels slightly less agile.
L62[10:20:12]
<Vaur>
%sip
L63[10:20:20]
<Vaur>
%sip
L64[10:20:20] <MichiBot> You drink a liquid
cyan potion (New!). Vaur's favourite pants suddenly
disintegrates.
L65[10:20:31]
<Vaur> I
just bought those 😦
L66[10:22:46]
<Forecaster> you'll have to find the
molecules and re-assemble them
L67[10:22:47]
<Forecaster> %sip
L68[10:22:48] <MichiBot> You drink a dull
naqahdah potion (New!). It tastes sweet.
L69[10:30:08]
<Vaur>
%tonkout
L70[10:30:08] <MichiBot> Darn! Vaur! You
beat your own previous record of 6 hours, 8 minutes and 50 seconds
(By 39 seconds)! I hope you're happy!
L71[10:30:09] <MichiBot> Vaur has tonked
out! Tonk has been reset! They gained 0.006 tonk points! plus 0.01
bonus points for consecutive hours! Current score: 1.3008875,
Position #3 => #2 (Overtook Michiyo) Need 0.0159675 more points
to pass Forecaster!
L72[10:46:04]
<Vaur>
%sip
L73[10:46:04] <MichiBot> You drink a forked
purple potion (New!). Vaur looks confused as nothing happens.
L74[10:52:37]
<Forecaster> dammit, I got distracted...
always at the wrong time
L75[10:56:41]
<Vaur>
%sip
L76[10:56:41] <MichiBot> You drink a
viscous grathnode potion (New!). As Vaur drinks the potion they
become the target of a wad of llama spit! They successfully evaded
it with a 16 vs DC 12!
L77[11:09:31] ⇨
Joins: Seacarp_ (~Seacarp_@188.123.231.106)
L78[11:09:45] ⇦
Quits: Seacarp_ (~Seacarp_@188.123.231.106) (Client
Quit)
L79[11:17:24]
<Vaur>
%sip
L80[11:17:24] <MichiBot> You drink a fluffy
emerald potion (New!). The bottle turns into a sword.
L81[11:39:17] ⇨
Joins: alekso56_ (~cax@84.211.63.224)
L82[11:40:49] ⇦
Quits: alekso56 (~cax@84.211.63.224) (Ping timeout: 375
seconds)
L83[11:57:44]
<Vaur>
%sip
L84[11:57:45] <MichiBot> You drink a
shimmering purple potion (New!). When Vaur drinks the last drop, a
bucket of water materializes above their head and dumps its
contents over them. Vaur is drenched in water, followed by a bucket
hitting them on the head. (2 vs DC 8)
L85[14:49:31]
<Forecaster> %tonk
L86[14:49:31] <MichiBot> Wut! Forecaster!
You beat Vaur's previous record of <0 (By 4 hours, 19 minutes
and 22 seconds)! I hope you're happy!
L87[14:49:32] <MichiBot> Forecaster's new
record is 4 hours, 19 minutes and 22 seconds! Forecaster also
gained 0.00432 tonk points for stealing the tonk. Position
#1.
L88[15:31:45] <Amanda> Huh. Apparently
Spengies doesn't need any fuckery to work under linux anymore
L89[15:33:49] <Michiyo> *facedesk*
L90[15:34:43] *
Amanda beams a pillow onto Michiyo's desk so she can take more
comfortable naps
L91[15:34:55] <Michiyo> So @ work one of
our hosting partners for customer access to our software via
Parallels RAS got smacked with ransomware, they've been down fully
for ALL west coast/mountain time customers since Sunday.
L92[15:35:17] <Michiyo> Somehow, they
didn't have any airgapped/offline backups of our customer
data
L93[15:35:25] <Michiyo> so the fucking
ransomware got ALL of their backups too
L94[15:35:31] <Amanda> oh good
L95[15:36:01] <Michiyo> HOW?! How do you
not have a damn offline backup??
L96[15:36:10] <Michiyo> *I* have offline
backups of my important data!
L97[15:36:32] <Michiyo> And I don't get
paid thousands of dollars a month to do so >_>
L98[15:38:59]
<Forecaster> but if the backups are
offline you can't connect to them!
L99[15:42:04] <Michiyo> Which is the point.
:P
L100[16:02:16] <Amanda> %choose rain box;
now or later
L101[16:02:17] <MichiBot> Amanda: later
rain box
L103[17:14:55] <CompanionCube> ayy they
finally did it
L104[17:32:27]
⇨ Joins: ben_mkiv
(~ben_mkiv@2001:16b8:1e5e:6000:fe34:97ff:fea9:75f2)
L105[17:52:00] <Amanda> %splash @Inari
with mutable purple potion
L106[17:52:00] <MichiBot> You fling a
mutable purple potion (New!) that splashes onto @Inari. @Inari
turns into a fairy girl until they tonk.
L107[17:52:05] *
Amanda goes off to use the rain box, she stinky
L108[17:52:25] <Amanda> Elfi! Fairy fren
Inari has arrived!
L109[17:55:45] <Michiyo> Oh... huh
L110[17:56:11] <Amanda> Michiyo: ?
L111[17:56:17] <Michiyo> So, our provider
was hit with AvosLocker, and it wasn't just us...
L112[17:56:18] <Michiyo> "The Oregon
Elections Division learned on Monday that Opus Interactive — a web
hosting provider used by the campaign finance firm C&E Systems
— was the victim of a ransomware attack. C&E’s database was
compromised, which includes their client’s log-in credentials for
ORESTAR accounts, used to file campaign finance
reports."
L113[17:56:35] <Amanda> oh good
L114[17:56:59] <Michiyo> So, chances are
very high we wern't the target, just collateral damage.
L115[18:04:32]
<Forecaster> %sip
L116[18:04:32] <MichiBot> You drink a
freezing coralcreep potion (New!). The potion contained a computer
virus! It sent a message to all of Forecaster's friends telling
them that they love them!
L117[18:04:39] ⇦
Quits: m1cr0man (~m1cr0man@2a01:4f8:191:503f::1) (Quit:
G'luck)
L118[18:04:45]
<Forecaster> ohno
L119[18:06:02]
<Vaur>
%sip
L120[18:06:03] <MichiBot> You drink a
simulated gold potion (New!). Sitting down suddenly seems like a
really terrible idea.
L121[18:09:09]
⇨ Joins: m1cr0man
(~m1cr0man@2a01:4f8:191:503f::1)
L122[18:21:28]
⇨ Joins: DEX (~DEX@109.248.76.245)
L123[18:22:08] ⇦
Quits: DEX (~DEX@109.248.76.245) (Remote host closed the
connection)
L124[18:24:05]
⇨ Joins: RedstoneParkour
(~Thunderbi@2001:1c05:2509:a600:3dfc:6519:1193:a212)
L125[18:36:23] ⇦
Quits: m1cr0man (~m1cr0man@2a01:4f8:191:503f::1) (Quit:
G'luck)
L126[18:36:44]
⇨ Joins: m1cr0man
(~m1cr0man@2a01:4f8:191:503f::1)
L127[18:47:22]
<EnvoGod>
Hello!
L128[18:48:32] <Amanda> AAAAA!
PEOPLE!
L129[18:48:34] *
Amanda scatters
L130[18:48:45]
<EnvoGod> I
need a little bit of support, It has come to my attention that
people are able to "Force OP" using the `Open Computers`
mod Is their a way to disable this?
L131[18:49:06]
<EnvoGod> I
need a little bit of support, It has come to my attention that
people are able to "Force OP" using the `Open Computers`
mod Is their a way to disable this? Or maybe even stop it from
happening? [Edited]
L132[18:49:21] <Amanda> Did you give out
debug cards?
L133[18:49:35]
<EnvoGod>
Nope
L134[18:50:20]
<EnvoGod>
It hasnt happened yet i was just told about it before adding it to
my modded server because i dont want to add it t my server then
everybody force OP because that will just be annoying to clean
up
L135[18:50:40]
<EnvoGod>
It hasnt happened yet i was just told about it before adding it to
my modded server because i dont want to add it to my server then
everybody force OP because that will just be annoying to clean up
[Edited]
L136[18:50:44] <Amanda> Clarification:
What do you mean "Force OP" do you mean some exploit to
become op?
L137[18:50:54]
<EnvoGod>
>Amanda: Clarification: What do you mean "Force OP" do
you mean some exploit to bec…
L138[18:50:54]
<EnvoGod>
correct
L139[18:51:06] <Izaya> How does it work
and have you checked the bug tracker?
L140[18:51:27] <Amanda> Are you using a
permissions plugin? Those don't play nice with most MC mods that
have fake players
L141[18:51:44]
<EnvoGod>
Im not sure a friend just told me about it and he said "there
is no way to fix it because its not a bug and there is no way to
prevent it"
L142[18:52:04]
<EnvoGod>
>Amanda: Are you using a permissions plugin? Those don't play
nice with most MC mod…
L143[18:52:04]
<EnvoGod>
we use LPerms
L144[18:52:07] <Amanda> Giving normal
users op would absolutely be a ug
L145[18:52:23] <Amanda> but that's only
for the normal MC op/normal model
L146[18:53:00] <Amanda> We don't, and
can't. test every permission plugin under the sun, and one or
another might have had an issue where there was some
interaction.
L147[18:53:22]
<EnvoGod>
oh ok
L148[18:53:22] <Amanda> MC wasn't meant to
have more then user/admin roles.
L149[18:53:55] <Izaya> see if they can
offer any actual specifics rather than FUD though :)
L150[18:54:05] <Amanda> ^
L151[18:54:18]
<EnvoGod>
>Izaya: see if they can offer any actual specifics rather than
FUD though :)
L152[18:54:19]
<EnvoGod>
will do
L153[18:55:46] <Amanda> The only way I
could see it being "not a bug" is if the permissions
plugin/mod needs some additional code in in the fakeplayer-having
mods, which is just bad design on their part, and we're not goign
to include support for every random permissions plugin, as that's
unsustainable
L154[18:56:22] <Amanda> But even then, you
can disable the robots & drones, and it'll be
"fixed"
L157[18:58:21]
<EnvoGod>
there is what he said
L158[18:58:31]
<Forecaster> "the servers
firewall"?
L159[18:58:33]
<Forecaster> xD
L160[18:58:41]
<EnvoGod>
idk
L161[18:59:41] <Izaya> real itsaunixsystem
hours
L162[19:00:11]
<EnvoGod>
>Forecaster: "the servers firewall"?
L163[19:00:11]
<EnvoGod>
Is this a real issue? How would one fix it?
L164[19:00:22] <Izaya> so 1) your friend
is talking shit they don't understand 2) local addresses are
disallowed by default for the internet card
L165[19:00:27]
<Forecaster> that's not how firewalls
work
L166[19:00:38]
<EnvoGod> i
thought that
L167[19:01:01]
<Forecaster> all of this sounds like it's
made up
L168[19:01:19]
<EnvoGod>
oh ok
L169[19:01:30] <Izaya> 3) if it was able
to talk to local addresses you'd have to have something configured
with a weak/nonexistent password and no encryption, like telnet or
something
L170[19:01:43]
<EnvoGod> i
just know he like to mess about with the mod and knows people who
play it so i believed him
L171[19:02:28] <Amanda> Yo dawg, I heard
you can just break into random homes. ALl you have to do is check
for ones where the home owner left the front door unlocked. Ban
homes.
L172[19:02:31]
<Forecaster> also in no way does sending
commands outside of the game help you become an operator
L173[19:03:06] <Izaya> there's a much
simpler way to get op that doesn't require the existing operators
to be a dumbass
L174[19:03:15] <Izaya> threaten them with
violence and make them believe it
L175[19:03:17]
<The
Patmann> I mean, if you're able to log-in as an admin to the
server that is hosting minecraft, you could edit the op file, but
like...
L176[19:03:18]
<The
Patmann> lol
L177[19:03:19] <Amanda> Not without
another exploit at least
L178[19:03:31] <Amanda> or another
security failure
L179[19:03:49] <Amanda> You can disable
whatever IP ranges you want int he config though
L180[19:03:50]
<The
Patmann> Easy, just get a debug card. Then you can make anyone
OP that you want
L181[19:04:03] <Izaya> anyway, that's good
comedy before bed, o7
L182[19:04:09] <Amanda> night Izaya
L183[19:04:15]
<The
Patmann> G'night Izaya
L184[19:04:26]
<EnvoGod>
Night Lzya
L185[19:04:27]
<Forecaster> a debug card has to be bound
to a current operator to be able to execute op-only commands
L186[19:04:28]
<EnvoGod>
Night Lzaya [Edited]
L187[19:04:35]
<EnvoGod>
oh ok
L188[19:04:38] <Izaya> you owe me a
coffee
L189[19:04:45]
<EnvoGod>
so just item ban Debug cards?
L190[19:04:53] <Izaya> Amanda: idk if you
keep up with this sort of thing but sneikkimies finished their
translation of the latest Adachi to Shimamura book
L191[19:05:01]
<Forecaster> can regular players spawn any
items they want?
L192[19:05:06]
<Forecaster> debug cards can't be
crafted
L193[19:05:19]
<EnvoGod>
oh ok
L194[19:05:19] <Izaya> they also have to
be bound to a user nowadays, right?
L195[19:05:24]
<EnvoGod>
no they cant
L196[19:05:50]
<Forecaster> Yes I said that, to execute
op-only commands
L197[19:06:02]
<Forecaster> an unbound debug card can
still execute public commands
L198[19:06:09] <Amanda> Izaya: That name
rings a bell, but I can't place it, was it that GL story with the
girls who hang out in the rec room above the gym of their HS?
L199[19:25:56]
<Kristopher38> holy shit that screenshot
xD
L200[19:31:32] ⇦
Quits: RedstoneParkour
(~Thunderbi@2001:1c05:2509:a600:3dfc:6519:1193:a212) (Quit:
RedstoneParkour)
L201[19:33:04]
<Sangar>
>Amanda: Hey <@96665277030203392> any chance we can update
to a newer buildroot? M…
L202[19:33:04]
<Sangar> i
think last time i tried the rootfs had a lot less free space just
from updating buildroot, so I didn't pursue this further :/
L203[19:33:14] <Amanda> ah
L204[19:42:09]
<Vaur>
tonk
L205[19:42:15]
<Forecaster> %tonkout
L206[19:42:15] <MichiBot> Darn it!
Forecaster! You beat your own previous record of 4 hours, 19
minutes and 22 seconds (By 33 minutes and 21 seconds)! I hope
you're happy!
L207[19:42:16] <MichiBot> Forecaster has
tonked out! Tonk has been reset! They gained 0.004 tonk points!
plus 0.006 bonus points for consecutive hours! Current score:
1.331175, Position #1
L208[19:42:21]
<Vaur>
fuck
L209[19:42:26]
<Forecaster> excellent
L210[19:42:34]
<Vaur>
%sip
L211[19:42:34] <MichiBot> You drink a
mutable adamantium potion (New!). Vaur turns into a dragon boy
until they recite the litany against fear.
L212[19:42:45]
<Vaur> this
wasn't the search bar I was looking for
L213[19:42:51]
<Vaur> I
didn't have the timer on it
L214[19:42:51] <Michiyo> damn it
L215[19:43:23]
<Vaur>
>Michiyo: damn it
L216[19:43:23]
<Vaur> This
is most definitly a be carefull what you wish for situation.
L217[19:48:45] <Michiyo> ?
L218[19:49:20]
<Vaur> you
shelled me, letting forecaster take first place 😄
L219[19:49:34]
<Vaur> I'm
not first place, but neither are you x)
L220[19:49:51] <Michiyo> You and Fore were
neck and neck anyway :P
L221[19:50:13]
<Vaur>
because I got shelled but he was losing ground
L222[19:50:27]
<Vaur>
(shelled by him)
L223[19:51:52]
<Forecaster> xD
L224[19:53:21]
<Vaur>
%sip
L225[19:53:21] <MichiBot> You drink a
simulated yellow potion (New!). Vaur turns into a citrus turtle
dragon boy until they find a lamp.
L226[19:54:06]
⇨ Joins: baschdel
(~baschdel@2a02:6d40:3667:bffc::1aa)
L227[20:18:13] <Amanda> %choose
pizza?
L228[20:18:13] <MichiBot> Amanda: Yes! Do
it now!
L229[20:18:22] <Amanda> Pizza!
L230[20:31:09] <Izaya> Amanda: spot
on
L231[20:31:25] <Amanda> ah
L232[20:37:19]
<Vaur>
%sip
L233[20:37:19] <MichiBot> You drink a
powdery transparent potion (New!). Vaur feels like one particular
wasp has it out for them suddenly.
L234[20:37:36]
<Vaur> as
long as its not an actual wasp being out for me
L235[20:41:19] <Amanda> Wow. My favourite
Android TV update, now the youtube app keeps flashing "Press
and hold [select] for more options!"
L236[20:41:48]
<Forecaster> who doesn't want a strobe
party while watching things
L237[20:42:05] <Amanda> Thankfully it's
tweening in and our roughly every other second, not strobing
L238[20:42:23]
<Forecaster> submit a bugreport, not
enough strobe
L239[20:48:50] ⇦
Quits: baschdel (~baschdel@2a02:6d40:3667:bffc::1aa) (Ping timeout:
189 seconds)
L240[20:56:51] *
Amanda leaves ELfi's share of the pizza by her space
station
L241[20:57:53] <Amanda> I've long-since
decided that extra tiny piece of pizza you end up with in the
middle when cutting pizzas is the fairy's share
L242[21:51:24]
<Ocawesome101> Amanda: clearly you're
cutting pizza wrong
L243[21:51:53] <Amanda> Clearly not,
because I've been making a slice for fae friends!
L244[21:53:04] ⇦
Quits: Vexatos (~Vexatos@port-92-192-76-172.dynamic.as20676.net)
(Quit: Insert quantum chemistry joke here)
L245[22:14:10] ⇦
Quits: immibis (~hexchat@62.156.144.218) (Remote host closed the
connection)
L246[22:14:34]
⇨ Joins: immibis (~hexchat@62.156.144.218)
L248[22:58:51] <Amanda> %p
L249[22:58:53] <MichiBot> Ping reply from
Amanda 0.38s
L250[22:58:59] <Amanda> Oh good, Steam
decided to No
L251[23:01:46] ⇦
Quits: ben_mkiv (~ben_mkiv@2001:16b8:1e5e:6000:fe34:97ff:fea9:75f2)
(Quit: Leaving)
L252[23:25:47] <Amanda> %choose halucinate
or continue irradiation
L253[23:25:47] <MichiBot> Amanda: I have
a pamphlet that says never to engage in "continue
irradiation", so you should definitely do it!
L254[23:25:54] <Amanda> Hrm.
L255[23:25:58] <Amanda> Nah, halucinate
some