开发者
编程技术、框架工具、最佳实践
共 6847 篇 · 第 105/343 页
Design não se faz sozinho: Friends of Figma mudou como eu vejo design
Abertura Eu sempre participei de comunidades de tecnologia: grupos de estudo do Google,...
Meta datacenter contractor flushed contaminated water
A Roomba recorded a woman on the toilet. How did screenshots end up on Facebook?
Lessons from the Vasa Shipwreck
Rewriting Bun in Rust
Robust Secret Storage in Networks
Lucky young couple lands gig taking care of uninhabited Irish island
Reframing smart glasses as 'pervert glasses'
Benchmarking coding agents on Databricks' multi-million line codebase
Try out IsItCrashing.com
Hi everyone! I recently launched IsItCrashing.com How often do you deploy a website only to discover later that: ❌ A page is returning a 404 or 500 error ❌ Images or assets aren't loading on some random pages ❌ A route is completely blank ❌ JavaScript crashes are breaking the page ❌ Customers find the problem before you do IsItCrashing.com helps you catch these issues before your users do. Simply enter your website URL, and the tool scans your site to identify: ✅ Broken pages (404/500) ✅ Broken links ✅ Missing assets ✅ Blank pages ✅ JavaScript errors ✅ Website health issues Get a clean, easy-to-read report so you can fix problems quickly and deploy with confidence. Whether you're a developer, QA engineer, agency, or website owner, IsItCrashing.com makes website testing faster and easier. try out here : 🌐 https://isitcrashing.com
Decoding JWT: It's Not Encryption, It's a Signature
Every API request needs to answer: who is this, and are they allowed? Session auth answers it by having the server remember every login. JWT answers it by making the client carry its own proof — no server memory needed. What's inside a token Header . Payload . Signature. Header and payload are just base64-encoded — readable by anyone, not encrypted. The signature is what matters: a hash of the header + payload, made with a secret key only the server knows. Change one character of the payload, the signature breaks, the server rejects it. Trust comes from the math, not from hiding the data. Client logs in with credentials Server verifies them, signs a token, sends it back Client attaches the token to every future request Server checks the signature — no database lookup Valid + not expired → request proceeds No session table anywhere. The auth state lives inside the token itself. The trade-off Can't instantly revoke a token — it's valid until it expires. Fix: short-lived access tokens + a revocable refresh token. Payload is readable, so never put sensitive data in it. Security comes from HTTPS + safe client-side storage, not secrecy. One-liner to remember it by Session auth: remember who logged in, check memory each time. JWT: remember nothing, verify the proof each time.
Has America Crossed the Asshole Threshold?
DMS 1.5 "The Wolverine" Released
Cloud Detection at Scale on a Laptop
submitted by /u/Happycodeine [link] [留言]
Mexico Speech Laws for Protecting the Powerless Instead Used to Silence Critics
The classifiers Anthropic puts in front of Fable are too zealous
Turning a pile of documents into a searchable useable knowledge base
Fifth Circuit Says Gov't Can Violate Migrants' Due Process Rights... For 90 Days
I don't want your PRs anymore
submitted by /u/fagnerbrack [link] [留言]