Category: programming languages
It looks like it has been a while since last time I submitted code to codeforces. I almost forgot the fun of solving problems. Again, I choose solving easy …
May 6, 2013
beginner, I/O File, implementation, internet, programming languages, tricks, VBA, vbscript, windows, windows scripting host
Ajax stands for Asynchronous Javascript and Xml. In the examples given in this post, we can see that XMLHTTP object is created, for IE6 and IE5. The XMLHTTP object can be used in VBScript to …
Bubble sort is a very simple sorting technique that has the average and worst-case complexity . It swaps each time neighbouring two elements if it is not in order. …
April 23, 2013
base64, beginner, HTML5, http, I/O File, implementation, optimization, php, programming languages, SEO, tricks
Sometimes you want to distribute your HTML application (*.hta) or a pure HTML file (*.html) without any external images. However, it would be nice to include some images, such …
I was reading the source code of the FastMM4 and this short function came to my eyes. function GetThreadID: Cardinal; {$ifdef 32Bit} asm mov eax, FS: end; {$else} begin Result …