Sharing Ideas...
Posted on March 29, 2015 | Tags: Blogger Javascript jQuery Plugin
Posted on February 4, 2014 | Tags: Shell Short Post
@echo off curl -sS %1 > temporary.zip && unzip temporary.zip && rm temporary.zip
fetchzip http://the/url/of/the/file.zip
Posted on October 15, 2013 | Tags: Cheatsheet Javascript
// Normal true, false // Shorthand !0, !1 // Because true === !0, false === !1
var a = "1"; // Normal new Number( a ); // Shorthand +a; // Result 1
var a = 3.5; // Normal : parseInt( a, 10 ); // Shorthand ~~a; // Result 3
Posted on October 12, 2013 | Tags: Short Post Subversion SVN
svn commit -m ''
svn commit -m "fixed bugs"
Posted on October 10, 2013 | Tags: Blogger Javascript jQuery Plugin Tutorial