frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

About Syria's Nightlife

https://twitter.com/i/status/2093806659868950549
1•Michelangelo11•31s ago•0 comments

Show HN: VelocityNote – A tiny Markdown notebook with local AI

https://velocitynote.app/
1•velocityNote•4m ago•0 comments

How the pre-Unicode Amharic encodings were mapped

https://ezra.et/how-amharic-encodings-were-mapped
1•tena_codes•6m ago•0 comments

A Cop's Case for Flock

https://worksinprogress.co/issue/a-cops-case-for-flock/
1•maxall4•10m ago•0 comments

Building Critical Infrastructure with Htmx: Network Automation

https://htmx.org/essays/paris-2024-olympics-htmx-network-automation/
1•rajtilakjee•20m ago•0 comments

The Hugging Face attack surprised me

https://www.planned-obsolescence.org/p/the-hugging-face-attack-surprised
1•tosh•21m ago•0 comments

Ask HN: Should we rename programming into herding?

1•sam_lowry_•22m ago•0 comments

The Implausibility of Intelligence Explosion (2017)

https://medium.com/@francois.chollet/the-impossibility-of-intelligence-explosion-5be4a9eda6ec
2•maxall4•24m ago•0 comments

JFK Conspiracy Lite

https://yarchive.net/blog/jfk/
1•Tomte•25m ago•0 comments

Every Time Larry David Appeared on Seinfeld [video]

https://www.youtube.com/watch?v=L4wWE5r0sPE
1•tzury•26m ago•0 comments

METR: Funding Update

https://metr.org/blog/2026-08-14-funding-update/
1•tosh•28m ago•0 comments

The infrastructure quartermaster: inside a China-nexus state enablement model

https://www.lumen.com/blog/en-us/the-infrastructure-quartermaster-inside-a-china-nexus-state-enab...
1•pir8life4me•32m ago•0 comments

Neural Amp Modeler (Nam) Architecture 2 (A2)

https://www.tone3000.com/blog/introducing-neural-amp-modeler-nam-architecture-2-a2
1•mariuz•37m ago•0 comments

Show HN: RunCoder – A Coding Workspace for Android

https://play.google.com/store/apps/details?id=com.runcode.app&hl=en_US
1•harshal_shinde•41m ago•1 comments

Show HN: ScriptTap – no-root Android automation with an AI script contract

https://play.google.com/store/apps/details?id=com.scripttap&hl=en_US
1•Romka2x•41m ago•0 comments

America's long march toward Chinese-style surveillance state

https://www.ocregister.com/2026/08/14/americas-long-march-toward-chinese-style-surveillance-state/
4•pir8life4me•47m ago•0 comments

Palestinian woman and NBC News team attacked by Israeli settlers in West Bank

https://www.nbcnews.com/world/middle-east/palestinian-nbc-news-team-attacked-masked-israeli-settl...
17•hebelehubele•47m ago•0 comments

How to Build a Thousand-Year-Old Tree

https://www.noemamag.com/how-to-build-a-thousand-year-old-tree/
3•ostacke•54m ago•0 comments

Google: Lake Ontario/Lake America name change in the U.S. will appear in Maps

https://blog.google/products-and-platforms/products/maps/gnis-lake-ontario-lake-america-name-change/
20•lr0•54m ago•8 comments

UK Households can save as plug-in solar panels come to market

https://www.gov.uk/government/news/households-can-save-as-plug-in-solar-panels-come-to-market
4•bryanrasmussen•56m ago•0 comments

Veryfront Code – Full-Stack AI Apps and Agents with TypeScript and React

https://github.com/veryfront/veryfront-code
3•kojiwakayama•1h ago•0 comments

Have We Seen an Acceleration in Discoveries?

https://metr.org/notes/2026-08-14-llm-contribution-to-discoveries/
2•tosh•1h ago•0 comments

Show HN: Masareef – Android expense tracker that reads bank alerts on-device

https://play.google.com/store/apps/details?id=com.mohamedgado.masareef&hl=en_US
2•mgado•1h ago•0 comments

Show HN: N8n community node for Shotium – screenshot and OG image API

https://github.com/shotium/n8n-nodes-shotium
2•foodpad•1h ago•0 comments

X Window System at 40

https://blog.dshr.org/2024/07/x-window-system-at-40.html
4•mariuz•1h ago•0 comments

Selling Out

https://www.seangoedecke.com/selling-out/
4•johnny313•1h ago•0 comments

PLCBench: Can Autonomous LLM Agents Turn PLC Access into Sustained Physical

https://arxiv.org/abs/2608.26882
2•sbulaev•1h ago•0 comments

Mac extension (panel/pill/nub) to show LLM usage

https://github.com/abhayKashyap03/usage-notch
2•abhaykashyap03•1h ago•0 comments

Breaking Claude Code Opus 5 Auto Mode

https://embracethered.com/blog/posts/2026/breaking-claude-code-opus-5-and-automode/
4•jaksa•1h ago•1 comments

Show HN: A comic/webtoon reader with CSS scroll-snap, vanilla JavaScript

https://jazzy-torrone-fd91d9.netlify.app/
2•EditArteSoy•1h 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 :)