frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I replaced 10 years of Keyboard Maestro with one Luau script

https://www.rebind.gg/blog/replacing-keyboard-maestro-with-one-rebind-script
1•genesishash•39s ago•0 comments

Redistributing Billions in the Neopets Economy

https://danielmay.co.uk/posts/redistributing-billions-neopets/
1•danielrmay•2m ago•0 comments

Win11 identifier used to track perp after MSFT shared info with FBI

https://www.msn.com/en-us/news/technology/windows-11-identifier-used-to-track-scattered-spider-pe...
1•tarpitt•3m ago•0 comments

I Bought a Sony Walkman

https://82mhz.net/posts/2026/07/i-bought-a-sony-walkman/
1•speckx•4m ago•0 comments

Groundtruth – checks your AI coding agent's claims against the Git diff

https://github.com/akahkhanna/groundtruth
1•erapin_game•4m ago•0 comments

I Need Space

https://whattotelltherobot.com/p/i-need-space
3•stefie10•4m ago•0 comments

We taught a small LLM to throw away 68% of our RAG context

https://www.kapa.ai/blog/how-we-prune-rag-context
1•emil_sorensen•5m ago•0 comments

Microsoft – The latest in our company transformation

https://blogs.microsoft.com/blog/2026/07/06/the-latest-in-our-company-transformation/
1•DemiGuru•6m ago•0 comments

Bad Epoll Flaw Gives Attackers Root Access on Linux and Android

https://securityaffairs.com/194795/hacking/bad-epoll-flaw-gives-attackers-root-access-on-linux-an...
2•curmudgeon22•8m ago•0 comments

Show HN: HN-client – A fast, minimalist Hacker News terminal client in Go

https://github.com/aeon022/hn-client
1•aeon022•10m ago•0 comments

Code Is No Longer a Constraint

https://ldstn.substack.com/p/code-is-no-longer-a-constraint
1•imaginaryunit01•11m ago•0 comments

Roosevelt Pursues the Boat Thieves (2015)

https://www.nps.gov/thro/learn/historyculture/roosevelt-pursues-boat-thieves.htm
1•Tomte•12m ago•0 comments

UVS Nirmana (A Game by Zach Barth)

https://store.steampowered.com/app/2536720/UVS_Nirmana/
1•azhenley•12m ago•0 comments

Show HN: orzma – a terminal emulator that renders webviews inside the terminal

https://github.com/not-elm/orzma
1•notelm•12m ago•0 comments

Show HN: RagPack – Lightweight self-hosted RAG infra for startups

https://github.com/eozsahin1993/ragpack
1•emrecodes•13m ago•0 comments

I mapped estimated water use across 30 major AI/cloud data centers

https://www.thirstymachines.com/
2•senazadeh•13m ago•0 comments

The Linux kernel's iomap layer

https://lwn.net/SubscriberLink/1079415/3c25fcfc8f308a15/
2•chmaynard•14m ago•0 comments

The Most Accurate Watch That Doesn't Tell Time

https://github.com/idlehandsdev/pps-watch
1•geerlingguy•14m ago•0 comments

Groom: Gated Refresh of Organizational Memory

https://labs.beconfident.app/papers/introducing-groom
1•gdss•17m ago•0 comments

What does Jeff Bezos think is going to happen?

https://reprog.wordpress.com/2026/07/05/what-does-jeff-bezos-think-is-going-to-happen/
2•speckx•17m ago•0 comments

FBI: TeamPCP Compromised Dev Tools to Steal Cloud Credentials

https://securityaffairs.com/194741/cyber-crime/fbi-teampcp-compromised-dev-tools-to-steal-cloud-c...
5•devonnull•17m ago•0 comments

Government of Alberta uses Claude to find and fix cybersecurity vulnerabilities

https://www.anthropic.com/news/alberta-government-claude-cybersecurity
1•surprisetalk•18m ago•0 comments

Structured Data Extraction Using Local Models (NuExtract3)

https://gmcirco.github.io/blog/posts/mini-model-ocr-vision/workflow.html
1•apwheele•19m ago•0 comments

Seventy Years of Parsing: Theoretical and Practical Consequences [pdf]

https://langsec.org/spw26/papers/lucas-70-years-of-parsing.pdf
3•g0xA52A2A•20m ago•1 comments

Show HN: Code Review Enviornment for the Modern Era

https://plannotator.ai/code-review/
3•ramoz•20m ago•0 comments

The Most Useless ASIC

https://essenceia.github.io/projects/until_heat_death_do_us_part/
1•random__duck•24m ago•0 comments

Setting up Webmentions on my Static Site

https://www.alexhyett.com/newsletter/setting-up-webmentions-on-my-static-site/
2•speckx•25m ago•0 comments

Ovaries Appear to Develop a Second Role After Menopause

https://www.sciencealert.com/ovaries-appear-to-develop-an-incredible-second-role-after-menopause
1•croes•25m ago•0 comments

What's slowing down the AI buildout

https://www.worksinprogress.news/p/ai-is-bottlenecked-by-the-grid
1•gmays•26m ago•0 comments

Broadcom secures role as key Apple supplier with chip deal through 2031

https://www.reuters.com/technology/broadcom-apple-extend-chip-partnership-through-2031-2026-07-06/
1•mgh2•26m ago•0 comments
Open in hackernews

Show HN: Skeights – Serialize sklearn models to safetensors and JSON, no pickle

https://github.com/carbon-re/skeights
3•alxhslm•1h ago
We use sklearn in production for time series forecasting in industrial settings. Pickle was causing us constant pain: refactoring our wrapper classes invalidated saved models, and the binary blobs were completely opaque.

We built skeights to decompose a fitted estimator into two files. A JSON file for hyperparameters and structure, and a safetensors file for the numeric arrays. The JSON is human-readable and diffable, and safetensors is a well-established safe format from Hugging Face.

This allows you to trade models as config. The JSON is just data you can inspect, diff, and version alongside the rest of your config, rather than a binary artefact on the side.

It supports most common sklearn estimators (linear models, trees, random forests, gradient boosting, MLPs, pipelines), plus LightGBM and XGBoost. MIT licensed.

Blog post with a worked example: https://alxhslm.github.io/projects/skeights/

Repo: https://github.com/carbon-re/skeights

`pip install skeights`