frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Kangina

https://en.wikipedia.org/wiki/Kangina
1•thunderbong•20s ago•0 comments

Cert Authorities Check for DNSSEC from Today

https://www.grepular.com/Cert_Authorities_Check_for_DNSSEC_From_Today
1•zdw•50s ago•0 comments

Hacking 'Skill' distilled from 4200 Hackerone vulns

https://instavm.io/blog/analysed-4000-to-create-security-agent-cli
1•mkagenius•1m ago•0 comments

Copilot Health

https://microsoft.ai/news/introducing-copilot-health/
1•geox•1m ago•0 comments

Cloudflare forked just-bash and they really, really should not have

https://twitter.com/cramforce/status/2033285112478171373
2•switz•4m ago•0 comments

Road Safety Annual Report 2025 [pdf]

https://www.itf-oecd.org/road-safety-annual-report-2025
1•gnabgib•4m ago•0 comments

Show HN: Decision Guardian v1.2.0 – enforce architectural decisions at PR time

1•iamalizaidi•5m ago•0 comments

Cover Flow with Modern CSS: Scroll-Driven Animations in Action (2025)

https://addyosmani.com/blog/coverflow/
1•andsoitis•6m ago•0 comments

Wikipedia Admin David Gerard Launders His Grudges into the Public Record

https://www.tracingwoodgrains.com/p/reliable-sources-how-wikipedia-admin
1•appreciatorBus•8m ago•0 comments

Show HN: Focus mode, browser ext to block distracting websites

https://github.com/the-wc/focus-mode
1•baetylus•9m ago•0 comments

The US Is Counting Traffic Deaths Wrong

https://www.bloomberg.com/news/articles/2026-03-10/how-deadly-are-us-roads-it-depends-on-how-you-...
2•zdw•9m ago•0 comments

I'm building a way to verify resume claims with AI

1•zain__t•9m ago•0 comments

The Gen-Z Founders Trying to Get Guys to Stop Watching Porn

https://nymag.com/intelligencer/article/porn-addiction-app-quittr-alex-slater-connor-mclaren.html
2•gnabgib•10m ago•0 comments

From CIA to CEO, Spies Step Out of the Shadows and into the Boardroom

https://www.bloomberg.com/news/features/2026-03-13/former-cia-spies-launch-defense-tech-startups-...
1•mooreds•11m ago•0 comments

AI-as-Code for Agent Factories

https://re-cinq.github.io/wave/
1•mooreds•12m ago•0 comments

I built a game flop tracker – got covered by Forbes and DDoS'd the same weekend

https://flopathon.cc
1•robauu•12m ago•2 comments

Multi-agent fleet management for coding agents

https://github.com/supaku/agentfactory
1•mooreds•12m ago•0 comments

The Escalation Trap

https://escalationtrap.substack.com/p/four-strategic-patterns-now-visible
1•caaqil•14m ago•0 comments

Are Computers Making Society More Unequal? (2013)

https://www.newyorker.com/business/currency/are-computers-making-society-more-unequal
1•kurinikku•14m ago•0 comments

Nvidia is cornering the HBM4 market

https://www.buysellram.com/blog/dram-shortage-wont-end-in-2026-why-nvidia-just-told-fabs-to-build...
3•jamesbsr•17m ago•1 comments

Dassault Starts Vortex Spaceplane Parts Production

https://aviationweek.com/space/launch-vehicles-propulsion/dassault-starts-vortex-spaceplane-parts...
3•vrganj•18m ago•0 comments

Travis Kalanick Debuts Plan for 'Gainfully Employed Robots'

https://www.bloomberg.com/news/articles/2026-03-13/ex-uber-ceo-kalanick-debuts-plan-for-gainfully...
2•gnabgib•18m ago•0 comments

You're not immune to propaganda [video]

https://www.youtube.com/watch?v=dl2fnWIlDZg
1•teleforce•18m ago•0 comments

Show HN: Tmux-nvim-navigator – Seamless navigation with zero Neovim config

https://github.com/sindrip/tmux-nvim-navigator
1•Sindrip•20m ago•0 comments

POP instruction speed (Jeff Garzik; Linus Torvalds) (2004)

https://yarchive.net/comp/linux/pop_instruction_speed.html
1•userbinator•20m ago•0 comments

P.U.S..H. Protocol: Self-Referential AI Engine with 6-Node Mesh (React/D3)

https://chailifeotft.github.io/PUSH-Protocol/
1•drayvntech•21m ago•0 comments

Show HN: CandlePulse – Natural language trading alerts powered by AI

https://candlepulse.com/home
2•rijesh4•23m ago•0 comments

Show HN: The Jobs Index

https://jobs.voxos.ai/
2•Falimonda•25m ago•1 comments

Successes and Breakdowns in Everyday Non-Display Smart Glasses Use

https://arxiv.org/abs/2602.22340
1•PaulHoule•26m ago•0 comments

The Great American Condo Crisis

https://www.theatlantic.com/ideas/2026/03/condo-housing-affordability-crisis/686353/
1•JumpCrisscross•28m ago•0 comments
Open in hackernews

Cuneicode – a language where 0.1 and 0.2 == 0.3

https://cuneicode.dev
2•synchan•1h ago

Comments

synchan•1h ago
I built a programming language where every number is an exact rational. No floating-point. No IEEE 754. No epsilon comparisons.

``` inscribe 0.1 + 0.2 == 0.3 -- true inscribe 1/3 + 1/3 + 1/3 == 1 -- true ```

This isn't a library feature — it's the language's sole numeric type. Every operation on every number in every library inherits this guarantee for free.

What this enables:

- *Quantum circuit verification*: 100 Hadamard gates chained return to identity — exactly. No drift. (Qiskit/Cirq can't pass this test.) - *Financial calculations*: $0.10 × 10 == $1.00, exact. Ships with a Decimal type for currency-safe arithmetic. - *Linear regression*: slope of y=2x is 2, not 1.9999999999998. - *Crypto verification*: Exact BigInt modular arithmetic with secp256k1/P-256/Ed25519 curve parameters.

The language also ships with: - Python interop (Python.eval("2*10") → 1024) - Capability-based security (sandbox permissions for safe code execution) - Refinement types (mark x: num where x > 0 = 42) - A verification REST API (POST /verify with your expression, get exact result) - VS Code extension and Jupyter kernel

534 tests, 0 failures, 42 modules, 25K LOC, Mesopotamian-themed syntax (chisel/tablet/engrave/inscribe).

Try it: `npm install -g cuneicode && cune`

GitHub: https://github.com/sinchancybersecurity/cuneicode

stop50•1h ago
Neither domain nor the repo exists. Probably slop post