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
| https://www.linkedin.com/ambry/?x-li-ambry-ep=AQLLpySkJ7tLdAAAAZ1oDMM1WDt4zpJOpKddgMdDqQXuqjmtUGzYEhRyG9Nyg92G4Y3KBnP6ou6Zu4-BBJ69L_TnY0JSeWuWV7CW9WPz2yZ_W84LJ-gSPTTjAgNgkbWKd68YUP34K3QtrjvXlUJnVuwJteVq19IJ1Kcwna7Fdn_dRk69FwYHHuIyFlogb6OfOiG6oZ7ps-EdfYjBT35etYqB692gL_jl0YKXUFJCmk5Gvs6VuT9HLUphBUcLvQTw7Vs1aDisWYXu6DruXQAwXQiUssZJ0bAuqQJwwhfsUiMs0meyKnVPBPS-34BCjl6Qs72qyU3Zws1rSD21kT8GZX38EVCMeiS9_e4HUk5B3pwSJETCAp6I5oaEZTMNrR_j83Q_Wns2AP5bvO5qKq_qVtcTBWrEgp2fj0bIVa_vpZFv5W4bcgp9JHfARLU4-basIB8U-YRGk-z-_9ZXnB0aWbZdmyRZAaBIV1w2876u-Vk2z8r7T-q5bYs0jwdI5NamjaSj6cJ0CUP_-pE-dgDPSW8ddv1hDgIhcvCwilLTAMJvddISTdn8RHi8HAiCcqa491XunyMRsX971z9hXF2HdIqy | |
| https://restful-booker.herokuapp.com/apidoc/index.html | |
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
| const encrypt = (text, k = 2) => { | |
| const alphabet = [ | |
| 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z', | |
| 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z', | |
| ]; | |
| let newText = ''; | |
| for (let char of text.toUpperCase()) { | |
| // ASCII => A = 65 (https://www.w3schools.com/charsets/ref_html_ascii.asp); | |
| const index = char.charCodeAt() - 65; |
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
| Plug 'scrooloose/nerdtree' | |
| Plug 'airblade/vim-gitgutter' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'tiagofumo/vim-nerdtree-syntax-highlight' | |
| Plug 'ryanoasis/vim-devicons' | |
| Plug 'tpope/vim-fugitive' | |
| Plug 'zivyangll/git-blame.vim' | |
| " Making stuff | |
| Plug 'easymotion/vim-easymotion' |
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 backspace=2 " Backspace deletes like most programs in insert mode | |
| set nobackup | |
| set nowritebackup | |
| set noswapfile | |
| set history=50 | |
| set ruler " show the cursor position all the time | |
| set showcmd " display incomplete commands | |
| set incsearch " do incremental searching | |
| set laststatus=2 " Always display the status line |
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
| " Leader | |
| "let mapleader = " " | |
| " Having longer updatetime (default is 4000 ms = 4 s) leads to noticeable | |
| " delays and poor user experience. | |
| set updatetime=300 | |
| " always show signcolumns | |
| set signcolumn=yes |
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
| " NERD tree configuration | |
| inoremap jk <ESC> | |
| noremap <C-d> :NERDTreeToggle<CR> | |
| nnoremap F :NERDTreeFind<CR> | |
| nnoremap <S-h> :tabprevious<CR> | |
| nnoremap <S-l> :tabnext<CR> | |
| nnoremap <S-t> :tabnew<CR> | |
| " press s key for opening to the right, i for opening to the bottom, enter for opening it in the current split | |
| let g:NERDTreeWinSize=35 |
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 $HOME/.config/nvim/vim-plug/plugins.vim | |
| " Leader | |
| let mapleader = " " | |
| source $HOME/.config/nvim/theme.vim | |
| source $HOME/.config/nvim/nerdtree_fzf.vim | |
| source $HOME/.config/nvim/coc.vim | |
| " Copy to clipboard |
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
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # Path to your oh-my-zsh installation. | |
| export ZSH="/Users/P800180/.oh-my-zsh" | |
| # Set name of the theme to load --- if set to "random", it will | |
| # load a random theme each time oh-my-zsh is loaded, in which case, | |
| # to know which specific one was loaded, run: echo $RANDOM_THEME | |
| # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
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
| # C-b is not acceptable -- Vim uses it | |
| set -g prefix C-a | |
| bind C-a send-prefix | |
| unbind C-b | |
| # Quick reload | |
| bind r source-file ~/.tmux.conf | |
| # True colors mode | |
| # Add truecolor support |
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
| {"lastUpload":"2020-08-29T00:15:29.344Z","extensionVersion":"v3.4.3"} |
NewerOlder