Monthly Archives: November 2007

Freelancers: Always Log Your Hours

This is not immediately obvious those who charge a flat rate per project, instead of by the hour. But unless you track your hours, you know neither how much you’re making on your current project, nor the fair price to charge for a comparable project in the future. Remember, $2000 might sound like a pretty [...]

Posted in Angry Development Tips, Entrepreneurship, Project Management & Productivity, Technology | 2 Comments

CSS Tip: Don’t Duplicate Attributes

In your CSS, you specify that your #header, #footer and #sidebar elements should be baby blue. A week later, your picky designer asks that they be changed to lilac. Of course, you can change the color for all three elements, but, as the DRY gods will tell you, find/replace is error-prone.
You should only specify colors [...]

Posted in Angry Development Tips, Design, Technology | Leave a comment

Best Free Javascript/DHTML Calendar I’ve Seen

Check out the Swazz Calendar. Small file size, easy to integrate and actually works.
One caveat: by default, it sets the date the European way (dd/mm/yyyy). To change to the American format, find the following line in the prepcalendar function:
calvalarr[d]=”+(d-cd)+’/’+(cm-(-1))+’/’+cy;
and change it to:
calvalarr[d]=”+(cm-(-1))+’/’+(d-cd)+’/’+cy;
Then find these lines in function lcs:
ccm=curdtarr[1]-1;
ccy=curdtarr[2];
prepcalendar(curdtarr[0],curdtarr[1]-1,curdtarr[2]);
Change them to:
ccm=curdtarr[0]-1;
ccy=curdtarr[2];
prepcalendar(curdtarr[1],curdtarr[0]-1,curdtarr[2]);
VoilĂ . [...]

Posted in Technology | Leave a comment

Cranky Old Hag

A dear friend noted that few of my posts are constructive: they’re mostly biting criticism and ranting about practices that don’t work.
But the topics I address (technology, business, recruiting) are so open-ended that you can do things many different ways. And they all work, except for the ones that don’t. It seems that as long [...]

Posted in Angry Development Tips | 1 Comment

Seducing Coders Doesn’t Work

In a bout of desperation to find a competent CSS coder, I shot off the following email to Dave Shea, founder of css Zen Garden:
Dear Dave,
When I look deeply into your code, you make my heart smile. You are not like the others, I can tell. No: you are not like those fools who wormed [...]

Posted in Technology | 1 Comment