News
Spotify wants to introduce new ways for listeners to engage with the artists they love the most, all while expressing their own creativity.
The streamer’s audio mixing feature for playlists has sky-rocketed in popularity, introducing a new way for listeners to modify their playlists. Now Spotify is working on a new AI-powered fan-made covers and remix tool — and it’s seeking the help of Merlin.
Spotify’s upcoming remix tool will come as a subscription add-on, though we don’t know when it’s due to drop or how much it will be on top of the current $12.99/ £12.99/ AU$15.99 monthly Spotify Premium plan.
Despite knowing very little about it, we do know that the remix feature will garner significant attention across the board of users, artists, organizations, and analysts alike. So what’s the end-goal for Spotify, and what are people saying about its potential knock-on effects for musicians and listeners?
What is the agreement?(Image credit: Spotify)On August 4, Spotify and digital licensing partner Merlin announced a new agreement that would give artists on labels under the Merlin name the option to lend their music to Spotify’s remix feature. Merlin is the second organization to sign on to the deal, following Universal Music Group in May.
For Spotify, the goal is simple: to ‘give listeners a new way to engage with the music they love from participating artists and songwriters,’ as stated in the announcement. Spotify also says the tool ‘will create an additional revenue stream for participating artists’.
However, despite knowing the tool will be AI-powered, Spotify hasn’t gone into detail as to exactly how it will allow listeners to create their own remixes of their favorite songs. The discourse around AI-generated slop is still a hot topic, and Spotify is still bearing the brunt of harsh criticism, so its venture into launching AI-powered music add-ons has left everyone scratching their heads.
What are Spotify’s competitors saying?(Image credit: Qobuz)As far as rival music streamers go, it’s safe to say the top dogs aren’t too interested in integrating AI throughout their respective UXs. While the likes of Apple Music and Tidal use algorithmic recommendations to fuel discovery, the number of generative AI tools is nowhere near as saturated as Spotify.
Listening to an artist’s music in the way it was released is the only concern for most companies, particularly for Dan Mackta, Managing Director at Qobuz, who gave us the following statement: “Qobuz isn’t looking at anything like this. The finished music that great artists release is good enough for us and our community”.
The desire to keep the traditional listening experience in place is quite prevalent on the one hand. Some users just want to kick back with an album or playlist, hit the play button, and let the music do its thing. But as music analyst and founder of MIDiA Research Mark Mulligan points out, the yearning for active participation is growing.
Mulligan detailed this in a comment shared with us: “A growing share of consumers want to do more than just listen. Audio modification is an opportunity both to tap into consumer creativity and fandom. Playing around with your favourite artist’s song is an ultimate expression of fandom”.
Additionally, he backed this up with his own findings from the recent MIDiA Q1 2026 consumer survey: “The potential of audio modification is significant. Consumer demand is clear, with 54% of consumers interested in some form of audio modification, from changing speed to swapping vocals, rising to 80% for 16–19-year-olds”.
Participatory music is a rising phenomenon, and software labels like A Vinyl Bar in Shibuya want to create experiences that go beyond just listening to a song. However, AI is out of the question, and the creativity is placed in the hands of the user, not generated by a machine.
What are artists/ organizations saying? (Image credit: Musician's Union)In light of Spotify’s announcement, it’s not just competitors that are having their say on the AI-powered remix tool. Additionally, artists and music organizations are questioning the long-term financial effects the feature could have.
Musician’s Union is a UK-based organization that represents artists in all areas of the music industry, and its General Secretary Naomi Pohl views Spotify’s partnership with two minds.
“The Merlin and Spotify announcement sounds positive as it suggests artists will have the choice to participate in licensing deals or not and, crucially, that they will share in any revenue generated by the use of their works. This is better than the blanket approach taken by some major labels,” she tells us, but she also raises concerns about how artists will be paid, adding the following:
“However, as with music streaming royalties, there is a question over how artists signed to independent labels will be paid by their label. Artists should in theory get 50% of any revenue their label receives, but in practice this may not happen in all cases as it will depend on the label’s interpretation of the artist’s contract. Many artists signed before AI deals were even conceived of. And, as with music streaming, session or backing musicians on tracks currently stand to receive no share of revenue”.
When it comes to royalties, Spotify has faced severe criticism due to its payment model. Because Spotify pools money generated from subscriptions, it means the most streamed artists over the year will receive a higher percentage of the profits made. So, even if you spend an entire year supporting and streaming an up-and-coming indie band, your subscription money is still going to artists like Taylor Swift.
Royalties aside, the other concern lies within the protection of music in its original form. PRS for Music, who handle the rights and royalties behind music, feel this strongly. “More generally, streaming services are embracing new technologies, including AI, to give fans new ways to engage with the music they love,” a PRS spokesperson told us.
But despite these emerging consumer tools, what could easily get lost is the care for the music itself. PRS fears this will become less of a priority, adding “Creators, and their work, must be central to the development of these new tools. They must be designed specifically to protect the integrity of the work above all else, and to ensure creators are fairly paid for the value they bring to each and every platform”.
At the end of the day, these platforms are there not only for fans to listen and engage with music, but they're there for artists to allow fans to hear music the way they intended. Though Spotify's AI-powered remix tool would be a creative addition to the service, how long will it be before everyone reverts to streaming AI-generated mashups instead of the real thing?
- Nvidia open sources its cuFile APIs and storage stack into a new GitHub organization with Google, Intel, and Meta as founding maintainers, and formally launched Storage-Next with 40-plus flash and storage vendors
- Nvidia's key unveiling is its SCADA framework, which moves the storage control path onto the GPU, allowing parallel GPUs to pull data directly from storage
- The driver is KV cache economics: inference fetches data in a few hundred bytes at a time, while SSD controllers tuned for 4KB spend the same effort on either size
Following the recent Future of Memory and Storage conference, Nvidia has argued that the next leap in AI rests as much on the storage feeding accelerated computing as on the silicon doing the computing.
The company open sourced its cuFile APIs and the storage stack beneath them, and formally launched an industry initiative called Storage-Next with more than 40 flash and storage vendors.
It also put a name to SCADA, the framework that lets GPUs pull data from drives without the CPU brokering every request.
A 512-byte problem that comes into focus as storage becomes keyNvidia's approach here is not new. cuFile was introduced in 2019 as the interface component of GPUDirect Storage and has shipped since 2021; its role is to take the CPU out of the data path. Bytes move by Direct Memory Access (DMA) straight between the drive and GPU memory, with no bounce buffer in host RAM. What stayed on the CPU was the control path: host software still decided what to fetch and issued every request, with the GPU as the DMA target rather than the initiator.
That split is invisible at large transfer sizes. A one-megabyte read essentially amortizes the per-request cost. At 512 bytes, the ratio inverts, the fixed cost dominates, and the CPU saturates long before the drives do. SCADA is the piece that moves the control path onto the GPU, letting it construct and complete its own storage requests and absorb per-operation latency, just as it already absorbs memory latency by keeping hundreds of thousands of operations in flight. The two are complementary rather than successive: cuFile for bulk transfers, SCADA for high volumes of small random reads.
The problem it solves is one that enterprise SSDs exhibit, having been tuned around 4KB random reads for nearly a decade to match virtualization and databases. As a result, most controllers do the same amount of work to serve 512 bytes of data as they would a 4KB read request.
AI inference access patterns are considerably smaller than that: embeddings run a few hundred bytes, and the KV cache blocks sit well under a kilobyte. Serving them from 4K-tuned drives imposes something like eightfold read amplification, and at tens of terabytes of small objects, that amplification decides whether flash works as a memory tier at all.
The KV cache, essentially the attention state for every token already processed, grows with context length, and agentic deployments run thousands of concurrent conversations. It quickly outgrows GPU memory, and recomputing evicted entries costs more GPU time than reading them back, so the standard design spills from GPU memory to system memory and flash, and refills through high volumes of small random reads.
Serving that from flash rather than DRAM increases the context length and the concurrent user count each GPU can support, which in turn affects the per-user cost of serving a model. This also explains why Nvidia is focusing on 512-byte IOPS rather than raw bandwidth, since inference performance depends heavily on the former.
Opening up cuFile is a departure; this layer has historically lived inside CUDA, and the logic is not charity. A GPU-initiated storage interface only pays off if drive, controller and array vendors build to it, and vendors do not build to a proprietary interface owned by the company whose GPUs they are feeding.
Publishing the interface, open-sourcing the implementation, and convening 40-plus vendors to standardize the underlying hardware behavior is how Nvidia aims to make GPU-initiated storage the industry default. It also stands to benefit the most from that outcome, since it sells most of the GPUs in question.
StorageReview notes Intel's participation as a significant development; a leading supplier of the x86 silicon currently sitting in storage controllers has signed on to maintain software designed to remove that silicon from the I/O path. Google and Meta co-maintaining a layer that standardizes how accelerators reach storage, while building their own accelerators, points in the same direction.
Nvidia's take is a coherent, well-argued push at a real bottleneck, with unusually credible partners attached. Partner systems from DDN, Dell, HPE, IBM, VAST Data and WEKA are due in the second half of 2026. Kioxia's XL-Flash drives built for 512-byte access are in development under Storage-Next.
Nvidia's roadmap calls for Gen7 SSDs sustaining 100 million IOPS each, which is a target controller vendors are designing toward rather than a product anyone can buy. Storage-Next itself has been discussed publicly since GTC 2025; this week, it acquired both a membership number and a framework to build against.
- Chinese research vessel lingered above critical Pacific undersea communications infrastructure
- Taiwan's Coast Guard warned the vessel to turn away from the Pacific Light Cable Network
- Windward linked slow vessel movements with recognized intelligence-gathering behavior
A Chinese-flagged research vessel was recently observed loitering directly above an undersea cable system connecting Taiwan to the United States.
Taiwan's Coast Guard filmed the encounter and warned the 200-foot ship to alter its course away from the cable route.
The cable is the Pacific Light Cable Network, an 8,000-mile fiber-optic system linking Taiwan, the Philippines and the US.
A pattern consistent with intelligence gatheringMaritime analysis platform Windward tracked the vessel moving at slow speed directly over the cable route in the Philippine Sea.
The company described such slow-speed movement over critical undersea infrastructure as one of the clearest signals used in maritime intelligence gathering.
Windward stated plainly that cables do not move, adding that "vessels that hover over them get noticed" by trained analysts worldwide.
Though the vessel's name and identifying number were withheld, Windward said it had operated repeatedly near the disputed Paracel and Spratly Islands.
Records also placed the same ship as far as the Bay of Bengal and waters off Sri Lanka in earlier years.
Analysts also noted increased Chinese research vessel activity east of Taiwan since June alongside broader maritime operations in surrounding waters.
Some analysts have expressed concerns that Beijing's military-civil fusion policy could enable information gathered by civilian research vessels to support military activities.
However, no publicly available evidence has verified that the vessel gathered intelligence or transferred information to Chinese military authorities during the reported voyage.
Beijing refutes the claimsChinese authorities have consistently denied that their vessels intentionally damage undersea cables, calling such accusations premature and politically motivated overall.
They accuse Taiwan and several Western governments of concluding before formal investigations into these incidents are completed.
Chinese-flagged vessels have featured in previous investigations into damaged undersea cables around Taiwan.
NATO officials and Taiwan's own Coast Guard have also linked Chinese-flagged vessels to earlier cable disruptions, including suspected sabotage in the Baltic Sea.
On its part, China claims that all its maritime activities are completely legal and respects international maritime law.
Submarine cables worldwide now carry roughly 99% of all intercontinental internet traffic, making their protection a growing global security concern.
The Pacific Light Cable Network carries added significance because Taiwan alone produces more than 90% of the world's most advanced semiconductor chips today.
This network was originally planned to connect Hong Kong before US regulators blocked that route in 2020.
American officials cited concerns at the time that the connection could directly expose sensitive US data to Chinese intelligence services.
The project was later reconfigured to link only the United States, Taiwan and the Philippines, bypassing Hong Kong entirely afterward.
Analysts believe the recent deployments may gradually normalize China's presence in waters that Taiwan has long regarded as strategically important.
Whether the vessel's activity ultimately amounted to scientific research or intelligence collection remains unresolved.
Via Newsweek
Another month, another stacked list of 4K Blu-rays. August 2026 looks to have some big releases coming, but I’ve decided to narrow it down to my top four picks, all of which I’ll be hoping to get in to test as part of our monthly Blu-ray Bounty feature. This is where we test the best 4K releases from each month, looking at each disc’s picture and audio quality to see how it can give your home theater a chance to flex its muscles.
4K Blu-ray is my most used source for testing the best TVs and best soundbars. It offers uncompressed audio and a higher bitrate over 4K streaming, resulting in better picture quality. Not only that, but I’m a collector myself and I’m always adding new discs to my personal collection.
Last month, in my July 2026 most anticipated list, I picked Hard Boiled, The Super Mario Galaxy Movie, Alice in Wonderland (1951) and Hairspray (1988) as my most anticipated discs. I got to test three of these in the July 2026 Blu-ray Bounty, and they all proved to be excellent, with special mention for The Super Mario Galaxy Movie which is in my opinion reference-level quality. Unfortunately, Hard Boiled was delayed in arriving, but I’ll be sure to give it a try and let you know what it’s like!
As I’m based in the UK, the following picks are based on 4K Blu-rays set for release in August 2026 here. Just in case the disc is already out in your region, or yet to be released!
Project Hail Mary (Amazon MGM Studios)An adaptation of Andy Weir’s novel of the same name, Project Hail Mary follows the story of middle school science teacher Ryland Grace (Ryan Gosling), who wakes up on an interstellar spacecraft with no memory of how he got there. The movie is directed by Phil Lord and Christopher Miller, who also directed The Lego Movie and Cloudy With A Chance of Meatballs, and were both involved in the production of the Into the Spider-Verse movies.
I’m expecting Project Hail Mary to look superb in 4K. There are plenty of high-contrast shots both in and outside of the Hail Mary that should demonstrate deep blacks balancing with bright highlights. There’s also scope for some seriously bold colors, as well as crisp textures, with 3D-like textures in both people and environments, such as the intricate textures of the various parts and consoles of the Hail Mary ship.
With a Dolby Atmos soundtrack included, I’m anticipating plenty of height effects in action. With the wide scope of the ship and space setting, there should be opportunities for the Dolby Atmos mix to showcase plenty of detail and texture, as well as a chance to hear some accurately mapped sound as well, as Grace moves around the Hail Mary.
Release date
- US - August 11
- UK - 10th August
Loosely based on Homer’s Iliad, Troy tells the story of the decade-long Trojan War. When Paris (Orlando Bloom) runs away with married Queen Helen (Diane Kruger), the latter’s husband and king Menelaus of Sparta (Brendan Gleeson) declares war on Troy, which is led by Hector (Eric Bana). Meneluas sends a unified Greek army, led by Achilles (Brad Pitt).
Where I think Troy will really shine is with its audio. While there’s no Dolby Atmos soundtrack on this disc, there is a DTS-HD 5.1 MA mix and I’ve been finding more fantastic-sounding 5.1 MA mixes every month. With large scale battles that should deliver plenty of detail and power, along similar lines to discs I’ve previously reviewed such as Kingdom of Heaven and Gladiator II, Troy could end up as another brilliant-sounding disc that could really push a surround sound system.
This 4K restoration is not only presented by Arrow Video, whose 4K Blu-rays are always superb, but is restored from the original 35mm and presented in Dolby Vision. There’s a lot of bold visuals in Troy, including the beautiful environments, vibrant colors and detailed costumes that should look stunning when restored in 4K.
Release date
- US - August 18
- UK - 17th August
Based on the 1957 stage musical of the same name, West Side Story is inspired by Shakespeare’s Romeo and Juliet, and tells the story of young lovers Tony (Richard Beymer) and Maria (Natalie Wood), who are embroiled in the gang war for the Upper West Side between the Jets (Tony’s former gang) and the Sharks (of whom Maria’s brother Bernardo is the current leader).
With Dolby Vision HDR support, this 4K disc of West Side Story should look fantastic. Not only is there the vivid colors of the 1950s aesthetic, but there’s plenty of high contrast scenes at night, where dark and bright tones create a nice dynamic range. This 4K disc is presented by Altitude, who released the Some Like It Hot 4K I tested earlier this year and if that disc is anything to go by, this 4K disc should be fantastic.
The musicals I’ve tested, such as Wicked and The Sound of Music, have often sounded excellent, especially when Dolby Atmos is supported. West Side Story also supports an Atmos soundtrack, so I’m expecting iconic songs such as ‘Maria’ and ‘Somewhere’ to sound their very best. With an Atmos soundtrack, there’s also scope for detail, such as the shuffling and movement of dancers during choreography to add that extra layer of immersion.
Release date
- US - September 11 (Import)
- UK - 31st August
Directed by Tim Burton, Mars Attacks! follows the arrival of aliens to Earth, where they meet the President of the United States James Dale (Jack Nicholson). After a first-contact meeting goes awry, the Martians begin to attack Earth. The movie features an all-star cast including Glenn Close, Annette Benning, Pierce Brosnan, Michael J. Fox and more.
As with all of Burton’s movies, I’m expecting very vibrant colors, such as those I saw in Edward Scissorhands. Mars Attacks! has a very gaudy, almost 1960s aesthetic in places that is sure to generate some lovely pop on screen, especially as Dolby Vision is also supported. I’ll be curious to see how the CGI of the aliens holds up, but after seeing 1982’s Tron on 4K, which made the dated graphics look decent, I have high hopes.
A Dolby Atmos soundtrack is featured on the 4K disc and other than the iconic ‘Ack’ sounds the Martians make, there’s plenty of great audio throughout this movie that could sound great in Dolby Atmos. The sounds of the Martian’s ray guns should draw some nice detail, explosions should generate some hefty impact and bass and there should be nice height effects in action too.
Release date
- US - August 11
- UK - 31st August
Below is a select list of 4K Blu-rays set for release in August 2026. Both UK and US releases are featured, with release dates noted. Release dates may vary by region, with some titles yet to be announced for some regions, or they may already be available in others. 4K Blu-ray is region-free however, so you should be able to order from anywhere.
August 3/4
- Talladega Nights
- The People vs Larry Flint
- School on Fire
- The Devil Wears Prada 2 (UK)
- Once Upon A Thief (UK)
August 10/11
- Project Hail Mary
- Mars Attacks! (US - UK: 31st August)
- Barbarian
- Clear and Present Danger
- Michael
- JFK
- Sing Street
August 17/18
- Troy
- Bill & Ted’s Bogus Journey (UK)
- Popeye (1980)
- Flight
- Nightcrawler
- Last Tango in Paris (UK)
- Hunt for the Wilderpeople (UK)
August 25/26
- The Pink Panther (1963) (UK)
- Disclosure Day
- Star Wars: The Mandalorian & Grogu (US)
- Practical Magic
August 31
- West Side Story (1961) (UK - September 11, import)
- The Abominable Snowman
To be online is to expose yourself to numerous threats, and those aren’t limited to hackers and viruses; data brokers, free services where you pay with your information, and — depending on your situation — even your own government can be a concern too. And when your whole online life is accessible from a phone in your pocket, there’s also the real threat of a thief getting into it.
With all that in mind, I’ve always been somewhat security conscious, but I’ve also historically been a bit inconsistent about my security practices, and tended to prioritize convenience over safety. A while back, though, I started taking things more seriously.
I started listening to podcasts like Firewalls Don’t Stop Dragons, digging into privacy and security subreddits, and trying out numerous new products and services to beef up my digital defenses.
But let’s look at where I started first. Before embarking on this journey, I already used both Norton as my primary desktop antivirus and Malwarebytes as an on-demand scanner. I also used a password manager (1Password) across both phone and desktop, and ensured all my passwords were strong and unique.
On my iPhone, I had Stolen Device Protection enabled, which makes it harder for thieves to access sensitive information or change my Apple account password.
And I had two-factor authentication set up for everything that would allow it — opting for one of the best authenticator apps over SMS, since the latter is vulnerable to SIM swap attacks, where hackers convince your mobile network to port your number to their device.
I still do all those things now, and would recommend most other people do too — though when it comes to the best antivirus and best password manager, there are several other options to consider as well. But I’ve also added other services and even devices to my security toolkit.
Encrypting everything(Image credit: Proton)There’s a saying that “if something is free, you are the product," and that’s largely true — and can have massive privacy implications.
Did you know, for example, that Gmail and Outlook can use AI or other automated systems to scan the content of your emails? And while the companies claim they’re not read by people, in theory it’s possible for them to be, either by the company itself, or by law enforcement if they’re ever served a warrant.
But you don’t have to be committing crimes to feel uneasy about the idea of an AI essentially reading all your supposedly private communications.
And this issue isn’t limited to email — the same privacy concerns apply to most free cloud storage services, whether we’re talking photo storage things like Google Photos, or general purpose ones like Dropbox.
Some services are worse for this than others, but if they’re not end-to-end encrypted, then your files, photos, and missives can, in theory, be viewed by people other than you and any recipient. That means, even if you’re not using a free service, you might still be making privacy compromises if the company has other priorities, though free options tend to be the worst for this sort of thing.
So with that in mind, I signed up with Proton Unlimited, giving me end-to-end encrypted email through Proton Mail, and cloud storage through Proton Drive.
(Image credit: Proton)As a bonus, Proton Unlimited also comes with a capable VPN and password manager in Proton VPN and Proton Pass. I use the former (more on this below), but not the latter, as personally, I prefer 1Password, and also don’t love the idea of having my whole security infrastructure handled by one brand.
This hasn’t been a complete switch, as I do in fact still use my less secure emails and cloud storage for some things, but sensitive stuff like bank logins have all been switched to Proton, while things like encryption keys are backed up in Proton Drive.
Part of why I haven’t fully switched is just the hassle of moving everything across, but encryption does come with some downsides. For example, it makes the search function more limited, as even the app can’t read the content of documents or other files.
And there are upsides to keeping alternative email addresses, as I can use them for things that I don’t trust not to spam me, or for accounts I don't trust not to get hacked, while my more important logins and communications are all kept secure at another address.
Though on that front, Proton does have the handy ability to let you create unlimited hide-my-email aliases, so I don’t strictly need a whole separate account for this.
In any case, while I recommend Proton as the best secure email provider, there are other options too, like Tuta and Mailbox.org, and many of these do have free plans too, though those are usually quite limited.
Taking control of my digital footprintThe Proton VPN Android app (Image credit: Future)My privacy journey also led me to limit what traces of myself can be found online, and the big thing there, of course, is a VPN.
Technically, I wasn’t new to VPNs, but in the past I mostly only used them to get around regional restrictions. Now, I have a VPN active most of the time. This hides my location from websites, since they don’t see my real IP. It also hides my browsing activity from my ISP, and it keeps my passwords and other private information more secure when using public Wi-Fi, so it has a lot of upsides.
The main downside, as I see it, is that some sites block VPNs, so you potentially need to disable it at times if you want to access those sites. However, they don’t always block every VPN server, so simply switching servers can solve that issue.
If you’re on a device that supports split tunnelling, then you could also enable this — allowing you, for example, to have a secondary browser that doesn’t connect via VPN for sites where it’s an issue, while everything else you do does. As noted above, I use Proton VPN, but there are other great options too in our best VPNs guide.
But VPNs are just one part of reducing your digital footprint. You can also choose to keep your social media anonymous or private — something that I was already largely doing — and you can set about removing the data that companies already have on you.
(Image credit: Incogni)I took two approaches to this. The first was subscribing to Incogni. This is a data removal service that will send removal requests to hundreds of data brokers. These brokers likely have all sorts of data about you, linking your name with your phone number, email address, and more, which makes you an easier target for spam, scams, and identity theft.
Incogni isn’t free, but it has been independently assessed by Deloitte, so you can be confident that it’s doing what it claims to do. And while you could manually make data removal requests to all these companies, it would likely take a very long time.
Of course, while I rate Incogni, it’s not the only option — check out our best data removal services guide for other solutions.
The final step I’ve taken for reducing my digital footprint is removing my face from facial recognition search engines like PimEyes and FaceCheck.ID. This I did do manually, though, by following their respective opt-out processes, which basically involve uploading a clear photo of your own face and asking for that face to be removed. You can find the exact process on the PimEyes opt-out page and the FaceCheck opt-out page.
Leveling up my two-factor authenticationA person using a YubiKey security key with their laptop (Image credit: Yubico)I mentioned above that I previously favored an app — specifically Authy in my case — over SMS for two-factor authentication, but as part of my privacy upgrade, I went a step further and invested in some YubiKey security keys.
These are hardware keys that are basically tiny USB sticks that you put into your phone or computer to perform two-factor authentication, and you can also get NFC versions with no plugging required.
Unlike apps or SMS, which are vulnerable to phishing attempts or hacks, YubiKeys (and similar devices from other brands) need to be in your physical possession to use. So they’re safe from online threats. Of course, someone could physically steal your YubiKey, but they’d still need your account passwords as well.
So if you want the strongest possible two-factor authentication, I’d recommend investing in one of the best security keys.
However, this is actually the security upgrade that I’ve found myself using least, as I simply find it less convenient than app-based two-factor authentication. So what I’ve settled on is using a security key for my most important accounts, but sticking with an app for everything else.
Convenience is still king, but I feel a lot more secure nowUltimately, my experience with YubiKeys sums up my approach to security and privacy — I still value convenience a lot. By doing things like using app-based two-factor authentication for emails and cloud storage that lacks end-to-end encryption, I’m still probably being a bit inconsistent about my privacy practices.
But I certainly feel more secure than I did before I went on this journey, and I have beefier security in place for the accounts and data that matter most.
You’ll have to figure out what the right balance is for you personally, but the tools above should help you make some security and privacy upgrades.
- Synology lowers NAS entry costs without removing future hardware upgrade flexibility
- Four new NAS models arrive with expandable memory and familiar hardware
- Lower default memory creates cheaper starting prices across the new lineup
Synology has introduced the DiskStation neo+ Series, a new lineup built to give buyers more flexibility over cost and performance from the outset.
The series includes four models — the DS1825neo+, the DS1525neo+, the DS925neo+, and the DS725neo+ — each sharing hardware with existing Plus units.
The company says each new unit is built on the same platform as its Plus Series counterpart but ships with a different default memory setup and price tag.
Synology created room for future upgradesAll four models rely on AMD processors with 64-bit architecture and include a hardware encryption engine.
The DS725neo+ uses an AMD Ryzen R1600 processor featuring 2 cores, 4 threads, and clock speeds of 2.6 GHz with a boost reaching 3.1 GHz.
Meanwhile, the DS925neo+, DS1525neo+, and DS1825neo+ all rely on the AMD Ryzen V1500B processor, offering 4 cores, 8 threads, and a 2.2 GHz operating frequency.
In terms of memory, the four-bay DS925neo+, five-bay DS1525neo+, eight-bay DS1825neo+, and two-bay DS725neo+ ship with 4GB memory but are expandable up to 32GB.
The larger DS1825neo+ and DS1525neo+ models include PCIe 3.0 expansion slots supporting optional 10GbE or 25GbE networking cards, while built-in M.2 slots provide SSD caching capabilities.
All models include 2.5GbE networking and expansion support through the DX525 unit, allowing storage capacity to increase as requirements become more demanding.
Buyers searching for the best NAS may still need to compare memory configurations carefully because the standard Plus models offer higher default ECC memory on selected versions.
Synology believes that the new memory approach broadens purchasing options by allowing buyers to select lower initial costs while retaining the ability to increase capacity later.
“Desktop models remain at the heart of our NAS ecosystem,” said Bie-I Chu, Executive Vice President of the Synology NAS Group.
“As memory market dynamics shift, the neo+ Series reinforces our commitment to accessibility, giving customers the freedom to scale hardware according to their immediate budget and future growth.”
The company has confirmed that the neo+ products will remain alongside the existing Plus Series instead of replacing those systems, giving buyers additional configuration choices.
DSM software remains unchanged across the new rangeAlthough hardware memory differs from several Plus models, the software environment remains unchanged. Every neo+ device runs the same Synology DiskStation Manager (DSM) operating system.
DSM includes Synology Drive for private cloud access, cross-platform file synchronization, and site-to-site replication for organizations operating across multiple locations with shared storage requirements.
Active Backup Suite protects Windows, Linux, macOS systems, virtual machines, and cloud accounts while supporting off-site backup strategies intended to improve data resilience.
Surveillance Station also enables each compatible NAS to function as an on-premises network video recorder for monitoring multiple security locations from one interface.
The DiskStation neo+ Series is now available through Synology's global distribution channels, though there are no official prices for these models.
- Samsung advances floating data center project with first Texas engineering agreement
- Floating facilities promise 50MW capacity while reducing traditional construction timelines significantly
- Texas grid review creates fresh uncertainty for expanding data center developments statewide
Samsung Heavy Industries and Dallas-based Mousterian Corporation have signed an engineering contract covering their first floating data center project planned for deployment in Texas.
The deal advances their partnership into the engineering phase, with both companies jointly responsible for the project's basic design, detailed engineering, and production planning.
Each proposed floating facility is expected to provide 50 MW of critical IT capacity while operating on water instead of occupying conventional land-based development sites.
A shipyard-built facility moored beside a power plantThe pilot site is expected to sit next to an existing combined-cycle gas turbine power plant located in Houston, according to reporting on the plan.
Mousterian believes the shipyard construction approach could shorten delivery schedules compared with conventional land-based developments.
"Because the facility is built in a shipyard, fabrication advances in parallel with sitework rather than after it, a schedule and scale that conventional delivery methods cannot match," said Min Suh, chief executive of Mousterian.
Samsung Heavy Industries brings five decades of offshore and maritime engineering experience into the venture, according to its chief executive.
"Together with Mousterian, we intend to deliver floating datacenters with the same rigor, quality, and schedule certainty that define our maritime track record," said Sung-an Choi, chief executive of Samsung Heavy Industries.
Mousterian says its cooling approach avoids drawing on potable water supplies entirely and sends no discharge back into surrounding waterways.
Removing air-cooled chillers and fans from the design is also expected to considerably cut down on noise pollution near the site.
The American Bureau of Shipping is expected to classify these waterborne facilities once formal engineering work moves further.
Grid access in Texas remains an open questionThe proposed location beside an existing gas-fired power plant may not shield the project from broader regulatory challenges affecting new data center developments.
Texas Governor Greg Abbott has paused approvals for new Electric Reliability Council of Texas (ERCOT) grid connections while state authorities review pending applications.
ERCOT is reviewing requests covering more than 474 GW of proposed new connections, a figure Abbott says is over five times peak state demand.
Data centers alone account for roughly 90% of those pending connection requests currently sitting before regulators.
State regulators are now asking project developers whether they plan to generate their own power or depend fully on the shared grid.
Officials also want detailed water consumption estimates from each project before any new connection request receives approval going forward.
Any project that fails to meet these new disclosure requirements will simply be denied a grid connection outright.
Floating infrastructure could sidestep competition for scarce buildable land near major cities, while offering built-in access to water for cooling.
Whether Texas regulators treat water-borne facilities differently from land-based ones under the new audit rules remains unclear for now.
Via The Register
The world is full of weird and wonderful inventions that never really took off, with the Segway perhaps one of the most overhyped technologies out there. Invented by Dean Kamen, it was once considered the future of how people would move around towns and cities – and it had plenty of huge supporters.
Codename GingerSpeculation ran wild when these leaked comments by Jon Doerr hit the mainstream media at the start of the 21st century.
Quote of the dayThis article is part of TechRadar Pro's QOTD project to provide an insight into the minds of the brightest and most recognized figures in the technology industry today and in years gone by. Read the full series here.
This statement was initially disclosed when a copy of a book proposal by journalist Steve Kemper was leaked to the media and published on the online tech magazine Inside.com. They were centered around an exotic new invention described only as 'Codename Ginger' – but the trouble was that nobody knew what it was.
What Kamen was working on behind closed doors was, in fact, a two-wheeled, self-balancing personal vehicle that used smart sensors and motors to keep the rider upright. This was the Segway – and, well, we all know how that story ended.
Wheels of timeSome predicted at the time that cities would be redesigned around the Segway – but the product sold less than 150,000 units before production was shuttered. It's now widely considered the most overhyped invention in history, with high costs and huge regulatory hurdles proving insurmountable obstacles for mass adoption.
The last Segway was actually manufactured as recently as 2020, with the company now transitioning to other forms of transportation, like e-scooters and UTVs. There are still uses in security and in tourism, but it's largely a redundant technology.
As for Kamen, his most recent venture, DEKA, is focusing its efforts on machines in the biotech space. Specifically, he has recently invented a large-scale regenerative medicine manufacturing and organ preservation system.


