Skip to main content

Microsoft Visual Studio Code: Notes from the field

Microsoft Visual Studio Code is a free and cross-platform IDE running on Microsoft Windows, Linux, and MacOS.

Install Microsoft Visual Studio Code

Get Visual Studio Code at code.visualstudio.com
Get Visual Studio Code at code.visualstudio.com

Check current version

Visual Studio Code Version 1.0.0
Visual Studio Code Version 1.0.0


Update

Update Visual Studio Code
Update Visual Studio Code

Microsoft Visual Studio Version 1.1.1
Microsoft Visual Studio Version 1.1.1

Install Extension: Visual Studio Team Services

Install Extension: Visual Studio Team Services

Install Extension - Visual Studio Team Services

Commonly used keyboard shortcuts

VS Code keyboard commonly used shortcuts
Shortcut Usage
CTRL + SHIFT + K Delete current line
ALT + Z Toggle Word Wrap
ALT + / Comment current line or selected block
ALT + \ Toggle (hide/show) side bar

Popular posts from this blog

Linux command: swapon

Two ways to check if swap partition exists.

[PowerShell]: Powershell script uploading backup databases to ftp server

Author:  Enrique Puig Nouselles http://gallery.technet.microsoft.com/scriptcenter/80647f66-139c-40a4-bb7a-04a2d73d423c Nhu cầu - Học sử dụng Powershell và áp dụng vào thực tế - Server chạy MS SQL được backup mỗi ngày và lưu các file backup ở folder mặc định "C:/Program Files/Microsoft SQL Server/MSSQL11.MSSQLSERVER/MSSQL/Backup" - Upload các file database backup về một ftp server khác để lưu "offsite" # Begin script # Thanks to: Enrique Puig Nouselles http://gallery.technet.microsoft.com/scriptcenter/80647f66-139c-40a4-bb7a-04a2d73d423c # Khai báo folder chứa các file backup database, dưới đây là folder backup mặc định của MS SQL 2012 $Dir="C:/Program Files/Microsoft SQL Server/MSSQL11.MSSQLSERVER/MSSQL/Backup"   # ftp server $ftp = "ftp://IPAddres/subfolder/subsubfolder" $user = "usernamehere" $pass = "passwordhere" # DO NOT use $(Get-Date), use $d variable instead, otherwise SQL Agent gets error "The...

Linux command: ssh-keygen - Generate SSH Keys

ssh-keygen — authentication key generation, management and conversion