Alright. Americans and their confusing colloquial use of the term βliberalβ.
Alright. Americans and their confusing colloquial use of the term βliberalβ.
Liberalism is too broad of a term. Hard for me to not connect the neoliberal ideas of Tatcher and Reagan to the conditions that helped fascism rise again.
80-character line limit so you can review Claude Code output on your VT100 terminal and your phone.
I opened YouTube this week and it recommended the web scale MongoDB video. Metadata says β15 years agoβ and that made me feel very old.
AtΓ© eu que me interesso por finanΓ§as e investimentos acho insuportΓ‘vel.
In Arrow C++, we have βlengthβ of arrays for the βcountβ and buffers have βsizeβ in bytes. But things get confusing when STL code is mixed because vector::size() is the length/count and not the βsizeβ in bytes.
t.co/ZGkA8xvy8R
Using Capβn Proto in Rust to get zero-copy deserialization, but Codex insists on writing de/serialization functions that build a struct full of heap-allocated strings. Because thatβs what dominates the training set of model and programmers everywhere.
You might not like it, but I treat the computers I have at home as pets, not cattle.
The year of Linux on the desktop because Windows and macOS window managers are terrible if you're supposed to loop through all the AI agents you're managing at work.
Google Meet: "no one is here" before you join the meeting but only because it hasn't really loaded the response that lists who is in the meeting.
This database solution looks very dystopian
Don't put the burden on yourself to fix other people's code. Use the AI tools to write exactly the code you want, but more efficiently.
bsky.app/profile/feli...
Good time to be CLI maxxing:
- @neovim.io
- tmux
- smug (to start tmux sessions from YAML files)
- git worktrees (multiple repo checkouts for parallel agents)
- dotfiles in a git repo synced across macOS and Linux machines
Open-source can't dispense with code review, but I predict some companies will stop code review altogether and more aggressively cut people who submit slop to production.
In open-source, the idea that you're judged by your code is also not going to scale. Some kind of reputation system will be necessary for contributors to earn the right of having their code reviewed.
In this new world, by the time a PR is opened, the author should have already reviewed the coding agentβs work.
Code review, as we know it, is not going to scale. You canβt get paid to ask an agent for code, open a PR and let the review and refinements be someoneβs problem.
that's why "most AI projects are failing" is not indicative of lack of potential
The hidden emotional labour of not judging PR authors' competence because of the LLM-generated slop being submitted for review.
Yes. If you're single-threaded you *CAN* mutate through an &.
A method that takes a lock and performs some mutation would be non-const in C++. But if you were to declare it as `&mut self` in Rust, you would not be able to have concurrent callers. The whole point of having a Mutex in the first place!
&mut T means "you cannot have other aliases".
This contrasts with C++ const where aliases are all over the place and const only exists to help you be suspicious about side-effects.
In Rust, a &T is not an immutable reference in the common Functional Programming sense. func(&self) is free to mutate atomics or values wrapped in Mutex through self because any other call through an alias to self is going to synchronize the mutations. &T means "you can have other aliases".
I have multiple of these
O "bom gosto" Γ©, no final das contas, definido como aquilo que o pobre ainda nΓ£o tem acesso. A partir do memento que o pobre tem acesso, para de ser bom gosto.
I had a professor in CS school that told us "if you worry about hackers, you won't get anything done" when the subject of SQL injection came up.
The 2026 version of that is: if you don't give your 1Password to Claude you won't get anything done.
βtΓ©cnicoβ Γ© eufemismo pra βescrotoβ
Contrary to popular belief, it's hard to write fast software in Rust.
Twitter servers are borked and profile pages say "user x hasn't posted yet" instead of an error message. This is a common pattern everywhere. "You have no flights" before your flight loads in the airline app is very stressful.
Most non-C++ integrations of the RocksDB API rely on the C bindings which will populate a fresh std::string, malloc() and memcpy() on every Get(). You either write custom bindings, or use C++ to get the good perf that RocksDB can give.