frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: How do you manage secrets with many agents?

1•tornikeo•39s ago•0 comments

MCP is definitely not dead

https://sderosiaux.substack.com/p/no-mcp-is-definitely-not-dead-the
1•chtefi•5m ago•1 comments

Selective divergence between Grokipedia and Wikipedia article

https://www.pnas.org/doi/10.1073/pnas.2603294123
1•Anon84•6m ago•0 comments

BSD flags are incompatible with iCloud Drive

https://eclecticlight.co/2026/06/02/bsd-flags-are-incompatible-with-icloud-drive/
1•ingve•8m ago•0 comments

JsSIP vs. Sip.js vs. Browser-Phone: Choosing an Open-Source WebRTC Sip Stack

https://www.browser-phone.org/2026/06/02/jssip-vs-sipjs-vs-browser-phone/
1•Dappersiperb•9m ago•1 comments

A reflective AI that refuses to give you answers

https://web-production-07a822.up.railway.app/
1•johnhyder•11m ago•0 comments

Show HN: Rootprint – Self-hosted log search built with Svelte, Hono and Quickwit

https://github.com/rootprint/rootprint
1•badfatcat•11m ago•1 comments

Free browser based QR code generator with custom colors/logo upload

https://takeonanything.com/qr-code-generator/
1•minviex•12m ago•0 comments

Swift Cross Platform

https://www.cocoanetics.com/2026/06/swift-cross-platform/
1•ingve•14m ago•0 comments

The Postmodern Build System

https://jade.fyi/blog/the-postmodern-build-system/
1•birdculture•15m ago•0 comments

LPeg – Parsing Expression Grammars for Lua

https://www.inf.puc-rio.br/~roberto/lpeg/
1•tosh•17m ago•0 comments

Device Bound Session Credentials

https://scotthelme.co.uk/device-bound-session-credentials-making-stolen-cookies-useless/
1•moebrowne•17m ago•0 comments

Fibr.ai is hiring Product Engineers

1•mrafi2•17m ago•0 comments

The commons were never theory – It was always practice

https://hamishcampbell.com/the-commons-were-never-a-theory-it-was-always-practice/
1•BrunoBernardino•17m ago•0 comments

Fredy – Self-hosted real estate scraper for Germany, just hit 1k stars

https://github.com/orangecoding/fredy
1•orangecoding•18m ago•1 comments

A collection of small, low effort tools

https://delphi.tools/
1•ewf•18m ago•0 comments

Chinese Military Sought Nvidia Chips for Years, Report Says

https://www.nytimes.com/2026/06/01/business/economy/china-military-nvidia-chips.html
1•giuliomagnifico•20m ago•0 comments

Under Notre Dame, a 'dig of the century' unearths 1,700 years of history

https://apnews.com/article/notre-dame-dig-treasures-paris-archaeology-roman-dae41f792c1402faf32a8...
1•cobbzilla•20m ago•0 comments

Show HN: I built auto-captions with face-tracking reframe for vertical video

https://captionly.dev
1•captionly•22m ago•0 comments

Challenge and Opportunity – David Bushell

https://dbushell.com/2026/06/01/challenge-and-opportunity/
1•BrunoBernardino•24m ago•0 comments

Pegular Expressions

https://janet.guide/pegular-expressions/
1•tosh•26m ago•0 comments

Poor supervision is pushing young researchers out of academia

https://www.nature.com/articles/d41586-026-01693-4
2•EvgeniyZh•28m ago•1 comments

Why is AI use decried when it appears to have been used without attribution?

2•bookofjoe•28m ago•1 comments

Show HN: Numstore – a single file ACID database for NumPy arrays

https://github.com/lincketheo/Numstore/
1•lincketheo•30m ago•0 comments

Weeping Muses

https://spareatalent.hcommons.org/2026/06/01/weeping-muses-moving-away-from-google/
1•jruohonen•31m ago•0 comments

A 2026 GPU Review for AI Inference. Based on Online Soures

https://old.reddit.com/r/AIProgrammingHardware/comments/1tumela/comprehensive_2026_gpu_review_for...
2•javaeeeee•32m ago•1 comments

The way we treat pigs is a sin

https://www.noahpinion.blog/p/the-way-we-treat-pigs-is-a-sin
18•throw0101a•33m ago•0 comments

Spikes in LLMs Are Bias Vectors: Spike-Free Quantization

https://arxiv.org/abs/2606.02288
2•sbulaev•33m ago•0 comments

Forget Attention: Importance-Aware Attention Is All You Need

https://arxiv.org/abs/2606.02332
2•sbulaev•35m ago•0 comments

Save the balti Can Birmingham's best dish come back from the brink?

https://www.theguardian.com/food/2026/jun/02/balti-birmingham-best-dish-back-from-brink
3•YeGoblynQueenne•36m ago•0 comments
Open in hackernews

Show HN: Plot lines of code over time in Git repositories

https://github.com/emanueldonalds/git-loc-plot
2•genericspammer•1y ago
It's a small wrapper around cloc (https://github.com/AlDanial/cloc), which just provides a convenient way to plot lines of code over time in a Git repository.

The script runs cloc on each commit in your current branch, starting from HEAD tracing back until the first commit.

For large repositories with many commits, you can tell it to only count every n:th commit with the '--step' option to speed up processing.

The way it works is quite sub-optimal, since every single file is counted in each commit, even if the file didn't change since last iteration. Might be a fun project later to find some nice optimizations, maybe by counting files one by one and keeping a dict of line count by file hash, or something along those lines.

Maybe someone will find this script useful, maybe not, anyways happy to hear if someone has any thoughts :)