lunedì 17 settembre 2018

My technology sites list

A group of sites sharing interesting articles for developers. Other sites along the way.

Let's start:
- https://hackernoon.com
- https://flaviocopes.com
- https://www.howtogeek.com
- https://codeburst.io

giovedì 13 settembre 2018

How to Create Symbolic Links in Windows 10

You need to open "command prompt" (not "power shell") as administrator and then you can easily do it by "mklink" command.
To find "command prompt" icon you can use Cortana and then click right bottom mouse and select command prompt (admin)

Files symbolic link

Grammar
mklink Link Target

Example
mklink "E.\path\symbolic_link.txt" "E.\path\real_file.txt"

Directory symbolic link

Grammar
mklink /D Link Target

Example
mklink /d "E.\path\symbolic_link" "E.\path\real_folder"

Ref:
https://www.maketecheasier.com/create-symbolic-links-windows10/