开发者
编程技术、框架工具、最佳实践
共 7459 篇 · 第 312/373 页
Google will pay SpaceX $920M per month for compute
The companies announced the deal on Friday, just one week ahead of SpaceX's historic IPO.
Are Memories Transferable – Or Edible?
Why Can't California Count?
Aging and Eye Problems
"We pissed off a lot of people": Giant data center plan cut 50% amid protests
Developer felt "beaten up," with "no choice" but to shrink data center.
Harness engineering: Leveraging Codex in an agent-first world
Cloudflare CEO Is Lying to You About the Bot Traffic Jump
Advanced micro reactor achieves criticality in only two years
Symbolica 2.0: Programmable Symbols for Python and Rust
The destruction of 3D printing: Bloomberg is behind it [video]
Review: Spider-Noir recaptures the magic of a bygone era
Nicolas Cage was born to play 1930s PI Ben Reilly/The Spider: part Bogart, part Bugs Bunny, 100% Cage-y.
SVG of a Hamster Playing Table-Tennis
Gov.uk has replaced Stripe with Dutch provider Adyen
https://gds.blog.gov.uk/2026/06/02/building-for-the-future-m... https://www.adyen.com/press-and-media/adyen-payments-gov-uk
Mantine-datatable (and others) compromised – owner account suspended
The company I work for is losing all of its humanity, I don't know where to go
Let's celebrate work that is 100% human-made
Google and FBI warn of ransomware group that sends fake IT workers to hack victims in person
Cybercriminals, part of a gang known as Silent Ransom Group, have sent people pretending to be IT support employees to law firms' offices, where the criminals have stolen data using USB drives or remote access tools.
U.S. Military Turned GPS into a Global "Numbers Station"
Advice Needed: itty-sockets positioning (NPM library)
Some time ago, I embarked on the journey to radically simplify building realtime apps. I wanted: No backend/socket.io setup, and no logins A simpler client to handle race conditions Ultimately I came up with: A public/free relay server that anyone can use A thin WebSocket client that talks directly to that service (or any other WS server) The Dilemma: I always assumed it should be angled at the rapid prototyping crowd, since it's literally a service you can use in a single line from your browser DevTools, but the client itself is pretty f*cking amazing... for ~466 bytes, you can do things like this: connect('wss://socket.massive.com/crypto') .on('*', e => console.log(e['0'])) // listen .send({ action: 'auth', params: 'MY-API-KEY' }) // login .send({ action: "subscribe", params: "XQ.*" }) // subscribe If you notice, that's usually a race-condition nightmare that involves callbacks/promises, etc. The tiny client sorts all that out under the hood (and much more). While of course I use the underlying service to power apps, I find myself using the client itself just to check any existing WS service, because it's 100x easier to use than native WS code. The Question In the NPM library specifically, which should I focus on? The hosted integration, or strictly as a more user-friendly WebSocket client (with an aside mention of the integrated service)? It's all 100% free, so it's not like this is a product question - it's more of a "am I sleeping on something that could help more of the community?" question. submitted by /u/kevin_whitley [link] [留言]