sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
| { | |
| "suggest.noselect": false, | |
| "coc.preferences.formatOnSaveFiletypes": [ | |
| "javascript", | |
| "typescript", | |
| "typescriptreact", | |
| "json", | |
| "javascriptreact", | |
| "typescript.tsx", | |
| "graphql" |
| " Specify a directory for plugins | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
| Plug 'scrooloose/nerdtree' | |
| "Plug 'tsony-tsonev/nerdtree-git-plugin' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'tiagofumo/vim-nerdtree-syntax-highlight' | |
| Plug 'ryanoasis/vim-devicons' | |
| Plug 'airblade/vim-gitgutter' |
| <template> | |
| <v-autocomplete | |
| v-model="select" | |
| :loading="loading" | |
| :items="items" | |
| :search-input.sync="search" | |
| no-filter | |
| hide-selected | |
| clearable | |
| return-object |
| ### | |
| ### | |
| ### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
| ### https://christitus.com/windows-tool/ | |
| ### https://github.com/ChrisTitusTech/winutil | |
| ### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
| ### iwr -useb https://christitus.com/win | iex | |
| ### | |
| ### OR take a look at | |
| ### https://github.com/HotCakeX/Harden-Windows-Security |
| [Console]::Beep(130, 100) | |
| [Console]::Beep(262, 100) | |
| [Console]::Beep(330, 100) | |
| [Console]::Beep(392, 100) | |
| [Console]::Beep(523, 100) | |
| [Console]::Beep(660, 100) | |
| [Console]::Beep(784, 300) | |
| [Console]::Beep(660, 300) | |
| [Console]::Beep(146, 100) | |
| [Console]::Beep(262, 100) |
| public static class SelectListExtensionMethods | |
| { | |
| /// <summary> | |
| /// The SelectListItem to use by default as the placeholder for select lists generated by these extension methods when the user needs to pick a value. | |
| /// </summary> | |
| public static readonly SelectListItem DefaultEmptySelectListItem = new SelectListItem() { Text = "-- Pick One --", Value = string.Empty }; | |
| /// <summary> | |
| /// The SelectListItem to use by default as the placeholder for select lists generated by these extension methods when not picking a value is the same as using as of the possible choices (meant for filtering typically) | |
| /// </summary> | |
| public static readonly SelectListItem AnySelectListItem = new SelectListItem() { Text = "-- Any --", Value = string.Empty }; |