adamkf | 6 months ago | on: KDE is now my favorite desktop
adamkf's comments
adamkf | 2 years ago | on: KDE Plasma 6.0 Is Enabling Wayland by Default
I hope they address this kind of thing prior to making it a default.
adamkf | 2 years ago | on: 80% of bosses say they regret earlier return-to-office plans
> 80% of executives say they would have approached their company’s return-to-office strategy differently if they had access to workplace data to inform their decision-making.
Envoy's not exactly an unbiased source here, since they sell software to collect this data.
adamkf | 2 years ago | on: LazyVim
adamkf | 2 years ago | on: LazyVim
Maybe I need to be using the official plugin, and maybe I need to disable LSP based syntax highlighting, but that makes me wonder what it's doing.
adamkf | 2 years ago | on: S.F. says incidents by Cruise, Waymo driverless taxis are ‘skyrocketing.’
I have witnessed a Cruise car stopping in the middle of the road when faced with an oncoming emergency vehicle, so I totally buy that they aren't ready for prime time yet.
Honestly, I'd prefer if we prioritized enforcing existing traffic laws for regular vehicles.
adamkf | 3 years ago | on: SQLite the only database you will ever need in most cases (2021)
adamkf | 3 years ago | on: SQLite the only database you will ever need in most cases (2021)
This caveat covers "most cases". If there's only a single machine, then any data stored is not durable.
Additionally, to my knowledge SQLite doesn't have a solution for durability other than asynchronous replication. Arguably, most applications can tolerate this, but I'd rather just use MySQL with semi-sync replication, and not have to think through all of the edge cases about data loss.
adamkf | 3 years ago | on: Helix 22.12
1. It's generally janky whenever the language server is slow, in ways that Neovim is not. The most visible one of these is that completion does not take into account the characters that were typed between when the completion request started and when the completion was selected. For example, if I type "abc", and the LSP suggests "abcdef" after having only observed the "a" keystroke, Helix will end up with "abcdefbc" as the final output. This is annoying.
2. The posted directions (https://github.com/helix-editor/helix/wiki/External-binary-f...) for configuring prettier didn't work, there are no error messages visible in any logs. I haven't had the bandwidth to dig into this yet.
3. Helix doesn't detect the correct root for my language servers in my environment, and it doesn't seem to have any way to override the detected root. This means that have to start the editor in the directory that I intend to use as the root. This gets really problematic when I'm working across several languages.
adamkf | 5 years ago | on: Google Safe Browsing can kill a startup
adamkf | 5 years ago | on: Become Shell Literate
I've also used intelij idea with Java, and while it was much smoother than anything in the typescript ecosystem, it's definitely not faster than using grep.
adamkf | 5 years ago | on: Kubernetes is deprecating Docker runtime support
adamkf | 5 years ago | on: San Francisco voters approve taxes on highly paid CEOs, big businesses
I don't know anything about Berlin, but in San Francisco, there are plenty of affordable housing requirements placed on developers of new apartment buildings. This ends up just making new construction MUCH more expensive, as a single unit has to support itself as well as some fraction of an affordable unit. The result is that it's even less profitable to build new housing.
adamkf | 5 years ago | on: Why most Hacktoberfest PRs are from India
Though in both cases, I think it's on the question asker (either teacher or interviewer) to make sure that questions change up frequently enough and aren't easy to study without having genuine understanding.
adamkf | 5 years ago | on: An introduction to RabbitMQ
In my last job, we used Rabbit to move about 15k messages per sec across about 2000 queues with 200 producers (which produced to all queues) and 2000 consumers (which each read from their own queues). Any time any of the consumers would slow down of fail, rabbit would run out of memory and crash, causing sitewide failure.
Additionally, Rabbit would invent network partitions out of thin air, which would cause it to lose messages, as when partitions are healed, all messages on an arbitrarily chosen side of the partition are discarded. (See https://aphyr.com/posts/315-jepsen-rabbitmq for more details about Rabbit's issues and some recommendations for running Rabbit, which sound worse than just using something else to me.)
We experimented with "high availability" mode, which caused the cluster to crash more frequently and lose more messages, "durability", which caused the cluster to crash more frequently and lose more messages, and trying to colocate all of our Rabbit nodes on the same rack (which did not fix the constant partitions, and caused us to totally fail when this rack lost power, as you'd expect.)
These are not theoretical problems. At one point, I spent an entire night fighting with this stupid thing alongside 4 other competent infrastructure engineers. The only long term solution that we found was to completely deprecate our use of Rabbit and use Kafka instead.
To anyone considering Rabbit, please reconsider! If you're OK with losing messages, then simply making an asynchronous fire-and-forget RPC directly to the relevant consumers may be a better solution for you, since at least there isn't more infrastructure to maintain.
(I think this bug is still present in X11, but I've moved on to Wayland.)
The other bug I run into constantly is that "exposé" sometimes makes all the windows invisible. The only fix is logging out and logging in again. I've seen this across a number of different distros. Gnome is mostly boring and just works for me.