frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

CosmicWatch: The Desktop Muon Detector

https://arxiv.org/abs/2508.12111
1•nill0•21s ago•0 comments

In-House LLM Serving at Netflix

https://netflixtechblog.com/in-house-llm-serving-at-netflix-a5a8e799ea2c?source=rss-c3aeaf49d8a4-...
1•dalvrosa•4m ago•0 comments

Claude Code skill for searching royalty-free stock photos via the Pexels API

https://github.com/amalshehu/pexels-skill
1•amalshehu•4m ago•0 comments

The Unpaid Invoices of 20th-Century Physics (and the Wolfram Overlap)

https://github.com/Michael-Ax64/K4-CompilingReality/blob/main/quantum/Q9-Founders.md
2•michael-ax•5m ago•0 comments

An invoice generator where your data never leaves the browser

https://corporatify.pro/
1•suitedgold•8m ago•0 comments

Show HN: Email for Agents with 1 Prompt

https://sente.run/
1•shim2k•9m ago•0 comments

Instagram could turn gender reveals into prediction markets

https://www.marginpoints.com/essays/instagram-could-turn-gender-reveals-into-prediction-markets
1•historian1066•10m ago•0 comments

Ask HN: Guidelines on GPT 5.6 Sol steering

1•arizen•11m ago•0 comments

Show HN: Subrust, a no_std, no alloc Subset-of-Rust interpreter

https://github.com/orbitalhigh/subrust
2•makira•11m ago•0 comments

Capacitor: Cross-platform native runtime for web apps

https://github.com/ionic-team/capacitor
1•toilet•12m ago•0 comments

Are the LLM Wars the Database Wars?

https://rruxandra.github.io/llm-wars-database-wars.html
2•rruxandra_l•14m ago•2 comments

Amazon Builder's Library – An overlooked goldmine of System Design knowledge

https://sumitgouthaman.com/posts/amazon-builders-library/
1•equinumerous•18m ago•0 comments

I built llms.txt files to make local businesses discoverable by AI agents

https://www.kloofstreet.online/
1•businesshustle•20m ago•2 comments

The Beauty of a Stone Wall

https://www.theatlantic.com/ideas/2026/07/second-career-passion-life-meaning/687952/
2•NordStreamYacht•23m ago•1 comments

Valve Reportedly Sells 12-15K Steam Machine Units per Week

https://www.techpowerup.com/350872/valve-reportedly-sells-12-15k-steam-machine-units-per-week
3•bookofjoe•24m ago•0 comments

Substack Gateway – A REST and MCP Server for Substack

https://github.com/jakub-k-slys/substack-gateway-oss
1•jakub-k-slys•26m ago•0 comments

The Attention-Span Class Divide

https://www.theatlantic.com/ideas/2026/07/attention-span-class-divide-ballet-opera-movies/687919/
3•fortran77•27m ago•1 comments

Wortlaut

https://github.com/MKRWW/wortlaut
1•hasley•31m ago•1 comments

Ask HN: How would a lab train for SVG pelicans or other creative benchmarks?

2•smusamashah•32m ago•0 comments

Can Sticky Notes Become the New Bookmarks and Favorites for the Browser

https://chromewebstore.google.com/detail/sticky-note-web-clipper-s/gniilbpapgommpalikcclpcnbcamgila
1•taskloco_nyc•33m ago•0 comments

C Craft

http://www-cs-students.stanford.edu/~blynn/c/craft.html
2•dhotson•36m ago•0 comments

Show HN: Serverload2 – sometimes all you want is a little server load monitor

https://github.com/wojtczyk/serverload2
2•wojtczyk•37m ago•0 comments

MemoryPack: Zero encoding extreme performance binary serializer for C#

https://github.com/Cysharp/MemoryPack
1•breve•39m ago•0 comments

Gemini models are not even competing anymore, why?

1•kingleopold•39m ago•0 comments

I made a random name picker where every name becomes a tiny arena fighter

https://namebrawl.com
2•magnusl•39m ago•0 comments

Silicon Valley Has Lost Its Biggest Advantage

https://www.theatlantic.com/technology/2026/07/data-center-ai-heavy-industry/687990/
1•blondie9x•40m ago•0 comments

Tate brothers arrested in US as further UK charges take total to 59

https://www.bbc.com/news/articles/cwymly9yd33o
2•Tomte•41m ago•0 comments

xkcd's What If?

https://www.youtube.com/@xkcd_whatif
2•bookofjoe•44m ago•0 comments

WIE – A Windows x64 Emulator Prototype for Apple Silicon in Rust Using Cranelift

1•vlad_kalinkin•49m ago•0 comments

Study: Single-crystal nanowires of niobium arsenide may replace copper wires

https://news.cornell.edu/stories/2026/07/too-thin-fail-alternative-copper-microchip-interconnects
2•giuliomagnifico•51m 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 :)