frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

DeepSWE Audit: DeepSeek-v4-pro results are unreliable

https://github.com/datacurve-ai/deep-swe/issues/21
1•eunos•1m ago•0 comments

Can two hours of strength training a week reduce the risk of dying early?

https://www.bbc.co.uk/news/articles/c0r2lekenlpo
1•c-oreills•1m ago•1 comments

The Expansion-Compression Loop: AI-Mediated Cognitive Decoupling

https://philpapers.org/rec/HANTEL-2
1•hanhuiwen•4m ago•0 comments

Shift work and booking maintenance on the calendar

https://rachelbythebay.com/w/2026/06/03/maint/
2•zdw•6m ago•0 comments

HORG: What Are Occlupanids?

https://www.horg.com/horg/?page_id=2
2•mghackerlady•6m ago•0 comments

Your AI Text is not Mine

https://arxiv.org/abs/2606.04906
2•berlianta•10m ago•0 comments

Phylax prevent AI agents from reading or deleting your files

https://phylaxx.pages.dev/
1•usertheinfo•10m ago•1 comments

Show HN: Wd-41, hot-reload webserver for static sites

https://github.com/baalimago/wd-41
1•baalimago•11m ago•0 comments

Arithmetic Pedagogy for Language Models

https://arxiv.org/abs/2606.05106
1•berlianta•13m ago•0 comments

Wordplay: Accessible, Multilingual, Programmable Typography

https://wordplay.dev/
1•azhenley•13m ago•0 comments

The DX3270 Terminal Emulator for Mac Now Serves TN5250 as Well

https://dn3270.com/
1•el_dockerr•18m ago•0 comments

2025 Social Security Trustees Report [pdf]

https://www.ssa.gov/OACT/TR/2025/tr2025.pdf
2•latentframe•22m ago•0 comments

Same Weights, Different Robot: A Deployment Safety View of VLA Policies

https://arxiv.org/abs/2606.03724
1•sbulaev•24m ago•0 comments

Forge: Multi-Agent Graduated Exploitation and Detection Engineering

https://arxiv.org/abs/2606.03453
1•sbulaev•25m ago•0 comments

Overview of Digital Accessibility Technologies

https://vale.rocks/posts/digital-accessibility-technologies
1•OuterVale•32m ago•0 comments

Unreasonable Spirit in Silicon Valley

https://feitong.phd/essays/go-to-sillicon-valley/
1•planeyang•34m ago•0 comments

A population-scale synthetic dataset for El Salvador

https://huggingface.co/datasets/nvidia/Nemotron-Personas-El-Salvador
1•repeator2•37m ago•0 comments

Show HN: iPhone ANE holds LLM tok/s while MLX and LiteRT thermal-throttle

https://github.com/john-rocky/apple-silicon-llm-bench
1•mlboy•38m ago•0 comments

Fast Branchless Quicksort Using Sorting-Networks with C and C++ Interface

https://tiki.li/blog/blqsort
1•signa11•41m ago•0 comments

Proposta TLBIC v4.1 (PT-BR): construída com IA, para chegar a quem mais precisa

1•michikawa59•47m ago•0 comments

Why Only Cars Have ADAS Not Tow Wheelers?

1•WalkeROT•49m ago•1 comments

MCP-Gateway

https://github.com/MikkoParkkola/mcp-gateway/
1•akaralar•49m ago•0 comments

Be Delusional

1•lastofus_mirage•49m ago•1 comments

Floating-Point Error Handling in C++: What Works

https://johnnysswlab.com/floating-point-error-handling-in-c-what-actually-works/
1•signa11•50m ago•0 comments

Optimizing for Text-Mode Browsers

https://log.schemescape.com/posts/web-development/designing-for-text-browsers.html
3•zdw•51m ago•0 comments

A wiki in a single file? A look at Feather Wiki

https://hamatti.org/posts/an-entire-wiki-in-a-single-file-a-look-at-feather-wiki/
1•Tomte•51m ago•0 comments

Revo, the Programming Language

https://if-not-nil.github.io/revo/blog/apples/
1•signa11•56m ago•0 comments

RenderLab – Prototype rendering techniques and renderers in the browser

https://pub.prklinteractive.com/renderlab-alpha
2•prkl•58m ago•0 comments

SpaceX IPO to Be Largest Ever at $135 Share Price

https://www.nytimes.com/2026/06/03/technology/spacex-ipo-pricing.html
3•greenburger•1h ago•0 comments

The SpaceX IPO Will Be the Theft of the Century

https://montanaskeptic.substack.com/p/the-spacex-ipo-will-be-the-theft
16•400thecat•1h ago•3 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.