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
# install virtual frame buffer and wkhtmltopdf dep | |
sudo apt install xvfb libxrender1 | |
# lets make a home for the stuff | |
mkdir ~/wkhtmltopdf | |
cd ~/wkhtmltopdf | |
# get wkhtmltopdf | |
curl -OL 'https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz' | |
tar xJf wkhtmltox-* |
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
; compiled exe uploaded at | |
; https://my.mixtape.moe/goitkl.zip | |
#NoEnv | |
#NoTrayIcon | |
#SingleInstance force | |
SetWorkingDir %A_ScriptDir% | |
GUI: | |
SansSerifFont := "Segoe UI" |
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
#NoEnv | |
#NoTrayIcon | |
#SingleInstance force | |
SetWorkingDir, %A_ScriptDir% | |
If (FileExist("Audiosurf.exe") && FileExist("config.ini")) { | |
ScreenWidth := 800 | |
ScreenHeight := 480 | |
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
#NoEnv | |
#NoTrayIcon | |
#SingleInstance force | |
SetWorkingDir %A_ScriptDir% | |
GUI: | |
Gui, Font, s10, Arial | |
Gui, Add, Text, x10 y10, Game Folder (Please select HoneySelect_64.exe): | |
Gui, Add, Edit, w300 h25 x10 yp+20 vGameFolder, C:\illusion\HoneySelect |
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
#NoEnv | |
#NoTrayIcon | |
#SingleInstance force | |
SetWorkingDir %A_ScriptDir% | |
FileInstall, png2jpeg.exe, %A_Temp%\png2jpeg.exe, 0 | |
; to compile this script, you will need to get png2jpeg.exe first | |
; https://sourceforge.net/projects/png2jpeg/ |
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
@echo off | |
:: set path to the graphicsmagick folder, get gm from | |
:: https://sourceforge.net/projects/graphicsmagick/files/graphicsmagick-binaries/ | |
set graphicsmagick_path=C:\Program Files (x86)\GraphicsMagick-1.3.25-Q8\ | |
:: the maximum width of the image set | |
set image_set_width=1200 | |
:: the resize filter, please check |
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
# path adjust | |
CURRENT_DIR="$( cd "$(dirname "${BASH_SOURCE[0]}")" && pwd )" | |
cd "$CURRENT_DIR" | |
# compress all png to jpg with graphicsmagick | |
for i in *.png; do gm convert "$i" -quality 95 -strip "${i%.*}.jpg"; done | |
# or alternatively there's png2jpeg for windows | |
# https://sourceforge.net/projects/png2jpeg/ | |
for i in *.png; do png2jpeg -q 95 -outfile "${i%.*}.jpg" "$i"; done |
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
<string>combo</string> | |
<string>combo-heal-1</string> | |
<string>combo-heal-2</string> | |
<string>combo-heal-3</string> | |
<string>combo-heal-4</string> | |
<string>combo-heal-5</string> | |
<string>combo-nova-1</string> | |
<string>combo-nova-2</string> | |
<string>combo-nova-3</string> | |
<string>combo-nova-4</string> |
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
@echo off | |
set "sevenz_path=C:\Program Files\7-Zip\7z.exe" | |
set temp_file=%temp%\7zl_output.txt | |
set is_found_compressed_line=0 | |
set is_found_file_line=0 | |
set garbage_count= | |
"%sevenz_path%" l "%~1" > "%temp_file%" |
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
<!doctype html> | |
<html> | |
<head> | |
<style> | |
/* default css */ | |
#output {box-shadow:0 0 5px red; position:relative} | |
.output-block {width:1px; height:1px; position:absolute} | |
</style> | |
<style id="stylesheet"></style> | |
</head> |