frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What Happens When You Lock Claude in a macOS Sandbox

https://holtwick.de/blog/bx
1•ingve•56s ago•0 comments

A Century-Old Physics Puzzle Solved: The Arrow of Time

1•luckyl•1m ago•1 comments

Plaintext todo lists from tree structures

https://jatabag.com/
1•solaire_oa•4m ago•0 comments

Performance Foundations of Parallel and Distributed Reasoning Language Models

https://arxiv.org/abs/2608.27046
1•matt_d•11m ago•0 comments

Sauron: A free and open source terminal development environment

https://github.com/mlolson/sauron/
1•LordHumungous•14m ago•1 comments

Show HN: Auto-Rig Web – Zero-click 3D humanoid rigging in a Web Worker

https://github.com/nff747/auto-rig-web
2•nff747•15m ago•0 comments

Ask HN: Is September 8th AGI Day?

2•rvz•16m ago•1 comments

Canvas Browser

https://canvas-browser.com
1•bookofjoe•17m ago•0 comments

LG TV shown scanning LAN for third-party phones and other devices

https://arstechnica.com/gadgets/2026/09/lg-tv-shown-capable-of-tracking-user-activity-even-when-o...
6•Bender•21m ago•0 comments

Show HN: I found a weird old startup's LaserDisc

https://www.youtube.com/watch?v=AXOoyxisEMg
1•markchristian•21m ago•0 comments

Q&A with Mark Zuckerberg on Muse, the data center backlash

https://sources.news/p/mark-zuckerberg-meta-muse-ai-podcast-interview
1•utiiiD•21m ago•0 comments

EXtreme Go Horse (XGH) Process

http://brunomb.com/xgh/
1•variety8675•22m ago•0 comments

Colliding the Sum Checksum (2019)

https://mcpherrin.ca/2019/11/23/sum-collisions.html
1•mooreds•23m ago•0 comments

What nobody tells you about writing agent skills

https://newsletter.posthog.com/p/what-nobody-tells-you-about-writing
2•AntonZ234•24m ago•0 comments

How to manage a growing fleet of AI agents with Latitude

https://latitude.so/blog/how-to-manage-a-fleet-of-agents-with-latitude
2•mooreds•24m ago•0 comments

The Lottery of Life

https://substack.com/@rutgerbregman/note/c-332235472
1•higginsniggins•25m ago•0 comments

MCP Client Registration: Dinner Party or Nightclub?

https://fusionauth.io/blog/cimd-vs-dcr
1•mooreds•26m ago•0 comments

Hacking Cable: AI in post-exploitation operations

https://palisaderesearch.org/blog/hacking-cable
1•syumei•28m ago•0 comments

Show HN: Spatial memory for document OCR pipelines (zero dependencies)

https://github.com/aws-samples/sample-textract-field-memory
1•avnban•30m ago•0 comments

Stop making swap partitions–use swap files instead

https://gist.github.com/joshenders/c4960cec9c63a7b7d68ffa9543356c43
1•jenders•31m ago•1 comments

The Solo-Dev Ship Checklist – a 10-item pre-launch checklist for indie devs

https://merlin-ship-checklist.surge.sh
2•clawforger_mthx•31m ago•0 comments

Solo.io Pushes Agentic AI Governance to the Desktop: Open-Source Agentdesktop

https://techstrong.ai/articles/solo-io-pushes-agentic-ai-governance-to-the-desktop-with-open-sour...
1•CrankyBear•31m ago•0 comments

Running agents in a sandbox or VM is the wrong pattern

https://funky.dev/blog/running-agents-in-a-sandbox-or-vm-is-the-wrong-pattern
3•xij•32m ago•0 comments

Despite the chatter, AI pricing is not converging on a model

https://www.solvimon.com/blog/ai-pricing-not-converging-on-single-model
1•arnon•33m ago•0 comments

Refeeding Syndrome

https://en.wikipedia.org/wiki/Refeeding_syndrome
2•chistev•33m ago•0 comments

Show HN: An interactive visualization of Caribbean imperial history

https://contestedworlds.com/
1•jamesgpearce•34m ago•0 comments

Open Models Change the Economics of AI [video]

https://www.youtube.com/watch?v=rY0wnfFHYbs
2•gmays•34m ago•0 comments

A Topological Picture Book, Rendered

https://e-infinity.space/picture-book/
3•mathgenius•36m ago•0 comments

How I Built First-Party Analytics for a Personal Blog

https://gkoreli.com/first-party-analytics-for-a-personal-blog
1•gogakoreli•39m ago•0 comments

The DOJ's AI Fair Use Brief Is Correct, but from a DOJ That Has No Credibility

https://www.techdirt.com/2026/09/08/the-dojs-ai-fair-use-brief-is-correct-but-from-a-doj-that-has...
2•hn_acker•41m 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.