<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The StyleSheet &#187; Manoj Thomas</title>
	<atom:link href="http://www.thestylesheet.com/author/mthomas/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thestylesheet.com</link>
	<description>For businesses that use the internet</description>
	<lastBuildDate>Thu, 17 Jun 2010 13:50:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Foursquare</title>
		<link>http://www.thestylesheet.com/useful-things/2009/12/foursquare/</link>
		<comments>http://www.thestylesheet.com/useful-things/2009/12/foursquare/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 00:17:20 +0000</pubDate>
		<dc:creator>Manoj Thomas</dc:creator>
				<category><![CDATA[Useful Things]]></category>

		<guid isPermaLink="false">http://www.thestylesheet.com/?p=1103</guid>
		<description><![CDATA[Foursquare, the latest social networking app to hit the public, is somewhat of a spinoff of Twitter, but takes it to a whole new addictive level by letting users share where they are and learn about the places they frequent in their city. When you &#8220;check-in&#8221;, your friends are notified of your location and you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.foursquare.com" target="_blank"><img class="alignleft" title="Foursquare logo" src="http://www.thestylesheet.com/wordpress/wp-content/uploads/foursquare-logo.gif" border="0" alt="Foursquare logo" width="140" height="44" align="left" />Foursquare</a>, the latest social networking app to hit the public, is somewhat of a spinoff of Twitter, but takes it to a whole new addictive level by letting users share where they are and learn about the places they frequent in their city. When you &#8220;check-in&#8221;, your friends are notified of your location and you can suggest other places to go and things to try out. Foursquare also boasts a competitive element by rewarding you with points and badges each time you arrive at a new location &#8211; I just unlocked the &#8220;Newbie&#8221; badge for checking-in at Hot Mama&#8217;s Espresso Bar down the street from the TradeMark studio! Check out how other <a href="http://foursquare.com/businesses/">businesses are using Foursquare to reward frequent visitors</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thestylesheet.com/useful-things/2009/12/foursquare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouMail</title>
		<link>http://www.thestylesheet.com/useful-things/2009/10/youmail/</link>
		<comments>http://www.thestylesheet.com/useful-things/2009/10/youmail/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 14:54:05 +0000</pubDate>
		<dc:creator>Manoj Thomas</dc:creator>
				<category><![CDATA[Useful Things]]></category>

		<guid isPermaLink="false">http://www.thestylesheet.com/?p=847</guid>
		<description><![CDATA[Long gone are the days of fiddling with your phone to manage your voicemail inbox. Whether you own a smartphone or not, YouMail allows you to listen to and download voicemails from the Web. YouMail offers completely visual voicemail so you can jump online to see who called and to play back or delete old [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youmail.com/" target="_blank"><img style="border: 0pt none;" title="YouMail:Love your Voicemail" src="http://www.thestylesheet.com/wordpress/wp-content/uploads/youmail-logo.gif" border="0" alt="YouMail icon" width="135" height="45" align="left" /></a>Long gone are the days of fiddling with your phone to manage your voicemail inbox. Whether you own a smartphone or not, <a href="http://www.youmail.com/" target="_blank">YouMail</a> allows you to listen to and download voicemails from the Web. YouMail offers completely visual voicemail so you can jump online to see who called and to play back or delete old messages. That&#8217;s not all! You can also opt to receive text message transcripts of voicemails as they come in, set up personalized custom greetings for specific callers and block those pesky telemarketers. Start being more productive today!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thestylesheet.com/useful-things/2009/10/youmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clean Code: The Good, the Bad and the Ugly</title>
		<link>http://www.thestylesheet.com/featured-articles/2009/08/clean-code-the-good-the-bad-and-the-ugly/</link>
		<comments>http://www.thestylesheet.com/featured-articles/2009/08/clean-code-the-good-the-bad-and-the-ugly/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 19:22:51 +0000</pubDate>
		<dc:creator>Manoj Thomas</dc:creator>
				<category><![CDATA[Featured Articles]]></category>

		<guid isPermaLink="false">http://www.thestylesheet.com/?p=636</guid>
		<description><![CDATA[Writing code is tricky and can turn messy if certain elements are ignored. Programmer Manoj Thomas taps into some tricks that can save time and stress.]]></description>
			<content:encoded><![CDATA[<p>Writing code is often a time-consuming task, but keeping things clean and in order can save some valuable time down the road for you and anybody else digging through your files. Clean code should be readable, lean and commented appropriately. Here are a few recommendations.</p>
<h3>Include Comments</h3>
<p>Comment your code. Your coworkers don’t want to read every line of your code to figure out what’s going on, and chances are neither do you. Comments should be concise, but need to explain how various parts of your code function. A lack of proper comments can turn a 10-minute task into a 30-minute task, so invest the time to document your work the first time around.</p>
<h3>Omit Needless Code</h3>
<p>If you find yourself using the same repeating piece of code throughout your project then you should consider consolidating. Write a function that you can call as many times as you need or <a href="http://webdesign.about.com/od/ssi/a/aa052002a.htm" target="_blank">create an “include”</a> that you can embed in your templates.</p>
<h3>Be Descriptive</h3>
<p>Don’t be vague with your naming conventions when it comes to declaring variables or assigning classes and ID’s. For example, assigning a DIV with the class name of “div1” (&lt;div class=”div1”&gt;) will work exactly the same as assigning it with the class name of “search-form” (&lt;div class=”search-form”&gt;). However at first glance it’s clear that a DIV named “search-form” probably houses some type of search-related content – it’s far more descriptive and increases the readability of your code.</p>
<div class="”div1”">
<div class="”search-form”">
<h3>Separation of Content, Styles and Scripts</h3>
<p>HTML helps structure the content of your site, while CSS helps style and lay out the way your site appears when viewing it in a browser. Keeping content separate from styles is a rule of thumb when developing on the Web. Not only should inline styles be avoided, but they’re frowned upon and your fellow developers will silently judge you if you use them. The same holds true for scripts – keep them out of your code and link to them externally.</p>
<h3>Don’t Paste from Word</h3>
<p>Don’t do it. Period. Documents created in Word are marked up with all kinds of proprietary Microsoft styles that will be embedded in your code if you copy and paste directly from a Word document to your HTML page. It’s ugly and it breaks validation. A safe way around this is to copy your text from Word and paste it in a text editor like Notepad first.</p>
<p>Keeping your code clean will help you manage it in the future, and it shouldn’t be an afterthought. I recommend <a href="http://validator.w3.org/#validate_by_input+with_options" target="_blank">validating during the development process</a> to make sure you’re on the right track and using something like <a href="http://infohound.net/tidy/" target="_blank">HTML Tidy</a>, which is great for cleaning up your source code and making it more legible.</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.thestylesheet.com/featured-articles/2009/08/clean-code-the-good-the-bad-and-the-ugly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>popurls</title>
		<link>http://www.thestylesheet.com/useful-things/2009/05/popurls/</link>
		<comments>http://www.thestylesheet.com/useful-things/2009/05/popurls/#comments</comments>
		<pubDate>Wed, 06 May 2009 19:55:46 +0000</pubDate>
		<dc:creator>Manoj Thomas</dc:creator>
				<category><![CDATA[Useful Things]]></category>

		<guid isPermaLink="false">http://www.thestylesheet.com/?p=534</guid>
		<description><![CDATA[popurls.com is a great way to keep track of all your favorite content on the World Wide Web. It&#8217;s a multi-site aggregrator that posts popular articles, links, videos, pictures and more from news, media and social bookmarking sites like Digg, Delicious, Reddit, Flickr and YouTube. Check it out to be in the loop about nearly [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.popurls.com/" target="_blank"><img src="http://www.thestylesheet.com/wordpress/wp-content/uploads/popurls_logo1.gif" border="0" alt="popurls" align="left" /></a><a href="http://www.popurls.com" target="_blank">popurls.com</a> is a great way to keep track of all your favorite content on the World Wide Web. It&#8217;s a multi-site aggregrator that posts popular articles, links, videos, pictures and more from news, media and social bookmarking sites like <a href="http://www.digg.com">Digg</a>, <a href="http://www.delicious.com" target="_blank">Delicious</a>, <a href="http://www.reddit.com" target="_blank">Reddit</a>, <a href="http://www.flickr.com" target="_blank">Flickr</a> and <a href="http://www.youtube.com" target="_blank">YouTube</a>. Check it out to be in the loop about nearly everything!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thestylesheet.com/useful-things/2009/05/popurls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Things to Look For When Choosing a CMS</title>
		<link>http://www.thestylesheet.com/featured-articles/2008/11/top-10-things-to-look-for-when-choosing-a-cms/</link>
		<comments>http://www.thestylesheet.com/featured-articles/2008/11/top-10-things-to-look-for-when-choosing-a-cms/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 17:57:39 +0000</pubDate>
		<dc:creator>Manoj Thomas</dc:creator>
				<category><![CDATA[Featured Articles]]></category>

		<guid isPermaLink="false">http://www.thestylesheet.com/?p=451</guid>
		<description><![CDATA[Design Technologist Manoj Thomas, TradeMark's content management system ninja, runs through the best features to look for in a CMS.]]></description>
			<content:encoded><![CDATA[<p>Finding a <a href="http://en.wikipedia.org/wiki/Content_management_system" target="_blank">content management system</a> (CMS) that’s robust in features yet easy to work with can be a challenging task. Many CMSs either offer solid functionality and compromise usability or vice versa. Here are the top 10 things I look for when deciding on a CMS (in no particular order).</p>
<ol>
<li><strong>Scalability</strong> – Nothing’s better than working with a system that has a wide variety of plugins and extensions to handle all the functionality you’re looking to achieve. Many CMSs like <a href="http://www.joomla.org/" target="_blank">Joomla!</a>, <a href="http://expressionengine.com/" target="_blank">Expression Engine</a>, <a href="http://drupal.org/" target="_blank">Drupal</a> and <a href="http://wordpress.com/" target="_blank">WordPress</a> offer these useful add-ons, most of which are freely available for download.</li>
<li><strong>Solid Documentation &amp; Community</strong> – Add-ons are great unless you don’t know how to install and configure them. That’s why it’s crucial that your CMS choice offers substantial documentation detailing all the ins and outs of the system – everything from installing to customizing. My experiences with forums and various developer communities have proved to be helpful, too, not just for help answering questions, but for getting the inside scoop on other’s opinions about future functionality and development.</li>
<li><strong>Member Management</strong> – It’s important that a CMS has the ability to manage multiple members. This allows for better flexibility when trying to manage who can access what on the front end (the visible, public part) of your site and who can edit or publish within the CMS.</li>
<li><strong>Content Migration</strong> – Chances are that you already have pieces of content that simply need to be moved over into your new CMS. Migrating this content, though, can be much more difficult than one would imagine. A solid CMS should give you multiple options for importing and exporting content seamlessly and it shouldn’t require hours of work to do so.</li>
<li><strong>Clean URLs</strong> – Simply put, clean URLs are prettier and easier to read. The real advantages of clean URLs are far greater – they increase search engine optimization, are much easier for users to remember and they help give users a better understanding of the hierarchy of a site. Although many CMS’s offer some type of ability to control URL structures, some are more clear than others (which is why proper documentation is essential).</li>
<li><strong>Versioning</strong> – Something often overlooked in a CMS is its ability (or inability) to restore previously edited entries or templates. When you have multiple people working on a site and editing entries it becomes easier for mistakes to be made. Built-in versioning provides a good solution by allowing administrators or users with the proper rights the option of reverting content back to a previously saved version.</li>
<li><strong>Security </strong>– There are a slew of security features available to help meet your safety measures when managing a Web site. Most popular CMSs offer solutions or add-ons that can ensure a secure site. These include the use of <a href="http://en.wikipedia.org/wiki/Captcha" target="_blank">CAPTCHA</a> in forms, <a href="http://en.wikipedia.org/wiki/CPU_throttling" target="_blank">throttling</a>, IP and email banning, or word censoring.</li>
<li><strong>Multiple Languages</strong> – There are many sites that require content to be displayed in multiple languages and this can be cumbersome to manage, which is why it’s important to find a CMS that can help you take control of the translated content without having to do repetitive steps for each language.</li>
<li><strong>Entry Status</strong> – A small feature that I’ve found extremely useful over the years is the ability to flag content as “Published” or “Unpublished” (the terminology varies, but the functionality is the same). Flagging allows you to temporarily remove or unpublish content from the front end of the Web site without having to actually delete it. Then, when you’re ready to have the content reappear, it’s as simple as removing or changing the flag to “Published”.</li>
<li><strong>Price</strong> – Although there are a handful of CMSs that are free to use, there are others that have a required license fee. Budget will always be a factor, but many times the fees turn out to be just a nominal price to pay for the quality, functionality and support you get in return. As important as price is, it’s vital that it doesn’t become the driving force when choosing which CMS to use.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.thestylesheet.com/featured-articles/2008/11/top-10-things-to-look-for-when-choosing-a-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GasBuddy.com</title>
		<link>http://www.thestylesheet.com/useful-things/2008/07/gasbuddycom/</link>
		<comments>http://www.thestylesheet.com/useful-things/2008/07/gasbuddycom/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 20:13:11 +0000</pubDate>
		<dc:creator>Manoj Thomas</dc:creator>
				<category><![CDATA[Useful Things]]></category>

		<guid isPermaLink="false">http://www.thestylesheet.com/?p=363</guid>
		<description><![CDATA[GasBuddy.com provides an interactive community where consumers can post the gas prices for various fuel stations in their local area. Regular gas, midgrade, premium and diesel fuel prices are updated daily with the cheapest cost per gallon, the most expensive, and everything in between. So while you&#8217;re waiting for the Capital MetroRail to get under [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gasbuddy.com/" target="blank"><img class="alignleft size-full wp-image-365" align="left" title="gasbuddy" src="http://www.thestylesheet.com/wordpress/wp-content/uploads/gasbuddy.jpg" border="0" alt="GasBuddy.com logo" width="170" height="48" /></a><a href="http://www.gasbuddy.com" target="_blank">GasBuddy.com</a> provides an interactive community where consumers can post the gas prices for various fuel stations in their local area. Regular gas, midgrade, premium and diesel fuel prices are updated daily with the cheapest cost per gallon, the most expensive, and everything in between. So while you&#8217;re waiting for the <a href="http://allsystemsgo.capmetro.org/capital-metrorail.shtml" target="_blank">Capital MetroRail </a>to get under way, check out which gas station is offering the best deals at any time. Start searching and stop paying too much!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thestylesheet.com/useful-things/2008/07/gasbuddycom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managing Email Woes: IMAP vs POP</title>
		<link>http://www.thestylesheet.com/featured-articles/2008/05/managing-email-woes-imap-vs-pop/</link>
		<comments>http://www.thestylesheet.com/featured-articles/2008/05/managing-email-woes-imap-vs-pop/#comments</comments>
		<pubDate>Wed, 21 May 2008 19:31:18 +0000</pubDate>
		<dc:creator>Manoj Thomas</dc:creator>
				<category><![CDATA[Featured Articles]]></category>

		<guid isPermaLink="false">http://www.thestylesheet.com/?p=325</guid>
		<description><![CDATA[Design Technologist Manoj Thomas illuminates the different types of email protocols. Warning: not for the technologically faint-of-heart!]]></description>
			<content:encoded><![CDATA[<p>Keeping track of emails can be a burdening task, especially if you&#8217;re like me and have a computer for work, a laptop for when you work remotely, and maybe even a phone with emailing capabilities. Choosing the right protocol can really help you avoid an email-managing nightmare.</p>
<h3>What&#8217;s a Protocol?</h3>
<p>Simply put, email protocols are ways to access your emails from the server. You can easily change which protocol you use by updating account settings in your email client (like Microsoft Outlook or Mozilla Thunderbird).</p>
<h3>All Access, Any Location</h3>
<p>The IMAP protocol, which stands for Internet Message Access Protocol, is my personal preference since I can access and manage my emails from multiple computers without anything getting out of sync. Like other protocols, IMAP mail starts off by getting delivered to the main server, but the key difference is that it doesn’t need to be downloaded to your local computer to be viewed. Instead, you login through a mail client like Microsoft Outlook or Mozilla Thunderbird and access what you need from the server, flag messages accordingly and filter them into different folders. In essence, you’re interacting with the server to view your messages,  &#8211; so later on, if you check your email from another computer, everything will remain just as you left it.</p>
<p>The downside to this is that checking email is dependent on your internet connectivity. If you&#8217;re on a slow connection you may notice a little lag while your email client connects to the server and tries to synchronize everything. In my opinion, though, this is only a small inconvenience when compared to everything else IMAP can offer.</p>
<h4>I&#8217;m Sold, Configure Me!</h4>
<p>Setting up this configuration can be done in your email client. If you run into any problems you should contact your provider since all clients are a little different and mail server settings vary. This setup is based on what we here at TradeMark Media do so be sure to replace our domain with yours:</p>
<ul>
<li><strong>Server Account Type:</strong> IMAP</li>
<li><strong>Incoming Mail Server:</strong> pop.trademarkmedia.com</li>
<li><strong>Outgoing Mail Server:</strong> smtp.trademarkmedia.com</li>
<li><strong>Username</strong>: manoj@trademarkmedia.com</li>
<li><strong>Password</strong>: **********</li>
</ul>
<p>Our outgoing server (SMTP) requires authentication so I&#8217;ll check this option and opt to use the same settings as my incoming mail server.</p>
<h3>Keep It Simple</h3>
<p>Only check email from 9-5? Or maybe you check it solely from your laptop? The POP protocol, short for Post Office Protocol, may then be the best route. POP email differs from IMAP in that messages are downloaded from the server to your local machine before being viewed and sorted. Once downloaded, these messages are deleted from the server and are only accessible locally (from your laptop, for example).</p>
<p>POP was designed to support this type of &#8220;offline&#8221; mail processing and works just fine if you&#8217;re sure you’ll be managing your emails from one machine. It&#8217;s not well-suited if there&#8217;s a chance you’ll be accessing messages from different machines at different times because you&#8217;ll quickly find out that some messages will only be available from the specific computer you initially used to view them!</p>
<h4>That&#8217;s All I Need, Set Me Up!</h4>
<p>Setup for a POP account is very similar to IMAP. In fact, the only item you&#8217;ll probably have to change is the Server Account Type:</p>
<ul>
<li><strong>Server Account Type:</strong> POP3</li>
<li><strong>Incoming Mail Server:</strong> pop.trademarkmedia.com</li>
<li><strong>Outgoing Mail Server:</strong> smtp.trademarkmedia.com</li>
<li><strong>Username</strong>: manoj@trademarkmedia.com</li>
<li><strong>Password</strong>: **********</li>
</ul>
<p>Again, our outgoing server (SMTP) requires authentication so I&#8217;ll check this option and use the same settings as my incoming mail server.</p>
<h3>Throw Your iPhone in the Mix</h3>
<p>I recently was lucky enough to win an iPhone courtesy of <a href="http://www.onr.com" target="_blank">OnRamp Access</a> and their High-Tech Happy Hour. It&#8217;s my new best friend and I&#8217;ve run into a couple of times where people have asked me how I&#8217;ve configured it to check my email. Setup has been a little quirky, but here are the IMAP settings that work for me and <a href="http://www.trademarkmedia.com/about_us/our_team/jean_conover.asp">Jean</a>, our director of business development:</p>
<h4>Incoming Mail Server</h4>
<ul>
<li><strong>Host Name:</strong> pop.trademarkmedia.com</li>
<li><strong>User Name</strong>: manoj@trademarkmedia.com</li>
<li><strong>Password</strong>: **********</li>
</ul>
<h4>Outgoing Mail Server</h4>
<ul>
<li><strong>Host Name:</strong> smtp.trademarkmedia.com</li>
<li><strong>User Name</strong>: manoj@trademarkmedia.com</li>
<li><strong>Password</strong>: **********</li>
</ul>
<h4>Advanced Incoming Settings</h4>
<ul>
<li><strong>Use SSL:</strong> OFF</li>
<li><strong>Authentication</strong>: Password</li>
<li><strong>Server Port</strong>: 143</li>
</ul>
<h4>Advanced Outgoing Settings</h4>
<ul>
<li><strong>Use SSL:</strong> ON</li>
<li><strong>Authentication</strong>: Password</li>
<li><strong>Server Port</strong>: 465</li>
</ul>
<p>Managing emails can be a hefty chore, but choosing the right route to access them can save you plenty of time and anguish. A few changes to your settings can really make a difference in keeping track of all your messages all of the time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thestylesheet.com/featured-articles/2008/05/managing-email-woes-imap-vs-pop/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>BookCrossing.com</title>
		<link>http://www.thestylesheet.com/useful-things/2008/03/bookcrossingcom/</link>
		<comments>http://www.thestylesheet.com/useful-things/2008/03/bookcrossingcom/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 20:51:42 +0000</pubDate>
		<dc:creator>Manoj Thomas</dc:creator>
				<category><![CDATA[Useful Things]]></category>

		<guid isPermaLink="false">http://www.thestylesheet.com/useful-things/2008/03/bookcrossingcom/</guid>
		<description><![CDATA[Read, Register and Release &#8211; the three R&#8217;s of BookCrossing.com, a unique community of over 600,000 book lovers spanning across nearly 150 countries. Read a book, register it at BookCrossing.com to get a unique ID and then pass it on by hiding it at your favorite local coffee shop (or anywhere!). Members that want to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bookcrossing.com"><img width="150" height="54" border="0" align="left" style="margin: 0pt 7px 1px 0pt;" src="http://www.thestylesheet.com/wordpress/wp-content/uploads/image/bookcrossing.jpg" alt="" /></a>Read, Register and Release &#8211; the three R&#8217;s of <a href="http://www.bookcrossing.com">BookCrossing.com</a>, a unique community of over 600,000 book lovers spanning across nearly 150 countries. Read a book, register it at BookCrossing.com to get a unique ID and then pass it on by hiding it at your favorite local coffee shop (or anywhere!). Members that want to read your book can swing by your drop-off location or even request to get it mailed. Clean out your shelves, begin your virtual library and <a href="http://bookcrossing.com/hunt">start hunting</a> today &#8211; it&#8217;s free!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thestylesheet.com/useful-things/2008/03/bookcrossingcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeRice.com</title>
		<link>http://www.thestylesheet.com/useful-things/2008/01/freericecom/</link>
		<comments>http://www.thestylesheet.com/useful-things/2008/01/freericecom/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 17:13:20 +0000</pubDate>
		<dc:creator>Manoj Thomas</dc:creator>
				<category><![CDATA[Useful Things]]></category>

		<guid isPermaLink="false">http://www.thestylesheet.com/useful-things/2008/01/freericecom/</guid>
		<description><![CDATA[Twenty grains of rice never sounded so good. FreeRice.com, a vocabulary quiz Web site turned philanthropic effort, is challenging the world one word at a time. It couldn&#8217;t be simpler &#8211; see a word and identify its correct definition based on the four given choices and twenty grains of rice will be donated to the [...]]]></description>
			<content:encoded><![CDATA[<p><img width="112" height="68" align="left" alt="" src="http://www.thestylesheet.com/wordpress/wp-content/uploads/image/freerice.jpg" />Twenty grains of rice never sounded so good. <a href="http://www.freerice.com">FreeRice.com</a>, a vocabulary quiz Web site turned philanthropic effort, is challenging the world one word at a time. It couldn&#8217;t be simpler &#8211; see a word and identify its correct definition based on the four given choices and twenty grains of rice will be donated to the <a href="http://www.wfp.org">UN World Food Programme</a>. Wait, twenty grains? That&#8217;s virtually nothing, right? Maybe, but at over twenty million hits in its first three months, FreeRice.com has donated over 160 metric tons of rice &#8211; that&#8217;s enough to feed almost a quarter of a million people.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thestylesheet.com/useful-things/2008/01/freericecom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Future of Web Accessibility</title>
		<link>http://www.thestylesheet.com/featured-articles/2007/11/the-future-of-web-accessibility/</link>
		<comments>http://www.thestylesheet.com/featured-articles/2007/11/the-future-of-web-accessibility/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 22:41:31 +0000</pubDate>
		<dc:creator>Manoj Thomas</dc:creator>
				<category><![CDATA[Featured Articles]]></category>

		<guid isPermaLink="false">http://www.thestylesheet.com/featured-articles/2007/11/the-future-of-web-accessibility/</guid>
		<description><![CDATA[At TradeMark Media, we recognize that Web accessibility is emerging as an essential feature of Web site development. Accessibility provides alternative content to enable users with disabilities to find information on the Web easily. We do our best to keep up with the latest innovations in accessibility and incorporate it into every site we create.]]></description>
			<content:encoded><![CDATA[<p>At TradeMark Media, we recognize that Web accessibility is emerging as an essential feature of Web site development. Accessibility enables users with disabilities to find information on the Web easily. We do our best to keep up with the latest innovations in accessibility and incorporate it into every site we create.</p>
<p>When TradeMark Media opened its doors 8 years ago, the first working version of the <a href="http://www.w3.org/TR/WAI-WEBCONTENT/">Web Content Accessibility Guidelines (WCAG 1.0) </a>was just being released. It provided useful strategies for Web developers about ways to structure and style information, which in turn could provide the most accessible content for all users.</p>
<p>Since then, the Web has become more robust and we&rsquo;ve found ourselves consistently working with richer, user-generated content and multimedia, which far surpass the scope that drafters of the guidelines originally had in mind. So what does the future hold for accessibility?</p>
<h3>Newer technologies will continue to drive the market</h3>
<p>
Technologies such as <a href="http://www.adobe.com/accessibility/products/flash/author.html">Flash</a> and <a href="http://en.wikipedia.org/wiki/Ajax_(programming)">AJAX </a>are here to stay. WCAG 1.0 didn&rsquo;t provide any resourceful information as to how we can use these tools and even suggested that these types of features be avoided to achieve better accessibility. <a href="http://www.w3.org/TR/WCAG20/">WCAG 2.0</a>, currently in a working draft and regarded as technology-neutral, skirts away from this issue. What exactly does this mean? There will be fewer constraints for developers on the types of technologies they use and more support for assistive technologies, which will help deliver content to audiences.</p>
<p>For example, assistive technologies used collectively, such as the screen reader, <a href="http://www.freedomscientific.com/fs_products/software_jaws.asp">JAWS</a>, and captioning tool, <a href="http://ncam.wgbh.org/webaccess/magpie/">MAGpie</a>, provide excellent ways to separate content from media. MAGpie can add full captions to any standard video based on a text transcript, and this can be seamlessly read by JAWS. Even Flash, which has been praised for its interactive possibilities but frowned upon for its inaccessibility, now incorporates meaningful, accessible practices.</p>
<h3>Accessibility evangelists will play a larger role in the development cycle</h3>
<p>
Many of the basic guidelines laid out in WCAG 1.0 are now overshadowed by advanced issues that need to be addressed &ndash; it&rsquo;s not as straightforward as it seemed five years ago. Now more than ever we&rsquo;re in need of experts who understand the importance and value of accessibility and can communicate cutting-edge methods to clients and developers.</p>
<p>It&rsquo;s a bit na&iuml;ve to think that a completely accessible Web site can be easily created and maintained, especially since user-generated content is quickly becoming the norm. More often than ever we have to be prepared to offer secondary solutions, such as alternative versions of content that can be accessible and just as useful.</p>
<h3>It&rsquo;s still all about the user</h3>
<p>
The checkpoints provided by the <a href="http://www.w3.org/">World Wide Web Consortium (W3C) </a>are a great starting point to establish whether your site meets the basic requirements of accessibility, but it can&rsquo;t be the only determining factor. Derek Featherstone, principal of <a href="http://www.furtherahead.com/">Further Ahead</a>, led a very informative session at this year&rsquo;s <a href="http://2007.webjamsession.com/">Webmaster Jam</a> and explained how vital it is not to overlook the unique user/situation at hand for each project. The best accessible user experience can&rsquo;t be created by following general guidelines &ndash; instead it takes a creative team of developers and accessibility experts to produce a usable site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thestylesheet.com/featured-articles/2007/11/the-future-of-web-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
