Error message

  • The specified file temporary://file2HirI8 could not be copied, because the destination directory is not properly configured. This may be caused by a problem with file or directory permissions. More information is available in the system log.
  • The specified file temporary://fileNEH1wU could not be copied, because the destination directory is not properly configured. This may be caused by a problem with file or directory permissions. More information is available in the system log.
  • The specified file temporary://fileKP09yG could not be copied, because the destination directory is not properly configured. This may be caused by a problem with file or directory permissions. More information is available in the system log.

regular

Songs in Code: One Second, Paradise Lost

#include <unistd.h>
int main(int argc, char *argv[]) {
    sleep(1);
    return 0;
}

Explanation: the program exits after one second.

Songs in Code: Eraser, Nine Inch Nails

void e( head ) {
    if ( head->tail )
        e( head->tail );
    free( head );
}

Explanation: deletes a linked list.

Songs in Code: Destroy Everything You Touch, Ladytron

touch * && rm *

Explanation: “touch” all files, then if that is successful, delete them.

Songs in Code: 4 o'clock, Emilie Autumn

lover.clock.tick()
for girl in girls:
    assert(girl.clock.remaining<TIMEOUT)

Explanation: “ticking away from the ones we love, so many girls, so little time”.

Songs in Code: Lost Forever, uncertain attribution

while True:
    assert( self not in universe ), "http://maz.nu/wpaf"

Explanation: continuously test that “self” is not in the “universe” and raise an unexpected error if it is.

Songs in Code: One Second Ghost, The Gothsicles

invincible=1;
blink(1);
setTimeout( function() {
    invincible=0;
    blink(0);
},1000 );

Explanation:

But I suddenly scream “Shit!”
Because my guy has just been hit
With my hits points indicator less than full

But it’s quite inconsequential
And my wrath will be torrential
For the following one second
I am in-vin-ci-ble

Pages

Subscribe to RSS - regular