frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A complex structure on S^6 [pdf]

https://alpo.ge/s6.pdf
1•robinhouston•55s ago•0 comments

Implementation of GPT-2 in pure CMake

https://github.com/AlpinDale/gpt2.cmake
1•porridgeraisin•7m ago•0 comments

Ask HN: How to Onboard to New Domains

1•kwojcicki•8m ago•0 comments

AI robotics companies love San Francisco. They're just too big to stay

https://sfstandard.com/2026/08/23/ai-robotics-san-francisco-bright-machines/
1•newsomix9xl•11m ago•0 comments

Inkwell: Software Factory and rebootable sandbox on a throwaway VM

https://github.com/disler/inkwell-agent-sandboxes-and-software-factory
1•mooreds•12m ago•0 comments

It's OK to not be passionate about your job

https://text.npr.org/1076978534
1•mooreds•13m ago•0 comments

Seven nobles' 1688 letter inviting William of Orange to take the English throne

https://www.nationalarchives.gov.uk/education/resources/glorious-revolution/glorious-revolution-s...
3•mooreds•14m ago•0 comments

AI reshapes India's IT services sector contracts as clients demand more for less

https://www.reuters.com/world/india/ai-reshapes-indias-it-services-sector-contracts-clients-deman...
1•prabal97•14m ago•0 comments

Everything is Nix if you squint hard enough

https://jrdsgl.com/everything-is-nix-if-you-squint-hard-enough/
1•hnaccount93•14m ago•0 comments

Digital Public Library of America

https://dp.la/
1•hakkikonu•16m ago•0 comments

Push Go for Pushbullet

https://chromewebstore.google.com/detail/push-go-for-pushbullet/dghndapbehjdbhiffbckojkhoennbofg
1•yablak•17m ago•1 comments

The Data Center Backlash Bursts into the Midterms

https://www.nytimes.com/2026/08/23/us/politics/data-centers-midterm-elections.html
5•newsomix9xl•21m ago•0 comments

Across Nashville, Parked Waymos Are Recording Your Neighborhood

https://www.gadgetreview.com/across-nashville-parked-waymos-are-recording-your-neighborhood
3•HotGarbage•23m ago•0 comments

An elliptic curve of rank 31

https://twitter.com/mathandcobb/status/2091618274320552349
3•vicgalle_•27m ago•1 comments

Good and Bad Reasons to Become an Entrepreneur

https://medium.com/i-m-h-o/good-and-bad-reasons-to-become-an-entrepreneur-decf0766de8d
1•BASSAMej•29m ago•0 comments

Show HN: Photo Gallery Without JavaScript

https://ricobeck.de/photostream.html
2•ricobecks•31m ago•0 comments

The VLA and High-Frequency SETI: Expanding the Search for Life

https://arxiv.org/abs/2608.18275
2•root-parent•37m ago•0 comments

Show HN:Tool that checks if your AI-generated content are marked AI Act Art. 50

https://aiactverify.edenlabs.eu
1•lucapersichini•38m ago•0 comments

Cursor beat Git's scalability shortcomings

https://www.theregister.com/devops/2026/08/23/how-cursor-beat-gits-scalability-shortcomings/5291421
2•sbulaev•41m ago•0 comments

Optimizing memory use in a Markdown parser

https://blog.kowalczyk.info/a-n8wf/optimizing-memory-use-in-markdown-parser.html
2•blueshoess•45m ago•0 comments

Wallpaper Engine On Linux (native translation layer library)

https://github.com/shdwmtr/wallpiper
1•shadowmonster•48m ago•0 comments

Leyline: KV Cache Directives for Agentic Inference

https://arxiv.org/abs/2606.01065
3•Bluestein•51m ago•0 comments

Cicada.os – Graphene.os for Your Laptop

https://kpres12.github.io/Cicada.OS/
2•kpres62•52m ago•1 comments

Show HN: A way to let agents reliably pay for things

https://shopstack.ai/
1•windyVector•56m ago•0 comments

IXUI: A Proxmox/ESXi-Style Web UI for Incus

https://github.com/xlmnxp/ixui
2•xlmnxp•57m ago•1 comments

Residential proxies scraping your site? Drain their bandwidth

https://layer3intel.com/blog/residential-proxy-bandwidth-drain
4•Rasbora•58m ago•0 comments

The Summer of Open Weights

https://martinalderson.com/posts/the-summer-of-open-weights/
3•garo-pro•1h ago•1 comments

Declarative WebGPU with S-Expressions

https://hugodaniel.com/posts/declarative-webgpu-with-s-expressions/
2•hugodan•1h ago•0 comments

Bolt Graphics' Advanced GPU to Take on Nvidia – Architosh

https://architosh.com/2026/07/bolt-graphics-advanced-gpu-to-take-on-nvidia/
2•rbanffy•1h ago•0 comments

Ask (Your Terminal)

https://github.com/benja/ask
1•handfuloflight•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.