frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Radiology's Last Exam (RadLE)

https://arxiv.org/abs/2509.25559
1•AFF87•1m ago•0 comments

The CEO of Mullvad is the main financer of the far-right Swedish Örebro party

https://det.social/@lostgen/116820546568940358
1•Risse•2m ago•0 comments

Show HN: Re:Zero – Start building from zero

https://www.rezero.md/en/library
1•haebom•2m ago•0 comments

Ask HN: GLM-5.2 FP8 vs. BF16

1•JoelJacobson•3m ago•0 comments

Miyake Event

https://en.wikipedia.org/wiki/Miyake_event
1•simonebrunozzi•9m ago•0 comments

Dame Penelope Keith, star of The Good Life, dies aged 86

https://news.sky.com/story/dame-penelope-keith-star-of-the-good-life-dies-aged-86-13558844
1•austinallegro•10m ago•0 comments

The true cost of software development, updated for the world of AI

https://daniel-payne-keldan-systems.medium.com/how-much-800def6bb346
1•daniel-payne•10m ago•0 comments

Ask HN: What is happening with the current AI startup ecosystem?

1•kefal•12m ago•0 comments

The Peak and Collapse of Digital Research

https://nemanjatrifunovic.substack.com/p/the-peak-and-collapse-of-digital
2•rbanffy•12m ago•0 comments

Show HN: Shacam for macOS – Screen sharing you can touch

https://shacam.com
1•renatoworks•13m ago•0 comments

Trump may be mystery patient in case of 79yo getting experimental obesity drug

https://arstechnica.com/health/2026/06/trump-may-be-mystery-patient-in-odd-case-of-79yo-getting-e...
1•rbanffy•13m ago•0 comments

"Perfumed Palaces: backrooms roguelike vibe-coded in <30 days"

1•MUTHRI•14m ago•1 comments

I have an operating system kernel that I wrote myself; it's called ValiantCore

1•finndev•19m ago•0 comments

The Friction Collapse

https://deimos28.substack.com/p/the-friction-collapse
1•deimos_28•21m ago•0 comments

NASA tests AI medic for astronauts too far from Earth to call a doctor

https://www.theregister.com/ai-and-ml/2026/06/27/nasa-tests-ai-medic-for-astronauts-too-far-from-...
1•pseudolus•22m ago•0 comments

Apple accuses India of 'copy-pasting' rivals' claims in antitrust investigation

https://www.reuters.com/business/media-telecom/apple-accuses-india-copy-pasting-rivals-claims-ant...
1•jmsflknr•23m ago•0 comments

I have an operating system kernel that I wrote myself; it's called ValiantCore

1•finndev•23m ago•0 comments

Show HN: The open-source alternative to Claude Tag

https://www.agent-swarm.dev
2•tarasyarema•24m ago•0 comments

Show HN: SindriKit – A C framework applying DI to Windows internals

https://github.com/youssefnoob003/SindriKit
1•sibouzitoun•25m ago•0 comments

Show HN: I'm building the missing production workflow for AI filmmakers

https://seventeenlabs.io
1•chrislxy•26m ago•0 comments

Sandia National Labs SA3000 8085 CPU

https://www.cpushack.com/2026/06/03/sandia-national-labs-sa3000-8085-cpu/
2•rbanffy•27m ago•0 comments

The Onion's quest to turn InfoWars into a comedic revenge story

https://www.washingtonpost.com/business/2026/06/28/inside-onions-quest-turn-infowars-into-comedic...
1•reaperducer•27m ago•0 comments

The University in the AI Era

https://htmx.org/essays/universities-and-ai/
1•self•28m ago•0 comments

I built 25 executable skills for AI coding agents �“ all open source

https://github.com/chrislamlayer1-gif/hermes-core-skills
2•ChrisLamDev118•28m ago•0 comments

Show HN: An open source benchmark for prompt-injection detectors

https://github.com/bastion-soft/pi-detector-bench
1•gugit•29m ago•0 comments

The Difference Between Engineers and Tool Operators

https://www.minid.net/2026/6/27/real-engineer-vs-bootstrapper
1•meerita•32m ago•0 comments

Show HN: Brain.md – A persistent memory layer for your coding agents

https://github.com/mindmuxai/brain.md
3•sunnygao•33m ago•0 comments

Privatewhisper.ai: Don't type. Just talk. Private AI voice dictation

https://privatewhisper.ai
1•janandonly•34m ago•0 comments

Fourier pixels for bidirectional light control

https://www.nature.com/articles/s41586-026-10681-7
1•bookofjoe•34m ago•0 comments

Data Access Patterns That Makes Your CPU Angry

https://blog.weineng.me/posts/slowest_add
4•birdculture•36m 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.