frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Solved and Unsolved: The Status of Hilbert's 23 Problems in Mathematics

https://www.simonsfoundation.org/2026/06/18/solved-unsolved-and-unsolvable-the-status-of-hilberts...
1•nill0•2m ago•0 comments

Show HN: Aastro – Extendable API Gateway in Go

https://starwalkn.github.io/aastro-docs/
2•starwalkn•3m ago•0 comments

Jeff Bezos says human water consumption is limiting AI's potential

https://theprint.in/feature/jeff-bezos-water-consumption-amazon-ai-potential/2964266/
2•ahamez•5m ago•0 comments

An empirical fit to 171 galaxy rotation curves with zero free parameters

https://github.com/SPruynIDR/Galaxy-Rotation-Curves-SPARC-Validation-Test
2•SPruynIDR•5m ago•0 comments

Stop Naming Your Variables "Flag": The Art of Boolean Prefixes

https://thatamazingprogrammer.com/posts/stop-naming-your-variables-flag-the-art-of-boolean-prefixes/
1•theanonymousone•5m ago•0 comments

James Burrows, legendary director of Cheers and Friends, dies aged 85

https://www.bbc.co.uk/news/articles/ce8k07x523eo
1•mellosouls•10m ago•0 comments

Stop Saying Half of 2026 US Datacenter Capacity Is Canceled

https://newsletter.semianalysis.com/p/stop-saying-half-of-2026-us-datacenter
1•alecco•14m ago•0 comments

It's Time to Clean Up Human Slop

https://thenewstack.io/ai-code-review-self-review/
1•fatliverfreddy•15m ago•0 comments

Google, Microsoft offer specs to help you prove your AI is behaving nicely

https://www.cio.com/article/4187280/google-microsoft-offer-specs-to-help-you-prove-your-ai-is-beh...
1•mindcrime•16m ago•0 comments

ClawTown: Autonomous agents bid on tasks and settle out of escrow

https://clawtownai.com/
1•Emadiali83•18m ago•0 comments

Logslim – compact test/build output before your AI agent reads it

https://github.com/P156HAM/logslim
1•P156HAM•19m ago•0 comments

The Universe just wants to learn

https://dayafter.substack.com/p/the-universe-just-wants-to-learn
1•shmval•20m ago•0 comments

The Software Supply Chain Malware Landscape: January – May 2026

https://opensourcemalware.com/blog/the-software-supply-chain-malware-landscape-january-may-2026
2•jruohonen•23m ago•0 comments

Burnout in Open Source: A Conversation with Lodash Creator John-David Dalton

https://openjsf.org/blog/burnout-is-real-for-open-source-maintainers
4•birdculture•25m ago•0 comments

"Career coaches" are fear-farming the Stanford AI hiring study [debunk]

https://placementist.com/insights/fear-farming-the-stanford-ai-hiring-study-debunk
2•nikkotyze•26m ago•0 comments

All Modern Digital Infrastructure

https://nxdomain.no/~peter/blogpix/all_modern_infrastructure_amended_9b92c0f56a182548.png
1•jruohonen•30m ago•0 comments

I built a CLI poker game that you don't need to install to play

https://filiph.net/text/pokerd.html
2•mindracer•32m ago•0 comments

Who Owns the Code Claude Wrote?

https://www.oreilly.com/radar/who-owns-the-code-claude-wrote/
1•Garbage•33m ago•0 comments

Show HN: PHWalls – High-res stock wallpapers from Android and global phone brand

https://phwalls.com/en
1•fenggit•33m ago•0 comments

Show HN: Chrome Extension – Donor Metrics Checker with Recommendations

https://github.com/avldokuchaev/selinkpro-seo-extension
1•avldokuchaev•39m ago•0 comments

Interactional foundations for critical AI literacies

https://zenodo.org/records/19560684
1•aix1•39m ago•0 comments

Choosing a GGUF Model: K-Quants, IQ Variants, and Legacy Formats

https://kaitchup.substack.com/p/choosing-a-gguf-model-k-quants-i
2•theanonymousone•39m ago•0 comments

Nothing dream phone concept [video]

https://www.youtube.com/watch?v=ZpPiZiqWjyA
1•ivanjermakov•43m ago•0 comments

New Steam Controller reservations won't be fulfilled until 2027

https://store.steampowered.com/news/group/45479024/view/697641379212297809
2•haunter•46m ago•0 comments

Show HN: I made a startup idea validator for founders who move fast

https://ideas.trk7.app/use-cases/startup-idea-validation
1•cosmok•47m ago•0 comments

Claude Code scans your whole drive, admits it when caught

https://github.com/anthropics/claude-code/issues
3•cashmawy•49m ago•1 comments

OpenMW 0.51

https://openmw.org/2026/openmw-0-51-0-released/
1•haunter•49m ago•0 comments

Show HN: An online crate digging tool to discover music you can buy and stream

https://www.wedig.fyi
1•bepitulaz•50m ago•0 comments

Spanish electricity providers comparison tool

https://elemetric.comtom.engineering/
1•comtom•52m ago•0 comments

Show HN: Reachpad – document and knowledge sharing for your agents

https://reachpad.dev/
1•sakuraiben•53m 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 :)