<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:04:26] <Amanda> oh my goddesses
L2[00:05:12] <Amanda> I kinda ran out of
food, and ingrediatents to make food, so I'm down to one colonist.
Now I have a statius pod land, with frendy people! Well...
L4[00:07:24] <Amanda> Meet Leo!
L5[00:08:29] <Izaya> cat!
L6[00:08:37] <Izaya> this is a sign
L7[00:08:48] <Izaya> is this like rimworld
but in space?
L8[00:10:37] <Amanda> Izaya: kinda. It's
called Stardeus, I've heard it called like that, but I've not
gotten myself to try Rimworld yet to see. It's got a free 2h demo
up on the store page
L9[00:12:36] <Amanda> I've got my robots
grinding up all my dead colonists now into protein, so I've got
plenty of food for Leo!
L10[00:12:55] <Izaya> definitely sounds
like rimworld
L11[00:13:04] <Amanda> Unfortunately,
Brian, the sole surviving colonist, is too hungry to cook himself
food, so I guess he'll die too
L12[00:13:30] <Amanda> I've still got 800
colonists in cold storage though, so I just need to wait 5 days for
another to thaw
L13[00:13:53] <Izaya> and hope nothing
happens between now and then?
L14[00:14:26] <Amanda> I've still got my
construction + logistics bots, just can't do anything that requires
a meat suit
L15[00:14:44] <Amanda> like piloting the
ship
L16[00:15:43] <Amanda> or building
parts
L17[00:19:12] <Izaya> but the cat will be
okay?
L18[00:19:45] <Amanda> seems my logistics
bots are in charge of filling the pet food bowls, so yeah, I've got
plenty of people to grind up
L19[00:20:02] <Izaya> that's what
matters
L20[00:20:49] <Amanda> Leo has claimed a
bed:
L22[00:30:01] <Amanda> damn it @Inari, it's
bad enough that you keep shorting out every other device I plug in,
but now when there's just a cat abord you send meteors at
me!?
L23[00:56:21]
<Nadja>
Izaya: *poke* happy birthday <3
L24[00:56:54] <Amanda> ... Fucking hell,
did I anger RNJesus?
L25[00:57:12] <Amanda> Supply crate that
dropped has a fucking alien bug in it
L26[01:13:21] <Amanda> HOW THE HELL DOES A
PLANTER IGNITE!?
L27[01:27:21]
<🎃Michiyo🎃>
Fertilizer?
L28[01:39:58] <Izaya> nadja: absolutely do
not
L29[03:13:31] *
Amanda wonders who spilled these tireds all over her ship, curls up
around elfi to complain, but only ends up doing zzzs
L30[03:14:56] <Amanda> Night girls.
Remember to turn your dead colonists into protein so that the next
ones to thaw can live!
L31[04:04:19] ⇨
Joins: Hawk777
(~Hawk777@2607:c000:828b:b500:af68:6526:2e4a:bcb4)
L32[04:19:01] ⇦
Quits: Hawk777 (~Hawk777@2607:c000:828b:b500:af68:6526:2e4a:bcb4)
(Quit: Leaving.)
L33[05:18:02] ⇨
Joins: Hawk777
(~Hawk777@2607:c000:828b:b500:af68:6526:2e4a:bcb4)
L34[05:26:19] ⇦
Quits: S|h|a|w|n (~shawn156@67.218.67.153) (Read error: Connection
reset by peer)
L35[05:33:42]
<Forecaster> %tonkout
L36[05:33:43] <MichiBot> Consarn it!
Forecaster! You beat your own previous record of 12 hours, 18
minutes and 30 seconds (By 1 minute and 22 seconds)! I hope you're
happy!
L37[05:33:44] <MichiBot> Forecaster has
tonked out! Tonk has been reset! They gained 0.012 tonk points!
plus 0.022 bonus points for consecutive hours! Current score:
4.14960405, Position #2 Need 0.2407944 more points to pass
Vaur!
L38[05:37:30]
<Vaur>
%sip
L39[05:37:31] <MichiBot> You drink a rather
caterium potion (New!). Dramatic music briefly plays in the
distance.
L40[07:05:39] ⇦
Quits: Izaya (~izaya@210.1.218.92) (Quit: ZNC 1.8.2+deb2+b1 -
https://znc.in)
L41[07:09:59] ⇨
Joins: Izaya (~izaya@210.1.218.92)
L42[07:47:50] ⇦
Quits: Hawk777 (~Hawk777@2607:c000:828b:b500:af68:6526:2e4a:bcb4)
(Quit: Leaving.)
L43[07:52:35] ⇨
Joins: Vexatos
(~Vexatos@p200300eaef139f10ca76e2a516bb4f43.dip0.t-ipconnect.de)
L44[07:52:35] zsh
sets mode: +v on Vexatos
L45[07:52:40]
<Wattana>
guys i would like some help with keyboard scanning
L46[07:53:27]
<Wattana>
so the c64 have a keyboard matrix like this. i can put a value into
port a and get which key are pressed at select rows in port b.
problem is how the hell do i query *all* keys while being fast?
https://tinyurl.com/2qwmkzh7
L47[07:54:35]
<Wattana>
putting them into a `char[8]` array is fast but indexing it could
be a pain so i'd like to implement this as `bool[8 * 8]` but the
second loop absolutely murders the performance
L48[07:55:25]
<Wattana>
someone suggested doing a lookup table and index "based on the
log₂ of the value on the ports" but i have no idea how to
implement that
L49[10:00:48]
<lunar_sam>
why would putting them into a char[8] be a pain?
L50[10:02:06]
<lunar_sam>
`y = index >> 3; x = index & 7
L51[10:02:09]
<lunar_sam>
fuck
L52[10:02:13]
<lunar_sam>
you get my point
L53[10:52:16]
<Nadja>
@Wattana You could also just use bitfields and hope your compiler
is smart enough to optimize that :P
L54[11:24:45]
<Wattana>
Putting them into a `char[8]` is indeed the fastest I've had but
indexing into it after scanning is a pain since you have to do
`keymap[row] & col`
L55[11:25:15]
<Wattana>
Maybe I should ask l make an inline function for that
L56[11:25:45]
<Wattana>
Man fuck swipe detection
L57[11:47:37] <Amanda> Good mews everyone,
I'm awake, and thus I shall meow and look around
L58[11:50:52] <Izaya> 1/2 goals for the day
already done huh
L59[12:11:38]
<Forecaster> Remaining goals are pending
and may be suspended until tomorrow without notice
L60[12:31:54]
<Forecaster> %sip
L61[12:31:54] <MichiBot> You drink a slimy
aluminium potion (New!). Forecaster's pockets suddenly contain
1d10 => 9 Sapphire colored marbles.
L62[12:32:02]
<Forecaster> ooh sapphire marbles
L63[12:32:14]
<Forecaster> also a %tonk
L64[12:32:14] <MichiBot> Jiminy Cricket!
Forecaster! You beat your own previous record of <0 (By 6
hours, 58 minutes and 31 seconds)! I hope you're happy!
L65[12:32:15] <MichiBot> Forecaster's new
record is 6 hours, 58 minutes and 31 seconds! No points gained for
stealing from yourself. (Lost out on 0.00698)
L66[13:07:55]
<Sky> Today
will be the first sip without negative consequences for me!
L67[13:07:58]
<Sky>
%sip
L68[13:07:58] <MichiBot> You drink a
stirring aegisalt potion (New!). Some tonk points fly by. Sky
caught 0.052 tonk points. (Rem. uses: 3)
L69[13:08:05]
<Sky>
Wowe!
L70[13:08:47]
<Forecaster> ooh, %sip stirring
aegisalt
L71[13:08:47] <MichiBot> You drink a
stirring aegisalt potion. Some tonk points fly by. Forecaster
caught 0.026 tonk points. (Rem. uses: 2)
L72[13:10:00]
<Sky> I
caught more, I am clearly cooler.
L73[13:10:05]
<Forecaster> >:
L74[13:10:25]
<Forecaster> MichiBot is mean to me for no
reason
L75[13:11:03] <Amanda> starting to think
outer hallways on my ship isn't a good idea
L76[13:11:19] <Amanda> Considering how
fucking often meteors are hitting me
L77[13:12:16]
<Forecaster> But how else is the crew
supposed to admire the scenery of space
L78[13:12:18] <Amanda> Wel'' try a third
layer of reinforced walls, before rebuilding the entire interior of
my ship
L79[13:13:05]
<Forecaster> oh, I read
"hallways" as "walkways" for some reason
L80[13:15:31]
<Ocawesome101> %sip stirring
aegisalt
L81[13:15:31] <MichiBot> You drink a
stirring aegisalt potion. Some tonk points fly by. Ocawesome101
caught 0.006 tonk points. (Rem. uses: 1)
L82[13:15:37]
<Ocawesome101> :/
L83[13:15:46]
<Ocawesome101> %tonkleaders
L85[13:18:06]
<RedstoneParkour> %sip stirring
aegisalt
L86[13:18:06] <MichiBot> You drink a
stirring aegisalt potion. Some tonk points fly by. RedstoneParkour
caught 0.073 tonk points. (Rem. uses: 0)
L87[13:18:15]
<Ocawesome101> %shellcount
L88[13:18:15] <MichiBot> Ocawesome101: You
have 1 Blue Shell, 3 Red Shells, 5 Green Shells, and 2 Bricks
L89[13:38:18]
<Forecaster> someone should definitely
blueshell Vaur for no reason
L90[13:50:25]
<Ocawesome101> %blueshell
L91[13:50:25] <MichiBot> Ocawesome101:
Invalid arguments. %tonksnipe blue Target:string
L92[13:50:35]
<Ocawesome101> %blueshell Vaur
L93[13:50:35] <MichiBot> Ocawesome101: You
hit Vaur! They lost 0.87611169 tonk points which you gain!
Congratulations! Position #12 => #4 (Overtook RedstoneParkour)
Need 0.66698581 more points to pass Michiyo!
L94[13:52:38]
<Ocawesome101> my strategy this year has
been to completely not tonk and mostly just use shells to catch up
at the end :p
L95[13:53:50]
<Forecaster> It is a valid strategy
😛
L96[13:58:58]
<RedstoneParkour> well then time to make
it equal-ish again with a %blueshell Forecaster
L97[13:58:58] <MichiBot> RedstoneParkour:
You hit Forecaster! They lost 0.75068881 tonk points which you
gain! Congratulations! Position #5 => #4 (Overtook Ocawesome101)
Need 0.38008869 more points to pass Michiyo!
L98[13:59:29] ⇦
Quits: Vexatos
(~Vexatos@p200300eaef139f10ca76e2a516bb4f43.dip0.t-ipconnect.de)
(Ping timeout: 189 seconds)
L99[14:03:35]
<Forecaster> aw
L100[14:12:52]
⇨ Joins: Vexatos
(~Vexatos@p200300eaef139f42e5c6a4519fecca5c.dip0.t-ipconnect.de)
L101[14:12:52]
zsh sets mode: +v on Vexatos
L102[14:34:31]
⇨ Joins: Amanda_
(~m-yt727s@2601:46:c603:aba1:b93f:d8b1:79c6:8237)
L103[14:34:37] ⇦
Quits: Amanda (~m-yt727s@2601:46:c603:aba1:d134:d791:3503:1959)
(Ping timeout: 189 seconds)
L104[14:39:26] ***
Amanda_ is now known as Amanda
L105[14:47:44] ⇦
Quits: Izaya (~izaya@210.1.218.92) (Read error: Connection reset by
peer)
L106[14:48:16]
⇨ Joins: Izaya (~izaya@210.1.218.92)
L107[14:56:02]
⇨ Joins: S|h|a|w|n (~shawn156@67.218.67.153)
L108[15:00:12]
<Forecaster> %sip
L109[15:00:12] <MichiBot> You drink a
smelly spice potion (New!). Forecaster's favourite cup is now
upside down.
L110[15:00:26]
<Forecaster> That's not how that goes
MichiBot
L111[15:31:42]
<Vaur>
%sip
L112[15:31:42] <MichiBot> You drink a
still pear potion (New!). Vaur's nails turn the color of amethyst
for 5 hours.
L113[15:47:23]
<Forecaster> Fancy
L114[16:28:42]
<Riley> Is
this server also used for oc2?
L115[16:28:49]
⇨ Joins: Hawk777
(~Hawk777@2607:c000:828b:b500:2a22:fead:27f2:8ec5)
L116[16:33:12]
<RedstoneParkour> yes, this server is for
talking about oc1, oc2, (rarely) tis-3d and some other stuff
L117[16:33:59]
<Luihum>
Since when is oc2 a thing
L118[16:34:42]
<RedstoneParkour> since quite some
time
L119[16:34:55]
<Riley>
September 2020 is when the repo was created.
L120[16:46:13]
<Riley> I'm
working on updating oc2 to 1.19.2. I was wondering if there is
interest in merging my changes into a new branch.
L121[16:50:35]
<Wattana>
wouldn't it be nice to be abler to use a single branch for multiple
MC versions
L122[16:52:12]
<Riley>
Yeah, unfortunately neither Mojang or the Forge team are afraid of
breaking changes.
L123[17:13:49]
<AR2000>
Monjang just doesn't care. There is no official mod support. But
they are nice enough to provides headers files (the java equivalent
at least) to help with mod making
L124[17:16:18] ⇦
Quits: Izaya (~izaya@210.1.218.92) (Quit: ZNC 1.8.2+deb2+b1 -
https://znc.in)
L125[17:17:00]
<🎃Michiyo🎃>
Forge is great for modding, if you enjoy relearning the entire
process every MC Version (and sometimes every forge version for the
same MC version....)
L126[17:19:05]
⇨ Joins: Izaya (~izaya@210.1.218.92)
L127[17:24:53]
<Vaur>
%tonk
L128[17:24:53] <MichiBot> I'm sorry Vaur,
you were not able to beat Forecaster's record of 6 hours, 58
minutes and 31 seconds this time. 4 hours, 52 minutes and 39
seconds were wasted! Missed by 2 hours, 5 minutes and 52
seconds!
L129[17:25:06]
<Vaur>
%sip
L130[17:25:06] <MichiBot> You drink a sour
spice potion (New!). As Vaur drinks the potion they become the
target of a wad of llama spit! They successfully evaded it with a
20 vs DC 12!
L131[17:25:22]
<Vaur>
Wrong command Braine is fried
L132[17:25:37]
<Vaur>
Brain*
L133[17:34:23] <Amanda> %choose more
space?
L134[17:34:23] <MichiBot> Amanda: Hm,
yeah okay.
L135[18:23:40]
<Forecaster> but what if less space?
L136[18:33:06] <Amanda> Unpossible
L137[18:34:09]
<Vaur>
%sip
L138[18:34:09] <MichiBot> You drink a
simulated strawberry potion (New!). Tonk moved back 3 hours. (Rem.
uses: 0)
L139[18:38:19]
<Forecaster> ooh excellent
L140[18:38:41]
<Forecaster> Shame it was single use
L141[18:40:04]
<AR2000>
moved back ...., not forward ....
L142[18:40:37]
<Forecaster> back is good, forward is bad,
unless...
L143[18:40:39] ⇦
Quits: Izaya (~izaya@210.1.218.92) (Read error: Connection reset by
peer)
L144[18:41:33]
<AR2000>
what is back ? what is forward ?
L145[18:41:33]
<AR2000>
Where is the start, or when ?
L146[18:41:33]
<AR2000> So
many questions...
L147[18:41:50]
<Forecaster> Who dunnit
L148[18:42:04]
<Vaur> I
done did it
L149[18:42:17]
<AR2000> I
shouldn't be watching Kado while having this kind of
discussion
L150[18:42:17]
⇨ Joins: Izaya (~izaya@210.1.218.92)
L151[18:44:09]
<Forecaster> Then stop watching! Clearly
this is more important!
L152[19:47:46] <Elfi> Forward and back and
then forward and back and then go forward and back and put one foot
forward...
L153[19:51:57] <Amanda> Good mews, my crew
is not considering mutany
L155[19:53:45]
<Forecaster> I saw this a while ago and
posted a screenshot of one of my crew doing the exact same
thing
L156[19:53:50]
<Forecaster> very normal
L157[19:59:57] <Amanda> I'm sure it's
fine.
L158[20:00:11]
<Forecaster> well yeah, they're not
considering mutiny
L159[20:00:16]
<Forecaster> now if they were, oof
L160[20:00:35]
<Forecaster> but they're not, so all's
well
L161[20:14:02] ⇦
Quits: lunar_sam (c44a7f2987@2a00:c70:1:178:170:40:189:1) (Ping
timeout: 189 seconds)
L162[20:14:35] ⇦
Quits: zenith391 (e5ba18372f@jabberfr.org) (Ping timeout: 189
seconds)
L163[20:14:46]
⇨ Joins: lunar_sam (c44a7f2987@jabberfr.org)
L164[20:21:29] <Amanda> %give MichiBot
Welding Soap
L165[20:21:29] *
MichiBot accepts Welding Soap and adds it to her
inventory
L166[20:21:43] <Amanda> For some reason,
my settlement nolonger makes broken electronics, but welding
soap
L167[20:22:07] <Amanda> not sure if that
changed in 4.0 or one of the patches since or if I just didn't
notice when I was managing it
L168[20:22:15]
<Forecaster> They felt their welders
needed to clean up
L169[20:27:02] <Amanda> still have to sell
it at power generation systems, so I'm not worried about it
L170[21:07:19] <Amanda> %choose rain
box?
L171[21:07:19] <MichiBot> Amanda: A
nearby lamp replies "rain box".
L172[21:07:29] <Amanda> thanks Elfi
L173[21:17:17] ⇦
Quits: Izaya (~izaya@210.1.218.92) (Quit: ZNC 1.8.2+deb2+b1 -
https://znc.in)
L174[21:20:43]
⇨ Joins: Izaya (~izaya@210.1.218.92)
L175[21:27:26]
<Forecaster> Finally one of the new ones I
added!
L176[22:03:56] *
Amanda offers the Elfi of the Lämp some snacks, curls up to
protecc
L177[22:54:29] <Amanda> %choose
laptopnaptime?
L178[22:54:29] <MichiBot> Amanda:
"laptopnaptime" doesn't really seem like a good idea
right now.
L179[23:00:26] <Amanda> Sounds like fake
mews, time to let the laptop take a nap
L180[23:09:53] <Amanda> %choose halucinate
or spaaace
L181[23:09:53] <MichiBot> Amanda:
"halucinate", now with 30% fewer deaths caused by
negligence!
L182[23:11:12] ⇦
Quits: Vexatos
(~Vexatos@p200300eaef139f42e5c6a4519fecca5c.dip0.t-ipconnect.de)
(Quit: Insert quantum chemistry joke here)