HN user

ec109685

6,575 karma
Posts26
Comments3,491
View on HN
arnav.tech 1y ago

Evaluating SotA LLM Models trying to solve a net-new LeetCode style puzzle

ec109685
1pts0
blog.vespa.ai 1y ago

Scaling ColPali to Billions of PDFs with Vespa

ec109685
2pts0
www.theverge.com 1y ago

Christian Selig's unofficial YouTube app for the Vision Pro just got taken down

ec109685
2pts1
www.cursor.com 1y ago

Editing Files at 1000 Tokens per Second

ec109685
1pts0
www.threads.net 1y ago

AI Saves Amazon 4,500 developer years on Java Upgrade

ec109685
3pts0
finance.yahoo.com 1y ago

Trump Media and Technology Group Launch of Own CDN

ec109685
7pts0
www.bloomberg.com 1y ago

AI-Made Bioweapons Are Washington's Latest Security Obsession

ec109685
19pts4
www.cnn.com 2y ago

Auto Dealer software CDK paid a $25M ransom

ec109685
4pts0
blog.cloudflare.com 2y ago

JavaScript native RPC added to Cloudflare workers

ec109685
37pts7
usafacts.org 3y ago

Americans drinking more bottled water

ec109685
2pts0
csvbase.com 3y ago

Dataframes: Take tools out of 'Data', but don't take the data out of the tools

ec109685
1pts0
electrek.co 3y ago

In a US first, California will pilot solar-panel canopies over canals

ec109685
16pts4
www.nytimes.com 4y ago

Bitcoin Bust: What’s the Future of Web 3? w/ Chris Dixon

ec109685
2pts0
blog.cloudflare.com 4y ago

Stream with sub-second latency is like a magical HDMI cable to the cloud

ec109685
7pts2
blog.cloudflare.com 4y ago

Cloudflare Workers for Platforms: making every app on the Internet programmable

ec109685
2pts0
www.theverge.com 4y ago

Twitter reverts change that left blank spaces in place of deleted tweets

ec109685
2pts0
evanmccann.net 4y ago

Eero Pro 6E and Eero 6 Review: Fast and Easy

ec109685
75pts56
www.forbes.com 4y ago

How far could a spaceship go if we never ran out of thrust? (2020)

ec109685
280pts331
www.theatlantic.com 5y ago

The Truth Behind the Amazon Mystery Seeds

ec109685
2pts0
medium.com 5y ago

What Happens When You Become an Overnight Millionaire?

ec109685
3pts0
www.insider.com 7y ago

Dynatrace Files for IPO

ec109685
1pts0
github.com 7y ago

Carmack: Using a unified queue for Real-Time applications (1998)

ec109685
3pts0
www.nytimes.com 8y ago

When Bail Feels Less Like Freedom, More Like Extortion

ec109685
1pts0
yahoo-security.tumblr.com 9y ago

2M paid out so far in Yahoo's bug bounty program

ec109685
1pts0
www.netmeister.org 10y ago

Emper Ubi Sub Ubi – Things They Don't Teach You in School

ec109685
3pts0
www.bloomberg.com 10y ago

Ignored for Years, Modern Money Theory Is Gaining Converts

ec109685
31pts37

One honesty note before my comment (yuck), it's super frustrating to read an LLM produced blog that could be 1/3 the size. Why are you talking about MCP's when comparing OpenCode and Claude Code when they both support that technology?

The only interesting thing is whether OpenCode is more effective at writing code with it's reduced system prompt.

Caching doesn’t work the way the bug reporter implies. Caches are shared (at least across the enterprise), but its key is always a function of the input before it.

We achieved significant savings simply by moving everything that varies across individuals out of the system prompt so every session starts from a cache point.

For example you never want your system prompt to start with the time that the session started. Move that to the first user message if needed.

Not true at all. I hate reading my own produced AI writing.

The issue with any AI writing is that it all sounds the same.

Once that stops being true, maybe it will be acceptable. But until then, you are left with repetitive crap. That you must wade through. Not good.

Cloudflare Flagship 2 months ago

Missing gradual rollout of feature flag changes themselves. Yes, you can do percentage based rollouts for individual features but still should have ability to canary all changes before they cause an insta-sev.

He would pull them away from co-pilot and the unlimited spigot of money that agentic coding brings, which is contrary to the best interests of Microsfot.

CSS is DOOMed 4 months ago

Great example as to why people are yearning for CSS in TypeScript. Something as simple as if() only works in Chrome and there's not a good shim story for CSS versus a more complete language, so you end up with this:

The problem: CSS can compute a number – 0 for visible and 1 for hidden – but you can’t directly use that number to set visibility. There is a new feature coming to CSS that solves this: if(), but right now it only just shipped in Chrome.

So I used a trick called type grinding. You create a paused animation that toggles visibility between visible and hidden. Then you set the animation-delay based on the computed value to determine which keyframe is used:

  animation: cull-toggle 1s step-end paused;
  animation-delay: calc(var(--cull-outside) \* -0.5s);

  @keyframes cull-toggle {
    0%, 49.9% { visibility: visible; }
    50%, 100% { visibility: hidden; }
  }
> A negative animation delay on a paused animation jumps to that point in the timeline. So a delay of 0s lands in the visible range, and -0.5s lands in the hidden range. It’s a hack, but a functional one. When CSS if() gets wider support, we can replace this with a clean conditional. ```

I think Anthropic just highly RL’s their model to work best with it’s Claude Code’s particular ways of going about things.

All the background capability Claude code now has makes things way more complex and I saw a meaningful improvement with 4.6 versus 4.5, so imagine other harnesses will take time to catch up.

I use Prompt, Ever Terminal, Whisper, EC2 and Claude Code.

I can build anything with it. Having Claude on top of a terraform repo lets me fully control my infra. Claude is so good at AWS and terraform, and it even found a $3k monthly accidental spend I had running (also sent a refund request to hopefully get some credit back).

Also have a Claude driven CI workflow in GitHub to help keep everything on track.

Having full access to the Claude Code TUI is so much better than the web or iOS interface, plus everything runs on your own setup.

And agree it has replaced doom scrolling / useless new reading.

This is impressive.

Though I have found repo level claude.md that is updated everytime claude makes a mistake plus using —restore to select a previous relevant session works well.

There is no way for Anthropic to optimize Claude code or the underlying models for these custom setups. So it’s probably better to stick with the patterns Anthropic engineers use internally.

How uv got so fast 7 months ago

The article info is great, but why do people put up with LLM ticks and slop in their writing? These sentences add no value and treats the reader as stupid.

This is concurrency, not language magic.

This is filesystem ops, not language-dependent.

Duh, you literally told me that the previous sentence and 50 million other times.

Unifi Travel Router 7 months ago

You should overlay something else rather than rely on WiFi securiry. Tailscale or a vpn, private cloud or just tls, depending on your threat model.