frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Local TUI issue board for agentic workflows with time travel, backed by Git

https://twitter.com/ljnatan/status/2094842152924623007
1•samuell•41s ago•0 comments

Unlocking Lossless Speedups in LLMs via Discrete Diffusion

https://github.com/ifm-ai/uno
1•Bluestein•55s ago•0 comments

Responsibility means treating people like tools

https://www.seangoedecke.com/radical-responsibility-means-treating-people-like-tools/
1•Brajeshwar•1m ago•0 comments

Computers Are Bad: A newsletter

https://computer.rip/
1•CharlesW•3m ago•0 comments

Show HN: RAII and It's Architecture in C++

https://archetechmes.vercel.app/blog/raii-architecture
1•rzwsan•4m ago•0 comments

Headroom: Save Tokens from Reversible Compression

https://github.com/headroomlabs-ai/headroom
1•ghostoftiber•5m ago•0 comments

Language Models Can Control Their Own Attention

https://arxiv.org/abs/2609.02737
1•Anon84•5m ago•0 comments

Leading Theory for How Life on Earth Began Is 'Highly Unlikely'

https://www.sciencealert.com/leading-theory-for-how-life-on-earth-began-is-highly-unlikely-says-c...
1•jandrewrogers•5m ago•0 comments

You probably don't want to fine-tune

https://simonpcouch.com/blog/2026-09-03-fine-tune/
1•simonpcouch•5m ago•0 comments

LLMs can't jump – Tom Zahavy [pdf]

https://www.tomzahavy.com/files/llms-cant-jump.pdf
1•the-mitr•6m ago•0 comments

Show HN: Clustta – Open-source version control for creative work

https://clustta.com/
1•taiwofolu•7m ago•0 comments

Ask HN: Do all of you use Cloudflare for preventing DDoS, Bot and more attacks?

1•skwasimin•7m ago•0 comments

Norway's $2T sovereign fund proposes deep cuts to US Treasury holdings

https://www.reuters.com/business/norways-2-trillion-sovereign-fund-proposes-deep-cuts-us-treasury...
5•akyuu•8m ago•1 comments

Report: How developers react to AI-scented blog posts

https://writethatblog.substack.com/p/dev-reaction-to-ai-blog-posts
2•CursedSilicon•8m ago•0 comments

The Texas Experiment

https://www.ft.com/content/fff531fc-988c-4016-9b5b-25f2274f4d47
1•JumpCrisscross•9m ago•0 comments

Show HN: Unofficial 3DS Port of F-Zero X Written by Claude Code

https://cruxxxxxx.github.io/gdx-3ds/postmortem/index.html
1•coffeesoda•9m ago•0 comments

Billionaires Build (2020)

https://paulgraham.com/ace.html
1•tosh•9m ago•0 comments

PostgreSQL 19 connects the dots with standardized graph queries

https://www.theregister.com/databases/2026/09/04/postgresql-19-connects-the-dots-with-standardize...
1•jjgreen•10m ago•0 comments

Defining Culture and Its Spread

https://michaelgv.uk/posts/2026/08/what-culture-is-and-how-it-spreads/
2•NesquikMike•10m ago•0 comments

Own encrypted cloud storage without another monthly bill

https://perma.sh
2•bkatz1234•11m ago•0 comments

Independent investigation of Hugging Face incident - METR

https://metr.org/blog/2026-08-26-openai-hugging-face-incident-investigation/
2•Dangeranger•13m ago•0 comments

Amazon Achieves Enshittification Inception

https://pluralistic.net/2026/09/04/cheating-at-fraud/
1•hn_acker•13m ago•0 comments

1,200 AIs discovered a secret group chat

https://textlog.cc/post/3170
2•stagas•14m ago•0 comments

Show HN: Less-sheet – A minimal but fast CSV viewer

https://te-x.github.io/less-sheet/
1•te-x•14m ago•0 comments

Show HN: Give every agent the right data, access and context to get work done

https://lanes.sh/showcase/agentic-fleet
1•s-xyz•14m ago•0 comments

Unplug America – Canadian tech alternatives

https://engageq.notion.site/unplug-full
1•HotGarbage•15m ago•0 comments

The Second Bitter Lesson

https://twitter.com/alexvoica/status/2095882699542032653
2•alexvoica•16m ago•0 comments

Solution to Jane Street ASIC Reverse Engineering Challenge

https://559b81dc.ht-ml.app/
1•nsmith22•19m ago•0 comments

AI coding agent PR merge rates: Claude 84%, Codex 74%, Devin 43%, humans 85%

https://arxiv.org/abs/2607.21832
1•d-yoda•19m ago•0 comments

Fluxion: A Propagator-Based Reactive Web UI Framework in Common Lisp

https://glenneth.org/content/posts/2026-04-25-fluxion-reactive-web-ui-common-lisp.html
1•tmtvl•21m 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