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
; ~/Library/Application Support/Steam/SteamApps/common/GoatSimulator/GoatSimulator.app/Contents/Resources/GoatGame/Config/DefaultInput.ini | |
; --- Goat bindings | |
; --- | |
.Bindings=(Name="Escape",Command="ShowPauseMenu") | |
.Bindings=(Name="NumPadEight",Command="GBA_Forward") | |
.Bindings=(Name="NumPadFive",Command="GBA_Back") | |
.Bindings=(Name="NumPadFour",Command="GBA_Left") |
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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
## HOST RULES | |
# force www on production host | |
RewriteCond %{HTTP_HOST} !mydev|mystage [NC] | |
RewriteCond %{HTTP_HOST} !^www\. [NC] | |
RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |
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='/bin:/usr/bin' | |
## vars | |
dbs='dbase' | |
dbu='user' | |
dbp='pass' | |
dbdump='dump.sql' | |
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 | |
## defaulting to the present concern, a save_on_modified script, from | |
## http://stackoverflow.com/questions/18234377/sublime-text-plugin-installing-and-using | |
if test -z "$1" | |
then | |
exit 1 ## "action required" | |
else | |
ACTION=$1 |