frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Neanderthal males and human females had babies together, ancient DNA reveals

https://www.washingtonpost.com/science/2026/02/26/neanderthal-mating-humans/
1•bookofjoe•13m ago•1 comments

Show HN: Nugx.org – A Fresh Nuget Experience

https://nugx.org
1•plsft•14m ago•0 comments

The Pentagon Wanted a Master Key. Anthropic Said No. That Is Not the Story

https://github.com/AionSystem/AION-BRAIN/blob/main/articles%2FMEDIUM%2FSALMON%27S-FRIDAY-REPORTS%...
1•sheldonksalmon•14m ago•0 comments

Moldova broke our data pipeline

https://www.avraam.dev/blog/moldova-broke-our-pipeline
1•almonerthis•14m ago•0 comments

Paramount Beat Out Netflix, Won Warner Bros. and Will Change Hollywood Forever

https://variety.com/2026/film/news/paramount-warner-bros-deal-explained-netflix-ellison-1236674841/
1•verganileonardo•14m ago•0 comments

Show HN: Using a mobile LLM app to safely operate a desktop computer

https://github.com/ruikhu007/action-printer
1•Ruikhu•16m ago•0 comments

Show HN: Volresample – 3D volume resampling up to 13× faster than PyTorch on CPU

https://github.com/JoHof/volresample
1•hojijoji•17m ago•0 comments

Doc-to-LoRA: Learning to Instantly Internalize Contexts

https://arxiv.org/abs/2602.15902
1•rbanffy•18m ago•0 comments

Loreline: Modern and open-source language for writing interactive fiction

https://loreline.app/en/
1•jeremyfa•18m ago•0 comments

Show HN: I built a Canva-like editor at 14 – it ranked #4 organically in 30 days

2•epic_ai•18m ago•2 comments

RFC: Storybook Design Token Addon

https://github.com/mauron85/storybook-design-tokens
2•finchisko•22m ago•1 comments

Modern Illustration: Archive of illustration from c.1950-1975

https://www.modernillustration.org
3•eustoria•24m ago•0 comments

Brand Archive

https://brandarchive.xyz/
1•eustoria•24m ago•0 comments

Project Air

https://projectair.co.uk/
2•eustoria•25m ago•0 comments

Vibe Killing (At Scale) – OpenAI's Pivot to War Monger

https://vibekilling.vercel.app/
1•joshcsimmons•25m ago•0 comments

Does higher pricing increase user commitment for effort-based apps?

https://frido.app/apps/todocards/
2•heymadsenx•26m ago•1 comments

The British Newspaper Archive reaches 100M pages

https://www.bl.uk/stories/blogs/posts/the-british-newspaper-archive-reaches-100-million-pages
1•ohjeez•27m ago•0 comments

Show HN: LLM-JSON-guard – Middleware to auto-repair broken AI outputs

https://github.com/harshxframe/llm-json-guard-node-demo
1•harshvermadr30•27m ago•1 comments

Who is the first to buy scam-altman.com?

https://who.is/whois/scam-altman.com
1•PonyM•27m ago•1 comments

The Death of Spotify: Why Streaming Is Minutes Away from Being Obsolete

https://joelgouveia.substack.com/p/the-death-of-spotify-why-streaming
2•cdrnsf•29m ago•0 comments

Show HN: LinkPrism – Route URLs to the right Chrome profile automatically

https://github.com/badaverse/linkprism
1•mkkim417•30m ago•0 comments

Show HN: The Terminal for Marketing Decisions

https://velovra.com
1•lasgawe•31m ago•0 comments

Show HN: Mowgli – Figma for the agent era, with Claude Code and design export

https://mowgli.ai/
5•thegeomaster•32m ago•0 comments

AbzuNet: Post-internet resilient P2P network

https://abzunet.synthicsoftlabs.com
2•AbzuNetTeam•32m ago•1 comments

Block and Tackle: Job Cuts and the AI Narrative

https://om.co/2026/02/28/block-tackle-job-cuts-the-ai-narrative/
2•only_in_america•33m ago•0 comments

ICE Is Expanding Across the US at Breakneck Speed. Here's Where It's Going Next

https://www.wired.com/story/ice-expansion-across-us-at-heres-where-its-going-next/
3•tartoran•34m ago•0 comments

Show HN: The rust of Knox:anti-ASIC lattice L1 built by a dad and his 11yo son

https://github.com/ULT7RA/KNOXProtocol
1•KnoxProtocol•38m ago•0 comments

Verified Spec-Driven Development (VSDD)

https://gist.github.com/dollspace-gay/d8d3bc3ecf4188df049d7a4726bb2a00
6•todsacerdoti•39m ago•0 comments

Statement of Sen. Warner on Military Action in Iran

https://www.warner.senate.gov/public/index.cfm/2026/2/statement-of-sen-warner-on-military-action-...
6•treetalker•39m ago•2 comments

Ask HN: Why People Support Anthropic?

7•piratesAndSons•40m 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•9mo 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 :)