Language References

  • C++ Cheat Sheet and Quick Reference Guide

    The Tools To compile and test code on Windows, my recommendation would be using: Microsoft Visual Studio 2008/2010 Express Editions (ask your instructor about full versions) On an older Windows box (if it’s not quad core), you might want to… Continue reading

  • Ruby Quick Code Reference

    CRUD: Create (alternate syntax): Read (alternate syntax): Update (alternate syntax): Delete (alternate syntax): References Railsforzombies.org Continue reading

  • MySQL Quick Reference

    Import CSV: References http://www.pantz.org/software/mysql/mysqlcommands.html http://support.modwest.com/content/6/253/en/how-do-i-import-delimited-data-into-mysql.html Continue reading

  • Quick Cisco IOS Reference

    As a general word of caution, if you have no experience with Cisco or other CLI based router admin (such as linux and red hat derivatives), I would not recommend diving in unless you have a lot of spare time… Continue reading

  • PHP Quick Reference

    Escape sequences for print output: Max integer and float size (overflow): generate random number: Get Current Page Name: Came across the following on stackoverflow while looking for the PHP equivalent of string.format. Sprintf (similar to php printf, in c# string.format):… Continue reading

  • MSSQL Quick Reference

    Snippets below have been condensed from their original sources for brevity. See references for original articles. Great reference on joins: http://www.codeproject.com/Articles/33052/Visual-Representation-of-SQL-Joins Show all tables in specific database: (MSSQL equivalent of MySql “show tables”) Insert into: Insert if not exists: Trigger… Continue reading

  • Quick .Net Encryption Reference

    The code below represents a very basic .NET encryption class which has been tested and should work in your application – simply plug and play. 🙂 Contains two static methods that can be called without needing to instantiate the class.… Continue reading