Latest Tech News

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

Filtered by: signed Clear Filter

OpenAI and Oracle reportedly ink historic cloud computing deal

In Brief Oracle sent its shares soaring after markets closed yesterday after reporting that it signed multiple multi-billion-dollar contracts with several customers. Now, we have an idea of who those customers might be. Oracle signed a deal with OpenAI for the AI company to purchase $300 billion worth of compute power over a span of about five years, according to reporting from the Wall Street Journal. OpenAI would start purchasing this compute in 2027. If the WSJ’s reporting is correct, this

OpenAI could launch its own AI chip next year

Robert Hart is a London-based reporter at The Verge covering all things AI and Senior Tarbell Fellow. Previously, he wrote about health, science and tech for Forbes. Posts from this author will be added to your daily email digest and your homepage feed. OpenAI is on track to start mass production of its own in-house artificial intelligence chips for the first time next year, according to a report from the Financial Times. Unnamed sources tell the outlet that OpenAI designed the chip with US s

io_uring is faster than mmap

TL;DR Sourcing data directly from disk IS faster than caching in memory. I brought receipts. Because hardware got wider but not faster, the old methods don't get you there. You need new tools to use what is scaling and avoid what isn't. Introduction In part 1 I showed how some computer performance factors are scaling exponentially while others have been stagnant for decades. I then asserted, without proof, that sourcing data from disk can be faster than from memory. What follows is the proof.

Memory is slow, Disk is fast – Part 2

TL;DR Sourcing data directly from disk IS faster than caching in memory. I brought receipts. Because hardware got wider but not faster, the old methods don't get you there. You need new tools to use what is scaling and avoid what isn't. Introduction In part 1 I showed how some computer performance factors are scaling exponentially while others have been stagnant for decades. I then asserted, without proof, that sourcing data from disk can be faster than from memory. What follows is the proof.

This vintage ‘Apple Watch’ face needs to exist

Apple has designed all sorts of Apple Watch faces in the 10+ years since the product launched. Still, there’s one face that Apple should build and release as soon as possible, please. That face, of course, is the one from the “Apple” watch that predated Apple Watch by two decades. The anonymous X account that goes by the name System Settings has designed their take on how it could look: i designed a watch face inspired by this vintage Apple Watch what do you think 👀 https://t.co/N6k4YCmw1u

Apple’s F1 movie gets IMAX re-release, with tickets now on sale

F1 The Movie has shown strong legs at the box office, but Apple’s summer hit is about to get another financial boost: F1 is being re-released in IMAX theaters starting this Friday, with tickets on sale now. Here are the details. F1 returns to IMAX this Friday, with wider expansion next week Last month, IMAX CEO Rich Gelfond shared some surprise Apple-related news: the company’s F1 movie would be getting a rare IMAX re-release. Now, Apple has officially confirmed the news and shared new detail

Skechers unveils kids' sneakers with hidden Apple AirTag compartment

In brief: Parents who worry about where their kids are might be interested in a new line of children's sneakers from Skechers. Each pair of these shoes has a hidden compartment on the inside designed to fit an Apple AirTag, allowing the wearer to be tracked. The sneakers in the new Find My Skechers line have a cutout inside the heel of the shoe. Lift up the insert to reveal a small compartment containing the AirTag holder, where the tracker can be securely placed. The compartment has a screw-i

The Verge’s 2025 back-to-school shopping guide

Back-to-school season is closer than you might realize, especially for college students, many of whom are set to return to campus in a matter of a few short weeks. And while school can be a challenging time on many fronts, regardless of the grade, there are tools that can help you better prepare for life both inside and outside the classroom. With that in mind, we’ve compiled a selection of dorm-friendly recs from the larger Verge staff, as well as a few essentials suitable for high school and

Astronomer HR chief Kristin Cabot resigns following Coldplay 'kiss cam' incident

Days after Astronomer CEO Andy Byron resigned from the tech startup, the HR exec who was with him at the infamous Coldplay concert has left as well. "Kristin Cabot is no longer with Astronomer, she has resigned," a company spokesperson wrote in an email to CNBC Thursday. Cabot was the company's chief people officer. Cabot and Byron, who is married with children, were shown in an intimate moment on the 'kiss cam' at a recent Coldplay show in Boston, and immediately hid when they saw their faces

Fairphone 6 lands a perfect 10 for repairability

Dutch company Fairphone continues to lead the charge on consumer- and planet-friendly electronics, proving that a great phone doesn't have to be impossible to repair or environmentally unsustainable. The Fairphone 6 has just been released, coming two years after the last generation of the phone built to last. The folks over at iFixit wasted no time in conducting a teardown of this new entry to see how it stacks up against previous generations. The Fairphone 6 scored a perfect 10 out of 10, like

Gmailtail – Command-line tool to monitor Gmail messages and output them as JSON

A command-line tool to monitor Gmail messages and output them as JSON, designed for automation, monitoring, and integration with other tools. # Clone and setup the project # Install uv if you haven't already # Monitor all new emails # JSON Lines format (one JSON per line) # Resume from last checkpoint

gmailtail: tail -f Your Gmail

A command-line tool to monitor Gmail messages and output them as JSON, designed for automation, monitoring, and integration with other tools. # Clone and setup the project # Install uv if you haven't already # Monitor all new emails # JSON Lines format (one JSON per line) # Resume from last checkpoint

SIMD-friendly algorithms for substring searching (2016)

Introduction Popular programming languages provide methods or functions which locate a substring in a given string. In C it is the function strstr , the C++ class std::string has the method find , Python's string has methods pos and index , and so on, so forth. All these APIs were designed for one-shot searches. During past decades several algorithms to solve this problem were designed, an excellent page by Christian Charras and Thierry Lecroq lists most of them (if not all). Basically these al

SIMD-friendly algorithms for substring searching (2018)

Introduction Popular programming languages provide methods or functions which locate a substring in a given string. In C it is the function strstr , the C++ class std::string has the method find , Python's string has methods pos and index , and so on, so forth. All these APIs were designed for one-shot searches. During past decades several algorithms to solve this problem were designed, an excellent page by Christian Charras and Thierry Lecroq lists most of them (if not all). Basically these al

SIMD-friendly algorithms for substring searching

Introduction Popular programming languages provide methods or functions which locate a substring in a given string. In C it is the function strstr , the C++ class std::string has the method find , Python's string has methods pos and index , and so on, so forth. All these APIs were designed for one-shot searches. During past decades several algorithms to solve this problem were designed, an excellent page by Christian Charras and Thierry Lecroq lists most of them (if not all). Basically these al