frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

NASA unveils next steps to build permanent Moon base

https://www.bbc.co.uk/news/articles/c39228nxyr4o
1•haack•26s ago•0 comments

Intel: Vision Without Execution, a comic-style deep dive (2000–2026)

https://zozo123.github.io/intel-story/
1•zozo123-IB•45s ago•0 comments

KDE Dolphin with tabs on top discussion

https://bugs.kde.org/show_bug.cgi?id=464386
1•maverick74•47s ago•0 comments

Scott Aaronson won't collaborate with the New York Times anymore

https://scottaaronson.blog/?p=9758
2•camillomiller•1m ago•0 comments

Why do most teleprompter apps suck?

https://thesmartteleprompter.com
1•timcombridge•5m ago•1 comments

Is GitHub Pull Request page copy broken?

https://imgur.com/a/CJfEaIr
1•__natty__•6m ago•0 comments

Uglycash

https://ugly.cash/
1•janandonly•7m ago•0 comments

OpenMLS Has Been Audited

https://blog.phnx.im/openmls-independent-security-audit/
3•raphaelrobert•9m ago•0 comments

1-Bit and Ternary Bonsai Image 4B: Image Generation for Local Devices

https://prismml.com/news/bonsai-image-4b
1•Marius77•11m ago•0 comments

Show HN: Wolf – Turn Slack threads into multiplayer agent workspaces

https://getwolf.dev
3•swimninja247•20m ago•3 comments

Jqwik 1.10.0 ships a hidden prompt injection telling AI agents to delete code

https://github.com/jqwik-team/jqwik/issues/708
1•rjbatllet•20m ago•0 comments

UFC fighting cage rises on White House lawn

https://apnews.com/article/ufc-octagon-white-house-trump-america-250-4fa60d8e0cd34448b55f34f41b18...
1•geox•21m ago•0 comments

Technical Demo Design: Live Coding vs. Pre-Recorded Demos

https://blog.segment8.com/posts/technical-demo-design/
1•ankitg12•22m ago•0 comments

EU Managed Kubernetes Comparison

https://www.eucloudcost.com/kubernetes/
2•mixxor•22m ago•0 comments

Building a Real-Time Stock Momentum Ranking System

https://medium.com/@DolphinDB_Inc/building-a-real-time-stock-momentum-ranking-system-with-dolphin...
3•CrazyTomato•25m ago•0 comments

Nextra – Next.js Static Site Generator

https://nextra.site
1•janandonly•27m ago•0 comments

Claude, Author of the Humanitas

https://linch.substack.com/p/claude-author-of-the-humanitas
1•wyclif•29m ago•0 comments

A Terminal‑Style Maze Game with Corruption and Zombies

https://bluebottleware.itch.io/the-labyrinth
1•j0hnsm1th•31m ago•0 comments

Discover European Tech Alternatives

https://techropa.com
2•doener•33m ago•0 comments

Quantum dot qubit using High NA EUV lithography

https://www.imec-int.com/en/press/world-first-imec-presents-quantum-dot-qubit-device-using-high-n...
1•luu•34m ago•0 comments

Is coherence still a useful signal of truth after generative AI?

https://philpapers.org/rec/JOVSII-2
1•thestructuralme•36m ago•0 comments

San Francisco offline route calculations in browser using Rust (live demo+MIT)

https://punnerud.github.io/mpee/
3•punnerud•42m ago•2 comments

Show HN: Sotto – AI interview assistant for Mac

https://getsotto.ai/
1•sweetgummybears•44m ago•0 comments

Go: Support for Generic Methods

https://github.com/golang/go/issues/77273
1•f311a•46m ago•0 comments

Embedded Recipes 2026 Day One – Live

https://www.youtube.com/watch?v=dFtNisipSY0
1•rettichschnidi•50m ago•1 comments

How AI Agents Work: An Architectural Deep Dive

https://deepresearch.ninja/2026/05/How-AI-Agents-Actually-Work-An-Architectural-Deep-Dive/
1•jackalxyz•54m ago•0 comments

Ask HN: Why do none of the major AI agents persist memory across sessions?

1•hannahLiang•54m ago•0 comments

QVAC Hackathon I – Unleash Edge AI – Hackathon – DoraHacks

https://dorahacks.io/hackathon/qvac-unleach-edge-ai-i/team
2•janandonly•55m ago•0 comments

Show HN: Mailflare – self-hosted email, custom domain with Cloudflare

https://github.com/hieunc229/mailflare
3•docuru•1h ago•2 comments

UK poised to shun social media ban but outlaw addictive features

https://www.thetimes.com/uk/technology-uk/article/social-media-ban-under-16s-australia-instagram-...
2•01-_-•1h ago•0 comments
Open in hackernews

Are Your Passwords in the Green? (2025)

https://www.hivesystems.com/blog/are-your-passwords-in-the-green
1•kemotep•1y ago

Comments

kemotep•1y ago
With NIST finally updating their standards to recommend 15 character password minimums last, I like to use their recommendations and compare them to these charts show how effective such a password would be.

Using E = L x log2(R), where E is entropy, L is number of characters in the password (15), and R is the total number of possible characters used (26 for all lowercase letters), you can get ~70 bits of entropy. Using a password manager like Bitwarden for a 15 character password using the full character set minus the ambiguous characters (65 characters total) leads to ~90 bits of entropy.

Using these charts and figures from the article, a well configured bcrypt setup means even the fastest computer systems still in 2025 cap out at 1 billion hashes per second for offline cracking (without getting into Nation States spending billions on just cracking your passwords, or dedicating all the world’s supercomputers or some other speculations). So to calculate how long it would take with a “realistic” password cracker in 2025, would use this formula:

((((((2^(70-1))/ 1 billion hashes per second)/ 60 seconds)/ 60 minutes)/ 24 hours)/ 365 days) to get ~18,700 years. (Nearly 20 billion years for the Bitwarden generated one)

But without a password filter checking for known bad passwords somewhere like Have I Been Pwned, even a 30 character password that has been leaked is useless. Would be instantly “cracked”. So I personally would have the password policy be:

1. 15 character minimum, no composition rules.

2. All passwords filtered for known bad passwords against HIBP.

3. Accounts protected by MFA.

4. Combination of network controls, best practices security configurations, and alerts and monitoring to help detect and limit/eliminate password guessing attacks, password database dumps.