Vidhya dharanimage-compression-react.hashnode.devΒ·Sep 30, 2024Image Compression with React: A deep dive.Introduction Image Compression: Compressing Pixels Like Never Before The Math Behind the Squeeze Implementing Compression in React Compression Gone Wrong: When Pixels Revolt Real-time Tagging with Socket.io The Socket.io Magic Formula Building...36 readslossy compression
Saileshchandra-sailesh.hashnode.devΒ·Sep 29, 2024Huffman Coding AlgorithmIn this blog, we will learn about the Huffman Coding Algorithm, which uses a greedy approach to compress file storage using variable encoding schemes. Idea The core concept of the Huffman Coding Algorithm is to allocate fewer bits to more frequently ...11 likesHuffman coding
Makxmelsonic.hashnode.devΒ·Sep 14, 2024File Compression: A Practical ApproachCompression Tool ποΈ A compression tool is a piece of software that is used to store file data in a compressed format. It is useful for space optimization i.e. it helps to store the same amount of information using less memory space. In this applicat...compression
JNAYEH Sirinesirinejnayeh.hashnode.devΒ·Aug 1, 2024Understanding Huffman Coding: A Practical ApproachHuffman coding stands as a cornerstone in data compression techniques, offering a powerful method to reduce the size of digital information. This algorithm, which relies on the frequency of characters in a dataset, has a significant impact on the eff...2 likesΒ·35 readsBinaryTrees
Aayush Shahaaaaayushh.hashnode.devΒ·Jul 5, 2024Huffman Coding 102: Code It Up!Implementation in Go Anything we learn about in Computer Science, is incomplete without an implementation in whatever language is trending at that moment (seriously, don't worry about the language, just focus on the concepts). That being said, let's ...Huffman Codinglossless compression
Aayush Shahaaaaayushh.hashnode.devΒ·Jul 5, 2024Huffman Coding 101: Learn the Theory (Part 1)Introduction In this blog post, we'll explore Huffman coding, a powerful algorithm used for lossless data compression. We'll delve into the theory behind Huffman trees and figure out why they work the way they do. In the second part of this article, ...Huffman Codingcompression
Raineraineyang.hashnode.devΒ·Dec 9, 2023Learning Note: Data CompressionThis article is a summary of Chapter 6 of: Yazawa, H. (2015). η¨εΊζ―ζδΉθ·θ΅·ζ₯η[How Program Works] (L. Fengjun, Trans.). People's Posts and Telecommunications Press RLE Algorithm RLE (Run Length Encoding) is a data compression method that compresses files to...data compression