frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Agentic Engineering Patterns

https://simonwillison.net/guides/agentic-engineering-patterns/
1•vinhnx•4m ago•0 comments

Might Be the Most Underrated Resource for Early Stage Founders

1•vibecoder21•7m ago•0 comments

Kakveda open source-level AI, Infra observability agent

https://www.kakveda.com/
1•prateekdalal•7m ago•1 comments

What Is It That Makes Today's Homes So Different, So Appealing?

https://smarthistory.org/richard-hamilton-just-what-is-it/
1•Torwald•8m ago•0 comments

How LDAP Works

https://growingswe.com/blog/ldap
1•vismit2000•9m ago•0 comments

How you invent math: From counting to complex numbers

https://growingswe.com/blog/inventing-math
1•vismit2000•9m ago•0 comments

Stop Burning Your Context Window – How We Cut MCP Output by 98% in Claude Code

https://mksg.lu/blog/context-mode
1•mksglu•9m ago•1 comments

Zerobyte

https://github.com/nicotsx/zerobyte
1•Erenay09•11m ago•0 comments

Researchers praise 'stunning' results of new prostate cancer treatment

https://www.theguardian.com/society/2026/feb/28/researchers-praise-stunning-results-of-new-prosta...
2•sandebert•12m ago•0 comments

Robotic Land Drone holds positions in Ukraine frontline for 45 days

https://www.youtube.com/watch?v=JMTSH1U44cw
2•lifeisstillgood•17m ago•0 comments

The Missing Piece of AI Discourse Is Trust

https://philipptanlak.com/the-missing-piece-of-ai-discourse-is-trust/
1•philippta•18m ago•0 comments

Modula-2

https://en.wikipedia.org/wiki/Modula-2
3•tosh•22m ago•0 comments

US Customs destroy a rare floppy disk containing demo version of Tsukihime

https://www.timeextension.com/news/2026/02/literally-crying-right-now-50-copies-of-this-adult-onl...
2•FMecha•22m ago•0 comments

ErsatzTV Has Been Archived

https://github.com/ErsatzTV/ErsatzTV/issues/2839
1•kassner•23m ago•0 comments

The Ml.energy Leaderboard

https://ml.energy/leaderboard/
1•kgolubic•25m ago•0 comments

Jeffrey Epstein saw promise in Bitcoin – and its far-right supporters

https://www.theverge.com/tech/885252/jeffrey-epstein-bitcoin-cryptocurrency-connections
1•robtherobber•28m ago•0 comments

Surface-Stable Fractal Dithering

https://runevision.com/tech/dither3d/
1•fanf2•29m ago•0 comments

Show HN: I Turned My CV into a Space Invaders Game (Rust and WASM)

https://breezko.dev
1•breezk0•30m ago•0 comments

Show HN: JobSeek Expat – a CLI tool to scrape English speaking jobs on LinkedIn

https://github.com/electricalgorithm/jobseek-expat
2•gyokhan•33m ago•0 comments

Accuracy vs. Speed in Local LLMs: Finding Your Sweet Spot

https://grigio.org/accuracy-vs-speed-in-local-llms-finding-your-sweet-spot/
1•grigio•36m ago•0 comments

Silent March (2021)

https://tobiaskucera.art/en/tichy-brezen/
1•theobias•36m ago•0 comments

Nano Banana 2 AI Image Generator – Pro Quality, Flash Speed

https://veevid.ai/nano-banana-2
1•jacksteven•37m ago•0 comments

Czinger 21C review: flat out in America's £1.6M, 3D-printed hypercar

https://www.topgear.com/car-reviews/czinger/21c/first-drive
1•teleforce•38m ago•0 comments

Ask HN: Is Electronic Data Interchange still used in e-commerce?

1•shivajikobardan•40m ago•1 comments

Orbit – Diagnose why your robot policy fails and what data to collect next

https://github.com/Rahillasne/Orbit
1•rahillasne•40m ago•1 comments

Iran is in near-total internet blackout

https://mastodon.social/@netblocks/116147264437940657
6•us321•43m ago•0 comments

Ask HN: Is This Start of the End?

4•FrankSaaSDev•43m ago•2 comments

Show HN: Brandomica – Check if a brand name is safe to launch 1n one search

https://www.brandomica.com
1•brandomica•44m ago•0 comments

Django-Bolt: High-Performance Typed API Framework for Django

https://github.com/dj-bolt/django-bolt
1•0x1997•46m ago•0 comments

Show HN: A seedable stream shuffler modeled as a roundabout network (Python)

https://pypi.org/project/roundamix/
1•velocitatem•50m 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•10mo ago

Comments

kemotep•10mo 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.