Skip to content

Instantly share code, notes, and snippets.

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`?
@oudam-meas
oudam-meas / tmate-slave-ubuntu-1604.md
Last active January 14, 2019 06:25 — forked from xinzweb/tmate-slave-ubuntu-1604.md
Tmate-slave on Ubuntu 18

Install dependincies

apt-get install  git-core build-essential pkg-config libtool libevent-dev libncurses-dev zlib1g-dev automake libssh-dev cmake ruby

Install msgpack >= 1.2.0

git clone https://github.com/msgpack/msgpack-c.git
cd msgpack-c
cmake .
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")

NeoSolarized

Install Neosolarized to neovim

Enable True color to iterm2 and tumx

  1. remove export TERM from ~/.zshrc, we dont need to explicitly define it.
  2. add below line to ~/.tmux.config
# Use the xterm-256color terminal
set -g default-terminal "xterm-256color"

Bunder, Install gems inside project directory

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
@oudam-meas
oudam-meas / uninstall_gems.sh
Created July 13, 2018 09:26 — forked from IanVaughan/uninstall_gems.sh
Uninstall all rbenv gems
#!/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
@oudam-meas
oudam-meas / direnv_setup.md
Last active May 24, 2018 07:16
direnv setup - alway run from binstub

Using direnv

story

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.

installation (Mac)

$ brew install direnv