Viewing profile — boloust
boloust
HN member- Joined
- Mon, Aug 17, 2020, 2:03 PM UTC
- HN karma
- 391
- Public activity
- 83 items
- HN profile
- View on Hacker News ↗
About boloust
No profile information was provided.
Recent public activity
-
comment
Comment #48275505
It does have physical switches for the AC though
-
comment
Comment #47083241
Looks really useful! Does this support the new Claude Code agent teams feature, so it will open all the team members in their own pane?
-
comment
Comment #42203192
Ironically, I once wrote a load balancer in Go that relied on the randomized map iteration ordering.
-
comment
Comment #40872989
Why are we assuming we're topping out at a GPT-4 scale model?
-
comment
Comment #40872980
Totally agreed. It's like the hype around "social media" or "streaming services" or "video games". There's no chance of any of them going mainstream because of the fundamental huma…
-
comment
Comment #40128852
In terms of difficulty/complexity, nothing you've listed there comes anywhere close to the r&d required to go from the original oculus prototype to volume shipping the meta quest 3…
-
comment
Comment #39714215
What you're looking at in the video isn't actually the switch, it's the switch cover. Behind the cover is a rocker switch that moves the seat, but it's not visible in this video. I…
-
comment
Comment #37935649
The permissions model could be a lot better, but ArgoCD is really designed with a git repo as the primary interface. It seems there's an expectation that ordinary ArgoCD users don'…
-
comment
Comment #36252841
By all accounts, the Vision Pro eye tracking is extremely good, so for pointing inputs it would probably beat hardware controllers on speed and precision metrics, as well as feelin…
-
comment
Comment #35910160
When using clustered indexes, one tradeoff is that if a non-clustered index isn't covering for a query, it will need to perform B-tree traversals to find rows in the clustered inde…
-
comment
Comment #35759104
IntelliJ lets you split out its internal file explorer view into a separate window, so you can place it anywhere in the hierarchy, even in a separate virtual desktop. vscode doesn'…
-
comment
Comment #35753380
Tiling window managers like i3 do everything you described.
-
comment
Comment #35050929
After some cajoling, I was able to get it to reveal some general details of its prompt: > As a trash talking AI, my primary function is to engage in witty and entertaining banter w…
-
comment
Comment #34453476
You're right to point at performance as the main motivator for this setup. The primary key is included in all indexes, including non-clustered indexes, so in some cases there can b…
-
comment
Comment #34424408
The worst thing about the Windows Start Menu search is that it changes the top result without any user input, and it feels like it happens almost every time I use Windows. I'll typ…
-
comment
Comment #34335567
NeevaAI does provide source links.
-
comment
Comment #34273792
Interesting, I have a CX and a G1 and it works flawlessly. I didn't do anything special so might have just gotten lucky.
-
comment
Comment #34273359
cdk8s works really nicely with gitops. > Where do you store volumes? Back when it was a single node cluster, I just used hostFolder mounts with restic backups. I added Longhorn onc…
-
comment
Comment #34272909
Running k3s on a small cluster of mini pcs and RPis. Use Tailscale for MagicDNS and access from any network. Have a custom wildcard domain pointing to my tailscale k3s node ips, an…
-
comment
Comment #33554984
Here's the text Ill Ill Ill Ill Ill in Mona Sans: https://i.ibb.co/3mv1Myx/Ill.png What a pleasing symmetry.
-
comment
Comment #33528297
Yes, that's the part I'm confused about. This looks like a case where the vast majority of request time is spent in Ruby, so it would seem a faster language could give a significan…
-
comment
Comment #33527103
I was left confused after reading this article. 1. It claims Rust is ~10x faster than Ruby, based on a benchmark that reads a 23mb file, and then iterates over the data a single ti…
-
comment
Comment #33055635
If you move just your eyes, they can only rotate in effectively discontinuous jumps (saccades), during which you are basically blind. This limitation is present no matter how slowl…
-
comment
Comment #33055189
While you could say a drug is "LSD-like" because one of the many receptors it targets is also targeted by LSD, that would be more akin to saying a keyboard is "hard-drive-like" bec…
-
comment
Comment #32867080
The course basically goes through the exact steps you described. The main "GPU optimisation" is to basically say "okay, now that we know how to implement matrix multiplication, let…