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
| call plug#begin() | |
| Plug 'drewtempelmeyer/palenight.vim' | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'wlangstroth/vim-racket' | |
| Plug 'sheerun/vim-polyglot' | |
| Plug 'rust-lang/rust.vim' | |
| Plug 'preservim/tagbar' | |
| Plug 'universal-ctags/ctags' | |
| Plug 'luochen1990/rainbow' | |
| Plug 'vim-syntastic/syntastic' |
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 default [ | |
| { name: 'Afghanistan', code: 'AF', name_fa: 'افغانستان' }, | |
| { name: 'land Islands', code: 'AX', name_fa: 'جزایر الند' }, | |
| { name: 'Albania', code: 'AL', name_fa: 'آلبانی' }, | |
| { name: 'Algeria', code: 'DZ', name_fa: 'الجزایر' }, | |
| { name: 'American Samoa', code: 'AS', name_fa: 'ساموآی آمریکا' }, | |
| { name: 'AndorrA', code: 'AD', name_fa: 'آندورا' }, | |
| { name: 'Angola', code: 'AO', name_fa: 'آنگولا' }, | |
| { name: 'Anguilla', code: 'AI', name_fa: 'آنگویلا' }, | |
| { name: 'Antigua and Barbuda', code: 'AG', name_fa: 'آنتیگوآ و باربودا' }, |
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
| /* | |
| * This is free and unencumbered software released into the public domain. | |
| * | |
| * For more information, please refer to <https://unlicense.org> | |
| */ | |
| //Regular text | |
| #define BLK "\e[0;30m" | |
| #define RED "\e[0;31m" | |
| #define GRN "\e[0;32m" |
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
| <!-- Render the partial --> | |
| @{await Html.RenderPartialAsync("_SocialSharing", ViewData["Title"]);} |
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
| Download/Copy all related *.zip files in one directory. | |
| Open terminal and change to that directory which has all zip files. | |
| Enter command zip -s- FILE_NAME.zip -O COMBINED_FILE.zip | |
| Enter unzip COMBINED_FILE.zip |
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
| " VIM Configuration File | |
| " Description: Optimized for C/C++ development, but useful also for other things. | |
| " Author: Gerhard Gappmeier | |
| " | |
| " set UTF-8 encoding | |
| set enc=utf-8 | |
| set fenc=utf-8 | |
| set termencoding=utf-8 | |
| " disable vi compatibility (emulation of old bugs) |