Yeled THEOPHANEyeledtheo.hashnode.dev·Oct 23, 2023JPEG : a deep dive into one the most ingenious compression methodJPEG is one the most ingenious, sophisticated, complex and efficient image compression methods ever invented. It was invented by the Joint Photographic Experts Group (JPEG) and can be used to compress image files (JPEG files) as well as video files l...Discuss·1 likeComputer Science
SaicharanKandukurizman.hashnode.dev·Oct 20, 2023using zstd multi-threaded with tar in linuxIntroduction when it comes to compressing files zstd gives a high compression ratio and faster decompression speeds. In my experience packing Linux tarballs, and backing my old codebase to archive, zstd gave me by far the best compression ratio. zstd...Discuss·1 likecompression
AQIB HAFEEZaqibhafeez473.hashnode.dev·Sep 26, 2023Day 17 || Compression and Archiving in Linux DevOpsTwo essential tools in their arsenal are file compression and archiving. In this article, we'll delve into what these concepts are, their Linux command counterparts, and why they are indispensable in the DevOps toolbox. What is File Compression? File...Discuss·134 readsLinux
Subash Neupanesubashneupane7.hashnode.dev·Sep 25, 2023Mastering File and Directory Compression and Extraction in LinuxIn this blog, we will be learning about how the files and directories are compressed and extracting those files in a Linux environment with some practical exposure. Compression and extraction of files and directories are fundamental computing operati...Discusscompression
Frederick Dineendonwolfonline.hashnode.dev·Sep 23, 2023How to Compress AI Data FlowArtificial Intelligence (AI) has revolutionized various industries with its ability to process and analyze vast amounts of data. However, the increasing complexity of AI models and the need to handle large datasets present challenges in terms of stor...DiscussAI
kushagradevops121.hashnode.dev·Sep 13, 2023Working with .tar ,tar.gzip,tar.bzip2,tar.xjWhat is .tar package in Linux ? 1) .tar package, commonly referred to as a "tarball," is an archive file format used on Unix-like operating systems, including Linux 2) It is a way to package multiple files and directories into a single file for stora...Discusslinux for beginners
xiasonghxiasongh.hashnode.dev·Aug 19, 2023A new lightweight lossless compression schemeHi, everyone! Recently, I’ve been researching lightweight compression and approximate computing in data streams. During this time, I’ve found a simple lightweight compression algorithm. To my knowledge, it hasn’t been proposed before. Compression is...DiscussComputer Science
Melvin C Varghese (melvincv)blog.melvincv.com·Jul 31, 2023gzip compression of static files in NGINXAs a DevOps or Ops Engineer, you are likely familiar with the importance of optimizing website performance. One way to improve website speed is by compressing responses using gzip in Nginx. Gzip is a file compression format that reduces the size of f...Discuss·52 readsOptimize and Secure NGINXnginx
Hooman PegahmehrforApplication Supportappsupport.academy·Jul 27, 2023Gzip vs. Brotli - Balancing CPU Usage and Network Bandwidth"I am delighted to share another anecdote from my freelancing experience on Fiverr. The task involved my collaboration with a developer for a seemingly straightforward job - merging records possessing the same identification numbers. These records, ex...Discussbrotli
Andrés Correa Casablancacoderspirit.hashnode.dev·Jun 5, 2023Exploring the LZ77 Compression AlgorithmThis article is the first in a series where we'll delve into the fascinating world of compression algorithms, starting with LZ77 (a lossless data compression algorithm). In future articles, we'll expand on its family: LZ78, LZW, LZSS, DEFLATE, and mo...DiscussCompression Algorithms for the Webalgorithms