Andy Kopciuch's Blog
Tuesday, October 23, 2007
  php5-imagick, Compromise (mebe not) & The Fly
So I had been running feisty for quite a while now with no issues of any of my code base on PHP5. And since Kev was working on some new OO code, we decided to up to PHP5 in order to benefit from the improved (well over 4 anyways) versions. Not to mention 4 is EOLd in Dec this year ... time to move on. That is 95% as easy as it should be on dapper, except there is no php5-imagick package in dapper. I decided to compile from source, but the resulting imagick.so would core dump apache at load. :( I bit the bullet and just did a double dist-upgrade to feisty, and had an available php5-imagick. Thom is happy again, now that he can manipulate his photo albums online. ;)

I had an interesting adventure a while back. In mid-days work, I got a message about a possible compromised box for a client of a client etc etc. So I got access to the box. All I knew was that they thought it was very "fishy". High CPU use, very sluggish. I downloaded a new chkrootkit from source, and everything cleared. I trusted my binaries, and started to look at some logs. Nothing strange. top shows high CPU percentage, and massive disk I/O wait. ps ax ... why are there all these sendmail processes?. /var/log/maillog ... shows very strange messages. They should not be repeated in public ;)

This is a box in non-production, and basically left alone since installation. The root email is aliased to an account called "admin". /var/spool/mail/admin was 2.0 GB! yup ... 2.0 GB. I guess the kernel was not compiled with LARGEFILE support, and sendmail cracked trying to deliver mail to the spool. Causes a mail to be generated to root, which could not be written to the spool, which generated a mail to root, which ... you get the picture. HAHAHA ... it made me laugh. I zapped the 120,000+ mqeue, and also zapped the spool file. The cause happened to be root crontab with 3 jobs running every minute, with no output suppression, generating emails every execution. That has since been fixed. not a compromise ... simply poor administration.

So I have a fly in my apartment. I will call him Charley. Charley is one of those "smart" flies that seems to disappear for hours, but pass right in front of your nose at the most inopportune of times. My smashing tube of rolled up paper sits by my side at all times. But Charley is onto my game, and rarely lands on any object suitable to be squished between with my smashing tube. I almost got him on 2 occasions, but he's really making use of his hundreds of eyes. I am not giving up though. The riders are still on their win streak, and how bout them Flyers ... 5-1 to start the season! I socialized slightly on the weekend, it was Kirsty T's B-Day, but I really hate Limerick's. I did make an appearance, and got my picture taken with the princess. It was worth it, but I must now re-emerge into the land of work.
 
Monday, October 01, 2007
  eXtreme Programming, Tables vs Divs & Windchill
So I am undertaking a new project with Fortress. It is a web application, and the team is being assembled, and things getting underway. My role is mainly from a management role, and to give some direction as to how to run a software project. I started out with some recomendations, and talked with Aaron before his last trip. That discussion changed my mind on how we would run things. I'm used to a waterfall design approach (go figure working on the Space Station, and XM Radio). He lent me a book by Kent Beck. I have read the first section, and keep trying to make time to finish it. I'll have to the next couple of days before Jonathan comes out from down east.

It is all about eXtreme Programming development, and test-driven designs. It is a very good read, and I highly recommend it to anyone working in small project groups. Even for larger ones, but for now I'm in the small fish bowl group. ;) I won't wreck the enjoyment of reading it for you, but as a programmer, architect, project lead, project manger, and all of my other roles I have found usefulness in every facet that I take on. It it written at a very personal level, and does not make you feel like you need a PHD in english to read it. I especially like the short chapters (which is in tadnem with the methodology) ... deal with pieces in small chunks, and you will be much more productive.

So that was my positive. Now I get to bitch about something. For years there is the argument between web developers about the use of tables or divs for layout. "tables are for tabular data!". Let me tell you why "programmers" like me tend to fall abck to tables all the time. BECAUSE THEY RENDER PROPERLY!

We spend much less time laying out parts of the page in a table than we ever could with CSS and divs. It is not because we do not understand divs, not is it because we are not driven to learn something different. I have spent years doing web development, and I cringe every time I start with a new layout, and making things "look" the way I want them. The biggest issue is that it never looks the same cross browser. Sure ... you eventually get it to what you want ... usually after 2 pots of coffee, and a pack of cigarettes, lots of yelling, hair loss ... etc. etc.

With one of my projects I decided to port some old code to using divs for the layout. It is basically a simple 2 column form with labels on the left, and the form elements on the right. Seems easy right? Even writing this from scratch would have taken me a few minutes with tables. I spent hours making it render properly using divs, and CSS. Of course the problem was IE. The problem is _always_ IE. I had it render perfectly as I wanted (and expected) in Mozilla, Firefox, Konqueror / Safari ... I think even Opera got it right. After several experiments, and loads of research I discovered that my layout and code triggers a bug in IE because of it's broken float model. The bottom line is that when an object with fixed width is next to a floated object, inside a nested div, the parent div is not rendered first, but last, so the left hand column is actually rendered behind the parent.

Here is the screen shots to explain :

Form in Firefox : yay to firefox
Form in Konqueror : yay to KDE
Form in Internet Explorer : boo to Microsoft

Is that not enough to drive someone mad ... I don't know what is. Because I happen to be a programmer, and I consider myself a fairly intelligent guy, I did manage to fix this. I changed some layout models. Back to the original point. At least with tables I could quickly render (and properly) the layout in all browsers ... they seem to get tables right. Using divs however ... it seems to have proven that the concept to browser developers at Microsoft was just to difficult to comprehend. Stupid broken float model.

Last week my buddy John came over with a treat. Our hometown friend (I went to Elementary school with Heath), had been in a movie called "Wind Chill" (starring Emily Blunt). It was never released in theatres in Canada, and went straight to DVD. John purchased it on Amazon, and it was a big event for us. Heath was in the movie for all of 3 seconds! We phoned him up. The scenes were edited out, the conversations, the car crash. Basically it was down to him and the other guy who died showing up as ghosts. I must admit ... it was a really odd movie, and a definite B horror film. But I have a movie star friend now. That's awesome! Best quote in the movie ... "If you ever get in a fight at a bar with a guy, smash him in the face with a bottle cuz then his eyes will fill up with blood and snot and stuff". HAHAHAHA
 
The Jolly Smoking Computer Programmer

ARCHIVES
October 2004 / November 2004 / December 2004 / January 2005 / February 2005 / March 2005 / April 2005 / May 2005 / June 2005 / July 2005 / August 2005 / September 2005 / October 2005 / November 2005 / December 2005 / January 2006 / February 2006 / March 2006 / April 2006 / May 2006 / June 2006 / July 2006 / August 2006 / September 2006 / October 2006 / November 2006 / December 2006 / January 2007 / February 2007 / March 2007 / April 2007 / May 2007 / June 2007 / July 2007 / August 2007 / September 2007 / October 2007 / November 2007 / December 2007 / January 2008 / February 2008 / March 2008 / May 2008 / August 2008 / October 2008 / December 2008 / January 2009 / February 2009 / March 2009 / May 2009 / August 2009 /


Powered by Blogger