HackerTrans
TopNewTrendsCommentsPastAskShowJobs

llmslave3

no profile record

comments

llmslave3
·6 months ago·discuss
[dead]
llmslave3
·6 months ago·discuss
> Please respond to the strongest plausible interpretation of what someone says, not a weaker one that's easier to criticize. Assume good faith.
llmslave3
·6 months ago·discuss
There is also plenty of extremely experienced programmers saying "this stuff is useless for programming".
llmslave3
·6 months ago·discuss
Why do you care so much to write a blog post? Like if it's such a big advantage, why not stay quiet and exploit it? Why not make Anti-AI blog posts to gain even more of an advantage?

One of the big red flags I see around the pro-AI side is this constant desire to promote the technology. At least the anti-ai side is reactionary.
llmslave3
·6 months ago·discuss
[dead]
llmslave3
·6 months ago·discuss
He's built lots of cool stuff with AI. Here is four random ones pulled from https://tools.simonwillison.net

- https://tools.simonwillison.net/bullish-bearish

- https://tools.simonwillison.net/user-agent

- https://tools.simonwillison.net/gemini-chat

- https://tools.simonwillison.net/token-usage
llmslave3
·6 months ago·discuss
I find it slightly ironic that Anthropic benefits from ignoring intellectual property but then tries to enforce it on their competitors.

How would they even detect that you used CC on a competitor? There's surely no ethical reason to not do it, it seems unenforceable.
llmslave3
·6 months ago·discuss
[dead]
llmslave3
·6 months ago·discuss
I wonder what would happen if Github was flooded with a few thousand repos that looked legit but had some poison files embedded inside.
llmslave3
·6 months ago·discuss
[flagged]
llmslave3
·6 months ago·discuss
This isn't sabotaging AI research, it's sabotaging companies who scrape information indiscriminately from the internet to power their LLM-as-a-service business. AI is far more than just OpenAI and Anthropic...
llmslave3
·6 months ago·discuss
[flagged]
llmslave3
·6 months ago·discuss
Or Lua... :>
llmslave3
·6 months ago·discuss
Go's type system is fine. This kind of comment is just pointless and goes against HN rules.
llmslave3
·6 months ago·discuss
Probably stop using technology. Might go back to bartending tbh.
llmslave3
·6 months ago·discuss
I hate to say it, but this probably would not have happened in a garbage collected language.

GC languages are fast these days. If you don't want a runtime like C# (which has excellent performance) a language like Go would have worked just fine here, compiling to a small native binary but with a GC.

I don't really understand the aversion to GC's. In memory constrained scenarios or where performance is an absolute top priority, I understand wanting manual control. But that seems like a very rare scenario in user space.
llmslave3
·6 months ago·discuss
I tried everything lol.
llmslave3
·6 months ago·discuss
Last time I tried Linux I was so done with Windows I installed Arch. Couldn't connect to Wifi. I figured it was Arch, so I installed Ubuntu. Literally the same problem. So I got a new USB wifi adaptor that said it supported Linux...same problem. I gave up and have been using a MacBook ever since lol.
llmslave3
·6 months ago·discuss
Doesn't everyone use OpenCode or Claude Code these days? I haven't heard about V0 in a long time.
llmslave3
·6 months ago·discuss
I was wondering why stuff was written in JS in the past - it seems obvious to use a faster language for these tools, but I then realised that these massive sprawling Typescript codebases are a modern phenomena. I sort of wonder if the tooling is just step one, and step two is not just the tooling but the other codebases going from TS to a faster lang (like Go).

Speaking of Go, Esbuild is amazing. You can write entire dev servers and build pipelines in a couple hundred lines of Go, with hot reloading etc. Full control over your build process, plugins are compiled with the builder so you don't pay the JS -> Go cost, it's really great stuff. I love Esbuild, thank you Evan :)