HackerTrans
TopNewTrendsCommentsPastAskShowJobs

MintPaw

103 karmajoined 10 tahun yang lalu

Submissions

Nagent, a uniuqe LLM loop reference implementation

github.com
2 points·by MintPaw·bulan lalu·0 comments

comments

MintPaw
·kemarin dulu·discuss
This is way too absolute a point. There's services like water and internet service you're effectively subscribed too that don't get worse. There's obvious efficiencies that can be gained from regularizing demand with subscriptions. Amazon Prime is another example of a something I've been subscribed to for over a decade and I don't feel has gotten worse.
MintPaw
·11 hari yang lalu·discuss
Not you particularly, I meant the original: "it feels like every share of income is at its lowest except for the ultra wealthy."

It's ambiguous in several way, no time scale, "ultra wealthy" isn't defined, and "income" somewhat ambiguous.
MintPaw
·11 hari yang lalu·discuss
Data is the answer, it's just that so few people are willing to look at unbiased data. Although the start is asking a more measurable question.
MintPaw
·12 hari yang lalu·discuss
There's a whole category of video content called "First Amendment Audits" where people film with big cameras in public and farm people random, and often quite hostile, reactions.
MintPaw
·20 hari yang lalu·discuss
This is at odds with the idea that devs should take full accountability for LLM generated code.

He also didn't even say the code was generated by Claude, just the description, although a decent amount of the code probably was.
MintPaw
·22 hari yang lalu·discuss
A side note, isn't package maintenance something that can actually be solved to some extent by LLMs? The prompt would be something like "Clone this repo and build this package while building/bundling as few other packages as possible with minimal code changes."

Then set it in a loop on all the packages for a particular system, I don't have experience in package maintenance and would be curious what kind of issues would come up.
MintPaw
·2 bulan yang lalu·discuss
I'm not sure about that, they could do far worse than delist you if they really hated you.
MintPaw
·2 bulan yang lalu·discuss
Interesting point, but I'd always thought the opposite, you're much better protected by the law if you use services from your own country.

If you use a service outside your country, I believe you could have all your code stolen and get hacked/exploited in a way that would be totally legal.
MintPaw
·2 bulan yang lalu·discuss
What is a voicemail in this context? What app is reading it?
MintPaw
·2 bulan yang lalu·discuss
Detect the mouse moving in a "non-human way"? If it were that easy there'd be no hackers. And even if it where, what about wall hacks?
MintPaw
·2 bulan yang lalu·discuss
There's just different types of programming, I also find that if I give a decent description of a bug an LLM will often find the problem, and that great in a system that's mostly legacy and hard to repro. LLMs are also good for quick small scale from-scratch projects.

But there's a middle ground where you're really have to build something out that's super complicated and performant. Or do refactors that have a high quality bar. Situations where code bloat really matters. LLMs tend to create crazy amounts of code, not really thinking through the broader system and taking system level in-variance constraints seriously.
MintPaw
·2 bulan yang lalu·discuss
I recently had my faith shattered with I saw someone lock onto an ally through a wall in a kill cam, and I haven't played sense.

Blatant cheaters are bad in some ways, but subtle cheat are far worse imo.
MintPaw
·2 bulan yang lalu·discuss
I think there's a large subset of programmers now who consider null checking (or even the existence of null) to be bad, and prefer something else like exceptions or option types. I don't get it personally.
MintPaw
·2 bulan yang lalu·discuss
$600/mo? Do you mean $600 as a one time purchase for life? I've never heard of any Adobe plan that expensive.
MintPaw
·2 bulan yang lalu·discuss
This looks to me like the issue is that Zed is using too many buffer objects, it should be querying the Vulkan context to see what's the max and sticking to it. So it seems like Zed's not doing it right, or maybe the AMD driver is failing to report it correctly?

It is a problem though, the GPU apis are pretty terrible. But with such large modern displays it feels important to have a GPU accelerated path. Maybe sticking with OpenGL would be better.
MintPaw
·2 bulan yang lalu·discuss
Vulkan, DX11, or Metal, I'm curious which environment has the ability render a GUI desktop but doesn't have access to a modern renderer pipeline. VirtualBox I guess?
MintPaw
·3 bulan yang lalu·discuss
Everyone talks badly about Cursor and it is kinda a piece of junk, but no, there's nothing that has the features of: being able to see agent diffs in an editor, seeing diffs inline in chat, be able to click them to jump to the code, and being able to click old chat messages to edit/fork them.

Those are basically my only requirements, and it feels like I've tried everything and they're all everything only has 1 of those features. Zed is the closest, it technically has those features, they're just buggy and have provider specific quirks.

So I'm stuck on Cursor until Anthropic invents IDE technology, or at least VS Code wrapper technology.
MintPaw
·3 bulan yang lalu·discuss
Yes, but I got a subscription because I was tired of alt+tabbing to the Cursor spending dashboard between prompts to make sure I wasn't over spending. I'm ok if they slow me down for a few hours during peak usage. But getting cut off for 20+ days because I'm not thinking about the prompt cache for a bit makes a subscription feel pretty useless.

I was using it with Zed before, because I guess I'm one of the only programmers who doesn't just full vibe, which seem to mean I'm not the target customer for a lot of these companies who seem to be going all in on the terminal interfaces.

I've gone back to Cursor auto the last few weeks, it hasn't been too bad actually, I haven't managed to run out of the $20/mo plan yet.
MintPaw
·3 bulan yang lalu·discuss
Sounds really minor, but was actually a big contributor to me canceling and switching. The VS Code extension has a morphing spinner thing that rapidly switches between these little catch phrases. It drives me crazy, and I end up covering it up with my right click menu so I can read the actual thinking tokens without that attention vampire distracting me.

And of course they recently turned off all third party harness support for the subscription, so you're just forced to watch it and any other stuff they randomly decide to add, or pay thousands of dollars.
MintPaw
·3 bulan yang lalu·discuss
> The way it is now, I can modify web sites using extensions

This isn't related too directly to WASM, what you want is DOM rendering only, you would theoretically reject canvas and WebGL rendering I imagine. But you could create DOM nodes with WASM. The only difference is that WASM is not as easy to decompile, but I can't imagine you're really unminifiying and patching Javascript are you?