Alexander's Avatar

Alexander

@rwxae.xyz

55
Followers
377
Following
236
Posts
16.05.2024
Joined
Posts Following

Latest posts by Alexander @rwxae.xyz

Video thumbnail

Git City visualise les profils GitHub sous forme de ville 3D en pixel art : chaque développeur·se devient un bâtiment que vous pouvez explorer en volant dans la cité.
https://www.thegitcity.com/

06.03.2026 11:20 👍 10 🔁 5 💬 1 📌 0
Post image

Web Audio Studio is now live (alpha).

Write real Web Audio API code and visualize the runtime graph in your browser.

Fully local. No signup.

webaudio.studio

02.03.2026 13:20 👍 4 🔁 2 💬 1 📌 0

Exactly

02.03.2026 12:55 👍 1 🔁 0 💬 0 📌 0
Post image

Never forget who you’re fighting for.

28.02.2026 12:04 👍 11120 🔁 2857 💬 46 📌 58
The Worst Day in 2016: A Playlist
The Worst Day in 2016: A Playlist YouTube video by @583m

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

23.02.2026 10:34 👍 0 🔁 0 💬 0 📌 0
Preview
Karthik on X: "> be born in 2002 > pandemic takes your high school years > ai takes your uni years > unemployment takes the rest of your years it's all over https://t.co/lShV5ZCCJz" / X > be born in 2002 > pandemic takes your high school years > ai takes your uni years > unemployment takes the rest of your years it's all over https://t.co/lShV5ZCCJz

x.com/karthikponna...

30.01.2026 20:06 👍 0 🔁 0 💬 0 📌 0
Video thumbnail
30.01.2026 16:54 👍 4 🔁 0 💬 0 📌 0
Preview
a black and white photo of a man praying with his hands folded in front of his face . ALT: a black and white photo of a man praying with his hands folded in front of his face .
30.01.2026 11:15 👍 1 🔁 0 💬 0 📌 0

Your wallpaper looks gorgeous. Would you mind to share? 🙏

28.01.2026 19:18 👍 0 🔁 0 💬 0 📌 0

so true 😭

26.01.2026 11:13 👍 5 🔁 0 💬 0 📌 0

im terrible at webdev because every time i check caniuse and its supported from mid 2025 on everything i just use that instead of some shitty workaround

23.01.2026 03:28 👍 21 🔁 3 💬 2 📌 0

LMAO

21.01.2026 20:50 👍 1 🔁 0 💬 0 📌 0
Video thumbnail

A new which-key modal shows what keys you can press next (and what they do) when you start a keybinding chord.
It works in both Vim and non-Vim modes, and you can enable it via `{"which_key": {"enabled": true}}`.

14.01.2026 16:57 👍 12 🔁 1 💬 2 📌 1

Same. That's why I use Codebook LSP in my text editor.

14.01.2026 16:28 👍 1 🔁 0 💬 0 📌 0

Nice one!

07.01.2026 18:30 👍 0 🔁 0 💬 0 📌 0
Video thumbnail
01.01.2026 09:11 👍 28 🔁 13 💬 1 📌 0

💯

31.12.2025 18:48 👍 0 🔁 0 💬 0 📌 0

This is likely to fall on deaf ears as we're going through this collective hysteria episode of skipping the "boring" stuff and getting to the "good" stuff with AI. Here's the thing: the good stuff is only good because of all the boring stuff you overcome.

30.12.2025 15:07 👍 13 🔁 3 💬 1 📌 1
Preview
a cartoon of a man screaming with the words " it 's so peak " above him ALT: a cartoon of a man screaming with the words " it 's so peak " above him
27.12.2025 19:04 👍 0 🔁 0 💬 0 📌 0

Just so I'm clear on this, computer memory has tripled in price because a bunch of it that hasn't been produced yet has been ordered to populate GPUs that aren't installed in data centers that aren't built yet in order to service a demand that doesn't exist to make profits that don't happen.

15.12.2025 12:21 👍 16180 🔁 6530 💬 187 📌 320
Post image

Playing Detroit: Become Human hits different in 2026

26.12.2025 17:34 👍 1 🔁 0 💬 0 📌 0

<3

25.12.2025 20:30 👍 0 🔁 0 💬 0 📌 0

but I have to to get my daily dose of imposter syndrome

25.12.2025 18:43 👍 12 🔁 1 💬 2 📌 0
Juli - Geile Zeit (Official Video)
Juli - Geile Zeit (Official Video) YouTube video by JuliVEVO

Love this song

25.12.2025 11:40 👍 0 🔁 0 💬 0 📌 0

Happy Holidays! 😊🎄🎆💚

24.12.2025 21:32 👍 111 🔁 4 💬 0 📌 0
Preview
GitHub - rwxae/dotfiles at nixos Nix files to manage my Linux and MacOS. Contribute to rwxae/dotfiles development by creating an account on GitHub.

My dotfiles:
github.com/rwxae/dotfil...

23.12.2025 20:46 👍 2 🔁 0 💬 0 📌 0

It is hilarious that the most popular programming language is literally ten times harder to set up rather than something like Rust (which works automatically out of the box in Helix).

23.12.2025 20:45 👍 0 🔁 0 💬 0 📌 0

The only thing I haven't done is ability to auto fix issues on save.

23.12.2025 20:42 👍 0 🔁 0 💬 1 📌 0
helix.nix

helix.nix

3. Add vscode-eslint-language-server to the list of language-servers for TypeScript/JavaScript/JSX/TSX language in languages.toml.

See below how I configured it in the Nix-way with the help of home-manager:

23.12.2025 20:42 👍 0 🔁 0 💬 1 📌 0
  {
    languageOptions: {
      parserOptions: {
        tsconfigRootDir: import.meta.dirname
      }
    }
  },

{ languageOptions: { parserOptions: { tsconfigRootDir: import.meta.dirname } } },

2. For some reason, ESLint couldn't find tsconfig.json in my project. I have a monorepo with a bunch of packages. Each package contains its own tsconfig.json. Maybe it is the cause of the issue.

The fix is simple. Set languagesOptions.parserOptions.tsconfigRootDir to import.meta.dirname

23.12.2025 20:42 👍 0 🔁 0 💬 1 📌 0