cp .bashrc .bashrc.bak cp .bash_logout .bash_logout.bak cp .profile .profile.bak
sudo apt install zsh -y
zsh --version
I was trying to save a Diagram after some changes in the tables an got this error:
Saving changes is not permitted. The changes that you have made require the following tables to be dropped and re-created. You have either made changes to a table that can't be re-created or enabled the option Prevent saving changes that require the table to be re-created.
To Prevent this error to happen, follow this steps:
# Source for this script: https://www.mondaiji.com/blog/other/it/10247-windows-install-fonts-via-command-line | |
# create temp directory | |
$tempPath = "C:\InstallFont" | |
# Obtain system font folder for extraction | |
$fonts = 0x14 | |
$shell = New-Object -ComObject Shell.Application | |
$SystemFontsFolder = $shell.Namespace($fonts) |
### Docker and Docker Compose aliases | |
## Docker Compose shortcuts | |
dc(){ | |
echo "docker-compose $@" | |
docker-compose $@ | |
} | |
dcf(){ | |
dc -f docker-compose.$1.yml ${@:2} |
%SystemRoot%\System32\inetsrv |
*cmd.exe /k ""%ConEmuDir%\..\init.bat" & "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsDevCmd.bat"" -new_console:d:"C:\Projects":t:"Developer Command Prompt" |
npx -p live-server live-server |
code --install-extension Angular.ng-template | |
code --install-extension christian-kohler.npm-intellisense | |
code --install-extension christian-kohler.path-intellisense | |
code --install-extension CoenraadS.bracket-pair-colorizer | |
code --install-extension cyrilletuzi.angular-schematics | |
code --install-extension DavidAnson.vscode-markdownlint | |
code --install-extension davidbabel.vscode-simpler-icons | |
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension docsmsft.docs-article-templates | |
code --install-extension docsmsft.docs-authoring-pack |
npx -p @angular/cli ng n AppName -S --routing --style=css --skip-install -d | |
npm list -g --depth=0 | |
or ask for specific package like: | |
npm list -g @angular/cli --depth=0 |