Two main reasons to drink decaf:

  • You get to keep your comfort ritual.
  • Every now and then you can drink regular coffee and get superpowers for a day.
Nevkontakte shared 6 days ago

For a long time I was curious if Claude Code works so well because of Claude (the model) or Code (the CLI tool / agent). This weekend, I tried to find out. Turns out that both matter, but more than anything post-training fine tuning of the model makes a big difference. If the model has been tuned for planning and tool usage in a certain way, it would provide much more reliable results.

Details as in https://nevkontakte.com/2025/swap-ai-brains.html

Nevkontakte shared 10 days ago
Nevkontakte shared 14 days ago
Nevkontakte shared 15 days ago
Nevkontakte shared 23 days ago

Back in the early 2000s when Windows 98 was still a common OS around households I've heard about a password-stealing virus. It worked by replacing the windows logon 98 screen executable with its own fake version, which logged the password, showed the "wrong password" message and launched the real logon binary. The password was sent off to the hackers whenever the computer got online at a later point. The technique was easy because FAT32 that Win 98 used did not have a concept of file permissions, so anyone could read and write anywhere on the file system. I thought it was a pretty clever design, nobody would really blink an eye at getting the password wrong.

Now, it's been over 20 years, and still every time when I get my password wrong, I have a momentary thought of whether it could be a trojan trying to steal my password... 🥹

Just caught myself shying away from responding to a code review comment with "You are right,..." because it kind of sounds like something an LLM would say. And now I am pondering if I should allow LLM training datasets influence what my own speech should be 🤔

Nevkontakte shared 24 days ago

Just as you begin to think that you got your life sorted and under control, the world throws you a monkey wrench and the game restarts at NG+. What was top-notch gear and endgame skills are now just barely enough to deal with the most basic monsters and the grind has no end in sight.

What do you call a person who is extremely proficient at using vi?

Viking!

If you ask the universe a question, and you don’t like the answer, it’s not the universe’s problem. Ignore it at your own peril.

A periodic reminder that every human being deserves being treated with dignity regardless of their faith, looks, political convictions or place of origin. Treat others as you want to be treated yourself.

Nevkontakte shared a month ago
Nevkontakte shared 2 months ago
Nevkontakte shared 2 months ago

People who want to solve a problem build a solution, and eventually solve it.

People who want to solve a problem, but don't know how, start with an experiment, and eventually they know.

People who don't know how to solve a problem, but want to look like they are solving a problem, build a process and look busy forever.

A quick not to my future self, on how to unfuck root file system:

  1. Find the location of your disk image, for Ubuntu it would be something like C:\Users\aleks\AppData\Local\Packages\CanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgsc\LocalState\ext4.vhdx.
  2. Make a fucking backup!
  3. Install a new wsl distro. Could be anything, if you have Docker Desktop, you probably already have docker-desktop distro, which would do.
  4. Connect the image to our recovery distro: wsl -d docker-desktop --mount --vhd C:\Users\aleks\AppData\Local\Packages\CanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgsc\LocalState\ext4.vhdx
  5. Go into the recovery distro: wsl -d docker-desktop.
  6. Figure out which device your image corresponds to: ls /dev/sd*.
  7. Unmount it: umount /dev/sdX.
  8. Actually unfuck the image: e2fsck /dev/sdX.
  9. Exit wsl and shut it all the way down: wsl --shutdown.
  10. With any luck, you can start your main distro and it will be fine.
Nevkontakte shared 2 months ago