frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

America Broke Its Own Military

https://tribunemag.co.uk/2026/07/how-america-broke-its-own-military
1•robtherobber•3m ago•0 comments

From the Editor: Commercial Aviation's Innovation Dilemma – Aviation Week

https://aviationweek.com/aerospace/manufacturing-supply-chain/editor-commercial-aviations-innovat...
1•rbanffy•3m ago•0 comments

The Zoom hack that says, 'Don't record me'

https://techcrunch.com/2026/07/17/the-zoom-hack-that-says-dont-record-me/
1•nyku•5m ago•0 comments

Baba Is Solved by Fable 5 and GPT-5.6 Sol, but at what cost?

https://quesma.com/blog/baba-is-bench/
1•stared•8m ago•0 comments

What if restaurant menus had AI copilots?

1•irnco•8m ago•0 comments

Claude Code team should try macro so users can complete 3x as many tasks

1•yohji1984•11m ago•0 comments

Show HN: We built fractional GPU slicing without Nvidia MiG – works on AMD too

https://podstack.ai/
1•saurav7055•14m ago•0 comments

No don't Google it, ask me about it

https://river.berlin/blog/no-don-t-google-it-ask-me-about-it/
1•adityashankar•16m ago•0 comments

They Ran Nattokinase Against a Statin. The Enzyme Won

https://sayerji.substack.com/p/they-ran-nattokinase-against-a-statin
1•bilsbie•17m ago•0 comments

Show HN: Csvtool.io – 60 free CSV tools that run in the browser

https://www.csvtool.io
1•jamesweb•19m ago•0 comments

Show HN: BlazeRules – vectorized YAML rules for JSON, Kafka, and Arrow events

1•jspuri•25m ago•0 comments

Laser Fault Injection on the TROPIC01 Open-Source Secure Element

https://donjon.ledger.com/blog/tropic01-laser-fault-injection/
1•ahlCVA•26m ago•0 comments

Optimistic Sync Library for the Web

https://therealpaulplay.github.io/PlaySocketJS/
1•PaulPlay•29m ago•0 comments

Another Taste of Verse [video]

https://www.youtube.com/watch?v=QIiU-QGzcqc&list=PLQtDWkrawhsE&index=2
1•mpweiher•30m ago•0 comments

Slople – can you pass the reverse Turing test?

https://unslop.run/slople
1•dopamine_daddy•35m ago•1 comments

What AI did to stackoverflow in a graph

https://data.stackexchange.com/stackoverflow/query/1953768#graph
3•secretslol•36m ago•0 comments

Why do AI company logos look like buttholes?

https://velvetshark.com/ai-company-logos-that-look-like-buttholes
78•miniBill•42m ago•13 comments

HAMgpt – what can I do with my radio today?

https://hamgpt.co
1•howard941•44m ago•0 comments

'The Odyssey' Backlash Failed Tremendously

https://www.wired.com/story/the-odyssey-backlash-failed-tremendously/
3•joozio•47m ago•3 comments

Fable 5 vs. GPT-5.6 Sol on an NP-Hard Problem: Does /goal help?

https://charlesazam.com/blog/fable-5-gpt-5-6-sol-goal/
1•couAUIA•48m ago•1 comments

Mr. Spock Does Not Code in ASCII

https://lqlang.org/blog/spock-does-not-code-in-ascii/
3•wickund•51m ago•0 comments

NextBSD project revived: macOS userland tools on FreeBSD kernel

https://www.theregister.com/os-platforms/2026/07/18/nextbsd-returns-to-dollop-apple-source-on-fre...
2•lproven•52m ago•0 comments

Steam Machine: Between 12k and 15k Units Sold per week

https://boilingsteam.com/steam-machine-between-10k-and-15k-sold-per-week/
5•ekianjo•52m ago•0 comments

There's any easy way to rename multiple photos at once

https://apps.microsoft.com/detail/9nl267vtkkmg?hl=en-US&gl=US
1•SolvyCode•55m ago•0 comments

GitHub: TypeScript compiler and JavaScript engine in Lean

https://github.com/jessealama/thales
2•fagnerbrack•1h ago•0 comments

Business Success: Luck, Not Merit

https://fagnerbrack.com/business-success-luck-not-merit-51deca80bfaf
1•fagnerbrack•1h ago•0 comments

Software Engineering Laws

https://newsletter.techworld-with-milan.com/p/the-20-software-engineering-laws
1•fagnerbrack•1h ago•0 comments

AG of Texas secured a settlement of bankruptcy claims against 23andMe

https://www.texasattorneygeneral.gov/news/releases/attorney-general-paxton-secures-150-million-se...
1•kythanh•1h ago•0 comments

The Htop for LLM Inference

https://github.com/helasaoudi/llm-inspector
3•helasaoudi•1h ago•1 comments

Continually aim just beyond your current range (2007)

https://terrytao.wordpress.com/career-advice/continually-aim-just-beyond-your-current-range/
1•dorjoy•1h ago•0 comments
Open in hackernews

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

https://github.com/stoolap/stoolap
1•thunderbong•1y ago

Comments

physicsguy•1y 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.