frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GemCities – Free Gemini:// capsule hosting

https://gemcities.com/
1•rickcarlino•1m ago•0 comments

Memora: A Harmonic Memory Representation Balancing Abstraction and Specificity

https://www.microsoft.com/en-us/research/blog/memora-a-harmonic-memory-representation-balancing-a...
1•matt_d•5m ago•0 comments

How to Optimize Tools for Agents

1•Tanxsinxlnx•5m ago•0 comments

Show HN Earned vs. Burned, Claude skill for measuring AI delivery value

https://github.com/harveer10x/earned-vs-burned-skill
1•harveer10x•7m ago•0 comments

Brain2Qwerty v2 – Meta's non-invasive brain-computer interface

https://facebookresearch.github.io/brain2qwerty/
1•GracefullyShot•7m ago•0 comments

Real-time Exchange and Office pipeline health, SLAs, incidents, and builds

https://autobops-dashboard.azurewebsites.net/
1•guessmyname•12m ago•0 comments

The High School Pipeline to South Korea's Chip-Making Fortunes

https://www.nytimes.com/2026/06/26/business/korea-chip-high-school.html
1•ripe•26m ago•0 comments

Writing an Immutable WASM VM

https://astledsa.substack.com/p/writing-an-immutable-wasm-vm
1•astledsa•29m ago•0 comments

The Search for El Dorado: How DS and ML Unlocked the Markets of Latin America

https://medium.com/@alanscottencinas/how-data-science-unlocked-latin-americas-hidden-markets-8e6c...
1•encinas88•30m ago•0 comments

Is the U.S. Labor Force Nearing Its Peak?

https://fedinprint.org/item/fedkeb/103458
1•toomuchtodo•31m ago•1 comments

Technological Involution

https://rohan.ga/blog/technological-involution/
2•ocean_moist•32m ago•0 comments

When Impressive Performance Gains Do Not Matter

https://blog.colinbreck.com/when-impressive-performance-gains-do-not-matter/
3•matheusmoreira•39m ago•0 comments

Caution: Content Warnings Do Not Reduce Distress, Study Shows (2023)

https://www.psychologicalscience.org/news/2023-october-content-warnings-distress.html
3•Teever•40m ago•1 comments

'Perfumed Palaces: Purgatory Simulator' "found" roguelike vibe-coded in 30 days

https://store.steampowered.com/app/4802100/Perfumed_Palaces_Purgatory_Simulator/
2•MUTHRI•41m ago•0 comments

Plaintiffs allege the use of scents discriminates against them under the Ada

https://www.law.com/corpcounsel/2026/06/28/hotels-face-a-new-kind-of-disability-lawsuit-over-frag...
2•cnst•42m ago•1 comments

Markit – a fast, native Markdown editor (Go and Wails)

https://markit-md.vercel.app/
1•bilal-shemsu•47m ago•0 comments

Tech Morality Is Hard

https://forkingmad.blog/tech-morality-is-hard/
2•birdculture•48m ago•2 comments

GrapheneOS cites Hyundai, Kia as it pressures Volkswagen over app block

https://cyberinsider.com/grapheneos-cites-hyundai-kia-as-it-pressures-volkswagen-over-app-block/
2•Cider9986•49m ago•1 comments

Show HN: Vibe zsh, turn natural language into shell commands

https://github.com/skymoore/vibe-zsh
2•iamsky•49m ago•0 comments

Show HN: Crudio – Turn an OpenAPI spec into a stateful mock back end

https://github.com/enricodeleo/crudio
1•enricodeleo•50m ago•0 comments

WhatsApp opens username reservations ahead of feature rollout

https://cyberinsider.com/whatsapp-opens-username-reservations-ahead-of-feature-rollout/
1•Cider9986•51m ago•0 comments

Gino Bartali – Some medals are made to hang on the soul, not the jacket

https://en.wikipedia.org/wiki/Gino_Bartali
1•lifeisstillgood•51m ago•0 comments

Compiler-Assisted Floating-Point Error Analysis and Profiling with FPChecker

https://fpanalysistools.org/ISC26/
2•matt_d•55m ago•0 comments

OpenClaw Is Now on iOS and Android

https://twitter.com/openclaw/status/2071688039114342592
5•minimaxir•58m ago•2 comments

Meta Posed as Teens to Prompt Rival Chatbots About Suicide, Sex, and Drugs

https://www.wired.com/story/meta-contractors-pretending-to-be-teens-chatbot-testing/
6•meander_water•58m ago•2 comments

Show HN: Hawkeye – local code search for MS/Linux, fast 500k+ file codebase

https://www.zaragsoft.se
2•hawkeye_zarag•59m ago•0 comments

macOS Golden Gate icon comparison

https://basicappleguy.com/basicappleblog/macos-golden-gate-icon-comparison
3•tzmlab•1h ago•0 comments

Super Micro Raided as Taiwan Expands Chip Smuggling Probe

https://www.bloomberg.com/news/articles/2026-06-29/super-micro-office-raided-as-taiwan-expands-ch...
4•voxadam•1h ago•0 comments

HamsterOS – Mean Hamster Software

https://www.meanhamster.com/products/hamsteros
4•colinprince•1h ago•1 comments

I Built a Voice API So My Mother Could Book a Taxi in Lomé(Togo)

https://kuma.compeel.com/
2•catdieng•1h ago•0 comments
Open in hackernews

Ask HN: Why is web auth not a solved issue?

2•zwnow•1y ago
Personally, every project I start, I quit due to not being comfortable with the auth implementation.

I've been into web development for 4 years now. During my research regarding auth in this timeframe, I have found a million reasons on why I should not roll it myself. The reason is always it being to difficult to implement, too much responsibility and basically no matter how I'd do it, it would be unsafe.

The general consensus among web developers seems to be to just let a third party do it. And I understand the reasoning, they are experts and have decades of experience on that specific thing. It makes sense as long as you're fine with third party service dependencies for your application. However, I don't want that. I do not feel comfortable submitting my users data to tech giants for obvious reasons.

I am wondering why it's so difficult to implement secure auth? Why can frameworks like Laravel or Phoenix just generate auth solutions? Why should I trust them, if everyone is saying I shouldn't roll it myself?

After all, if Laravels or Phoenix generated auth isn't safe, I am the one taking responsibility anyway, no?

To my understanding web auth has been an issue for decades now, why aren't there protocols in place to solve it? Or if they are, why aren't they talked about a lot?

Considering how often I read about auth breaches with the big players in the game (Firebase as an example) I am not comfortable trusting third parties with that task either.

So how is one supposed to do it? There are so many JWT tutorials on youtube, but apparently JWTs aren't safe either. Then there are session cookies, which also aren't safe? Why is that?

I am also not talking about authorization. I specifically mean authentication. If I wanted a micro blog platform where users can log into their accounts and write about stuff, how would I make sure it's secure without having to trust third parties, especially big tech companies who repeatedly prove they cant be trusted over and over again?

Comments

arrowsmith•1y ago
> if Laravels or Phoenix generated auth isn't safe

What makes you think they're not safe? Zillions of successful apps have been built using Laravel and Phoenix and (afaik) no-one has hacked their auth code yet. The code is open-source for anyone to inspect for vulnerabilities. I wouldn't feel unsafe using them.

You seem to misunderstand what it means to "roll your own auth".

"Don't roll your own auth" doesn't mean "use a third-party auth provider". It means "use an existing, expert-made auth solution and don't try to write it yourself."

That can be a third-party provider like Firebase, it can be a code dependency like Rails's Devise, it can be generated by `phx.gen.auth` in Phoenix, it doesn't matter - the point is that you're using a tried-and-tested auth solution written by someone who knows what they're doing.

Writing your own auth code is generally a bad idea because it's complicated, time-consuming and easy to get wrong. But there are zillions of off-the-shelf solutions you can use that have been created by security experts and battle-tested in thousands of production apps. As far as I'm concerned, web auth is a solved problem.

zwnow•1y ago
Interesting. When I generate auth for Phoenix the API endpoints are not piped through any security pipes. Only the browser endpoints. Why wouldn't I secure my API endpoints? The same kind of requests that are made for browser requests are sent to the API routes, so this is really confusing.
arrowsmith•1y ago
Ah yes. `phx.gen.auth` generates a cookie-based auth system, which is fine for the :browser pipeline but it's not generally what you want for a JSON API.

The Phoenix docs include a suggestion for how you can extend `phx.gen.auth` to add token-based authentication to your API: https://hexdocs.pm/phoenix/api_authentication.html

(No, this isn't "rolling your own auth" either, it's using someone else's pre-written auth code.)

johncoltrane•1y ago
> The general consensus among web developers seems to be to just let a third party do it.

Outside of personal projects, third-party auth providers must be audited (think GDPR or PIPL), budget must be allowed, contracts signed, etc. so web developers rarely, if ever, have their say on the matter. The decision is taken long before anyone wrote a single line of code. From a project management perspective, it's an easy trade-off to make: one sprint for integrating Okta versus who knows how many for badly implementing something that requires a level of expertise that no one on the team has reached.

For personal projects, the trade-off is a bit different. Resources are scarce so, even if implementing auth is actually not very complicated(1) and can even be quite fun, there are probably more immediately interesting things to do. So you integrate a third-party solution in a wednesday night and you move on.

[1] https://thecopenhagenbook.com/