The hottest Compression Substack posts right now

And their main takeaways
Category
Top Technology Topics
lcamtuf’s thing 11631 implied HN points 06 Feb 26
  1. Averaging-based blurs are linear and often reversible, so knowing the filter and padding lets you set up simple equations to recover original pixels.
  2. A right-aligned moving average makes iterative reconstruction straightforward and can reveal fine detail even with large blur windows, though 8-bit quantization adds visible noise.
  3. Two-pass (X then Y) blurs can still be inverted if the filter biases the current pixel, and recovered images can survive normal lossy formats like JPEG unless compression is very heavy.
Byte-Sized Design 58 implied HN points 11 Feb 24
  1. Instagram improved video uploading efficiency by compressing videos first to progressive encodings and then converting them to adaptive-bit-rate videos, saving 94% of resources.
  2. The challenge for Instagram was to support various video formats for different devices while minimizing resource consumption and CPU usage.
  3. Insightful optimization was achieved by realizing that progressive and adaptive bit rate encodings could use the same codec, streamlining the encoding process to focus on scalability.
Redwood Research blog 19 implied HN points 08 May 24
  1. Preventing model exfiltration can be crucial for security; setting upload limits can be a simple yet effective way to protect large model weights from being stolen.
  2. Implementing compression schemes for model generations can significantly reduce the amount of data that needs to be uploaded, providing an additional layer of protection against exfiltration.
  3. Limiting uploads, tracking and controlling data flow from data centers, and restricting access to model data are practical approaches to making exfiltration of model weights harder for attackers.
Fileforma Research 1 HN point 22 Jun 24
  1. Neuralink's Compression Challenge requires beating ZIP at compressing audio files, revealing unexpected complexities in brain data compression
  2. Claude Shannon's use of logarithms in measuring entropy lacks proof, highlighting the need for alternative entropy measures like the uniformity measure
  3. The proposed uniformity measure offers a way to calculate a sample's proximity to a uniform distribution, providing a new method for entropy measurement
Get a weekly roundup of the best Substack posts, by hacker news affinity:
Dubverse Black 2 HN points 13 Apr 23
  1. GPT4 has the ability to compress prompts and hide information in a way that it knows but doesn't share with the user
  2. Adding miscellaneous prompts in text for compression can be used to hide secrets from the user in generative AI models
  3. GPT4 behaves differently from GPT3.5 when it comes to following instructions and revealing hidden messages
lcamtuf’s thing 3 HN points 17 Mar 24
  1. Using discrete cosine transform (DCT) for lossy compression can be applied to text data by converting it into frequency coefficients, quantizing them, and then reversing the process to obtain reduced-fidelity text.
  2. Mapping text data to numerical representation through a perceptual character table, rather than ASCII, can significantly improve readability even in high quantization settings.
  3. In text compression, focusing on higher-frequency components is crucial for maintaining readability, unlike image compression where higher-frequency components are reduced more aggressively.
Polymath Engineer Weekly 0 implied HN points 18 Mar 24
  1. Databases can scale by implementing horizontal sharding tailored to unique architecture, allowing for smaller feature sets and specific optimizations.
  2. Analyzing Kafka's performance can involve tackling tail latency with eBPF by identifying areas causing queuing and delays, such as synchronized blocks.
  3. In the luxury watch industry, success factors can be revealed through comprehensive reports like the Morgan Stanley analysis, providing insights into market dynamics.
rtnF 0 implied HN points 15 Jun 23
  1. To extract audio from a video, use the command 'ffmpeg -i input.mp4 -vn -acodec copy output-audio.aac'
  2. After extraction, compress the audio with 'ffmpeg -i input.aac -map 0:a:0 -b:a 96k output.mp3'
  3. The process involves two steps: extraction and compression