Latest Tech News

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

Filtered by: sta Clear Filter

I tasked Alexa Plus with tackling my to-do list — it was hit or miss

is a senior reviewer focused on smart home and connected tech, with over twenty years of experience. She has written previously for Wirecutter, Wired, Dwell, BBC, and US News. One of the best features of Amazon’s new Alexa Plus is that I don’t have to “speak Alexa” anymore. I’ve been testing the voice assistant for about a week now, and it understands what I say, regardless of how I say it — there’s no more need for precise phrasing to get Alexa to do what I want. This big shift underpins anoth

Why Cartken pivoted its focus from last-mile delivery to industrial robots

Autonomous robotics startup Cartken, known for its four-wheeled robots that deliver food on college campuses and through Tokyo’s bustling streets, has found a new area of focus: industrials. Cartken co-founder and CEO Christian Bersch told TechCrunch that applying its delivery robots to industrial settings was always in the back of his mind as they built the startup. When companies started reaching out about using their robots in factories and labs, Cartken took a closer look. “What we found i

HPE warns of hardcoded passwords in Aruba access points

Hewlett-Packard Enterprise (HPE) is warning of hardcoded credentials in Aruba Instant On Access Points that allow attackers to bypass normal device authentication and access the web interface. Aruba Instant On Access Points are compact, plug-and-play wireless (Wi-Fi) devices, designed primarily for small to medium-sized businesses, offering enterprise-grade features (guest networks, traffic segmentation) with cloud/mobile app management. The security issue, tracked as CVE-2025-37103 and rated

The Switch 2’s next killer app is already here

is a news editor covering technology, gaming, and more. He joined The Verge in 2019 after nearly two years at Techmeme. Hi, friends! Welcome to Installer No. 90, your guide to the best and Verge-iest stuff in the world. (If you’re new here, welcome, hope you’re staying cool, and also you can read all the old editions at the Installer homepage.) I also have for you a new Donkey Kong title, OpenAI’s next big AI agent, a customizable gamepad, and more. Let’s dive in. (As always, the best part of

I asked Alexa Plus to tackle my to-do list — it mostly failed

is a senior reviewer focused on smart home and connected tech, with over twenty years of experience. She has written previously for Wirecutter, Wired, Dwell, BBC, and US News. One of the best features of Amazon’s new Alexa Plus is that I don’t have to “speak Alexa” anymore. I’ve been testing the voice assistant for about a week now, and it understands what I say, regardless of how I say it — there’s no more need for precise phrasing to get Alexa to do what I want. This big shift underpins anoth

Show HN: ggc – A terminal-based Git CLI written in Go

ggc A Go Git CLI. This logo was created by gopherize.me. Demo Overview ggc is a Git tool written in Go, offering both traditional CLI commands and an interactive interface with incremental search. You can either run subcommands like ggc add directly, or launch the interactive mode by simply typing ggc. Designed to be fast, user-friendly, and extensible. Features Traditional command-line interface (CLI): Run ggc [args] to execute specific operations directly. Interactive interface: Run gg

The tech that the US Post Office gave us

is a news writer who covers the streaming wars, consumer tech, crypto, social media, and much more. Previously, she was a writer and editor at MUO. When you crack open your mailbox, it’s almost as if your letters just appear. Long before the days of speedy, overnight mail deliveries, postal service workers meticulously sorted through letters by hand and transported mail on horseback. For more than 250 years, the US Postal Service has worked behind the scenes to build a faster delivery network,

Astronomer CEO resigns following Coldplay concert scandal

Andy Byron, the startup executive at the center of an extraordinary social media furor, has resigned as CEO of data operations startup Astronomer. Byron, who is married, was captured on a Coldplay concert “kiss cam” with his arms around the company’s chief people officer Kristin Cabot. After Byron and Cabot quickly tried to hide from the camera, Coldplay singer Chris Martin joked, “Either they’re having an affair or they’re just very shy.” Video of the awkward incident soon went spectacularly

James Webb Spots Planets Forming Into Solar System in Real Time, Like an Organism's First Cells

Astronomers have spotted a planetary system being conceived from the swirl of gas and dust surrounding a star — giving us an unprecedented, real-time look at how our solar system would've formed some 4.6 billion years ago. The findings, published as a study in the journal Nature, are the first time we're seeing such an early stage of planets being formed anywhere in the cosmos. "We've captured a direct glimpse of the hot region where rocky planets like Earth are born around young protostars,"

This charging iPad mount turns your car into a mobile movie theater – Kuxiu X97 [Hands-on]

Early last year, Kuxiu released its X33 Pro Max iPad stand. It was the first stand to incorporate pin connectors into a magnetic stand to be able to charge your iPad. It was a fantastic idea. As a stand, it’s built very well, is high quality, does everything you need a stand to do, and gets the job done, but the fact that it also instantly charges the iPad was a game-changer for my setups. But now, they’ve brought the same tech but into your car with a mountable, magnetically charging iPad stand

Why It’s Taking LA So Long to Rebuild After the Wildfires

This story originally appeared on Vox and is part of the Climate Desk collaboration. In the wake of the record-breaking wildfires in Los Angeles in January—some of the most expensive and destructive blazes in history—one of the first things California governor Gavin Newsom did was to sign an executive order suspending environmental rules around rebuilding. The idea was that by waiving permitting regulations and reviews under the California Coastal Act and the California Environmental Quality A

The tech that the US Post Office gave us

is a news writer who covers the streaming wars, consumer tech, crypto, social media, and much more. Previously, she was a writer and editor at MUO. When you crack open your mailbox, it’s almost as if your letters just appear. Long before the days of speedy, overnight mail deliveries, postal service workers meticulously sorted through letters by hand and transported mail on horseback. For more than 250 years, the US Postal Service has worked behind the scenes to build a faster delivery network,

C++: Zero-cost static initialization

Zero-cost statics in C++ "Усердие все превозмогает!" К. Прутков, Мысли и афоризмы, I, 84 In C and C++ a static variable can be defined in a function scope: int foo() { static int counter = 1; printf("foo() has been called %i times. ", counter++); ... } Technically, this defines counter as an object of static storage duration that is allocated not within the function activation frame (which is typically on the stack, but can be on the heap for a coroutine), but as a global object. This is o

Topics: foo int mov rbp static

China’s Salt Typhoon Hackers Breached the US National Guard for Nearly a Year

After reporting last week that the “raw” Jeffrey Epstein prison video posted by the FBI was likely modified in at least some ways (though there is no evidence that the footage was deceptively manipulated), WIRED reported on Tuesday that metadata analysis of the video shows approximately 2 minutes and 53 seconds were removed from one of two stitched-together clips. The United States Department of Homeland Security is facing controversy over DNA samples taken from approximately 133,000 migrant ch

C++: zero-cost static initialization

Zero-cost statics in C++ "Усердие все превозмогает!" К. Прутков, Мысли и афоризмы, I, 84 In C and C++ a static variable can be defined in a function scope: int foo() { static int counter = 1; printf("foo() has been called %i times. ", counter++); ... } Technically, this defines counter as an object of static storage duration that is allocated not within the function activation frame (which is typically on the stack, but can be on the heap for a coroutine), but as a global object. This is o

Topics: foo int mov rbp static

Why AI is moving from chatbots to the browser

Happy Friday. I’m back from vacation and still getting caught up on everything I missed. AI researchers moving jobs is getting covered like NBA trades now, apparently. Before I get into this week’s issue, I want to make sure you check out my interview with Perplexity CEO Aravind Srinivas on Decoder this week. It’s a good deep dive on the main topic of today’s newsletter. Keep reading for a scoop on Substack and more from this week in AI news. From chatbots to browsers So far, when most people

Hush: Holistic Panoramic 3D Scene Understanding Using Spherical Harmonics

13D Vision & Robotics Lab, UNIST 2KRAFTON ✝Corresponding Author TL;DR: HUSH conducts various panorama image-based 3D perception tasks by utilizing task-relevant and geometrically aligned spherical harmonics basis functions for each task. 🌟 Key insight: SH basis functions seem geometrically aligned with the signals (e.g., depth/normal) on the unit sphere! Abstract Motivated by the efficiency of spherical harmonics (SH) in representing various physical phenomena, we propose a Holistic panor

‘Crystal Lake’ Casts a Familiar Horror Face as Little Jason Voorhees

Horror fans are excitedly awaiting Peacock’s Friday the 13th prequel series Crystal Lake—and now we know who’ll be playing the younger version of Jason Voorhees. Long before he decided a hockey mask and machete were an ideal killing-spree combo, and even before he drowned at summer camp, he was just a little kid with an eccentric mother. Presumably. We don’t know too many details about the show yet, but we know Linda Cardellini is playing Pamela Voorhees—and now we know Callum Vinson is Jason.

Starbase injury rates outpace rivals as SpaceX chases its Mars moonshot

SpaceX employees are more likely to be injured while working at Starbase than any of its other manufacturing facilities, according to company worker safety records reviewed by TechCrunch. Starbase, a sprawling launch-and-manufacturing site that recently incorporated as its own Texas city, logged injury rates almost six times higher than the average for comparable space vehicle manufacturing outfits and nearly three times higher than aerospace manufacturing as a whole in 2024, according to Occup

SpaceX worker injury rates at Starbase outpace industry rivals

SpaceX employees are more likely to be injured while working at Starbase than any of its other manufacturing facilities, according to company worker safety records reviewed by TechCrunch. Starbase, a sprawling launch-and-manufacturing site that recently incorporated as its own Texas city, logged injury rates almost six times higher than the average for comparable space vehicle manufacturing outfits and nearly three times higher than aerospace manufacturing as a whole in 2024, according to Occup

If You Thought Your Life Was a Mess, Spare a Thought for Boeing's Massively Failed Starliner Spacecraft

Even after pouring $2 billion into its much-maligned Starliner spacecraft, NASA and Boeing remain committed to getting back off the ground. As Ars Technica reports, the head of NASA's commercial crew program, Steve Stich, revealed last week that Boeing and its propulsion supplier, Aerojet Rocketdyne, are making considerable changes to the astronaut shuttle following a disastrous first crewed mission to the International Space Station last year. The spacecraft experienced several "in-flight ano

Starbase injury rates outpace rivals as SpaceX chases its Mars moonshot

SpaceX employees are more likely to be injured while working at Starbase than any of its other manufacturing facilities, according to company worker safety records reviewed by TechCrunch. Starbase, a sprawling launch-and-manufacturing site that recently incorporated as its own Texas city, logged injury rates almost six times higher than the average for comparable space vehicle manufacturing outfits and nearly three times higher than aerospace manufacturing as a whole in 2024, according to Occup

A Huge New Lab in Sweden Is Testing the 6G-Powered Future of Connected Cars and Drones

Tucked away in the Swedish countryside is a facility quietly reshaping the future of global mobility. Owned by the Research Institutes of Sweden (RISE), AstaZero has just unveiled the world’s most advanced connected vehicle proving ground—an ambitious leap into a 6G-powered future where every movement on the road could be coordinated, controlled, and optimized in real time. AstaZero is not an average vehicle test track. It is a full-scale, independent research environment built to test the auto

Lettuce Grow Indoor Farmstand Review: Grow Your Own

Upon receiving the Lettuce Grow Indoor Farmstand in the mail, I did not expect that I’d be enjoying some tea before I’d even unwrapped all the parts. “Is that … Zooey Deschanel? With a Dollar Tree Property Brother?” my husband asked, peering over my shoulder as I unpacked various tubes and parts. And indeed, among the boxes was a glossy handout of a slightly younger-looking Zooey, standing with a man who did vaguely resemble her current husband, Jonathan Scott, of Property Brothers fame. Turns

No More Waiting: New Crypto Law Unlocks Cheaper, Faster Money for Everyone

For more than a decade, cryptocurrency lived in legal limbo. It was too weird to regulate, too volatile to trust, and too new for Washington to take seriously. That just changed. The U.S. House of Representatives has passed the GENIUS Act, the first major federal law regulating stablecoins, digital currencies backed by the U.S. dollar. The bill now heads to President Trump’s desk, where it’s expected to become law. Here’s what it means for you, your money, and the financial system around you.

The Hottest Movie Releases Dropping in 2025

This has been an epic year for movies, and 2025 is only halfway over. A collection of tentpole titles and must-see blockbusters has already hit the big screen. The trend of studios mining established IP continues, and popular franchises' remakes, sequels and spin-offs will compete for audiences' attention. James Gunn's Superman was way up on our list of must-see blockbusters in 2025, which was compiled at the beginning of the year. If you read my review, you'll know that it delivered. Anthony

This new browser won't monetize your every move - how to try it

Screenshot by Jack Wallen/ZDNET I didn't think the world needed yet another web browser. However, when I considered the potential, a few issues bubbled to the surface. Also: I speed-tested 11 browsers - and the fastest might surprise you Some web browsers were created by companies with the hope of monetizing anything and everything. From search deals with Google and crypto-mining ads to sponsored content and just about every other way they can make a buck off your browsing. After mulling over

Adam Mosseri to hand off day-to-day at Threads to Meta’s AI lead

After two years under Instagram head Adam Mosseri, Meta is officially handing off Threads to a new leader. Here’s what the change could mean for the app’s future. As first reported by Axios, Meta is naming longtime executive Connor Hayes, formerly head of generative AI product, as the new head of Threads starting in September. The move marks the first time someone outside Instagram will take the reins of the text-based social app, in yet another sign that Meta seems to be finally getting serio

How to restart your Windows 11 PC when nothing else works

yusnizam/Getty Images Usually, whenever a new feature comes out for Windows, Microsoft advertises it widely in a blog post to let everyone know. Or if they don't, people discover the feature soon after an update. However, a helpful feature sometimes slips through the cracks, only to be unearthed years later. Also: Hate Windows 11? Here's how you can make it work more like Windows 10 That was my reaction when I found this obscure Emergency Restart method for Windows 11 after stumbling across a

Louisiana cancels $3B coastal repair funded by oil spill settlement

NEW ORLEANS (AP) — Louisiana on Thursday canceled a $3 billion repair of disappearing Gulf coastline, funded by the 2010 Deepwater Horizon oil spill settlement, scrapping what conservationists called an urgent response to climate change but Gov. Jeff Landry viewed as a threat to the state’s way of life. Despite years of studies and reviews, the project at the center of Louisiana’s coastal protection plans grew increasingly imperiled after Landry, a Republican, took office last year. Its collaps