Latest Tech News

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

Filtered by: ac Clear Filter

The Apple Watch is so close to replacing my Oura Ring - it just needs this feature

Nina Raemont/ZDNET Follow ZDNET: Add us as a preferred source on Google. ZDNET's key takeaways Apple unveiled Sleep Scores on the Apple Watch. The feature is available with WatchOS 26 and on the new smartwatches. There's one health tracking feature I wish Apple had announced. Last year, Gallup surveyed Americans about their sleep habits. For the first time since polling began in 2001, it found that a majority of Americans said they'd feel better if they got more sleep. They aren't happy

Native ACME support comes to Nginx

NGINX and Let's Encrypt share a common vision of an open and secure web. Now, with built-in support for ACME, the world's most popular web server, reverse proxy and ingress controller for Kubernetes can simplify certificate management for everyone. From the home lab to scaled-out, mission-critical enterprise deployments. Our ideal has always been that server software could get and renew Let’s Encrypt certificates automatically, with minimal human intervention. Over time, more and more web serv

‘Black Phone 2’ Star Says Sequel Evokes ‘A Nightmare on Elm Street’

When horror fans first heard a sequel to The Black Phone was coming, there was excitement—but also confusion. Didn’t the Grabber, the diabolical child killer, die at the end of the 2021 movie, enabling his would-be final victim to escape? Of course he did! But with the existence of ghosts already established thanks to the Grabber’s haunted basement phone, there’s a ready-made avenue for the villain to return in Black Phone 2. And according to Mason Thames, who plays the very lucky Finney, the Gr

Scientists Infuse Cement With Bacteria to Create Living Energy Device

Microbes are known for their remarkable survival abilities. And now, scientists have discovered another remarkable trait: Turning cement into an electricity storage device. In a study published September 9 in Cell Reports Physical Science, researchers at Aarhus University in Denmark describe how they seeded a bacteria called Shewanella oneidensis into cement. These particular bacteria are known to be good at transferring electrons across surfaces, and the researchers wondered if they could act

AI Regulation Moratorium Idea Isn't Dead as Ted Cruz Pushes Sandbox Act

US Sen. Ted Cruz has introduced a bill, the Sandbox Act, aimed at giving companies developing AI technologies a way to bypass regulations by requesting a government waiver. According to the bill, the act would "establish a Federal regulatory sandbox program for artificial intelligence, and for other purposes." In introducing the bill, Cruz said it would allow AI tech to be unhindered by "outdated or inflexible federal rules." In addition to establishing a program for this, the bill, if passed,

Topics: act ai cruz said sandbox

Akira ransomware exploiting critical SonicWall SSLVPN bug again

The Akira ransomware gang is actively exploiting CVE-2024-40766, a year-old critical-severity access control vulnerability, to gain unauthorized access to SonicWall devices. The hackers are leverging the security issue to gain access to target networks via unpatched SonicWall SSL VPN endpoints. SonicWall released a patch for CVE-2024-40766 last year in August, marking it as actively exploited. The flaw allows unauthorized resource access and can cause firewall crashes. At the time, SonicWall

Tonverk is Elektron’s new polyphonic sample mangler and groovebox

Elektron has built a cult-like following over the years with its unique and, at times, esoteric take on electronic musical instruments. On paper, Tonverk is a seemingly over-powered sampler that continues that tradition. It’s the rare piece of hardware capable of creating multisampled instruments on its own. It turns a single sample track into a nesting doll of multiple samples. And it’s loaded with an absolutely absurd amount of routing and audio processing features. Tonverk is certainly capabl

MotoE, the electric bike world championship, is going on hiatus due to lack of interest

The International Motorcycling Federation (FIM) and MotoGP are putting the MotoE electric bike world championship on hiatus following the 2025 season. The organizations cite a lack of viewership and an electric performance motorcycle market that "has not developed as expected." "Today we announce the suspension of the FIM MotoE World Championship," FIM President Jorge Viegas said in a statement. "Despite all the best efforts to promote this innovative category together with (MotoGP rights holde

Exploding Primordial Black Holes Could ‘Rewrite the History of the Universe’

It’s been a fantastic week for Stephen Hawking’s black hole theories. Yesterday, LIGO confirmed the famed physicist’s prediction about black hole mergers. Now, another team believes they’ve found a way to observe primordial black holes—cosmic behemoths that emerged not from the ashes of dying stars but from the chaos of the early universe. In a paper published September 9 in Physical Review Letters, a team of physicists make the bold prediction that, within the next decade, we will be able to w

Fortnite will soon let you buy exactly the V-bucks you need

is a senior reporter covering technology, gaming, and more. He joined The Verge in 2019 after nearly two years at Techmeme. Posts from this author will be added to your daily email digest and your homepage feed. If you want to buy a skin or virtual gear from the Fortnite item shop but don’t have enough V-Bucks, Epic Games is going to add a way to “top up” your V-Bucks balance so that you can buy just the V-Bucks you need to afford your purchase. Epic is calling this feature the “Exact Amount”

Opendoor stock soars 60% after company names new CEO

OpenDoor is disrupting the real estate market with its new model. It buys homes and sells them on its platform. Opendoor stock rocketed 60% higher on Thursday after the retail favorite named Shopify executive Kaz Nejatian as CEO and co-founder Keith Rabois as chairman. The meme stock hit a 52-week high and continued a stunning run this year, with shares up more than 400% so far. Former CEO Carrie Wheeler resigned last month following a pressure campaign from investors that included critical c

Show HN: I built a minimal Forth-like stack interpreter library in C

This weekend I created stacklib.h - a single-header library that brings Forth-style stack operations to C. It implements a basic interpreter with: - Stack operations (push/pop/dup/swap/over/drop) - Arithmetic (+, -, *, /) - Output (., emit, cr) - Stack inspection (.s, depth) Example usage: Stack s; stack_init(&s); dict_init(); exec(&s, "10 20 + ."); // Prints "30" exec(&s, "1 2 3 4 .s"); // Shows stack contents The library is self-contained, requires no dependencies, and handles basic error c

Forget the new AirPods Pro 3, I’d stick with your smartwatch for heart rate tracking

Kaitlyn Cimino / Android Authority Apple’s newest AirPods Pro 3 arrive with sleek design upgrades and plenty of hype. What caught my attention, though, was a pair of earbuds creeping into fitness tracking territory. This isn’t the first attempt. We’ve seen brands shove heart rate sensors into shoppers’ ears before, and by all means, shoot your shot. Sure, I’d be fairly weirded out if someone took my pulse in my earlobe, but earbuds with built-in sensors sound futuristic, and frankly, convenient

The 7 Best WIRED-Tested Handheld Vacuums (2025)

A Handheld vacuum may not be the most essential household appliance, but they sure are convenient. You don’t have to mess with heavy, cumbersome (and expensive) vacuums that require a plug-in and hazardous cords. Sure, there are cordless vacs to mitigate this problem, but those are also large and can be expensive. The handheld vacuum—compact, lightweight, and inexpensive—has come a long way in recent years. As vac technology keeps improving, handhelds are becoming more powerful and lightweight.

Behind the Scenes of Bun Install

Running bun install is fast, very fast. On average, it runs ~7× faster than npm, ~4× faster than pnpm, and ~17× faster than yarn. The difference is especially noticeable in large codebases. What used to take minutes now takes (milli)seconds. These aren't just cherry-picked benchmarks. Bun is fast because it treats package installation as a systems programming problem, not a JavaScript problem. In this post we’ll explore what that means: from minimizing syscalls and caching manifests as binary,

Health Connect will soon track your steps without needing another app

Rita El Khoury / Android Authority TL;DR Google is adding native step tracking to Health Connect, changing its function from just a data hub for other apps. This marks a significant shift, as Health Connect will now be able to collect its own data directly from the phone’s sensors. This could be the first step in turning Health Connect into a comprehensive health platform, though the feature isn’t fully working yet. If you want to improve your health, there’s no shortage of services you can

Reshaped is now open source

About five years ago, I started Reshaped. I built it for myself, since I had a few projects in urgent need of a component library for both React and Figma. Having worked in the design systems space for over a decade, I had developed a clear sense of what a good design system should be — and what tends to go wrong in others. I noticed that no matter how trends evolve, around 80% of the web is still built on the same core design practices. So I set out to build a system that covers that 80%, whil

SpaceX Targets 2026 to Test Orbital Flight for Next-Gen Starship Vehicle

It has been two weeks since SpaceX’s last Starship test flight, and engineers have diagnosed issues with its heat shield, identified improvements, and developed a preliminary plan for the next time the ship heads into space. Bill Gerstenmaier, a SpaceX executive in charge of build and flight reliability, presented the findings Monday at the American Astronautical Society’s Glenn Space Technology Symposium in Cleveland. The rocket lifted off on August 26 from SpaceX’s launch pad in Starbase, Te

The HackberryPi CM5 handheld computer

The HackberryPi_CM5 project repository The HackberryPi_CM5 project is a RaspberryPi Compute Module SBC(single board computer) powered handheld computer with reuse of original keyboard from old Blackberry phones. The goal of the project is to create a portable linux-powered computer that lets the user gain a deeper understanding of Linux and explore the architecture of hardware, software, and the Linux kernel. This repository will be used to share information about the project and tutorial about

Pentagon begins deploying new satellite network to link sensors with shooters

The first 21 satellites in a constellation that could become a cornerstone for the Pentagon's Golden Dome missile defense shield successfully launched from California Wednesday aboard a SpaceX Falcon 9 rocket. The Falcon 9 took off from Vandenberg Space Force Base, California, at 7:12 am PDT (10:12 am EDT; 14:12 UTC) and headed south over the Pacific Ocean, heading for an orbit over the poles before releasing the 21 military-owned satellites to begin several weeks of activations and checkouts.

Universal Executive Regrets Most Hilarious, Perfect Part of ‘Fast and Furious’ Franchise

Before the abysmal mess that was Fast X, the ninth Fast and Furious film, F9, did the most insane thing imaginable. After literal years and years of joking about it, F9 actually sent characters to space. It was Ludacris (literally and figuratively), it was hilarious, and it was wonderful. But now, looking back, one of Universal Studios’ most powerful executives regrets it. “I’m sorry that we sent them into space,” Donna Langley, the Chief Content Officer for NBCUniversal Studio Group, said rece

Pop Mart Unleashes Its Blind Box ‘Chucky’ Collection Just in Time for Halloween

Pop Mart, purveyor of Labubu, is branching out in the world of creepy pop culture collectibles with a little help from Chucky. The blind box drop arrives September 11, timed to coincide with Halloween season and aiming to bolster the company’s roster of animation-influenced characters. At the recent San Diego Comic-Con, Pop Mart made a splash with the Monsters series Big Into Energy, Skullpanda, and Peach Riot, as well as its latest Star Wars line. During io9’s preview at SDCC, Emily Brough, Po

Elon Musk Says Starlink Could Replace Your Cellphone Carrier

On Wednesday, just one day after SpaceX acquired $17 billion of wireless spectrum from telecommunications company EchoStar, Elon Musk made some typically bold claims for how he would put it to use. The second-richest person in the world described a vision where Starlink could be your one-stop-shop for connectivity, whether at home or when you’re away from your Wi-Fi. On the All-In podcast, Musk said Starlink could eventually combine its home internet service with mobile. But he was careful to n

OpenAI reportedly signs $300 billion Project Stargate cloud deal with Oracle

is a NYC-based AI reporter and is currently supported by the Tarbell Center for AI Journalism. She covers AI companies, policies, and products. Posts from this author will be added to your daily email digest and your homepage feed. OpenAI and Oracle signed a deal “to purchase $300 billion in computing power over roughly five years,” one of the largest cloud computing deals ever, reports the Wall Street Journal. In July, the two companies revealed their partnership to build data centers worth

9to5Mac Daily: September 10, 2025 – Apple Watch Series 11, Ultra 3, more

Listen to a recap of the top stories of the day from 9to5Mac. 9to5Mac Daily is available on iTunes and Apple’s Podcasts app, Stitcher, TuneIn, Google Play, or through our dedicated RSS feed for Overcast and other podcast players. Sponsored by iMazing: iMazing lets you back up, transfer, and manage your iPhone and iPad data like never before — including messages, photos, music, WhatsApp, voicemails, battery health, and more. No cloud required. Use code 9to5mac-20off to get 20% off, exclusively f

DDoS defender targeted in 1.5 Bpps denial-of-service attack

A DDoS mitigation service provider in Europe was targeted in a massive distributed denial-of-service attack that reached 1.5 billion packets per second. The attack originated from thousands of IoTs and MikroTik routers, and it was mitigated by FastNetMon, a company that offers protection against service disruptions. “The attack reached 1.5 billion packets per second (1.5 Gpps) — one of the largest packet-rate floods publicly disclosed,” FastNetMon says in a press release. “The malicious traff

Longhorn – A Kubernetes-Native Filesystem

Longhorn – a Kubernetes-native filesystem The other day, I took a look at Longhorn again. I briefly looked at it earlier, as a way to get volumes that are writeable from more than one node. I tossed it away then, because I mistook it for nothing more than a glorified NFS server. I was quite wrong. At the time of writing, I already know I’m going to make fundamental changes, I will not run with a 2-node cluster permanently, because the latency I have isn’t necessarily a good idea. However, long

Clojure's Solutions to the Expression Problem

At times, to evolve your product, you need to rebuild it from scratch. The article provides the story behind the rewrite of InfluxDB from scratch using a different programming language - Rust - and stack - Apache Flight, Data Fusion, Apache Arrow and Parquet (FDAP). It emphasises the benefits, as well as the mechanics behind its operation and the different versions of the product.

After Ukrainian testing, drone detection radar doubles range with simple software patch

As part of its unprovoked invasion, Russia has been firing massed waves of drones and missiles into Ukraine for years, though the tempo has been raised dramatically in recent months. Barrages of 700-plus drones now regularly attack Ukraine during overnight raids. Russia also appears to have upped the ante dramatically by sending at least 19 drones into Poland last night, some of which were shot down by NATO forces. Many of these drones are Shahed/Geran types built with technology imported from

Thinking Machines Lab wants to make AI models more consistent

There’s been great interest in what Mira Murati’s Thinking Machines Lab is building with its $2 billion in seed funding and the all-star team of former OpenAI researchers who have joined the lab. In a blog post published on Wednesday, Murati’s research lab gave the world its first look into one of its projects: creating AI models with reproducible responses. The research blog post, titled “Defeating Nondeterminism in LLM Inference,” tries to unpack the root cause of what introduces randomness i