frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

CSS Logical Properties Converter

https://cssawwwards.com/frontend-toolkit/css-logical-properties
1•cssawwwards•1m ago•0 comments

Show HN: I wrote a Rust book ending with a Redis clone

https://shankhan3.gumroad.com/l/dnwmtp
1•zeeshanali0094•1m ago•0 comments

The Three Projections of Doctor Futamura

http://blog.sigfpe.com/2009/05/three-projections-of-doctor-futamura.html
1•tristenharr•2m ago•0 comments

Torlink

https://github.com/baairon/torlink
1•handfuloflight•2m ago•0 comments

AI Tutor on Your Screen

https://heybraza.com
1•orakulus•7m ago•1 comments

What Happened to the Fight for the Internet?

https://dustycloud.org/blog/what-happened-to-the-fight-for-the-internet/
1•signa11•10m ago•0 comments

Power House – a Rust/Python toolkit for verifiable computation artifacts

https://mfenx.com
1•psl-fox•12m ago•0 comments

Nomenclator (Nomenclature)

https://en.wikipedia.org/wiki/Nomenclator_(nomenclature)
1•thunderbong•17m ago•0 comments

Age Checks That Don't Reveal Identity: Privacy Preserving Attribute Verification [pdf]

https://magarshak.com/papers/Personal.pdf
1•EGreg•20m ago•0 comments

City on the Edge: Can San Francisco's soul survive techno-capitalism?

https://www.ft.com/content/e9a5639c-eaad-4c24-997b-1cdf9348851d
1•1vuio0pswjnm7•28m ago•0 comments

Show HN: Searchable directory of HN Job postings

https://gethnjobs.com/
1•hboon•29m ago•0 comments

On AI Text Detection

https://ethansmith2000.substack.com/p/ai-text-detection-arms-dealers-in
1•dvrp•29m ago•0 comments

Ditching Vagrant

https://benjamintoll.com/2026/06/29/on-ditching-vagrant/
1•jandeboevrie•35m ago•0 comments

Show HN: PDFWix – Browser-Based PDF Tools for Everyday Workflows

https://www.pdfwix.com/
1•PDFWix•36m ago•0 comments

He sent a harsh email to ICE's top official. Federal agents tracked him down

https://www.npr.org/2026/07/01/nx-s1-5874124/dhs-tracks-ice-critic
4•OutOfHere•36m ago•0 comments

CursorBench 3.1

https://cursor.com/evals
2•handfuloflight•37m ago•0 comments

Paste any job, find who in your network can refer you

https://happenstance.ai/sidedoor
1•welshpony•38m ago•1 comments

Transcending Temptation Through Abstraction

https://journals.sagepub.com/doi/10.1177/0963721412449169
1•highfrequency•41m ago•0 comments

The Control Plane Was the Point: Revisiting Autofz in the LLM Era

https://yfu.tw/blog/en/autofz-revisited/
1•twleo•41m ago•0 comments

Alleged member of international cyber hacking group Scattered Spider arrested

https://news.sky.com/story/alleged-member-of-international-cyber-hacking-group-scattered-spider-a...
1•austinallegro•41m ago•0 comments

Generative Dynamic Gaussian Reconstruction from Monocular Video

https://research.nvidia.com/labs/amri/projects/world-from-motion/
1•ilreb•42m ago•0 comments

What Did Hubble See on Your Birthday?

https://science.nasa.gov/mission/hubble/multimedia/what-did-hubble-see-on-your-birthday/
1•sohkamyung•55m ago•0 comments

Shader Benchmark for LLMs

https://nbardy.github.io/shader_benchmark/
1•nbardy•1h ago•0 comments

OpenAI proposes handing Trump administration 5% stake

https://www.ft.com/content/7c803eab-8e80-4431-9a87-e943bf00e00b
5•enraged_camel•1h ago•3 comments

SpaceX reportedly working on an AI phone

https://www.theverge.com/science/960442/spacex-phone-prototype-elon-musk
2•mandeepj•1h ago•1 comments

Delivery Optimization for Browser and Software Updates to Minimize Bandwidth

https://inavoyage.blogspot.com/2026/07/delivery-optimization-for-browser.html
1•initramfs•1h ago•0 comments

Kenneth Bulmer

https://en.wikipedia.org/wiki/Kenneth_Bulmer
2•petethomas•1h ago•0 comments

GameBoy Emulator on ESP32 and eInk [video]

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

Book Prizes Don't Work How You Think

https://rebeccamakkai.substack.com/p/book-prizes-dont-work-how-you-think
1•samclemens•1h ago•0 comments

JavaScript library for rapid AI and XR prototyping

https://github.com/google/xrblocks
2•arbayi•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.