<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:25:25]
<ThePiGuy24> no is my box
L2[00:34:08] <Amanda> hiss!
L3[00:34:19] <Amanda> My box, I found it
first!
L4[00:38:56] <Amanda> Things you don't
expect your 16 year old to say: "If I die, get to work on
making me a new vessel please."
L5[00:47:25] * Amanda
flops down around Elfi, reads to her about the primordial goddess
and her chosen champions
L6[00:48:30] <Amanda> Well, the steamdeck is
in PA now. No idea where the hell this city/town is though
L7[00:48:40] <Amanda> Oh well, fedex still
claims it;ll be here tomorrow
L8[00:49:14] <Amanda> So I assume it's
either close, or will do the final hop overnight
L9[00:49:31] <Amanda> anyway, back to cute
fluffy lesibab stories
L10[02:08:53] ⇨
Joins: Hawk777
(~Hawk777@2607:c000:8285:1500:fef5:dc50:62fa:2cee)
L11[02:42:13] *
Amanda meows sleepily to elfi about an her adventures today, all
across the realms
L12[02:42:23] <Amanda> All her*
L13[02:42:30] <Amanda> Night girls
L14[04:32:13]
<Forecaster> %tonk
L15[04:32:14] <MichiBot> Dagnammit!
Forecaster! You beat your own previous record of <0 (By 7
hours, 37 minutes and 52 seconds)! I hope you're happy!
L16[04:32:15] <MichiBot> Forecaster's new
record is 7 hours, 37 minutes and 52 seconds! No points gained for
stealing from yourself. (Lost out on 0.00763)
L17[05:56:20] ⇦
Quits: lunar_sam (c44a7f2987@jabberfr.org) (Ping timeout: 189
seconds)
L18[05:58:27] ⇨
Joins: lunar_sam (c44a7f2987@jabberfr.org)
L19[06:31:45] ⇦
Quits: Hawk777 (~Hawk777@2607:c000:8285:1500:fef5:dc50:62fa:2cee)
(Quit: Leaving.)
L20[06:57:00] ⇨
Joins: demo (~demo@78.129.208.81)
L21[07:00:03] ⇨
Joins: maumagro (~maumagro@78.129.208.81)
L22[07:00:11] <maumagro> hi
jivechicken
L23[07:06:13] ⇦
Quits: maumagro (~maumagro@78.129.208.81) (Remote host closed the
connection)
L24[07:06:13] ⇦
Quits: demo (~demo@78.129.208.81) (Remote host closed the
connection)
L25[07:46:11] ⇦
Quits: Izaya (~izaya@210.1.218.92) (Ping timeout: 189
seconds)
L26[07:52:16] ⇨
Joins: Izaya (~izaya@210.1.218.92)
L27[10:58:22]
<Vaur>
%sip
L28[10:58:22] <MichiBot> You drink a basic
coralcreep potion (New!). Some tonk points fly by. Vaur caught
0.043 tonk points. (Rem. uses: 0)
L29[10:58:34]
<Vaur>
Nice
L30[11:44:14] <Amanda> %splash Vaur with
mutable potion
L31[11:44:14] <MichiBot> You fling a
mutable ruby potion (New!) that splashes onto Vaur. Vaur turns into
a fairy for 5 hours.
L32[11:44:22] <Amanda> !!!
L33[11:44:27] <Amanda> Elfi! I Made you a
new fren!
L34[11:45:42] <Amanda> %splash everyone
with mutable ruby potion
L35[11:45:42] <MichiBot> You fling a
mutable ruby potion that splashes onto everyone. everyone turns
into an octopus until they see a unicorn.
L36[11:45:50] <Amanda> Hey!
L37[11:45:57] <Amanda> That's not what it
did before!
L38[11:46:13] <Amanda> Forecaster you broke
it!
L39[12:01:06]
<ComputerCoco> Heyya, I have a problem,
building a scanner thing but it needs relative input for block
coords and I need a way to get such relative coords in a list
like:
L40[12:01:06]
<ComputerCoco> 1 -> 0 0 0 ; 2 -> 1 0
0 ; 3 -> 0 1 0 ; 4 -> 0 0 1 ; 5 -> -1 0 0 ; 6 -> 0 -1 0
; 7 -> 0 0 -1 ; 8 -> 1 1 0 ; ect
L41[12:01:06]
<ComputerCoco> I just dont know the
mathematical function for this
L42[12:01:59]
<ComputerCoco> Basically an expanding area
in a bubble around 0 0 0, returning the integer values of the next
coord in the sequence
L43[12:06:24] <Izaya> you can use three
nested for loops
L44[12:06:51]
<RedstoneParkour> you can also just
hardcode it
L45[12:07:17] <Izaya> for i = -1, 1 do for
j = -1, 1 do for k = -1, 1 do whatever(i,j,k) end end end
L46[12:07:18] <Amanda> I'm not sure there
is a mathmatical function for that kind of thing, but then again,
maths was never my strong point
L47[12:07:38]
<RedstoneParkour> there isn't
L48[12:08:04] <Amanda> %choose comfort or
utility or pahkidge
L49[12:08:05] <MichiBot> Amanda: Why not
all three? Okay fine. "pahkidge".
L50[12:08:21]
<RedstoneParkour> afaik what Izaya said is
very close to the optimal way to do it
L51[12:08:56]
<ComputerCoco> The nested 3 for loops
works most of the time but it only goes in one direction and also I
needed to have the loop go on forever which is why I cant hardcode
it
L52[12:09:13] <Izaya> if you want it to go
forever then put it in a loop?
L53[12:09:35]
<RedstoneParkour> oh so you want to search
spreading radially from the center?
L54[12:09:41]
<ComputerCoco> yea
L55[12:09:47]
<RedstoneParkour> hm
L56[12:09:51]
<ComputerCoco> and I can put it in a loop,
but not hard coding it
L57[12:10:18]
<ComputerCoco> cause I think hard coding
means doing it by hand? this scanner is supposed to scan 1000s of
blocks, I dont want to type all the coords by hand xD
L58[12:10:44] <Amanda> sin/cos + loop to
increase the radius
L59[12:10:58]
<RedstoneParkour> hm
L60[12:11:04]
<ComputerCoco> yea but that want follow
the integers exactly
L61[12:11:09]
<ComputerCoco> I guess I could round
L62[12:11:11]
<ComputerCoco> but it might repeat
L63[12:11:23]
<ComputerCoco> if it reapeats I'd have to
keep a list of already scaned block to skip
L64[12:11:26]
<ComputerCoco> and it might skip blocks
too
L65[12:11:45]
<ComputerCoco> my idea was using the
magnitude of the coord to sort them
L66[12:11:55]
<RedstoneParkour> basically you want to
have a function `f(s)` that returns a hollow cube with side lengths
of `s`
L67[12:11:58]
<ComputerCoco> but that would only work by
pre computing the magnitue for the area
L68[12:13:04]
<ComputerCoco> >RedstoneParkour:
basically you want to have a function `f(s)` that returns a hollow
cube with si…
L69[12:13:04]
<ComputerCoco> not really hollow
L70[12:13:04]
<ComputerCoco> but actually, if it can
give me all the cords in a cube of s length I can just run it for 1
2 3 so forth
L71[12:13:05]
<ComputerCoco> hmmm
L72[12:13:13]
<ComputerCoco> tho I was hoping more
spherical
L73[12:13:27]
<RedstoneParkour> >ComputerCoco: not
really hollow
L74[12:13:28]
<RedstoneParkour> but actually, if it can
give me all the cords in a cube of s len…
L75[12:13:28]
<RedstoneParkour> yes and it should be
hollow to avoid checking the same block multiple times
L76[12:14:30]
<ComputerCoco> yea
L77[12:14:30]
<ComputerCoco> I just condiered the
funtion to be one rather than a wrapper for an iterative
L78[12:14:30]
<ComputerCoco> So in theroy in the end
youd run a wrapper function with 3 and it'd run the in function
with 1 then 2 then 3
L79[12:15:06]
<RedstoneParkour> >ComputerCoco: tho I
was hoping more spherical
L80[12:15:06]
<RedstoneParkour> spherical means getting
all x and y values for which (x - 0.5)² + (y - 0.5)² < r < (x
+ 0.5)² + (y + 0.5)²
L81[12:15:26]
<RedstoneParkour> all integer x and y
values*
L82[12:15:41]
<RedstoneParkour> also forgot the z
part
L83[12:16:28] <Amanda> What are you
scanning? Worth noting that the geolyzer has a fixed range
L84[12:17:00]
<RedstoneParkour> oh yeah forgot about the
fixed range
L85[12:17:12]
<ComputerCoco> I am using Integrated
dynamics with integrated proxy, using an interface to set the xyz
coords of the proxy
L86[12:17:12]
<RedstoneParkour> 3 for loops should do
the trick then
L87[12:17:17]
<RedstoneParkour> wait
L88[12:17:24]
<ComputerCoco> the proxy can go forever
btw
L89[12:17:49]
<ComputerCoco> kinda over powered, but hey
Im ok with that atm xD
L90[12:17:56]
<RedstoneParkour> yeah thats quite
op
L92[12:19:12]
<RedstoneParkour> i'd suggest the hollow
cube approach
L93[12:19:23]
<ComputerCoco> yea
L94[12:19:23]
<ComputerCoco> probobly the best
idea
L95[12:19:45] <Amanda> y is also bound by
the world height
L96[12:19:53]
<ComputerCoco> yea I'd have to cap that
too
L97[12:20:29]
<RedstoneParkour> that can probably be
done in the search cube function
L98[12:21:11]
<RedstoneParkour> i'd suggest to skip
radius 1 btw
L99[12:22:31]
<ComputerCoco> yea that'd just be the
scaner block itself
L100[12:26:27] <Amanda> Goddesses it sure
would be great to know why my pihole container keeps shutting
itself down
L102[14:04:38] <Amanda> %choose factory or
island or neither
L103[14:04:38] <MichiBot> Amanda: Wait,
what was the question again? Uhh... "neither"?
L104[14:08:56] <Amanda> %give MichiBot the
cure for parasocial relationships!
L105[14:08:56] *
MichiBot accepts the cure for parasocial relationships! and adds it
to her inventory
L106[14:47:01] ⇦
Quits: Amanda (~m-yt727s@2601:46:c603:aba1:37fb:8509:a97b:5669)
(Ping timeout: 189 seconds)
L107[14:55:55]
⇨ Joins: Amanda
(~m-yt727s@2601:46:c603:aba1:84c0:ec33:b034:7a11)
L108[15:32:18]
⇨ Joins: Vexatos
(~Vexatos@p200300eaef10904219314d96f8392e42.dip0.t-ipconnect.de)
L109[15:32:18]
zsh sets mode: +v on Vexatos
L110[15:39:53] ⇦
Quits: Vexatos
(~Vexatos@p200300eaef10904219314d96f8392e42.dip0.t-ipconnect.de)
(Ping timeout: 189 seconds)
L111[15:53:49]
⇨ Joins: Vexatos
(~Vexatos@p200300eaef139f454daf0d904f1a0e2e.dip0.t-ipconnect.de)
L112[15:53:49]
zsh sets mode: +v on Vexatos
L113[15:54:42] ⇦
Quits: Vexatos
(~Vexatos@p200300eaef139f454daf0d904f1a0e2e.dip0.t-ipconnect.de)
(Client Quit)
L114[15:55:18]
<Forecaster> >Amanda: Forecaster you
broke it!
L115[15:55:18]
<Forecaster> It's been like that for ages
:P
L116[15:55:33]
<Forecaster> %tonkout
L117[15:55:33] <MichiBot> Goshhawk!
Forecaster! You beat your own previous record of 7 hours, 37
minutes and 52 seconds (By 3 hours, 45 minutes and 27 seconds)! I
hope you're happy!
L118[15:55:34] <MichiBot> Forecaster has
tonked out! Tonk has been reset! They gained 0.011 tonk points!
plus 0.02 bonus points for consecutive hours! Current score:
3.03570825, Position #2 Need 0.171446 more points to pass
Vaur!
L119[16:08:05] <Amanda> Forecaster so not
only did you break it, you're lazy in fixing it, got it. :3
L120[16:08:39]
<Forecaster> yep
L121[16:57:47] <Amanda> Now to manually
transfer my dinkum save from my gaming compy to the steamdeck
L122[16:58:03] <Amanda> first: To find
that save
L123[17:21:45]
⇨ Joins: Vexatos
(~Vexatos@p200300eaef139f451ac04dfffe9b3e6c.dip0.t-ipconnect.de)
L124[17:21:45]
zsh sets mode: +v on Vexatos
L125[17:53:32] <Amanda> Elfi~ Those
no-good foxen keep stealing my sleeping bag overnight
L127[17:58:50]
<Forecaster> stop making sleeping bags out
of marshmallow
L128[17:59:45]
<Vaur>
%tonk
L129[17:59:45] <MichiBot> Hooray! Vaur!
You beat Forecaster's previous record of <0 (By 2 hours, 4
minutes and 11 seconds)! I hope you're happy!
L130[17:59:46] <MichiBot> Vaur's new
record is 2 hours, 4 minutes and 11 seconds! Vaur also gained
0.00207 tonk points for stealing the tonk. Position #1.
L131[18:03:50] ⇦
Quits: cyn1c (~cynic@a.silly.computer) (Ping timeout: 189
seconds)
L132[18:05:34]
⇨ Joins: cyn1c (~cynic@a.silly.computer)
L133[18:18:08] ⇦
Quits: progwml6 (~progwml6@45.159.180.88) (Ping timeout: 189
seconds)
L134[18:30:01]
⇨ Joins: progwml6 (~progwml6@45.159.180.88)
L135[19:05:35]
⇨ Joins: iop (webchat@92.37.230.19)
L137[19:10:18] <Amanda> hoihoi
L138[19:11:01] ⇦
Quits: iop (webchat@92.37.230.19) (Quit:
webchat.esper.net)
L139[19:50:23]
<Forecaster> oh no, someone said hi and
then left within a few minutes! that never happens!
L140[19:57:18] <Amanda> It's clearly an
ill omen.
L141[19:58:56]
<Forecaster> %sip
L142[19:58:56] <MichiBot> You drink a
viscous strawberry potion (New!). Forecaster turns into a void
robot fish boy until they see a star fall.
L143[19:59:05]
<Forecaster> awhat
L144[20:41:13]
<Vaur>
%sip
L145[20:41:13] <MichiBot> You drink a
mutable tan potion (New!). Vaur turns into a dog until Sozin's
Comet returns.
L146[20:58:12]
<Forecaster> %tonkout
L147[20:58:13] <MichiBot> Wah!
Forecaster! You beat Vaur's previous record of 2 hours, 4 minutes
and 11 seconds (By 54 minutes and 15 seconds)! I hope you're
happy!
L148[20:58:13] <MichiBot> Forecaster has
stolen the tonkout! Tonk has been reset! They gained 0.002 tonk
points! plus 0.001 bonus points for consecutive hours! (Reduced to
50% because stealing) Current score: 3.03920825. Position #2 Need
0.170016 more points to pass Vaur!
L149[22:57:28] ⇦
Quits: Izaya (~izaya@210.1.218.92) (Read error: Connection reset by
peer)
L150[23:03:36]
⇨ Joins: Izaya (~izaya@210.1.218.92)
L151[23:04:51] ⇦
Quits: Vexatos
(~Vexatos@p200300eaef139f451ac04dfffe9b3e6c.dip0.t-ipconnect.de)
(Remote host closed the connection)