HackerTrans
TopNewTrendsCommentsPastAskShowJobs

rustyminnow

no profile record

comments

rustyminnow
·قبل 16 يومًا·discuss
They've had some practice now, so next time will go better.

RealID is completely optional anyways. Just like organ donation and using the internet.
rustyminnow
·قبل 16 يومًا·discuss
I asked for short form functions! Neovim has a ton of apis that accept functions as configuration. Having to write `function(x) return x > 3 end` is so much more annoying than `|x| -> x > 3`. I'd prefer just `|x| x > 3` but alas. I agree that a `|x| -> do ... end` lambda variant is redundant to normal anonymous functions though.
rustyminnow
·قبل 18 يومًا·discuss
Could probably be implemented by a smartcard or yubikey-like device as well. Shoot, just build it into my state issued ID card.
rustyminnow
·قبل 19 يومًا·discuss
In any other commercial they'd be laughing and grinning ear to ear with their fakest smile instead of wincing from dieing in Cuphead. Definitely still staged but refreshingly so.
rustyminnow
·قبل 20 يومًا·discuss
What's your point? Yes, humans and AIs CAN make similar errors. However, continuity and context churn at this level is the sort of error that humans make rarely and AIs make constantly.

By itself it is not a sure sign of LLM output, but along with other signals it is highly suggestive.
rustyminnow
·قبل 24 يومًا·discuss
In the article, she wasn't introduced as a researcher at all, but suddenly "She went back to her research data...". This totally smells like an LLM refactor where it re-emits surface level details, but completely misses the key beats that tie ideas together across a story.
rustyminnow
·قبل 24 يومًا·discuss
Some of the headings are very AI-cliche: "Hospitality Is a Dialogue, Service Is a Monologue"; "AI Raises the Floor. Humans Raise the Ceiling"; "Your Employees Are the Moat. The Compounding Is Invisible."

The author didn't use headings like that in their 2024 blog posts.
rustyminnow
·الشهر الماضي·discuss
Java has very good refactor support. I use jdt.ls which is eclipse based, but I've heard intellij is even better. I've wished for similar refactor actions in other langs.
rustyminnow
·الشهر الماضي·discuss
I'm right there with you - prefer classic, deterministic tools wherever possible - but there's a limit. E.g. it's easy to rename a single getter from classic enterprise java `Foo getFoo() {..}` to a modern style `Foo foo() {..}` ... but to rename dozens of getters/setters across hundreds of classes is still tedious.

Even harder would be to update your setters from `void setFoo(Foo f) { this.foo = f; }` to fluent-style `Parent foo(Foo f) { this.foo = f; return this; }` - I'd be surprised if there's an LSP action for that at all. (I'd love to be proven wrong though)
rustyminnow
·قبل شهرين·discuss
Bun getting rewritten in Rust is not really the counter point you think it is. The rust version hasn't shipped yet, so there hasn't even been a chance to see if the code can be maintained. It's an impressive feat no doubt, but until they've maintained it on a months to years timeline, it's also just talk with no evidence.
rustyminnow
·قبل شهرين·discuss
> character placement and border special characters

These characters _are_ text though. They can be copy pasted like text, I can use them in my text editor, you can stick em in a string.
rustyminnow
·قبل 6 أشهر·discuss
Why would I want them hidden? I access files in ~/.config almost daily, I think this is a really good idea
rustyminnow
·قبل 9 أشهر·discuss
I think in the context of containers you're right, there's a level of isolation and secrets are probably fine. But I think under other contexts that lack that isolation (e.g. bare-metal processes, local dev tooling) there are extra concerns.

(inb4: container env-vars are isolated from other containers, not from processes on the host system)
rustyminnow
·قبل 10 أشهر·discuss
Nobody thought an RPI cluster would ever be competitive, and Geerling never expected anybody would. But it's fun to play "what if" and then make the thing just to see how it stacks up and that's his job. Any implication or suggestion of this being a good idea is just part of the story telling.
rustyminnow
·قبل 10 أشهر·discuss
How do you expose the service for your SO when away from home? Do you use tailscale/cloudflare tunnel/vpn? public port on your router? I've been trying tailscale for myself, but there's a hair more friction than my SO would accept.
rustyminnow
·قبل 11 شهرًا·discuss
I don't keep tabs on OP; I just provide hypothetical answers to literal interpretations of rhetorical questions.
rustyminnow
·قبل 11 شهرًا·discuss
I would be all in on the nub if mine didn't have such terrible drift. Trackpad with top buttons beats any other trackpad though.
rustyminnow
·قبل 11 شهرًا·discuss
If one is a "digital nomad"
rustyminnow
·قبل 11 شهرًا·discuss
:help 'autoread' (I think)