frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Quien – A better WHOIS lookup tool

https://github.com/retlehs/quien/
1•bretthopper•20m ago•0 comments

The AI-Assisted Breach of Mexico's Government Infrastructure [pdf]

https://cdn.prod.website-files.com/69944dd945f20ca4a27a7c47/69d8bb5aea59e31efb3b8a7f_Tech_Report_...
1•kerng•21m ago•0 comments

How to Land the Space Shuttle from Space (2016) [video]

https://www.youtube.com/watch?v=Jb4prVsXkZU
1•iquatemb•23m ago•0 comments

Show HN: Vibescore – Grade your vibe-coded project A+ to F (one command)

https://github.com/stef41/vibescore
2•zach22•28m ago•0 comments

Show HN: Lmscan – Detect AI text and fingerprint which LLM wrote it (zero deps)

https://github.com/stef41/lmscan
1•zach22•29m ago•0 comments

IBM to pay $17M in anti-DEI settlement

https://www.cnn.com/2026/04/10/business/ibm-settlement-dei-lawsuit
3•empressplay•31m ago•2 comments

The Agents at USV: Arthur, Ellie, Sally, and Friends

https://blog.usv.com/meet-the-agents
2•wslh•33m ago•0 comments

Madadh – deterministic fail-closed control system for protected runtimes

https://madadh.systems
1•MADADAHSYSTEMS•41m ago•0 comments

Artemis II crew splashes down in Pacific Ocean, ending moon fly-by

https://www.theguardian.com/science/2026/apr/10/artemis-ii-landing-return-moon-mission
3•hkhn•41m ago•0 comments

Bring Back Buddy

https://github.com/anthropics/claude-code/issues/45596
1•agiacalone•42m ago•1 comments

SBTI Personality Test – The Funniest Personality Quiz You'll Ever Take

https://sbti.guru/en/
1•luosix•44m ago•0 comments

Enforcing new limits and retiring Opus 4.6 Fast from Copilot Pro+

https://github.blog/changelog/2026-04-10-enforcing-new-limits-and-retiring-opus-4-6-fast-from-cop...
2•ValentineC•44m ago•0 comments

An Agent That Grows with You – Hermes Agent

https://hermesagent.best/
1•luosix•45m ago•0 comments

To Fill Air Traffic Controller Shortage, FAA Turns to Gamers

https://www.nytimes.com/2026/04/10/us/politics/air-traffic-controller-gamer.html
1•bookofjoe•59m ago•1 comments

Is VC the new PMF strategy?

2•networkOne•1h ago•0 comments

AMD GPU LLM Performance Testing

https://github.com/alainnothere/AmdPerformanceTesting
4•xlayn•1h ago•1 comments

Bringing Rust to the Pixel Baseband

https://security.googleblog.com/2026/04/bringing-rust-to-pixel-baseband.html
4•el_duderino•1h ago•0 comments

Jonathan Ive, Designer, Apple – "A computer can be sexy."

https://www.slate.com/articles/technology/top_right/2011/08/jonathan_ive_designer_apple.html
2•goekjclo•1h ago•1 comments

Sam Altman speaks out after alleged attack on SF home,links to rising AI anxiety

https://www.msn.com/en-us/news/crime/sam-altman-speaks-out-after-alleged-attack-on-sf-home-links-...
2•rmason•1h ago•2 comments

Show HN: Palmier – Dispatch and schedule AI agents from your phone

https://www.palmier.me
2•caihongxu•1h ago•0 comments

Latest Episode of Apple's "For All Mankind" Erases Taiwan

https://old.reddit.com/r/taiwan/comments/1sho71p/latest_episode_of_apples_for_all_mankind_erases/
1•GeoPolAlt•1h ago•0 comments

We open sourced KubeezCut, a free browser based editor integrated with Kubeez

https://github.com/MeepCastana/KubeezCut
1•Meeeeeep•1h ago•0 comments

Framework: ' personal computing as we know it is dead'

https://www.pcgamer.com/hardware/framework-there-is-a-very-real-scenario-in-which-personal-comput...
1•evo_9•1h ago•2 comments

'Blips' led Australian backyard astronomers to a world-first planetary discovery

https://www.sbs.com.au/news/article/how-amateur-astronauts-are-reshaping-what-we-know-about-space...
3•defrost•1h ago•0 comments

Families Spent Decades on Louisiana's Bayous. The Power Company Pulled the Plug

https://www.wsj.com/us-news/families-spent-decades-on-louisianas-bayous-the-power-company-pulled-...
2•bookofjoe•1h ago•1 comments

Relics of an ancient sandstorm on Mars point to Earth-like winds

https://www.science.org/content/article/relics-ancient-sandstorm-mars-point-earth-winds
1•gmays•1h ago•0 comments

Yout.com Hopes Supreme Court's Cox Ruling Helps Its Case; RIAA Disagrees

https://torrentfreak.com/yout-com-hopes-supreme-courts-cox-ruling-helps-its-case-riaa-disagrees/
3•Cider9986•1h ago•0 comments

Show HN: I forced Claude to play Tetris in Emacs

https://imgur.com/a/e3nxq5k
3•iLemming•1h ago•1 comments

Elon of Ed-Tech

https://getlearnix.com/
1•noahjohnson1•1h ago•3 comments

Tutorial on Event-based Cameras(2020) [pdf]

https://rpg.ifi.uzh.ch/docs/scaramuzza/Tutorial_on_Event_Cameras_Scaramuzza.pdf
1•o4c•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•10mo 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 :)