frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Discovering Multiagent Learning Algorithms with Large Language Models

https://arxiv.org/abs/2602.16928
1•gmays•3m ago•0 comments

Postgres Jsonb Columns and Toast: A Performance Guide

https://www.snowflake.com/en/engineering-blog/postgres-jsonb-columns-and-toast/
1•craigkerstiens•6m ago•0 comments

(paper money) Hedge Fund staffed by AI Employees (experiment)

https://platypi.empla.io
1•pokot0•9m ago•1 comments

Show HN: Bloomfilter – A service for AI agents to register and manage domains

https://bloomfilter.xyz/
1•eronmmer•11m ago•0 comments

Examining Bias and AI in Latin America

https://elpais.com/america/lideresas-de-latinoamerica/2026-02-25/genero-racismo-y-xenofobia-asi-s...
1•shakiness3383•11m ago•0 comments

Show HN: WebMCP Core – AI agent tool definitions from any site

https://github.com/keak-ai/webmcp-core
1•eman11•11m ago•0 comments

Anthropic is dropping its signature safety pledge amid a heated AI race

https://www.businessinsider.com/anthropic-changing-safety-policy-2026-2
1•rahulskn86•14m ago•0 comments

Eleven Freedoms for Free AI

https://elevenfreedoms.org/
1•pabs3•17m ago•0 comments

Average Typing Speeds based on 221k user typing sessions

https://www.typequicker.com/average-typing-speed
1•absoluteunit1•18m ago•0 comments

WTF Happened in 2025?

https://wtfhappened2025.com/
4•swyx•21m ago•0 comments

Dead Internet Theory – A Win?

https://medium.com/@brandon_89699/4df2f34cba14
1•Fine-Palp-528•22m ago•0 comments

Open-Source Agent Operating System

https://github.com/RightNow-AI/openfang
3•OsamaJaber•23m ago•1 comments

RAG on a Budget: How I Replaced a $360/Month OpenSearch Cluster for $1.12/Month

https://stephaniespanjian.com/blog/rag-cost-reduction-replaced-opensearch-s3-in-memory-search
2•StephSpanjian•26m ago•1 comments

Tech Companies Shouldn't Be Bullied into Doing Surveillance

https://www.eff.org/deeplinks/2026/02/tech-companies-shouldnt-be-bullied-doing-surveillance
5•pseudolus•27m ago•0 comments

Honey Fraud as a Moving Analytical Target: Omics-Informed Authentication

https://www.mdpi.com/2304-8158/15/4/712
2•PaulHoule•28m ago•0 comments

Claude Code Video Toolkit

https://github.com/wilwaldon/Claude-Code-Video-Toolkit
1•stagezerowil•28m ago•0 comments

Show HN: Unix for the Commodore 64? Open Source

https://github.com/ascarola/c64ux/releases/tag/v0.7
1•ascarola•28m ago•0 comments

Which web frameworks are most token-efficient for AI agents?

https://martinalderson.com/posts/which-web-frameworks-are-most-token-efficient-for-ai-agents/
1•gmays•28m ago•0 comments

Show HN: Architect-Linter – Enforce architecture rules

https://crates.io/crates/architect-linter-pro
1•sergegriimm•31m ago•0 comments

Pete Hegseth and the AI Doomsday Machine

https://robertreich.substack.com/p/pete-hegseth-and-the-ai-doomsday
5•doener•32m ago•1 comments

Show HN: RubyLLM:Agents – A Rails engine for building and monitoring LLM agents

https://github.com/adham90/ruby_llm-agents
4•adham900•32m ago•0 comments

FBI raids of LAUSD Supt.'s home and office appear tied to AI chatbot probe

https://www.latimes.com/california/story/2026-02-25/fbi-raid-lausd-search-warrants
4•cdrnsf•33m ago•0 comments

Submitle – Submit, Share, and Discover Links Online

https://www.submitle.com/
1•exchangler•34m ago•0 comments

Show HN: OpenTrace – Self-hosted observability server with 75 MCP tools

https://github.com/adham90/opentrace
3•adham900•36m ago•0 comments

AT&T Acquires CenturyLink

https://old.reddit.com/r/Portland/comments/1reucu3/this_sucks_worse_than_you_may_yet_realize/
3•fullstacking•37m ago•1 comments

Automatic Discharges of Student Loans to Proceed After Dual Court Wins

https://www.forbes.com/sites/adamminsky/2026/02/25/automatic-discharges-of-student-loans-to-proce...
3•toomuchtodo•37m ago•1 comments

Multi-agent workflows often fail

https://github.blog/ai-and-ml/generative-ai/multi-agent-workflows-often-fail-heres-how-to-enginee...
1•e2e4•39m ago•0 comments

Show HN: Open-source MCP servers for self-hosted homelab AI

2•ai_engineering•40m ago•0 comments

Show HN: PixShot – Screenshot and OG Image API

https://pixshot.dev
1•juanjosegongi•40m ago•1 comments

Lawsuit could slow Micron DRAM chipmaking project in New York

https://www.syracuse.com/micron/2026/02/whos-behind-the-lawsuit-that-could-slow-microns-chipmakin...
1•walterbell•41m ago•1 comments
Open in hackernews

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

2•zwnow•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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/