Skip to content

Instantly share code, notes, and snippets.

@VVispy
VVispy / LG TV Homebrew Guide.md
Last active July 27, 2025 08:03
LG TV Homebrew Guide

Install Updatable Third-Party Apps on LG TVs webOS Brew LogowebOS Brew Logo

Install third-party apps on LG TVs using webOS Dev Manager and LG Developer Mode auto-renewal - completely free.

Requirement: LG TV running webOS 2015+

  • Install extra apps not available on the LG Content Store, such as:
  • Does not void your warranty
  • Rooting is not needed
@ghostbear
ghostbear / Spotify - How to reduce and limit the cache size (Windows - Mac).md
Last active July 29, 2025 05:32
[Spotify] How to limit the cache size (Windows/Mac OS)

Credit to MadHatter

WINDOWS

Use your text editor of choice or if you don't have one use Windows Notepad
Opening with Notepad may or may not result in a fancy mess

  1. Close Spotify
  2. Open File Explorer and paste the following into the address bar %appdata%/Spotify¤
  3. Open the file named prefs with your text editor
  4. Change the numeric value following storage.size= . If storage.size= doesn't exist add it manually to the end of the file and assign numeric value. This value represents megabytes. One gigabyte equals 1024 megabytes. In the end, it should look something like this storage.size=1024
  5. Save the file
@rygorous
rygorous / gist:4172889
Created November 30, 2012 00:28
SSE/AVX matrix multiply
#include <immintrin.h>
#include <intrin.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
union Mat44 {
float m[4][4];
__m128 row[4];
};