Font Awesome cheatsheet

0 Comments

  If you want to use the font awesome icons directly in your HTML, you can use the font awesome cheatsheet: http://fortawesome.github.io/Font-Awesome/cheatsheet/

How to create a triangle with pure CSS and HTML

0 Comments

This post describes in 3 examples, how you can create a triangle with pure CSS and HTML.     HTML <br /> Example 1 <br /> <br /> <div class="example1"></div> <br /> Example 2 <br

Use formatting–f, when writing to the output console with PowerShell

0 Comments

If you want to format a string when echoing to the screen, use parentheses. Echo("This is {0} " -f "a test.")   Will output: This is a test.   Note http://stackoverflow.com/questions/17623644/what-is-the-difference-between-echo-and-write-host-in-powershell echo is an alias