<<Prev Auto Refresh
Scroll to Bottom
Stuff goes here
L1[00:16:48] ⇦
Quits: simon816 (~simon816@secondary.machine.simon816.com) (Quit:
ZNC 1.9.1 - https://znc.in)
L2[00:20:21] ⇨
Joins: simon816
(~simon816@secondary.machine.simon816.com)
L3[00:37:40]

<Renno>
finally making some real progress with drone stuff
L5[00:57:52] <Amanda> @Lily what do you
mean? Looks fine to me, you wanted the stiched texture map to be
rendered over and over right?
L6[00:58:59]

<Lily>
lol
L7[01:02:06] <stephan48> also based on the
amount of clocks, make sure you did not forget any important
appointment
L8[01:37:12] <Corded> > <MichiBot>
You drink a searing violet potion. Tonk moved forward 4 hou…
L9[01:37:12]

<Spider
EveryOS> I don't even know what's happening at this
point
L10[01:37:19]

<Spider
EveryOS> %sip
L11[01:37:19] <MichiBot> You drink a
hexagonal apple potion (New!). The bottle splits into two revealing
a smaller Dusty Purple potion.
L12[01:39:23] <Amanda> %splash @Forecaster
with mutable crab potion
L13[01:39:23] <MichiBot> You fling a
mutable adamantium potion (New!) that splashes onto @Forecaster.
@Forecaster turns into a shark boy for 2 moons.
L14[01:39:35] <Amanda> shork!
L16[01:41:46]

<Kristopher38> it's in kotlin but
that should be good enough (?)
L17[01:42:25]

<Kristopher38> I don't know anything
about the java ecosystem but I've read that kotlin code can be
used seamlessly in java projects
L18[01:42:43] <Hawk777> Oh neat!
L19[01:45:10] <Hawk777> Most recent commit
today, first commit… hm, January of this year. Not very old
then.
L20[01:46:07]

<Kristopher38> other less enticing options
include: wasmer (with V8 engine backend, the only one that supports
GC in wasmer right now) with JNI, GraalWasm when it supports GC in
a about year (if we are to trust their roadmap), or this
experimental thing written in some homebrew language that
apparently supports a lot of stuff and can generate
L23[01:48:31] <Amanda> Hrm hrm
L24[01:48:46] <Amanda> %choose early
zzzmews or continue staring at tv
L25[01:48:46] <MichiBot> Amanda: Pretty
sure I'd want you to go with "continue staring at
tv"!
L26[01:54:19] <Hawk777> WASM GC seems a bit
ridiculous.
L27[01:54:24]

<Kristopher38> on a totally unrelated
note: loading other modules would be interesting as well. Currently
everything has to be a single binary so writing a true OS with the
ability to load other binaries and interact with OS services is
borderline impossible
L28[01:54:46]

<Renno>
nodemap with pathfinding seems to be working in only 3 tries?
I'm shocked
L29[01:54:49] <Hawk777> But anyway.
L30[01:55:03]

<Kristopher38> GC'd languages that
compile to WASM use this feature
L31[01:55:14] <Hawk777> I suppose so.
L32[01:55:20]

<Kristopher38> i've only checked
ocaml and haskell but you get the idea
L33[01:55:26]

<Renno>
I'm like 2/3rds or 1/2 the way to having an actually
functional logistics system run by drones
L34[01:55:34] <Hawk777> Not sure why they
can’t just do their GC inside WASM, like they would with any other
target arch, but sure.
L35[01:56:52] <Hawk777> Mm, maybe, on the
multi-file thing? That’s quite outside my personal area of
interest. For me, operating systems in OC are of no interest; if I
want to write almost any piece of software (including an operating
system), I’d prefer to do it outside Minecraft. The only reason I
use OC is that it provides one massive benefit compared to
everything else: it can poke at blocks in my Minecraft world. But
code that pokes at blocks tends to
L36[01:56:52] <Hawk777> ore dedicated,
single-purpose, almost like embedded systems, so a full-blown OS
seems kind of unncessary.
L37[01:56:58] <Hawk777> Which is not to say
that other people shouldn’t do it, it’s just not interesting to
me.
L38[01:57:18]

<Renno>
either those messages came through late or hawk is actually super
duper fast at typing
L39[01:57:39] <Hawk777> Probably
100-something WPM these days.
L40[01:57:48]

<Kristopher38> I don't know how the
infrastructure for those langs is set up, maybe having a GC in wasm
would mean a lot of extra work for the devs
L41[01:57:51] <Hawk777> Haven’t tried for
ages.
L42[01:57:59]

<Kristopher38> or they just want to rely
on the WASM runtime for GC since it'd be faster
L43[01:58:08]

<Kristopher38> possibly anyway
L44[01:59:01] <Hawk777> I figured if
someone wanted to write an “OS-lite” kind of thing, they could do
it like a unikernel, so the OS and applications are just linked
together into one .wasm file.
L45[01:59:25]

<Renno>
that's pretty decent, when I know what I'm actually going
to say I can get like 120 but that takes a lot of extra effort when
I can just get 90 stable with good accuracy
L46[01:59:33]

<Kristopher38> yeah oc-wasm feels like
writing for an embedded system
L47[02:00:53] <Hawk777> Yep! Because that’s
what I wanted to use it for: operating nuclear reactors, arc
furnaces, and gas turbines. Stuff like that. Not writing e-mails or
web browsing or whatever.
L48[02:01:51]

<Kristopher38> I was even thinking about
hybrid approach where the OS is in lua but you can run wasm apps
and the OS dynamically switches architecture and runs selected
binary upon reboot, and on exit it switches back to the lua
OS
L49[02:02:04] <Hawk777> I don’t think
that’s ever going to happen in OC-Wasm.
L50[02:02:17] <Hawk777> OC itself requires
that each CPU has one architecture.
L51[02:02:39]

<Kristopher38> you can change architecture
with a component call
L52[02:02:44]

<Kristopher38> iirc
L53[02:02:44] <Hawk777> Can you?
L55[02:03:09] <Hawk777> Get, but not
set.
L56[02:03:39] <Hawk777> You could always
build two computers and have them share components.
L57[02:03:42]

<Kristopher38>
`computer.setArchitecture`
L58[02:03:43] <Hawk777> One for each
arch.
L59[02:03:55]

<Kristopher38> I can see it in
ocelot
L62[02:04:24] <Hawk777> Meh, maybe the
website is old? Or maybe it only exists in Ocelot and not actual
OC?
L63[02:04:40]

<Kristopher38> I remember doing this in
actual OC as well
L64[02:05:15] <Hawk777> Ah, it’s there
alright.
L65[02:05:21] <Hawk777> Just not documented
I guess.
L66[02:05:55] *
Amanda pawhugs Elfi, meows about her day as she gets started on her
new zzzmew initative
L67[02:06:07] <Hawk777> But I assume that’s
akin to a reboot? In which case you could also just have two
computers, one of each architecture, that toss control back and
forth while sharing components.
L68[02:07:20]

<JasonS> if
we're sharing components between computers, what about having
two CPU slots in a single case? One for each desired
architecture
L69[02:07:35] <Hawk777> Sure? That’s not
something OC-Wasm can do though, that would be an OC thing.
L70[02:07:49] <Hawk777> Or maybe some other
mod that adds a new case type.
L71[02:09:23] <Amanda> Night girls
L72[02:09:41] <Amanda> Don't forget to
cuddle your ci yaml
L73[02:10:18] ⇦
Quits: jackie (~jackie@banana-new.kilobyte22.de) (Ping timeout: 183
seconds)
L74[02:10:23] ⇦
Quits: kilobyte (~kilobyte2@banana-new.kilobyte22.de) (Ping
timeout: 190 seconds)
L75[02:10:23] ⇦
Quits: nadja (~dequbed@banana-new.kilobyte22.de) (Ping timeout: 190
seconds)
L77[02:13:55] ⇨
Joins: kilobyte (~kilobyte2@banana-new.kilobyte22.de)
L78[02:13:55] zsh
sets mode: +v on kilobyte
L79[02:13:58] ⇨
Joins: jackie (~jackie@banana-new.kilobyte22.de)
L80[02:13:58] zsh
sets mode: +v on jackie
L81[02:14:01]

<Kristopher38> Sharing components,
especially drives and cards, would need to be done by inserting
them into adapters I think
L82[02:14:22] ⇨
Joins: nadja (~dequbed@banana-new.kilobyte22.de)
L83[02:14:34]

<Kristopher38> Since computers in a
component network can't access each others case
components
L84[02:15:33]

<Kristopher38> Anyway it's late and
I'm supposed to be sleeping
L85[02:15:51]

<Kristopher38> Thanks for considering my
feature request
L86[02:16:17] <Hawk777> Hm, I was thinking
more like each computer would have its own GPU but then the screen
would be unbound and rebound.
L87[02:16:33] <Hawk777> Or each computer
would have its own NIC because those don’t really care about
sharing.
L88[02:16:47] <Hawk777> By sharing I meant
screens, keyboards, adapters connecting to machines in the world,
etc..
L89[02:19:47]

<JasonS> ah
I see
L90[03:01:00] <Corded> >
<Kristopher38> Sharing components, especially drives and
cards, would need…
L91[03:01:00]

<Renno>
being able to share drives would be huge
L92[03:01:30]

<Renno> I
like to clone hdds in creative so I can have 1 pc running 1 project
and another pc running another in singleplayer
L93[03:12:17] <Hawk777> Can’t you put
drives in a RAID which is a block, so multiple computers can use
it?
L94[05:32:59]

<Forecaster> %tonkout time I think
L95[05:33:00] <MichiBot> Hooray!
Forecaster! You beat your own previous record of 3 hours, 52
minutes and 17 seconds (By 56 minutes and 9 seconds)! I hope
you're happy!
L96[05:33:01] <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.70557462, Position #5 Need 0.07505945 more points to pass
RedstoneParkour!
L98[06:11:32] ⇨
Joins: daniel (~quassel@2a03:4000:6:407b::1)
L99[06:20:51]

<Spider
EveryOS> %tonk
L100[06:20:51] <MichiBot> Kapow! Spider
EveryOS! You beat Forecaster's previous record of <0 (By
47 minutes and 51 seconds)! I hope you're happy!
L101[06:20:52] <MichiBot> Spider
EveryOS's new record is 47 minutes and 51 seconds! Spider
EveryOS also gained 0.0008 tonk points for stealing the tonk.
Position #3. Need 0.27762928 more points to pass
Flameingsoul!
L102[07:24:35]
⇨ Joins: Vexatos
(~Vexatos@p200300eaef3b7a00a149ba3baa84ec22.dip0.t-ipconnect.de)
L103[07:24:36]
zsh sets mode: +v on Vexatos
L104[07:24:36]

<Vaur>
%tonk
L105[07:24:36] <MichiBot> Wah! Vaur! You
beat Spider EveryOS's previous record of 47 minutes and 51
seconds (By 15 minutes and 53 seconds)! I hope you're
happy!
L106[07:24:39] <MichiBot> Vaur's new
record is 1 hour, 3 minutes and 44 seconds! Vaur also gained
0.00026 tonk points for stealing the tonk. Position #1.
L107[08:11:03] ⇦
Quits: Aino (~nia@ayame.servers.aura.moe) (Ping timeout: 207
seconds)
L108[08:13:52] ⇦
Quits: Hawk777 (~Hawk777@2001:569:7cae:7e00:1b56:db7d:d6bf:9a57)
(Quit: Leaving.)
L109[08:21:04]
⇨ Joins: Nia (~nia@ayame.servers.aura.moe)
L110[08:25:36] ⇦
Quits: Nia (~nia@ayame.servers.aura.moe) (Client Quit)
L111[08:28:10]
⇨ Joins: Nia (~nia@ayame.servers.aura.moe)
L112[09:01:19]

<Spider
EveryOS> %tonk
L113[09:01:19] <MichiBot> Potzblitz!
Spider EveryOS! You beat Vaur's previous record of 1 hour, 3
minutes and 44 seconds (By 32 minutes and 58 seconds)! I hope
you're happy!
L114[09:01:20] <MichiBot> Spider
EveryOS's new record is 1 hour, 36 minutes and 43 seconds!
Spider EveryOS also gained 0.0011 (0.00055 x 2) tonk points for
stealing the tonk. Position #3. Need 0.27652928 more points to pass
Flameingsoul!
L115[09:04:12] <stephan48> Amanda: you
meowed about using helmfile, do you use it via an operator?
L116[09:04:21] <stephan48> or just the
cli?
L117[10:39:26]

<Flameingsoul> %tonk
L118[10:39:26] <MichiBot> Wah!
Flameingsoul! You beat Spider EveryOS's previous record of 1
hour, 36 minutes and 43 seconds (By 1 minute and 23 seconds)! I
hope you're happy!
L119[10:39:27] <MichiBot>
Flameingsoul's new record is 1 hour, 38 minutes and 7 seconds!
Flameingsoul also gained 0.00004 (0.00002 x 2) tonk points for
stealing the tonk. Position #2. Need 0.16446095 more points to pass
Vaur!
L120[10:51:31] ⇦
Quits: Vexatos
(~Vexatos@p200300eaef3b7a00a149ba3baa84ec22.dip0.t-ipconnect.de)
(Quit: Insert quantum chemistry joke here)
L121[11:23:09]

<Forecaster> %sip
L122[11:23:09] <MichiBot> You drink a
gloomy tuna potion (New!). Forecaster gains the proportional
strength of a wolf until they have an apple.
L123[11:52:20] <Amanda> stephan48: nah, I
don't really use operators
L124[12:18:43]

<Flameingsoul> %tonkout
L125[12:18:43] <MichiBot> Shoot!
Flameingsoul! You beat your own previous record of 1 hour, 38
minutes and 7 seconds (By 1 minute and 9 seconds)! I hope
you're happy!
L126[12:18:44] <MichiBot> Flameingsoul
has tonked out! Tonk has been reset! They gained 0.001 tonk points!
Current score: 2.12982335, Position #2 Need 0.16346095 more points
to pass Vaur!
L127[12:24:54]

<Forecaster> _convinces one of
Amanda's instances to use operators just to annoy
main-manda_
L128[12:32:40] <Amanda> stephan48: so
yeah, I just use the cli in a forgejo actions stage
L129[14:32:10]

<Spider
EveryOS> %tonk
L130[14:32:10] <MichiBot> Wild! Spider
EveryOS! You beat Flameingsoul's previous record of <0
(By 2 hours, 13 minutes and 27 seconds)! I hope you're
happy!
L131[14:32:11] <MichiBot> Spider
EveryOS's new record is 2 hours, 13 minutes and 27 seconds!
Spider EveryOS also gained 0.00222 tonk points for stealing the
tonk. Position #3. Need 0.27534928 more points to pass
Flameingsoul!
L132[14:32:23]

<Spider
EveryOS> %sip
L133[14:32:24] <MichiBot> You drink a
stirring honey potion (New!). Spider EveryOS turns into a copper
lizard sword until their next sip of water.
L134[15:15:57] <Corded> >
<Hawk777> Can’t you put drives in a RAID which is a block,
so multipl…
L135[15:15:57]

<Renno> I
suppose thats true but it loses all data if it gets broken
iirc
L136[15:30:55]
⇨ Joins: YANHSH (~YANHSH@168.195.6.111)
L137[15:31:23] ⇦
Quits: YANHSH (~YANHSH@168.195.6.111) (Client Quit)
L138[16:16:39] <stephan48> Amanda: ah! i
just remembered you used it and quickly introduced it to replace
the helm/shell/kustomize mess we used for our work k8s clustere,
the colleagues really liked it!
L139[16:18:01] <stephan48> quickly means i
spent 2h today and then we used it in "prd" :P
L140[16:20:48] *
Amanda is currently playing with setting up dagger.io's engine
in a podman container using quadlets
L141[16:54:04]
⇨ Joins: Vexatos
(~Vexatos@p200300eaef3b7a00a149ba3baa84ec22.dip0.t-ipconnect.de)
L142[16:54:05]
zsh sets mode: +v on Vexatos
L143[16:55:17]

<Michiyo>
Vexatos you actually alive?
L144[16:59:41] <Vexatos> I am
L145[17:00:43]

<Michiyo>
Github seems to have broken the ?token=timestamp thing which has
broken OPPM
L146[17:00:49] <Vexatos> aw crap
L147[17:00:54]

<Michiyo> I
tested and ?token=bleh returns a 404
L148[17:01:01]

<Michiyo>
but ?wtfever=bleeeeeh is fine.
L149[17:01:05] <Vexatos> uuh
L150[17:01:07]

<Michiyo> I
assume they're using token internally for something now
L151[17:01:10] <Vexatos> yea
L152[17:01:13] <Vexatos> I can change
that
L153[17:01:21] <Vexatos> give me a bit I
just got my PhD 90 minutes ago
L154[17:01:33]

<Michiyo> I
would have and submitted a PR... but honestly I couldn't find
where you did it at lol
L155[17:01:57]

<Renno> Dr.
Vexatos in the house
L156[17:02:02] <Vexatos> it's
true
L157[17:02:17]

<Michiyo>
Also, Congrats!
L159[17:02:23] <Vexatos> but yea
L160[17:02:28] <Vexatos> I can change
it
L161[17:02:34]

<Michiyo>
OH, I was looking at the OPPM in the OC repo
L162[17:02:35]

<Michiyo>
ffs lol
L163[17:02:47] <Vexatos> hweh
L164[17:02:53]

<Renno>
Vexatos, think I could take the place of one of the empty repos on
OPPM?
L165[17:03:07] <Vexatos> empty
repos?
L166[17:03:26]

<Renno>
LizzyTrickster's Programs
L167[17:03:36]

<Renno>
lists no programs
L168[17:03:50] <Vexatos> the repos are
kinda legacy things ever since I added support for locally adding
repos
L169[17:04:04] <Vexatos> you can just make
your own repo on your own github account
L170[17:04:08]

<Renno> I
do have one
L171[17:04:14] <Vexatos> and then
"oppm register" it
L172[17:04:17]

<Renno>
I'm asking so it doesn't have to be manually
registered
L173[17:04:28] <Vexatos> yea I
wouldn't want to add new people to the org
L174[17:04:37]

<Michiyo>
Lizzy's repo isn't empty, there is stuff there. I assume
there was a change and their programs.cfg isn't being
read.
L175[17:04:40] <Vexatos> mostly because
it's legacy
L176[17:04:47]

<Renno> I
see
L177[17:05:03]

<Renno>
It's also easier to know what programs are there if
they're shown on openprograms.github.io
L178[17:05:10]

<Renno>
google is not helpful when finding OPPM compatible repos
L180[17:06:07]

<Renno>
Aren't those the repos that are shown on
openprograms.github.io?
L181[17:06:55]

<Michiyo>
Yes, I misunderstood what you said at first.
L182[17:07:48]

<Renno>
I'm sure there's some OPPM compatible repo out there for
developing eeproms (other than crunch, which also seems to be
broken) but I couldn't find it to save my life since
L183[17:08:17]

<Renno>
since it wasn't listed*
L184[17:10:27]

<Renno> I
imagine there are also people out there that look for GUI libraries
and find few up to the task, I have my GUI library that's
pretty capable but few have found it so far since its
"unlisted"
L185[17:33:18] ⇦
Quits: Izzy (~izzy@210.1.218.92) (Ping timeout: 207
seconds)
L186[17:47:59] <Amanda> %remundme 20m
check CI
L187[17:48:17] <Amanda> bah
L188[17:50:53]

<Michiyo>
%remindthem Amanda 17m check CI
L189[17:50:53] <MichiBot> I'll tell
Amanda "check CI" in 17m at 12/17/2024 06:07:53 PM
L190[17:50:54]

<Michiyo>
:P
L191[17:51:04] <Amanda> :P
L192[17:51:13] <Amanda> I was just going
to leave it open while I did some halucinating
L193[17:51:38]

<Michiyo>
lol
L194[18:00:55]

<Vaur>
%tonk
L195[18:00:55] <MichiBot> Gadsbudlikins!
Vaur! You beat Spider EveryOS's previous record of 2 hours,
13 minutes and 27 seconds (By 1 hour, 15 minutes and 17 seconds)! I
hope you're happy!
L196[18:00:56] <MichiBot> Vaur's new
record is 3 hours, 28 minutes and 44 seconds! Vaur also gained
0.00375 (0.00125 x 3) tonk points for stealing the tonk. Position
#1.
L197[18:05:17]
⇨ Joins: Izzy (~izzy@210.1.218.92)
L198[18:07:53] <MichiBot> Amanda REMINDER:
check CI
L199[18:22:18]

<Vaur>
%sip
L200[18:22:19] <MichiBot> You drink a
2-dimensional toxictop potion (New!). Vaur feels like a
champion!
L201[18:23:08]

<Spider
EveryOS> %sip
L202[18:23:08] <MichiBot> You drink a
dashed iron potion (New!). The bottle turns into a lime bow.
L204[18:34:03]

<Kristopher38> There are two occurrences
of the token param in that code
L205[19:01:51]

<Forecaster> We all contain two
tokens
L206[19:02:29]

<Vaur>
%sip
L207[19:02:29] <MichiBot> You drink a
forked radiation potion (New!). The next fork Vaur touches tells
them it's most deeply guarded secret.
L208[19:03:41]

<Forecaster> %sip
L209[19:03:41] <MichiBot> You drink a
fiery currentcorn potion (New!). Forecaster's skin turn the
color of sapphire but with a tiberium glow until they say the word
"Yip".
L210[19:03:53]

<Forecaster> Yip.
L211[19:20:59]

<Renno>
Kristopher, I've made a path finding utility using nodemaps
and added it to my oppm repo if you want to check it out
L212[19:29:40]

<Kristopher38> Sure, I'll check it
out once I have some mental capacity to spare
L213[21:07:20]
⇨ Joins: asi (~asi@156.17.229.119)
L214[21:08:38] <asi> Holy cow, they put
IRC into minecraft? Now I've seen everything!
L215[21:09:25]

<Michiyo>
lol...
L216[21:10:00] <asi> took me a while to
figure out even a part of opencomputers, but now its is
working
L217[21:10:16] <asi> this mod is
amazing
L218[21:13:38] ⇦
Quits: asi (~asi@156.17.229.119) (Quit: asi)
L219[21:13:51]

<Forecaster> kbye
L220[21:37:30]

<Forecaster> %tonkout
L221[21:37:30] <MichiBot> Uh-oh!
Forecaster! You beat Vaur's previous record of 3 hours, 28
minutes and 44 seconds (By 7 minutes and 51 seconds)! I hope
you're happy!
L222[21:37:31] <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: 1.71157462. Position #5 Need
0.06905945 more points to pass RedstoneParkour!
L223[21:37:44]

<Forecaster> %sip for shell
L224[21:37:44] <MichiBot> You drink a
falling iron potion (New!). Forecaster's pinky goes on
vacation until hell has a nice fall.
L225[21:37:48]

<Forecaster> Dang
L226[21:38:11]

<Forecaster> Who made the drop rate for
these so low D:<
L227[21:57:10]

<Vaur>
%sip
L228[21:57:10] <MichiBot> You drink a
circular titanium potion (New!). Vaur barely manages to catch a
green shell that appears in front of them! (Rem. uses: 1)
L229[21:57:16]

<Forecaster> !
L230[21:57:25]

<Vaur>
there you go 😄
L231[21:57:30]

<Forecaster> %sip circular titanium
L232[21:57:30] <MichiBot> You drink a
circular titanium potion. Forecaster barely manages to catch a
green shell that appears in front of them! (Rem. uses: 0)
L233[21:57:41]

<Vaur>
(miss miss miss ...)
L234[21:58:14]

<Forecaster> %greenshell Vaur
L235[21:58:14] <MichiBot> Forecaster:
Green Shells can only target within 3 positions ahead of you.
L236[21:58:21]

<Forecaster> Oh right
L237[21:58:21]

<Vaur>
pffiou
L238[21:58:37]

<Vaur> damn
how the mighty have fallen
L239[21:59:32]

<Vaur> can
still use that though
L240[21:59:40]

<Forecaster> Hmm, I'll save it for
now
L241[22:00:26]

<Vaur> 2
weeks left .... I'm expecting to rain shells now
L242[22:00:39]

<Forecaster> Actually I should be able to
%greenshell Flameingsoul
L243[22:00:39] <MichiBot> Forecaster:
Unfortunately you missed with a 2 vs 10.
L244[22:00:44]

<Forecaster> Damn
L245[22:00:47]

<Vaur>
rip
L246[22:03:12]

<Forecaster> Nearly a critical failure
too
L247[22:23:38] <Corded> >
<Vexatos> give me a bit I just got my PhD 90 minutes
ago
L248[22:23:38]

<Lily> oh
shit, congrats
L249[22:23:49]

<Lily> I
was scrolled up so it's like 4 hours ago now but my point
still stands-
L250[22:30:00] ⇦
Quits: Vexatos
(~Vexatos@p200300eaef3b7a00a149ba3baa84ec22.dip0.t-ipconnect.de)
(Quit: Insert quantum chemistry joke here)