frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Lobsters Interview with matheusmoreira about Lone Lisp

https://alexalejandre.com/interviews/interview-with-matheus-moreira/
1•birdculture•2m ago•0 comments

EnviousWispr, open-source WisprFlow alternative

https://github.com/saurabhav88/EnviousWispr
1•EnviousLabs•7m ago•0 comments

I built code-repair training data and shipped the eval so you can rerun it

https://huggingface.co/datasets/TrueSET/verified-code-repair
1•TrueSET_Data•7m ago•0 comments

The Pope and the Antichrist by Peter Thiel

https://firstthings.com/the-pope-and-the-antichrist/
1•kerim-ca•9m ago•1 comments

Miserere (Allegri)

https://en.wikipedia.org/wiki/Miserere_(Allegri)
2•thunderbong•18m ago•0 comments

AI Assisted Vulnerability Research on Embedded Targets

https://quentinkaiser.be/security/2026/07/18/ia-assisted-vuln-research/
1•snorbleck•19m ago•0 comments

Cmpunlocker – Unlock Full GA100 Compute and 64GB HBM2e on the Nvidia CMP 170HX

https://github.com/amoghmunikote/cmpunlocker
1•amoghmunikote•20m ago•0 comments

Transcribe.cpp

https://workshop.cjpais.com/projects/transcribe-cpp
2•sebjones•21m ago•0 comments

One token is enough: fingerprinting LLMs from one token output distributions

https://arxiv.org/abs/2607.10252
3•anigbrowl•33m ago•0 comments

AI as Normal Technology- What Will Be Left for Us to Work On?

https://www.cs.princeton.edu/~arvindn/talks/icml-2026-annotated-slides/#
2•aanet•34m ago•3 comments

The 2026 Developer Survey is Live

https://meta.stackoverflow.com/questions/439978/the-2026-developer-survey-is-live
2•joshdavham•38m ago•0 comments

Updating IP Regulations for AI Distillation

https://www.marble.onl/posts/copyright_vs_ai.html
1•amarble•45m ago•0 comments

Ask HN: What is best thing to do if you are gonna rebuilt your website

3•anitroves•53m ago•4 comments

Forcing Fable to Generate Disinformation

https://blog.j11y.io/2026-07-18_Jailbreaking-Fable-disinformation/
2•padolsey•58m ago•0 comments

Pascal Prediction Market

https://blog.usv.com/pascal
2•wslh•1h ago•0 comments

AI Bubble vs. Dot Com Crash. History Is Repeating

https://www.youtube.com/watch?v=zWJ-g5u9Rqs
14•cable2600•1h ago•13 comments

DanFootball

https://danfootball.com
2•declaj•1h ago•1 comments

They Call Her 'The Assassin' on Wall Street–and She Has a New Target

https://www.wsj.com/finance/fahmi-quadir-industry-assassin-3d6ccd82
1•tortilla•1h ago•1 comments

Anthropic's newest ad is creeping people out

https://techcrunch.com/2026/07/14/anthropics-newest-ad-is-creeping-people-out/
9•gnabgib•1h ago•0 comments

Show HN: Tailguard – A tested CVaR-based optimizer for stochastic reshoring

https://github.com/dismissed8582/tailguard
1•dismissed181•1h ago•0 comments

Microsoft's "Digital Escorts" Left DoD Vulnerable to Chinese Hackers

https://www.propublica.org/podcast/microsoft-digital-escorts-china-defense-department
9•jnord•1h ago•1 comments

Popular sugar substitutes linked to faster brain aging

https://www.sciencedaily.com/releases/2026/07/260717033213.htm
14•toomuchtodo•1h ago•2 comments

Harness Engineering

https://github.com/lopopolo/harness-engineering
4•handfuloflight•1h ago•1 comments

Open-Source Communism

https://continuouswritting.substack.com/p/open-source-communism
6•operator_nil•1h ago•0 comments

Codex Resets

https://codex-resets.com/
66•denysvitali•1h ago•55 comments

Why 'admin nights' are the new book club for busy adults

https://www.cnn.com/2026/01/26/health/admin-night-adults-productivity-trend-wellness
4•akman•1h ago•0 comments

European Court Confirms Ethical Veganism Is a Protected Philosophical Belief

https://veganfta.com/articles/2026/07/17/european-court-confirms-ethical-veganism-is-a-protected-...
5•salutis•1h ago•1 comments

Godecompose: Go decompiler that uses pattern matchers

https://github.com/cookiengineer/godecompose
2•cookiengineer•1h ago•1 comments

Prepaid Cellphone Plans – Comparison Site

https://prepaidcompare.net
2•WarOnPrivacy•2h ago•1 comments

CannonSmash Web

https://github.com/jgbrwn/cannonsmash-web
2•indigodaddy•2h 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 :)