HackerTrans
TopNewTrendsCommentsPastAskShowJobs

virgoerns

no profile record

comments

virgoerns
·letzten Monat·discuss
1. Buy a domain and bind it to your email so this situation never happens again in the future. 2. Automatically forward all new emails to the new provider (gmail has an option for that somewhere). 3. Gradually change your email in all services and inform peopke about address change. 4. Use your old gmail as spam box.
virgoerns
·vor 4 Monaten·discuss
Emacs?
virgoerns
·vor 5 Monaten·discuss
It doesn't need root if you set MANPATH.
virgoerns
·vor 6 Monaten·discuss
The problem with long startups is that they break the flow. I live in CLI. I open and close terminal windows all day long, sometimes just for quick 2-3 commands to check something. 100 new interactive shells a day is my guess. I already know commands to run, my fingers are ready to type, they already pressed the keys ti spawn a new shell and now they have to stop for 500 ms. Repeat these 100 interruptions every day and you get the death by 1000 spoons.

I don't use oh my zsh, but on one laptop zsh took 600ms to start. I narrowed it down to a strange "bug": adding even a single empty file to the custom fpath caused the slowdown. It bugged me so bad that I decided to try fish again, but this time for real. And this time it stuck with me. I like its architecture (defining functions to change its look-and-feel - great idea!) and of course its 32 ms startup time.
virgoerns
·vor 8 Monaten·discuss
We're buying mice and we want 2 or 3 females. So yesterday I was searching "how to check mouse gender". Imagine my confusion when search engine recommended me a bunch of "how to sex mice" youtube videos!
virgoerns
·vor 9 Monaten·discuss
FYI, ctrl-d isn't a shortcut to exit terminal. It sends EOF (end of file) character which, when reaches shell, closes stdinput file of shell. It generally closes any active interactive input, like all repls, interactive input to sed etc. When interactive shell loses possibility to get more input, it closes as soon as possible and then its parent, the terminal window, also closes. More-less :)
virgoerns
·vor 9 Monaten·discuss
How do you use it so it's more ergonimic than typing arguments manually reversed? `unmv !$` ?
virgoerns
·vor 10 Monaten·discuss
Podman 4.7 supports both the ordinary compose (Go implementation) and older Python podman-compose. But personally I moved to quadlets and didn't look back.
virgoerns
·letztes Jahr·discuss
I love that you include hledger! It's amazing piece of software, even if a little obscure for people unfamiliar with plaintext accounting!
virgoerns
·letztes Jahr·discuss
Zoxide isn't a replacement for cd, but it is a wrapper for cd. It's the alternative for OG "z" (written in Bash I believe) and autojump (python) that were here for 20 years or so.

Basically, when tou type "cd some/subdir", these tools remember the frequency/recency of durectories you cd into, so at some point you can type "z sub" and they teleport you to "some/subdir" no matter what's your current working dir.

I love it and use it daily. Zoxide just has some nicer features than the alternatives (and maybe it's faster).
virgoerns
·letztes Jahr·discuss
WSJ probably updated the article. Here's the newer link: https://archive.is/20250501040217/https://www.wsj.com/tech/a...
virgoerns
·vor 2 Jahren·discuss
They can be configured globally with core.hooksPath or init.templatedir git config options.
virgoerns
·vor 2 Jahren·discuss
Can you tell what's the usecase for creating FUSE for dokuwiki? Basically, dokuwiki is just a bunch of text files so wouldn't it be simpler and more efficient to e.g. mount them as NFS or share via Dropbox/Syncthing?
virgoerns
·vor 2 Jahren·discuss
Your comment reminds me about Polish movie "Life as a Fatal Sexually Transmitted Disease", which is a story of a doctor dying from cancer. Some variations of this title were semi-popular in Poland in early 2000s.
virgoerns
·vor 3 Jahren·discuss
Does Go default-initialize booleans by any chance? In C, which author had used, this program would be undefined behavior due to reading non-static, uninitialized bool.
virgoerns
·vor 3 Jahren·discuss
A guitar.

My first classical guitar, which I bought 20 years ago, cost 50 PLN (~$12) and it kickstarted my love for playing a music. Not only that. I spent thousands of hours practising and now music accompanies me all the time. There's always a song stuck in my head these days, or I'm whistling or humming or singing or tapping my fingers or stamping my feet. It's exhausting sometimes.
virgoerns
·vor 3 Jahren·discuss
We broke our monolith ~2015. 8 years later we still have the original monolith plus the original mircoservices are now monoliths too which need splitting. Upgrades were a nightmare for first 5 years, but we solved it with nitpicking code reviews where non-trival changes are blocked forever until everyone's ready.

At least we solved the problem of decreasing performance the old fashioned way: by throwing more RAM and CPU power at the problem.