frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Arno's Engram Keyboard Layouts

https://github.com/binarybottle/engram
1•so-cal-schemer•1m ago•1 comments

Rust Shined over Python for My CLI Tool

https://smiling.dev/blog/rust-shined-over-python-for-my-cli-tool/
1•vinhnx•2m ago•0 comments

Companies That Should Exist

https://anastasiagamick.substack.com/p/companies-that-should-exist
1•paulpauper•3m ago•0 comments

How Does AI Distribute the Pie? Large Language Models and the Ultimatum Game

https://www.nber.org/papers/w34919
1•paulpauper•3m ago•0 comments

Buying Back Our Slack

https://www.seeingthesystem.com/p/buying-back-our-slack
1•paulpauper•4m ago•0 comments

Agentic AI: Workflows vs. Agents

https://www.youtube.com/watch?v=Qd6anWv0mv0
1•Brysonbw•4m ago•0 comments

MacBook Neo Teardown [video]

https://www.youtube.com/watch?v=PbPCGqoBB4Y
1•Lwrless•4m ago•0 comments

Trump now Selling National Security Briefing Membership

https://www.cnn.com/2026/03/13/politics/trump-fundraise-email-soldier
2•mandeepj•6m ago•0 comments

Big tech engineers need big egos

https://www.seangoedecke.com/big-tech-needs-big-egos/
1•jnord•7m ago•0 comments

Void – Ship Vite apps at warp speed

https://void.cloud
1•todotask2•10m ago•0 comments

1997 Kyl–Bingaman Amendment prohibits high res satellite imagery of Israel

https://en.wikipedia.org/wiki/Kyl%E2%80%93Bingaman_Amendment
1•spaghetdefects•11m ago•0 comments

Show HN: Paw-proxy – Named HTTPS domains for every local dev server

https://alexcatdad.github.io/paw-proxy/
1•alex_tc•17m ago•0 comments

Show HN: What agentic collaborative pentesting looks like

https://www.youtube.com/watch?v=PU5BicXMiio
1•integsec•17m ago•0 comments

JPEG Compression

https://www.sophielwang.com/blog/jpeg
2•vinhnx•17m ago•0 comments

Want to hack your body with peptides? If only the science agreed

https://www.economist.com/science-and-technology/2026/03/11/want-to-hack-your-body-with-peptides-...
2•andsoitis•22m ago•0 comments

Biomass-based furan epoxies with high-performance and closed-loop recyclability

https://www.sciencedirect.com/science/article/pii/S1359836825011722
2•PaulHoule•24m ago•0 comments

US withdraws draft rule that called for global AIchip permits

https://www.bloomberg.com/news/articles/2026-03-14/us-withdraws-draft-rule-that-called-for-global...
2•htrp•25m ago•0 comments

Security Layer for Claude Code

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

Ask HN: Why can't we just make more RAM?

4•chatmasta•28m ago•4 comments

TB Eradicator: Space Invaders but the Enemies Are TB Bacteria

https://tberadicator.com
2•YossarianFrPrez•29m ago•0 comments

An investigation of the forces behind the age-verification bills

https://lwn.net/Articles/1062779/
4•pabs3•30m ago•0 comments

Climate change is slowing Earth's spin at unprecedented rate

https://phys.org/news/2026-03-climate-earth-unprecedented-million-years.html
4•layer8•30m ago•1 comments

District denies enrollment to child based on license plate reader data

https://www.theregister.com/2026/03/12/district_denies_enrollment_to_child/
4•goplayoutside•31m ago•1 comments

Aether Engine: Coupled multiphysics for photonic ICs under extreme environments

https://github.com/venticedlatte/aether-engine/blob/main/README.md
2•ventiproject•31m ago•0 comments

MiniMax M2.5 is trained by Claude Opus 4.6?

2•Orellius•32m ago•0 comments

Meta planning layoffs as AI costs mount

https://www.reuters.com/business/world-at-work/meta-planning-sweeping-layoffs-ai-costs-mount-2026...
10•Aboutplants•36m ago•2 comments

Adobe's Statement Regarding the Department of Justice Settlement

https://news.adobe.com/news/2026/03/adobe-statement
1•coolandsmartrr•36m ago•0 comments

Institutional AI vs. Individual AI

https://www.a16z.news/p/institutional-ai-vs-individual-ai
2•gmays•43m ago•0 comments

Volkswagen's first tailored EV rolls out as it retakes the top spot in China

https://electrek.co/2026/03/13/volkswagens-first-custom-ev-rolls-out-after-taking-top-spot-in-china/
2•breve•48m ago•0 comments

AutoContext: closed-loop system for improving agent behavior over repeated runs

https://github.com/greyhaven-ai/autocontext
1•frozenseven•53m 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