frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

We're All Going to Die

https://www.noahpinion.blog/p/heres-how-were-all-going-to-die
1•throw0101a•46s ago•0 comments

Karaoke for one: China's $1T 'loneliness economy'

https://www.cnn.com/2026/09/12/business/asia-loneliness-economy-intl-hnk-dst
1•michaelsbradley•1m ago•0 comments

Overshoot: The World Is Hitting Point of No Return on Climate

https://e360.yale.edu/features/1.5-degrees-tipping-points
1•throw0101a•2m ago•0 comments

Hydra

https://en.wikipedia.org/wiki/Hydra_(genus)
1•tosh•2m ago•0 comments

Show HN: Parallel Coding Agents on Mobile

https://github.com/PlathsOven/maestro
1•Entropnt•3m ago•0 comments

Show HN: Email Client with Backups

https://mailvaultapp.com/
1•spacecash21•3m ago•0 comments

AI changing the calculus for Canadian students interested in comp sci

https://www.theglobeandmail.com/canada/article-ai-computer-science-students-and-schools-that-hope...
2•AnodicElegy•6m ago•1 comments

Fresh: Terminal based IDE and text editor: easy, powerful and fast

https://github.com/sinelaw/fresh
1•linkdd•6m ago•0 comments

TinyEMU is a system emulator for the RISC-V and x86 archs

https://github.com/dearchap/tinyemu
2•Bluestein•8m ago•0 comments

ProLogium begins mass production of solid-state battery at 381 Wh/kg

https://finance.yahoo.com/energy/articles/prologium-begins-mass-production-high-070000793.html
1•akamaka•8m ago•0 comments

HTTPS Everywhere?

https://blog.altos.au/post/https-everywhere/
1•meetpateltech•10m ago•0 comments

Subjective reports and visual targets during attempted out-of-body experiences

https://www.sciencedirect.com/science/article/abs/pii/S1550830726001941?via%3Dihub
2•bookofjoe•15m ago•0 comments

Here Comes the Sun

https://granta.com/here-comes-the-sun/
1•jruohonen•17m ago•1 comments

Show HN: TattooPreview AI – a planning workflow for tattoo artist conversations

https://tattoopreviewai.com
2•robot1996•20m ago•0 comments

Show HN: I wrote a book on using AI in game design production (free on GitHub)

https://github.com/eremes81/game-design-ai-practice-en
3•eremes81•21m ago•0 comments

Fuck it, make it anyway

https://www.joelotter.com/posts/2026/09/make-it-anyway/
21•JayOtter•23m ago•0 comments

Dimit – warm a Mac screen to pure red and pin the backlight against PWM

https://github.com/azakapro/dimit
2•azakapro•24m ago•0 comments

Show Us the Wonder! Where Is Your Wonder?

https://www.rosalux.de/en/news/id/39794/show-us-the-wonder-where-is-your-wonder
2•jruohonen•25m ago•0 comments

Resting electronic device on bare skin risks disfiguration due to heat

https://bmjgroup.com/resting-electronic-device-on-bare-skin-risks-disfiguration-due-to-heat-docto...
2•giuliomagnifico•25m ago•0 comments

CobaltC Semantic Compiler

https://github.com/strawberry9/CobaltC-Semantic-Compiler
2•SilentLambda•27m ago•0 comments

Nvidia in talks to invest in Anthropic's mega IPO

https://www.reuters.com/legal/transactional/nvidia-talks-invest-anthropics-mega-ipo-sources-say-2...
3•JumpCrisscross•27m ago•0 comments

Crypto farm in Mexican mountains puts spotlight on cartel funding

https://www.reuters.com/world/americas/hidden-crypto-farm-mexican-mountains-puts-spotlight-cartel...
7•JumpCrisscross•28m ago•0 comments

GoHighLevel starts at $97 a month. At 4 clients, the bill is $422

https://aimarkdeck.com/gohighlevel-bill-by-client-count
1•aimarkdeck•29m ago•0 comments

Random Ahh

https://snap.berkeley.edu/project?username=wentz&projectname=Random%20ahh
3•Bluestein•32m ago•0 comments

Altman tells staff OpenAI is open to slowing AI development

https://www.reuters.com/business/altman-tells-staff-openai-is-open-slowing-ai-development-bloombe...
3•signa11•33m ago•0 comments

Artificial Neural Networks – Sprite Layers

https://snap.berkeley.edu/project?username=jens&projectname=Artificial%20Neural%20Networks%20%2d%...
2•Bluestein•34m ago•0 comments

After mapping a fruit fly's brain, engineers made it play Doom and Mario 64

https://www.pcgamer.com/hardware/after-google-mapped-an-adult-male-fruit-flys-brain-software-engi...
1•signa11•34m ago•0 comments

Aqorin Phone – an open-source cross-platform SIP softphone in .NET

https://aqorin.net/phone/
1•jambel•34m ago•0 comments

Trail of Bits helps verify the integrity of your Signal chats

https://blog.trailofbits.com/2026/08/11/how-trail-of-bits-helps-verify-the-integrity-of-your-sign...
3•dgroshev•38m ago•0 comments

Show HN: A screen recorder/editor that runs in browser

https://demoreel.app/
1•mehrant•43m 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 :)