https://www.cursoemvideo.com/course/curso-de-algoritmo/
https://www.cursoemvideo.com/course/mysql/
| # save this file as some-name.bat and run as administrator | |
| pushd "%~dp0" | |
| dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt | |
| for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i" | |
| del hyper-v.txt | |
| Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL | |
| pause |
| alias gitwa='git diff --word-diff=porcelain origin/main | grep -e "^+[^+]" | wc -w | xargs' | |
| alias gitwd='git diff --word-diff=porcelain origin/main | grep -e "^-[^-]" | wc -w | xargs' | |
| alias gitwdd='git diff --word-diff=porcelain origin/main |grep -e"^+[^+]" -e"^-[^-]"|sed -e's/.//'|sort|uniq -d|wc -w|xargs' | |
| alias gitw='echo $(($(gitwa) - $(gitwd)))' |
| def set_command(store, inputs) | |
| store[inputs[1]] = inputs[2] | |
| store | |
| end | |
| def get_command(store, inputs) | |
| puts store[inputs[1]] | |
| end | |
| def unset_command(store, inputs) |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <a href="https://wa.me/5581981220466/?text=urlencodedtext" id="link">Ligue para o Bred</a> |
| package main | |
| import "fmt" | |
| func main() { | |
| var tamanho int | |
| fmt.Println("------------------------------") | |
| fmt.Println("Quantos Números vai Escrever? ") | |
| fmt.Println("------------------------------") |
| package main | |
| import ( | |
| "fmt" | |
| "time" | |
| ) | |
| func main() { | |
| var day, month, year, totalOfDays int |
| version: "2" | |
| services: | |
| openvpn-as: | |
| image: linuxserver/openvpn-as | |
| container_name: openvpn-as | |
| cap_add: | |
| - NET_ADMIN | |
| environment: | |
| - PUID=1000 | |
| - PGID=1000 |
| def isPalindrome(input): | |
| length = len(input) | |
| half = length / 2 | |
| return input[0:(half)] == input[(length - half):length][::-1] | |
| class Solution(object): | |
| def longestPalindrome(self, input): | |
| palindrome_size = len(input) | |
| left = 0 |
| set number | |
| set mouse=a | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'editorconfig/editorconfig-vim' | |
| Plug 'kien/ctrlp.vim' | |
| Plug 'terryma/vim-multiple-cursors' | |
| Plug 'crusoexia/vim-monokai' |