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
| # Dolby ProLogic II upmix to 5.1 (backward compliant up to Dolby Surround) | |
| # Jose Linares -Dogway- | |
| # >> https://github.com/Dogway | |
| Copy: LI=L RI=R | |
| Channel: LI RI | |
| Delay: 13 ms | |
| Filter 1: ON HPQ Fc 100 Hz Q 0.541 |
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
| Device: Speakers Sound Blaster X7 {6a2bef22-66a1-4aad-a939-17d7d1687a8d} | |
| Preamp: -18 dB | |
| Include: Dolby_ProLogic_II_(5.1_upmix)_IIR.txt | |
| Channel: ALL | |
| Copy: R=R+0.5*C+0.5*SUB L=L+0.5*C+0.5*SUB |
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
| @import url("colors.css"); | |
| @import url("widgets.css"); | |
| .csd > headerbar { | |
| border: none; | |
| } | |
| .csd:not(.popup) > *:first-child { | |
| border: solid 2px @bg_hi; | |
| box-shadow: 0px 2px 8px 3px alpha(black, 0.5); |
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
| winetricks corefonts | |
| # switch to XP | |
| wineboot -s | |
| wineserver -k | |
| wine vc_redist.x86.exe | |
| wine vc_redist.x64.exe | |
| # switch to win7 | |
| wineboot -s | |
| wineserver -k | |
| wineboot |
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
| # ~/.profile: executed by the command interpreter for login shells. | |
| if [ -n "$BASH_VERSION" ]; then | |
| if [ -f "$HOME/.bashrc" ]; then | |
| . "$HOME/.bashrc" | |
| fi | |
| fi | |
| if [ -d "$HOME/bin" ] ; then | |
| PATH="$HOME/bin:$PATH" |
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
| // gcc -shared -fPIC -Wall -o safe_chromium.so safe_chromium.c | |
| // sudo install safe_chromium.so /usr/local/lib/ | |
| // LD_PRELOAD=/usr/local/lib/safe_chromium.so spotify | |
| #include <dlfcn.h> | |
| #include <libgen.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #define AF_INET 2 |
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
| start "LED" "C:\Program Files (x86)\MSI\Gaming APP\MSI_LED.exe" | |
| timeout /t 1 | |
| rem TURN ON | |
| reg add HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\MSI\GamingApp\LED /v LEDStatus /t REG_BINARY /d 010000 /f | |
| timeout /t 1 | |
| rem TURN OFF | |
| reg add HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\MSI\GamingApp\LED /v LEDStatus /t REG_BINARY /d 020000 /f | |
| timeout /t 1 | |
| taskkill /IM msi_led.exe /F |
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
| %YAML 1.2 | |
| --- | |
| # http://www.sublimetext.com/docs/3/syntax.html | |
| name: T4 | |
| file_extensions: | |
| - t4 | |
| - tt | |
| scope: source.t4 | |
| contexts: | |
| main: |
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
| T:\>nmap -v -A 192.168.43.66 | |
| Starting Nmap 7.70 ( https://nmap.org ) at 2018-06-24 23:14 Taipei Standard Time | |
| NSE: Loaded 148 scripts for scanning. | |
| NSE: Script Pre-scanning. | |
| Initiating NSE at 23:14 | |
| Completed NSE at 23:14, 0.00s elapsed | |
| Initiating NSE at 23:14 | |
| Completed NSE at 23:14, 0.00s elapsed | |
| Initiating ARP Ping Scan at 23:14 | |
| dnet: Failed to open device eth2 |
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
| #!/bin/bash | |
| for c in /sys/devices/system/cpu/cpu[0-9]* | |
| do | |
| CPU=${c#*cpu/cpu} | |
| echo "performance" > $c/cpufreq/energy_performance_preference | |
| echo "performance" > $c/cpufreq/scaling_governor | |
| echo "CPU$CPU `cat $c/cpufreq/energy_performance_preference` `cat $c/cpufreq/scaling_governor`" | |
| done |
NewerOlder