frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Implausibility of Intelligence Explosion

https://medium.com/@francois.chollet/the-impossibility-of-intelligence-explosion-5be4a9eda6ec
1•maxall4•2m ago•0 comments

JFK Conspiracy Lite

https://yarchive.net/blog/jfk/
1•Tomte•3m ago•0 comments

Every Time Larry David Appeared on Seinfeld [video]

https://www.youtube.com/watch?v=L4wWE5r0sPE
1•tzury•3m ago•0 comments

METR: Funding Update

https://metr.org/blog/2026-08-14-funding-update/
1•tosh•5m ago•0 comments

The infrastructure quartermaster: inside a China-nexus state enablement model

https://www.lumen.com/blog/en-us/the-infrastructure-quartermaster-inside-a-china-nexus-state-enab...
1•pir8life4me•10m ago•0 comments

Neural Amp Modeler (Nam) Architecture 2 (A2)

https://www.tone3000.com/blog/introducing-neural-amp-modeler-nam-architecture-2-a2
1•mariuz•14m ago•0 comments

Show HN: RunCoder – A Coding Workspace for Android

https://play.google.com/store/apps/details?id=com.runcode.app&hl=en_US
1•harshal_shinde•18m ago•0 comments

Show HN: ScriptTap – no-root Android automation with an AI script contract

https://play.google.com/store/apps/details?id=com.scripttap&hl=en_US
1•Romka2x•19m ago•0 comments

America's long march toward Chinese-style surveillance state

https://www.ocregister.com/2026/08/14/americas-long-march-toward-chinese-style-surveillance-state/
3•pir8life4me•24m ago•0 comments

Palestinian woman and NBC News team attacked by Israeli settlers in West Bank

https://www.nbcnews.com/world/middle-east/palestinian-nbc-news-team-attacked-masked-israeli-settl...
13•hebelehubele•24m ago•0 comments

How to Build a Thousand-Year-Old Tree

https://www.noemamag.com/how-to-build-a-thousand-year-old-tree/
3•ostacke•31m ago•0 comments

Google: Lake Ontario/Lake America name change in the U.S. will appear in Maps

https://blog.google/products-and-platforms/products/maps/gnis-lake-ontario-lake-america-name-change/
13•lr0•32m ago•3 comments

UK Households can save as plug-in solar panels come to market

https://www.gov.uk/government/news/households-can-save-as-plug-in-solar-panels-come-to-market
3•bryanrasmussen•33m ago•0 comments

Veryfront Code – Full-Stack AI Apps and Agents with TypeScript and React

https://github.com/veryfront/veryfront-code
2•kojiwakayama•38m ago•0 comments

Have We Seen an Acceleration in Discoveries?

https://metr.org/notes/2026-08-14-llm-contribution-to-discoveries/
2•tosh•38m ago•0 comments

Show HN: Masareef – Android expense tracker that reads bank alerts on-device

https://play.google.com/store/apps/details?id=com.mohamedgado.masareef&hl=en_US
2•mgado•40m ago•0 comments

Show HN: N8n community node for Shotium – screenshot and OG image API

https://github.com/shotium/n8n-nodes-shotium
2•foodpad•41m ago•0 comments

X Window System at 40

https://blog.dshr.org/2024/07/x-window-system-at-40.html
4•mariuz•42m ago•0 comments

Selling Out

https://www.seangoedecke.com/selling-out/
4•johnny313•47m ago•0 comments

PLCBench: Can Autonomous LLM Agents Turn PLC Access into Sustained Physical

https://arxiv.org/abs/2608.26882
2•sbulaev•51m ago•0 comments

Mac extension (panel/pill/nub) to show LLM usage

https://github.com/abhayKashyap03/usage-notch
2•abhaykashyap03•52m ago•0 comments

Breaking Claude Code Opus 5 Auto Mode

https://embracethered.com/blog/posts/2026/breaking-claude-code-opus-5-and-automode/
4•jaksa•54m ago•1 comments

Show HN: A comic/webtoon reader with CSS scroll-snap, vanilla JavaScript

https://jazzy-torrone-fd91d9.netlify.app/
2•EditArteSoy•54m ago•0 comments

Psychedelics align brain activity with context

https://www.nature.com/articles/s41586-026-10910-z
3•jbotz•54m ago•0 comments

The Internet Archive's Vintage AI Collection

https://archive.org/details/vintageai
4•OuterVale•57m ago•0 comments

There are no more moats anymore

https://twitter.com/auren/status/2093826482384589218
3•tosh•58m ago•0 comments

Title: Show HN: I turned my homelab GPU into a paid API on Base mainnet

https://github.com/Runuk/argo-x402-reference
2•ru_nuk_01•1h ago•0 comments

ECMAScript spec proposal for ShadowRealm API

https://github.com/tc39/proposal-shadowrealm
2•tosh•1h ago•0 comments

Show HN: Open source dataset cleaner for JSONL outputs

https://pypi.org/project/dataset-cleaner-cli/
2•Galvatar•1h ago•0 comments

A local-first workspace for documents, tasks and meetings on macOS

https://github.com/bitwize-ai/Logue
4•westerosweb•1h 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