frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Shepherd Model Gateway – Model-routing gateway for LLM deployments

https://github.com/lightseekorg/smg
1•rekl•6m ago•0 comments

Your GPS Is Lying to You

https://medium.com/@rohitdastalks/your-gps-is-lying-to-you-and-thats-a-national-security-crisis-7...
2•jonbaer•7m ago•0 comments

"A vicious circle of incompatibility" – Unsung

https://unsung.aresluna.org/a-vicious-circle-of-incompatibility/
1•rbanffy•9m ago•0 comments

A live black-box capability eval for autonomous offensive-security agents

https://phantomlogin.entropicsystems.net/
1•snorbleck•10m ago•0 comments

Claude of Duty

https://github.com/mshumer/Claude-of-Duty/tree/main
1•SweetSoftPillow•10m ago•0 comments

Stories Told About Data Centres – Pixel Envy

https://pxlnv.com/blog/stories-told-about-data-centres/
1•rbanffy•12m ago•0 comments

Tesler's Law

https://en.wikipedia.org/wiki/Law_of_conservation_of_complexity
3•soupspaces•13m ago•0 comments

Videos Helped Me Uncover Abuse at an Arkansas Private School

https://www.propublica.org/article/arkansas-private-school-abuse-video
2•Jimmc414•14m ago•0 comments

Court Reporter Submitted AI-Generated Errors in Official Court Transcript

https://www.404media.co/judge-caught-court-reporter-using-ai-transcript-errors/
1•Jimmc414•14m ago•0 comments

Fabric Interface Tutorial: E-Textiles, Conductive Thread and Trill Craft

https://www.youtube.com/watch?v=ClBYyYEFkF0
1•soupspaces•15m ago•0 comments

Hundreds of Drone-as-First-Responder Programs to Be Launched Across the Country

https://www.eff.org/deeplinks/2026/07/hundreds-drone-first-responder-programs-could-soon-be-launc...
1•Jimmc414•15m ago•0 comments

Show HN: Anyclaude-SDK – Claude Code-Style SDK for OpenAI/Anthropic Endpoints

https://github.com/pipilot-dev/anyclaude-sdk
1•hansade•16m ago•0 comments

Show HN: The Jac Programming Language

https://jaclang.org/
2•marsninja•17m ago•2 comments

The Metaverse Fever Dream – Pixel Envy

https://pxlnv.com/blog/metaverse-fever-dream/
2•rbanffy•17m ago•0 comments

Why does every mammal get 1B heartbeats in their life? [video]

https://www.youtube.com/watch?v=tL9Lw250spc
1•binyu•20m ago•0 comments

The highest-leverage bet in the whole market is not AI, it's LSD

https://www.singularityrainbow.ai/p/you-have-no-idea-how-big-dftx-is
1•charliejordan•20m ago•0 comments

Show HN: GG Translator – Turn gaming shit talk into friendly phrases

https://ggtranslator.com
1•mcadenhe•20m ago•0 comments

So-called 'Skynet Day' came too close to SF after rogue agent hacked a startup

https://apnews.com/article/skynet-ai-terminator-artificial-intelligence-eb85da03a0161beaa5f3babc4...
3•billybuckwheat•23m ago•0 comments

Show HN: LuaJIT with Native SIMD

https://github.com/TheLuaOSProject/LuaJITMT/releases/tag/1.0.0-simd
1•frityet•23m ago•1 comments

Can Frontier Models Recall Long-Tail Facts? A Cricket Stress Test

https://corvi.careers/blog/frontier-models-long-tail-facts/
1•sp1982•25m ago•0 comments

Building a CEL Engine for .NET

https://bsid.io/writing/building-a-cel-engine-for-net
2•jackedEngineer•25m ago•0 comments

Refactoring cuisine: how an Iraqi stew sailed to Singapore

https://iza.ac/posts/2026/07/the-journey-of-bamya/
1•infinitewalk•25m ago•0 comments

Browser-Based QBasic Environment

https://kavak.run/studio/
2•rickcarlino•28m ago•0 comments

RAMpocalypse, Now With Lawyers – ByteHaven – Where I ramble about bytes

https://blog.ppb1701.com/rampocalypse-now-with-lawyers
2•abdelhousni•31m ago•0 comments

Show HN: Codex fixed my 2010 MacBook Pro driver troubles with kernel patches

https://github.com/ldyeax/macbook2010_nouveau_and_sleep_fixes/
1•jimmaswell•32m ago•0 comments

Frontier LLMs drop from 83% to 43% once reasoning has to chain across domains

https://arxiv.org/abs/2607.18438
2•MarcoDewey•33m ago•1 comments

Anti-AI nostalgia and the cult of the past

https://www.seangoedecke.com/anti-ai-nostalgia/
1•gfysfm•34m ago•0 comments

Show HN: ClinicEvo – Know your face. Own your look

https://clinicevo.com/
1•not_wowinter13•35m ago•0 comments

Venus's rift valleys may still be actively growing

https://ethz.ch/en/news-and-events/eth-news/news/2026/07/venus-dead-far-from-it.html
1•MarcoDewey•39m ago•0 comments

Owen Song releases complete local speech synthesis in 9.36M parameters

https://runtimewire.com/article/owen-song-inflect-micro-v2-local-speech-9m-parameters
1•ryanmerket•39m 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