frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

1•alexwang24•6s ago

It might be time to say goodbye to HTML inputs

https://medium.com/zar-engineering/it-might-be-time-to-say-goodbye-to-html-inputs-f37ccf434cc3
1•PretzelFisch•1m ago•0 comments

Show HN: I built an AI that explains what your developers did this week

1•inferno22•3m ago•0 comments

Show HN: Real-Time AI Design Benchmark

https://shuffle.dev/ai-design
1•kemyd•3m ago•0 comments

Show HN: Out Plane – A PaaS I built solo from Istanbul in 3 months

https://outplane.com
2•receperdogan•4m ago•0 comments

The everlasting 'memory crystals' that could slash data centre emissions

https://www.bbc.com/future/article/20260223-the-everlasting-memory-crystals-that-could-slash-data...
1•giuliomagnifico•5m ago•0 comments

How China's 'Perfect' Spy Got Caught [video]

https://www.youtube.com/watch?v=Ox8HVWjboww
1•mgh2•6m ago•0 comments

Ask HN: Any DIY open-source Alexa/Google alternatives?

2•personality0•6m ago•0 comments

Show HN: Claw Cash – Money agents can trust, and verify. Stablecoins in. BTC out

https://clw.cash/
1•tierotiero•6m ago•0 comments

Show HN: NeuroTerm – AI terminal for embedded devs (local LLM, local RAG)

https://neuroterm.dev
1•0xecro1•8m ago•1 comments

Performance Benchmarks of Playwright, Cypress, and Selenium

https://testdino.com/blog/performance-benchmarks/
2•nkko•11m ago•0 comments

AI Will Never Be Conscious

https://www.wired.com/story/book-excerpt-a-world-appears-michael-pollan/
1•voxleone•12m ago•1 comments

Show HN: Progressive Cognitive Architecture – Training LLMs in 4 Phases

https://medium.com/towards-artificial-intelligence/what-if-ai-models-learned-like-humans-do-c69c1...
1•dexmac221•12m ago•0 comments

BankViz – AI-powered bank statement analyzer

https://github.com/RiccardoGrin/BankViz
1•schappim•13m ago•0 comments

Show HN: PullNotes – A Notion-like editor for your GitHub repos

https://github.com/hunvreus/pullnotes
1•hunvreus•13m ago•0 comments

Show HN: Mqvpn – Open-source multipath QUIC VPN

https://github.com/mp0rta/mqvpn
1•mp0rta•15m ago•0 comments

AI is turning research into a scientific monoculture

https://www.nature.com/articles/s44271-026-00428-5
1•the-mitr•16m ago•0 comments

AI Natural Language Tests

https://github.com/aiqualitylab/ai-natural-language-tests
1•LetsAutomate•18m ago•0 comments

OpenClaw: Running a Secure, Capable, Low Cost Claw – Hetzner/Tailscale/ZapierMCP

https://www.appsoftware.com/blog/openclaw-running-a-secure-capable-lowcost-claw-hetzner-tailscale...
1•appsoftware•23m ago•0 comments

Comparing manual vs. AI requirements gathering: 2 sentences vs. 127-point spec

1•thesssaism•25m ago•0 comments

Three New Importers in KiCad 10: Allegro, PADS, and gEDA

https://www.kicad.org/blog/2026/02/Three-New-Importers-in-KiCad-10-Allegro-PADS-and-gEDA/
2•georgefrowny•25m ago•0 comments

About memory pressure, lock contention, and Data-oriented Design

https://mnt.io/articles/about-memory-pressure-lock-contention-and-data-oriented-design/
2•Hywan•33m ago•1 comments

Show HN: Pointwise – Self-hosted Lidar annotation for AV teams

https://www.pointwise.cloud/
1•sohailsaifi•33m ago•0 comments

Show HN: A ground up TLS 1.3 client written in C

https://github.com/theotrama/pico-tls
1•theotrama•33m ago•0 comments

The Riemann hypothesis (or, how to earn $1M)

https://hidden-phenomena.com/articles/rh
1•cpp_frog•33m ago•0 comments

The Righteous EV Owners Who Won't Let Their Broken Cars Die

https://www.wired.com/story/the-righteous-ev-owners-who-wont-let-their-broken-cars-die/
3•quapster•33m ago•0 comments

Show HN: Agora – AI API Pricing Oracle with X402 Micropayments

https://github.com/cylonmolting-creator/agora-oracle
1•agoraoracle•35m ago•0 comments

Show HN: Git-native-issue – issues stored as commits in refs/issues/

https://github.com/remenoscodes/git-native-issue
1•remenoscodes•36m ago•1 comments

Apple Accelerates U.S. Manufacturing

https://www.apple.com/newsroom/2026/02/apple-accelerates-us-manufacturing-with-mac-mini-production/
2•interpol_p•37m ago•0 comments

Ask HN: Missing page from Practical Computing magazine (1980)

2•sim04ful•37m 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•9mo 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 :)