I was wrong. CRDTs are the future – Joseph Gentle (josephg.com)
1 points by majke 23m ago 0 comments
AI-first – We're just 6 months away from AGI (revontulet.dev)
8 points by rednafi 38m ago 7 comments
Rice University's 2025 UFO Conference (oxfordamerican.org)
2 points by mathgenius 52m ago 1 comments
Add PUT, PATCH, and DELETE to form method attribute
3 jacobr 1 6/1/2025, 12:29:34 PM github.com ↗
Comments (1)
theandrewbailey · 19h ago
A while ago, I was looking at the delete comment buttons on my blog, and noticed the form's POST method, and realized that DELETE would be more semantically accurate. Then I learned that you can't have DELETE as a form method; you can only do that in ajax requests. A casual search about form method DELETE requests mentioned a lot of irrevelant (to me) issues and corner cases around cross origin requests, but almost nothing was said about the happy path of talking to the same server (what I would be doing).