Lists all of the journal entries for the day.

Wed, 20 Aug 2008

4:14 PM - Weezer Keep Fishin on ukulele.

1:00 PM - Mobile me page

I just setup foolishgames.org to be a pointer to my .mac site. It should be much easier to get to.

location: Home
mood: Okay Okay

tags: mac mobileme

11:27 AM - Red Bull dangerous to your health?

My father sent me this link.  The article claims that Red Bull hardens your blood.  Very weird.

location: Home
mood: Pessimistic Pessimistic

tags: redbull heart blood

1:31 AM - (no subject)

I also created a new 404 page for foolishgames.com and midnightbsd.org.  Let me know what you think of that.

1:16 AM - Help me decide

I now have 3 different splash screens on foolishgames.com.  They rotate "randomly".  Tell me which one you like the best.

1. The old one

2. A flower

3. Similar to the old one but "full screen"

If you're wondering how i made them random...

 

#include <stdio.h>

#include <stdlib.h>


int main(int argc, char *argv[]) {

    FILE *fp;

    int i;

    char filename[10];

    char c;


    memset(filename, 0, 10);

    sranddev();

    i = rand() % 3;


    sprintf( filename, "%d.txt", i );

    fp = fopen(filename, "r");

    if (fp) {

        while (!feof(fp)) {

            c = fgetc(fp);

   if (c != EOF)

             fputc(c, stdout);

        }

    }

    fclose(fp);


    return 0;

 

tags: fg jewel random splash