frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Microsoft's 'Xbox Mode' Coming to Windows 11 PCs Next Month

https://www.pcmag.com/news/microsofts-xbox-mode-coming-to-windows-11-pcs-next-month
1•0in•2m ago•0 comments

Ask HN: Embedding Claude Code as Infrastructure?

1•technocrat8080•3m ago•0 comments

Show HN: I built an open harness that excels at autonomous ML research

https://github.com/snoglobe/helios
1•snwy•7m ago•0 comments

AI should help us produce better code

https://simonwillison.net/guides/agentic-engineering-patterns/better-code/
2•birdculture•8m ago•0 comments

DIY scanner to visualize sound waves in 3D [video]

https://www.youtube.com/watch?v=Ky7AWh8nd-A
1•i2pi•9m ago•0 comments

Do AI-enabled companies need fewer people?

https://seldo.com/posts/do-ai-enabled-companies-need-fewer-people/
1•handfuloflight•9m ago•0 comments

SmallClaw: Local-first AI agent framework built for small models

https://github.com/XposeMarket/SmallClaw
1•thunderbong•10m ago•0 comments

Windows 98 NVMe Driver [video]

https://www.youtube.com/watch?v=YUoJS2xXRmQ
1•Modified3019•11m ago•1 comments

Iran warns US tech firms could become targets as war expands

https://www.wired.com/story/iran-warns-us-tech-firms-could-become-targets-as-war-expands/
4•anigbrowl•13m ago•1 comments

Why isn't vibe coding creating more shareware?

2•watershawl•14m ago•1 comments

Divine-OS – Persistent Identity Layer for AI Agents

https://github.com/AetherLogosPrime-Architect/Divine-OS
1•Aetherlogos•15m ago•1 comments

I-Harmonium

https://github.com/gajraj-m/iharmonium
1•macote•16m ago•0 comments

Show HN: s@: decentralized social networking over static sites

http://satproto.org/
2•remywang•17m ago•0 comments

Experimental Type Union Type C#

https://github.com/dotnet/csharplang/discussions/9663
1•ahmedfouad•18m ago•0 comments

PFAS pesticides contaminate nearly 40% of non-organic California produce

https://www.ewg.org/research/forever-chemicals-contaminate-nearly-40-non-organic-california-grown...
2•OutOfHere•21m ago•0 comments

The Perverse, Tender Worlds of Paul Thomas Anderson

https://www.newyorker.com/magazine/2026/03/16/the-perverse-tender-worlds-of-paul-thomas-anderson
2•tzury•21m ago•0 comments

Show HN: AI-nexus – Only 2-3 rules and skills load per prompt in Claude Code

https://github.com/JSK9999/ai-nexus
1•suntrix3•23m ago•0 comments

Atlassian lays off 1,600 workers ahead of AI push

https://www.theguardian.com/technology/2026/mar/12/atlassian-layoffs-software-technology-ai-push-...
2•voxadam•23m ago•1 comments

Why Physical AI Is Hard

https://dexterity.ai/blog/why-physical-ai-is-hard
1•devy•30m ago•1 comments

Hex1b, the .NET Terminal Application Stack

https://hex1b.dev/
2•bladeee•31m ago•0 comments

Postman: predicting spatial protein expression from pathology slides

https://strandai.com/blog/postman-early-access
1•odedfalik•32m ago•1 comments

Is AI the end of software engineering or the next step in its evolution?

https://www.theverge.com/ai-artificial-intelligence/767973/vibe-coding-ai-future-end-evolution
1•ianrahman•32m ago•0 comments

I built a protocol to catch LLMs mid-thought, before they commit to an answer

https://github.com/IvY-Rsearch/wire
1•IvY-Rsearch•33m ago•3 comments

An agent that starts learning from zero state

https://github.com/ChangweiZhou/digitalbaby
1•Pencilbard•34m ago•0 comments

Startup Idea: Make geography irrelevant when browsing the internet

1•mowcirclular•34m ago•1 comments

Mac Neo and my afternoon of reflection and melancholy

https://twitter.com/stevesi/status/2031842797838614548
1•cebert•34m ago•1 comments

'Convincing' AI scams drove UK fraud cases to record 444,000 last year

https://www.theguardian.com/money/2026/mar/12/ai-scams-uk-fraud-artificial-intelligence-mobile-ba...
2•chrisjj•35m ago•0 comments

Show HN: Gitingest for Jupyter Notebook Accessibility

https://jupycheck.vercel.app/
1•deviscold•36m ago•1 comments

David Foster Wallace: This Is Water (2005)

https://fs.blog/david-foster-wallace-this-is-water/
3•vermilingua•38m ago•0 comments

Plan to Unblock Strait of Hormuz Collides with Realities of Global Insurance

https://www.wsj.com/finance/u-s-plan-to-unblock-strait-of-hormuz-collides-with-realities-of-globa...
7•petethomas•40m ago•1 comments
Open in hackernews

Stoolap: High-performance, SQL database in pure Go with zero dependencies

https://github.com/stoolap/stoolap
1•thunderbong•9mo ago

Comments

physicsguy•9mo ago
> Vectorized Execution: SIMD-accelerated operations for high throughput

> // This file contains highly optimized versions of vector operations > // that benefit from compiler auto-vectorization on modern CPUs.

https://github.com/stoolap/stoolap/blob/9c0ceda3bb9c674a9758...

Unfortunately, the standard Go compiler explicitly doesn't auto-vectorize, so saying that this is a pure Go SIMD database isn't strictly correct. You'll only get this if you compile with gccgo.