Latest Tech News

Stay updated with the latest in technology, AI, cybersecurity, and more

Filtered by: rv Clear Filter

T-Mobile is shaking things up with a new CEO, but what does that mean for you?

TL;DR Mike Sievert will step down as T-Mobile CEO on November 1, transitioning to the role of vice chairman after five years of leadership. Current COO Srini Gopalan will take over as CEO. Goplan has prior executive experience at Deutsche Telekom, Vodafone UK, and Bharti Airtel. T-Mobile states that Gopalan will lead a strategy focused on becoming a data-driven, AI-enabled, digital-first company while continuing 5G and next-generation network expansion. It has been five years since Mike Sieve

Cap'n Web: a new RPC system for browsers and web servers

12 min read Allow us to introduce Cap'n Web , an RPC protocol and implementation in pure TypeScript. Cap'n Web is a spiritual sibling to Cap'n Proto , an RPC protocol I (Kenton) created a decade ago, but designed to play nice in the web stack. That means: Like Cap'n Proto, it is an object-capability protocol. ("Cap'n" is short for "capabilities and".) We'll get into this more below, but it's incredibly powerful. Unlike Cap'n Proto, Cap'n Web has no schemas . In fact, it has almost no boilerp

Topics: api cap rpc server web

Be careful with Go struct embedding

Go has a feature called struct embedding that allows you to compose types. It looks something like this: type Position struct { X int Y int } type Colour struct { R byte G byte B byte } type Rectangle struct { Position Colour Width int Height int } r := Rectangle { } fmt . Printf ( "%d,%d " , r . Position . X , r . Position . Y ) fmt . Printf ( "%d,%d " , r . X , r . Y ) But what do you think this code does? type FooService struct { URL string } type BarConnectionOptions struct { URL string

Tell the EU: Don't Break Encryption with "Chat Control"

The European Union is pushing a dangerous surveillance law called “Chat Control” that would force tech companies to scan everyone’s private messages — even those protected by end-to-end encryption. This proposal would force tech companies to use “client-side scanning” — so your private messages, photos, and files could be read before you send them, opening the door for hackers, corporations, and governments to spy on your data. If passed, Chat Control won’t just weaken privacy — it will change

Gizmodo Science Fair: An Observatory That Captures the Universe Like Never Before

The Vera C. Rubin Observatory is a winner of the 2025 Gizmodo Science Fair for producing unprecedented views of the universe using a powerful camera—with its immense field of view—and combining it with depth and speed to detect extremely faint objects. The question Can an observatory create a comprehensive survey of the night skies consistently over 10 years, enabling previously impossible discoveries related to dark matter, dark energy, supernovae, and near-Earth asteroids? The results Near

Download responsibly

This month we’ve ramped up the infrastructure behind the download server, and downloads should now be available earlier and faster. There’s also a small technical change in that requests for a “…latest” file will now be answered with a HTTP redirect to the specific latest version (see previous blog post). I would like to use this opportunity to appeal to users of the download server to “download responsibly”. We want to continue offering this service as powerful and as convenient as possible

Show HN: Freeing GPUs stuck by runaway jobs

GPU Kill A CLI tool for managing GPUs across NVIDIA, AMD, Intel, and Apple Silicon systems. Monitor, control, and secure your GPU infrastructure with ease. Community & Support Join our Discord community for discussions, support, and updates: Features Monitor GPUs : Real-time usage, memory, temperature, and processes : Real-time usage, memory, temperature, and processes Kill Processes : Gracefully terminate stuck GPU processes : Gracefully terminate stuck GPU processes Security : Detect cr

Images over DNS

What's the limit of what can be in a TXT record? Some places say 255 bytes. They are wrong. Within a TXT record there are multiple character-strings (RFC 1035 section 3.3.14) and those are limited in length (because a single byte is used for their length), however there can be many of them. The actual limit is limited by the size of the DNS payload, which for UDP is these days around 1232 bytes. That is obviously quite low. However if we use TCP, which doesn't require anything special, other t

Premier League Soccer: Stream Brighton vs. Tottenham Live From Anywhere

Thomas Frank has made a superb start to life as Tottenham manager and the Lilywhites will look to claim another win in the English Premier League on Saturday as they travel to the Amex Stadium to face a stuttering Brighton. Below, we'll outline the best live TV streaming services for watching EPL games as they happen, wherever you are in the world, and how to use a VPN if it's not available where you are. Tottenham comes into this clash after an encouraging week. Spurs thrashed local rival Wes

A Dangerous Worm Is Eating Its Way Through Software Packages

New findings this week showed that a misconfigured platform used by the Department of Homeland Security left sensitive national security information—including data related to the surveillance of Americans—exposed and accessible to thousands of people. Meanwhile, 15 New York officials were arrested by Immigration and Customs Enforcement and the New York Police Department this week in or around 26 Federal Plaza—where ICE detains people in what courts have ruled are unsanitary conditions. Russia c

Security News This Week: A Dangerous Worm Is Eating Its Way Through Software Packages

New findings this week showed that a misconfigured platform used by the Department of Homeland Security left sensitive national security information—including data related to the surveillance of Americans—exposed and accessible to thousands of people. Meanwhile, 15 New York officials were arrested by Immigration and Customs Enforcement and the New York Police Department this week in or around 26 Federal Plaza—where ICE detains people in what courts have ruled are unsanitary conditions. Russia c

One year of Starz is on sale for just $24

Right now, you can get one year of Starz streaming service for just $24 when you prepay for the entire year. That's $46 less than the usual annual cost. There's also a month-to-month option, which is offering the first three months for $4 per month instead of the usual $11; that's a 64 percent discount. Starz may not be one of the most prominent streamers, but it still makes our list of best streaming deals when it's offered at such a great value. The service offers a deep catalog of recognizab

Mastodon has a new plan to make money: Hosting and support services for the open social web

Mastodon, the non-profit organization that maintains the software powering the decentralized alternative to social networks like Threads and X, has a new plan to make money. Instead of relying entirely on donations and grants as before, the company announced this morning it will now offer paid hosting, moderation, and support services for organizations that want to join the open social web. That network, also called the fediverse, offers a way for individuals and organizations to set up their

Playing “Minecraft” without Minecraft (2024)

Post by minki » 2024-12-15 Ever wanted to play the worlds second most popular videogame without actually playing it?First of all, what do I mean by 'Playing "Minecraft" without Minecraft'?To put it simple, Minecraft is a Videogame developed by Mojang. The game consists of two parts, a Client and a Server.Over the years, the community has written many custom cleanroom implementations of both sides, which will allow us to play "Minecraft" without executing any Mojang code.We will be using the Cub

Nostr

There are many problems with Mastodon, mostly due to the fact that it doesn't rely on any cryptography. Because it cannot do the multi-master approach of Nostr due to lack of cryptography, identities are assumed to be "owned" by the server, which is fully trusted by its tenants. Mastodon server owners can do all the harm centralized platforms can do to their underlings, which are completely helpless in case of misbehavior or even in the normal case where a server owner loses their server or deci

OpenTelemetry collector: What it is, when you need it, and when you don't

Do you really need an OpenTelemetry Collector? If you're just sprinkling SDKs into a side project - maybe not. If you're running a multi-service production environment and care about cost, performance, security boundaries, or intelligent processing - yes, you almost certainly do. This post explains exactly what the OpenTelemetry Collector is, why it exists, how data flows with and without it, and the trade‑offs of each approach. You’ll leave with a decision framework, deployment patterns, and p

Playing “Minecraft” Without Minecraft (2024)

Post by minki » 2024-12-15 Ever wanted to play the worlds second most popular videogame without actually playing it?First of all, what do I mean by 'Playing "Minecraft" without Minecraft'?To put it simple, Minecraft is a Videogame developed by Mojang. The game consists of two parts, a Client and a Server.Over the years, the community has written many custom cleanroom implementations of both sides, which will allow us to play "Minecraft" without executing any Mojang code.We will be using the Cub

OpenTelemetry Collector: What It Is, When You Need It, and When You Don't

Do you really need an OpenTelemetry Collector? If you're just sprinkling SDKs into a side project - maybe not. If you're running a multi-service production environment and care about cost, performance, security boundaries, or intelligent processing - yes, you almost certainly do. This post explains exactly what the OpenTelemetry Collector is, why it exists, how data flows with and without it, and the trade‑offs of each approach. You’ll leave with a decision framework, deployment patterns, and p

NordVPN vs. Surfshark: See How These Sister Services Stack Up

James Martin/CNET NordVPN and Surfshark are two of the best virtual private network providers on the market, and while they share some similarities -- including the same parent company -- each packs unique offerings. NordVPN is our pick for the fastest VPN, based on our hands-on testing, while Surfshark earns our vote for the best value VPN. Both VPNs deliver fast speeds, user-friendly apps, handy privacy features and excellent streaming service content unblocking. Overall, I’d recommend Surfs

PSA: The Starbucks app is broken, but here’s how to use it anyway

A slew of people are reporting that the Starbucks app is completely broken. With too-perfect irony, the thing that is breaking it is an app satisfaction survey … Multiple users are reporting that the app forces you to complete the survey before you can use the app to do anything radical like, oh, I don’t know, ordering a cup of coffee. The problem is that even after you have completed the survey, it still doesn’t let you in: it just loops back to the survey. Twitter user Ike found a workaround

Fast Fourier Transforms Part 1: Cooley-Tukey

11 September 2025 Fast Fourier Transforms Part 1: Cooley-Tukey by Connor Boyle tags: mathematicssoftware I’m planning to write a series of posts about fast Fourier transform algorithms. This first post covers the Cooley-Tukey algorithm, which is the original and most well-known FFT algorithm. The Discrete Fourier Transform If \(x\) is a sequence of complex numbers with a length \(\lvert x \rvert\) and a starting index of 0, then the discrete Fourier transform of \(x\), \(\mathcal{F} \{ x \

Rendezvous Hashing Explained (2020)

Rendezvous hashing is an algorithm to solve the distributed hash table problem - a common and general pattern in distributed systems. There are three parts of the problem: Keys: unique identifiers for data or workloads Values: data or workloads that consume resources Servers: entities that manage data or workloads For example, in a distributed storage system, the key might be a filename, the value is the file data, and the servers are networked data servers that collectively store all of the f

Orange Pi RV2 $40 RISC-V SBC: Friendly Gateway to IoT and AI Projects

What if you could explore the innovative world of RISC-V computing without breaking the bank? The Orange Pi RV2 promises exactly that, a budget-friendly gateway into an architecture that’s reshaping the future of processors. With its 8-core RISC-V processor, a host of connectivity options, and a price tag starting at just $40, this single-board computer (SBC) is designed to appeal to developers, hobbyists, and industry professionals alike. But here’s the catch: while it excels in specialized tas

Topics: 40 ai makes risc rv2

Anthropic Wants to Be the One Good AI Company in Trump’s America

Anthropic, the artificial intelligence company behind the chatbot Claude, is trying to carve out a spot as the Good Guy in the AI space. Fresh off being the only major AI firm to throw its support behind an AI safety bill in California, the company grabbed a headline from Semafor thanks to its apparent refusal to allow its model to be used for surveillance tasks, which is pissing off the Trump administration. According to the report, law enforcement agencies have felt stifled by Anthropic’s usa

Anthropic irks White House with limits on models’ use

Anthropic is in the midst of a splashy media tour in Washington, but its refusal to allow its models to be used for some law enforcement purposes has deepened hostility to the company inside the Trump administration, two senior officials told Semafor. Anthropic recently declined requests by contractors working with federal law enforcement agencies because the company refuses to make an exception allowing its AI tools to be used for some tasks, including surveillance of US citizens, said the off

Man Applies for Job, Sits for Interview, Then Realizes They're Trying to Peddle "Mock Interviews With an AI Interviewer"

When a job seeker named Conor recently applied for a content architecture position, something felt off right away. For one thing, he got an offer for a virtual job interview just minutes after he applied, which seemed like a suspiciously quick turnaround time in today's beleaguered job market. Was there any way that a human had actually reviewed his application? And when he logged in for the interview, he immediately realized he was talking to an AI system, not a human. It wasn't the first tim

On iOS 26 with a T-Satellite plan? These six iPhone apps work via satellite

When T-Mobile launched its T-Satellite service back in July, iPhone users were limited to text messaging via satellite – but the company promised that support for selected additional apps would follow. With the launch of iOS 26, the company has started to make good on that promise, with support for six apps so far. Notably, you don’t need to choose T-Mobile as your carrier in order to subscribe to the service … T-Satellite from T-Mobile We’d known since 2022 that T-Mobile would be SpaceX’s fi

Lyft and Waymo are partnering to bring robotaxis to Nashville

Waymo has struck a deal with ride-hailing company Lyft to launch a robotaxi service in Nashville in 2026. The company said Wednesday it will begin testing its fleet of all-electric and autonomous Jaguar I-Pace vehicles in the Nashville area in the coming months and will open up the service to the public next year. The partnership agreement announced Wednesday comes as Waymo ramps up its robotaxi expansion from its initial commercial market of Phoenix to Atlanta, Austin, Los Angeles, and San Fr

Worldwide AI spending could hit $1.5 trillion by the end of 2025

Getty Images/BlackJack3D Follow ZDNET: Add us as a preferred source on Google. ZDNET's key takeaways Global AI spending has been on an upward trajectory. These expenditures will top $2 trillion in 2026. GenAI smartphones, AI-optimized servers lead spending. The AI boom has triggered widespread interest in AI adoption to optimize business processes and individual workflows. This demand has also been a catalyst for large-scale investments in AI infrastructure to support those goals, and a ne