To make flowcharts Web 2.0 style check out Gliffy.com.
Looking for a To Do list that works off-line as well as on-line? Do you also need to send your To Do items via SMS from your cell phone?
I love Remember The Milk just for this sort of thing.
To make flowcharts Web 2.0 style check out Gliffy.com.
Looking for a To Do list that works off-line as well as on-line? Do you also need to send your To Do items via SMS from your cell phone?
I love Remember The Milk just for this sort of thing.
I was supposed to go to Medjool to meet up with the Zappos crew, but instead I ended up helping a pal with a MySQL database upgrade problem with version 5.1.24-rc.
The upgrade was a cluster fuck!
These steps for upgrading MySQL have served me well for the past 9 years.
tar cvf backup_data.tar /usr/local/mysql/var/* gzip backup_data.tar cd /usr/local/src/mysql-5.1.24-rc ./configure --prefix=/usr/local/mysql --with-mysqld-user=mysql --with-ssl make make install scripts/mysql_install_db
Then I’d just run ‘/usr/local/libexec/mysqld –user=mysql &’ and I’d be on my merry way to happily computing on the web.
But now wiith version 5.1.24-rc of MySQL, I’d have to ask what the heck are they doing at Sun to MySQL?
When I started the server, I noticed that the state files were running in /var . Big fail there, since the prefix is defined as /usr/local/mysql .
Also, I noticed that when I ran scripts/mysql_install_db there were more path errors:
FATAL ERROR: Could not find /fill_help_tables.sql
Then the biggest source of fail occured when I ran this:
/usr/local/libexec/mysqld –print-defaults
/usr/local/mysql/libexec/mysqld would have been started with the following arguments:
--port=3306 --socket=/tmp/mysql.sock --skip-locking --key_buffer=16M --max_allowed_packet=1M --table_cache=64 --sort_buffer_size=512K --net_buffer_length=8K --read_buffer_size=256K --read_rnd_buffer_size=512K --myisam_sort_buffer_size=8M --log-bin=mysql-bin --server-id=1 --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/run/mysqld/mysqld.sock --port=3306 --basedir=/usr --datadir=/var/lib/mysql --tmpdir=/tmp --language=/usr/share/mysql/english --skip-external-locking --bind-address=127.0.0.1 --key_buffer=16M --max_allowed_packet=16M --thread_stack=128K --thread_cache_size=8 --query_cache_limit=1M --query_cache_size=16M --expire_logs_days=10 --max_binlog_size=100M --skip-bdb
Once again, path errors, and –skip-bdb is an option that doesn’t even exist for mysqld!!!!!!
Here was my fix for the scripts’ install:
./scripts/mysql_install_db --no-defaults --port=3306 --socket=/tmp/mysql.sock \ --skip-locking --key_buffer=16M --max_allowed_packet=1M --table_cache=64 \ --sort_buffer_size=512K --net_buffer_length=8K --read_buffer_size=256K \ --read_rnd_buffer_size=512K --myisam_sort_buffer_size=8M --log-bin=mysql-bin \ --server-id=1 --user=mysql --pid-file=/var/run/mysqld/mysqld.pid \ --socket=/var/run/mysqld/mysqld.sock \ --port=3306 --basedir=/usr/local/mysql --datadir=/usr/local/mysql/var \ --tmpdir=/tmp --language=/usr/local/mysql/share/mysql/english --skip-external-locking \ --bind-address=127.0.0.1 --key_buffer=16M --max_allowed_packet=16M \ --thread_stack=128K --thread_cache_size=8 --query_cache_limit=1M \ --query_cache_size=16M --expire_logs_days=10 --max_binlog_size=100M
Here’s my fix for how the server must start from now on:
/usr/local/mysql/bin/mysqld_safe --no-defaults --port=3306 \ --socket=/tmp/mysql.sock --skip-locking --key_buffer=16M \ --max_allowed_packet=1M --table_cache=64 --sort_buffer_size=512K \ --net_buffer_length=8K --read_buffer_size=256K \ --read_rnd_buffer_size=512K --myisam_sort_buffer_size=8M \ --log-bin=mysql-bin --server-id=1 --user=mysql \ --pid-file=/var/run/mysqld/mysqld.pid \ --socket=/var/run/mysqld/mysqld.sock --port=3306 \ --basedir=/usr/local/mysql --datadir=/usr/local/mysql/var \ --tmpdir=/tmp --language=/usr/local/mysql/share/mysql/english \ --skip-external-locking --bind-address=127.0.0.1 --key_buffer=16M \ --max_allowed_packet=16M --thread_stack=128K --thread_cache_size=8 \ --query_cache_limit=1M --query_cache_size=16M \ --expire_logs_days=10 --max_binlog_size=100M &
All that just to start a server, so now, I’m totally telling my friends to use PostgreSQL instead. Sure it’s slower and doesn’t scale as much by a factor of 4 compared to MySQL, but hey, maybe it’s time for something new.
I’m a big fan of OAuth, because they’re coding a way of sharing your private data between different websites without having to give any 3rd party your password.
What’s your favorite open source project and why?
The oldest piece of code I have that I wrote is a text-based poker program.
Here’s a screenshot:
I wrote it for my first college computer programming class in 1995.
To use the code on a unix machine:
tar zxvf Poker-1.0.tar.gz
cd poker-1.0
make
./poker
What’s the oldest program you have that you wrote?
It seems that out is the new in.
At Dogster, we have laptop-less meetings.
At the Reverie Coffee Shop, there’s no wi-fi, which is great for having a place where folks still meet, greet and have conversations.

Here’s the LA Times article.
The next San Francisco Web Analytics Mixer is going to held at the Supperclub in San Francisco next Wednesday, the 2nd of April. RSVP at the Web Analytics Demystified Site.
These events have gotten really classy and you’ll be able to ask your burning questions to the web analytics pros present.
Meraki hopes to cover San Francisco in a sea of Free Wifi.
If you take a look at their map, you can see that they’ve got a good bit of coverage in San Francisco.
Look for the “Free the Net” SSID to hook up.
I really like the fact that they are looking into solar for their routers.
Thanks to Leef for this info.
You’ve got until August 30th, 2008 to migrate your code to the latest Youtube API. After that date, your current code base might not work.
I used 3 important coding concepts while working on migrating my Youtube Facebook App to the newest Youtube API:
The strategy pattern allows you to define common behaviors that will be shared among your set of classes. In this case, I’ve got a class for the old Youtube API, and a class for the new Youtube API. Although the URLs used for accessing the two APIs are different, I’ll define a method common to each class for accessing URLs. In this case it’s the setURL method.
In PHP I do this like so:
interface apiCalls
{
public function setUrl();
}
The factory pattern allows me to create an instance of an object for using the old API or the new API on the fly. Factory methods just return the new instance of an object.
$dynamic_fave = FaveFactory::Create(“cyphgenic”, ‘yes’, 2, ‘on’, ‘2.0’);
$dynamic_fave->setUrl();
print $dynamic_fave->url . “\n”;
$dynamic_fave = FaveFactory::Create(“cyphgenic”, ‘yes’, 2, ‘on’, ‘1.0’);
$dynamic_fave->setUrl();
print $dynamic_fave->url . “\n”;
If you take a look at the code I’ve got and compare the old version with the new one, you can also see that I’ve cleaned up the nested if-else statements with arrays.
BAD NESTED IF-ELSE:
if ($showUploaded == 'on') {
$method = "youtube.videos.list_by_user";
} else {
$method = "youtube.users.list_favorite_videos";
}
YAY! NO IF-ELSE:
$h_method['on'] = "youtube.videos.list_by_user";
$h_method['off'] = "youtube.videos.list_by_user";
$method = $h_method[$this->showUploaded];
Below are the links to the bits of the code that I had to migrate. I just use one particular method, setUrl() as an example.
You might be wondering why two classes for the old and new API. If any new features need to be coded, or bugs need to be fixed in either API, I can do so within a particular class, and not add more obfuscation to the code. The two classes don’t violate the DRY principle because each models a particular thing.
Youtube’s censors hate geeks. You can’t watch the Matrix because it’s been removed, but ya, you can jack off all you want to all of Jane Austen’s books turned into movies. To me this is such a joke, but I think there’s an explanation:
You can no longer see a lot of the scenes from the Matrix on youtube:
If it’s a chic flick like Pride and Prejudice or Persuasion? Guess what – you still can see the whole film in its entirety.
WTF?
The makers of Merchant Ivory type films see their films on Youtube as advertising… maybe there are a few die hard cultural conservatives who see it as reviving a long-gone era of classism and good manners. The owners of the Matrix, Warner Bros., see films on Youtube as cutting into their profits. They probably hate all the radical lefty politics in it, too.
Can any insiders confirm this?