frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

LittleSwitch, my personnal router for Claude/Codex (Desktop/CLI/Cowork) on macOS

https://little-switch.alfredlabs.io
1•Manuf•1m ago•0 comments

A Modest Proposal

https://www.math.columbia.edu/~woit/wordpress/?p=15864
1•jjgreen•1m ago•0 comments

An alignment assessment of recent cybersecurity incidents

https://www.anthropic.com/research/alignment-assessment-cybersecurity-incidents
1•meetpateltech•2m ago•0 comments

(KV) Cache Rules Everything Around Me

https://www.completeskeptic.com/p/kv-cache-rules-everything-around
1•CompleteSkeptic•2m ago•0 comments

HSI agent 'directly involved with child exploitation cases' charged

https://www.theguardian.com/us-news/2026/sep/09/alabama-hsi-agent-charged
1•firefax•2m ago•0 comments

A small GitHub API change could make AI-slop moderation much easier

https://github.com/orgs/community/discussions/207369
2•nemesisdesign•4m ago•0 comments

TCS Industrial Autonomy and Engineering Lab – Lights-Out Factory

https://www.tcs.com/who-we-are/newsroom/press-release/tcs-launches-indias-first-lights-out-factor...
1•happy-go-lucky•4m ago•0 comments

Treating people like pawns builds brittle empires

https://yewjin.substack.com/p/treating-people-like-pawns-builds
2•fagnerbrack•4m ago•0 comments

Apple Unveils A20 Pro as First 2nm Smartphone Chip

https://www.macrumors.com/2026/09/09/apple-unveils-a20-pro-as-first-2nm-smartphone-chip/
1•newusertoday•5m ago•0 comments

Apple's Siri Recap Will Remember Your Conversations for You

https://mashable.com/tech/apple-siri-ai-conversation-recap-iphone-event-2026
1•ajg360•5m ago•1 comments

Show HN: Linefall, a drawing arcade with a serverless worldwide daily board

https://linefall.app/
1•2afer•5m ago•0 comments

Poll: Now vs. before NS, do you trust OpenAI with your work?

2•stochastimus•7m ago•1 comments

Folklore, GitHub and Vibes

https://ianmcnaughton.net/blog/folklore-github-and-vibes/
2•wc_nomad•10m ago•0 comments

Your Toothbrush Is a Computer. Are You Securing It Like One?

https://www.cybrsecmedia.com/your-toothbrush-is-a-computer-are-you-securing-it-like-one/
1•ilamont•10m ago•0 comments

What Is Math's Mysterious Langlands Program About?

https://www.quantamagazine.org/what-is-maths-mysterious-langlands-program-really-about-20260909/
1•digital55•11m ago•0 comments

1975 Banqiao Dam Failure

https://en.wikipedia.org/wiki/1975_Banqiao_Dam_failure
2•joebig•12m ago•0 comments

How we keep a noisy neighbor from starving your jobs at Inngest

https://www.inngest.com/blog/the-queue-is-the-easy-part
2•aldersondev•13m ago•0 comments

Contextify for Windows – Live Index of Your Claude Code/Codex History

https://contextify.sh/windows/
1•bredren•14m ago•1 comments

Responding to Claude's feedback prompts is opting-in for data sharing

https://privacy.claude.com/en/articles/10023580-is-my-data-used-for-model-training
1•andrew_eu•14m ago•1 comments

Neural Texture Compression for Three.js

https://three-ntc.ben3d.ca
3•bhouston•15m ago•0 comments

I Came, I Prompted, I Left Part 1: Building a Hypervisor for the MacBook Neo

https://codyho.dev/blog/hypervisor-macbook-neo/
5•ADevWithAnIdea•16m ago•0 comments

Floating nuclear power was a Russian curiosity.Now others want to give it a shot

https://bellona.org/news/nuclear-issues/2026-08-floating-nuclear-power-was-a-russian-curiosity-no...
3•Eridanus2•18m ago•0 comments

Procedural Graphs: Self-Evolving Execution Structures for LLM Agents

https://arxiv.org/abs/2609.09153
2•xnx•18m ago•0 comments

HFresh: Memory-Efficient Vector Search

https://weaviate.io/blog/hfresh
1•asdine•20m ago•0 comments

Go F Yourself Sama

https://twitter.com/BetterCallMedhi/status/2097472336257863722
3•andy99•20m ago•0 comments

No Big Deal

https://www.oliverburkeman.com/nobigdeal
1•Tomte•21m ago•0 comments

Doodle District

https://doodleshooter.vercel.app/
1•duck•22m ago•0 comments

Piracy Sites Disguise Video as Fonts to Abuse Cloudflare Caching

https://saimanish.com/blog/cloudflare-woff2-cache-abuse/
1•mertcangokgoz•22m ago•0 comments

Summit stunned as Philippine official receives Chinese note during speech

https://www.news.com.au/technology/innovation/military/incredible-moment-philippine-official-read...
3•Betelbuddy•25m ago•2 comments

MillenniumPrizeProblemBench

https://mppbench.com/
2•kelseyfrog•25m 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