Install and setup is as simple as it gets to install any software on linux:
sudo apt-get update
sudo apt-get upgradeAnd then:
Other optional ways:
http://www.talkingdotnet.com/add-angular-6-material-angular-6-asp-net-core-app/ http://www.talkingdotnet.com/upgrade-angular-5-app-angular-6-visual-studio-2017/ http://www.mithunvp.com/using-angular-elements-asp-net-core-angular-cli-visual-studio/ https://neelbhatt.com/2018/06/02/create-an-application-with-angular-6-and-net-core-step-by-step-guide/ https://www.codeproject.com/Articles/1250961/Deploying-an-Angular-Application-with-ASP-NET-Core
| import re, string, unicodedata | |
| import nltk | |
| import contractions | |
| import inflect | |
| from nltk import word_tokenize, sent_tokenize | |
| from nltk.corpus import stopwords | |
| from nltk.stem import LancasterStemmer, WordNetLemmatizer | |
| def replace_contractions(text): | |
| """Replace contractions in string of text""" |
| Get-Command # Retrieves a list of all the commands available to PowerShell | |
| # (native binaries in $env:PATH + cmdlets / functions from PowerShell modules) | |
| Get-Command -Module Microsoft* # Retrieves a list of all the PowerShell commands exported from modules named Microsoft* | |
| Get-Command -Name *item # Retrieves a list of all commands (native binaries + PowerShell commands) ending in "item" | |
| Get-Help # Get all help topics | |
| Get-Help -Name about_Variables # Get help for a specific about_* topic (aka. man page) | |
| Get-Help -Name Get-Command # Get help for a specific PowerShell function | |
| Get-Help -Name Get-Command -Parameter Module # Get help for a specific parameter on a specific command |
| a: AM/PM | |
| A: 0~86399999 (Millisecond of Day) | |
| c/cc: 1~7 (Day of Week) | |
| ccc: Sun/Mon/Tue/Wed/Thu/Fri/Sat | |
| cccc: Sunday/Monday/Tuesday/Wednesday/Thursday/Friday/Saturday | |
| d: 1~31 (0 padded Day of Month) | |
| D: 1~366 (0 padded Day of Year) | |
| -- assign logical name to macro keyboard | |
| -- lmc_assign_keyboard('MACROS') | |
| -- lmc_minimize(); | |
| -- lmc_reset(); | |
| lmc_say('Loading keyboard configuration') | |
| lmc.minimizeToTray = false | |
| -- lmc_minimize() | |
| -- lmc_load('E:\\lmc.lua') | |
| -- The function returns title of active window. Useful if you want different behaviour of macros depending of active application. |