Maximo Document Site
Year: 2017
Build a Real-world App with ASP.NET Core and Angular 2 – YouTube
From Start to Finish: ASP.NET Core, Entity Framework Core and Visual Studio Code – YouTube
LadyNaggaga/ASP.NETCoreMVA: Microsoft Virtual Academy MVA
Hanselman & Lady Naggaga
Source: LadyNaggaga/ASP.NETCoreMVA: Microsoft Virtual Academy MVA
How to set the hosting environment in ASP.NET Core
Using PowerShellAlternatively, you can use PowerShell to set the variable. In PowerShell, as well as the normal user and system variables, you can also create a temporary variable using the $Env: command:$Env:ASPNETCORE_ENVIRONMENT = “Development”
Can’t install Windows Driver Kit 8 Release Preview
Hi, i got the same problem. I where stuck somewhere between broken install/uinstall. So i have tried everything to get this work. Last but not least i deleted every single Registry Entry with “Windows Driver Kit” in it and it worked.So the last one did the magic for me:HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{da762e25-7812-4a12-871c-93574078d85a}in cooperation with deleting:HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows Kits\Installed Products(Windo
WP-DB-Backup — WordPress Plugins
Description WP-DB-Backup allows you easily to backup your core WordPress database tables. You may also backup other tables in the same database.
Source: WP-DB-Backup — WordPress Plugins
Configure automated builds from GitHub | Docker Documentation
Using Microsoft Word with git
One of the major challenges of writing a journal article is to keep track of versions – both the different versions you create as the document progresses, and to merge in the changes made by your collaborators. For most academics Microsoft Word is the default writing tool, and it is both very good and very bad in this. Very good because the track changes feature makes it easy to see what has changed since the last version and who made the changes. Very bad because this feature is built around keeping everything in a single Word document, so that only one person can work on on a manuscript at a time
Source: Using Microsoft Word with git
Git Command ….
git init
git add <file>
git status
git commit
git push
using git bash
touch index.html
git init
git config –global user.name ‘frank kim’
git config –global user.email ‘fafad’
git config –list
git help config
git
git add index.html
git status
git rm –cache index.html
git add *.html
git .
git add -A
git reset
git commit
//remove comment, and make it like Initial Commit
git commit –m ‘Changed index.html’
git log
touch .gitignore add text log.txt
touch log.txt
git branch mybranch
to switch different brach.
git checkout mybranch
git checkout master
git push -u origin mybranch
git pull
git branch mybranch
git push origin master
//
git checkout mster
git pull origin master
git branch –merged
git merge mybranch
git push origin master
//
//
git branch –merged
git branch -d mybranch
git brach -a
git push origin –delete mybranch
create github repository.
git remote ***
git remote
git remote -v
git branch -a
git diff “Showing you changes”
git push -u origin master
git pull
Fast Example
git branch subtract
git checkout subtract
git status
git add -A
git commit -m ‘Subtract …’
git push -u origin subtract
git checkout master
git pull origin master
git merge subtract
git push origin master