Latest Tech News

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

Filtered by: 10gb Clear Filter

This dock transforms the Mac mini into a retro classic Mac

It’s becoming increasingly rare to find a tech accessory in 2025 that’s both functional and fun to use. As so many of these accessories become more commoditized, they begin to function and look the same, making them fade into the background. So when I saw the Wokyis Retro Docking Station for the M4 Mac mini, I was immediately intrigued. It transforms the Mac mini into something straight out of 1984. On paper, it had all the functions I needed out of a dock, but it was also such a cool-looking pr

Fun with gzip bombs and email clients

Gzip/Zip bombs have been a thing for decades. Lets create a 10MB gzip file which decompresses to 10GB: dd if =/dev/zero bs =1G count =10 | gzip > 10gb.gz This is called a Gzip bomb, because when it is decompressed, it blows up to a much larger size (~1000 larger). Add it your website document root and configure Nginx to serve it up as an image, with gzip Content-Encoding: location /10gb.png { default_type image/png; add_header Content-Encoding gzip; try_files /10gb.gz = 404 ; } An HTTP clien

Topics: 10gb https img png src