| Shortcut | Function |
|---|---|
| Ctrl + L | Move the cursor to the browser address bar and highlight everything in it. |
| Ctrl+Shift+N | Open a new window in incognito (private) mode. |
| Ctrl+Shift+T | This combination reopens the last tab you've closed. If you've closed multiple tabs, you can press this shortcut key multiple times to restore each of the closed tabs. |
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
| source 'https://rubygems.org' | |
| # Specify your gem's dependencies in logstash-mass_effect.gemspec | |
| gem "logstash-core", :path => "./logstash/logstash-core" | |
| gem "logstash-core-event-java", :path => "./logstash/logstash-core-event-java" | |
| gem "logstash-core-plugin-api", :path => "./logstash/logstash-core-plugin-api" | |
| gem "logstash-core-queue-jruby", :path => "./logstash/logstash-core-queue-jruby" | |
| gem "logstash-filter-grok", :path => "./logstash-filter-grok" | |
| gem "logstash-patterns-core", :path => "./logstash-patterns-core" | |
| gem "benchmark-ips" |
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
| Checkout repository: | |
| cd $WHERE_DO_YOU_WANT_TO_HAVE_REPO | |
| git clone $REPO_LINK | |
| Make new branch: | |
| git checkout -b $NEW_BRANCH_NAME | |
| Switch to branch: | |
| git checkout $BRANCH_NAME |
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
| set t_Co=256 | |
| " ============================================================================ | |
| " Vim-plug initialization | |
| " Avoid modify this section, unless you are very sure of what you are doing | |
| let vim_plug_just_installed = 0 | |
| let vim_plug_path = expand('~/.config/nvim/autoload/plug.vim') | |
| if !filereadable(vim_plug_path) | |
| echo "Installing Vim-plug..." |
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
| " additionally installed: [0/0] | |
| " https://github.com/w0rp/ale | |
| "colorscheme morning | |
| set t_Co=16 | |
| syntax on | |
| set number | |
| set hlsearch |