Skip to main content

PluralSight: Free Courses

pluralsight.com online training

Register free account at https://app.pluralsight.com to explore these free courses.

Check this out: https://app.pluralsight.com/library/free

Pluralsight occasionally five one-month-free access, for example, April 2021.

Think of subscribing: Pluralsight also offer 33% off every year on Black Friday, Christmas.

Can install Pluralsight app on Android, iOS, AppleTV.

C# FundamentalsScott Allen

This course gives you everything you need to become a productive C# developer on any platform. Learn the basics of reading and writing C# code in your own applications.

Introduction to ASP.NET MVC 3Scott Allen

This course introduces you to building applications with ASP.NET MVC 3, starting with installing the tools and finishing with a complete Web application.

https://www.pluralsight.com/courses/aspdotnet-mvc3-intro

Popular posts from this blog

Powershell: Install IIS

Run Powershell as Administrator, then run the command below to install IIS. Install-WindowsFeature Web-WebServer Check after installing Get-WindowsFeature *Web*

[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...