Latest Tech News

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

Filtered by: cl Clear Filter

From chatbots to collaborators: How AI agents are reshaping enterprise work

Join the event trusted by enterprise leaders for nearly two decades. VB Transform brings together the people building real enterprise AI strategy. Learn more Scott White still marvels at how quickly artificial intelligence has transformed from a novelty into a true work partner. Just over a year ago, the product lead for Claude AI at Anthropic watched as early AI coding tools could barely complete a single line of code. Today, he’s building production-ready software features himself — despite n

"Truly Psychopathic": Concern Grows Over "Therapist" Chatbots Leading Users Deeper Into Mental Illness

As of April, according to an analysis by the Harvard Business Review, the number one use of AI chatbots is now therapy. The more we learn about what that looks like in practice, the less it sounds like a good idea. That's not entirely surprising: even AI experts remain hazy on exactly how the tech actually works, top companies in the industry still struggle to control their chatbots, and a wave of reporting has found that AI is pushing vulnerable people into severe mental health crises. So it'

The government’s Apple antitrust lawsuit is still on

is The Verge’s executive editor. He has covered tech, policy, and online creators for over a decade. The US Department of Justice notched an initial win in its antitrust case against Apple today, with a federal judge rejecting Apple’s attempt to dismiss the lawsuit outright. The government’s allegations are “sufficient to demonstrate Apple’s specific intent to monopolize the smartphone and performance smartphone market,“ Judge Julien Neals wrote in an opinion on Monday. Apple filed to dismiss

What happened when Anthropic's Claude AI ran a small shop for a month (spoiler: it got weird)

Daniel Grizelj/Getty Images Large language models (LLMs) handle many tasks well -- but at least for the time being, running a small business doesn't seem to be one of them. On Friday, AI startup Anthropic published the results of "Project Vend," an internal experiment in which the company's Claude chatbot was asked to manage an automated vending machine service for about a month. Launched in partnership with AI safety evaluation company Andon Labs, the project aimed to get a clearer sense of h

How to clear your TV cache (and why it greatly enhances your viewing experience)

Kerry Wan/ZDNET In the age of smart TVs, convenience is king. With just a few clicks, we can dive into endless entertainment -- but that ease comes with a downside: the buildup of cache data. Also: How to disable ACR on your TV (and why doing so makes such a big difference) Just like on your phone or computer, a cluttered TV cache can lead to sluggish performance, app crashes, and even hinder new content from loading properly. That's why it's important to clear all that extra cache and make y

CarPlay Ultra hands-on reveals its standout best new feature

iOS 26 is one of CarPlay’s biggest updates in years, but we shouldn’t forget that Apple has another major CarPlay launch this year. CarPlay Ultra has officially arrived, and a hands-on published today identifies its strengths. Customization is the biggest strength of CarPlay Ultra Bradley Iger at The Verge got to spend some time with CarPlay Ultra in the Aston Martin DBX707. It’s currently one of the only vehicles that offers CarPlay Ultra—and it took years to get to this point. Aston Martin

Anthropic's Claude stocked a fridge with metal cubes when it was put in charge of a snacks business

If you're worried your local bodega or convivence store may soon be replaced by an AI storefront, you can rest easy — at least for the time being. Anthropic recently concluded an experiment, dubbed Project Vend, that saw the company task an offshoot of its Claude chatbot with running a refreshments business out of its San Francisco office at a profit, and things went about as well as you would expect. The agent, named Claudius to differentiate it from Anthropic's regular chatbot, not only made s

How and Where to Recycle Your Old Computers and Printers

Everyone's got old, unused devices sitting around their homes. It can be weirdly difficult to get rid of your old laptop, desktop or printer -- even when it's been over a decade since you last switched it on. But recycling old tech can free up a lot of space in your home. A recent CNET survey found that 31% of US adults are still holding onto unused old devices, including laptops, because they're unsure of what to do with them. The survey also found that 19% of respondents just toss old devices

Oracle stock jumps after $30 billion annual cloud deal revealed in filing

Oracle CEO Safra Catz speaks at the FII PRIORITY Summit in Miami Beach, Florida, on Feb. 20, 2025. Oracle shares jumped more than 5% after a recent filing showed a cloud deal that would add over $30 billion annually. CEO Safra Catz is slated to share the deal news at a company meeting Monday, according to a filing with the Securities and Exchange Commission. The revenues are expected to start hitting in the 2028 fiscal year. "Oracle is off to a strong start in FY26," Catz is expected to say,

So you want to serialize some DER?

So you want to serialize some DER? (Editor’s Note: My day job is at Anthropic.) This story starts where all good stories start, with ASN.1. ASN.1 is… I guess you’d call it a meta-serialization format? It’s a syntax for describing data abstractly (a notation, you might say), and then there’s a bunch of different actual encodings that you can use to turn data into bytes. There’s only one encoding I choose to acknowledge, which is DER (the Distinguished Encoding Representation, it’s got a monocle

Google bets on fusion power as its greenhouse gas emissions grow

is a senior science reporter covering energy and the environment with more than a decade of experience. She is also the host of Hell or High Water: When Disaster Hits Home , a podcast from Vox Media and Audible Originals. Google has agreed to purchase electricity from a forthcoming nuclear fusion power plant, the so-called holy grail of clean energy that scientists have been chasing for more than half a century. While the fusion industry reached a significant milestone a few years ago, the tec

Roborock Prime Day deals: Affordable and powerful, the Qrevo and Q Series robot vacuums can do it all

Summer is here! But as much as we’d like to spend every weekend outdoors and enjoy the warm weather, the one thing that often gets in the way of exciting plans is tedious chores. Roborock has at least some of this busy work taken care of with its new Q Series and Qrevo robot vacuums. Roborock’s current releases, which include the Roborock Q7 M5+, the Q10 S5+, the QV 35A, and the Qrevo S5V, will continue to be available at special introductory prices during Prime Day. Here’s everything you need

Cross-Compiling Common Lisp for Windows

By Colin on 2025-06-28 I recently enabled Windows support for my Raylib bindings library and a game of mine that uses it, Aero Fighter. The process was surprisingly smooth. This article describes how to: cross-compile C code for Windows from Linux install a Windows-based SBCL with Wine run that SBCL as your REPL in Linux-based Emacs load .dll files into a Lisp image files into a Lisp image produce a .exe executable of a Lisp program Cross-compiling C We can easily produce Windows execut

Google rolls out Veo 3 video generator, try it for free using credits

Google is rolling out Veo 3 to everyone using Vertex AI, which is an ML-testing platform provided by Google Cloud. Unlike Sora and other generative video AI models, Veo 3 is a state-of-the-art video generator trained on millions of YouTube videos, and it can generate realistic videos, but great quality comes at a high cost. Veo 3 isn't free, but since it's part of Google Cloud, you can use it for free by subscribing to the $300 trial offered by Google. To get started, you can sign up for a Go

Use keyword-only arguments in Python dataclasses

Python dataclasses are a really nice feature for constructing classes that primarily hold or work with data. They can be a good alternative to using dictionaries, since they allow you to add methods, dynamic properties, and subclasses. They can also be a good alternative to building your own class by hand, since they don’t need a custom __init__() that reassigns attributes and provide methods like __eq__() out of the box. One small tip to keeping dataclasses maintainable is to always construct

The $25k car is going extinct?

View in browser Issue #353 Sunday, June 29, 2025 Why the $25,000 car is going extinct Can’t find an affordable car anywhere? You’re not the only one. BY MARK DENT In late 2021, Ford released the Maverick, a compact pickup truck. At roughly half the cost and half the weight of the popular F-150, it was meant to be an antidote for excess, and it worked. With a manufacturer’s suggested retail price (MSRP) of $19,995 for the base level, the Maverick drew rave reviews from critics and a rush of inte

Today's NYT Mini Crossword Answers for Monday, June 30

Looking for the most recent Mini Crossword answer? Click here for today's Mini Crossword hints, as well as our daily answers and hints for The New York Times Wordle, Strands, Connections and Connections: Sports Edition puzzles. Need some help with today's Mini Crossword? 2-Down was the stumper for me today, since it was one of those clues that could be answered in many ways. Read on for the answers. And if you could use some hints and guidance for daily solving, check out our Mini Crossword tip

Cell Towers Can Double as Cheap Radar Systems for Ports and Harbors (2014)

How do you see ships without a pricey radar system? The question has troubled seaports around the world as they work to improve security. Without radar installations, it can be hard for port employees to detect small ships like those employed by pirates or by the terrorists who attacked the USS Cole in 2000. A team of researchers in Germany can now offer security teams a new option, though: putting existing cellular towers to work as quick and dirty radar systems. Developed at the Fraunhofer In

Reverse Engineering the Microchip CLB

Microchip added a very cool peripheral called the Configurable Logic Block (CLB) to there new PIC16F13145 microcontroller family. It’s essentially a small FPGA (32 LUTs) that can connect to the internals of the chip. However, they don’t document how to configure it yourself, only referring you to their online configurator tool that submits jobs to an API that places and routes to LUTs. The [CLB] Interface does not appear as an SFR in the Register Map and is not directly user-accessible; it is

Cloudflare open-sources Orange Meets with End-to-End encryption

Cloudflare has implemented end-to-end encryption (E2EE) to its video calling app Orange Meets and open-sourced the solution for transparency. The application has been available since last year when the internet giant launched it as a demo for Cloudflare Calls (now Realtime). With the introduction of E2EE and the resolution of various trust and verification issues, users interested in strong cryptographic assurances can explore Orange Meets as a foundation for secure video calling in research o

Implementing fast TCP fingerprinting with eBPF

In this article I want to document my journey implementing fast TCP fingerprinting in a golang webserver, using eBPF. Just to provide some background, TCP fingerprinting is one of the many techniques that can be used to detect unusual or identifying informations about a web request when implementing an anti-bot solution. This has been a hot topic lately, caused by the rising need to scrape the internet for human content to feeed to the LLMs. Implementing such a system offers interesting techn

Show HN: Octelium – FOSS Alternative to Teleport, Cloudflare, Tailscale, Ngrok

Octelium Table of Contents What is Octelium? Octelium is a free and open source, self-hosted, unified platform for zero trust resource access that is primarily meant to be a modern alternative to remote access VPNs and similar tools. It is built to be generic enough to not only operate as a zero-config remote access VPN (i.e. alternative to OpenVPN Access Server, Twingate, Tailscale, etc...), a ZTNA platform (i.e. alternative to Cloudflare Access, Teleport, Google BeyondCorp, etc...), a sca

Amazon Slashes Dyson V15 Laser Price Twice in 3 Days, Don’t Wait for Prime Day

The Dyson V15 Detect Plus is a flagship model by Dyson, and it’s already revolutionizing the world of home cleaning: This is the one that comes with the innovative laser technology that lights up even the tiniest dust particles on your floors – something no other brand has been able to replicate. If you’ve been waiting for the right moment to upgrade your cleaning routine, now is the perfect time: Amazon has just dropped the price for the second time in a matter of days, bringing the Dyson V15

How to Watch PSG vs. Inter Miami From Anywhere for Free: Stream FIFA Club World Cup Soccer

It's a blockbuster FIFA Club World Cup clash at Mercedes-Benz Stadium in Atlanta today as Inter Miami GOAT Lionel Messi faces off against his old club PSG. Below, we'll outline the best live TV streaming services to watch every match of the tournament as it happens, wherever you are in the world. We'll also explain how to use a VPN if the match isn't available where you are, along with a full match list. Despite his advancing years, the Argentine legend has been in fine form during this tourna

Infrastructure at Roblox

Throttling is a very accepted concept in computer science. But this is the most misused and misunderstood lever of computer science. When new engineers join Roblox, their first solutions often include, “If we could just tell our creators to tweak this config or slow down their events…”. Veteran Roblox engineers then gently explain our value of respecting the community and that we don’t tell our creators what to do. For example, most gaming systems have a simple solution for matchmaking when mil

Refurb weekend: Gremlin Blasto arcade board

My general vintage computing projects, mostly microcomputers, 6502, PalmOS, 68K/Power Mac and Unix workstations, but that's not all you'll see. While over the decades I've written for publications likeand, these articles are all original and just for you. My promise: No AI-generated article text, ever. Be kind, REWIND and PLAY.Old VCR is advertisement- and donation-funded, and what I get goes to maintaining the hardware here at Floodgap. I don't drink coffee, but the Mr Pibb doesn't buy itself.

JavaScript Trademark Update

On June 18, the Trademark Trial and Appeal Board (TTAB) dismissed our fraud claim against Oracle. We disagree with this decision. That claim alleged Oracle knowingly misled the USPTO in its 2019 renewal by submitting a screenshot of the Node.js website to show use of the “JavaScript” trademark. As the creator of Node.js, I find that especially offensive. Node.js was never an Oracle product or brand. Oracle didn’t create it, didn’t run it, and wasn’t authorized to use it to prop up its trademark

Time Is Three-Dimensional and Space Is Just a Side Effect, Scientist Says

A fringe new theory suggests that time is the fundamental structure of the physical universe, and space is merely a byproduct. According to Gunther Kletetschka, a geologist — not a physicist, you'll note, but more on that later — from the University of Alaska Fairbanks, time is three-dimensional and the dimensions of space are an emergent property of it, a press release from the university explains. "These three time dimensions are the primary fabric of everything, like the canvas of a paintin

Fancy Airplane Seats Have Nowhere Left to Go—So What Now?

Not so long ago, direct aisle access along with the ability to lie horizontally were the hallmarks of comfort on airplanes if on entering you happened to be turning right and not left. Fast-forward a decade and the prevailing new high-water mark is now the private suite with sliding doors, expansive entertainment screens and even double beds. Qatar Airways’ Qsuite allows four passengers to dine together face-to-face, while Virgin Atlantic’s Retreat Suite offers an oversized version of business

The World Is Producing More Food than Ever—but Not for Long

This story originally appeared on Vox and is part of the Climate Desk collaboration. Globally, humanity is producing more food than ever, but that harvest is concentrated in just a handful of breadbaskets. More than one-third of the world’s wheat and barley exports come from Ukraine and Russia, for example. Some of these highly productive farmlands, including major crop-growing regions in the United States, are on track to see the sharpest drops in harvests due to climate change. That’s bad n