I hereby claim:
- I am crowles on github.
- I am chrisdevelops (https://keybase.io/chrisdevelops) on keybase.
- I have a public key ASDUOZSsNWCPy-Uqd2LI3Em6vPExYxryTVuQDebKI7_rAAo
To claim this, I am signing this object:
| #!/bin/bash | |
| keyGen() { | |
| echo "Generating keys..." | |
| i=1 | |
| for ro in {1..15} | |
| do | |
| openssl rand -hex 16 | while read line; | |
| do | |
| echo "$i;$line" >> keys | |
| done |
| #!/bin/bash | |
| echo "Installing EPEL Repository" | |
| yum -y install epel-release | |
| echo "Updating Packages" | |
| yum update | |
| echo "Installing Development Tools" | |
| yum -y groupinstall "Development Tools" |
| # FORKED FROM https://github.com/RoverWire/virtualhost | |
| # Credit goes to Luis Felipe Perez (@RoverWire) | |
| #!/bin/bash | |
| ### Set Language | |
| TEXTDOMAIN=virtualhost | |
| ### Set default parameters | |
| action=$1 | |
| domain=$2 |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Reusable Captcha trait. | |
| * | |
| * to use this trait, simply include it inside your class via use statement. | |
| * Then you just need to call $this->captchaCheck(); | |
| */ | |
| namespace App\Http\Traits; | |
| use Illuminate\Support\Facades\Input; |
| { | |
| "terminal.integrated.shell.windows": "C:\\Users\\christopher.rowles\\AppData\\Local\\Programs\\Git\\bin\\bash.exe", | |
| "terminal.integrated.shellArgs.windows": [ | |
| "--login", | |
| "--init-file", | |
| "C:\\Users\\christopher.rowles\\AppData\\Local\\Programs\\Git\\etc\\profile" | |
| ] | |
| } |
| sudo pip install git+git://github.com/Lokaltog/powerline | |
| wget https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf https://github.com/Lokaltog/powerline/raw/develop/font/10-powerline-symbols.conf | |
| sudo mv PowerlineSymbols.otf /usr/share/fonts/ | |
| sudo fc-cache -vf | |
| sudo mv 10-powerline-symbols.conf /etc/fonts/conf.d/ |
| #!/usr/bin/env python | |
| from TwitterAPI import TwitterAPI | |
| CONSUMER_KEY = '' | |
| CONSUMER_SECRET = '' | |
| ACCESS_TOKEN_KEY = '' | |
| ACCESS_TOKEN_SECRET = '' | |
| api = TwitterAPI( |
| #!/bin/bash | |
| if ! type vim > /dev/null; then | |
| echo "installing vim" | |
| yum install -y vim | |
| else | |
| echo "Vim installed, continuing" | |
| fi | |
| if ! type dos2unix > /dev/null; then |
| alias statc="stat -c '%a %G:%U %n'" | |
| alias ccat="pygmentize -g" | |
| alias tlog="tail -f -n 0 storage/logs/laravel.log" | |
| alias phpcf="php --ini | grep 'Loaded'" | |
| eval $(thefuck --alias) | |
| # custom functions | |
| # IP Lookup | |
| function rip |