frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Opportunistic AI detects colorectal cancer using routine, noncontrast CT

https://radiologybusiness.com/topics/artificial-intelligence/opportunistic-ai-detects-colorectal-...
1•pseudolus•1m ago•0 comments

Show HN: Exploring the intersection of prediction markets and social media

https://www.thevidmarket.com/
1•ryanpere2298•3m ago•0 comments

Jeff-a-Sketch

https://www.drjeffdaniels.com/jeffasketch
1•cebert•7m ago•0 comments

Fossil: Private Branches

https://fossil-scm.org/home/doc/trunk/www/private.wiki
2•thunderbong•13m ago•0 comments

The case against JPEG XL

https://giannirosato.com/blog/post/case-against-jxl/
4•contact9879•15m ago•0 comments

AI is not a normal technology

https://12gramsofcarbon.com/p/ai-is-not-a-normal-technology
2•theahura•17m ago•0 comments

Ask HN: What are some privacy/security tools you wish exist, but don't yet?

3•ToriTech•18m ago•0 comments

Godfather of AI welcomes pause in development (interview with Hinton)

https://www.abc.net.au/listen/programs/radionational-breakfast/godfather-of-ai-welcomes-pause-in-...
2•ggm•18m ago•1 comments

Aviloop: YouTube's Darkest Mystery [video]

https://www.youtube.com/watch?v=DU9JCFMJp8E
1•handfuloflight•27m ago•0 comments

Writing code by hand is not an option anymore

https://rogix.dev/writing-code-by-hand-is-not-an-option-anymore
1•rogix•28m ago•1 comments

Financial literacy and investment: empirical study from Palestine Stock Exchange

https://www.frontiersin.org/journals/behavioral-economics/articles/10.3389/frbhe.2025.1444022/full
1•andsoitis•30m ago•0 comments

The Final Battle for America's Democracy

https://newrepublic.com/article/215198/2027-new-congress-final-battle-american-democracy
2•HotGarbage•32m ago•1 comments

AI Robots – When will they be in our homes

https://spectrum.ieee.org/ai-robots
1•andsoitis•33m ago•1 comments

The librarian, the car keys, and AI

https://eternallyradicalidea.com/p/the-librarian-the-car-keys-and-ai
2•emmelaich•37m ago•2 comments

Worrying about bad AI code is worrying about the wrong problem

https://matthorn.io/posts/2026-09-13-bad-ai/
1•spectraldrift•40m ago•0 comments

Wikipedia's Oberranks Incident

https://boards.4chan.org/g/thread/109811298/wikipedias-oberranks-incident
1•mostcallmeyt•42m ago•2 comments

Lawyer cites fake witnesses in murder case and blames ChatGPT

https://www.reuters.com/legal/government/chatgpt-invented-fake-police-testimony-murder-appeal-new...
5•1vuio0pswjnm7•45m ago•1 comments

Writing a better reality: The case for optimistic sci-fi

https://honisoit.com/2022/03/writing-a-better-reality-the-case-for-optimistic-sci-fi/
1•andsoitis•50m ago•1 comments

Open-Source AI and Open Models Reading List

https://www.interconnects.ai/p/open-source-ai-reading-list
13•simonpure•54m ago•0 comments

AI bubble pops – Cory Doctorow

https://www.youtube.com/watch?v=LiDUg_uylyM
6•lifeisstillgood•55m ago•0 comments

What's in a name? Naming things in OpenStreetMap

https://blog.openstreetmap.org/2026/09/13/whats-in-a-name-naming-things-in-openstreetmap/
2•HotGarbage•57m ago•0 comments

Xi pushes 'Greater BRICS' economic ties to give bloc larger global role

https://www.reuters.com/business/aerospace-defense/xi-pushes-greater-brics-economic-ties-give-blo...
3•_djo_•1h ago•1 comments

Memorable moments in Chromecast's history (2024)

https://blog.google/products-and-platforms/devices/google-nest/chromecast-history/
1•gregsadetsky•1h ago•0 comments

Apple's Dimensional Drawings

https://developer.apple.com/accessories/dimensional-drawings/
2•herbertl•1h ago•0 comments

AI Boom / Bust – Boom Boom Pow

3•wwolfson97•1h ago•1 comments

"Chilling" warning or overreaction? AI bioweapons report divides experts

https://www.science.org/content/article/chilling-warning-or-overreaction-ai-bioweapons-report-div...
4•sbulaev•1h ago•0 comments

Free Domain Monitoring through echelongraph.io

1•akd29121988•1h ago•0 comments

Trump Throws His Support Behind Flock Cameras: 'I Like Them'

https://www.mediaite.com/politics/trump-throws-his-support-behind-flock-cameras-i-like-them/
8•valeg•1h ago•0 comments

The biggest dinosaurs couldn't sit on their eggs

https://www.cbc.ca/news/science/titanosaur-eggs-9.7336841
2•BiraIgnacio•1h ago•0 comments

OpenAI and Anthropic Hit the Brakes

https://www.axios.com/2026/09/13/ai-labs-regulation-safety
2•kooi•1h ago•1 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.