Skip to content

Instantly share code, notes, and snippets.

View KishCom's full-sized avatar

Andy Kish KishCom

View GitHub Profile
@KishCom
KishCom / aws_static_site.md
Created June 29, 2023 14:08
AWS Static Site

Create the stack

Template.yml is the Cloudformation template defined under this

aws cloudformation create-stack \
    --stack-name STACK_NAME \
    --template-body file://template.yml \
    --profile AWS_PROFILE \
    --region us-east-1 \

--parameters ParameterKey=DomainName,ParameterValue=DOMAIN_NAME ParameterKey=HostedZoneId,ParameterValue=HOSTED_ZONE_ID

@KishCom
KishCom / CleanWindows10.bat
Created September 29, 2017 14:45
Make Win10 Useable
@rem *** Disable Some Service ***
sc stop DiagTrack
sc stop diagnosticshub.standardcollector.service
sc stop dmwappushservice
sc stop WMPNetworkSvc
sc stop WSearch
sc config DiagTrack start= disabled
sc config diagnosticshub.standardcollector.service start= disabled
sc config dmwappushservice start= disabled
@KishCom
KishCom / setupNGINX.sh
Last active June 28, 2016 20:55
NGINX 1.10.1 on Ubuntu 14.04
##DIY NGINX for 14.04
sudo apt-get -y install build-essential libpcre3 libpcre3-dev zlib1g-dev checkinstall libgeoip-dev
wget http://nginx.org/download/nginx-1.10.1.tar.gz
wget https://www.openssl.org/source/openssl-1.0.2h.tar.gz
tar zxvf nginx-1.10.1.tar.gz
tar zxvf openssl-1.0.2h.tar.gz
cd nginx-1.10.1
./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/etc/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=www-data --group=www-data --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module
@KishCom
KishCom / git_lg.txt
Created March 10, 2016 14:19
Very pretty Git Log
git config --global alias.lg "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative"
@KishCom
KishCom / keybase.md
Created February 25, 2015 18:49
Keybase.io Verify

Keybase proof

I hereby claim:

  • I am KishCom on github.
  • I am kishcom (https://keybase.io/kishcom) on keybase.
  • I have a public key whose fingerprint is C720 D0DF 0630 1472 878B 4569 9007 6C76 F287 9FD7

To claim this, I am signing this object:

@KishCom
KishCom / convertToWebFormats.sh
Last active November 28, 2017 19:49
FFMPEG settings for HTML5 video
#!/bin/bash
# get ffmpeg from this ppa: ppa:kirillshkrogalev/ffmpeg-next
# resize to 640x360 add flag to each: -s 640x360
# -b:v 1500k == 1500kbps video
# -b:a 128k == 128kbps audio
# Convert to GIFs: http://blog.pkh.me/p/21-high-quality-gif-with-ffmpeg.html
echo "mp4 (H.264 / ACC)"
@KishCom
KishCom / gist:4088155
Created November 16, 2012 15:23
Coffee time?
# Description:
# Answer the question: is it coffee time?
#
# Commands:
# listens for: is it coffee time? ... and stuff... read the regex
#
# Fuck I hate CoffeeScript
module.exports = (robot) ->
robot.hear /(is it )?coffee( time)?\?/i, (msg) ->
@KishCom
KishCom / gist:3960395
Created October 26, 2012 18:11
lolbash
# LOL!!1
alias wtf='dmesg'
alias onoz='cat /var/log/errors.log'
alias rtfm='man'
alias visible='echo'
alias invisible='cat'
alias moar='more'
@KishCom
KishCom / gist:3814301
Created October 1, 2012 20:44
Turn off mod_security with .htaccess
<IfModule mod_security.c>
SecFilterEngine off
SecFilterInheritance Off
</IfModule>
@KishCom
KishCom / PHP_is_fucked.php
Created April 12, 2012 14:42
PHP the most amazing language in the world
<?
if ('9223372036854775807' == '9223372036854775808')
echo "Shits fucked";
else
echo "PHP is a great language";
?>