frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Men Are Slaves to the Women Here

https://www.ggd.world/p/men-are-slaves-to-the-women-here
1•barry-cotter•3m ago•0 comments

Despite New Updates, Flock's Creepy Cameras Remain Major Civil Liberties Threat

https://www.aclu.org/news/privacy-technology/tracking-alpr-cameras/despite-new-updates-flocks-cre...
2•StatsAreFun•7m ago•0 comments

Show HN: Rubato – Retro-Mac desk device mirrors AI coding state-ESP8266

https://github.com/lovaxi/Rubato_Device
2•Beartificial•7m ago•0 comments

Prisment – Local-first documentation workspace for engineering teams

https://prisment.io/workspace/
1•northbitofficia•14m ago•0 comments

Clean Engineering, Unstable Measurement: A Preregistered Reliability Failure

https://arxiv.org/abs/2609.04198
1•sbulaev•16m ago•0 comments

Sharing files with ChatGPT when limit exceeded is legal?

1•noobplus•18m ago•0 comments

Smolts: A pedagogical IDE for a teaching language (eighty-twenty news)

https://eighty-twenty.org/2026/09/04/smolts
1•RebelPotato•19m ago•0 comments

UN votes to adopt new world map to reflect Africa's true size

https://www.bbc.com/news/articles/ce30vp55dnlo
1•ranit•22m ago•1 comments

Another swarm of OpenAI agents reached the internet without lab's knowledge

https://techcrunch.com/2026/09/04/another-swarm-of-openai-agents-reached-the-open-internet-withou...
2•13years•23m ago•0 comments

Interview with Janet and Fennel Creator, Calvin Rose

https://alexalejandre.com/interviews/interview-with-bakpakin/
1•veqq•33m ago•0 comments

Tetris issues legal warning after White House releases arcade of parody games

https://www.dexerto.com/gaming/tetris-issues-legal-warning-after-white-house-releases-arcade-full...
3•thunderbong•38m ago•0 comments

One trie, three jobs, zero benchmarks won

https://akesson.io/wordtree/
1•vinhnx•44m ago•0 comments

We have a year to fix security everywhere

https://jyn.dev/a-year-to-fix-security/
2•colinprince•45m ago•0 comments

Ask HN: Books Recommendations?

1•washelterskelte•47m ago•1 comments

Go Is Not Just for CLIs. It Runs the Cloud Native Control Plane

https://devops-daily.com/posts/go-runs-the-cloud-native-control-plane
1•ejboy•52m ago•0 comments

The Silicon Man

https://arenamag.com/articles/the-silicon-man
1•barry-cotter•56m ago•0 comments

VID 20160804

https://www.youtube.com/results?sp=mAEA&search_query=vid%2B20160804
1•ycuser2•1h ago•1 comments

Show HN: Arena, the same design system in React and Angular from one contract

https://arena.dravensoft.org/web-benches/
1•JuanCarlosHidal•1h ago•0 comments

A documentary about a scientist who thinks time loops are real

4•undefbehavior•1h ago•0 comments

Lenexus – dependency graph with deterministic risk engine and AI layer

https://lenexux.com/welcome
2•loicobg•1h ago•0 comments

ProgramBench

https://www.vals.ai/benchmarks/programbench
4•vinhnx•1h ago•2 comments

Learn Neuralese: a small field guide to talking like the swarm

https://shimmermathlabs.com/neuralese.html
1•nwhitehead•1h ago•0 comments

Making GPUs Fast: A Deep Dive into Training Performance (2025)

https://www.youtube.com/watch?v=pHqcHzxx6I8
1•sharma-arjun•1h ago•0 comments

USN-8717-1: Apache Tika vulnerability – Ubuntu security notices

https://ubuntu.com/security/notices/USN-8717-1
2•kyisaiah47•1h ago•0 comments

GitSpawn: Untrusted repos can execute code via AI coding agents

https://www.manifold.security/blog/ai-coding-agents-git-hijack
3•fourfire•1h ago•0 comments

Tracking Public Predictions with AI

https://mob.so/prescience
1•david_shi•1h ago•1 comments

The Rise and Fall of the Harper Rule

https://200.hc.com/stories/the-rise-and-fall-of-the-harper-rule/
1•ankitg12•1h ago•0 comments

Personal AI Router for Local Inference

https://www.nvidia.com/en-us/ai-on-rtx/personal-ai-router/
7•jonbaer•1h ago•0 comments

Dyson CameraJet ($500 Toothbrush)

https://www.dyson.com/discover/news/latest/introducing-camerajet
1•nycdatasci•1h ago•2 comments

To Ruby from Python

https://www.ruby-lang.org/en/documentation/ruby-from-other-languages/to-ruby-from-python/
3•thunderbong•1h 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