<?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>WordPress Web Hosting &#187; Web Hosting</title>
	<atom:link href="http://www.shrewdies.net/host/web-hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shrewdies.net</link>
	<description>Business Web Hosting For Shrewdies Not Dummies</description>
	<lastBuildDate>Thu, 01 Jul 2010 06:41:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>WordPress Database With Pods Wings</title>
		<link>http://www.shrewdies.net/1382/wordpress-database-with-pods-wings/</link>
		<comments>http://www.shrewdies.net/1382/wordpress-database-with-pods-wings/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 16:01:24 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Happiness Today]]></category>
		<category><![CDATA[WordPress database]]></category>

		<guid isPermaLink="false">http://www.shrewdies.net/?p=1382</guid>
		<description><![CDATA[I start my detailed look at the anatomy of our WordPress Pods plugins by showing you how Pods CMS makes the WordPress database fly. Though we are all working with data at the heart of the WordPress database, we often take it for granted. But data drives our content, our navigation, our presentation, our whole [...]]]></description>
			<content:encoded><![CDATA[<div class="kctIntro">I start my detailed look at the anatomy of our WordPress Pods plugins by showing you how Pods CMS makes the WordPress database fly.</p>
<p>Though we are all working with data at the heart of the WordPress database, we often take it for granted.</p>
<p>But data drives our content, our navigation, our presentation, our whole website.</p>
<p>Wouldn&#8217;t it be a good idea if we managed it properly?</p></div>
<p>I must confess, I love data. Actually, that&#8217;s as perverted as loving money &#8211; I actually love what can be done with data, rather than data itself. Structured and handled properly, application development, from the most basic WordPress plugin to a full blown web application becomes much more scalable and easier to manage if we get the data right.</p>
<p><div id="attachment_1389" class="wp-caption alignright" style="width: 310px"><a href="http://www.shrewdies.net/wp-content/uploads/wordpress-database-with-pods.png"><img src="http://www.shrewdies.net/wp-content/uploads/wordpress-database-with-pods-300x272.png" alt="WordPress Database With Pods" title="WordPress Database With Pods" width="300" height="272" class="size-medium wp-image-1389" /></a><p class="wp-caption-text">WordPress Database With Pods (click image for full size)</p></div>Our sample project Happiness Today, relies on data, just as it&#8217;s inspiration, Hello Dolly does. Whereas Hello Dolly data, the song lyrics, are hard-coded in the plugin, Happiness Today data is put where it belongs &#8211; in the WordPress database.</p>
<p>Each Pods project starts with data. This is the basic building block, known simply as a Pod. In complex applications, the hard part is learning how to structure data, especially if it needs to be split into different Pods.</p>
<p>Our example is very simple &#8211; every record in the Pod is just a lyric from the song. Experience tells me that I need keys to data in databases. In this case I use a simple line number identifier, which allows me to sort the records should I wish to output the whole song.</p>
<p>It is a good habit to always think of record keys when designing a Pod, or any other database. Pods helps us here by always creating a field called name, which will always uniquely identify records. With the Pod created, we simply need to add the text to each record, which we do with the standard Pods CMS record editing screens.</p>
<p>Job done, except that we need to get the data out.<span id="more-1382"></span> I&#8217;ll be looking at presentation in the next article. In practice, when planning this type of application, you would start by designing the display(s) that need to be produced, and work back to the data required to fulfill that. The crucial point is that the two are completely separate. We have the song data held independently as text records, unchanged but for some keys to identify individual lines.</p>
<p>It is important to grasp this separation between data and presentation. It is also important to plan them both before you start. This example is fairly trivial, but it illustrates the guiding principles. For example, had the application been to present random words, then the database structure would be different.</p>
<p>If you are new to databases, it is a good idea to create some example Pods to familiarize yourself with the features available. When you design an application in future, you will always start planning the outcomes first, then the data structures. When we build the application, it is data first, followed by presentation and often some calculation or other forms of data manipulation.</p>
<p>In this series, we are also concerned with distributing our data via the WordPress Pods Plugin Builder. There are two elements &#8211; the data structure, and the data records.</p>
<p>Pods has an inbuilt mechanism for exporting and importing Pods data structures within its Pods Package feature. This is exposed programatically through the Pods UI plugin, with an import routine demonstrated in the Pods UI demo plugin. The demo has the import code hard-coded into the plugin, but I needed this to be file based for maximum portability. As this is more than just data, I&#8217;ll cover the routines for programatically exporting and importing Pods packages in a later installment (I should also suggest this for the Pods codex, so remind me if I forget).</p>
<p>Similarly, the Pods API exposes import and export methods, so I included these in the builder, to build sample data and import it. To my delight, the proof of concept works fine. The builder creates files for the data structure and data records and a plugin.php file. The plugin imports these during initialization and all is fine, except that it doesn&#8217;t really&#8230;</p>
<p>It is still fine, but the data import has to be separate from the structure import. I have a fairly good idea why this is the case, but as I was thinking about the solution I realized that the data record import SHOULD be separate from the structure import.</p>
<p>To make Happiness Today really useful, it is important to allow users to easily package their own text messages and links. Therefore, I believe that the data import, complete with block delete and export functions should be included in the basic plugin as user routines, separate from installation routines.</p>
<p>My only dilemma is that the extra layer of functionality adds a little more complexity to the idea of a very simple example. Perhaps it is pointless to take simplicity below the level of usefulness?</p>
<p><!--more--><div style="margin-left:-1em;"><table><tr><td><script type="text/javascript"><!--
google_ad_client = "pub-7512621270035949";
/* shrewdies 300x250, created 22/12/09 */
google_ad_slot = "4026195862";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></td><td>
<script type="text/javascript"><!--
ch_client = "GoutPal";
ch_type = "mpu";
ch_width = 300;
ch_height = 250;
ch_color_bg = "ffffff";
ch_color_border = "ffffff";
ch_color_title = "00009e";
ch_color_site_link = "00009e";
ch_non_contextual = 4;
ch_vertical ="premium";
ch_sid = "ShrewdiesReward";
ch_alternate_ad_url = "http://www.shrewdies.net/ad.html";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script>
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script></td></tr></table></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/1382/wordpress-database-with-pods-wings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Join The WordPress Web Hosting Debate</title>
		<link>http://www.shrewdies.net/602/join-the-wordpress-web-hosting-debate/</link>
		<comments>http://www.shrewdies.net/602/join-the-wordpress-web-hosting-debate/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 10:10:49 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[NoFollow Free]]></category>
		<category><![CDATA[shrewdies WordPress web hosting site]]></category>

		<guid isPermaLink="false">http://www.shrewdies.net/?p=602</guid>
		<description><![CDATA[One advantage of WordPress web hosting is the ease with which debate is encouraged through commenting. Link Policy At A Glance Contributors must add value Sidebar link list for top posters Nofollow removed on guests after 2 comments Nofollow removed immediately for registered users Then WordPress removes the incentive for you to contribute by adding [...]]]></description>
			<content:encoded><![CDATA[<div class="kctIntro">One advantage of WordPress web hosting is the ease with which debate is encouraged through commenting.</p>
<div style="float:right;border:.1em solid #00009e;background-color:#9e9eff;margin:.7em;padding:.7em;width:38%;color:#00009e;">
<h4>Link Policy At A Glance</h4>
<ul>
<li>Contributors must add value</li>
<li>Sidebar link list for top posters</li>
<li>Nofollow removed on guests after 2 comments</li>
<li>Nofollow removed immediately for registered users</li>
</ul>
</div>
<p>Then WordPress removes the incentive for you to contribute by adding a nofollow link to your comments! <img src='http://www.shrewdies.net/wp-includes/images/smilies/icon_cry.gif' alt=':cry:' class='wp-smiley' /> </p>
<p>In turn, I remove that nofollow attribute, in most circumstances, so that you get search engine rewards for your valued contribution. <img src='http://www.shrewdies.net/wp-includes/images/smilies/icon_razz.gif' alt=':razz:' class='wp-smiley' /> </div>
<p>I interrupt my series on the shrewdBar development of a Pods package to highlight the benefits you get from joining the web hosting discussion on this site. By discussion, I mean adding valuable questions, comments or theories to existing topics, or starting a new discussion on a web hosting, or WordPress, related topic.</p>
<p>I have updated my <a href="http://www.shrewdies.net/about/site-policy-for-web-hosting-links/">link policy</a> today, to explain more clearly how you can get incoming links to your site.</p>
<p>I have also added a top contributors list on the sidebar, to give extra links for those who contribute most. <span id="more-602"></span>This list is automatically generated by the <a href="http://www.michelem.org/wordpress-plugin-nofollow-free/">No Follow Free (NOFF) plugin</a>. This plugin removes the <a href="http://codex.wordpress.org/Nofollow">nofollow attribute</a> from links. It has a range of settings, but the important ones for you relate to the thresholds at which nofollow tags are removed.  I have lowered the default settings so you get the nofollow free benefits as a guest when you add more than one comment, and immediately if you register.</p>
<p>I&#8217;ll be on the lookout for abusers, and raise the threshold later if necessary.</p>
<p>The purpose of this policy is to encourage meaningful debate without rewarding the people who add &#8220;me too&#8221; comments. Can you think of improvements, or is the whole nofollow debate flying over your head?</p>
<p><!--more--><div style="margin-left:-1em;"><table><tr><td><script type="text/javascript"><!--
google_ad_client = "pub-7512621270035949";
/* shrewdies 300x250, created 22/12/09 */
google_ad_slot = "4026195862";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></td><td>
<script type="text/javascript"><!--
ch_client = "GoutPal";
ch_type = "mpu";
ch_width = 300;
ch_height = 250;
ch_color_bg = "ffffff";
ch_color_border = "ffffff";
ch_color_title = "00009e";
ch_color_site_link = "00009e";
ch_non_contextual = 4;
ch_vertical ="premium";
ch_sid = "ShrewdiesReward";
ch_alternate_ad_url = "http://www.shrewdies.net/ad.html";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script>
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script></td></tr></table></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/602/join-the-wordpress-web-hosting-debate/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>WordPress For Dummies</title>
		<link>http://www.shrewdies.net/web-hosting-dummies-books/wordpress-for-dummies/</link>
		<comments>http://www.shrewdies.net/web-hosting-dummies-books/wordpress-for-dummies/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 16:54:01 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
				<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.shrewdies.net/?page_id=547</guid>
		<description><![CDATA[The WordPress For Dummies book is the biggest selling book of it&#8217;s type related to the much sought, but non-existent, Web Hosting for Dummies. It has many topics in common with this site. I leave it to you to decide if you prefer book, or website format. This book covers some aspects of WordPress in [...]]]></description>
			<content:encoded><![CDATA[<div class="kctIntro">The WordPress For Dummies book is the biggest selling book of it&#8217;s type related to the much sought, but non-existent, Web Hosting for Dummies. It has many topics in common with this site.</p>
<p>I leave it to you to decide if you prefer book, or website format. This book covers some aspects of WordPress in more detail than I do on this website, though if you ask the questions, I&#8217;ll try to give you the fullest answers I can.
</p></div>
<p>This review is designed to tell you the topics covered by WordPress for Dummies. It is not an in-depth review, so please feel free to add your own opinions if you have read this book.</p>
<p>One review of the book comments:</p>
<blockquote><p>I recommend it to anyone wanting to gain basic familiarity with WordPress (and related technical jargon), see whether it&#8217;s the thing for you and, if so, get started using it.</p></blockquote>
<p>My view is that you would get a much better feel for this by joining WordPress.com and just doing it &#8211; you can always shout out here if you get stuck.</p>
<h2>WordPress For Dummies Topics</h2>
<p>After the foreword and introduction, WordPress For Dummies is divided into six parts. Here is a summary of the chapters:</p>
<h3>I. Introducing WordPress</h3>
<dl>
<dt>1: What WordPress Can Do For You</dt>
<dd>The benefits of WordPress and choosing between the hosted version at WordPress.com, or self-hosting with WordPress.org, in single or multi-user varieties.</dd>
</dl>
<dl>
<dt>2: WordPress Blogging Basics</dt>
<dd>Describing blogs and introducing blog technologies including  arches, feeds, trackbacks, and spam. Also, a (very) brief look at business blogs, with the very important advice on the need to plan first (which is why we have shrewdies.com).</dd>
</dl>
<h3>II. Using the WordPress Hosted Service</h3>
<dl>
<dt>3: Getting started with WordPress.com</dt>
<dd>Creating an account and finding your way round the key features and initial settings.</dd>
</dl>
<dl>
<dt>4: Writing and Managing Your Blog</dt>
<dd>A wide-ranging chapter covering all aspects of publishing and categorizing content, links, and users. I feel there are management and planning of some aspects, especially categorization, that warrant a separate chapter. You should have a categorized blueprint before you even begin to think about starting a website. Having said that, the book is about the mechanics of WordPress, so it is unsurprising that management aspects are under-represented.</dd>
</dl>
<dl>
<dt>5. Enhancing Your Blog with Themes, Widgets, and Upgrades</dt>
<dd>Enhancements with WordPress.com are much less than self-hosted blogs, so themes and widgets are covered. Surprisingly, there are no shortcodes listed, which is the way WordPress.com exposes the plugins it installs for you. This used to be limited to just a contact form, but is much more extensive now &#8211; ask if you want a feature on this growing aspect of WordPress.com.</dd>
</dl>
<h3>III. Self-Hosting With WordPress.org</h3>
<dl>
<dt>6: Setting Up Blogging Base Camp</dt>
<dd>Registering domains, finding a host, and running the installation.</dd>
</dl>
<dl>
<dt>7: Understanding the WordPress.org Administration Panel</dt>
<dd>The options and settings that you have to manage extra to WordPress.com.</dd>
</dl>
<dl>
<dt>8: Establishing Your Blog Routine</dt>
<dd>Expands on Chapter 4 to cover extra options you have when writing your blog on a self-hosted site.</dd>
</dl>
<h3>IV. Flexing and Extending WordPress</h3>
<dl>
<dt>9: Media Management: Images, Audio, and Video</dt>
<dd>Inserting, aligning, and managing media files.</dd>
</dl>
<dl>
<dt>10: Making the Most of WordPress Plugins</dt>
<dd>What plugins are, and how to find, install, and use them.</dd>
</dl>
<dl>
<dt>11: Finding and Installing WordPress Themes</dt>
<dd>Unlike plugins, we already know what themes are from the WordPress.com chapters, but now we can look for more. Then a look at some premium themes, though since I&#8217;ve never seen a theme yet that does not need editing, I think a look at the editor might be more appropriate. But wait, the next part is &#8230;</dd>
</dl>
<h3>V. Customizing WordPress</h3>
<dl>
<dt>12: Understanding Themes and Templates</dt>
<dd>The structure of themes and how template files work together. How to use template tags in posts and sidebars, and which are particularly useful.</dd>
</dl>
<dl>
<dt>13: Tweaking WordPress Themes</dt>
<dd>The basics of Cascading Style Sheets (CSS), and where to look for more.</dd>
</dl>
<dl>
<dt>14: Beyond Blogging: WordPress as a Content Management System</dt>
<dd>A miscellany of extra features that take WordPress beyond mere blogging. With the advent of Pods, the CMS angle is largely outdated, but the points are still relevant to how you organize and optimize your blog.</dd>
</dl>
<dl>
<dt>15: Deciding to Bring in the Pros</dt>
<dd>Roles played by designers, developers, and consultants, and how to make the most of them.</dd>
</dl>
<h3>VI. The Part of Tens</h3>
<p>Chapters 16 to 18 feature lists of 10 WordPress web sites used as a CMS, popular WordPress plugins, and free WordPress Themes. Poor trees <img src='http://www.shrewdies.net/wp-includes/images/smilies/icon_cry.gif' alt=':cry:' class='wp-smiley' /> </p>
<p>Finally, we close with an appendix: Migrating your existing blog to WordPress, and the index.</p>
<table>
<tr>
<th>USA</th>
<th></th>
<th>UK</th>
</tr>
<tr>
<td><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=00009E&#038;t=atruefriend-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=0470402962" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></td>
<td>
<script type="text/javascript"><!--
ch_client = "GoutPal";
ch_type = "mpu";
ch_width = 300;
ch_height = 250;
ch_color_bg = "ffffff";
ch_color_border = "ffffff";
ch_color_title = "00009e";
ch_color_site_link = "00009e";
ch_non_contextual = 4;
ch_vertical ="premium";
ch_sid = "ShrewdiesReward";
ch_alternate_ad_url = "http://www.shrewdies.net/ad.html";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script><br />
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script></td>
<td><iframe src="http://rcm-uk.amazon.co.uk/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=00009E&#038;t=freadly-21&#038;o=2&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=0M5A6TN3AXP2JHJBWT02&#038;asins=0470402962" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/web-hosting-dummies-books/wordpress-for-dummies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Hosting Dummies Books</title>
		<link>http://www.shrewdies.net/web-hosting-dummies-books/</link>
		<comments>http://www.shrewdies.net/web-hosting-dummies-books/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 12:50:15 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
				<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.shrewdies.net/?page_id=536</guid>
		<description><![CDATA[I&#8217;m bombarded for requests for web hosting books for dummies. I love books. They make great gifts, and are easy to read when traveling, in bed, or by the pool. We have no dummies here. We are all trying to be shrewdies &#8211; but maybe a good book can help us on the way. Websites [...]]]></description>
			<content:encoded><![CDATA[<div class="kctIntro">I&#8217;m bombarded for requests for web hosting books for dummies.</p>
<p>I love books. They make great gifts, and are easy to read when traveling, in bed, or by the pool.</p>
<p>We have no dummies here. We are all trying to be shrewdies &#8211; but maybe a good book can help us on the way.</p></div>
<p>Websites like this are great to get your questions answered, and share opinions and experiences. If you want to establish a clear plan for hosting your own website, it is better to use the guidelines here, and discuss your options on the forum.</p>
<p>However, sometimes it is just good to sit down with a book. They often add depth to a topic that is missing from discussions. I can see that many people are interested in &#8220;Web Hosting For Dummies&#8221; yet, at least for now, there is no such title.</p>
<p>So let me introduce you to some relevant titles in the &#8220;for dummies&#8221; series.</p>
<h3>Best Selling Web Hosting Dummies Books</h3>
<table>
<tr valign="top">
<th>Title<br /><span style="font-size:70%">(link to review)</span></th>
<th>Description</th>
<th>US Store</th>
<th>UK Shop</th>
</tr>
<tr valign="top">
<td><span class="kctIntro"><small>#1</small></span></p>
<p><a href="http://www.shrewdies.net/web-hosting-dummies-books/wordpress-for-dummies/" title="WordPress For Dummies Book Review">WordPress For Dummies</a></td>
<td>A guide to WordPress blogging, with all the reference material you need to start creating blogs. Introductory guides to blog design and web hosting bring your website nearer reality. Just the thing for beginners who need to blog.</td>
<td><a href="http://www.amazon.com/gp/product/0470402962?ie=UTF8&#038;tag=atruefriend-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0470402962" target="_blank">WordPress For Dummies (USA)</a><img src="http://www.assoc-amazon.com/e/ir?t=atruefriend-20&#038;l=as2&#038;o=1&#038;a=0470402962" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</td>
<td><a href="http://www.amazon.co.uk/gp/product/0470402962?ie=UTF8&#038;tag=freadly-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=0470402962" target="_blank">WordPress for Dummies (UK)</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=freadly-21&#038;l=as2&#038;o=2&#038;a=0470402962" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</td>
</tr>
<tr valign="top">
<td><span class="kctIntro"><small>#2</small></span></p>
<p>Google Blogger For Dummies</td>
<td>Help for Google Blogger &#8211;  introductory guides to creating blogs using the search engine giant&#8217;s free platform. Reviewers see this book about blogging, a blogging 101, as something of an aid to make money online. It&#8217;s certainly true that Google Blogger allows monetization, but the authors are wrong in suggesting that WordPress.com sites do not.</td>
<td><a href="http://www.amazon.com/gp/product/0470407425?ie=UTF8&#038;tag=atruefriend-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0470407425">Google Blogger For Dummies (USA)</a><img src="http://www.assoc-amazon.com/e/ir?t=atruefriend-20&#038;l=as2&#038;o=1&#038;a=0470407425" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></td>
<td><a href="http://www.amazon.co.uk/gp/product/0470407425?ie=UTF8&#038;tag=freadly-215-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=0470407425">Google Blogger for Dummies (UK)</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=freadly-215-21&#038;l=as2&#038;o=2&#038;a=0470407425" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
</td>
</tr>
</table>
<h3>Most Relevant Web Hosting Dummies Books</h3>
<table>
<tr valign="top">
<th>Title<br /><span style="font-size:70%">(link to review)</span></th>
<th>Description</th>
<th>US Store</th>
<th>UK Shop</th>
</tr>
<tr valign="top">
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/web-hosting-dummies-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>shrewdChat</title>
		<link>http://www.shrewdies.net/shrewdchat/</link>
		<comments>http://www.shrewdies.net/shrewdchat/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 12:36:04 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
				<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.shrewdies.net/?page_id=4864b66c27cf3db1</guid>
		<description><![CDATA[To encourage your visitors to contribute, and to provide your users with easy support, you need shrewdChat. It&#8217;s a discussion tool for WordPress web sites that helps visitors become contributors, and helps administrators provide customer service. shrewdChat Benefits Efficient Promotion: Build mini-lists of potential customers, and know their interests automatically. Efficient Administration: Easily track and [...]]]></description>
			<content:encoded><![CDATA[<div class="kctIntro">To encourage your visitors to contribute, and to provide your users with easy support, you need shrewdChat.</p>
<p>It&#8217;s a discussion tool for WordPress web sites that helps visitors become contributors, and helps administrators provide customer service.</p></div>
<h2>shrewdChat Benefits</h2>
<ul>
<li>Efficient Promotion: Build mini-lists of potential customers, and know their interests automatically.</li>
<li>Efficient Administration: Easily track and moderate contributions. Integrates with <a href="http://www.shrewdies.net/shrewdbar/" title="Dynamic Menu Creator">shrewdBar</a> for at-a-glance moderation queues.</li>
<li>Efficient Contribution: Uses native WordPress post and comment structure, so contributors do not have to learn separate forum methods.</li>
<li>Efficient Visitor Optimization: Simple navigation via familiar tagging and category constructs with added shrewdChat yakability.</li>
<li>Efficient SEO: Discussions easily organized to give maximum search engine exposure.</li>
<li>Efficient Browsing: User, topic, time-based, keyword and subject views ensure quick access to related and relevant discussions, especially with optional <a href="http://www.shrewdies.net/shrewdbar/" title="Accessible Page Menu">shrewdBar accessibility</a>.</li>
</ul>
<h2>shrewdChat Features</h2>
<ul>
<li>Easy installation with look &#8216;n&#8217; feel customization (skinning planned for future versions).</li>
<li>Easy to change forum lists.</li>
<li>Tidy install &#038; uninstall routines leave WordPress database clutter-free.</li>
<li>Excellent learning tool for Pods package developers.</li>
</ul>
<h2>Why Is It Shrewd</h2>
<p>Everything at shrewdies has to be shrewd, or on it&#8217;s way to shrewdness. The forum/discussion/conversation manager (call it what you will) is designed to make you more efficient as a webmaster, and give your visitors an efficient way to express opinions, share experiences and ask questions.</p>
<p>What&#8217;s another word for efficient? </p>
<blockquote cite="http://thesaurus.reference.com/browse/efficient"><dl>
<dt>Main Entry:</dt>
<dd>efficient</dd>
<dt>Part of Speech:</dt>
<dd>adjective</dd>
<dt>Definition:</dt>
<dd>adept, effective</dd>
<dt>Synonyms:</dt>
<dd>able, accomplished, active, adapted, adequate, apt, businesslike, capable, clever, competent, conducive, decisive, deft, dynamic, economic, economical, effectual, efficacious, energetic, equal to, experienced, expert, familiar with, fitted, good at, good for, handy, masterly, organized, potent, powerful, practiced, productive, proficient, profitable, qualified, ready, saving, <big><strong>shrewd</strong></big>, skilled, skillful, systematic, talented, tough, useful, valuable, virtuous, well-organized </dd>
</dl>
</blockquote>
<p>That&#8217;s why its called shrewdChat.</p>
<h2>shrewdChat RoadMap</h2>
<dl>
<dt>Version 1</dt>
<dd>Proof of concept. February 2010. Pods application to integrate posts and comments for live discussions and integrate them with related archived questions. Basis for Pods tutorials and gain developer feedback.</dd>
<dt>Version 2</dt>
<dd>Internal testing &#038; feature review. February &#8211; March 2010. Install to relevant shrewdies sites and gain visitor feedback.</dd>
<dt>Version 3</dt>
<dd>Public Release. Make available as WordPress plugin or Pods package, as determined by discussion of distribution methods and version control for Pods.</dd>
</dl>
<p>For questions or discussions, please see the WordPress Functionality Forum.</p>
<p><!--more--><div style="margin-left:-1em;"><table><tr><td><script type="text/javascript"><!--
google_ad_client = "pub-7512621270035949";
/* shrewdies 300x250, created 22/12/09 */
google_ad_slot = "4026195862";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></td><td>
<script type="text/javascript"><!--
ch_client = "GoutPal";
ch_type = "mpu";
ch_width = 300;
ch_height = 250;
ch_color_bg = "ffffff";
ch_color_border = "ffffff";
ch_color_title = "00009e";
ch_color_site_link = "00009e";
ch_non_contextual = 4;
ch_vertical ="premium";
ch_sid = "ShrewdiesReward";
ch_alternate_ad_url = "http://www.shrewdies.net/ad.html";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script>
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script></td></tr></table></div> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/shrewdchat/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>shrewdBar</title>
		<link>http://www.shrewdies.net/shrewdbar/</link>
		<comments>http://www.shrewdies.net/shrewdbar/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 11:47:12 +0000</pubDate>
		<dc:creator>Keith from shrewdies</dc:creator>
				<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.shrewdies.net/?page_id=486</guid>
		<description><![CDATA[To improve your visitor experience and ease the admin burden, you need shrewdBar. It&#8217;s a navigation tool for WordPress web sites that helps visitors find relevant content quickly, and helps administrators see the important tasks and click straight to them. shrewdBar Benefits Efficient Promotion: Attract traffic to your most rewarding content. Efficient Administration: Relevant key [...]]]></description>
			<content:encoded><![CDATA[<div class="kctIntro">To improve your visitor experience and ease the admin burden, you need shrewdBar.</p>
<p>It&#8217;s a navigation tool for WordPress web sites that helps visitors find relevant content quickly, and helps administrators see the important tasks and click straight to them.</p></div>
<h2>shrewdBar Benefits</h2>
<ul>
<li>Efficient Promotion: Attract traffic to your most rewarding content.</li>
<li>Efficient Administration: Relevant key tasks highlighted for admins, e.g. comments to moderate.</li>
<li>Efficient Contribution: Relevant key tasks for contributors, e.g. latest contributions, and live discussions list. Integrates with <a href="http://www.shrewdies.net/shrewdchat/" title="Simple WordPress Forum">shrewdChat</a> and easily extended to other forum/discussion formats.</li>
<li>Efficient Visitor Optimization: Relevant key information for visitors, e.g. bookmarked posts and top content lists.</li>
<li>Efficient SEO: Your key content gets the links that make search engines love you.</li>
<li>Efficient Browsing: Login, logout and key pages where you can find them quickly &#8211; fixed anywhere on the page or on the screen.</li>
</ul>
<h2>shrewdBar Features</h2>
<ul>
<li>Easy installation with look &#8216;n&#8217; feel customization (skinning planned for future versions).</li>
<li>Easy to change menu lists.</li>
<li>Tidy install &#038; uninstall routines leave WordPress database clutter-free.</li>
<li>Excellent learning tool for Pods package developers.</li>
</ul>
<h2>Why Is It Shrewd</h2>
<p>Everything at shrewdies has to be shrewd, or on it&#8217;s way to shrewdness. The toolbar / menubar / linksbar (call it what you will) is designed to make you more efficient as a webmaster, and give your visitors an efficient way to navigate your content.</p>
<p>What&#8217;s another word for efficient? </p>
<blockquote cite="http://thesaurus.reference.com/browse/efficient"><dl>
<dt>Main Entry:</dt>
<dd>efficient</dd>
<dt>Part of Speech:</dt>
<dd>adjective</dd>
<dt>Definition:</dt>
<dd>adept, effective</dd>
<dt>Synonyms:</dt>
<dd>able, accomplished, active, adapted, adequate, apt, businesslike, capable, clever, competent, conducive, decisive, deft, dynamic, economic, economical, effectual, efficacious, energetic, equal to, experienced, expert, familiar with, fitted, good at, good for, handy, masterly, organized, potent, powerful, practiced, productive, proficient, profitable, qualified, ready, saving, <big><strong>shrewd</strong></big>, skilled, skillful, systematic, talented, tough, useful, valuable, virtuous, well-organized </dd>
</dl>
</blockquote>
<p>That&#8217;s why its called shrewdBar.</p>
<h2>shrewdBar RoadMap</h2>
<dl>
<dt>Version 1</dt>
<dd>Proof of concept. January-February 2010. Pods application to copy &#038; paste into theme. Basis for Pods tutorials and gain developer feedback.</dd>
<dt>Version 2</dt>
<dd>Internal testing &#038; feature review. February &#8211; March 2010. Install to all shrewdies sites and gain visitor feedback.</dd>
<dt>Version 3</dt>
<dd>Public Release. Make available as WordPress plugin or Pods package, as determined by discussion of distribution methods and version control for Pods.</dd>
</dl>
<p>For questions or discussions, please see the WordPress Functionality Forum.</p>
<p><!--more--><div style="margin-left:-1em;"><table><tr><td><script type="text/javascript"><!--
google_ad_client = "pub-7512621270035949";
/* shrewdies 300x250, created 22/12/09 */
google_ad_slot = "4026195862";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></td><td>
<script type="text/javascript"><!--
ch_client = "GoutPal";
ch_type = "mpu";
ch_width = 300;
ch_height = 250;
ch_color_bg = "ffffff";
ch_color_border = "ffffff";
ch_color_title = "00009e";
ch_color_site_link = "00009e";
ch_non_contextual = 4;
ch_vertical ="premium";
ch_sid = "ShrewdiesReward";
ch_alternate_ad_url = "http://www.shrewdies.net/ad.html";
var ch_queries = new Array( );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//--></script>
<script  src="http://scripts.chitika.net/eminimalls/amm.js" type="text/javascript">
</script></td></tr></table></div> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/shrewdbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simpler Forum User Requirements</title>
		<link>http://www.shrewdies.net/445/simpler-forum-user-requirements/</link>
		<comments>http://www.shrewdies.net/445/simpler-forum-user-requirements/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 15:36:30 +0000</pubDate>
		<dc:creator>Shrewdy</dc:creator>
				<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.shrewdies.net/?p=445</guid>
		<description><![CDATA[Using the simpler forum format, I need: Either a better dashboard, or restrict it completely. Alternative way to create new posts, or autosave with current form. Edit post should not use admin area, but IE does not format Front Edit correctly. Working profile page. New/updated Topics on menu bar. Subscribe/watch topics Edit of original post [...]]]></description>
			<content:encoded><![CDATA[<p>Using the simpler forum format, I need:</p>
<ul>
<li>Either a better dashboard, or restrict it completely.</li>
<li>Alternative way to create new posts, or autosave with current<br />
form.</li>
<li>Edit post should not use admin area, but IE does not format Front Edit correctly.</li>
<li>Working profile page.</li>
<li>New/updated Topics on menu bar.</li>
<li>Subscribe/watch topics</li>
</ul>
<p>Edit of original post and comments should be either paragraph or full. Edit<br />
should be limited by activity, not by time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shrewdies.net/445/simpler-forum-user-requirements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
