BLKSTHL gets a well-deserved facelift


Hi all

BLKSTHL_180

I felt that it was time to give the blog a facelift, the built-in theme was nice but it had drawbacks such as the width that for some reason are to narrow on all of the offered out of box themes. This design is somewhat SharePoint 2013 inspired and is easier to read and has more horizontal space…finally. No more cropped code segments…
My hope is that you will find it better in every way. If the theme is anything you like, feel free to ask for it and you shall recieve the CSS file.

And yes, just to remind myself what I had Before, this is what it looked like:

OldDesign


_________________________________________________________

Enjoy!

Regards

Twitter | Technet Profile | LinkedIn

Comment out – any way you can


Always, when you want to comment out something, I notice what language I’m in and can never remember what the comment out is for a perticular language…so, I have compiled what I usually work with withing the boundaries of SharePoint.

Hope they can help you as well.

Trasact SQL
Comment out a single line:
—  Comment out this row

Comment out a paragraph:
/* Comment out this
entire paragraph spanning
over several rows */

DOS
Comment out a line:
: Comment out this row
(Yes, the starting ‘:’ is what does it…)

HTML/Java/Asp
Comment out a row or paragraph:
<!– Comment out this row or an entire paragraph/section from start to stop –>

PowerShell
Comment out a single row:
#  Comment out this row

CSS/Stylesheet
Comment out a row or paragraph:
/* Comment out this row or an entire paragraph/section from start to stop */

C#
Comment out a single row:
// Comment out this row

C#
Comment out a row or paragraph:
/* Comment out this row or an entire paragraph/section from start to stop */

VBScript
Comment out a single row:
’ Comment out this row

XML
Comment out a row or paragraph:
<!– Comment out this row or an entire paragraph/section from start to stop –>

Enjoy!

Regards