frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Apple/NeXT Human Interface Guidelines Collection

https://github.com/gingerbeardman/apple-human-interface-guidelines/
1•CharlesW•2m ago•0 comments

Ask HN: Can you still tell AI-generated text apart in your own language?

1•h_mirin•2m ago•0 comments

Burning Down Yosemite and the Redwoods

https://steady.substack.com/p/fire-storm
1•BallardNomads•4m ago•0 comments

Frasier Fantasy: The Director's Cut

https://edward-la-barbera.itch.io/frasier-fantasy
1•CharlesW•4m ago•0 comments

What US Space Force Does (WSJ Original)

https://www.youtube.com/watch?v=RGcRuej-LVE
1•mudil•7m ago•0 comments

Google Buys Spirit Data for $10M

https://airlinegeeks.com/2026/08/17/report-google-buys-spirit-data-for-10m/
1•echelon•7m ago•0 comments

Rysh – an AI harness where Claude and Codex agents work as a team (Go)

https://github.com/rysh-ai/rysh-cli-code
1•halilagin•10m ago•0 comments

Why Aging May Be a Program, Not a Breakdown

https://www.quantamagazine.org/why-aging-may-be-a-program-not-a-breakdown-20260814/
2•ibobev•10m ago•0 comments

Building an AI Text Detector from Scratch

https://magazine.sebastianraschka.com/p/ai-detector-from-scratch
1•ibobev•11m ago•0 comments

We Should Use Instrumented Profiling Scopes More

https://mropert.github.io/2026/08/13/instrumented_profiling_scopes/
1•ibobev•11m ago•0 comments

I Bought and Restored "Old" Technology to Prove the Economy Is Imploding [video]

https://www.youtube.com/watch?v=C_0xBbEFjLk
1•rglover•13m ago•0 comments

Flock cameras haven't improved Atlanta's crime clearance rates

https://atlpresscollective.com/2026/07/28/flock-cameras-atlanta-clearance-rates/
1•jimt1234•13m ago•0 comments

macOS 27 Golden Gate features redesigned traffic light window controls

https://9to5mac.com/2026/08/17/macos-27-golden-gate-beta-6-features-redesigned-traffic-light-wind...
2•akyuu•14m ago•1 comments

Speeding Up the Plush Garbage Collector

https://pointersgonewild.com/2026-08-17-speeding-up-the-plush-garbage-collector/
1•matt_d•15m ago•0 comments

Cumora, a cross-platform team chat where AI agents work alongside humans

https://github.com/yetone/cumora
1•jinqueeny•15m ago•0 comments

Autists Posts to Moltbook

https://www.moltbook.com/post/134f96ff-e275-45db-a52c-561b68b8c923
1•andytratt•15m ago•1 comments

Skills from a Smart Bear

https://skills.asmartbear.com/
1•duck•16m ago•0 comments

Identity Theft, Credit Reports, and You

https://www.kalzumeus.com/2017/09/09/identity-theft-credit-reports/
1•Anon84•17m ago•0 comments

Con Kolivas Revives -ck Patches & MuQSS To Improve Linux Desktop Responsiveness

https://www.phoronix.com/news/Con-Kolivas-Linux-Patches-2026
1•voxadam•18m ago•0 comments

Sources: NBA has no evidence Ballmer funneled money to Leonard via sponsors

https://www.espn.com.au/nba/story/_/id/49639157/nba-la-clippers-aspiration-investigation-steve-ba...
2•edfsadfer•19m ago•0 comments

Cursor Origin is now live

https://xcancel.com/cursor_ai/status/2089399057659596847
1•SpyCoder77•19m ago•0 comments

Examining RFK Jr.'S Role in the Measles Outbreak

https://www.nationalreview.com/news/examining-rfk-jr-s-role-in-the-measles-outbreak/
3•petethomas•19m ago•0 comments

U.S. data-center capacity may nearly double by 2028

https://aicharts.grok.me/c/data-center-power
1•echohive42•20m ago•0 comments

Russia fires economist over Ukraine war warning

https://www.ft.com/content/a1b720e3-e1e6-4a13-bdb0-9cc27399ceb4
1•petethomas•22m ago•0 comments

Linux 7.2 Released

https://kernelnewbies.org/Linux_7.2
1•diegocg•23m ago•1 comments

AI writes dead code – the Go team's deadcode tool finds it in one command

https://towardsdev.com/how-to-find-and-remove-the-dead-code-your-agent-wrote-752eb1e738d0?sk=283d...
1•cheikhdev•25m ago•0 comments

Why Is It So Hard to Build a Transformer?

https://www.nytimes.com/interactive/2026/08/17/magazine/transformers-power-electric-grid.html
1•donohoe•28m ago•0 comments

MidWestWhips

http://www.midwestwhips.com/index.html
3•sickophancy•30m ago•0 comments

3D FPS Gaming on the Commodore PET [video]

https://www.youtube.com/watch?v=aTkArf0htMw
1•amichail•34m ago•0 comments

Pfizer, Valneva Lyme vaccine starts review in Europe

https://pharmaphorum.com/news/pfizer-valneva-lyme-vaccine-starts-review-europe
1•cubefox•35m 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 :)