Latest Tech News

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

Filtered by: operator Clear Filter

Temporary suspension of acceptance of mail to the United States

Temporary Suspension of Acceptance of Mail to the United States Due to Changes in U.S. Customs and Regulations On July 30, 2025, the U.S. government issued an executive order titled “Termination of De Minimis Treatment for All Countries” regarding mail to the United States. Under this executive order, starting August 29, 2025, mail containing goods imported for personal use (taxable mail) will no longer be eligible for duty-free treatment, and tariffs will be imposed. On August 15, 2025, U.S.

Japan Post to temporarily suspend mail to US over end of de minimis exemption

Temporary Suspension of Acceptance of Mail to the United States Due to Changes in U.S. Customs and Regulations On July 30, 2025, the U.S. government issued an executive order titled “Termination of De Minimis Treatment for All Countries” regarding mail to the United States. Under this executive order, starting August 29, 2025, mail containing goods imported for personal use (taxable mail) will no longer be eligible for duty-free treatment, and tariffs will be imposed. On August 15, 2025, U.S.

U.S. seizes $2.8 million in crypto from Zeppelin ransomware operator

The U.S. Department of Justice (DoJ) announced the seizure of more than $2.8 million in cryptocurrency from suspected ransomware operator Ianis Aleksandrovich Antropenko. Antropenko, indicted in Texas for computer fraud and money laundering, was linked to Zeppelin ransomware, a now-defunct extortion operation that ran between 2019 and 2022. Apart from the digital asset seizure, the authorities also confiscated $70,000 in cash and a luxury vehicle. “Antropenko used Zeppelin ransomware to targe

Pirate Library Operator Arrested, Study Canceled for 330K Members

Launched in July 2023, Yubin Archive's popularity stemmed from its mission to "eliminate educational inequality" by providing copies of educational material to less well-off students in South Korea. Operating via Telegram, Yubin Archive had grown to over 330,000 members when its operator was arrested on Tuesday. The Ministry of Culture and Sport says others involved will be tracked down and given lessons in copyright law. Piracy of movies, TV shows, music, games and similar content, purely for

Compiler Bug Causes Compiler Bug: How a 12-Year-Old G++ Bug Took Down Solidity

Compilers aren't supposed to crash — especially not when compiling perfectly valid code like this: // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.25; contract A { function a () public pure returns ( uint256 ) { return 1 ** 2 ; } } Yet running Solidity's compiler (solc) on this file on a standard Ubuntu 22.04 system (G++ 11.4, Boost 1.74) causes an immediate segmentation fault. At first, this seemed absurd. The code just returns 1 to the power of 2 — no memory tricks, unsafe casti

PHP 8.5 adds pipe operator

PHP 8.5, due out November of this year, will bring with it another long-sought-after feature: the pipe operator ( |> ). It's a small feature with huge potential, yet it still took years to happen. What is a pipe operator? The pipe operator, spelled |> , is deceptively simple. It takes the value on its left side and passes it as the single argument to a function (or in PHP's case, callable ) on its right side: $result = "Hello World" |> strlen(...) // Is equivalent to $result = strlen("Hello W

ChatGPT can now browse and perform web-based tasks for you

In a quick live stream today, OpenAI announced ChatGPT agent, which improves on its promising, but limited Operator feature announced a few months ago. Here’s how it works Operator meets Deep Research What OpenAI did was combine Operator, which already had agentic browsing capabilities, and Deep Research, which can quickly consume, understand, and infer on website content. The result is an agent that gets spun up on a virtual machine when you assign it a task, and then it just… goes. It can

OpenAI unveils ‘ChatGPT agent’ that gives ChatGPT its own computer to autonomously use your email and web apps, download and create files for you

Want smarter insights in your inbox? Sign up for our weekly newsletters to get only what matters to enterprise AI, data, and security leaders. Subscribe Now OpenAI isn’t letting the delay of its open source AI model slow it down on shipping other features. Today, the company is unveiling ChatGPT agent, a feature that allows its AI chatbot to autonomously browse the web, conduct extensive research, download and create new files for its human users using its own virtual computer. Come again? Ch

I Let AI Agents Plan My Vacation—and It Wasn't Terrible

The worst part of travel is the planning: the faff of finding and booking transport, accommodation, restaurant reservations—the list can feel endless. To help, the latest wave of AI agents, such as OpenAI’s Operator and Anthropic’s Computer Use claim they can take these dreary, cumbersome tasks from befuddled travelers and do it all for you. But exactly how good are they are digging out the good stuff? What better way to find out than deciding on a last-minute weekend away. I tasked Operator, w

Interesting Bits of Postgres Grammar

I’ve been working on Squawk for a while, it’s a linter for PostgreSQL, and it now uses a handmade parser. So let’s explore some interesting bits from the Postgres grammar. Custom Operators Very few operators are defined in the grammar itself and lots of Postgres features rely on custom operators. For example, Postgres uses <-> for comparing geometric types, along with a whole host of others: ## , @-@ , # , @> , <@> , &< , &> , |>> , |<< , <^ , >^ , ?- , ?| , ?|| , ~= . Note: custom operator

ChatGPT's AI agent Operator is now available for most Pro users

It's now out for most regions where ChatGPT is also available, though the EU isn't included. Operator is now out in Australia, Brazil, Canada, India, Japan, Singapore, South Korea, the UK and most places where ChatGPT is also available, OpenAI has announced. The company launched Operator in the US back in January, introducing it as an "agent that can go to the web to perform tasks" for the user. Operator can handle various browser-based tasks for users, such as filling out forms, making restaur

OpenAI rolls out its AI agent, Operator, in several countries

OpenAI said on Friday that it is rolling out Operator — its AI agent that can perform tasks on behalf of users — for ChatGPT Pro subscribers in Australia, Brazil, Canada, India, Japan, Singapore, South Korea, the U.K., and more countries. OpenAI said Operator will be available in most places where ChatGPT is available, apart from the EU, Switzerland, Norway, Liechtenstein, and Iceland. Operator, which launched in January in the U.S., is one of several “AI agent” tools on the market that can be

Build your own SQLite in Rust, Part 5: Evaluating queries

In the previous posts, we've explored the SQLite file format and built a simple SQL parser. It's time to put these pieces together and implement a query evaluator! In this post, we'll lay the groundwork for evaluating SQL queries and build a query evaluator that can handle basic SELECT statements. While our initial implementation won't support filtering, sorting, grouping, or joins yet, it will give us the foundation to add these features in future posts. As usual, the complete source code for

Topics: db let operator page self