frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Beware Management Consultants

https://about.iceland.co.uk/our-story/the-dark-ages/beware-management-consultants/
1•mellosouls•6m ago•0 comments

Eternal Software Initiative

https://eternal-software.org/
1•eigenhombre•7m ago•0 comments

Show HN: Create and Maintain Filesystem Structures for LLMs [v1.0.11 Out]

https://pypi.org/project/seed-cli/
1•hunterx•9m ago•0 comments

Birth rates are declining in most of the world—here's why it really matters

https://phys.org/news/2026-06-birth-declining-world.html
1•rustoo•10m ago•0 comments

Government to buy AI chips to stop tech companies fleeing Britain

https://www.telegraph.co.uk/business/2026/06/07/government-buy-ai-chips-stop-tech-companies-fleeing/
1•graemep•12m ago•0 comments

Show HN: pypoLCA – Latent Class Analysis and Regression in Python

https://github.com/marcandre259/pypolca
1•marcandre259•13m ago•1 comments

Google just made you a search quality rater. You won't get paid

https://mojodojo.io/blog/google-just-made-you-a-search-quality-rater-you-won-t-get-paid
4•zenincognito•15m ago•0 comments

Is grep better than a vector DB?

https://www.zansara.dev/posts/2026-03-15-vector-dbs-vs-grep/
1•shahargl•15m ago•0 comments

Show HN: TeamOlimpo: Handoffs and mandatory SOPs for multi-agent coordination

https://github.com/teamolimpo/TeamOlimpo
1•tensor_mill•18m ago•0 comments

Show HN: Every Claw Deserves a Face

https://nyxclaw.ai/
1•antonios_makro•20m ago•1 comments

Finland Tests Early-Warning System Detecting Threats to Subsea Cables

https://www.bloomberg.com/news/articles/2026-06-05/finland-tests-early-warning-system-detecting-t...
3•giuliomagnifico•20m ago•0 comments

The User Doesn't Care – But you should

https://lewiscampbell.tech/blog/260607.html
1•kugurerdem•23m ago•0 comments

Mru: A Fault-Tolerant Operating System for Thousand-Year Autonomous Operation

https://zenodo.org/records/20579438
1•wbnns•24m ago•0 comments

The best relationships are all-encompassing.

https://andys.blog/the-best-relationships/
1•andytratt•25m ago•0 comments

Reinventing Entropy – Compression and Intelligence Part 1 (3b1B) [video]

https://www.youtube.com/watch?v=l6DKRf-fAAM
1•vismit2000•26m ago•0 comments

Show HN: We built a tool to dub any video in the original voice in 40 languages

https://vaani.media
2•ABSALOMMAXY•29m ago•1 comments

Trump to announce nearly $700M in coal support

https://www.axios.com/2026/06/04/trump-coal-federal-support-announcement
1•doener•29m ago•0 comments

ModPageSpeed 2.0: Lighthouse 56 to 90. On your own servers

https://modpagespeed.com/
2•ksec•31m ago•0 comments

Firefox confirms working on own adblocker [video]

https://www.youtube.com/watch?v=Qd5_5hXa8Zc
4•HelloUsername•34m ago•2 comments

The Grate Cheese Robbery

https://longreads.com/2026/05/28/the-cheese-theft-food-crime/
1•RickJWagner•34m ago•0 comments

Free security agent on GitHub AgentHQ, scans PRs and auto-fixes vulns

https://github.com/marketplace/bright-security-agent
1•bararchy•35m ago•1 comments

Walkthrough at the drone defence company Sensofusion [video]

https://www.youtube.com/watch?v=ZIMVmYzARiE
1•mikkohypponen•36m ago•1 comments

Open Semantic Interchange: The Universal Standard for Semantic Data

http://open-semantic-interchange.org/
1•asplake•36m ago•0 comments

Discover Your Destiny with AI Palm Reading

https://aipalmreading.net/
1•tunzhang•36m ago•0 comments

Stack Overflow didn't just help AI learn to code

https://zozo123.github.io/how-stackoverflow-taught-ai/
1•zozo123-IB•41m ago•0 comments

The brain can unlock true multitasking after intensive training

https://medicalxpress.com/news/2026-06-brain-true-multitasking-intensive.html
2•pseudolus•45m ago•0 comments

Show HN: Version Control for AI Agents

https://cognatoai.com
1•harsh020•48m ago•0 comments

Show HN: PWNC – A dependency-free web platform I've been building for 25 years

https://github.com/heydev-de/pwnc
1•katzito•49m ago•1 comments

AI needs shame, not taste

https://www.jacquescorbytuech.com/writing/ai-needs-shame-not-taste
1•iamacyborg•52m ago•0 comments

Ground Control: A zero-back end admin tool to process 50k records in the browser

https://blog.praveen.science/ground-control-the-admin-dashboard-nobody-sees/
1•praveenscience•54m 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.