frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Does Your Programming Language Ever Surprise You in a Good Way?

https://donraab.medium.com/does-your-programming-language-ever-surprise-you-in-a-good-way-eb29e1e...
1•ingve•4m ago•0 comments

The Australian Government to Require SMS/MMS Sender ID Registraion

https://www.acma.gov.au/sms-sender-id-register
1•anitil•6m ago•2 comments

How to Become a Person After Smartphones Have Rotted Your Brain

https://www.thenewatlantis.com/publications/how-to-become-a-person-after-smartphones-have-rotted-...
1•the-mitr•6m ago•0 comments

Six months of AI in 2026, and a whole lot of noise

https://jatniel.dev/en/bytes/six-months-of-ai-in-2026-and-a-whole-lot-of-noise
1•jtnl•8m ago•0 comments

LLMs: Don't use a sledgehammer when tweezers will do

https://superuserdone.com/posts/2026-06-18-dont-use-a-sledgehammer/
1•SuperUserDone•9m ago•0 comments

Catching bad LLM behavior: OpenAI's new Deployment Simulation

https://openai.com/index/deployment-simulation/
1•Raj_Sidwadkar•10m ago•0 comments

DeepSeek Introduces Vision

https://chat.deepseek.com/
1•RIshabh235•12m ago•0 comments

Tesla remotely disabled the €6,200 FSD feature I had used for months

https://teslatookwhatipaidfor.com/en/
2•bartoszhernas•14m ago•1 comments

Environment AI writing code for simulations to test new models of particles

https://github.com/openwave-labs/openwave/blob/main/MODELS.md
1•eln1•17m ago•1 comments

Stack Overflow for Agents

https://stackoverflow.blog/2026/06/10/announcing-stack-overflow-for-agents/
3•marinesebastian•21m ago•0 comments

World-famous Robin Hood oak tree has died

https://news.sky.com/story/world-famous-robin-hood-oak-tree-has-died-13555186
2•austinallegro•34m ago•0 comments

Cervical cancer deaths fall to zero in young women given vaccine

https://www.bbc.com/news/articles/c621z28z138o
2•geox•36m ago•0 comments

What my trade data taught me that 3 years of reading couldn't

https://www.traderscompanion.org
1•mathono•38m ago•1 comments

MBook – a proposal for a new, simple e-book format based on Markdown

https://kevinboone.me/mbook.html
1•mindracer•38m ago•0 comments

The AI debate is about free will

https://juileebhosale.substack.com/p/the-ai-debate-is-really-about-free
3•dropbox_miner•43m ago•0 comments

Show HN: I revived yuiblog.com, Yahoo's defunct front end engineering blog

http://derek.io/yuiblog/page/101/
2•drgath•45m ago•0 comments

HelpNearby reached 25 countries in 20 days – built by 15-year-old Sudan

https://help-nearby.org
1•Hyrezyxx•45m ago•0 comments

Show HN: Memharness – Bi-temporal memory for AI agents, in one SQLite file

https://github.com/las7/memharness
1•sakuraiben•46m ago•1 comments

Ask HN: Has AI impacted your writing style?

1•himata4113•47m ago•2 comments

Free Image Compressor and WebP/AVIF Converter – Runs in the Browser

https://codequest.work/generator/image-compressor/en/
1•ORECTIC•58m ago•0 comments

Liquid Glass Generator – Recreate Apple's Liquid Glass UI with WebGL (Free)

https://codequest.work/generator/liquid-glass-generator/en/
2•ORECTIC•59m ago•0 comments

How to Hack a Superyacht

https://thewalrus.ca/how-to-hack-a-superyacht/
4•billybuckwheat•1h ago•0 comments

RIP Joshua Baer. Founder of Capital Factory, Austin incubator, died in jet crash

https://cbsaustin.com/news/local/capital-factory-ceo-joshua-baer-killed-in-plane-crash-near-lared...
6•dv35z•1h ago•1 comments

Typical Home Will Cost $1M as Millennials Hit Retirement, Economist Says

https://www.realtor.com/news/trends/home-prices-forecast-nar-lawrence-yun-2026/
3•littlexsparkee•1h ago•0 comments

Ukraine hits Moscow refinery again

https://www.reuters.com/world/europe/russia-attacks-kyiv-with-missiles-local-authorities-say-2026...
4•JumpCrisscross•1h ago•0 comments

Show HN: Automatically Validate Python Packages

https://pypi.org/project/validatedata/
2•EdwardK1•1h ago•1 comments

Maslul – Smart LLM router – one call, the right model

https://github.com/iliatankelevich/maslul
2•iliatankelevich•1h ago•0 comments

I Hate Compilers

https://xeiaso.net/notes/2026/anubis-wasm-vendor-binary/
38•xena•1h ago•27 comments

Introducing Vercel Connect

https://vercel.com/blog/introducing-vercel-connect
5•MaxLeiter•1h ago•0 comments

The Teachers Getting $50k Bonuses Thanks to a Meta Data Center

https://www.wsj.com/us-news/education/the-teachers-getting-50-000-bonuses-thanks-to-a-massive-met...
5•tzury•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.