frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nostalgia Is New for Some

https://www.marginpoints.com/essays/nostalgia-is-new-for-some
1•historian1066•36s ago•0 comments

Corca raised a $7.8M seed led by NEA, NVenture to democratize math for everyone

https://twitter.com/Corca_math/status/2064791873676288150
2•OxfordCommand•5m ago•0 comments

Brit workers waste nearly six hours a week 'botsitting'

https://www.theregister.com/ai-and-ml/2026/06/10/brit-workers-waste-nearly-six-hours-a-week-botsi...
1•Bender•8m ago•0 comments

OpenAI Considers Drastic Price Cuts, Anticipating War for Users with Anthropic

https://www.wsj.com/tech/ai/openai-considers-drastic-price-cuts-anticipating-war-for-users-with-a...
1•jrpelkonen•8m ago•0 comments

Xfce Ported to Rust-Written Redox OS for Better X11 Experience

https://www.phoronix.com/news/Xfce-Ported-To-Redox-OS
1•Bender•9m ago•0 comments

Inverse Rubric Optimization: A testbed for agent science

https://fulcrum.inc/2026/06/09/inverse-rubric-optimization.html
1•etherio•15m ago•0 comments

GM is betting on battery cells that don't use lithium

https://electrek.co/2026/06/10/gm-sodium-ion-battery-peak-energy/
1•Bender•16m ago•0 comments

Replit shows how vibe coding is getting its own financial stack

https://thenewstack.io/replit-shopify-storefront-integration/
2•AnhTho_FR•18m ago•0 comments

Google preferred sources is live

https://www.google.com/preferences/source?q=https://mainstreetwealth.ai&pli=1
4•novateg•20m ago•0 comments

Covered Models (Claude.com)

https://support.claude.com/en/articles/15425695-covered-models
2•wglb•27m ago•1 comments

Attention is all you need: Rohan Kumar on using social media for fun and profit

https://sfalexandria.com/posts/rohans-attention/
1•wahnfrieden•29m ago•0 comments

The End of the Coder?

https://cacm.acm.org/news/the-end-of-the-coder/
3•pseudolus•31m ago•1 comments

Are insecure code completions in PyCharm a vulnerability?

https://sethmlarson.dev/are-insecure-code-completions-a-vulnerability
1•12_throw_away•32m ago•0 comments

Fruit Machine (Homosexuality Test)

https://en.wikipedia.org/wiki/Fruit_machine_(homosexuality_test)
1•thunderbong•36m ago•0 comments

Anthropic's Fable Jailbreak (Circumvent safety nets)

https://github.com/0xSufi/fable-jailbreak/
3•binyu•37m ago•0 comments

How AI Agents Reshape Knowledge Work

https://research.perplexity.ai/articles/how-ai-agents-reshape-knowledge-work
1•gmays•43m ago•0 comments

Ask HN: Releasing code under AGPLv3, but want to block LLM reconstruction?

3•zionsati•44m ago•0 comments

Become a Happier Person

https://www.psychologytoday.com/gb/blog/self-made/202606/become-a-happier-person
2•geoffbp•45m ago•0 comments

Show HN: Headroom – Claude Code usage limits, live in the macOS menu bar

https://headroom.walls.sh/
1•patwalls•50m ago•0 comments

Pynder – crowdsourcing and tracking scam call data

https://pynder.net/
1•schwwaaa•52m ago•1 comments

Show HN: Built a public demo to explore SpaceX's IPO filing using multimodal RAG

https://www.calypso.so/demos/spacex-ipo-filing
3•gabamnml•52m ago•1 comments

I Built a Hazel Alternative for Mac with AI Rule Generation

https://medium.com/@jamal_davis/i-built-a-hazel-alternative-for-mac-with-ai-rule-generation-heres...
1•Gotoorbitapp•54m ago•0 comments

Auto-geo – open-source CLI for GEO that helps get your brand mentioned by LLMs

https://github.com/shadowresearch/auto-geo
1•jessen-gibbs•59m ago•1 comments

The Parable of the Talents

https://slatestarcodex.com/2015/01/31/the-parable-of-the-talents/
1•shadow28•1h ago•0 comments

Manus registered my domain in their own name and won't release it

1•AeonCa•1h ago•1 comments

Co-Existence and the End of Co-Intelligence

https://www.oneusefulthing.org/p/co-existence-and-the-end-of-co-intelligence
1•paulpauper•1h ago•0 comments

The Labor Share Fell. So What?

https://marginalrevolution.com/marginalrevolution/2026/06/the-labor-share-fell-so-what.html
1•paulpauper•1h ago•0 comments

I've Solved Content Discovery Conditions May Apply

https://philosophybear.substack.com/p/ive-solved-content-discovery-conditions
1•paulpauper•1h ago•0 comments

Windows 11 sucks slightly less due to June update

https://www.engadget.com/2191909/windows-11-sucks-slightly-less-now-thanks-to-a-june-update/
8•NordStreamYacht•1h ago•0 comments

China-linked operatives used ChatGPT to influence data centers debate

https://www.axios.com/2026/06/10/openai-china-ai-data-center-tariffs-chatgpt
4•alephnerd•1h 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