• JQuery AJAX Reference

    Keep in mind when using code below if requesting a page that requires login/restricted access, users login session is not carried over. Snippet below is sample code usage illustrating two different methods of achieving similar result. See references for more info and full specifications. Javscript (JQuery): Javscript (JQuery): References: JQuery Ajax, http://api.jquery.com/jQuery.ajax/

  • JQuery Is Not Defined

    This is a common error for users implementing JQuery UI. Usually if you see this message, this could mean a few things: – There is a syntax issue or bad link referencing the JQuery (min/full) JS. Use your debuggers to make sure the JS is loading. – Similar to above this could also mean the…

  • Net Neutrality

    With the recent release this winter of the movie Tron: Legacy, I only saw it fitting to contrast some of the conflicting nature in the “Net Neutrality” bill that was recently passed by the FCC with the themes prevalent in Tron on the “freedom of information”. Ironic, that a theme which the movie shares with…

  • Thoughts on Wikileaks

    Prior to the recent major events surrounding the release of 250k classified documents by Wikileaks on Julian Assange authority, I had browsed Wikileaks and discovered rarely any information that provided anything more than “tabloid style” unverified references as proof of their authenticity. With the release of these recent government documents, based on the international reaction,…

  • Lambda Functions in .Net

    Lambda expressions in .Net are denoted by the ‘=>’ symbol. These powerful operators can be used to create sleek, optimized loops that perform much faster. The usage below condenses the equivalent of at least 20 lines of two loops. (Sorry kiddos, no time for VB conversion…C# only this time. ;)) Edit (20101229): Lambda rocks! Simply…