Latest Tech News

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

Filtered by: fil Clear Filter

How I easily transfer files between my Android phone and Mac - for free

QuickDrop / Elyse Betters Picaro / ZDNET Follow ZDNET: Add us as a preferred source on Google. ZDNET's key takeaways Sharing files between Android and MacOS couldn't be any easier. QuickDrop is a free app that can be used by anyone. A few extra steps to take on MacOS, but it's still quite easy. Any app that is designed to transfer files should do one thing and one thing well -- make the process simple. If it's not simple, the app shouldn't be considered for general usage. There are severa

The McPhee method for writing deeply reported nonfiction

When I first started writing for a real publication, I taught myself “reporting” with a simple self-made curriculum unfolding over six or seven articles. The first two pieces I wrote from my head, with reference to things I already knew or to books I’d read. For the third, I actually got out of the house, but didn’t yet have to play the journalist; I just wrote about taking a flying lesson in a small airplane. The fourth article required more gumption: I decided to shadow a friend of mine for a

macOS dotfiles should not go in –/Library/Application Support

#macOS dotfiles should not go in ~/Library/Application Support One of my pet peeves is when command-line tools look for user configuration files in ~/Library/Application Support when running on macOS. In addition to offering poor ergonomics for users, I believe this behavior is incorrect according to the documentation which is cited to justify it. Instead, command-line tools should implement the XDG Base Directory Specification and look for configuration files in $XDG_CONFIG_HOME , which defaul

Show HN: Timep – A next-gen profiler and flamegraph-generator for bash code

timep timep is an efficient and state-of-the-art trap-based time profiler for bash code. timep generates a per-command execution time profile for the bash code being profiled. As it generates this profile, timep logs command runtimes+metadata hierarchically based on both function and subshell nesting depth, mapping and recreating the complete full call-stack tree for the bash code being profiled. MAJOR UPDATE RELEASED: The new timep (currently v1.3) now includes the required loadable binary as

The ‘KPop Demon Hunters’ Success Story Could Be a Turning Point for Cinema

This weekend, movie history was made. For the first time ever, Netflix had the number one movie at the box office with its megahit KPop Demon Hunters. However, while every single other film distributor would’ve celebrated this fact, the streamer didn’t report the numbers. Instead, it put the version of the film in theaters immediately onto its streamer. The message was clear. This wasn’t meant to be a huge money grab or play for theatrical dominance. It was more of a thank you to the fans who st

Toxic Avenger gets grindhouse-style trailer

The Toxic Avenger, a semi-reboot of the 1984 superhero splatter-fest, made the rounds of the festival circuit back in 2023. But all the violence and gore scared off most distributors, so the film—starring Peter Dinklage (Game of Thrones) in the title role—has been languishing in the vault for much of the last two years. Thanks to Cineverse, The Toxic Avenger is finally coming to select theaters this weekend. And thanks to the folks at Bloody Disgusting (a Cineverse subsidiary), we've got a trai

The ‘KPop Demon Hunters’ Singalong Version Starts Streaming Today

After a very successful weekend at the box office—delivering Netflix one of its biggest theatrical releases ever—all those KPop Demon Hunters tracks are ready to earworm their way into your head all over again with the streaming release of the special singalong version of the film. And you don’t even have to wait now that Huntr/X has sashayed their way off of the big screen: it’s streaming on Netflix right now. Netflix confirmed that the special singalong edition of the film will stream globall

Marvel's 'Thunderbolts' Hits Disney Plus This Week. Here's When to Watch

See at Disney Plus Carries Thunderbolts Disney Plus See at Disney Plus See more details Days before the Lilo & Stitch live-action movie starts streaming on Sept. 3, Marvel's Thunderbolts will drop even sooner. The action-packed anti-hero flick premiered in theaters on May 2 and stars Florence Pugh, Sebastian Stan, David Harbour, Julia Louis-Dreyfus, Lewis Pullman, Wyatt Russell and Hannah John-Kamen, among others. The movie follows castoffs who team up for a dangerous mission after navigating

Intel says Trump deal has risks for shareholders, international sales

Intel on Monday warned of "adverse reactions" from investors, employees and others to the Trump administration taking a 10% stake in the company, in a filing citing risks involved with the deal. A key concern area is international sales, with 76% of Intel's revenue in its last fiscal year coming from outside the U.S., according to the filing with the Securities and Exchange Commission. The company had $53.1 billion in revenue for fiscal year 2024, down 2% from the year prior. For Intel's inter

Apple’s F1 movie tops $600m at worldwide box office, surpassing all expectations

Apple’s big box office bet continues to break records for the company, with F1: The Movie now breaking another milestone this weekend, topping $600 million at the worldwide box office. This figure beats even the most optimistic expectations ahead of release, which cost Apple about $250 million to make. The film hit buy or rent video on demand on Friday, but a streaming date on Apple TV+ has not yet been announced. In the film, Sonny Hayes (Brad Pitt) comes out of retirement to help mentor an u

The best air purifier for 2025

The air in our homes can be five times more polluted than outdoor air. Energy-efficient homes are designed to be tightly sealed, too, so they trap more pollutants inside. Cooking emissions, cleaning chemicals and fragrances all contribute to less-than-healthy air. Pets, smoke and off-gassing furniture do their part as well. If the air quality outside is good, the best thing to do is open up your windows for at least 15 minutes a day. But if wildfires, car pollution, or high pollen counts prevent

In-Memory Filesystems in Rust

In-memory Filesystems in Rust I’ve been working on a CLI tool recently, and one of the things it does is manage files on disk. I have written a lot of file management tests for Bundler, and the two biggest reasons that the Bundler test suite is slow are exec and fstat . Knowing that, I thought I would try to get out ahead of the slow file stat problem by using an in-memory filesystem for testing. A collaborator mentioned being happy with the Go package named Afero for this purpose, and so I se

Git-Annex

use case: The Archivist Bob has many drives to archive his data, most of them kept offline, in a safe place. With git-annex, Bob has a single directory tree that includes all his files, even if their content is being stored offline. He can reorganize his files using that tree, committing new versions to git, without worry about accidentally deleting anything. When Bob needs access to some files, git-annex can tell him which drive(s) they're on, and easily make them available. Indeed, every drive

Topics: annex bob drive files git

My ZIP isn't your ZIP: Identifying and exploiting semantic gaps between parsers

ZIP is one of the most popular archive formats. It is used not only as archive files, but also as the container for other file formats, including office documents, Android applications, Java archives, and many more. Despite its ubiquity, the ZIP file format specification is imprecisely specified, posing the risk of semantic gaps between implementations that can be exploited by attackers. While prior research has reported individual such vulnerabilities, there is a lack of systematic studies for

SQLite (with WAL) doesn't do `fsync` on each commit under default settings

SQLite (with WAL) doesn't do `fsync` on each commit under default settings SQLite has a WAL mode (the default is journal mode), but you’re likely using it if you want higher write throughput. SQLite also has a PRAGMA called synchronous which configures how fsync is called. The default is NORMAL . This is what the docs say: [..] but WAL mode does lose durability. A transaction committed in WAL mode with synchronous=NORMAL might roll back following a power loss or system crash. In WAL mode when

How to build a coding agent

😎 The following was developed last month and has already been delivered at two conferences. If you would like for me to run a workshop similar to this at your employer, please get in contact Hey everyone, I'm here today to teach you how to build a coding agent. By this stage of the conference, you may be tired of hearing the word "agent". You hear the word frequently. However, it appears that everyone is using this term loosely without a clear understanding of what it means or how these coding

Show HN: How to Build a Coding Agent (free workshop)

😎 The following was developed last month and has already been delivered at two conferences. If you would like for me to run a workshop similar to this at your employer, please get in contact Hey everyone, I'm here today to teach you how to build a coding agent. By this stage of the conference, you may be tired of hearing the word "agent". You hear the word frequently. However, it appears that everyone is using this term loosely without a clear understanding of what it means or how these coding

My tips for using LLM agents to create software

This post details my experiences creating software with LLM coding agents, emphasizing that what you do with AI agents is ‘creation’, not just 'coding,' and sharing what worked for me. This is not 'The One True Path To AI Success.' tl;dr: I’m not a professional developer, just a hobbyist with aspirations I wanted to accomplish a coding project beyond my skill level and have been experimenting with agentic coding tools for several months (spoiler: mostly success) You should use Anthropic’

Show HN: JavaScript-free (X)HTML Includes

This is a simple example of using browsers' built in XSL support to build a website with common theming across all pages without any server-side code, static website generators, or Javascript. See the demo site How it works When you browse to index.xml (or any of the other XML files), the browser loads the template file given at the top of the XML. This template file describes how to render the various custom tags in the XML as HTML.

Top Secret: Automatically filter sensitive information

We’ve written about how to prevent logging sensitive information when making network requests, but that approach only works if you’re dealing with parameters. What happens when you’re dealing with free text? Filtering the entire string may not be an option if an external API needs to process the value. Think chatbots or LLMs. You could use a regex to filter sensitive information (such as credit card numbers or emails), but that won’t capture everything, since not all sensitive information can

APT36 hackers abuse Linux .desktop files to install malware in new attacks

The Pakistani APT36 cyberspies are using Linux .desktop files to load malware in new attacks against government and defense entities in India. The activity, documented in reports by CYFIRMA and CloudSEK, aims at data exfiltration and persistent espionage access. APT 36 has previously used .desktop files to load malware in targeted espionage operations in South Asia. The attacks were first spotted on August 1, 2025, and based on the latest evidence, are still ongoing. Desktop file abuse Altho

The Teenage Mutant Ninja Turtles Are Returning to the Big Screen Next Year

Go ninja, go ninja, go ninja, go, indeed. After a surprisingly successful theatrical re-release of the original Teenage Mutant Ninja Turtles live-action film this past weekend, Fathom just announced that it’s bringing Teenage Mutant Ninja Turtles II: The Secret of the Ooze back to theaters in March 2026. Yes, you will be able to see Vanilla Ice performing “Ninja Rap” on the big screen once again. In addition, Fathom is extending the run of the original film through August 28. So, if you missed

FFmpeg 8.0

A complete, cross-platform solution to record, convert and stream audio and video. Download Converting video and audio has never been so easy. $ ffmpeg -i input.mp4 output.avi Discover more August 23nd, 2025, FFmpeg 8.0 "Huffman" A new major release, FFmpeg 8.0 "Huffman", is now available for download. Thanks to several delays, and modernization of our entire infrastructure, this release ended up being one of our largest releases to date. In short, its new features are: Native decoders: APV

Google Drive now offers in-browser video editing

Google is now offering a way to edit videos right in Drive via Google Vids in a compatible browser. Whenever you're previewing a video in Google Drive, you may see an "Open" button in the top right of the screen. Clicking this opens the clip in Google Vids, where you can trim the video, add text and music and make other changes. Veo is available in the app too. After you open a file in Vids, a new file is created, and you'll have to save or export that if need be. Google for Education has a fre

F1: The Movie now available to buy or rent ahead of Apple TV+ release

Apple’s F1: The Movie has exceeded all expectations at cinemas, with the film about to top $600 million at the worldwide box office since its premiere on June 27. Following its extended theatrical window, F1: The Movie is now available to buy or rent on-demand at digital stores like Amazon Prime Video, Apple TV, and more. This release follows the standard pricing pattern for what the industry calls the “premium video on-demand” window, or PVOD. This means the film is available to rent for $20

How Not to Buy a SSD

If you recall, about a month ago I managed to get an Apple iMac from 2006. that looked great. Unfortunately, after replacing the SSD and adding some stuff to it, the system crashed. Today, I wanted to play with the SSD a bit and discoverd super very low transfer speeds (less than 600KB/s). After opening Disk Utility and running the “Repair Disk” option, the speed seems to have picked up, going to 2.6MB/s, which was still WAAAAY slower than either SATA III, the supported protocol on the drive, or

iOS 26 adds the fix I’ve always wanted for accessing credit cards

Making payments on your iPhone is easy with Apple Pay. But what about those occasions when you need to input credit card details on a website or in a form? Not so easy. Fortunately, iOS 26 has the fix I’ve always wanted thanks to new AutoFill support for credit cards. The problem with accessing saved credit cards iOS 26 is packed with big updates for Apple Wallet, including a new feature that lets you manually save full credit card details for your Apple Pay cards. But Apple has long had a se

Marvel's 'Thunderbolts': Release Date and Time on Disney Plus

See at Disney Plus Will carry Thunderbolts Disney Plus See at Disney Plus See more details Disney Plus subscribers recently learned the Lilo & Stitch live-action would start streaming on Sept. 3, and now we know Marvel's Thunderbolts will drop even sooner. The action-packed anti-hero flick premiered in theaters on May 2 and stars Florence Pugh, Sebastian Stan, David Harbour, Julia Louis-Dreyfus, Lewis Pullman, Wyatt Russell and Hannah John-Kamen, among others. The movie follows castoffs who te

You can search for files in Windows using Copilot now - here's how

Microsoft ZDNET's key takeaways You can now search for files through the Copilot app. The new search requires a Copilot+ PC and Windows 11 insider access. The feature works by scanning the files in your Recents folder. Follow ZDNET: Add us as a preferred Google source on Chrome and Chromium browsers. Microsoft continues to expand the power and reach of its Copilot AI to provide greater assistance, especially to Windows users. A new skill now rolling out will let you use the Windows Copilot

The Jaw-Dropping Action in ‘Ne Zha II’ Had Even Michelle Yeoh Swearing Under Her Breath

Ne Zha II, the animated sequel film produced by Chinese studio Beijing Enlight Media, is already breaking records as the highest-grossing animated film of all time, and will be re-released by A24 on August 22. To further boost the film’s dub rerelease, A24 tapped Everything Everywhere All at Once Academy Award winner Michelle Yeoh to add to its must-watch factor for audiences experiencing the film for the first time in English. Ahead of its theatrical rerelease, io9 spoke with Yeoh about taking

Topics: film ii like ne zha