frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Open-source skill to run Matt Pocock's skills in bulk AFK

https://github.com/rvoertmann/barbequeue
1•remingtonv•1m ago•0 comments

Cornell: Pro Palestine Students Targeted by ICE: Come Back to US or Lose Funding

https://theintercept.com/2026/08/14/cornell-pro-palestine-student-targeting-ice/
1•Jimmc414•1m ago•0 comments

The unlikely opera star: How AI helped a nonspeaking performer find his voice

https://www.scientificamerican.com/podcast/episode/a-nonspeaking-person-is-the-star-of-this-opera...
1•e2e4•3m ago•0 comments

Stewart Brand's 6‑Part Series How Buildings Learn, with Music by Brian Eno

https://www.openculture.com/2026/08/watch-stewart-brands-6-part-series-how-buildings-learn.html
1•pauldelany•4m ago•0 comments

Show HN: Native mobile experience for mobile web – Raylers

https://raylers.com
1•faruq_72_786•4m ago•0 comments

Show HN: A mobile app to keep up with most important news on Agentic Coding

https://apps.apple.com/de/app/agentic-coding-news-digest/id6797645176
1•remingtonv•4m ago•0 comments

Show HN: Open-source Grok Bot alternative

https://github.com/madebywelch/guaca
1•madebywelch•5m ago•0 comments

Emulating Terraform on Pulumi's Engine

https://www.pulumi.com/blog/terraforms-data-model-on-pulumis-engine/
1•cnunciato•8m ago•0 comments

Air traffic controller saves day when 2 flights with same call number converge

https://www.cbsnews.com/news/phoenix-air-traffic-controller-2-american-airlines-flights-same-call...
2•cf100clunk•9m ago•1 comments

The Podcast Where You Can Eavesdrop on the A.I. Elite

https://www.nytimes.com/2026/04/26/business/dwarkesh-patel-podcast-ai.html
1•paulpauper•11m ago•0 comments

Ozempic is not just a weight-loss story anymore

https://www.vox.com/future-perfect/499434/ozempic-glp1-wegovy-obesity-overweight-diabetes
1•paulpauper•14m ago•0 comments

Cultivating a state of mind where new ideas are born

https://www.henrikkarlsson.xyz/p/good-ideas
3•felixbraun•15m ago•0 comments

Successful Families Are Process Knowledge

https://steader.substack.com/p/successful-families-are-process-knowledge
1•paulpauper•17m ago•0 comments

TemporalStore: A disruptive open-source engine managing your LLM memory

https://temporalstore.ai/blog-context-management.html
2•matrixarkai•17m ago•1 comments

Every ESP32 has one of 4.3B doodle faces latent in its Mac address

https://evandroguedes.github.io/doodlesoul/
1•evandrog•17m ago•0 comments

Shadowy paper mills let you pay to be a published author of fraudulent research

https://www.theguardian.com/science/2026/aug/16/science-or-fiction-shadowy-paper-mills-let-you-pa...
3•billybuckwheat•20m ago•0 comments

The /Handoff Skill

https://www.aihero.dev/skills-handoff
1•evo_9•23m ago•0 comments

Show HN: Chrome extension that tracks job applications on your machine

https://github.com/RajaBabu15/job-focus-assist
1•rajacodes26•23m ago•0 comments

There's a reason why Israel has done little to rein in settler violence

https://apnews.com/article/israel-palestinians-settler-violence-us-siege-west-bank-bd4ae76cec1773...
2•johnbarron•23m ago•0 comments

How Powerful Is Maya?

https://www.quora.com/How-powerful-is-Maya
1•peter_d_sherman•25m ago•0 comments

Addrbook – A Contact Management Program

https://ratfactor.com/repos/addrbook/
1•smartmic•31m ago•0 comments

The little-known winstart.bat batch file

https://devblogs.microsoft.com/oldnewthing/20260811-00/?p=112605
1•ingve•31m ago•0 comments

Why I've tracked every single piece of clothing I've worn for three years

https://www.reaktor.com/insights-and-events/why-ive-tracked-every-single-piece-of-clothing-ive-wo...
2•geneticdrifts•35m ago•0 comments

Cobras in His Garden by Harry Kursh (1965) [pdf]

https://gwern.net/doc/biology/1965-kursh-cobrasinhisgarden.pdf
1•johntfella•35m ago•0 comments

Twilio Sendgrid: Elevated Microsoft 365 IP Blocks Causing Delivery Failures

https://status.twilio.com/incidents/r2gvsly2y5ty
1•ldidi•35m ago•0 comments

Show HN: An interactive UI for the grill-me skill

https://plannotator.ai/blog/an-interactive-ui-for-the-grill-me-skill/
3•ramoz•37m ago•0 comments

American Airlines 737s with the Same Callsign Flew Straight at Each Other

https://simpleflying.com/american-airlines-boeing-737-same-callsign/
4•croes•38m ago•0 comments

Show HN: Glad-AI-Tor – AI tools ranked by user votes, not by who pays

https://glad-ia-tor.com
2•Enjoyooor•39m ago•0 comments

An act of War or an act of God?

https://coolclimate.substack.com/p/an-act-of-war-or-an-act-of-god
1•myhacks•39m ago•0 comments

Do Pumps Create Pressure or Flow?

https://practical.engineering/blog/2021/4/30/do-pumps-create-pressure-or-flow
2•Akronymus•40m ago•1 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 :)