HN user

programmarchy

1,890 karma
Posts17
Comments1,160
View on HN
twitter.com 2mo ago

The State of Statefulness in AI Agents

programmarchy
1pts0
fortune.com 3y ago

OpenAI is getting trolled for its name after refusing to be open

programmarchy
1pts0
github.com 3y ago

Show HN: Automatically generate Git commit messages using OpenAI GPT-3

programmarchy
1pts0
twitter.com 3y ago

Twitter Gets Editing Capabilities

programmarchy
7pts0
themarket.ch 3y ago

We will see the return of capital investment on a massive scale

programmarchy
81pts43
www.evilsocket.net 3y ago

Reverse Engineering the Apple MultiPeer Connectivity Framework

programmarchy
2pts0
www.rollingstone.com 3y ago

FBI Raids Star ABC News Producer’s Home

programmarchy
68pts29
publichealth.berkeley.edu 5y ago

Cellphone radiation is harmful, but few want to believe it: researcher

programmarchy
80pts116
wholefoodsmagazine.com 6y ago

Vitamin C and the Immune System: Nutritional Fortification Against Viruses

programmarchy
1pts0
www.theverge.com 8y ago

MyHeritage breach leaks millions of account details

programmarchy
3pts0
www.marketwatch.com 8y ago

Zuckerberg saved tens of millions by selling stock ahead of recent decline

programmarchy
9pts0
www.bilderbergmeetings.org 10y ago

Sam Altman Represents Y Combinator at Bilderberg 2016

programmarchy
1pts0
morelibertynow.com 10y ago

5 Reasons Agorism Is a Failed Strategy

programmarchy
1pts0
vimeo.com 11y ago

The Future of Freedom: A Feature Interview with NSA Whistleblower William Binney

programmarchy
12pts0
rationaloptimist.com 11y ago

My life as a climate lukewarmer

programmarchy
3pts0
www.popularmechanics.com 12y ago

Moss: a Modular Robotics Toy for All Ages

programmarchy
2pts0
programmarchy.github.io 12y ago

Simple RK4 gravity simulator in three.js

programmarchy
3pts0

Good luck with that. I used to be an OCD freak about code before LLMs, but AI coding has largely freed me of that limitation. I've become very comfortable giving AI a long leash, but only after being meticulous about curating the context.

These days I spend most of the day in discussions and planning, producing documentation, agonizing over architectural decisions, edge cases, and naming conventions. Once that's all settled I'll hand off implementation work to run overnight. In the morning, I'll review and fix, but I'm usually pleasantly surprised with the results.

One pitfall is long leash without a curated context, which is more like "slot machine" coding. Usually not effective, and may have addictive effects since it does occasionally work.

To spice things up lately, I've been encouraging the model to produce its own "capstone" -- a feature it decides to build on its own, however it wishes, with the tools at its disposal. So far it's been conservative, creating useful tools for development rather than customer facing features, but I'm curious to dial up the temperature to see what it might come up with.

Railroads had enormous subsidies, too. This is how infrastructure is built, even in "capitalist" economies because it operates at the level of national security. Even to this day, passenger rail is not profitable, although freight is very profitable. So it wouldn't be surprising if "passenger" AI remains unprofitable, while "freight" AI becomes very profitable.

Pretty bold statement to say it's useless for most people outside of tech. Almost every "normal" person I know including my in-laws are using it regularly. It's becoming the go-to for asking questions rather than Google, Bing, etc.

And the privacy battle was lost 25 years ago. People don't really care if corporations know about their search history (Google), or their private lives (Facebook). You're beating a dead horse there.

Also had a severe issue with Bunny, serving videos. They had a cache poisoning issue where they served a few frames from pornographic videos right in the middle of our educational videos. They did not have the multi-tenancy thing fully figured out, and it became a nightmare scenario. After that, we moved to a provider that explicitly did not allow porn.

I really dislike how apps add themselves to the menubar. And I hate if there's no option to remove it from the menubar. Icons with indicators like WiFi, Battery, etc. make sense. But if an app does not need an indicator like that, just add the capabilities to the Dock icon!

Then what’s the point of skills like apple-reminders? Isn’t the implication for a personal assistant styled OpenClaw setup that you allow it access to those tools on your behalf? Otherwise where is the benefit?

An analogy

Statement: Statistically, seatbelts reduce the chances you’ll die in a car accident.

You: But, what if your car crashes into a lake and you get trapped underwater?

Would it be possible to embed Bitrig in an existing app? Similar to how you might embed React Native into a portion of your app to accelerate development in a specific area, it’d be awesome to preserve the mature areas of our apps and use Bitrig to quickly iterate on new features.

One of the core things Node.js got right was streams. (Anyone remember substack’s presentation “Thinking in streams”?) It’s good to see them continue to push that forward.

This sounds like a breath of fresh air as a disenchanted Spotify user. My only hesitation is that I’ve lost touch with collecting music. I used to rip CDs and download music and curate a library etc, but I’ve lost my collection and collecting habits since adopting streaming. How do people collect music nowadays? Is there a legit way (fairly compensating artists) to do it?

For most APIs that doesn’t deliver any value which can’t be gained from API docs, so it’s hard to justify. However, these days it could be very useful if you want an AI to be able to navigate your API. But MCP has the spotlight now.

Seems like you should be correct. A shadcn button is just react, tailwind, and @radix/react-slot. But if you simply create a new shadcn Next.js template (i.e. pnpm dlx shadcn@latest init) and add a button, the "First Load JS" is ~100kB. Maybe you could blame that on Next.js bloat and we should also compare it to a Vite setup, but it's still surprising.

With OpenAI models, my understanding is that token output is restricted so that each next token must conform to the specified grammar (ie json schema) so you’re guaranteed to get either a function call or an error.

Edit: per simonw’s sibling comment, ollama also has this feature.

I’m missing something. If WebAuthn is “ssh for the web” then why would it matter if Bob was phished and logged into the fake crypto portal running on the raspberry pi? It’s not like the attacker now knows his private key. Is the danger that Bob also would share his crypto wallet keys with the fake site or something?

CoreVideo and CoreAudio are both implemented in C on Apple systems. There are higher level APIs like AVFoundation implemented in Obj-C/Swift, but the codecs themselves are written in C. Even the mid-level frameworks like AudioToolbox and VideoToolbox are written in C. I’m not as familiar with Microsoft but imagine it’s similar.

Also the article doesn’t actually mention OOP. You can use polymorphism without fully buying into OOP (like Go does).

The great thing about C is its interoperability, which is why it’s the go to language for things like codecs, device drivers, kernel modules, etc.