Moved to https://ftvdb.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| ; Pitch Black Theme preset by AveYo, AccentPalette idea by /u/Egg-Tricky | |
| ; for Ctrl+Alt+Del, Logon, Taskbar, Start Menu, Action Center (10 & 11) | |
| ; revised 2022-06-16: show active taskbar button in accent color | |
| [-HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Accent] | |
| [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Accent] | |
| "AccentColorMenu"=dword:aa000000 ; Window borders and titlebar | |
| "StartColorMenu"=dword:aa202020 ; Modals in UWP ex. Apply new refresh rate in 10 |
Warning
App Installer must be installed on Win10/11.
Tip
You can save it and run as batch file (.bat).
winget install --id=Microsoft.VCRedist.2005.x86 -e && winget install --id=Microsoft.VCRedist.2005.x64 -e && winget install --id=Microsoft.VCRedist.2008.x86 -e && winget install --id=Microsoft.VCRedist.2008.x64 -e && winget install --id=Microsoft.VCRedist.2010.x86 -e && winget install --id=Microsoft.VCRedist.2010.x64 -e && winget install --id=Microsoft.VCRedist.2012.x86 -e && winget install --id=Microsoft.VCRedist.2012.x64 -e && winget install --id=Microsoft.VCRedist.2013.x86 -e && winget install --id=Microsoft.VCRedist.2013.x64 -e && winget install --id=Microsoft.VCRedist.2015+.x86 -e && winget install --id=Microsoft.VCRedist.2015+.x64 -e If you want to download an older version ive heard 205.15 works well, i reccomend ApkMirror
- Follow the instructions from https://github.com/vendetta-mod/Vendetta
- After the client is installed, navigate to Settings > Plugins, then click the +, and finally paste
https://vd-plugins.github.io/proxy/maisymoe.github.io/strife/Experimentsinto the input and clickInstall - Once the experiments plugin is enabled, reload the app then go to Settings > Experiments >
Tabs V2 - redesign opt-out/in for alland selectControl Bucket.
Ive also heard enmity works well for IOS.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Create a dir to build things into: | |
| $ mkdir ~/stack && cd ~/stack | |
| Download the sources (sqlite 3230100 was broken, 3220000 was used instead): | |
| $ wget https://www.openssl.org/source/openssl-1.1.0h.tar.gz | |
| $ wget https://sqlite.org/2018/sqlite-src-3220000.zip | |
| $ wget https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tar.xz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # vim: set ft=python: | |
| # see the README at https://gist.github.com/phiresky/4bfcfbbd05b3c2ed8645 | |
| # source: https://github.com/mpv-player/mpv/issues/2149 | |
| # source: https://github.com/mpv-player/mpv/issues/566 | |
| # source: https://github.com/haasn/gentoo-conf/blob/nanodesu/home/nand/.mpv/filters/mvtools.vpy | |
| import vapoursynth | |
| core = vapoursynth.get_core() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.IO; | |
| using Microsoft.Win32.SafeHandles; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.Runtime.InteropServices; | |
| using System.Text; | |
| namespace Test | |
| { |