apt-get install git-core build-essential pkg-config libtool libevent-dev libncurses-dev zlib1g-dev automake libssh-dev cmake ruby
git clone https://github.com/msgpack/msgpack-c.git
cd msgpack-c
cmake .
Add the following in .zshrc: | |
... | |
plugins=(osx git zsh-autosuggestions zsh-syntax-highlighting zsh-nvm docker kubectl) | |
... | |
### Fix slowness of pastes with zsh-syntax-highlighting.zsh | |
pasteinit() { | |
OLD_SELF_INSERT=${${(s.:.)widgets[self-insert]}[2,3]} | |
zle -N self-insert url-quote-magic # I wonder if you'd need `.url-quote-magic`? |
Iruka taught me... not to judge people by their reputations but by their personalities. | |
Haku taught me... that there is no good or evil when you're protecting the ones you love. | |
Neji taught me... that if you leave your pride behind you can change your destiny. | |
Rock Lee taught me... that hard work beats talent. | |
Kakashi taught me... that teamwork and friendship stand above the rules. | |
Hinata taught me... that love is worth fighting for. | |
Sai taught me... that a life without feeling isn't worthwhile. | |
Sakura taught me... that weakness is a choice, not an excuse. | |
Gaara taught me... how painful loneliness can be and how love can change someone. | |
Nagato taught me... that revenge and hatred only lead to more revenge and hatred. |
# initialization file (not found) | |
atom.commands.add 'atom-text-editor', | |
'user:toggle-vim-mode-plus': (event) -> | |
if atom.packages.isPackageDisabled("vim-mode-plus") | |
atom.packages.enablePackage("vim-mode-plus") | |
else | |
atom.packages.disablePackage("vim-mode-plus") |
To make a project myapp
to have its bundler install gems inside the project path with below this command -
bundle config --local path <the path>
Assume the project directory is myapp
~:$ cd myapp
~/myapp:$ bundle config --local path vendor/bundle
~/myapp:$ bundle install
#!/usr/bin/env bash | |
uninstall() { | |
list=`gem list --no-versions` | |
for gem in $list; do | |
gem uninstall $gem -aIx | |
done | |
gem list | |
gem install bundler | |
} |
gem list | ack "chromedriver"
# chromedriver-helper {version}
gem uninstall chromedriver-helper
rbenv rehash
rm -f ~/.rbenv/shims/chromedriver
rm -f ~/.rbenv/shims/chromedriver-update
understing what is Spring and Binstub, instead of $bundle exec [rails_commands]
, it's better to use $./bin/[rails_commands]
(rails_commands : rails, rspec, setup, rake, etc )
And it's even better to use direnv, since it will shorhand us to type $./bin/[rails_commands]
(any executable file in ./bin), to just $[rails_commands]
, for example: instead of $./bin/rails s
, we can just type $rails s
.
$ brew install direnv