Programming

Related Tags:

blogging bug CSS Google How To HTML Humor PHP plugins The Internet theme timeout Ultimate-Tag-Warrior Web-Development Web Design WordPress

How Not to Hire a Programmer on Dice (or Monster, or…)

Recently I received the worst job inquiry I have ever seen. I’ve had my resume floating around on job sites like Dice and Monster.com since the last time I was actively looking, more than three years ago, so I periodically get emails from keyword-searching recruiters. But nothing like this. This is a masterpiece:

HI, GREETINGS!!! WE ARE LOOKING FOR UI DEVELOPER SPECIALIST WITH BELOW SKILLS TITLE: UI DEVELOPER SPECIALIST Ø LOCATION: CULVER CITY, CA Ø TAX TERM: CON_CORP CON_IND CON_W2 Ø PAY RATE: ALL INCL Ø LENGTH: 12 MONTHS SKILLS: AJAX CSS PHOTOSHOP JSP HTML JOB DESCRIPTION: A MINIMUM OF 5 YEARS OF EXPERIENCE WORKING IN A TEAM ON A COMPLEX-PHASED NEW TECHNOLOGY MEDIUM SIZED WEB PROJECTS UNDERSTAND SOFTWARE DEVELOPMENT METHODOLOGY (PREFERABLY RUP) ABILITY/DESIRE TO UNDERSTAND BUSINESS PROBLEM THAT THE APPLICATION IS TRYING TO FIX/SOLVE RESPONSIBLE FOR DEVELOPING THE USER INTERFACE FOR A COMPLEX WEB APPLICATION WITH A LOT OF DATA ENTRY SCREENS, WORKFLOWS, VIEWS AND REPORTS EXPERIENCE USING TOOLS SUCH AS PHOTOSHOP OR ILLUSTRATOR TO PRESENT DESIGN COMPS, UI OPTIONS PARTICIPATED ON PROJECT WITH EXTENSIVE UI REVIEW PROCESSES AND CHANGES CAN PRESENT AND IDENTIFY USABILITY CHALLENGES AND SUGGESTIONS FOR IMPROVEMENT. CAN DESIGN PAGES WITH USABILITY IN MIND EXPERIENCE USING TECHNOLOGIES SUCH AS HTML, CSS, JAVASCRIPT AND XML EXPERIENCE WITH BLEEDING EDGE TECHNOLOGIES SUCH AS AJAX AND FLEX (ACTION SCRIPT) EXPERIENCE WORKING ON SITES THAT HAVE A JAVA BACK-END; WORKING KNOWLEDGE OF JSP EXPERIENCE WORKING ON PORTAL BASED SITES (NICE TO HAVE) EXPERIENCE ON PROJECTS WHERE SLICK UI**S AND HIGH PERFORMANCE PAGES ARE A KEY CAN UNDERSTAND AND EXPLAIN CROSS BROWSER CHALLENGES, PERFORMANCE CHALLENGES BASED ON UI DECISIONS ETC. MUST BE ABLE TO PROVIDE EXAMPLES DELIVERABLES WILL INCLUDE: LOW-TECH MOCKUPS USING PHOTOSHOP, ILLUSTRATOR, EXCEL OR VISIO HTML PROTOTYPES WITH FUNCTIONING JAVASCRIPT AND DATA INTERACTIONS FLEX APPLICATION DEVELOPMENT TO SUPPORT THE BACK-END DEVELOPMENT TEAM JSP DEVELOPMENT TO SUPPORT THE BACK-END DEVELOPMENT TEAM .PLEASE RESPONDS WITH YOUR UPDATED RESUME AND THE FOLLOWING DETAILS RATE EXPECTATIONS | IMMIGRATION | AVAILABILITY | CURRENT LOCATION| CONTACT NUMBER ——————————————————————————– WARM REGARDS, JOHN ADAMS | SIERRA INFOSYS | [ed: removed] PHONE: [ed: removed] (OR) [ed: removed] | [ed: removed] ——————————————————————————–
—-

(more…)

A Dirty Hack to Fix the Disappearing Tags Problem in Ultimate Tag Warrior

Ultimate Tag Warrior is a great WordPress plugin that lets you add tagging to your blog and build your own folksonomy. You can use it to show related posts or a nifty tag cloud.

As of version 2.3, though, Worpdress has tagging built right in. That means that development on UTW has stopped, leaving us with a very nasty bug in the final version. After someone comments on a post (and the comment is approved), all the non-category tags are deleted.

This is a known bug in UTW 3.1415926. I’m not quite ready to take the plunge into WordPress 2.3, digging up new plugins to add the features I want and changing our theme. So in the mean time, I found an ugly hack to stop our tags from vanshing into thin air.

  1. Go to your ultimate-tag-warrior-core.php file.
  2. Find the SaveTags function.
  3. Comment out the code that removes tags that are no longer associated with the post.

The end of the SaveTags function should look like this:

// Remove any tags that are no longer associated with the post.
/*
if ($taglist == “”) {
// since “not in ()” doesn’t play nice.
$q = “delete from $tablepost2tag where post_id = $postID”;
} else {
// lop off the trailing space+comma
$taglist = substr($taglist, 0 ,-2);

$q = “delete from $tablepost2tag where post_id = $postID and tag_id not in ($taglist)”;
}
$wpdb->query($q);
*/
$this->ClearTagPostMeta($postID);
}

Please note that this is an ugly hack.  It makes it much more difficult to remove tags from a post when you want to.  I find that we get comments on posts way more often than we ever want to remove tags, so it’s a god tradeoff for the time being.

Got a better solution?  Post it in the comment below.

Put Related Tags in Category Pages with Ultimate Tag Warrior

Blogs are an integral part of whole “web 2.0″ business, so it’s not too surprising that bloggers like adding tags to their posts. If you are using WordPress, one of the best ways to add tagging functionality to your site is with a plugin called the Ultimate Tag Warrior.

This article won’t go into all the great features included with Ultimate Tag Warrior (UTW). If you are new to the plugin, I suggest reading this great article by Lorelle. You can use it to show related posts, tags related to a particular post, and a bunch of other stuff. But there’s no easy way to show tags related to a particular tag or category.

If you take a look at one of our category page, for example the Environment category page, you notice a list of related tags. Here’s how I did it.

(more…)

The Best Firefox Plugins and Extensions

Firefox is a great web browser. If nothing else, the large number of people switching from Internet Explorer to Firefox convinced Microsoft to finally update IE. When Firefox added inline spell checking with version 2.0 they boosted the writing quality of every blogger, wiki contributor, and forum post on the Internet. What more can you ask for?

Actually, the best thing about Firefox is its extensibility. Anyone with some programming skill and some free time can add features and functionality by building plugins and extensions. There are well over 2000 extensions listed at Mozilla.org, so where do you start? You can find a lot of “top 10″ lists around the web, but I thought I’d add my two cents as well. Here is a list of some of the best Firefox extensions.

1. Adblock Plus – Adblock is a controversial choice because it allows users to block out the advertisements that many websites rely on for income. This website, for example. But again and again I find myself thanking the Flying Spaghetti Monster for Adblock. Some sites fill their pages with flash-based ads that flash, flutter, crawl across the pages, etc. And those are the ads I inevitably block.

2. StumbleUpon – StumbleUpon lets you channel surf the web. Click on the Stumble button and you’ll get a new web site – give it a thumbs-up or a thumbs-down and StumbleUpon will suggest sites more to your liking. I should warn you, though, that this extension is very addictive and a terrible time-waster.

3. Procrastato – Now that I’ve ruined your productivity with StumbleUpon, I’ll give you a little bit back. Procrastato watches for notorious time-wasting sites like Digg, MySapce, and YouTube and reminds you every few minutes to get back to work.

(more…)

A Horrible, but Amazing, Abuse of HTML

This goes out to all y’all web developers out there.  You know who you are.  In 1999 while others partied like it was…  1999, you slaved away trying to get your table-based layout working on Netscape and IE.  Thank goodness it’s now 2007, and you can just grab CSS-based layouts from A List Apart.

But off all the possible abuses of old-skool HTML, I bet you never thought of this one:  using table cells and bgcolor to build an image, one pixel at a time!
YouTube Preview Image

Link to video for those of you on RSS.

Brought to you by Japan and cutesy anime chicks.