<?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>Code Retard &#187; Blogging</title>
	<atom:link href="http://www.coderetard.com/category/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coderetard.com</link>
	<description>Anything Geeky Goes!</description>
	<lastBuildDate>Fri, 19 Mar 2010 06:31:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to widgetize your theme in Wordpress</title>
		<link>http://www.coderetard.com/2008/05/05/how-to-widgetize-your-theme-in-wordpress/</link>
		<comments>http://www.coderetard.com/2008/05/05/how-to-widgetize-your-theme-in-wordpress/#comments</comments>
		<pubDate>Mon, 05 May 2008 17:52:39 +0000</pubDate>
		<dc:creator>Son Riku</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.coderetard.com/?p=689</guid>
		<description><![CDATA[
		
		
		
		
Make a file called functions.php in your theme directory. (if you donâ€™t have one yet)

Add the following code and save the file:
if ( function_exists(â€™register_sidebarâ€™) )
register_sidebar(array(
â€˜before_widgetâ€™ => â€,
â€˜after_widgetâ€™ => â€,
â€˜before_titleâ€™ => â€˜
â€˜,
â€˜after_titleâ€™ => â€˜
â€˜,
));
?>

Then add the following anywhere you want to add dynamic widgets:


< ?php if ( !function_exists(â€™dynamic_sidebarâ€™)
&#124;&#124; !dynamic_sidebar() ) : ?>
< ?php endif; ?>

You can [...]


Related Posts:<ol><li><a href='http://www.coderetard.com/2008/03/21/switching-from-static-to-dynamic-linking/' rel='bookmark' title='Permanent Link: Switching from Static to Dynamic Linking'>Switching from Static to Dynamic Linking</a></li>
<li><a href='http://www.coderetard.com/2008/06/10/how-to-create-your-own-ps3-theme/' rel='bookmark' title='Permanent Link: How to Create Your Own PS3 Theme'>How to Create Your Own PS3 Theme</a></li>
<li><a href='http://www.coderetard.com/2008/05/02/column-ordering-not-showing-up-sharepoint-list/' rel='bookmark' title='Permanent Link: &#8220;Column ordering&#8221; not showing up SharePoint List'>&#8220;Column ordering&#8221; not showing up SharePoint List</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://www.coderetard.com/2008/05/05/how-to-widgetize-your-theme-in-wordpress/";
		digg_bgcolor = "#FFFFFF";
		digg_skin = "";
		digg_window = "";
		digg_title = "How+to+widgetize+your+theme+in+Wordpress";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "Make a file called functions.php in your theme directory. (if you donâ€™t have one yet)Add the following code and save the file:if ( function_exists(â€™register_sidebarâ€™) )register_sidebar(array(â€˜before_widgetâ€™ => â€,â€˜after_widgetâ€™...";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p><img src="http://www.coderetard.com/wp-content/uploads/2008/05/wordpresstitle1.jpg" alt="wordpresstitle1 How to widgetize your theme in Wordpress" title="wordpresstitle1" width="470" height="300" class="alignnone size-full wp-image-698" /></p>
<p>Make a file called functions.php in your theme directory. (if you donâ€™t have one yet)</p>
<blockquote><p>
Add the following code and save the file:</p>
<p>if ( function_exists(â€™register_sidebarâ€™) )<br />
register_sidebar(array(<br />
â€˜before_widgetâ€™ => â€,<br />
â€˜after_widgetâ€™ => â€,<br />
â€˜before_titleâ€™ => â€˜</p>
<p>â€˜,<br />
â€˜after_titleâ€™ => â€˜<br />
â€˜,<br />
));<br />
?>
</p></blockquote>
<p>Then add the following anywhere you want to add dynamic widgets:</p>
<p><span id="more-689"></span></p>
<blockquote><p>
< ?php if ( !function_exists(â€™dynamic_sidebarâ€™)<BR><br />
|| !dynamic_sidebar() ) : ?></p>
<p>< ?php endif; ?>
</p></blockquote>
<p>You can actually put your existing code within the if loop OR you can also put it before or after.</p>
<p>Since I didnâ€™t want to widgetize all existing stuff, I simply put it after all my existing code in my sidebar.</p>
<p>You can also create multiple dynamic widget locations simply by add numbers to the code like this:</p>
<blockquote><p>
< ?php if ( !function_exists(â€™dynamic_sidebarâ€™)<BR><br />
|| !dynamic_sidebar(1) ) : ?></p>
<p>< ?php endif; ?></p>
</blockquote>
<script type="text/javascript" class="owbutton" src="http://www.onlywire.com/btn/button_2" title="How to widgetize your theme in Wordpress" url="http://www.coderetard.com/2008/05/05/how-to-widgetize-your-theme-in-wordpress/"></script>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow" id="twitter"  target="_blank" href="http://twitter.com/home?status=How%20to%20widgetize%20your%20theme%20in%20Wordpress%20-%20http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F" title="Twitter"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="digg"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F&amp;title=How%20to%20widgetize%20your%20theme%20in%20Wordpress&amp;bodytext=%0D%0A%0D%0AMake%20a%20file%20called%20functions.php%20in%20your%20theme%20directory.%20%28if%20you%20don%C3%A2%E2%82%AC%E2%84%A2t%20have%20one%20yet%29%0D%0A%0D%0A%0D%0A%0D%0AAdd%20the%20following%20code%20and%20save%20the%20file%3A%0D%0Aif%20%28%20function_exists%28%C3%A2%E2%82%AC%E2%84%A2register_sidebar%C3%A2%E2%82%AC%E2%84%A2%29%20%29%0D%0Aregister_sidebar%28array%28%0D%0A%C3%A2%E2%82%AC%CB%9Cbefore_widget" title="Digg"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="del.icio.us"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F&amp;title=How%20to%20widgetize%20your%20theme%20in%20Wordpress&amp;notes=%0D%0A%0D%0AMake%20a%20file%20called%20functions.php%20in%20your%20theme%20directory.%20%28if%20you%20don%C3%A2%E2%82%AC%E2%84%A2t%20have%20one%20yet%29%0D%0A%0D%0A%0D%0A%0D%0AAdd%20the%20following%20code%20and%20save%20the%20file%3A%0D%0Aif%20%28%20function_exists%28%C3%A2%E2%82%AC%E2%84%A2register_sidebar%C3%A2%E2%82%AC%E2%84%A2%29%20%29%0D%0Aregister_sidebar%28array%28%0D%0A%C3%A2%E2%82%AC%CB%9Cbefore_widget" title="del.icio.us"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="propeller"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F" title="Propeller"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="reddit"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F&amp;title=How%20to%20widgetize%20your%20theme%20in%20Wordpress" title="Reddit"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="slashdot"  target="_blank" href="http://slashdot.org/bookmark.pl?title=How%20to%20widgetize%20your%20theme%20in%20Wordpress&amp;url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F" title="Slashdot"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="stumbleupon"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F&amp;title=How%20to%20widgetize%20your%20theme%20in%20Wordpress" title="StumbleUpon"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="technorati"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F" title="Technorati"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="mixx"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F&amp;title=How%20to%20widgetize%20your%20theme%20in%20Wordpress" title="Mixx"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="yahoobuzz"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F&amp;submitHeadline=How%20to%20widgetize%20your%20theme%20in%20Wordpress&amp;submitSummary=%0D%0A%0D%0AMake%20a%20file%20called%20functions.php%20in%20your%20theme%20directory.%20%28if%20you%20don%C3%A2%E2%82%AC%E2%84%A2t%20have%20one%20yet%29%0D%0A%0D%0A%0D%0A%0D%0AAdd%20the%20following%20code%20and%20save%20the%20file%3A%0D%0Aif%20%28%20function_exists%28%C3%A2%E2%82%AC%E2%84%A2register_sidebar%C3%A2%E2%82%AC%E2%84%A2%29%20%29%0D%0Aregister_sidebar%28array%28%0D%0A%C3%A2%E2%82%AC%CB%9Cbefore_widget&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="newsvine"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F&amp;h=How%20to%20widgetize%20your%20theme%20in%20Wordpress" title="NewsVine"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="facebook"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F&amp;t=How%20to%20widgetize%20your%20theme%20in%20Wordpress" title="Facebook"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" id="google"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.coderetard.com%2F2008%2F05%2F05%2Fhow-to-widgetize-your-theme-in-wordpress%2F&amp;title=How%20to%20widgetize%20your%20theme%20in%20Wordpress&amp;annotation=%0D%0A%0D%0AMake%20a%20file%20called%20functions.php%20in%20your%20theme%20directory.%20%28if%20you%20don%C3%A2%E2%82%AC%E2%84%A2t%20have%20one%20yet%29%0D%0A%0D%0A%0D%0A%0D%0AAdd%20the%20following%20code%20and%20save%20the%20file%3A%0D%0Aif%20%28%20function_exists%28%C3%A2%E2%82%AC%E2%84%A2register_sidebar%C3%A2%E2%82%AC%E2%84%A2%29%20%29%0D%0Aregister_sidebar%28array%28%0D%0A%C3%A2%E2%82%AC%CB%9Cbefore_widget" title="Google Bookmarks"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related Posts:<ol><li><a href='http://www.coderetard.com/2008/03/21/switching-from-static-to-dynamic-linking/' rel='bookmark' title='Permanent Link: Switching from Static to Dynamic Linking'>Switching from Static to Dynamic Linking</a></li>
<li><a href='http://www.coderetard.com/2008/06/10/how-to-create-your-own-ps3-theme/' rel='bookmark' title='Permanent Link: How to Create Your Own PS3 Theme'>How to Create Your Own PS3 Theme</a></li>
<li><a href='http://www.coderetard.com/2008/05/02/column-ordering-not-showing-up-sharepoint-list/' rel='bookmark' title='Permanent Link: &#8220;Column ordering&#8221; not showing up SharePoint List'>&#8220;Column ordering&#8221; not showing up SharePoint List</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.coderetard.com/2008/05/05/how-to-widgetize-your-theme-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging 101</title>
		<link>http://www.coderetard.com/2008/03/13/blogging-101/</link>
		<comments>http://www.coderetard.com/2008/03/13/blogging-101/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 15:40:55 +0000</pubDate>
		<dc:creator>adm_snackbar</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.coderetard.com/2008/03/13/blogging-101/</guid>
		<description><![CDATA[
		
		
		
		We&#8217;re all new to blogging here at coderetard.com, and I felt that a post covering a few blogging basics would help some of my fellow writers here as well as any other of our readers who may be interested. There are a few popular blogging frameworks out there, we use Wordpress, but the basics are [...]


Related Posts:<ol><li><a href='http://www.coderetard.com/2008/07/22/how-to-save-images-in-safari-to-iphone-on-20-firmware/' rel='bookmark' title='Permanent Link: How to Save Images in Safari to iPhone on 2.0 Firmware'>How to Save Images in Safari to iPhone on 2.0 Firmware</a></li>
<li><a href='http://www.coderetard.com/2009/06/01/mindys-daily-links-6109/' rel='bookmark' title='Permanent Link: Mindy&#8217;s Daily Links &#8211; 6/1/09'>Mindy&#8217;s Daily Links &#8211; 6/1/09</a></li>
<li><a href='http://www.coderetard.com/2008/03/17/using-ipod-with-multiple-comps/' rel='bookmark' title='Permanent Link: Using iPod with multiple Comps'>Using iPod with multiple Comps</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;">
		<script type="text/javascript">
		<!--
		digg_url = "http://www.coderetard.com/2008/03/13/blogging-101/";
		digg_bgcolor = "#FFFFFF";
		digg_skin = "";
		digg_window = "";
		digg_title = "Blogging+101";
		digg_media = "news";
		digg_topic = "";
		digg_bodytext = "We&#8217;re all new to blogging here at coderetard.com, and I felt that a post covering a few blogging basics would help some of my fellow writers here as well as any other of our readers who may be interested. There are a few popular blogging frameworks...";
		//-->
		</script>
		<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div><p>We&#8217;re all new to blogging here at <a href="http://www.coderetard.com">coderetard.com</a>, and I felt that a post covering a few blogging basics would help some of my fellow writers here as well as any other of our readers who may be interested. There are a few popular blogging frameworks out there, we use <a href="http://wordpress.org/">Wordpress</a>, but the basics are the same. Frameworks like Wordpress give us easy-to-use interfaces to write articles that get automatically posted to our main page. Older posts are automatically moved out of the main page as more articles get written. Wordpress also allows readers to comment on the articles. Each article can also be associated with tags or categories to group related articles together. Enough with the introduction, let&#8217;s move on to the basics.<span id="more-40"></span>
<p>
<strong>Images</strong><br />
A great way to make your article more interesting is to use images. Pictures are eye-catching and combined with a spiffy title can draw the reader into the rest of the article. Since it&#8217;s considered bad netiquette to link pictures on other people&#8217;s servers, any time you want to use a picture with your post, be sure you upload it to your website first. Screen space is a limited real estate, so keep image widths about 500 pixels or less. For example if the image was originally 700&#215;700, resize it to 500&#215;500 before you upload. To upload, use the simple interface below:<br />
<img src='http://www.coderetard.com/wp-content/uploads/2008/03/image_uplaod.jpg' alt='Image Upload' title="Blogging 101" />
<p>
Once the image is uploaded, you can insert it into your article through the &#8220;Browse&#8221; tab. Wordpress will automatically take you there. You get a nice thumbnail preview of the picture along with the option to send it to the editor you are writing the article on. You can choose to show the thumbnail or full size image or just the title if you don&#8217;t want the picture to show. The image can also become a link if so desired, to either the image itself, the article page, or nothing at all. For the images in this article, they are full sized unlinked images. Be sure to place your cursor in your editor window at the spot you want the image to be inserted.<br />
<img src='http://www.coderetard.com/wp-content/uploads/2008/03/image_send.jpg' alt='Image Send' title="Blogging 101" />
<p>
<strong>Power Editing (Code Mode)</strong><br />
If you want more control over how your content looks in your editor, consider using &#8220;Code&#8221; mode instead of the &#8220;Visual.&#8221; This mode offers a level of customization and tweaking that is simply not available in the simpler Visual mode. As it sounds, Visual means what you see is what you get, no need to look at the code behind the scenes. But if you&#8217;re familiar with HTML at all, you might want to give it a try. Let&#8217;s revisit images again, but this time as power editors. Suppose you upload a file that&#8217;s too large and you only realize this once it&#8217;s uploaded and previewed. Without much hassle, you could add &#8220;width&#8221; and height&#8221; attributes to the image to do a simple size tweak to make it fit. Play around in Code mode and familiarize yourself with the controls, you&#8217;ll be glad you did.
<p>
<strong>Embedding YouTube and Other Videos</strong><br />
YouTube and other video streaming services sometimes offer bloggers the ability to embed videos directly in their articles. When attempting to do so, you definitely definitely need to be using Code mode. If you check out any YouTube video, you will see a piece of HTML code (boxed in red in the screenshot below) that you can insert into any HTML page. Since Code view gives you the HTML code view of your article, inserting an video from YouTube is a simple matter of copying and pasting. However, you will need to be very careful when switching between Visual and Code modes. In Visual mode, you won&#8217;t be able to see the video. Furthermore, it will screw up your code. Whenever you switch to Visual mode, make sure to double check the Code mode code to see that the YouTube code does not get corrupted. Always save in the Code mode rather than Visual mode when working with embedded video links. I personally have disabled Visual mode altogether, since I fancy myself a power editor. This has eliminated the problem altogether for me.<br />
<img src='http://www.coderetard.com/wp-content/uploads/2008/03/youtube.jpg' alt='YouTube Code Link' title="Blogging 101" />
<p>
If you were curious what the YouTube video was in the screenshot was, check it out here! It&#8217;s Taurian Fontenette dunking.<br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/9MBlfjrZKfk&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/9MBlfjrZKfk&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<script type="text/javascript" class="owbutton" src="http://www.onlywire.com/btn/button_2" title="Blogging 101" url="http://www.coderetard.com/2008/03/13/blogging-101/"></script>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow" id="twitter"  target="_blank" href="http://twitter.com/home?status=Blogging%20101%20-%20http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F" title="Twitter"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="digg"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F&amp;title=Blogging%20101&amp;bodytext=We%27re%20all%20new%20to%20blogging%20here%20at%20coderetard.com%2C%20and%20I%20felt%20that%20a%20post%20covering%20a%20few%20blogging%20basics%20would%20help%20some%20of%20my%20fellow%20writers%20here%20as%20well%20as%20any%20other%20of%20our%20readers%20who%20may%20be%20interested.%20There%20are%20a%20few%20popular%20blogging%20frameworks%20o" title="Digg"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="del.icio.us"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F&amp;title=Blogging%20101&amp;notes=We%27re%20all%20new%20to%20blogging%20here%20at%20coderetard.com%2C%20and%20I%20felt%20that%20a%20post%20covering%20a%20few%20blogging%20basics%20would%20help%20some%20of%20my%20fellow%20writers%20here%20as%20well%20as%20any%20other%20of%20our%20readers%20who%20may%20be%20interested.%20There%20are%20a%20few%20popular%20blogging%20frameworks%20o" title="del.icio.us"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="propeller"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F" title="Propeller"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="reddit"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F&amp;title=Blogging%20101" title="Reddit"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="slashdot"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Blogging%20101&amp;url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F" title="Slashdot"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="stumbleupon"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F&amp;title=Blogging%20101" title="StumbleUpon"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="technorati"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F" title="Technorati"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="mixx"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F&amp;title=Blogging%20101" title="Mixx"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="yahoobuzz"  target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F&amp;submitHeadline=Blogging%20101&amp;submitSummary=We%27re%20all%20new%20to%20blogging%20here%20at%20coderetard.com%2C%20and%20I%20felt%20that%20a%20post%20covering%20a%20few%20blogging%20basics%20would%20help%20some%20of%20my%20fellow%20writers%20here%20as%20well%20as%20any%20other%20of%20our%20readers%20who%20may%20be%20interested.%20There%20are%20a%20few%20popular%20blogging%20frameworks%20o&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="newsvine"  target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F&amp;h=Blogging%20101" title="NewsVine"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" id="facebook"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F&amp;t=Blogging%20101" title="Facebook"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" id="google"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.coderetard.com%2F2008%2F03%2F13%2Fblogging-101%2F&amp;title=Blogging%20101&amp;annotation=We%27re%20all%20new%20to%20blogging%20here%20at%20coderetard.com%2C%20and%20I%20felt%20that%20a%20post%20covering%20a%20few%20blogging%20basics%20would%20help%20some%20of%20my%20fellow%20writers%20here%20as%20well%20as%20any%20other%20of%20our%20readers%20who%20may%20be%20interested.%20There%20are%20a%20few%20popular%20blogging%20frameworks%20o" title="Google Bookmarks"><img src="http://www.coderetard.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related Posts:<ol><li><a href='http://www.coderetard.com/2008/07/22/how-to-save-images-in-safari-to-iphone-on-20-firmware/' rel='bookmark' title='Permanent Link: How to Save Images in Safari to iPhone on 2.0 Firmware'>How to Save Images in Safari to iPhone on 2.0 Firmware</a></li>
<li><a href='http://www.coderetard.com/2009/06/01/mindys-daily-links-6109/' rel='bookmark' title='Permanent Link: Mindy&#8217;s Daily Links &#8211; 6/1/09'>Mindy&#8217;s Daily Links &#8211; 6/1/09</a></li>
<li><a href='http://www.coderetard.com/2008/03/17/using-ipod-with-multiple-comps/' rel='bookmark' title='Permanent Link: Using iPod with multiple Comps'>Using iPod with multiple Comps</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.coderetard.com/2008/03/13/blogging-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
