Archive for January, 2009

Google is Biggest “Disabled” Internet User

Friday, January 30th, 2009

googlebot

Image credit: Google Bot by Tyler Jordan

When thinking about website accessibility, what comes to mind is, how many blind, hearing impaired or otherwise disabled people are really going to visit my site? According to World Health Organization (Global Data On Visual Imparement For 2002), there are over 161 million visually impaired people in the world. That makes about 2.4% of the world population. Seems like a small number compared to over 6.5 billion of world’s population, to worry about designing the website to accommodate this particular need, considering that more than half of that 2.4% is in the third world countries and most do not even have access to the Internet to come and visit my site even if they wanted to.

Google is Disabled

What we do need to know is that there actually is a really important reason to make sure that every website addresses the accessibility issue. It is not just to make it easier for the disabled but to get better results in the search engines.

(more…)

All The Twitter Apps You Ever Wanted

Wednesday, January 28th, 2009

twapps

This morning I found a large stockpile of Twitter Applications, all in one place. I’ll be on my way to browse through all of them and see if I can use sme of them. While I do that, here is the link to that site…http://www.twapps.com…check it out, you’ll probably find something you’ll like there.

Aah, this one’s cool. I entered my Twitter username on TweetSnap.com and it generated this graphic below and HTML code so I can add it to my website.

Valiik

Ok, going to go keep browsing…

Oh yeah, follow me on Twitter: Valiik

See you there.

Search Market Share 2008 Chart

Monday, January 26th, 2009

Search Market Share 2008 Chart

Interesting to see how Google dominates the search industry and while it’s competition is headed towards doom, Google keeps inching it’s way to the top. I wonder what will happen within the next 5 years.

Looks to me like Microsoft will maybe (well, I think it should anyway) focus it’s resources on it’s software that is earning it a bad rep instead of trying to be everything to everyone and quit waisting it’s money on growing a search engine that I doubt will ever be anything to be proud of.

Yahoo, I don’t know, even if Microsoft does buy it out, it won’t help it. It’ll get rid of a competitor for Google but in terms fo helping Microsoft, I just don’t see it. If Yahoo does not sell off to Microsoft, it’s just going to slowly fade away, I think. I don’t remember when I last used Yahoo search engine…probably about 2 years ago. They just can’t compete with Google and I don’t know if anyone really can.

Social news sites are probably the next biggest/powerful search entity that can go head to head with Google and I can see how maybe some of those companies can buy out Live and Yahoo and do something with them.

What do you think?

Comments Fixed…

Monday, January 26th, 2009

As I made these major changes here on WDI, one if the things that I missed was to update the reCapcha keys for the new domain. Thanks to Rendell for letting me know about that. It is now functional so please leave your comments for me about the new design. I am looking forward to it.

WebDesignIdeas.org – The Facelift…

Sunday, January 25th, 2009

Very exciting for me, I finally got the new WDI template done. It’s been in planning and construction for about 2 months now and finally it is here. I really like how it turned out and would love to hear some feedback from my readers. Please leave your comments below.

As you may have noticed I have also changed the main domain to WebDesignIdeas.org instead of the old wbDesignIdeas.com. I have my heart in this blog and want it to succeed and one thing that I didn’t like was the weird domain name that wasn’t really “main stream”, if you will. I tried many times to contact the owner of WebDesignIdeas.com but he won’t answer my calls or emails. I think .ORG is just fine with us…what do you think? :)

Looking forward to your feedback.

-Valiik.

Buy, Sell CMS Extensions & Templates

Sunday, January 25th, 2009

cmsmarket

Not too popular yet but CMS Market looks like a very useful marketplace for all those extensions, plugins and templates that we seem to never have enough of. There you will be able to buy a Facebook connect integration or a content versioning component for Joomla, templates for WordPress and etc. Looks like there are not very many scripts you can buy just yet but it is growing and has lots of potential for us web designers.

So go dig up some extensions that you’ve built from your past jobs and post them up on CMSmarket.com. I’m gonna go see what I can post up there.

Source: http://www.cmsmarket.com

Awesome Tools: Textorizer

Saturday, January 24th, 2009

I keep finding cool tools online and they are not really anything I can or know much to write about but would want to have filed somewhere so I can come back to later, so I will start a new category called Awesome Tools where I will stash these cool tools that I find.

The first one will be Textorizer. You enter a logo or any image URL and then enter your text into a field and hit Textorize and you will see an image from your URL drawn with the text you entered. It’s pretty cool.

Source: http://textorizer.whatfettle.com/

Is DIGG Dead?

Friday, January 23rd, 2009

diggg

Seems to me that DIGG is not what it used to be anymore. It has became a high-rollers club and not as it was intended – a social news engine. No more can a story have a chance to raise from upcoming news to reach the front page.

If you take a look at the upcoming news you will see that very rarely does any story that is submitted gets more than 3 diggs. To get a story up in the ranks on DIGG, now you have to be a part of a team of many “friends” that will DIGG your story when you ask. Does this remind you of SPAM? I know that the stories that are getting Dugg are great stories but the rest of the world that does not have Internet Marketing in their mind when submitting, have no chance.

This is how it seems to me. Tell me what your take on this is.

Collection of 50 Amazing Lighting Effects Examples

Thursday, January 22nd, 2009

lightingex

Collection of 50 amazing lighting effects examples at Vandelay Design Blog, go here to see it: Design Inspiration: Lighting Effects.

3 Practical Ways To Efficient CSS

Wednesday, January 21st, 2009

Most probably already know this but it doesn’t hurt to remind and have it down on “paper”. When writing CSS code and as you adjust things to make it all look good in the browser your CSS file becomes huge with extra lines of unneeded code that can be purged to make the size of the file smaller. All though this is not a complete list, this is practical and easy to remember steps that really make a difference. What I am talking about is Shorthand, Default Values and Multiple Declaration.

Shorthand

There are several elements that you can apply shorthand to font, border, background, padding & margin.

font


 Instead of declaring:

font-family:   Arial;
font-size:        12px;
line-height:   18px;
color:              #333;

You can say all that in one sentence:

font: 12px/18px #333 Arial;

border


 Instead of declaring:

border-color:    #ccc;
border-width:    1px;
border-style:      solid;

You can say all that in one sentence:

border: 1px solid #ccc;

background


 Instead of declaring:

background-color:         #fff;
background-image:        url(images/bg.gif);
background-position:    top;
background-repeat:        no-repeat;

You can say all that in one sentence:

background: #fff url(images/bg.gif) top no-repeat;

(more…)