frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: ClawMoat – Open-source runtime security for AI agents (zero deps, <1ms)

https://github.com/darfaz/clawmoat
1•ildar•1m ago•0 comments

North American Computational Linguistics Open Competition

https://naclo.org/practice.php
2•Antibabelic•4m ago•0 comments

DSGym: A holistic framework for evaluating and training data science agents

https://www.together.ai/blog/dsgym
1•roody_wurlitzer•5m ago•0 comments

Show HN: crai – Get notified when your AI CLI finishes thinking

https://github.com/turtlekazu/crai
1•turtlekazu•6m ago•0 comments

Show HN: What data brokers sell your profile for vs. what ads earn from you

https://data.attentionworth.com/
1•withshakespeare•8m ago•1 comments

Claude Code Remote Control

https://code.claude.com/docs/en/remote-control
1•empressplay•9m ago•0 comments

First British baby born using transplanted womb from dead donor

https://www.bbc.com/news/articles/cvg53xp5857o
1•breve•13m ago•0 comments

Show HN: I tested 50 AI video APIs and built a comparison platform

https://findaivideo.com
2•ludydev•17m ago•0 comments

Socialist Excellence in New York City

https://pluralistic.net/2026/02/24/mamdani-thought/#public-excellence
2•mrkpdl•18m ago•0 comments

Show HN: Workz – Zoxide for Git worktrees (auto node_modules and .env, AI-ready)

https://github.com/rohansx/workz
1•rohansx•19m ago•0 comments

Hatsune Miku Meets Clojure

https://old.reddit.com/r/Clojure/comments/1rck4tr/hatsune_miku_meets_clojure/
1•adityaathalye•20m ago•0 comments

MoltMemory – AI agent memory for Moltbook

https://github.com/ubgb/moltmemory
2•ubgbclaw1•21m ago•2 comments

Letters to a Young Creator

https://letters.stevejobsarchive.com/
2•dvrp•22m ago•0 comments

Strategic choices: When both options are good

https://longform.asmartbear.com/strategic-choices/
1•doppp•23m ago•0 comments

Ask HN: Seeking 5 alpha testers for Sovereign Stack, an AGPLv3 bare-metal NAS OS

1•csomaratne•24m ago•1 comments

Show HN: AgentVoice – Get feedback from AI to improve your MCP

https://voiceofagents.com
1•KenRuf•26m ago•0 comments

How Will OpenAI Compete?

https://www.ben-evans.com/benedictevans/2026/2/19/how-will-openai-compete-nkg2x
1•brettcvz•28m ago•0 comments

Hello – ProofOfConcept

https://poc.bcachefs.org/blog/hello.html
1•Antibabelic•28m ago•0 comments

"Willy's Chocolate Experience" (2024)

https://web.archive.org/web/20240301031453/https://willyschocolateexperience.com/index.html
1•nxobject•29m ago•0 comments

Ask HN: Is it worth doing a startup?

1•zkmon•29m ago•0 comments

Cache-aware prefill–decode disaggregation for 40% faster LLM serving

https://www.together.ai/blog/cache-aware-disaggregated-inference
1•roody_wurlitzer•35m ago•0 comments

Show HN: claude-env – Manage multiple accounts for Claude-code

https://github.com/solomon-b/claude-env
2•solomonb•37m ago•1 comments

Show HN: Sopho - Open Source Business Intelligence Platform

https://github.com/sopho-tech/sopho
2•athultr1997•41m ago•0 comments

Google RankBrain: How Google's AI Changed the Rules of Search

https://repuai.live/en/blog/google-rank-brain
1•bioneisme•43m ago•0 comments

Japan aims for world first in space-based solar power

https://www.asahi.com/ajw/articles/16293144
1•BaudouinVH•44m ago•1 comments

Find where your face appears online

https://eyematch.ai/
2•anetagro•44m ago•1 comments

Show HN: Turn Instagram and TikTok workouts into executable gym routines

1•chetansorted•46m ago•0 comments

The command line didn't die. It was waiting

https://getcoai.com/article/the-command-line-didnt-die-it-was-waiting/
1•djabatt•46m ago•0 comments

Ed Zitron loses his mind annotating an AI doomer macro memo

https://www.dropbox.com/scl/fi/1p1n0y1ip48ianok9dvbp/Annotation-The-Global-Intelligence-Crisis.pd...
2•ossa-ma•46m ago•0 comments

Show HN: PickOrCraft – AI photo studio, train your model, any aesthetic

https://www.pickorcraft.com/
1•yaswanthadi•48m 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