Is your work better than another’s?

There is a difference between criticism and constructive criticism.

I’m disappointed when I come across developers laughing and making fun of a code block or website design they happen to come across. I see this sort of mentality time and time again. I suppose it is easy to forget about the long path we all had to take to get to where we are. Forget about all the mistakes we made along the way and will continue to make in the future.

This is the equivalent of a bully making fun of a geek in third grade. The only difference is that in this case, the geek is the bully and should be a bit more educated and mature by now.

I know that no one’s perfect. I’m sure not. However, the next time you come across work you deem is terrible or laughable, consider the possibility that the person you are laughing about may be newer to the whole wide world of design or programming than you. They might be younger than you and just getting started. They might not have had the opportunity to go to college like you but they still want to do whatever it is they are doing. Consider the possibility that someone might be trying to pull themselves up by their own bootstraps with limited knowledge and resources.

If you still feel like laughing, keep it to yourself and go to a comedy show.

Perfect, Easy, CSS Styled Buttons Example

This is a well thought out and clearly explained tutorial explaining how to create CSS styled buttons.

There are a million examples but his approach by using just two images and shifting the pixels up and down for pressing and releasing is a neat idea.

how-to-make-sexy-buttons-with-css

Javascript to Sort a Table

Just the other day my client wanted to have the ability to sort a
column of data. I could have spent some time writing some custom
server-side code using ColdFusion but I figured someone else probably
had a solution I could use.Sure enough, You can include a simple javascript file called http://www.cfblogs.com/vincecollins/TableSort/sorttable.js
and then just insert the class in the table tag.

<table class=”sortable” id=”unique_id”>

I tried it on a table of data from my cfblogs.com site here:

http://www.cfblogs.com/vincecollins/TableSort
Pretty cool eh?

You can ad fancy sorting icons and more by visiting Stuart’s site here:

http://www.kryogenix.org/code/browser/sorttable/