IT Crowd Season 2

December 28th, 2006, 6:10 am by lig

I have the IT Crowd intro as my cellphone ringtone and got to wondering when and if there will be a season 2. Started checking around and found this, which says a new episode should be showing on Jan. 5th. Supposedly there will be 8 more episodes.

Can anyone confirm or deny this?

del.icio.us:IT Crowd Season 2  digg:IT Crowd Season 2  furl:IT Crowd Season 2  reddit:IT Crowd Season 2

So how well do you know your holiday specials?

December 25th, 2006, 10:57 pm by lig

Try taking this quiz and see how well you know your holiday specials. I thought I knew them pretty well but I guess not. Only got 17/36 correct. Have to pay closer attention next year.

And just to have it PHP related - the site uses the .php extension.

So what is your score?

del.icio.us:So how well do you know your holiday specials?  digg:So how well do you know your holiday specials?  furl:So how well do you know your holiday specials?  reddit:So how well do you know your holiday specials?

Happy Holidays

December 22nd, 2006, 4:45 am by lig

Just want to wish everyone a safe and happy holiday. Have fun - eat lots of food and don’t forget to say thank you to whatever divinity you worship.

del.icio.us:Happy Holidays  digg:Happy Holidays  furl:Happy Holidays  reddit:Happy Holidays

On Writing

December 21st, 2006, 9:38 am by lig

Normally when i write something I do it because I want to with no deadlines no pressure and only the occasional editor to “suggest” alternate ways of writing an area. Man - this writing thing is hard! Deadlines, formats, style sheets, Oh my.

Now don’t get me wrong - I am enjoying the whole thing (sent out my first chapter today). But I have to admit that coming home from work to write and code for 4 hours EVERY day kinda sucks for me and my family. My husband is actually cooking dinner so I have more time to write (granted pizza and hamburger helper is a common dinner choice - but still) - he is doing it!

So to all the authors out there - I salute you. Never again will I pick up a book and not appreciate all the work you went through to make it. Thanks.

del.icio.us:On Writing  digg:On Writing  furl:On Writing  reddit:On Writing

MySpace and Asp.Net

December 14th, 2006, 10:58 pm by lig

Did you know MySpace runs on asp.net 2.0? I didn’t. I thought it was on Coldfusion after all it has those little .cfm tags right? Wrong.

While just kinda surfing on the net I came across this blog post from one of the people over at asp.net (sorry I don’t know who is who). Which lead me on to do some digging to validate it (call me paranoid but I rarely believe something I “just find” on the internet). And I’ll be danged.

Seems the cfm extensions are still being use to prevent breaking links to the site. And to quote Tim Anderson from ITwriting.com

Second, MySpace uses a product called BlueDragon, which lets you run ColdFusion pages on either J2EE or .NET - without using the official ColdFusion application server.

Does that mean the pages are still written in Coldfusion?

del.icio.us:MySpace and Asp.Net  digg:MySpace and Asp.Net  furl:MySpace and Asp.Net  reddit:MySpace and Asp.Net

SQL Server DNS

December 14th, 2006, 4:31 am by lig

Was having problems getting my PDO to connect to the SQL Server with ODBC.
And to make matters worse I am on a windows LAN, the web server is a *nix box and my testing computer is M$. My DSN just was not right and wouldn't play - my host string was off and any permutation I used wasn't working. Looked at the PDO docs, the DSN docs in the manual, connectionstrings.com and no love.

I am most comfortable working with MySQL so getting the SQL Server to play had been frustrating in the extreme (hate when simple things are made hard - wanted to kick something). Turned out I needed to add my "instance" of the SQL server (not my word - bosses) to the host. So what did I finally come up with that works

PHP:
  1. $host = '192.0.0.0\InstanceName';
  2. $user = 'user';
  3. $pass = 'xxxxxxxx';
  4. $db = 'test';
  5.  
  6. $dbh = new PDO("odbc:Driver={SQL Server};Server=$host;Database=$db;Uid=$user;Pwd=$pass;");

* was it just me or was that an alphabet soup?

del.icio.us:SQL Server DNS  digg:SQL Server DNS  furl:SQL Server DNS  reddit:SQL Server DNS

Writing a book

December 11th, 2006, 4:21 am by lig

Can you believe someone actually asked me to help write a book?! Me. LOL. Anyway the papers are signed and I already have a looming deadline. Can't say what it is on other than PHP - but was just so tickled pink I had to share.

del.icio.us:Writing a book  digg:Writing a book  furl:Writing a book  reddit:Writing a book

Quick snip

December 6th, 2006, 6:58 am by lig

Am playing a bit with the ZF - basically doing shiflett's tutorial on it, when I came upon a bit of a problem.

*Right about here I should note I haven't even looked at the ZF in almost a year and quite a bit has changed.

Anyway - I am using a subfolder of web root to play with the ZF and was having troubles getting my controller to go to the correct place. After considering hacking both the Apache doc root and the actual Zend_Controller_Router code and writing a patch, I stumbled on the answer - Zend_Controller_RewriteRouter.

PHP:
  1. // url - http://localhost/Test/www/:controller/:action
  2. $router = new Zend_Controller_RewriteRouter();
  3. $router->setRewriteBase('/Test/www/');
  4. $controller->setRouter($router);

Seems to be working so far.

del.icio.us:Quick snip  digg:Quick snip  furl:Quick snip  reddit:Quick snip

If programming languages were women

December 4th, 2006, 6:11 am by lig

A friend of mine showed me this today (it is based off of an older version found here). Now sexism aside I have to say it was pretty dang funny. PHP's write up:

PHP - Slick and slim lady. Very portable. Does nice and amazing things with her small body. Very good in aerobics. Not very sexy but intact. She is the kind of women that most men are happy to wed, though she will need a house maid because she is unable to carry heavy workload.

del.icio.us:If programming languages were women  digg:If programming languages were women  furl:If programming languages were women  reddit:If programming languages were women

Thoughts and Prayers

December 3rd, 2006, 11:27 am by lig

To the friends and family of the sailors injured this weekend on my husbands ship - I just want you to know that you are in our thoughts and prayers.

del.icio.us:Thoughts and Prayers  digg:Thoughts and Prayers  furl:Thoughts and Prayers  reddit:Thoughts and Prayers

offline

December 1st, 2006, 6:21 am by lig

Sorry for being gone for so long - was having problems with my comments table. Luckily my hosting company is very nice and more then willing to help me fix it. Took a bit - and we thought we had it fixed 2 times but - not. Anyway, hopefully it is fixed permanently now so all should be good.

del.icio.us:offline  digg:offline  furl:offline  reddit:offline

Foundations of PEAR: Rapid PHP Development Published

December 1st, 2006, 6:18 am by lig

Woohoo it is finally published. Now why would I care about this particular book - I'm not an author after all. Well you see I am it's Technical Editor though and I have to say it was a lot of fun doing it - stressful at times with short deadlines but still fun.

del.icio.us:Foundations of PEAR: Rapid PHP Development Published  digg:Foundations of PEAR: Rapid PHP Development Published  furl:Foundations of PEAR: Rapid PHP Development Published  reddit:Foundations of PEAR: Rapid PHP Development Published