frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: One-click fork of "Everything Claude Code" onto an isolated microVM

https://www.jurniti.com/templates/ecc
1•shving90•1m ago•0 comments

Trillions of dollars spent just to work on customer services?

1•YihaoZhang•2m ago•0 comments

Capitol Alpha Machine – interactive viz of congressional stock trades

https://capitolalpha.app/
1•sylvainbe•6m ago•0 comments

GCP IAM Authorization Bypass

https://olearysec.com/research/config-connector-authorization-bypass/
3•sanbor•6m ago•0 comments

Show HN: Avera – a deterministic check that proves no regression was introduced

https://github.com/tc7kxsszs5-cloud/avera
1•kiku79•6m ago•0 comments

Build yor form back end infrastrture under 30sec

1•unaisshemim•8m ago•0 comments

Elysia Marginata

https://en.wikipedia.org/wiki/Elysia_marginata
1•ZeljkoS•10m ago•1 comments

RemotePower – self-hosted fleet monitoring with built-in vulnerability scanning

https://github.com/tyxak/remotepower
1•tyxak•15m ago•0 comments

Show HN: I was drowning in browser tabs, so I built this

https://microsoftedge.microsoft.com/addons/detail/gopeek/ffaeanmhghmohbponokefmbhfkkomnmk
3•formit34•15m ago•1 comments

Icon.museum – A curated gallery of app icon design

https://icon.museum
1•akashwadhwani35•15m ago•0 comments

Impossible Challenge

https://itch.io/jam/impossible-challenge
1•alisio85•16m ago•0 comments

Terminal-Bench Challenges: long-horizon, token-intensive, single-task benchmarks

https://www.tbench.ai/news/terminal-bench-challenges
1•matt_d•16m ago•0 comments

High-performance code intelligence MCP server

https://github.com/DeusData/codebase-memory-mcp
1•giamma•16m ago•1 comments

Show HN: Redteam:If you are using more than 2 coding agents

https://github.com/AscendyProject/redteam
1•rkdgh19•21m ago•0 comments

Usbliter8 an A12/A13 SecureROM Exploit

https://ps.tc/pages/blog-usbliter8.html
2•Cider9986•23m ago•0 comments

Ukrainian drone makers target Asia as Taiwan tensions spur demand

https://www.reuters.com/world/china/ukrainian-drone-makers-target-asia-taiwan-tensions-spur-deman...
1•JumpCrisscross•23m ago•0 comments

HN with pics – a visual hcker.news reader

https://hn.is-ai-good-yet.com/
1•ilyaizen•28m ago•0 comments

Dana Scott: Lambda Calculus, Forcing and the Foundations of Math: #14 aboutlogic [video]

https://www.youtube.com/watch?v=opLbbZ-_AWE
1•matt_d•30m ago•0 comments

Prodigy: AI Employees

https://docs.google.com/presentation/d/1aldEHGR_1Hv_F0UlTuQIL8mXhsw5s5VzuuPcgKV5czY/edit?usp=sharing
2•samayashar•34m ago•2 comments

We built a status page service on Cloudflare

https://ampliflare.com/blog/status-page-cloudflare-architecture/
1•powerpurple•36m ago•1 comments

I tested Gemma4 12B on my 8GB GPU, now I don't want to go back to smaller models

https://www.xda-developers.com/tested-google-gemma-4-12b-on-8gb-gpu-and-dont-want-to-go-back-to-s...
1•theanonymousone•37m ago•0 comments

Make-work and Sub-subsistence work

https://wilsoniumite.com/2026/06/19/make-work-and-sub-subsistence-work/
1•Wilsoniumite•38m ago•0 comments

'We created a monster': companies rein in AI usage as costs strain budgets

https://www.ft.com/content/1d37cc08-e0aa-45a4-a45d-4ad282529314
2•JumpCrisscross•38m ago•0 comments

One Model Won't Save You: How We Built Our AI Stack

https://www.xelerate.tech/one-model-wont-save-you/
1•pedrocha•40m ago•0 comments

Mantyx – Batteries Included Managed Agent Runtime

https://mantyx.io/
1•mantyx•40m ago•0 comments

Show HN: Write SaaS apps where users control where their data is stored

https://github.com/wolfoo2931/linkedrecords/
1•WolfOliver•46m ago•0 comments

Disney+ Is Down

https://mashable.com/tech/disney-plus-down-outage
2•01-_-•47m ago•0 comments

I Replaced My Custom Next.js Portfolio with a Markdown First Site Engine

https://muhammadhaseeb.me/blog/why-koji
1•iamhaseeb•47m ago•0 comments

Contributor Poker and Zig's AI Ban

https://kristoff.it/blog/contributor-poker-and-ai/
2•birdculture•52m ago•0 comments

It looks like Elon Musk has a Giganormous tax bill coming

https://bsky.app/profile/bgrahamdisciple.bsky.social/post/3mokv2qdksc2m
2•doener•56m ago•2 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