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 :)
Archives
Sunday, January 22, 2006
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-NewAdminAreawas 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.
Posted by karma at 08:06 PM. Filed under: Other Programming
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)?
Posted by karma at 07:44 PM. Filed under: Other Programming

