Advertisement · 728 × 90

Posts by ellie
:3

can recommend taking a leashed @woof.rip for walkies 10/10

2 months ago 12 1 0 0

On dirait que j'ai perdu mon follower bsky préféré.

2 months ago 7 2 0 0

I love my friends so much <3
just had the best birthday party ever :3

2 months ago 5 0 0 0
Video

got bored and wrote a kexec implementation for armv7 iOS in 100% rust :3

3 months ago 15 3 2 0

it's not a "real" kexec, but imo close enough. all the code does is: load the /patched/ iBoot correctly into ram, overwrite the deep-sleep trampoline (reset vector) with shellcode that jumps to the new stage1, and then schedules a power event in the existing kernel to trigger a deep sleep/wake cycle

3 months ago 1 0 0 0

yes! I wrote a separate tool to patch out signature checks in iBoot, prevent iBoot from messing with nvram and inject boot args to set a different root disk node and enable verbose boot etc (newer iOS versions require a few more / different patches)

3 months ago 1 0 2 0

featuring a wild @woof.rip on the wallpaper :3

3 months ago 1 0 1 0
Video

got bored and wrote a kexec implementation for armv7 iOS in 100% rust :3

3 months ago 15 3 2 0
Angry Birds Rio - Apps - touchHLE app compatibility database

without my patches it used to crash instantly :3c
still need to clean them up to be able to contribute them i think they break super monkey ball 😵‍💫
appdb.touchhle.org/apps/487

4 months ago 3 0 0 0
Video

took some time, but managed to get @touchhle.org to run angry birds rio :3

4 months ago 6 0 1 0
Advertisement
android emulator with a signal conversation on top of a flipper window with the entire chat history of the account visible

android emulator with a signal conversation on top of a flipper window with the entire chat history of the account visible

working on something fun for signal :3

4 months ago 3 0 0 0
Pwning the Entire Nix Ecosystem - ptrpaws's blog 🌸 ptrpaws's blog on reverse engineering, programming, vr finds and miscellaneous stuff.

new blog post about how i pwned nixpkgs :3
ptrpa.ws/nixpkgs-acti...

5 months ago 71 9 1 1
discord chat.
me:
screenshot of berlin with a replica of the U5 in colins game (subwaybuilder).
colin:
wtf
is that berlin?
how did you do that?
me:
yea.
colin:
and who are you how did you get a copy of the game

discord chat. me: screenshot of berlin with a replica of the U5 in colins game (subwaybuilder). colin: wtf is that berlin? how did you do that? me: yea. colin: and who are you how did you get a copy of the game

i got too silly and modded berlin into a game I shouldn't even have access to yet sdfhjjsdhf

6 months ago 12 0 0 0

archive.is/qmA6F

6 months ago 1 0 0 0
badische neuste nachrichten newspaper frontpage with an article called "hacker knacken kvv"

badische neuste nachrichten newspaper frontpage with an article called "hacker knacken kvv"

got on the front page of a local newspaper x.x

6 months ago 6 0 1 0
MRMCD2025 Wenn der Verkehrsverbund zu transparent ist
MRMCD2025 Wenn der Verkehrsverbund zu transparent ist YouTube video by media.ccc.de

MRMCD talk über ein Datenleck das ich mit Freunden in einem Verkehrsverbund gefunden habe :3

www.youtube.com/watch?v=egux...

6 months ago 3 1 0 0

there is nothing as healing as watching the 2014 hit film whoami with friends

7 months ago 4 0 0 0
gpt-2 output
"twink or blob? or is it a blob?

I've got a problem with my brain. I have no idea what I'm looking at. But I suspect that's what I'm looking at, and I've found a way to"

gpt-2 output "twink or blob? or is it a blob? I've got a problem with my brain. I have no idea what I'm looking at. But I suspect that's what I'm looking at, and I've found a way to"

me too gpt-2 me too

7 months ago 4 0 0 0
entity (not me) wearing a bnd cap and bnd lanyard with bnd ticket attached showing two middle fingers towards viewer while looking down

entity (not me) wearing a bnd cap and bnd lanyard with bnd ticket attached showing two middle fingers towards viewer while looking down

me showing a censored vip ticket to the viewer in front of a screen with code

me showing a censored vip ticket to the viewer in front of a screen with code

out here @ gamescom

7 months ago 7 0 0 0
Advertisement
japanese sign for a "nix hair salon" with a snowflake

japanese sign for a "nix hair salon" with a snowflake

nix at home

7 months ago 8 0 0 0
anubis with broken logo image on an android phone with wine internet explorer

anubis with broken logo image on an android phone with wine internet explorer

mystical anubis pull on android internet explorer

8 months ago 5 0 0 0

looks like it might be using overstriking (printing a char twice on the same position) as a backwards compatible way to create bold text on teletypes and that went wrong somehow lol

8 months ago 5 0 1 0

I have no idea

8 months ago 1 0 1 0
zed code window showing openssl help with lots of letters duplicated

zed code window showing openssl help with lots of letters duplicated

ooppeennssssll --hheellpp

8 months ago 9 1 2 0

just taking a dump :3

8 months ago 3 0 0 0
Video

get prompted idiot 😼

9 months ago 8 0 1 0
two bvg trams cuddling

two bvg trams cuddling

this too is yuri

9 months ago 9 0 0 0
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.
```

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. ```

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

9 months ago 4 1 0 0
getränkestand mit großem blauen wassertropfen logo

getränkestand mit großem blauen wassertropfen logo

shoutout an den hyprland stand auf der fusion

9 months ago 6 0 1 0
Advertisement
Video

cooking up a quest bluetooth client

9 months ago 13 2 1 0