npm run build && npm run test && npm run e2e
press shift+ctrl+p or shift+cmd+p to bring up the command palette in VSCode, then search for "Format Document With"

Taken from the nintendo switch dumping guide wiki (or other new guide)
cmd.exe, use cd to change to the directory of the files you want to merge.
copy /b * name.ext where name is the name you want to give the file and .ext is the file extension you want to usecopy /b * game.xciHow to convert N64 saves dumped from a Retrode2 with N64 plugin.
| # python -m pip install beautifulsoup4 | |
| # python -m pip install lxml | |
| # python -m pip install requests | |
| import bs4 | |
| import requests | |
| def lookUpDeals(): | |
| slickDealsSite = requests.get('https://slickdeals.net/computer-deals/') |
| # Assuming using fish shell | |
| find ./ -iname '*.flac' | xargs -I '{}' basename '{}' '.flac' | xargs -I '{}' ffmpeg -i '{}'.flac -c:a aac -b:a 320k '{}'.m4a |
| <# | |
| From https://gallery.technet.microsoft.com/Install-RSAT-for-Windows-75f5f92f | |
| Usage: .\Install-RSATv1809v1903v1909.ps1 [-OPTION] | |
| .\Install-RSATv1809v1903v1909.ps1 -All (-All is installing ALL the features within the RSAT bundle) | |
| .\Install-RSATv1809v1903v1909.ps1 -Basic (-Basic is only installing AD DS, DHCP, DNS, Group Policy Management and Server Manager) | |
| .\Install-RSATv1809v1903v1909.ps1 -ServerManager (-ServerManager is only installing the Server Manager) | |
| .\Install-RSATv1809v1903v1909.ps1 -Uninstall (-Uninstall removes all RSAT features again) |
| set shell=/bin/bash | |
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') |
| function myFuzzySearch(needle, haystack) { | |
| if (!needle || typeof needle !== 'string' | |
| || !haystack || typeof haystack !== 'string') { | |
| return false; | |
| } | |
| var innerRegex = needle | |
| .trim() | |
| .split('') | |
| .filter(x => /\S/i.exec(x)) | |
| .map(x => { |
| Homebrew build logs for imagemagick on macOS 10.14.2 | |
| Build date: 2019-01-22 12:54:44 |
| #!/bin/sh | |
| # Updated 2020-03-20 | |
| # Fork of this https://github.com/adamisntdead/DevMyMac | |
| # Color Variables | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| NC='\033[0m' # No Color | |
| # Ask for the administrator password upfront. |