<<Prev Next>> Scroll to Bottom
Stuff goes here
L1[00:11:10] <Izzy> did anyone end up
implementing multicast for minitel according to the spec without me
hearing about it?
L2[00:11:42]

<SoraFirestorm> ... what all actually gets
allocated to the computer memory
L3[00:12:11]

<SoraFirestorm> I have written about as
small and dumb of a basic REPL as I can manage straight to an
EEPROM and it's still reporting to use 16k memory
L4[00:15:04]

<SoraFirestorm> if I tell the REPL to
calculate `computer.totalMemory() - computer.freeMemory()`
L5[00:39:18] ⇨
Joins: JajaSteele70221947312603
(~jajasteel@lfbn-dij-1-711-129.w90-100.abo.wanadoo.fr)
L6[05:14:53] ⇨
Joins: ironmountain (~ironmount@199.101.126.121)
L7[05:47:53] <RedstoneParkour> Izzy: none
that i know of?
L8[05:48:24] <RedstoneParkour> And
SoraFirestorm: did you make sure to pullSignal 10 times in a row to
get the gc to activate?
L9[05:58:03]

<Vaur>
%tonk
L10[05:58:03] <MichiBot> Boo-yah! Vaur!
You beat SpiderEveryOS's previous record of 4h 55m 8s (By 7h
36m 12s)! I hope you're happy!
L11[05:58:03] <MichiBot> Vaur's new
record is 12h 31m 20s! Vaur also gained 0.038 (0.0076 x 5) tonk
points for stealing the tonk. Position #3. Need 0.3449494 more
points to pass Forecaster!
L12[06:43:25] <Corded> >
<RedstoneParkour> And SoraFirestorm: did you make sure to
pullSignal 10 times…
L13[06:43:25]

<SoraFirestorm> That depends on how you
mean that exactly. Maybe.
L14[06:43:46]

<SoraFirestorm> The REPL input is
signal-driven ofc
L15[06:44:36] <RedstoneParkour> hmm
L16[06:44:53] <RedstoneParkour> what does
the ocelot memory usage meter say?
L17[06:45:17] <RedstoneParkour> also 16K
memory?
L18[06:45:21] <RedstoneParkour> that seems
normal for just a repl
L19[06:46:27]

<SoraFirestorm> Literally nothing else
running on the machine though, just the bare minimum to type into
it and have it spit letters back out? Man...
L20[06:46:39] <Corded> >
<RedstoneParkour> what does the ocelot memory usage meter
say?
L21[06:46:40]

<SoraFirestorm> The what now
L22[06:47:49]

<Michiyo> I
think the assumption was you were running in the emulator
ocelot.
L24[06:48:18]

<SoraFirestorm> I was not, I was running
in-game
L25[06:48:48]

<SoraFirestorm> I'll run in Ocelot at
some point
L26[06:49:58]

<SoraFirestorm> Ocelot is probably not
aware of the default size setting, is it? :P
L27[06:50:36]

<SoraFirestorm> I am actually using and
respecting it
L28[06:51:01]

<SoraFirestorm> Which isn't super
code golf of me, but I do have a couple affordances because I felt
lile they were necessary :P
L29[06:52:13]

<SoraFirestorm> I can upload the EEPROM
later
L30[07:22:18] <RedstoneParkour> michiyo:
yeah i was assuming ocelot was at least known
L31[08:16:45]

<SoraFirestorm> Ocelot doesn't
support `text_input` signal, which I am using because theoretically
it's the thing I'm supposed to be using
L32[08:30:30]

<RedstoneParkour> except that there are
talks about removing text_input iirc
L34[08:31:35] <MichiBot>
Pull
request: Remove `text_input` signal
| Posted by:
Ocawesome101
| Posted: Mon, 24 Aug 2026 04:30:56 GMT
|
Status: closed
L35[08:32:05]

<RedstoneParkour> oh its staying
L36[08:32:11]

<RedstoneParkour> i thought that
well
L37[08:32:28]

<RedstoneParkour> it could be done by
having a 0 scancode or something when the actual character is
sent
L38[08:32:52]

<RedstoneParkour> or even a nil
scancode
L39[08:33:06]

<RedstoneParkour> though that'd
likely break existing OSes
L40[08:33:31] ⇦
Quits: Michiyo (~Michiyo@2a11:6c7:2500:a200:64c8:cbb:eed4:3107)
(Read error: Connection reset by peer)
L41[08:33:34]

<SoraFirestorm> I'm pretty sure a new
signal was deliberate as a clean break to prevent compatibility
issues yeah
L42[08:33:57]

<SoraFirestorm> You only get new
IME-friendlier behavior if you explicitly support it
L43[08:34:08]

<RedstoneParkour> oh so key_down still
sends characters?
L44[08:34:12]

<SoraFirestorm> yeah
L45[08:34:17]

<RedstoneParkour> alr then
L46[08:34:21]

<SoraFirestorm> `key_down` continues to do
what it already did
L47[08:34:41]

<SoraFirestorm> and you still have to have
some amount of looking for `key_down` in your code
L48[08:34:58]

<SoraFirestorm> since `text_input`
doesn't do control characters
L49[08:35:04]

<RedstoneParkour> right
L50[08:35:22]

<SoraFirestorm> so for instance, in my
BIOS REPL, I still have to handle `key_down` to get backspace and
enter
L51[08:35:53]

<RedstoneParkour> yeah
L52[08:36:04]

<SoraFirestorm> which is maybe probably
not ideal but
L53[08:36:14]

<RedstoneParkour> also, back to memory
usage: 16kB for a bios REPL is actually very small
L54[08:36:40]

<RedstoneParkour> probably the bare
minimum
L55[08:36:46]

<SoraFirestorm> the ocelot memory viewer
thingy isn't all that helpful honestly
L56[08:36:58]

<SoraFirestorm> it's a small enough
amount of memory to be a rounding error
L57[08:37:30]

<RedstoneParkour> yeah
L58[08:38:23]

<SoraFirestorm> even 'rescaling'
it by putting in a single T1 module
L59[08:41:23]

<SoraFirestorm> and so most of that memory
has to be the core env, right?
L60[08:41:46]

<SoraFirestorm> everything that is
provided to the Lua architecture?
L61[08:45:48]

<SoraFirestorm> I had always assumed that
the bundled libraries that come up with the machine didn't
count against the memory limit
L62[08:46:04]

<SoraFirestorm> so I was expecting to only
see like... 2-3k memory usage max
L63[08:46:54]

<SoraFirestorm> most of that being the
code for the REPL and then input strings that were still transient
and not yet GC'd
L64[09:33:07] ⇦
Quits: vftdan_irc
(~vftdan@dslb-088-072-172-043.088.072.pools.vodafone-ip.de) (Ping
timeout: 195 seconds)
L65[10:02:28] ⇦
Parts: vftdan (b5cb05d1b9@2a00:c70:1:178:170:40:189:1) (Error from
remote client))
L66[10:33:53] ⇨
Joins: vftdan (b5cb05d1b9@jabberfr.org)
L67[10:39:54] ⇨
Joins: vftdan_irc (~vftdan@89.207.172.105)
L68[10:47:03] ⇦
Quits: KindOne (kindone@68.183.114.86) (Ping timeout: 194
seconds)
L69[10:48:26] *** Joins: KindOne
(kindone@2604:a880:400:d0::1f56:d001) KindOne
L70[10:49:56] ⇦
Quits: vftdan_irc (~vftdan@89.207.172.105) (Ping timeout: 201
seconds)
L71[11:17:10] *
Amanda meows and looks around
L72[11:17:19] *
Amanda orders MichiBot some %soup
L73[11:17:19] <MichiBot> Waiter!! Waiter!!
There's voter id powered by javascript and AWS Lambda in my
soup!
L74[11:17:58] <Amanda> Hey! These data
centre projects are getting out of control! Who let Amazon setup a
dedi in MichiBot's soup!?
L75[11:26:32] ⇨
Joins: vftdan_irc (~vftdan@141.13.32.9)
L76[11:45:25] ⇦
Quits: vidak (~vidak@2407:e400:7800:2c01:c4db:d9c4:aac4:94f6) (Ping
timeout: 195 seconds)
L77[13:07:13] ⇨
Joins: Guest23 (~guest23@129.222.49.176)
L78[13:08:14] ⇦
Quits: Guest23 (~guest23@129.222.49.176) (Client Quit)
L79[14:38:56] ⇨
Joins: vidak
(~vidak@2407:e400:7800:2c01:d0be:76f8:cc84:bd4a)
L80[15:25:15] ⇦
Quits: vftdan_irc (~vftdan@141.13.32.9) (Ping timeout: 194
seconds)
L81[16:55:05] *** Joins: Michiyo
(~Michiyo@2a11:6c7:2500:a200:8492:4c4a:1914:4a2) Michiyo
L82[16:55:05] zsh
sets mode: +o on Michiyo
L83[17:09:48] ⇦
Quits: Cruor (Cruor@satomi.openshell.no) (Ping timeout: 201
seconds)
L84[17:10:39] ⇨
Joins: Cruor (Cruor@satomi.openshell.no)
L85[17:53:53] ⇦
Quits: jackie (~jackie@banana-new.kilobyte22.de) (Ping timeout: 194
seconds)
L86[17:54:19] ⇦
Quits: Stary (Stary@thonk.9net.org) (Ping timeout: 194
seconds)
L87[17:55:34] *** Joins: jackie
(~jackie@banana-new.kilobyte22.de) jackie
L88[17:55:35] zsh
sets mode: +v on jackie
L89[17:55:43] ⇨
Joins: vftdan_irc
(~vftdan@dslb-088-072-172-043.088.072.pools.vodafone-ip.de)
L90[17:57:03] *** Joins: Stary
(Stary@thonk.9net.org) Stary2001
L91[18:30:01]

<Vaur>
%chug
L92[18:30:01] <MichiBot> You drink a hot
apple potion (New!). Vaur has a feeling that their face just
appeared on a random vegetable somewhere.
L93[18:31:50]

<Vaur>
%tonkout
L94[18:31:50] <MichiBot> Jeepers! Vaur!
You beat your own previous record of 12h 31m 20s (By 2m 26s)! I
hope you're happy!
L95[18:31:50] <MichiBot> Vaur has tonked
out! Tonk has been reset! They gained 0.012 tonk points! plus 0.022
bonus points for consecutive hours! Current score: 2.23527,
Position #3 Need 0.3109494 more points to pass Forecaster!
L96[23:31:34]

<SpiderEveryOS> %tonk
L97[23:31:34] <MichiBot> Awesome!
SpiderEveryOS! You beat Vaur's previous record of 0s (By 4h
59m 44s)! I hope you're happy!
L98[23:31:35] <MichiBot>
SpiderEveryOS's new record is 4h 59m 44s! SpiderEveryOS also
gained 0.005 tonk points for stealing the tonk. Position #1.
L99[23:34:38] ⇦
Quits: doskel (~doskel@2602:f927:1:200:4000::) (Remote host closed
the connection)
L100[23:35:05] *** Joins: doskel
(~doskel@2602:f927:1:200:4000::) doskel