Showing entries 39583 to 39592 of 44050
« 10 Newer Entries | 10 Older Entries »
weekly builds

Saturn’s autoweb

I’ve hacked my scripts that generate doxygen docs to also build MySQL 4.1, 5.0 and 5.1 for AMD64 (the box that it’s running on) with Cluster. This is to help my idea of running Gallery at home with NDB disk data tables in very recent MySQL builds.

How’s it going so far? Well… I’ve found some bugs and some seemingly strange behaviour here and there. However, bug reports will come, and I’m currently running a bit of an older build.

I’ll make the URL of the Gallery public at some point too

Zend Conference Oct 30 - Nov 2

Zend is hosting it's second annual Zend / PHP Conference & Expo on Oct 30 - Nov 2 in San Jose at the Doubletree Hotel.  The program has expanded from last year and includes a full day of tutorials on Monday.  The conference features in-depth technical sessions on topics such as high volume scaling techniques for PHP and MySQL, performance tuning, web services as well as sessions on new capabilities in forthcoming PHP 6. There are also keynotes, case studies and panel sessions.  Zend is one of the major contributors to PHP and they have also developed a great framework that greatly simplifies the …

[Read more]
mysqlreport v2.7 released

mysqlreport v2.7 has been released. This version sports the following changes:

  • Option “password” in ~/.my.cnf now recognized (used to be that only “pass” was recognized)
  • Options host, port, and socket now recognized in ~/.my.cnf
  • Given those two changes, the order of option precendece is such that ~/.my.cnf is read first, then command line options override ~/.my.cnf options, and if nothing else default values are assigned
  • –all actually shows all reports now (i.e. no more need to –all –tab)
  • Like mytop, mysqlreport tries to connect via a socket first, otherwise it tries via a network connection

Thank you to those who provided patches for these changes, although I wound up writing the mods myself for various reasons. To …

[Read more]
Permit Cookies: a Firefox extension that makes cookie whitelisting easy

I’ve been writing a lot lately about Perl, MySQL and so forth, and neglecting another topic that interests me: the Web. I’m going to finish and publish some of the drafts I have on the Web before I continue with another massive database marathon. This one is about someone who read my mind and built exactly the Firefox extension I was about to build myself: an easy way to block all cookies and allow them on a case-by-case basis without nagging.

Missing Vista Features

There's a funny tongue-in-cheek blog posting from a Microsoft employee on some of the features that had to be cut from the forthcoming Windows Vista release.  Originally scheduled to ship in late 2003, Vista will not be available until early 2007.  Good to see that someone at Microsoft still has a sense of humor.  Now if only they would fix remove Windows Genuine Advantage. Or maybe that's part of Microsoft's plan to drive Linux adoption. …

[Read more]
DC PHP Conference Recap

This past Thursday, I attended the DC PHP Conference. Since I was only there for a day, I'm sure I missed a lot, but I did manage to do some of the things on my list.

I attended more talks than usual, including:

[Read more]
Handy MySQL function

Here is a simple function that can help coping with wrong database design, when you have a mix of NULLs and blank fields meaning the same, no value, which they shouldn't.

  1. DELIMITER $$
  2. DROP FUNCTION IF EXISTS `test`.`is_initial` $$
  3. CREATE FUNCTION `test`.`is_initial` (f varchar(255)) RETURNS BOOL
  4. BEGIN
  5. SET @is_initial = false;
  6. CASE f
  7. WHEN NULL THEN SET @is_initial = TRUE;
  8. WHEN '' THEN SET @is_initial = TRUE;
  9. ELSE SET @is_initial = FALSE;
  10. END CASE;
  11. RETURN @is_initial;
  12. END $$
  13. DELIMITER ;
Sorry but I have to comment

The wires are ablaze with news that some Los Angeles members of the Boy Scouts of America can earn the "Respect Copyrights" patch.  Apparently this patch is a product of teamwork between the BSA and the MPAA and involves such activities as learning about P2P file sharing systems, attend a movie and sit through all the credits and later list all the people that might be hurt by stealing the movie, along with several other requirements.  There has been a steady stream of negative comments about this story including one along the lines of "the MPAA is recruiting the BSA to do it's dirty work".

First, this story is not an attack on the BSA and so I will not dwell on my many years of service in the BSA except to say that I have been an assistance ScoutMaster and currently serve as ScoutMaster and know the BSA to be the finest club for young men on the planet.

Second, I want to say that I agree with the stories I've read …

[Read more]
MySQL Camp Free Ride goes to Adam Ritter

And, the winner is……

Adam Ritter, of Nashville, Tennessee has been selected by Proven Scaling for a free ride to MySQL Camp!

Adam’s enthusiasm and very quick (within the first few hours of my original post), yet courteous and complete entry impressed us. His excitement to learn, and professionalism sealed the deal. Here’s an excerpt from his entry:

My name is Adam Ritter and I’m a recent Computer Science graduate from UT Knoxville. I’m currently looking for a job and I realized that being a DBA is what I want to do. I had started working with MySQL back in a course on Database Design and Management course I took in school. This course started the fire inside of me but unfortunately, it was over all too soon and I was left wanting to learn more. I’ve …

[Read more]
The Fun Never Ends

So what happened? Well, two days ago I noticed connection issues while trying to create a blog post on MySQL?s new enterprise offering (more on that later). I sent in a support request to Tera-Byte, my colocation provider. After a while I checked and noticed that I could connect via SSH, but that the server was rejecting my private key and my password.This had me concerned so I called Tera-Byte and asked what was happening. Turns out that they had mistakenly deleted my virtual private server. But they were kind enough to not only increase my new virtual private server?s memory from 360 megs to 512, but also credit me one month?s fees. I was in shock at this news and thanked the tech for the upgrade and refund and hung up.After I got off the phone I skipped past the denial and bargaining stages of grief and arrived at anger. So, calling Tera-Byte back up to ask how exactly this …

[Read more]
Showing entries 39583 to 39592 of 44050
« 10 Newer Entries | 10 Older Entries »