.NET Developers’ Reference Card Roundup | Alvin Ashcraft’s Morning Dew

I thought I would share this list of reference cards / cheat sheets that I have compiled over the last year or so. If I am missing any good ones, please post them in the comments.

Alvin Ashcraft’s Morning Dew.NET Developers’ Reference Card Roundup

Windows PowerShell Cheatsheet

Windows PowerShell is a modern object-based command shell and scripting language designed for Microsoft Windows. Along with the normal shell features for working with files and programs, it also provides for direct access to all of Windows though the Windows Object Models: .NET, COM and WMI.

This refcard covers starting and using Windows PowerShell, including the syntax for all statements, operators and other elements of the language. Also included are examples of how to use .NET, COM, ADSI and WMI objects from PowerShell. Finally, it includes tips and tricks—short examples showing how to perform common tasks from PowerShell.

DZone RefcardzWindows PowerShell

ASP.NET Runtime Cheat Sheet: HttpRequest, HttpRuntime, AppDomain and friends

This article has cheat sheets for retrieving various bits of ASP.NET runtime information. For each bit of info, there is:

* A code snippet for retrieving it in a page, with a link to MSDN
* Description, sometimes explanation
* The value for the live ASP.NET app backing this site”

ASP.NET Runtime Cheat SheetHttpRequest, HttpRuntime, AppDomain and friends

Regular Expressions cheat sheets

Regular Expressions (RegEx) give me a headache most of the time. That’s where cheat sheets like these com in handy:

via:
Scott KlarrRegular Expressions cheat sheets

http://www.ilovejackdaniels.com/cheat-sheets/regular-expressions-cheat-sheet/
http://regexlib.com/CheatSheet.aspx
http://www.funduc.com/regexp.htm
http://krijnhoetmer.nl/stuff/regex/cheat-sheet/
http://opencompany.org/download/regex-cheatsheet.pdf

HTML Entity Character Lookup

Using HTML entities is the right way to ensure all the characters on your page are validated. However, often finding the right entity code requires scanning through 250 rows of characters.

This lookup allows you to quickly find the entity based on how it looks, e.g. like an < or the letter c.

Left Logic : HTML Entity Character Lookup