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 | |
| echo -e "\033[0;32mDeploying updates to GitHub...\033[0m" | |
| # Add changes to git. | |
| git add -A | |
| # Commit changes. | |
| msg="deploying updates `date`" | |
| if [ $# -eq 1 ] |
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
| http://stackoverflow.com/q/1985260 |
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
| xIlP0L9xxy51aUDX6lP8Sh6uaugCPjbhzSy9Zlbl |
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
| The Leafy Artifact - 3843548 | |
| The Unkempt Harvest - 1967601228 | |
| The Crazed Work - 2404983463 (?) | |
| The Headless Tulip - 2004341057 | |
| The Hip Hawk - 2004341046 |
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 | |
| #title :wildfly-install.sh | |
| #description :The script to install Wildfly 8.x | |
| #more :http://sukharevd.net/wildfly-8-installation.html | |
| #author :Dmitriy Sukharev | |
| #date :20140312 | |
| #usage :/bin/bash wildfly-install.sh | |
| WILDFLY_VERSION=8.0.0.Final | |
| WILDFLY_FILENAME=wildfly-$WILDFLY_VERSION |
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
| function killPort() { | |
| lsof -P | grep $1 | awk '{print $2}' | xargs kill -9 | |
| } |
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
| # | |
| # Based on zsh-powerline and paradox | |
| # * Time and Ruby version shown on the right | |
| # * Git branch info on the left | |
| # * Single line prompt | |
| # | |
| # Authors: | |
| # Yetrina Battad <hello@yetti.io> | |
| ZSH_THEME_REP_TIME_SINCE_COMMIT_SHORT="%{$fg[green]%}" |
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
| <div class="section group"> | |
| <div class="col span_1_of_6"> | |
| 1 of 6 | |
| </div> | |
| <div class="col span_1_of_6"> | |
| 1 of 6 | |
| </div> | |
| <div class="col span_1_of_6"> | |
| 1 of 6 | |
| </div> |
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
| # Secure the server: | |
| # https://library.linode.com/securing-your-server | |
| # Install essential stuff | |
| apt-get update | |
| apt-get upgrade | |
| apt-get install build-essential | |
| apt-get install git | |
| apt-get install zsh | |
| apt-get install zlib1g-dev # Dependency for bundler |
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
| git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" |