frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Zero-Dark-Matter Mechanical Model of Cosmology

https://github.com/IoannisKousoulakos/THE-KOUSOULAKOS-MODEL-OF-COSMOLOGY-WIP/tree/main
1•ppkuio•1m ago•0 comments

US attacks UK plans to boost traditional media on social platforms

https://www.theguardian.com/us-news/2026/sep/07/trump-administration-attacks-uk-social-media-plans
1•beardyw•4m ago•0 comments

Why Taiwan's Silicon Shield Is Failing

https://nationalinterest.org/blog/techland/why-taiwans-silicon-shield-is-failing
1•baud147258•6m ago•0 comments

Show HN: Hybrid Nav2 and PPO RL for indoor Lidar-only robot navigation

https://github.com/Sourav29-2/ppo-lidar-navigation-
1•Ros_Sourav•10m ago•0 comments

Stable Singularity of the Euler Equations on R^3 without forcing – Anima on AI

https://anima-ai.org/2026/09/07/stable-singularity-of-the-euler-equations-on-r3-without-forcing/
1•bjenik•10m ago•0 comments

Show HN: Doc-scraper, offline searchable docs corpora for coding agents (Go)

https://github.com/Sriram-PR/doc-scraper
2•devlithic•11m ago•0 comments

Bodhan.ai releases 1.2B ASR model that covers 22 Indian Languages

https://bodhan.ai/research/blogs/indic-transcribe
2•pythongiant•12m ago•0 comments

Nuxt co-creator Alexandre Chopin joins Encore

https://encore.dev/blog/alexandre-chopin-joins-encore
1•dohguy•12m ago•0 comments

Polycarbonate Sheets

https://www.allrich-sa.co.za/polycarbonate-sheets
1•doshopzone•13m ago•0 comments

Recursion into Madness

https://blog.coredump.cx/p/recursion-into-madness
3•puzzlingcaptcha•14m ago•1 comments

Geneseed – compile one rulebook into hooks for ClaudeCode,OpenCode,Copilot

https://github.com/Arylmera/Geneseed
1•Arylmera•18m ago•0 comments

Show HN: Am I replacable – a harness to help humans keep up with AI

https://amireplaceable.app/
1•kumarshreyak•21m ago•0 comments

Daily Crack: Worlde but the answer is a password, from real breaches

https://dailycrack.app/
1•cirelli94•23m ago•0 comments

In the age of AI what use is left for a personal computer?

1•rimlessspecs•24m ago•2 comments

AI keeps stubbornly refusing to take our jobs

https://www.noahpinion.blog/p/ai-keeps-stubbornly-refusing-to-take
4•theanonymousone•25m ago•1 comments

The Work Is Social

https://yusufaytas.com/the-real-work-is-social
1•cmpit•28m ago•0 comments

Agentic Video Understanding with Gemini

https://twitter.com/GoogleAIStudio/status/2094848490203410564
1•porridgeraisin•30m ago•0 comments

The Chasm: The Shape of Unfinished AI Codebases

https://jimmyhmiller.com/shape-of-unfinished-ai-codebases
1•tobr•32m ago•0 comments

Netanyahu Received an Explicit Warning Days Before Oct. 7

https://www.haaretz.com/israel-news/israel-security/2026-09-08/ty-article-magazine/.highlight/net...
6•firefax•42m ago•0 comments

Le Creuset x Star Trek Collection: Prices, availability, release date

https://www.wired.com/story/to-boldly-dough-le-creuset-sent-its-new-star-trek-cooking-collection-...
2•joozio•42m ago•0 comments

Nix flake for running Immich natively on macOS with GPU accel and Linux

https://github.com/axonasif/immich-nix
1•axonasif•43m ago•0 comments

A preview of the future Intel Architecture documentation

https://intel.github.io/SDM/announcement/2026/08/20/announce-preview.html
2•matt_d•44m ago•0 comments

Arm's C2-Ultra, G2-Ultra NX, and CSS N4 IP

https://chipsandcheese.com/p/arms-c2-ultra-g2-ultra-nx-and-css
1•ingve•51m ago•0 comments

So you want to use OpenRouter?

https://mmoustafa.com/blog/2026/09/07/so-you-want-to-use-openrouter/
1•mmoustafa•52m ago•0 comments

Autistici/Inventati (A/I)

https://en.wikipedia.org/wiki/Autistici/Inventati
1•doener•55m ago•0 comments

From dance floor to war: China readies humanoid robots for combat

https://www.reuters.com/world/china/dance-floor-war-china-readies-humanoid-robots-combat-2026-09-07/
4•bushwart•59m ago•0 comments

How Bats Prevent Doppler Acoustic Interference

https://hackaday.com/2026/09/07/how-bats-prevent-doppler-acoustic-interference/
1•sohkamyung•1h ago•0 comments

Arm unveils AI Portal for optimized AI apps

https://newsroom.arm.com/news/arm-unveils-arm-ai-portal
1•CoderLim110•1h ago•0 comments

UAE-based Falcon AI NSFW classifier among top global open-source models (2025)

https://www.middleeastainews.com/p/uae-ai-model-tops-50-million-monthly
5•instagraham•1h ago•1 comments

PS5 emulator can now run the console version of GTA V

https://www.tomshardware.com/video-games/pc-gaming/ps5-emulator-can-now-run-the-console-version-o...
3•avaer•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 :)