frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Graphic designer wasn't able to land a job, so he pretended to be a client

https://digitalsynopsis.com/advertising/art-director-resume-agency-job-client/
1•Kaibeezy•1m ago•0 comments

NexusCortex – The First OCM (Organic Cognitive Model), Built to Replace LLMs

https://github.com/office233/Nexuscortex
1•xvid90•2m ago•0 comments

Application Binary Interface

https://en.wikipedia.org/wiki/Application_binary_interface
1•tosh•4m ago•0 comments

MOT: A tool to fight openwashing in AI

https://lwn.net/SubscriberLink/1073420/1c373bcf2b77abe0/
1•mkesper•5m ago•0 comments

Pentagon says military personnel reportedly being targeted using location data

https://www.reuters.com/business/media-telecom/pentagon-says-us-military-personnel-are-reportedly...
1•negura•6m ago•0 comments

We accidentally built an oscillating policy engine

https://blog.bridgexapi.io/we-accidentally-built-an-oscillating-policy-engine
1•Bridgexapi•8m ago•0 comments

OpenMLS has undergone a security audit, funded by the Sovereign Tech Agency

https://blog.phnx.im/openmls-independent-security-audit/
3•cityroler•9m ago•0 comments

U.S. to send Americans exposed to Ebola to Kenya quarantine facility

https://www.washingtonpost.com/health/2026/05/27/us-send-americans-exposed-ebola-kenya-quarantine...
1•Anon84•9m ago•0 comments

Show HN: A tool to debug complex Stripe interactions (built with Claude's help)

https://github.com/progapandist/stripeek
2•progapandist•10m ago•0 comments

Sandboxing for dummies: Process isolation, seccomp and writing good policies

https://renato.boo/blog/2026/05/11/sandboxing-linux-seccomp
2•renatoboo•10m ago•0 comments

Ask HN: How did you find your current job?

2•chistev•13m ago•1 comments

Minimal, gimmick-free EDC knives built for actual daily use

https://www.paragon-knives.com/
1•bgzlsxaz•14m ago•0 comments

Ferrari's electric car: divisiveness is the point

https://economist.com/business/2026/05/27/ferraris-electric-car-divisiveness-is-the-point
1•andsoitis•15m ago•0 comments

It's surprisingly hard to tell if someone's drowning, so we made you a guide

https://www.popsci.com/identify-prevent-drowning/
1•chistev•17m ago•0 comments

Marque – Domain Registrar on the AT Protocol

https://marque.at
1•scanash00•23m ago•0 comments

A New Register Allocator for ZJIT

https://railsatscale.com/2026-05-27-a-new-register-allocator-for-zjit/
1•thunderbong•24m ago•0 comments

Show HN: I packaged a Python AI agent and Vue dashboard into one Electron app

https://github.com/sir1st/hermes-desktop
1•sir1st•24m ago•0 comments

IBM commits $5B to secure open-source software

https://www.reuters.com/legal/transactional/ibm-commits-5-billion-secure-open-source-software-202...
2•giuliomagnifico•29m ago•0 comments

We need to own our computing experience

https://andregarzia.com/2026/05/we-need-to-own-our-computing-experience.html
1•soapdog•29m ago•0 comments

The Anatomy of an LLM

https://www.royvanrijn.com/anatomy-of-an-llm/
2•redcodenl•32m ago•2 comments

You can now use your Gmail account in Proton Mail

https://proton.me/blog/proton-mail-connect-gmail
3•berlianta•32m ago•1 comments

Show HN: Shaderbang – Shebang for Shaders

https://github.com/astefanutti/shaderbang
2•astefanutti•34m ago•0 comments

Machine Media: The Death of the Open Web

https://ipullrank.com/machine-media
1•iamacyborg•38m ago•0 comments

Midday – Open Source Invoicing, Time Tracking, File Reconciliation, Storage, etc

https://github.com/midday-ai/midday
1•peter_d_sherman•39m ago•0 comments

Motorola stops its phones from hijacking the Amazon app, which was 'unintended'

https://9to5google.com/2026/05/27/motorola-amazon-app-unintended/
3•mslusarz•41m ago•1 comments

Money Printer Pro – Open-source AI content generator

https://github.com/office233/MoneyPrinterPro
1•office233•43m ago•0 comments

Claude Opus 4.8 coming today?

https://twitter.com/synthwavedd/status/2059931370009272802
1•rebekkamikkoa•45m ago•2 comments

Show HN: Electrical Grid Mapping Launchpad

https://MapYourGrid.org/map-it/
2•andreashd11•50m ago•1 comments

DeepSeek-OCR Visualized

https://medium.com/advanced-deep-learning/deepseek-ocr-fully-visualised-843e2ba03976
1•coarchitect•50m ago•2 comments

Show HN: Generate Claude Code Workflows using Spec Driven Development approach

2•sermakarevich•52m 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