Archive for May, 2005
Friday, May 27th, 2005
Design Patterns
I love this stuff
http://blog.casey-sweat.us/index.php?p=48
I can’t wait for his book, PHP Design Patterns to come out. I will be getting that one for sure! Checkout the download with the presentation on design patterns. Good stuff!
No Comments » - Posted in Uncategorized by Nola
Thursday, May 26th, 2005
There’s SPACE in my CASE
My old way of formatting swtich/case:
switch ($somevar) {
case “abc” : someFunc(); break;
case “t” : otherFunc(); break;
case “z” : yetAnotherFunc();
onemoreFunc();
break;
}
After some thoughts like:
Hey, now every time I change the length of some “var” I have to reindent all the stuff. bah.
I have to move my cursor alot to add [...]
No Comments » - Posted in PHP by nola
Wednesday, May 18th, 2005
Streaming Media
I’m doing it at work and we have some weird problems. I think that is probably how we export and compress the presentation from PointPoint. It has audio wave files attached to each slide. PowerPoint on the Mac (I don’t use it, my boss does) will export to a mov file, and he used Quicktime [...]
