frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Asus Executive Says MacBook Neo Is 'Shock' to PC Industry

https://www.macrumors.com/2026/03/10/asus-executive-says-macbook-neo-is-a-shock/
2•alwillis•3m ago•0 comments

The Elders (Organization)

https://en.wikipedia.org/wiki/The_Elders_(organization)
1•beatthatflight•3m ago•0 comments

Show HN: OpenClaw Plugin for Claude Code and Codex Orchestration

https://github.com/goldmar/openclaw-code-agent
1•goldmar•5m ago•0 comments

BunnyCDN silently breaks Mastodon request signing, preventing DDoS protection

https://social.mikutter.hachune.net/@mok/116208294430782702
1•mystraline•7m ago•0 comments

MetaLayer –Compare answers of multiple AI models and generate a consensus result

https://metalayerlabs.com
1•PaulmHope•9m ago•1 comments

Bondi, Miller, Rubio, Noem, Hegseth Have Relocated to Military Bases (NYT)

https://www.nytimes.com/2026/03/10/us/politics/bondi-military-housing-threats.html
3•tbreschi•15m ago•1 comments

Eric Schmidt: China Could Dominate the Physical AI Future

https://time.com/7382151/china-dominates-the-physical-ai-race/
2•Anon84•19m ago•0 comments

Ask HN: How do you prevent MCP agents from looping in production?

3•aethis•20m ago•0 comments

Iran's Control of Hormuz Means It's Exporting More Oil Today Than Before the War

https://www.wsj.com/world/middle-east/irans-control-of-hormuz-means-its-exporting-more-oil-today-...
1•JumpCrisscross•26m ago•0 comments

Rlclaw autonomous ML research companion

https://github.com/photon-cat/rlclaw
2•photoncat•28m ago•1 comments

The "Bloomberg Terminal" for Agents – Real-Time Intelligence API for AI Agents

https://thepolarisreport.com/agents
1•JohnWeston•29m ago•1 comments

Towards a Neural Debugger for Python

https://arxiv.org/abs/2603.09951
1•E-Reverance•36m ago•0 comments

Semantically search 45k+ AI skills

https://skillsgate.ai/
2•sultanvaliyev•40m ago•1 comments

Python library for translating between embedding model vector spaces

https://github.com/PotentiallyARobot/EmbeddingAdapters/
3•Taranovski•44m ago•1 comments

Robinhood Agent Integration

https://github.com/kevin1chun/rh-for-agents
3•kevin1chun•55m ago•0 comments

Show HN: FizzBuzz Forever – Agent Edition

https://github.com/dleemiller/fizzbuzz-forever
1•deepsquirrelnet•1h ago•0 comments

T9 in the Terminal for Codex, Claude, Gemini

https://github.com/Xsamsx/T9T
1•kyivctoner•1h ago•1 comments

Writing my own text editor, and daily-driving it

https://blog.jsbarretto.com/post/text-editor
7•todsacerdoti•1h ago•0 comments

Why Systems Optimized for Metrics Eventually Drift from Reality [pdf]

https://offbrandguy.com/wp-content/uploads/2026/03/optimization-trap-reality-drift-framework-2023...
2•realitydrift•1h ago•1 comments

Show HN: OpenClaw skill for think-tank style analysis of crises like Iran war

https://github.com/vassiliylakhonin/global-think-tank-analyst
1•vassilbek•1h ago•1 comments

Ask HN: What are some good lectures or talks like this one? [pdf]

https://www.labouseur.com/projects/codeReckon/papers/The-Emperors-Old-Clothes.pdf
1•jdironman•1h ago•2 comments

New Design for Firefox.com

https://www.firefox.com/en-US/
4•pentagrama•1h ago•0 comments

Recursive Problems Benefit from Recursive Solutions

https://jnkr.tech/blog/recursive-benefits-recursive
3•luispa•1h ago•0 comments

How HN: Specwatch – Generate OpenAPI specs by watching live API traffic

https://github.com/rajeevramani/specwatch
1•rajeevramani•1h ago•1 comments

Storm [video]

https://www.youtube.com/watch?v=HhGuXCuDb1U
1•nomilk•1h ago•0 comments

Zig – Type Resolution Redesign and Language Changes

https://ziglang.org/devlog/2026/#2026-03-10
32•Retro_Dev•1h ago•3 comments

The tests are the code now

https://softwaredoug.com/blog/2026/03/10/the-tests-are-the-code-now.html
5•zdw•1h ago•0 comments

Show HN: Assemble – Claude Code skill for parallel AI team execution

https://github.com/LakshmiSravyaVedantham/assemble
1•sravyavedantham•1h ago•0 comments

Breaking Control Flow Integrity by Abusing Modern C++ (Coroutines) – BH USA 2025 [video]

https://www.youtube.com/watch?v=hxIPoi4ONNA
2•matt_d•1h ago•0 comments

Show HN: ImageHost.ing – burn-after-reading image host on Cloudflare's free tier

https://imagehost.ing
1•lzy•1h ago•0 comments
Open in hackernews

Zig – Type Resolution Redesign and Language Changes

https://ziglang.org/devlog/2026/#2026-03-10
32•Retro_Dev•1h ago

Comments

h4ch1•33m ago
I would really like to hear from people using Zig in production/semi-serious applications; where software stability is important.

How's your experience with the constantly changing language? How're your update/rewrite cycles looking like? Are there cases where packages you may use fall behind the language?

I know Bun's using zig to a degree of success, was wondering how the rest were doing.

Cloudef•22m ago
The language itself does not change much, but the std does. It depends on individuals, but some people rely less on the std, some copy the old code that they still need.

> Are there cases where packages you may use fall behind the language?

Using third party packages is quite problematic yes. I don't recommend using them too much personally, unless you want to make more work for yourself.

latch•14m ago
Zig 0.15 is pretty stable. The biggest issue I face daily are silent compiler errors (SIGBUS) for trivial things, e.g. a typo in an import path. I've yet to find exactly why this [only sometimes] causes such a crash, but they're a real pain to figure out over a large changeset. `zig ast-check` sometimes catches the error, else Claude's pretty good at spotting where I accidentally re-used a variable name (again, 90% of the time I do that, it's an easy error, but the other 10%, I get a message-less compiler crash). It sounds like the changes in the OP might be specifically addressing these types of issues.

Also, my .zig-cache is currently at 173GB, which causes some issues on the small Linux ARM VPS I test with.

As for upgrades. I upgraded lightpanda to 0.14 then 0.15 and it was fine. I think for lightpanda, the 0.16 changes might not be too bad, with the only potential issue coming from our use of libcurl and our small websocket server (for CDP connections). Those layers are relatively isolated / abstracted, so I'm hopeful.

As a library developer, I've given up following / tracking 0.16. For one, the change don't resonate with me, and for another, it's changing far too fast. I don't think anyone expects 0.16 support in a library right now. I've gotten PRs for my "dev" branches from a few brave souls and everyone seems happy with that arrangement.