frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI Agents Are About to Change Payments Operations

https://open.spotify.com/episode/41kRSmDW5IKhvamyzlPxqq
1•siroj•35s ago•1 comments

25% long-form social media posts appear AI-generated

https://www.theregister.com/ai-and-ml/2026/07/09/ai-slop-writing-has-taken-over-the-internet-part...
1•u1hcw9nx•1m ago•0 comments

Laws of Project Management

https://www.lucasfcosta.com/blog/laws-of-software-project-management
2•lucasfcosta•3m ago•0 comments

Some features work in design meetings but fail in the real world

https://mattcasmith.net/2026/07/12/feature-design-testing
1•mattcasmith•4m ago•0 comments

OpenAI's Head of Safety Is Leaving the Company

https://www.wired.com/story/openai-head-of-safety-leaving/
1•theanonymousone•5m ago•0 comments

Databricks AI Agent Genie Code Is No Longer Free. Now You Have to Pay as You Go

https://medium.com/databrickscommunity/databricks-ai-agent-genie-code-is-no-longer-free-now-you-h...
1•protmaks•7m ago•0 comments

Databricks News: CLI v1.0.0, AI-tools, Docker, DABs UI sync, mutators

https://medium.com/databrickscommunity/databricks-news-cli-v-1-0-0-ai-tools-last-updated-25th-may...
1•protmaks•7m ago•0 comments

Understanding the Databricks Genie Family: Which Genie Is Right for You?

https://medium.com/databrickscommunity/understanding-the-databricks-genie-family-which-genie-is-r...
1•protmaks•7m ago•0 comments

The Proportional Web

https://owickstrom.github.io/the-proportional-web/
1•g0xA52A2A•9m ago•0 comments

Chasing new skills, going back to basics: how software engineers adapting to AI

https://www.theguardian.com/technology/ng-interactive/2026/jul/12/software-developers-engineers-ai
1•beardyw•10m ago•0 comments

Clodex – Open-source agentic IDE with governed execution and graph memory

https://github.com/mereyabdenbekuly-ctrl/clodex-ide
1•clodex_lab•14m ago•0 comments

Sen. Lindsey Graham dies at 71 after 'brief and sudden illness'

https://www.nbcnews.com/politics/politics-news/sen-lindsey-graham-dies-71-brief-sudden-illness-rc...
8•colinprince•15m ago•2 comments

An AI gateway that signs a receipt for every LLM response

https://github.com/AxioRank/gateway/tree/main
1•axiorank•15m ago•0 comments

Solving Santa Claus Puzzle

https://wyounas.github.io/puzzles/concurrency/2026/01/10/how-to-help-santa-claus-concurrently/
1•simplegeek•33m ago•0 comments

Littlenavmap

https://github.com/albar965/littlenavmap
1•marklit•36m ago•0 comments

Datacentres drive up big tech's carbon emissions to a third of those of France

https://www.theguardian.com/us-news/2026/jul/11/microsoft-amazon-google-datacentre-carbon-emissio...
3•YeGoblynQueenne•36m ago•3 comments

Sonnet Encore/ST G4: How a Tiny Capacitor Destroyed a Rare Upgrade

https://retroreverend.com/blog/tantalum-fall-down-go-boom-how-a-tiny-capacitor-destroyed-one-of-t...
1•rbanffy•38m ago•0 comments

The Advantages of Flexible Typing

https://sqlite.org/flextypegood.html
1•ingve•40m ago•0 comments

Oh dear, did someone steal something from Apple?

https://www.businessinsider.com/apple-openai-trade-secrets-masimo-a123-jony-ive-2026-7
4•CrypticShift•42m ago•0 comments

Show HN: Sanbox, batteries included sandboxes for AI agents

https://sanbox.cloud
2•oryx1729•43m ago•0 comments

Google Opposes Site Blocking in Europe as US Piracy Blocking Plans Gain Momentum

https://torrentfreak.com/google-opposes-site-blocking-in-europe-as-u-s-piracy-blocking-plans-gain...
2•gslin•44m ago•0 comments

Death of the Status Update: Why 55% of Americans Stopped Posting on Social Media

https://ca.pcmag.com/social-media/16790/the-death-of-the-status-update-why-55-of-americans-stoppe...
6•thunderbong•45m ago•2 comments

Reflections on building a closed‑source consumer audio tool

https://github.com/AdBusterOfficial
1•Bo_Amigo_910•46m ago•0 comments

I built an AI strength coach because I wanted my training backed by real studies

https://github.com/clementrx/Performance-agent/tree/main
2•clementrx•48m ago•1 comments

CEO Pleads with AI Industry to Stop Charging So Much to Replace Human Labor

https://futurism.com/future-society/palo-alto-ceo-ai-arora-automation-labor
4•latexr•50m ago•0 comments

Show HN: Fenzo – Build an interactive course on any topic

https://fenzo.ai/
3•fahimulhaq•51m ago•0 comments

Show HN: Display Big Text on Screen

https://bigtext.net/
2•liquid99•53m ago•0 comments

Show HN: Spendict – a performance marketer's verdict for AI agents, over MCP

https://www.spendict.com/
2•ds246•57m ago•0 comments

Cloud Rebuild (Preview)

https://learn.microsoft.com/en-us/windows/configuration/cloud-rebuild/
1•taubek•1h ago•0 comments

Turbocharged solo dev – zooming out a couple of clicks

https://adjohu.com/blog/turbocharged-solo-dev/
1•adjohu•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