drakonis_ has quit [Read error: Connection reset by peer]
drakonis_ has joined #nixos-chat
drakonis has quit [Ping timeout: 245 seconds]
drakonis has joined #nixos-chat
drakonis1 has joined #nixos-chat
drakonis_ has quit [Ping timeout: 250 seconds]
drakonis has quit [Ping timeout: 245 seconds]
drakonis has joined #nixos-chat
drakonis1 has quit [Ping timeout: 276 seconds]
drakonis1 has joined #nixos-chat
waleee-cl has joined #nixos-chat
drakonis_ has joined #nixos-chat
drakonis1 has quit [Ping timeout: 276 seconds]
drakonis has quit [Ping timeout: 250 seconds]
drakonis_ has quit [Ping timeout: 250 seconds]
drakonis1 has joined #nixos-chat
drakonis_ has joined #nixos-chat
<pie__>
i feel like we might need better GC locks for running applications or something
<gchristensen>
what for?
<pie__>
my plasma crashed and now theres QML errors all over the place somehow
<pie__>
wait that doesnt make sense
<gchristensen>
running applications and their dependencies are automatically protected from GC
<pie__>
those should be dependencies of plasma or something so they should be protected by that
<pie__>
yeah idk what happened
<pie__>
weird. the file its complaining about exists and has read perms
<pie__>
ah
<pie__>
loading error
<pie__>
module org.kde.kirigami is not installed
<pie__>
no idea whats up with that though
<pie__>
maybe something broke in the env vars
<pie__>
as usual
<gchristensen>
as usual?
drakonis has joined #nixos-chat
drakonis_ has quit [Ping timeout: 245 seconds]
<steveeJ>
is anyone who's working with NixOS in their job and with customers up for a chat some time? I'm really curious to have a conversation with someone in the field
genesis has joined #nixos-chat
<__monty__>
Sounds like an interesting conversation for out in the open.
rardiol has joined #nixos-chat
drakonis1 has quit [Ping timeout: 246 seconds]
drakonis_ has joined #nixos-chat
endformationage has joined #nixos-chat
drakonis has quit [Ping timeout: 240 seconds]
drakonis_ has quit [Read error: Connection reset by peer]
<samueldr>
and that's an extremely noisy error to enable serial if you can't do serial
<samueldr>
so you end up needing to implement the conditional enable logic in their grub cfg shell~ish script :(
drakonis_ has joined #nixos-chat
waleee-cl has quit [Quit: Connection closed for inactivity]
Jackneill has joined #nixos-chat
Jackneill has quit [Remote host closed the connection]
__monty__ has quit [Quit: leaving]
<eyJhb>
God damn it
<eyJhb>
I might not get the sleep that I could now
<infinisil>
Well damn, I just found a pretty amazing bug in my program that kind of messed with the plots in my thesis
<infinisil>
The gist of it is: I have multiple components that need deterministic randomness, so I'm using a random seed for all of them
<infinisil>
And the components interact with each other afterwards. So e.g. one components generates a graph with a root node, another components hammers on the graph nodes in a specific sequence
<infinisil>
Now what might cause the first node in the sequence to always be the same exact node that's the root of the graph..?
<infinisil>
Of course, I'm using the same random seed! The same initial number gets used for both the first node in the sequence and the root of the graph!
<infinisil>
So now I'm using `seed` in the first component, `seed + 1` in the second, and so forth