Archive for October, 2009

Storing data to discontinuous strings

Thursday, October 22nd, 2009

Within Assembly like C/C++ you store strings as one continuous sequence of bytes in memory, well sometimes this isn’t always the case. In addition to changing the value in AX between executions of STOSW, you can change the destination address as well. The end result of this is that you are able to store data into several different areas of memory inside a very tight single loop. (more…)

Creating a PHP Calendar

Monday, October 19th, 2009

Online calendars can be useful and can vary in complexity from a simple calendar to a full blown online booking system. In this tutorial i am going to cover the former of the two.
First thing that needs to be done is to work out what information we will need to collect and display. (more…)