frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How fast is autonomous AI cyber capability advancing?

https://www.aisi.gov.uk/blog/how-fast-is-autonomous-ai-cyber-capability-advancing
1•dcre•54s ago•1 comments

What is your AIQ? How good are you at using Claude Code/Codex?

https://www.aiqrank.com
1•tylerg•3m ago•0 comments

Greater Manchester still says no to NHS data platform with Palantir at its heart

https://www.theregister.com/public-sector/2026/05/13/greater-manchester-still-says-no-to-nhs-data...
2•Bender•4m ago•0 comments

Audrey: Local-first memory guard for AI agents (source)

https://github.com/Evilander/Audrey
1•evilanders•4m ago•0 comments

What's with all the slide decks? A polycausal theory

https://dynomight.substack.com/p/slides
1•crescit_eundo•5m ago•0 comments

U.S. Intelligence Shows Iran Retains Substantial Missile Capabilities

https://www.nytimes.com/2026/05/12/us/politics/iran-missiles-us-intelligence.html
3•hebelehubele•5m ago•0 comments

Underrated Ideas in Biotech

https://nikomc.com/essays/underrated-ideas-01.html
1•mailyk•5m ago•0 comments

FCC walks back router update ban before it bricks America's network security

https://www.theregister.com/networks/2026/05/12/fcc-walks-back-router-update-ban-before-it-bricks...
2•Bender•5m ago•0 comments

Analog Computer Applications: The Lorenz-attractor [pdf]

https://anabrid.com/media/pages/publikation-dateien-nur-zur-verwaltung-der-dateien/f4766de51c-174...
1•tosh•6m ago•0 comments

NBA's Rwanda ties face scrutiny after sanctions-linked BAL withdrawal

https://www.theguardian.com/sport/2026/apr/25/nba-rwanda-sanctions-bal-apr-withdrawal-kagame
1•PaulHoule•6m ago•0 comments

SpaceX targets May 19 for debut of Starship Version 3, Launch Pad 2

https://spaceflightnow.com/2026/05/12/spacex-targets-may-19-for-debut-of-starship-super-heavy-ver...
1•bookmtn•6m ago•0 comments

Most teams optimize the prompt. Agentic systems have more moving parts

https://www.aevyra.ai/posts/prompt-optimization-agentic-systems.html
2•agunapal•6m ago•0 comments

Show HN: EleutherAI / Lm-Evaluation-Harness

https://github.com/EleutherAI/lm-evaluation-harness
1•marvinified•7m ago•0 comments

Wireloom: A Markdown extension for UI wireframes

https://github.com/StardockCorp/Wireloom
1•watbe•7m ago•0 comments

Scientists find insects may feel pain after crickets nurse sore antenna

https://www.theguardian.com/science/2026/may/13/insects-feel-pain-research
1•YeGoblynQueenne•7m ago•0 comments

BitLocker-protected drives can now be opened using files on a USB stick

https://www.tomshardware.com/tech-industry/cyber-security/microsoft-bitlocker-protected-drives-ca...
1•Timofeibu•7m ago•0 comments

In Praise of Acoustic Mathematics

https://link.springer.com/article/10.1007/s00283-026-10512-7
1•sebg•8m ago•0 comments

Show HN: BossHogg: A PostHog CLI for Agents

https://github.com/aaronkwhite/bosshogg-cli
1•aaronkwhite•8m ago•0 comments

How do agents see your website?

https://what-do-agents-see.runtype.app/
2•zackangelo•8m ago•0 comments

Discover: A Love Letter to RSS

https://brine.dev/posts/discover-a-love-letter-to-rss
1•speckx•9m ago•0 comments

The unmet needs in human disease index

https://www.convoke.bio/blog/introducing-the-unmet-needs-index
1•sebg•9m ago•0 comments

CloudFront's flat-rate plan (CDN+WAF+DNS) now scales to 6B req and 600TB/mo

https://aws.amazon.com/blogs/networking-and-content-delivery/cloudfront-premium-flat-rate-plan-su...
1•cristiangraz•10m ago•0 comments

Show HN: Ledger – Claude Code Token Spend Analyzer

https://github.com/delta-hq/cc-ledger
1•tsv650•10m ago•0 comments

Unknowable Math Can Help Hide Secrets

https://www.quantamagazine.org/how-unknowable-math-can-help-hide-secrets-20260511/
1•Xcelerate•11m ago•0 comments

Google Unveils Googlebook, a New AI Laptop Built Around Gemini

https://www.macrumors.com/2026/05/12/google-unveils-googlebook/
1•Brajeshwar•12m ago•0 comments

Some Proposals for Reviving the Philosophy of Mathematics (1979) [pdf]

https://gwern.net/doc/math/1979-hersh.pdf
1•sebg•12m ago•0 comments

Filen deleted all of my data. A heads-up for others

https://old.reddit.com/r/filen_io/comments/1t3r055/filen_deleted_all_of_my_data_a_headsup_for_oth...
1•tcp_handshaker•13m ago•0 comments

DeepSeek and Grok hallucinated the same fictitious OpenBSD manpage quote

https://stuart-thomas.com/research/the-empirical-council/
1•ethical•15m ago•2 comments

One in seven prefer consulting AI chatbots to seeing a doctor, UK study shows

https://www.theguardian.com/society/2026/may/13/one-in-seven-prefer-ai-chatbots-to-seeing-doctor-...
1•chrisjj•17m ago•1 comments

Skip – One Swift Codebase. Two Native Platforms

https://skip.dev/
3•nikolay•17m 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•11mo 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 :)