<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
		<channel>
		<title>Fiftyfoureleven.com Web Development Weblog and Resources</title>
		<description>A weblog and resources about web development, marketing and working on the web.</description>
		<link>http://www.fiftyfoureleven.com/rss</link>
		<copyright>www.fiftyfoureleven.com</copyright>
		<sy:updatePeriod>daily</sy:updatePeriod>
		<sy:updateFrequency>2</sy:updateFrequency>
		<sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/fiftyfourelevencom" /><feedburner:info uri="fiftyfourelevencom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item><title>How The Huffington Post uses real-time testing to write better headlines</title><pubDate>Thu, 15 Oct 2009 00:00:00 -0400</pubDate><description><![CDATA[Posted in the Resources: Having a good bit of traffic allows The Huffington Post to a/b test article headlines for <em>5 minutes</em> in order to pick the winner with the most click-thrus. 

We have done this on client sites by testing copy in different content modules but the tests run for a much longer period. It would certainly be fun to be on the data side of these tests and to see what works best. Anyways, there are some good links in the article to some other a/b test cases. <a href="http://www.niemanlab.org/2009/10/how-the-huffington-post-uses-real-time-testing-to-write-better-headlines/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-955">Link to our summary</a> | <a href="http://www.techmeme.com/">Via</a>]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/0fsdrLD5B-M/</link><content:encoded><![CDATA[Posted in the Resources: Having a good bit of traffic allows The Huffington Post to a/b test article headlines for <em>5 minutes</em> in order to pick the winner with the most click-thrus. 

We have done this on client sites by testing copy in different content modules but the tests run for a much longer period. It would certainly be fun to be on the data side of these tests and to see what works best. Anyways, there are some good links in the article to some other a/b test cases. <a href="http://www.niemanlab.org/2009/10/how-the-huffington-post-uses-real-time-testing-to-write-better-headlines/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-955">Link to our summary</a> | <a href="http://www.techmeme.com/">Via</a><img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/0fsdrLD5B-M" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-955</feedburner:origLink></item><item><title>SlickMap CSS</title><pubDate>Thu, 09 Jul 2009 00:00:00 -0400</pubDate><description><![CDATA[Posted in the Resources: <p>Here's a cool implementation of CSS for turning hierarchical lists into easier to understand site maps.</p>

<blockquote><p>The general idea of SlickMap CSS is to streamline the web design process by automating the illustration of sitemaps while at the same time allowing for the predevelopment of functional HTML navigation.</p></blockquote> <a href="http://astuteo.com/slickmap/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-954">Link to our summary</a> | <a href="http://dev.upian.com/hotlinks/">Via</a>]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/XYwtUSz0Gjo/</link><content:encoded><![CDATA[Posted in the Resources: <p>Here's a cool implementation of CSS for turning hierarchical lists into easier to understand site maps.</p>

<blockquote><p>The general idea of SlickMap CSS is to streamline the web design process by automating the illustration of sitemaps while at the same time allowing for the predevelopment of functional HTML navigation.</p></blockquote> <a href="http://astuteo.com/slickmap/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-954">Link to our summary</a> | <a href="http://dev.upian.com/hotlinks/">Via</a><img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/XYwtUSz0Gjo" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-954</feedburner:origLink></item><item><title>Custom events in jQuery open doors to complex behaviors</title><pubDate>Thu, 02 Apr 2009 00:00:00 -0400</pubDate><description><![CDATA[Posted in the Resources: <p><a href="http://www.rebeccamurphey.com/">Rebecca Murphey</a> provides a look at using custom events in jQuery. While she doesn't really get to the <em>why</em> until the end of the article, the benefits are certainly something worth having in your code:</p>

<ol>
<li><q>Well-organized code that consolidates the behavior widgets in a few bind() statements, rather than scattering those behaviors across the elements that initiate them</q></li>
<li>Added flexibility as it’s any element can initiate a behavior, or a behavior can be triggered across multiple widgets at once</li>
<li>Use of a control element which <q>captures a click event and translates it into an event to be triggered on the widget.</q></li>
<li>Better organization of your code, abstraction and increased ability to reuse code</li>
</ol>

<p>I'm no JavaScript wizard and I am looking forward to implementing some of this logic in the near future to consolidate some of the jQuery we use in a few client sites.</p> <a href="http://www.reynoldsftw.com/2009/04/custom-events-in-jquery-open-doors-to-complex-behaviors/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-953">Link to our summary</a> ]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/On8FgbIbmHM/</link><content:encoded><![CDATA[Posted in the Resources: <p><a href="http://www.rebeccamurphey.com/">Rebecca Murphey</a> provides a look at using custom events in jQuery. While she doesn't really get to the <em>why</em> until the end of the article, the benefits are certainly something worth having in your code:</p>

<ol>
<li><q>Well-organized code that consolidates the behavior widgets in a few bind() statements, rather than scattering those behaviors across the elements that initiate them</q></li>
<li>Added flexibility as it’s any element can initiate a behavior, or a behavior can be triggered across multiple widgets at once</li>
<li>Use of a control element which <q>captures a click event and translates it into an event to be triggered on the widget.</q></li>
<li>Better organization of your code, abstraction and increased ability to reuse code</li>
</ol>

<p>I'm no JavaScript wizard and I am looking forward to implementing some of this logic in the near future to consolidate some of the jQuery we use in a few client sites.</p> <a href="http://www.reynoldsftw.com/2009/04/custom-events-in-jquery-open-doors-to-complex-behaviors/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-953">Link to our summary</a> <img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/On8FgbIbmHM" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-953</feedburner:origLink></item><item><title>Sphinx - free open-source SQL full-text search engine</title><pubDate>Thu, 26 Mar 2009 00:00:00 -0400</pubDate><description><![CDATA[Posted in the Resources: <p>This is being bookmarked for future reference. From the website:</p>
<blockquote><p>Generally, it's a standalone search engine, meant to provide fast, size-efficient and relevant fulltext search functions to other applications. Sphinx was specially designed to integrate well with SQL databases and scripting languages. Currently built-in data sources support fetching data either via direct connection to MySQL or PostgreSQL, or using XML pipe mechanism (a pipe to indexer in special XML-based format which Sphinx recognizes). </p></blockquote>

<p>Also see: <a href="http://www.ibm.com/developerworks/library/os-php-sphinxsearch/">Build a custom search engine with PHP</a> and <a href="http://nextupdate.com/blog/archives/2009/03/implementing-search/">Implementing Search</a>.</p> <a href="http://sphinxsearch.com/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-952">Link to our summary</a> ]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/ZiSiknxSdZA/</link><content:encoded><![CDATA[Posted in the Resources: <p>This is being bookmarked for future reference. From the website:</p>
<blockquote><p>Generally, it's a standalone search engine, meant to provide fast, size-efficient and relevant fulltext search functions to other applications. Sphinx was specially designed to integrate well with SQL databases and scripting languages. Currently built-in data sources support fetching data either via direct connection to MySQL or PostgreSQL, or using XML pipe mechanism (a pipe to indexer in special XML-based format which Sphinx recognizes). </p></blockquote>

<p>Also see: <a href="http://www.ibm.com/developerworks/library/os-php-sphinxsearch/">Build a custom search engine with PHP</a> and <a href="http://nextupdate.com/blog/archives/2009/03/implementing-search/">Implementing Search</a>.</p> <a href="http://sphinxsearch.com/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-952">Link to our summary</a> <img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/ZiSiknxSdZA" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-952</feedburner:origLink></item><item><title>Evolution of a Header</title><pubDate>Thu, 26 Mar 2009 00:00:00 -0400</pubDate><description><![CDATA[Posted in the Resources: <p>Garrett Dimon wrote up some details about the evolution of the header area on a couple of screens for his webapp <a href="http://sifterapp.com/">Sifter</a>. It provides a very nice overview of the stages of development (with sketches and images) and we get to see how the decisions were made. I find these articles a good way to bring some focus back to what they are discussing, and in this case I feel compelled to examine how I handle meta data in our CMS and on my websites like 5411.</p> <a href="http://garrettdimon.com/archives/2008/1/22/evolution_of_a_header/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-951">Link to our summary</a> ]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/Ya1LTVs_uI4/</link><content:encoded><![CDATA[Posted in the Resources: <p>Garrett Dimon wrote up some details about the evolution of the header area on a couple of screens for his webapp <a href="http://sifterapp.com/">Sifter</a>. It provides a very nice overview of the stages of development (with sketches and images) and we get to see how the decisions were made. I find these articles a good way to bring some focus back to what they are discussing, and in this case I feel compelled to examine how I handle meta data in our CMS and on my websites like 5411.</p> <a href="http://garrettdimon.com/archives/2008/1/22/evolution_of_a_header/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-951">Link to our summary</a> <img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/Ya1LTVs_uI4" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-951</feedburner:origLink></item><item><title>100% Google AdSense: Tools, Tips and Resources</title><pubDate>Tue, 24 Mar 2009 00:00:00 -0400</pubDate><description><![CDATA[Posted in the Resources: <p>A fantastic post covering heaps of tools and articles focused on helping you get the most from the ads on your site or network. If you are not familiar with the links in this article, put some time aside and get to know them and implement or use some of them and hopefully you will notice the difference in your AdSense revenue!</p> <a href="http://www.smashingmagazine.com/2009/03/19/100-google-adsense-tools-tips-and-resources/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-950">Link to our summary</a> ]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/Ohx8N9ayUpM/</link><content:encoded><![CDATA[Posted in the Resources: <p>A fantastic post covering heaps of tools and articles focused on helping you get the most from the ads on your site or network. If you are not familiar with the links in this article, put some time aside and get to know them and implement or use some of them and hopefully you will notice the difference in your AdSense revenue!</p> <a href="http://www.smashingmagazine.com/2009/03/19/100-google-adsense-tools-tips-and-resources/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-950">Link to our summary</a> <img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/Ohx8N9ayUpM" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-950</feedburner:origLink></item><item><title>jQuery Rich Text Editor</title><pubDate>Fri, 06 Mar 2009 00:00:00 -0500</pubDate><description><![CDATA[Posted in the Resources: <p>We use jQuery for most things in our CMS but for the moment use <a href="http://www.themaninblue.com/writing/perspective/2005/01/27/">Cameron Adams' widgEditor</a> as a lightweight RTE. Here we have a fork off of Batiste Bieler's jQuery Lightweight Rich Text Editor that looks like it could be a decent jQuery option in our next release, which is targeted at using nothing but jQuery for behaviour.</p>

<p>Functionality is what you would expect from a lightweight RTE, down to the small footprint of the source code which should be easy to customize for your own work. It has a GPL license and is <q cite="http://www.intrepidstudios.com/projects/jquery-rich-text-editor/default.aspx">tested and fully compatible with Firefox, Opera, Safari, IE6, and IE7</q>.</p> <a href="http://www.intrepidstudios.com/projects/jquery-rich-text-editor/default.aspx">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-949">Link to our summary</a> ]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/M8KOK5bPWwI/</link><content:encoded><![CDATA[Posted in the Resources: <p>We use jQuery for most things in our CMS but for the moment use <a href="http://www.themaninblue.com/writing/perspective/2005/01/27/">Cameron Adams' widgEditor</a> as a lightweight RTE. Here we have a fork off of Batiste Bieler's jQuery Lightweight Rich Text Editor that looks like it could be a decent jQuery option in our next release, which is targeted at using nothing but jQuery for behaviour.</p>

<p>Functionality is what you would expect from a lightweight RTE, down to the small footprint of the source code which should be easy to customize for your own work. It has a GPL license and is <q cite="http://www.intrepidstudios.com/projects/jquery-rich-text-editor/default.aspx">tested and fully compatible with Firefox, Opera, Safari, IE6, and IE7</q>.</p> <a href="http://www.intrepidstudios.com/projects/jquery-rich-text-editor/default.aspx">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-949">Link to our summary</a> <img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/M8KOK5bPWwI" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-949</feedburner:origLink></item><item><title>Quarkbase - Everything about a Website</title><pubDate>Fri, 06 Mar 2009 00:00:00 -0500</pubDate><description><![CDATA[Posted in the Resources: <p>A pretty useful tool for getting some quick data about a website, from social popularity on the usual social sites to spotlight "In the blogs" covering blog mentions of a site down to its nameservers and hosting company. Having just had to look up some nameservers today, this was useful. I have to say I really like the name.</p> <a href="http://www.quarkbase.com/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-948">Link to our summary</a> ]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/G-JfgtLK_u8/</link><content:encoded><![CDATA[Posted in the Resources: <p>A pretty useful tool for getting some quick data about a website, from social popularity on the usual social sites to spotlight "In the blogs" covering blog mentions of a site down to its nameservers and hosting company. Having just had to look up some nameservers today, this was useful. I have to say I really like the name.</p> <a href="http://www.quarkbase.com/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-948">Link to our summary</a> <img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/G-JfgtLK_u8" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-948</feedburner:origLink></item><item><title>Google's New Search Engine Rankings Place Heavy Emphasis on Branding</title><pubDate>Fri, 06 Mar 2009 00:00:00 -0500</pubDate><description><![CDATA[Posted in the Resources: <p>I hesitate to post these types of links because of their ephemeral nature, but the historical aspect of this post makes it worthwhile. Aaron Wall provides an update on Google's latest ranking methods after giving a brief rundown on things since the Florida update. Worth the read; the <em>User Browsing Graph</em> and his anecdotal evidence was a surprise to me.</p> <a href="http://www.seobook.com/google-branding">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-947">Link to our summary</a> | <a href="http://twitter.com/DeanD">Via</a>]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/UtK6dEWcVAI/</link><content:encoded><![CDATA[Posted in the Resources: <p>I hesitate to post these types of links because of their ephemeral nature, but the historical aspect of this post makes it worthwhile. Aaron Wall provides an update on Google's latest ranking methods after giving a brief rundown on things since the Florida update. Worth the read; the <em>User Browsing Graph</em> and his anecdotal evidence was a surprise to me.</p> <a href="http://www.seobook.com/google-branding">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-947">Link to our summary</a> | <a href="http://twitter.com/DeanD">Via</a><img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/UtK6dEWcVAI" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-947</feedburner:origLink></item><item><title>iconPot - totally free icons</title><pubDate>Fri, 06 Mar 2009 00:00:00 -0500</pubDate><description><![CDATA[Posted in the Resources: <p>iconPot has a nice collection of free to use icons for person and commercial use. There's a variety of styles and themes available. Do check the licenses of the icon sets when you download them as iconPot does not keep up to date on the individual licenses.</p> <a href="http://www.iconpot.com/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-946">Link to our summary</a> | <a href="http://www.calfinder.com">Via</a>]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/Z98KlvpZmxc/</link><content:encoded><![CDATA[Posted in the Resources: <p>iconPot has a nice collection of free to use icons for person and commercial use. There's a variety of styles and themes available. Do check the licenses of the icon sets when you download them as iconPot does not keep up to date on the individual licenses.</p> <a href="http://www.iconpot.com/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-946">Link to our summary</a> | <a href="http://www.calfinder.com">Via</a><img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/Z98KlvpZmxc" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-946</feedburner:origLink></item><item><title>Raphaël JavaScript Library</title><pubDate>Tue, 03 Mar 2009 00:00:00 -0500</pubDate><description><![CDATA[Posted in the Resources: <p>Raphaël JavaScript Library is not just another JS library; it <q cite="http://raphaeljs.com/reference.html">creates a canvas object on which to draw</q>, and draw it does! Check out the <a href="http://raphaeljs.com/index.html#demos">demos</a> and the <a href="http://raphaeljs.com/reference.html">documentation</a>.</p> <a href="http://raphaeljs.com">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-945">Link to our summary</a> | <a href="http://www.mezzoblue.com/">Via</a>]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/U7-rt1aGEVY/</link><content:encoded><![CDATA[Posted in the Resources: <p>Raphaël JavaScript Library is not just another JS library; it <q cite="http://raphaeljs.com/reference.html">creates a canvas object on which to draw</q>, and draw it does! Check out the <a href="http://raphaeljs.com/index.html#demos">demos</a> and the <a href="http://raphaeljs.com/reference.html">documentation</a>.</p> <a href="http://raphaeljs.com">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-945">Link to our summary</a> | <a href="http://www.mezzoblue.com/">Via</a><img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/U7-rt1aGEVY" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-945</feedburner:origLink></item><item><title>jQuery Sparklines</title><pubDate>Sat, 28 Feb 2009 00:00:00 -0500</pubDate><description><![CDATA[Posted in the Resources: <p>Here's a great little jQuery Sparklines plugin that will draw a whole assortment of chart types as <a href="http://en.wikipedia.org/wiki/Sparklines">sparklines</a>. Play with the <em>Try It Out</em> section to get a feel of how it works and then dive into the source code and examples. What is cool, if you view one of the <a href="http://www.omnipotent.net/jquery.sparkline/simple.html">example pages</a> with JS disabled, you can see the underlying data rather then the chart. I could see this being relevant for use in some cases (for example stock market reporting covering the close on the cac-40 for the last week) and how this plugin works to accomplish what unobtrusive JavaScript should do: <em>enhance</em> the user experience not <em>create</em> the user experience.</p> <a href="http://www.omnipotent.net/jquery.sparkline/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-944">Link to our summary</a> | <a href="http://simon.incutio.com/">Via</a>]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/r-2tiNFfOng/</link><content:encoded><![CDATA[Posted in the Resources: <p>Here's a great little jQuery Sparklines plugin that will draw a whole assortment of chart types as <a href="http://en.wikipedia.org/wiki/Sparklines">sparklines</a>. Play with the <em>Try It Out</em> section to get a feel of how it works and then dive into the source code and examples. What is cool, if you view one of the <a href="http://www.omnipotent.net/jquery.sparkline/simple.html">example pages</a> with JS disabled, you can see the underlying data rather then the chart. I could see this being relevant for use in some cases (for example stock market reporting covering the close on the cac-40 for the last week) and how this plugin works to accomplish what unobtrusive JavaScript should do: <em>enhance</em> the user experience not <em>create</em> the user experience.</p> <a href="http://www.omnipotent.net/jquery.sparkline/">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-944">Link to our summary</a> | <a href="http://simon.incutio.com/">Via</a><img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/r-2tiNFfOng" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-944</feedburner:origLink></item><item><title>jQuery Accessible Tabs</title><pubDate>Thu, 26 Feb 2009 00:00:00 -0500</pubDate><description><![CDATA[Posted in the Resources: <p>More often then not jQuery tabs have the format of using a &lt;ul&gt; above the content to hold what becomes the tabs. This is cool if you are happy with the non-javascript result. You can see what I mean by viewing <a href="http://stilbuero.de/jquery/tabs_3/">this version of jQuery tabs</a> with your javascript off. Contrast with <a href="http://blog.ginader.de/dev/jquery/tabs/1.0/simple.php">this version of jQuery tabs</a>. See the difference?</p>

<p>They really are two different situations and for the time when you simply want to turn a semantically happy piece of text into tabs without having to add a &lt;ul&gt; of links above, this looks to be the answer.</p> <a href="http://blog.ginader.de/archives/2009/02/07/jQuery-Accessible-Tabs-How-to-make-tabs-REALLY-accessible.php">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-943">Link to our summary</a> ]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/0EVSevb0XtI/</link><content:encoded><![CDATA[Posted in the Resources: <p>More often then not jQuery tabs have the format of using a &lt;ul&gt; above the content to hold what becomes the tabs. This is cool if you are happy with the non-javascript result. You can see what I mean by viewing <a href="http://stilbuero.de/jquery/tabs_3/">this version of jQuery tabs</a> with your javascript off. Contrast with <a href="http://blog.ginader.de/dev/jquery/tabs/1.0/simple.php">this version of jQuery tabs</a>. See the difference?</p>

<p>They really are two different situations and for the time when you simply want to turn a semantically happy piece of text into tabs without having to add a &lt;ul&gt; of links above, this looks to be the answer.</p> <a href="http://blog.ginader.de/archives/2009/02/07/jQuery-Accessible-Tabs-How-to-make-tabs-REALLY-accessible.php">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-943">Link to our summary</a> <img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/0EVSevb0XtI" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-943</feedburner:origLink></item><item><title>Charts with PHP and Google Charts API</title><pubDate>Thu, 24 Apr 2008 00:00:00 -0400</pubDate><description><![CDATA[Posted in the Resources: <p>I haven't spent any time looking at the Google Charts API, however this little class - which aims to provide a simple and lite charting solution in PHP - looks like a good place to start before diving into the whole API. While I haven't looked at the code, the result allows you to quickly build simple charts and pop them into your site or application. Very nice if you are in need of a quick solution.</p> <a href="http://luddep.se/notebook/2008/04/charts_with_php_and_google_charts_api">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-942">Link to our summary</a> | <a href="http://www.phpaddiction.com">Via</a>]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/fkLIGlc10cg/</link><content:encoded><![CDATA[Posted in the Resources: <p>I haven't spent any time looking at the Google Charts API, however this little class - which aims to provide a simple and lite charting solution in PHP - looks like a good place to start before diving into the whole API. While I haven't looked at the code, the result allows you to quickly build simple charts and pop them into your site or application. Very nice if you are in need of a quick solution.</p> <a href="http://luddep.se/notebook/2008/04/charts_with_php_and_google_charts_api">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-942">Link to our summary</a> | <a href="http://www.phpaddiction.com">Via</a><img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/fkLIGlc10cg" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-942</feedburner:origLink></item><item><title>Best practices when moving your site</title><pubDate>Fri, 18 Apr 2008 00:00:00 -0400</pubDate><description><![CDATA[Posted in the Resources: <p>The <em>Official Google Webmaster Central Blog</em> provides their list of things to do when moving a site to a <em>new domain</em>. If you ever have to take this up and are worried about <q>How do you do it without hurting your site's performance in Google search results?</q>, then be sure to bookmark this link.</p>

<blockquote><p>Ideally, you should contact the webmaster of each site that links to yours and ask them to update the links to point to the page on your new domain. If this isn't practical, make sure that all pages with incoming links are redirected to your new site.</p></blockquote>

<p>Not sure if that first part would ever be practical...</p> <a href="http://googlewebmastercentral.blogspot.com/2008/04/best-practices-when-moving-your-site.html">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-941">Link to our summary</a> ]]></description><link>http://feedproxy.google.com/~r/fiftyfourelevencom/~3/9ulWQfvGItc/</link><content:encoded><![CDATA[Posted in the Resources: <p>The <em>Official Google Webmaster Central Blog</em> provides their list of things to do when moving a site to a <em>new domain</em>. If you ever have to take this up and are worried about <q>How do you do it without hurting your site's performance in Google search results?</q>, then be sure to bookmark this link.</p>

<blockquote><p>Ideally, you should contact the webmaster of each site that links to yours and ask them to update the links to point to the page on your new domain. If this isn't practical, make sure that all pages with incoming links are redirected to your new site.</p></blockquote>

<p>Not sure if that first part would ever be practical...</p> <a href="http://googlewebmastercentral.blogspot.com/2008/04/best-practices-when-moving-your-site.html">Read Original Article</a> | <a href="http://www.fiftyfoureleven.com/resources/#L-941">Link to our summary</a> <img src="http://feeds.feedburner.com/~r/fiftyfourelevencom/~4/9ulWQfvGItc" height="1" width="1"/>]]></content:encoded><feedburner:origLink>http://www.fiftyfoureleven.com/resources/#L-941</feedburner:origLink></item></channel></rss>

