frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: OJ – A drop-in replacement for Vite in Rust

https://github.com/lovablelabs/oj
1•h1fra•36s ago•0 comments

Julian Assange Returns to X

https://twitter.com/JulianAssange/status/2100571158777045331
3•MomsAVoxell•4m ago•1 comments

Sex, AI, and the Apocalypse

https://www.iankduncan.com/personal/2026-09-16-sex-ai-and-the-apocalypse/
1•Anon84•5m ago•0 comments

Edge Magazine: The game industry is broken – can we fix it?

https://knowledge.edge-online.com/p/the-game-industry-is-broken-can-we-fix-it-tim-sweeney-edge-crash
1•vblanco•6m ago•0 comments

Linux Patched for Silent User-Space Data Loss Bug That Existed Since 2023

https://www.phoronix.com/news/Linux-7.3-Fix-Silent-Data-Loss
1•dimonomid•6m ago•0 comments

How Uber Protects Against Retry Storms

https://www.uber.com/us/en/blog/protecting-against-retry-storms/
1•iscmt•7m ago•0 comments

How SpaceX Streamlined the Raptor Engine

https://www.construction-physics.com/p/how-spacex-streamlined-the-raptor
1•JumpCrisscross•7m ago•0 comments

Typesafe AI

https://typesafe.ai/
1•h1fra•7m ago•0 comments

Bonsai 2 27B: Near-Lossless Compression in a 9x Smaller Footprint

https://prismml.com/news/bonsai-2-27b
2•JonSchneider•8m ago•0 comments

OpenAI Safety Guardrails: What to Test Before Trusting an AI Agent

https://www.pentesty.co/blog/openai-safety-guardrails-ai-agent-security
1•josanjohnata•10m ago•0 comments

ESP32 Wi-Fi Vulns: Coordinated Disclosure Is Broken by AI

https://fughilli.substack.com/p/auditing-the-closed-esp32-c6-wi-fi
1•fughilli•13m ago•0 comments

Microsoft Office alternative Euro-Office getting Windows desktop app soon

https://www.neowin.net/news/microsoft-office-alternative-euro-office-getting-dedicated-windows-de...
2•bundie•14m ago•0 comments

Ask HN: What self-hosted apps do you use daily?

1•osr00•18m ago•1 comments

Measure your speakers with a mic and get a parametric calibration

https://github.com/thefreshoffice/omarchy-speaker-calibrator
1•lwhsiao•21m ago•0 comments

Wonder debuts first robotic meal assembly system, acquired tech from Sweetgreen

https://www.fastcompany.com/91606368/marc-lore-startup-wonder-infinite-makeline-robotic-food-prep
1•rmason•21m ago•0 comments

Remains of 'lost' medieval castle found at UCD campus

https://www.rte.ie/news/regional/2026/0917/1591962-ucd-medieval-castle/
3•austinallegro•25m ago•0 comments

Why the Navier-Stokes Equations Are So Hard [video]

https://www.youtube.com/watch?v=PsWR1rQEWYo
2•doctoboggan•26m ago•0 comments

The most important product decision is what you don't build

https://liamnugent.me/posts/what-you-dont-build/
3•ChrisArchitect•29m ago•1 comments

C++26: Trivial infinite loops are no longer undefined behaviour

https://www.sandordargo.com/blog/2026/09/16/cpp26-trivial-infinite-loops
2•ibobev•29m ago•0 comments

Show HN: Microsoft Office Running with Wine on Linux with No Virtualization

https://github.com/Tombert/office365_flake
1•tombert•29m ago•2 comments

Shaping the Future of Learning: Education Readiness for the Age of AI [pdf]

https://reports.weforum.org/docs/WEF_Shaping_the_Future_of_Learning_2026.pdf
1•gmays•29m ago•0 comments

Computer Reset, Dallas

https://dfarq.homeip.net/computer-reset-dallas/
3•ibobev•31m ago•0 comments

Measurements for understanding the pace of AI development inside frontier labs

https://www.anthropic.com/institute/measuring-pace-of-ai-development
2•vertigoruntime•31m ago•0 comments

Backlog and Workers: Two Knobs on Two Layers

https://www.buoyant.io/blog/backlog-and-workers-two-knobs-on-two-layers
1•PagCatOli•31m ago•0 comments

Who Are We Now?

https://jessitron.com/2026/08/30/who-are-we-now/
1•mooreds•32m ago•0 comments

Polygo, a local-first CLI that translates your app's strings with Ollama

https://github.com/Na5co/polygo
1•nasco1899•32m ago•0 comments

Brazil plans executive order to ban online casinos, sources say

https://www.reuters.com/world/americas/brazil-plans-executive-order-ban-online-casinos-sources-sa...
3•tartoran•32m ago•0 comments

FAA's Smart AI System Fact Sheet [pdf]

https://www.faa.gov/newsroom/SMART_One-Pager.pdf
1•david_shaw•32m ago•0 comments

Agents: The New, New Kingmakers

https://redmonk.com/sogrady/2026/09/16/new-new-kingmakers/
1•mooreds•33m ago•0 comments

Why sovereign AI demands a tenancy model, not just geography

https://www.redhat.com/en/blog/datacenter-myth-why-sovereign-ai-demands-tenancy-model-not-just-ge...
1•mooreds•33m ago•0 comments
Open in hackernews

Show HN: Jsonnet implementation in Jsonnet

https://github.com/Duologic/jsonnet-in-jsonnet
1•Duologic•1y ago
I've written a Jsonnet interpreter in Jsonnet.

A few years ago I wrote a code generator for Jsonnet (crdsonnet [1]) and found templating insufficient. This lead me to create a JSON Schema for the language along with a library[2] that can manifest the expressions reliably. I was unaware that this was an intermediate representation (in the world of interpreters). Fun fact: while cdrsonnet uses astsonnet to generate code, astsonnet is partially generated by crdsonnet.

Last year I got curious and wrote a parser, first without a lexer (I didn't knew I needed it) and later with a lexer (Oh, did my code got way more manageable). The code gets parsed into this intermediate representation, with other words using JSON Schema as a type system for Jsonnet.

This year I got curious again and tried to execute the code from within Jsonnet as well, past weekend I finally reached a point where I could reliably execute most of the test cases from the go-jsonnet repository.

It was an interesting learning experience and it gave me a much deeper understanding of how programming languages work in general.

[1] https://github.com/crdsonnet/crdsonnet

[2] https://github.com/crdsonnet/astsonnet