frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GitBook: The open source front end for GitBook doc sites

https://github.com/GitbookIO/gitbook
1•thunderbong•2m ago•0 comments

Improving Heuristics for A* Pathfinding

https://www.redblobgames.com/pathfinding/heuristics/differential.html
1•bobbiechen•4m ago•0 comments

Their position on open-weights models sucks

https://blog.nathanlangley.dev/posts/anthropic-open-weights.html
1•ninjahawk1•5m ago•0 comments

Prove Yourself – Delayed Disclosure as a Verifiable Public Artifact

https://prove-yourself.sebmellen.com/technical-notes.html
1•sebmellen•12m ago•0 comments

Show HN: Krate, AI-made apps as permissioned files for Mac, Windows, and Linux

https://github.com/incyashraj/krate
1•incyashraj•15m ago•0 comments

How I use AI in my geology research without losing the science I love

https://www.science.org/content/article/how-i-use-ai-my-geology-research-without-losing-science-i...
1•the-mitr•20m ago•0 comments

Machines will never understand language

https://astra.pizza/posts/machines-will-never-understand-language/
1•ankitg12•20m ago•0 comments

Request Timeout Is a Polite Suggestion

https://medium.com/devs-community/your-request-timeout-is-a-polite-suggestion-94171a66fb43
1•sukhpinder0804•21m ago•0 comments

A simple clustering algorithm for lists

https://cassidoo.co/post/clustering-tiles/
2•nreece•29m ago•0 comments

Space exploration game made using Claude Opus 5

https://twitter.com/anshuc/status/2081801966158811506
3•starshadowx2•31m ago•1 comments

Show HN: Over 150 side events of BlackHat 2026 in one page

https://www.chancity.ai/blackhat-vegas-2026
1•csujoy•31m ago•1 comments

AI Makes Starting Games Easier. Finishing Is Still Hard

https://twitter.com/robertvaradan/status/2078234518549311855
2•robertvaradan•31m ago•0 comments

Cursor Start

https://cursor.com/blog/cursor-start-india
2•twapi•38m ago•1 comments

OpenAI called the Hugging Face attack unprecedented. But we've been here before

https://www.technologyreview.com/2026/07/27/1140836/openai-hugging-face-attack-precedent/
4•devonnull•38m ago•0 comments

Show HN: Drever – AI-first MDX presentations with expressive motion

https://github.com/Zhangdroid/drever
2•zhangdroid•42m ago•0 comments

Vibotify – Talk to 300 AI experts, one for every profession

https://vibotify.com/
2•nsoni369•43m ago•0 comments

Ars Astronomica – English translations of rare Hebrew and Latin astronomy texts

https://arsastronomica.com/
8•sweisman•44m ago•0 comments

Active buddies app – Kids earn screen time by being active

https://www.vegaco.nz/active-buddies.html
2•rasikass•44m ago•1 comments

Idempotency Fundamentals and API Guarantees

https://www.distributedrequest.com/idempotency-fundamentals-api-guarantees/
2•ankitg12•44m ago•0 comments

How to choose an AI Agent platform for your team

https://construct.computer/blog/how-to-choose-an-ai-agent-platform-for-your-team/
4•ankushKun•47m ago•0 comments

Why models write slop: the environments are too small

https://henriquegodoy.com/blog/why-models-write-slop
6•jxmorris12•55m ago•0 comments

Professor Created a Trap in His Midterm to Catch Students Using AI

https://www.today.com/parents/family/professor-catches-ai-cheating-hidden-word-rcna589421
4•curmudgeon22•1h ago•0 comments

How IMAX 70MM Film is Projected!

https://www.youtube.com/watch?v=7S_geBV5bLQ
4•saikatsg•1h ago•1 comments

I'm Sorry, Dave

https://world.hey.com/dhh/i-m-sorry-dave-380ec27d
8•3s•1h ago•1 comments

Show HN: My First OSS as a Teen

https://openotp.app
3•jeninh•1h ago•2 comments

Show HN: Orchard – Let AI agents set up your app's back end with one prompt

https://orchard-dashboard.pages.dev/landing
2•asd000hh•1h ago•0 comments

QuickOn – Explainable AI for qualifying inbound B2B SaaS leads

https://www.quickon.in
2•agevenkat•1h ago•1 comments

Neutrino-1 8B

https://www.fermionresearch.com/models/neutrino-8b/
22•handfuloflight•1h ago•3 comments

Seats on hundreds of Boeing 737MAX were incorrectly installed:US aviation agency

https://www.channelnewsasia.com/world/seats-hundreds-boeing-737-max-jets-were-incorrectly-install...
3•Markoff•1h ago•1 comments

AI crawlers don't render JavaScript – I audited my own 11 production sites

https://www.smithappstudio.com/blog/ai-crawlers-cant-see-your-spa-2026/
3•docmaasi•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 :)