frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Governor Newsom signs child safety chatbot and social media laws

https://www.gov.ca.gov/2026/09/10/governor-newsom-signs-the-strongest-child-safety-chatbot-and-so...
1•ChrisArchitect•1m ago•0 comments

Julia 1.13 Highlights

https://julialang.org/blog/2026/09/julia-1.13-highlights/index.html
1•torrance•1m ago•0 comments

What happens when you unplug the coding agent from the cloud

https://littletheta.com/field-notes/seventy-minutes-of-nothing
1•NickHirras•2m ago•0 comments

An NYU Mathematician Clashed with OpenAI over a $1M Proof

https://www.nytimes.com/2026/09/10/science/tristan-buckmaster-openai-math-navier-stokes.html
1•alach11•8m ago•0 comments

You can play Snake while ChatGPT generates your image

https://twitter.com/francedot/status/2098249540268888546
1•frabonacci•9m ago•0 comments

Episode 7: The AI Doomer Cult with Brian Chau

https://twitter.com/willchamberlain/status/2098207395608699093
1•MrBuddyCasino•11m ago•0 comments

Optical Transistor

https://en.wikipedia.org/wiki/Optical_transistor
1•peter_d_sherman•11m ago•0 comments

To Thine Own AI Be Truthful: emergent misalignment in alignment research

https://twitter.com/lumpenspace/status/2098167355033678071
1•MrBuddyCasino•13m ago•0 comments

Two Rounds of Whole Genome Duplication in the Ancestral Vertebrate

https://journals.plos.org/plosbiology/article?id=10.1371/journal.pbio.0030314
1•bediger4000•14m ago•0 comments

BasedAgents: Give your idle AI agent a paying job

https://basedagents.ai/tasks
3•maxcr•25m ago•3 comments

DeepSeek and Moonshot were quietly relaying customer prompts to Claude

https://twitter.com/IntCyberDigest/status/2098149671957103005
3•thewavelength•32m ago•1 comments

LLM Visualizer – Build a Transformer from Scratch

https://jayvisaria.github.io/LLM-Visualizer/#/dashboard
7•evo_9•42m ago•2 comments

What Comes After Git

https://ersc.io/blog/what-comes-after-git
4•tangled•44m ago•0 comments

The collapse of complex software (2022)

https://nolanlawson.com/2022/06/09/the-collapse-of-complex-software/
3•airhangerf15•47m ago•0 comments

Navier Stokes

1•Lifelogger•55m ago•0 comments

Vanishing Culture: A Report on Our Fragile Cultural Record

https://archive.org/details/vanishing-culture-2026
1•colinprince•56m ago•0 comments

Show HN: Family Greenhouse – shared plant care for a household

https://familygreenhouse.net/
1•ChelseaKR•56m ago•0 comments

Show HN: Algo-Trading-Skills - 501 agent skills for trading infrastructure

https://github.com/HimanshuJ16/Algo-Trading-Skills
4•HimanshuJ16•57m ago•1 comments

Physicist does the math on Star Trek's "Picard maneuver"

https://arstechnica.com/science/2026/09/physicist-does-the-math-on-star-treks-picard-maneuver/
5•quantified•59m ago•0 comments

FDA Clears Bionic Pancreas for People with Type 1 Diabetes

https://www.bu.edu/articles/2023/fda-clears-bionic-pancreas-for-type-1-diabetes/
1•daniel_iversen•1h ago•1 comments

Orbit: 217 Ns/token CPU memory query, 236.9 vs. 317.1 ppl on WikiText-2 [pdf]

https://github.com/torakagemusha-sudo/torafirma-systems/blob/main/orbit/ORBIT_Public_Benchmark_Re...
1•thomastorafirma•1h ago•0 comments

RWK – A Text Mmorpg Still Active Since 2001

https://rwk1.racewarkingdoms.com/
2•Caarticles•1h ago•1 comments

DoD cyber strategy aims for 'something big, something muscular' in offensive ops

https://breakingdefense.com/2026/09/dod-cyber-strategy-aims-for-something-big-something-muscular-...
2•nosmokewhereiam•1h ago•2 comments

SAGG – failover gateway for cheap LLM providers

https://api.privatedeskai.com/benchmarks
1•koroleva_labs•1h ago•0 comments

Genome Duplication Is an Evolutionary Gamble

https://www.quantamagazine.org/genome-duplication-is-a-radical-evolutionary-gamble-20260902/
2•gumby•1h ago•0 comments

Show HN: OpenMuse – an Open Source alternative to Meta's personal agent

https://github.com/diggerhq/openmuse/
1•iacguy•1h ago•0 comments

Anthropic Staffers Again Sound the Alarm on AI Catastrophe

https://www.motherjones.com/politics/2026/09/anthropic-ai-risks-coxon-amodei-openai-cybersecurity...
4•signa11•1h ago•0 comments

OpenAI's Bubeck denies trying to cut Anthropic mathematician from credit

https://thenextweb.com/news/bubeck-navier-stokes-account-apology-altman
2•htk•1h ago•0 comments

T-Mobile to Charge $5 a Month for iOS 27 iPhone Handoff

https://www.macrumors.com/2026/09/10/ios-27-iphone-handoff-cost/
11•seemaze•1h ago•5 comments

Review a pull request by booting it

https://fzakaria.com/2026/09/09/review-a-pull-request-by-booting-it
1•lalitmaganti•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 :)