frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Anyone Here Work for Google? Specifically on the Google SMB Newsletter?

1•VladVladikoff•18s ago•0 comments

Trump administration asks to hold OpenAI's next model

https://www.axios.com/2026/06/25/trump-administration-openai-gpt-model-release
1•dramebaaz•1m ago•0 comments

Show HN: Replyt – Track which Reddit discussions become customers

https://replyt.co
1•hectorguedea•2m ago•0 comments

Ask HN: Norway bans AI in elementary schools

2•mellosty•5m ago•0 comments

This isn't a PPT. Repo speaks

1•hblqzj•9m ago•0 comments

Show HN: Pw-whip, a bridge between PipeWire and WHIP

https://github.com/jech/pw-whip/
1•jech•11m ago•0 comments

Poll

2•krapp•12m ago•2 comments

Deep Dive into IBM's new NanoStack 0.7nm Process Node for Chips – 666 MTr/mm2

https://morethanmoore.substack.com/p/ibms-announces-07nm-process-node
2•IanCutress•13m ago•0 comments

Hollywood-backed nonprofit launches machine-readable AI consent registry

https://rslmedia.org/
1•navs•15m ago•0 comments

The Garbage Collection Handbook: The Art of Automatic Memory Management (2nd Ed)

https://gchandbook.org/
2•teleforce•19m ago•1 comments

AI doesn't take jobs. It takes tasks

https://www.nextgig.rocks/dash/how-ai-changes-jobs
2•poseidon_sg•21m ago•0 comments

How do you tackle a backlog of deferred maintenance you didn't create?

1•zeelex•21m ago•0 comments

Elasto Mania Ported to WebAssembly

https://joshumax.github.io/elma-web/
1•joshumax•24m ago•0 comments

Show HN: HoprLabs – a Python lab for prototyping AI math ideas

https://github.com/TangibleResearch/HoprLabs
2•reboy•27m ago•0 comments

Oracle workforce shrinks by about 21,000 employees amid AI adoption

https://finance.yahoo.com/technology/ai/articles/oracle-workforce-shrinks-13-204431510.html
1•akyuu•30m ago•0 comments

Ford could bring F1-inspired 'skunkworks' EVs to Europe

https://www.autocar.co.uk/car-news/electric-cars/ford-could-bring-f1-inspired-skunkworks-evs-europe
2•breve•31m ago•0 comments

Show HN: DeepSeek Flash inverted the economics of agent products

https://www.rtrvr.ai/blog/code-as-plan-deepseek-flash-text-only-browser-agent
6•arjunchint•33m ago•0 comments

Om Malik

https://en.wikipedia.org/wiki/Om_Malik
1•emot•35m ago•0 comments

California AI Unemployment Tracker

https://capolicylab.org/california-ai-unemployment-tracker/
1•toomuchtodo•36m ago•0 comments

Liveness Proofs in Veil, Part I: The First Step

https://proofsandintuitions.net/2026/06/24/liveness-proofs-in-veil-part-1/
1•matt_d•37m ago•0 comments

New macOS malware embeds fake errors to confuse AI analysis tools

https://www.bleepingcomputer.com/news/security/new-macos-malware-embeds-fake-errors-to-confuse-ai...
1•thewebguyd•37m ago•0 comments

Data Science Weekly – Issue 657

https://datascienceweekly.substack.com/p/data-science-weekly-issue-657
1•sebg•37m ago•0 comments

The Sunscreen Result No One Wants to Talk About

https://charlottekupewasserphd.substack.com/p/the-sunscreen-result-no-one-wants
3•olalonde•37m ago•1 comments

Powercode

https://codeberg.org/slaubenberger/Powercode
3•Atariman•39m ago•0 comments

OpenAI will delay GPT-5.6 after Trump administration request

https://www.theverge.com/ai-artificial-intelligence/957372/openai-will-delay-gpt-5-6-after-trump-...
9•tanelpoder•40m ago•0 comments

Where should 'Skip to main content' links go? (2025)

https://ashleemboyer.com/blog/where-should-skip-to-main-content-links-go/
1•mooreds•43m ago•0 comments

Export Claude.ai chats, artifacts, and visible thinking

https://github.com/lekandigital/claude-export-hub
1•lekan_digital•44m ago•0 comments

Ask HN: Would you advice someone to study CS in 2026?

1•Chipatama90•44m ago•0 comments

Can you spot the expensive AI?

https://www.theblindtest.io/
1•mfiguiere•44m ago•0 comments

Trump admin asks OpenAI to stagger the release of its new model

https://www.reuters.com/business/trump-administration-asks-openai-stagger-release-new-model-infor...
5•petethomas•44m 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