frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

XLS: Accelerated HW Synthesis by Google

https://github.com/google/xls
1•paaloeye•2m ago•0 comments

Van Eck Phreaking

https://en.wikipedia.org/wiki/Van_Eck_phreaking
1•thunderbong•2m ago•0 comments

OpenAI: Spinning Up in Deep RL

https://spinningup.openai.com/en/latest/
1•tosh•2m ago•0 comments

Mapping global methane emissions from space with Deep Learning

https://research.google/blog/mapping-global-methane-emissions-from-space-with-deep-learning/
1•xhevahir•3m ago•0 comments

CleanShot 5.0 with Screen Recording

https://cleanshot.com/screen-recording
1•chillax•4m ago•0 comments

Syria was building a nuclear reactor under Assad, UN reports

https://apnews.com/article/iaea-report-syria-nuclear-bashar-assad-b941d7d11da6fb8912ae2bed0b34cec2
1•geox•8m ago•0 comments

Show HN: Structure from Attention

https://mostlyk.substack.com/p/structure-from-attention
1•mostlyk•10m ago•0 comments

Meta's Muse Voice Transcribe handles real-time speech

https://forgeeks.net/meta-muse-voice-transcribe-release/
2•ledoncool•12m ago•0 comments

Qwen3.8-Max

https://www.qwencloud.com/models/qwen3.8-max-0902
2•Bluestein•13m ago•2 comments

Cutting LLM inference costs by 36% with prompt caching

https://www.neradot.com/post/cutting-inference-cost-36-percent-with-prompt-caching
1•lizakatz•13m ago•0 comments

OpenVINO: AI Plugins for Audacity

https://github.com/intel/openvino-plugins-ai-audacity
1•marklit•13m ago•0 comments

Stewardship not ownership: AI and LLM-generated written English

https://link.springer.com/article/10.1007/s10993-026-09798-2
2•teleforce•14m ago•0 comments

Bicycle Robot (2020) [video]

https://www.youtube.com/watch?v=j6bNVqe_1xY
1•iamanatom•14m ago•0 comments

Emily Wilson to retranslate the Odyssey from scratch

https://www.theguardian.com/books/2026/sep/01/emily-wilson-to-retranslate-the-odyssey-from-scratc...
4•mdp2021•15m ago•0 comments

How Trump Plans to Steal the Midterm Elections, According to a Whistleblower

https://gizmodo.com/heres-how-trump-plans-to-steal-the-midterm-elections-according-to-a-whistlebl...
5•hochmartinez•18m ago•1 comments

ITA Controlled English (CE)

https://github.com/ce-store/ce-store
1•teleforce•20m ago•0 comments

Attempto project: Attempto Control English (ACE) and its tools

https://attempto.ifi.uzh.ch/site/
1•teleforce•22m ago•0 comments

Logica: Enhanced Datalog Compiled to SQL

https://logica-lang.github.io/
1•RebelPotato•23m ago•0 comments

Climate Trace Releases May 2026 Emissions Data

https://climatetrace.org/news/climate-trace-releases-may-2026-emissions-data
2•leonidasrup•23m ago•0 comments

Findings Report on the July 8th Telstra Outage [pdf]

https://www.telstra.com.au/content/dam/tcom/dynamic-media-projects/luke-campbell/TAP-Findings-for...
2•martyvis•23m ago•1 comments

Care for a Little More AI?

https://proofsandprompts.com/2026/08/30/care-for-a-little-more-ai/
2•rzk•29m ago•0 comments

Where the brain ends and the mind begins

https://www.youtube.com/watch?v=XklvcYMSvAU
1•dr_dshiv•31m ago•0 comments

Qwen3.8-Max just got upgraded

https://twitter.com/Alibaba_Qwen/status/2094968708288680276
2•mydreamof•31m ago•2 comments

Thousands of University of Sydney staff on strike over AI and job security

https://www.theguardian.com/australia-news/2026/sep/02/we-have-had-enough-thousands-of-staff-at-t...
4•hochmartinez•33m ago•0 comments

Making of Jonathan Blow's Newest Game, Part I: The Game Design Supercollider

https://www.orderofthesinkingstar.com/en/news/article/11582786
2•helloplanets•35m ago•0 comments

Ask HN: In EU: what tech conferences you won't miss?

1•znpy•37m ago•1 comments

The Toothbrush Test

https://danromero.org/the-toothbrush-test.html
2•baxtr•40m ago•0 comments

Xanadu Was Waiting for Agents

https://zed.dev/blog/agentic-xanadu
1•tosh•40m ago•0 comments

Google Scholar profile shadowbanned (with no recourse)

2•chsreekar•46m ago•0 comments

A New Observable

https://observablehq.com/@observablehq/a-new-observable
3•matt_daemon•54m 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