Category: technical
September 13, 2012
algorithms, batch script, beginner, games, images drawing, profiler, software design, string, technical, tools / utilities, windows command shell
Windows Batch Programming has been in existent for decades, ever since the first MS-DOS. The file extension that ends with *.bat will be interpreted by the DOS line by …
Scripting languages are relatively slow compared to native languages e.g. C/C++. Therefore, it is often needed to identify the performance bottlenecks of the code. In , the timeit function …
August 29, 2012
beginner, bug fixes, HTML5, http, implementation, internet, javascript, programming languages, SEO, technical, tricks
Today, I rewrite the home page of the my site www.steakovercooked.com using mainly Javascript. The idea is to use the object defined in , printing the messages and major …
August 28, 2012
beginner, github, HTML5, http, implementation, internet, javascript, programming languages, technical, tricks
In Javascript, there are some nice language features, one of them is to define a class via returning a list of functions. For example, the following illustrates this simple …
QueryString is a requested pairs of key and value for URL. For example, in the URL http://www.sample.com/index.php?a=1&b=2&c=3 the QueryString is a=1&b=2&c=3. The first delimiter between the requested file name …