ellie
:3

@ptrpa.ws

22 y/o queer nonbinary hacker 🏳️‍⚧️ | I love (bre|m)aking stuff security research focused on VR/AR, maintains Quest firmware archive @ https://cocaine.trade fascinated by trains | used to make YouTube videos loves meeting cool people!

Drew like a dark, fucked up version of Jupyter notebooks haha. Just a glimpse into my dark reality. A full stare into my twisted computer would make most simply go insane lmao

Jupyter Lab screenshot with nix lang cells. The exact content is:
```
[1]: 100 * 5
"Hello, " + "Jupyter!"
[1234]
rec {
x = "Nix";
y = "Kernel";
greeting = "Welcome to the ${x} ${y}!";
}. greeting
500
"Hello, Jupyter!"
[1]:
"Welcome to the Nix Kernel!"
[2]: mySet = { a = 10; b = 20; }
[3]: mySet.a + mySet.b
[3]: 30
[4]: :doc builtins.map
Synopsis: builtins.map f list
Apply the function f to each element in the list list. For example,
| map (x: "foo" + x) I "bar" "bla" "abc" 1 evaluates to [ "foobar" "foobla" "fooabc" 1.
[5]: :t { name = "Nix"; version = 2; }
a set
[6]: let x = 1; in y
let x = 1; in y
error: undefined variable 'y'
at «string»:1:15:
1| let x = 1; in y
[7]:
lecho "Hello from the shell running inside the Nix kernel!"
!date
Hello from the shell running inside the Nix kernel!
Thu Jul 3 00:07:52 CEST 2025
[8]: :load ./test.nix
Added 2 variables.
```