frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A Letter from 2040

https://www.xydac.com/blog/2040-now/
2•xydac•5m ago•0 comments

How to Write to SSDs [pdf]

https://www.vldb.org/pvldb/vol19/p1469-lee.pdf
1•matt_d•6m ago•0 comments

Show HN: A seed prompt that bootstraps a custom knowledge-base system

https://github.com/dah/llm-seedlab
1•dnh44•6m ago•0 comments

Getty Awards $1.8M to Increase Access to Black Visual Arts Archives

https://www.getty.edu/news/getty-award-to-increase-access-to-black-visual-arts-archives/
1•ohjeez•12m ago•0 comments

Show HN: VisiSign – $0.10 per envelope e-signatures with no monthly fee

https://visisign.app/
1•rdoneill•12m ago•0 comments

Construction on Meta's largest data center brings chaos to rural Louisiana

https://lailluminator.com/2025/11/22/meta-data-center-crashes/
2•cdrnsf•13m ago•0 comments

Bootstrapping a SQL catalog on a flat key-value store

https://n8z.dev/posts/keys-and-values-are-all-you-need/
1•nlz•15m ago•1 comments

CVE-2026-46333 (SSH-keygen-pwn)

https://nvd.nist.gov/vuln/detail/CVE-2026-46333
1•ethanplant•18m ago•0 comments

After the Feed

https://blockchaincapital.com/blog/after-the-feed
1•doener•20m ago•0 comments

Tech Companies to Discuss Iran's Future During 'Private Conference' at Uber HQ

https://www.404media.co/tech-companies-to-discuss-irans-future-during-private-conference-at-uber-hq/
4•cdrnsf•20m ago•0 comments

Silicate-derived calcium as a pathway to low-carbon Portland cement

https://www.nature.com/articles/s44458-026-00056-4
2•bribroder•20m ago•0 comments

Show HN: Open modular tracking stack for VR/MR headsets (eye, SLAM, FBT, BCI) [video]

https://www.youtube.com/watch?v=QlfCfkzkBB4
1•WalkerDev•21m ago•0 comments

Different models solve number-theory race problem

https://aicc.rayonnant.ai/challenges/palin-prime-bits/
1•yogthos•23m ago•0 comments

Canada Says Critics Don't Understand Its Surveillance Bill

https://reclaimthenet.org/canada-says-critics-dont-understand-its-surveillance-bill
4•Cider9986•24m ago•1 comments

What Value Do You Provide?

https://ethancedwards.com/blog/what-value-do-you-provide
2•ethancedwards8•28m ago•0 comments

Be Weird – Doing the opposite is now a strategy

https://tinyempires.substack.com/p/be-weird
1•fallinditch•31m ago•0 comments

Home of the Underdogs [in 2026]

https://homeoftheunderdogs.net/
1•DanielleMolloy•32m ago•0 comments

When Knowledge Is Cheap, Insight Is Everything: Jevons Paradox

https://twitter.com/ZoharAtkins/status/2054168204658815070
1•myth_drannon•33m ago•0 comments

Rust on My Bun

https://renfoc.us/posts/1778877814-rust_on_my_bun
3•pjmlp•33m ago•0 comments

Why surveillance pricing bans are suddenly gaining traction this year

https://calmatters.org/economy/technology/2026/05/why-surveillance-pricing-bans-are-suddenly-gain...
1•cdrnsf•36m ago•0 comments

Ask HN: Conductor vs. native Claude Code. Same single-agent performance?

1•nilen•37m ago•0 comments

Wikipedia: Writing articles with LLMs

https://en.wikipedia.org/wiki/Wikipedia:Writing_articles_with_large_language_models
2•reconnecting•37m ago•0 comments

Google says generative AI visibility is still SEO

https://developers.google.com/search/docs/fundamentals/ai-optimization-guide
2•snoren•37m ago•0 comments

Waymo driverless cars become trapped in Atlanta suburb after glitch

https://www.bbc.com/news/videos/czx20g00ly1o
3•berkeleyjunk•39m ago•0 comments

AlexNet Source Code

https://github.com/computerhistory/AlexNet-Source-Code
1•RyanShook•42m ago•0 comments

HN: AllTime – AI calendar that replaces 5 apps with one

https://apps.apple.com/us/app/alltime-ai-daily-planner/id6759578102
1•deecarrera•45m ago•1 comments

HWE Bench: A new unbounded Benchmark for LLMs (GPT 5.5 is on top)

https://hwebench.com/
3•fesens•46m ago•2 comments

Which (De-Googled) OS(s) are you using on mobile?

https://discuss.privacyguides.net/t/which-de-googled-os-s-are-you-using-on-mobile/23904
2•Cider9986•46m ago•0 comments

Sonoeazy – Validating a short-form audio platform. Experiment 1: "I love you"

https://sonoeazy.com/
1•genericone•50m ago•1 comments

The Coding Harness Behind GitHub Copilot in VS Code

https://code.visualstudio.com/blogs/2026/05/15/agent-harnesses-github-copilot-vscode
3•cbovis•51m 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.