frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Best API Documentation Tools

https://www.jamdesk.com/blog/best-api-documentation-tools
1•gbourne1•42s ago•0 comments

The UAW Is Leading the Push for Green Jobs in California

https://jacobin.com/2026/02/uaw-green-jobs-california-union/
1•PaulHoule•1m ago•0 comments

Utah's online porn tax proposal poses a major threat to civil liberties

https://www.techdirt.com/2026/03/06/utahs-proposal-to-tax-online-pornography-is-a-civil-liberties...
1•speckx•2m ago•0 comments

Show HN: How to Catch Documentation Drift with Claude Code and GitHub Actions

https://dosu.dev/blog/how-to-catch-documentation-drift-claude-code-github-actions
1•onlydole•3m ago•0 comments

Runtime observability and policy enforcement for AI coding agents

https://www.oculisecurity.com/
1•rellaElla•4m ago•0 comments

Wine 11.4 – Run Windows Applications on Linux, BSD, Solaris and macOS

https://www.winehq.org/announce/11.4
1•neustradamus•4m ago•0 comments

BlackRock $26B Private Credit Fund Limits Withdrawals

https://www.bloomberg.com/news/articles/2026-03-06/blackrock-s-26-billion-private-credit-fund-lim...
1•greesil•5m ago•1 comments

Dracarys

https://dracarys.robertborghesi.is/
1•darmensdf•5m ago•0 comments

Project Operational Autonomy: our agent-to-agent-future

https://pebblebed.com/blog/operational-autonomy
1•kmavm•5m ago•0 comments

China's 792M kWh compressed air energy station now operational

https://interestingengineering.com/energy/china-largest-compressed-air-energy-station-world
1•pseudolus•8m ago•0 comments

Are there any companies who are anti-AI?

1•anti-ai-dev•9m ago•0 comments

The Worst Acquisition in History, Again

https://www.profgmedia.com/p/the-worst-acquisition-in-history
1•JumpCrisscross•9m ago•0 comments

OpenPawz Conductor Protocol

https://github.com/OpenPawz/openpawz/blob/main/reference/conductor-protocol.mdx
1•gotham64•12m ago•1 comments

Show HN: Unread, turns your unread newsletters into a daily podcast

https://app.unread.live
1•benfosterdev•12m ago•0 comments

Show HN: See Your Money in 3D

https://moneyvisualiser.com
1•KhazP•12m ago•0 comments

Show HN: Verified n8n community node for Anytype

https://github.com/splch/n8n-nodes-anytype
1•splch•13m ago•0 comments

Claude Code vs. Codex (Nate B Jones) [video]

https://www.youtube.com/watch?v=09sFAO7pklo
1•JnBrymn•15m ago•0 comments

Show HN: Synclippy – Ephemeral rooms for sharing text or files

https://synclippy.ujjwalvivek.com
1•ujjwalvivek•15m ago•0 comments

PKGSmith

https://pkgsmith.app/
1•Fogh•17m ago•0 comments

Plan 9 from User Space

https://9fans.github.io/plan9port/
1•tosh•19m ago•0 comments

GPT-5.4 code-golfs GPT-2

https://twitter.com/hansonwng/status/2030000810894184808
1•tosh•19m ago•0 comments

Re-creating the complex cuisine of prehistoric Europeans

https://arstechnica.com/science/2026/03/recreating-the-complex-cuisine-of-prehistoric-europeans/
1•apollinaire•20m ago•0 comments

Oracle and OpenAI drop Texas data center expansion plan

https://www.reuters.com/business/oracle-openai-end-plans-expand-texas-data-center-site-bloomberg-...
2•speckx•20m ago•0 comments

Palera1n Jailbreak Compiled and Run on a Samsung Galaxy S3 (PostmarketOS, ARMv7)

https://github.com/noxbitx/s3ra1n/tree/main
2•noxbit•20m ago•0 comments

Eval awareness in Claude Opus 4.6's BrowseComp performance

https://www.anthropic.com/engineering/eval-awareness-browsecomp
1•gcampbell•21m ago•0 comments

Show HN: I built an international calling platform/Android App

https://voklit.app
1•ahmgeek•22m ago•1 comments

If flip-phones can make a comeback, can Flash do the same?

https://disassociated.com/flip-phones-comeback-can-flash/
1•speckx•22m ago•0 comments

An AI disaster is getting ever closer

https://www.economist.com/briefing/2026/03/05/an-ai-disaster-is-getting-ever-closer
3•bookofjoe•25m ago•1 comments

Ecological Imperialism

https://kschroeder.substack.com/p/my-library-ecological-imperialism
1•MaysonL•26m ago•0 comments

Python 'Chardet' Package Replaced with LLM-Generated Clone, Re-Licensed

https://developers.slashdot.org/story/26/03/06/1614252/python-chardet-package-replaced-with-llm-g...
1•jakobdabo•28m ago•0 comments
Open in hackernews

Show HN: Jsonnet implementation in Jsonnet

https://github.com/Duologic/jsonnet-in-jsonnet
1•Duologic•9mo 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