frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Investors Whose SpaceX Shares Vanished Before They Could Cash In

https://www.wsj.com/finance/stocks/spacex-ipo-spv-investors-2698a174
1•JumpCrisscross•3m ago•0 comments

AI agents that inherit the user's permissions, not API keys

https://blog.cloudflare.com/how-we-use-ai-with-cloudflare-os/
1•thoughtpeddler•3m ago•0 comments

Industrial Revolution to AI tech upheavals: The Catholic principle guiding popes

https://theconversation.com/the-catholic-principle-guiding-popes-through-tech-upheavals-from-the-...
1•1659447091•7m ago•0 comments

A composer published a paper in physics. His lack of credentials drew criticism

https://retractionwatch.com/2026/08/05/a-composer-published-a-paper-on-theoretical-physics-his-la...
1•unprovable•10m ago•1 comments

China's EV Boom Is Quietly Undermining Oil's Biggest Chokepoint

https://oilprice.com/Energy/Energy-General/Chinas-EV-Boom-Is-Quietly-Undermining-Oils-Biggest-Cho...
1•toomuchtodo•11m ago•0 comments

Country and State Maps in LOTR Style

https://lordofmaps.com/
1•silver92bullet•17m ago•0 comments

The Once-Shameless President Is Deeply Embarrassed

https://www.theatlantic.com/politics/2026/08/trump-humiliated-iran-reflecting-pool/688184/
4•petethomas•18m ago•0 comments

How to Install Python3.14 from source on Ubuntu 26.04

https://jamesoclaire.com/2026/08/06/how-to-install-python3-14-from-source-on-ubuntu-26-04/
1•ddxv•18m ago•2 comments

Thomson Reuters Employees Demand That ICE "Leave Our Cities"

https://www.thenation.com/article/politics/thomson-reuters-ice-immigration-voting-data/
1•petethomas•20m ago•0 comments

OpenAI models shared hacking tips on a messaging board before HuggingFace breach

https://www.politico.com/news/2026/08/05/openai-models-shared-hacking-tips-secret-messaging-board...
2•0in•21m ago•0 comments

Unprecedented images may explain one of greatest mysteries of the sun

https://www.theguardian.com/science/2026/aug/05/unprecedented-images-may-explain-one-of-greatest-...
3•colinprince•24m ago•0 comments

Investors are having doubts about Elon Musk's grandiose ambitions

https://economist.com/business/2026/08/05/investors-are-having-doubts-about-elon-musks-grandiose-...
9•andsoitis•26m ago•4 comments

To Predict the Next Token

https://sanghoon.io/journal/2026-08-04-distillation
1•sanghoonio•26m ago•0 comments

Codex Users Are Losing Banked Rate Limit Resets to a Quiet 30 Day Clock

https://startupfortune.com/codex-users-are-losing-banked-rate-limit-resets-to-a-quiet-30-day-clock/
2•newsomix9xl•26m ago•1 comments

Esp32pin.com: a pinout reference for ESP32 series

https://esp32pin.com/
2•sohkamyung•26m ago•0 comments

Ask HN: Was preamble size a red herring? Cache churn vs. harness costs

1•Marvin_RunAI•27m ago•0 comments

Show HN: Python Concurrency Testing with Frontrun

https://github.com/lucaswiman/frontrun
1•lucaswiman•29m ago•1 comments

Disagreements about AI are usually disagreements about future AI capabilities

https://thezvi.substack.com/p/the-three-ai-pills
2•maxutility•29m ago•0 comments

Show HN: Mirafold – Generative UI for Claude Code, Codex, and Gemini CLI

https://mirafold.com/
1•kserrec•30m ago•0 comments

President Donald J. Trump, an individual, Plaintiff, vs. BBC [pdf]

https://storage.courtlistener.com/recap/gov.uscourts.flsd.703382/gov.uscourts.flsd.703382.106.0.pdf
3•petethomas•30m ago•0 comments

Data centers show their primary colors

https://www.politico.com/newsletters/power-switch/2026/08/05/data-centers-show-their-primary-colo...
2•mapping365•32m ago•0 comments

Nashville uses eminent domain to block data center near zoo

https://www.costar.com/article/970809918/nashville-council-approves-eminent-domain-action-to-halt...
11•mapping365•34m ago•1 comments

AOHP: OS-Level Agent Harness for Personalized, Efficient and Secure Interaction

https://arxiv.org/abs/2606.23449
1•zhaoshanhui•35m ago•0 comments

Reading an Abstract Like a Skeptic

https://scrollpaper.com/blog/reading-an-abstract-like-a-skeptic
1•JayS3•38m ago•0 comments

AI Hacking, Fearmongering and Prometheus

https://askmike.org/articles/ai-hacking-fearmongering-prometheus/
2•askmike•41m ago•0 comments

When Deny Doesn't Win

https://blogs.zethian.com/when-deny-doesnt-win
1•sixthsense•42m ago•0 comments

Meta AI agent hacked external company during testing

https://www.abc.net.au/news/2026-08-06/meta-ai-reports-agent-hacked-external-company-during-testi...
2•Khaine•43m ago•0 comments

What if AI agents shared solutions across users?

1•markmatsushima•45m ago•0 comments

I Didn't Realize How Addicted I Was to My Phone–Until I Went to Prison

https://www.wsj.com/lifestyle/phone-screen-time-prison-pg-sittenfeld-8c3b186b
4•fortran77•53m ago•1 comments

Alwide – An Open-Source Lightweight TUI IDE in C with Mouse, LSP and Tree-sitter

https://github.com/arnauda-gh/Alwide
2•peter_d_sherman•57m 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