Skip to content

Instantly share code, notes, and snippets.

@chemputer
chemputer / install_ffmpeg_libfdkaac.sh
Last active January 6, 2024 04:35 — forked from chrisvaughn/install_ffmpeg_libfdkaac.sh
Install FFmpeg with libfdk_aac support (For Ubuntu)
# Criando um script .sh para executar todos os comandos:
#root@servidor:~# vi script.sh
#root@servidor:~# chmod +x script.sh
#root@servidor:~# ./script.sh
apt-get update
apt-get -y install autoconf automake build-essential git-core libass-dev libgpac-dev libsdl1.2-dev libtheora-dev libtool libvdpau-dev libvorbis-dev libx11-dev libxext-dev libxfixes-dev pkg-config texi2html zlib1g-dev libmp3lame-dev nasm gcc yasm && true
mkdir ~/ffmpeg_sources
cd ~/ffmpeg_sources
git clone --depth 1 git://github.com/mstorsjo/fdk-aac.git
@chemputer
chemputer / RemoveJunk.ps1
Last active October 22, 2019 10:07 — forked from HauptJ/RemoveJunk.ps1
Powershell script to remove junk apps bundled in Windows 10
############################################################
# Powershell script to remove shit features bundled in Windows 10
# Removes junk bundled with Windows 10
# App list: https://www.howtogeek.com/224798/how-to-uninstall-windows-10s-built-in-apps-and-how-to-reinstall-them/
# King shit: https://care.king.com/en/candy-crush-soda-saga/how-to-remove-candy-crush-soda-saga-from-windows-10-with-a-powershell-command
# Author: Joshua Haupt josh@hauptj.com Date: 19.12.2017
# Original gist: https://gist.github.com/HauptJ/e09a8b7e699115f8f35e699a09816da2
# Author: Ben Turner Ben.Turner@turnerb.com 10.22.2019
# Added ability to remove Hidden City and Disable "Consumer Experience", removed the line that removed the "people"
# app, as it failed due to being a system app.