frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

For those into GenAI entertainment, I am excited about this hackathon

1•yasmeenfaycurry•50s ago•0 comments

Claude Roulette – chat with strangers while you slop

https://tomjohnell.com/claude-roulette-chat-with-strangers-while-you-slop/
1•tjohnell•2m ago•0 comments

GM's New V8 Trucks Ditch Oil Dipstick for Digital Gauge

https://www.thedrive.com/news/gms-new-v8-trucks-ditch-oil-dipstick-for-digital-gauge
1•cf100clunk•2m ago•0 comments

What if social media isn't hurting kids?

https://www.theverge.com/policy/995704/peter-gray-restoring-childhood-jonathan-haidt
2•pavel_lishin•5m ago•0 comments

Local LLM engine where a tool call cut by the token limit still parses

https://xyntetik.com/runner/truncation-safe-tool-calling/
2•JoakimPalm-Zen•7m ago•0 comments

BAK/SPC

https://bak.spc.org/index.cgi
2•reconnecting•8m ago•0 comments

Aqueduct Water Risk Atlas

https://www.wri.org/applications/aqueduct/water-risk-atlas/#/?advanced=false&basemap=hydro&indica...
2•handfuloflight•9m ago•0 comments

AI's Real Impact in Telecom: takeaways from a recent panel discussion

https://www.windriver.com/blog/AIs-Real-Impact-in-Telecom
2•ohjeez•10m ago•0 comments

A call for a pause – Vivek Srikumar

https://svivek.com/writing/2026-09-13-a-call-for-a-pause.html
4•fooker•11m ago•0 comments

Iroh on Rp2350

https://www.iroh.computer/blog/iroh-on-rp2350
3•karissa•11m ago•0 comments

Fine-Structure Constant

https://en.wikipedia.org/wiki/Fine-structure_constant
2•binyu•15m ago•0 comments

Prompt an agent to customize Pebble OS, install it on your watch via mobile app

https://twitter.com/ericmigi/status/2099966805448282316
2•tech234a•15m ago•0 comments

German Rheinmetall open-sources its Battlesuite connected weapon system protcol

https://rheinmetall.github.io/onboardapi-documentation/9.10.0/index.html
10•summarity•17m ago•0 comments

Those Viral Bodega Peptides Aren't Peptides

https://www.wired.com/story/viral-bodega-peptides-tests-show-they-arent-peptides-oops/
1•Anon84•17m ago•0 comments

Ørsted's needle (1820): the first force ever seen to act sideways [video]

https://www.youtube.com/watch?v=_uALsDd9DUY
2•wallaceeh•18m ago•0 comments

Appzapper 3000: The uninstaller Apple forgot

https://appzapper.com/
1•hakkikonu•19m ago•0 comments

Intel reportedly cans 12Xe option for Nova Lake-S desktop

https://www.tomshardware.com/pc-components/cpus/intel-reportedly-cans-12xe-option-for-nova-lake-s...
1•rbanffy•20m ago•0 comments

Astera Labs Releases Leo 2 CXL Memory Controllers and Leo X Controller

https://www.servethehome.com/astera-labs-releases-leo-2-cxl-memory-controllers-and-leo-x-controll...
1•rbanffy•21m ago•0 comments

Typesafe AI

https://typesafe.ai/
1•FinnLobsien•22m ago•0 comments

A majority of settlements in parts of West Africa now have moats and walls

https://anl.geog.ufl.edu/fortified-landscapes/
1•OgsyedIE•22m ago•0 comments

Enclosure by Good Intentions

https://gaggl.com/blogs/2026-09-05-enclosure-by-good-intentions/
1•supernihil•25m ago•1 comments

Build Your Own Harness for Fun and Profit

https://charlesholloway.io/talks/build-your-own-harness/
3•mooreds•25m ago•0 comments

Micron Shows Off 512GB DDR5 Rdimm: 12TB per Dual-Socket Server at 9,200 MT/S

https://www.storagereview.com/news/micron-shows-a-512gb-ddr5-rdimm-12tb-per-dual-socket-server-at...
3•rbanffy•26m ago•0 comments

The White Revolution

https://en.wikipedia.org/wiki/White_revolution_(India)
2•ViktorRay•26m ago•0 comments

Jean-Pierre Serre is 100 years old today

https://mathshistory.st-andrews.ac.uk/Biographies/Serre/
19•jzox•27m ago•0 comments

Iran war has cost on average $246M per day in its first five months

https://www.cnbc.com/2026/09/15/cbo-iran-war-cost-pentagon-weapons.html
16•onza•28m ago•4 comments

Migrating 100K lines of JavaScript to TSX

https://zergai.com/blog/durable-javascript-to-typescript-migration
2•idanb•31m ago•0 comments

My temporary PHP fix from 2014 has nearly 20M installs. Today I'm deprecating it

https://jakeasmith.com/blog/http-build-url/
3•jakeasmith•31m ago•1 comments

Open-Source Skill Makes Claude Code 38% Cheaper and 38% Faster on Small Projects

https://vmysla.substack.com/p/product-traceability-20-makes-claude
1•vmysla•32m ago•0 comments

AI Agent Whistleblower Hotline – Ryan Greenblatt

https://hotline.ryan-g.ai/
4•kerim-ca•35m ago•1 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