I hereby claim:
- I am tgrrtt on github.
- I am tgrrtt (https://keybase.io/tgrrtt) on keybase.
- I have a public key whose fingerprint is 3FBA ED63 1781 3484 A579 CAC4 3FB1 E673 E743 4076
To claim this, I am signing this object:
PROMPT='%{$fg[cyan]%}%c%{$reset_color%} %{$fg_bold[cyan]%}➜ ' | |
RPROMPT='%{$fg[green]%}$(git_prompt_info)% %{$fg_bold[blue]%}%*%{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_PREFIX="<%{$fg[blue]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%} %{$fg[red]%}✗%{$fg[green]%}>%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}>" |
git checkout -b upstream upstream/master | |
git cherry-pick <SHA hash of commit> | |
git push origin upstream |
{ | |
/* Keybindings for emacs emulation. Compiled by Jacob Rus. | |
* | |
* This is a pretty good set, especially considering that many emacs bindings | |
* such as C-o, C-a, C-e, C-k, C-y, C-v, C-f, C-b, C-p, C-n, C-t, and | |
* perhaps a few more, are already built into the system. | |
* | |
* BEWARE: | |
* This file uses the Option key as a meta key. This has the side-effect | |
* of overriding Mac OS keybindings for the option key, which generally |
{ | |
"nodes": [ | |
{ | |
"name": "Tyler", | |
"id": "1" | |
}, | |
{ | |
"name": "Aric", | |
"id": "2" | |
}, |
<?xml version="1.0" encoding="utf-8"?> | |
<!-- | |
This configuration file is required if iisnode is used to run node processes behind | |
IIS or IIS Express. For more information, visit: | |
https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config | |
--> | |
<configuration> | |
<system.webServer> |
I hereby claim:
To claim this, I am signing this object:
language: node_js | |
node_js: | |
- '0.10' | |
notifications: | |
email: false | |
after_success: | |
- test $TRAVIS_PULL_REQUEST = false | |
&& echo -e "Host *.cloudapp.net\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config | |
&& openssl aes-256-cbc -K $encrypted_1d50cdfa274b_key -iv $encrypted_1d50cdfa274b_iv -in .travis/k.key.enc -out .travis/k.key -d | |
&& chmod 600 .travis/k.key |
curl -sL https://deb.nodesource.com/setup | sudo bash - && | |
sudo apt-get install -y nodejs | |
sudo apt-get update && | |
sudo apt-get install nginx && | |
sudo apt-get install git | |
## upgrade aps and resolve deps with the more important ones | |
sudo apt-get dist-upgrade | |
#chagne to root |
#!/bin/bash | |
wget $file | |
sudo stop $upstartName | |
# if dist exists (or public or whatever the tar extracts to | |
if [ -e dist ] | |
then | |
sudo rm -rf dist | |
fi | |
# extact the tar |
# Set up notification options | |
notifications: | |
email: | |
recipients: | |
- [email protected] | |
- [email protected] | |
# change is when the repo status goes from pass to fail or vice versa | |
on_success: change | |
on_failure: always |