Skip to main content.

Archives

This is the archive for January 2006

Sunday, January 22, 2006

The deadline for Nucleus CMS Skin Design Contest submissions is getting closer (JanuaryJune 30th). If you haven't started on a design yet, the time to do so is now :)

Nucleus CMS Skin Design Contest

Lately, Moraes and others have been doing a lot of work on a new & improved admin area. In the CVS repository, a new branch has been created for this. Quoting Moraes:

Ok, the Branch-NewAdminArea was created. These files and the libs directory were branched:

/nucleus/nucleus/bookmarklet.php
/nucleus/nucleus/index.php
/nucleus/nucleus/media.php
/nucleus/nucleus/libs/

For information on previous tags and branches, see the archive for the CVS category.

Tuesday, January 17, 2006

A while ago, I wrote about Internet Explorer security zones and dynamically created elements. Until such an element was attached to an existing document, all operations on that element were executed in the zone corresponding with about:blank.

I ran into a similar situation while making changes to automatically activate an ActiveX control.

Monday, January 09, 2006

It's a simple enough question, which you should try to solve in your head: What does the following code display, and why?

<?php
  $i = 1;
  $i += $i++ + ++$i;
  echo 'i=', $i;
?>

Bonus question: Is the result always the same in other programming languages (JavaScript, Java, C#, ...; provided the syntax is adapted to the host language :))? Why (not)?