This file contains 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 i in *.json; do if ! jq . $i &>/dev/null; then echo "fail: ${i}"; fi; done |
This file contains 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
// launch options should be -novid +mat_queue_mode 2 -high | |
//bhop mode switcher thing - optional, can remove | |
bind mouse3 "bhopon" // toggle scroll wheel bhop | |
alias bhopon "bind MWHEELDOWN +jump;bind MWHEELUP +jump;bind z sm_restart;bind mouse3 bhopoff" | |
alias bhopoff "bind MWHEELDOWN invnext;bind MWHEELUP invprev;bind z radio1;bind mouse3 bhopon" | |
//Auto Weapon Switch | |
cl_autowepswitch "0" // we dont want to pick up & switch to a rifle up if we're in the middle of firing our pistol | |
//Bobbing and Movement Shifting - remove all the dumb view bob |
This file contains 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 | |
poc_command="echo Hello, World!" | |
mkdir -p "$poc_command" | |
cd "$poc_command" | |
$(basename "$(pwd)") |
This file contains 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
mkdir /temp | |
echo "Hello World" > /temp/foo |
This file contains 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
function status() | |
{ | |
# FORKED FROM +++++++++++ | |
# https://gist.github.com/ekristen/11254304 | |
# Author: Erik Kristensen | |
# Email: [email protected] | |
# License: MIT | |
# +++++++++++++++++++++++ | |
# Heavily edited by |