<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>The State of Affairs &#187; Blogging</title> <atom:link href="http://stateofaffairs.info/archive/category/blogging/feed/" rel="self" type="application/rss+xml" /><link>http://stateofaffairs.info</link> <description></description> <lastBuildDate>Sat, 24 Jul 2010 13:51:23 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=abc</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Create Custom Edit Profile Menu in BuddyPress</title><link>http://stateofaffairs.info/archive/create-profile-menu-buddypress/</link> <comments>http://stateofaffairs.info/archive/create-profile-menu-buddypress/#comments</comments> <pubDate>Tue, 23 Jun 2009 11:22:02 +0000</pubDate> <dc:creator>Jeremy Winter</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[BuddyPress]]></category><guid
isPermaLink="false">http://stateofaffairs.info/?p=2749</guid> <description><![CDATA[Some of the best customizations to a site are built through thinking about the users of a particular site. When users log into BuddyPress they are automatically redirected to the homepage and are often left with a &#8220;what now&#8221; feeling. Users love to be able to customize their profile and blog easily, so it only [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><p>Some of the best customizations to a site are built through thinking about the users of a particular site. When users log into BuddyPress they are automatically redirected to the homepage and are often left with a &#8220;what now&#8221; feeling.</p><p>Users love to be able to customize their profile and blog easily, so it only makes sense to add easy to use navigation menus to logged in users landing pages. I created the following code to make it semi-easy to add a edit profile menu.</p><p>The menu has been tested with BP 1.0.1 and WPMU 2.7.1</p><p>We&#8217;ll look at each link individually first</p><div
class="plasticwarp"><h4>Edit Profile Link</h4><p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;profile/editc&quot;&gt;Edit Profile Info&lt;/a&gt;</p></div><div
class="plasticwarp"><h4>Change Avatar</h4><p> &lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;profile/change-avatar&quot;&gt;Change Avatar&lt;/a&gt;</p></div><div
class="plasticwarp"><h4>Change Theme</h4><p>&lt;a href=&quot;/wp-admin/themes.php&quot;&gt;Change Themes&lt;/a&gt;</p></div><div
class="plasticwarp"><h4>Create a Blog</h4><p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;blogs/create-a-blog&quot;&gt;Create a Blog&lt;/a&gt;</p></div><div
class="plasticwarp"><h4>Create a Group</h4><p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;groups/create&quot;&gt;Create a Group&lt;/a&gt;</p></div><div
class="plasticwarp"><h4>Change Email or Password</h4><p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;settings/general&quot;&gt;Change E-Mail or Password&lt;/a&gt;</p></div><div
class="plasticwarp"><h4>Notification Settings</h4><p>&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;settings/notifications&quot;&gt;Notifications Settings&lt;/a&gt;</p></div><div
class="plasticwarp"><h4>Blog Settings</h4><p>&lt;a href=&quot;/wp-admin/options-general.php&quot;&gt;Blog Settings&lt;/a&gt;</p></div><p>Here is the full code in a unordered list that is only displayed to logged in users.</p><div
class="plasticwarp"><p>&lt;?php if($user_ID) : ?&gt;</p><p>&lt;ul&gt;</p><p> &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;profile/editc&quot;&gt;Edit Profile Info&lt;/a&gt;&lt;/li&gt;</p><p> &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;profile/change-avatar&quot;&gt;Change Avatar&lt;/a&gt;&lt;/li&gt;</p><p> &lt;li&gt;&lt;a href=&quot;/wp-admin/themes.php&quot;&gt;Change Themes&lt;/a&gt;&lt;/li&gt;</p><p> &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;blogs/create-a-blog&quot;&gt;Create a Blog&lt;/a&gt;&lt;/li&gt;</p><p> &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;groups/create&quot;&gt;Create a Group&lt;/a&gt;&lt;/li&gt;</p><p> &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;settings/general&quot;&gt;Change E-Mail or Password&lt;/a&gt;&lt;/li&gt;</p><p> &lt;li&gt;&lt;a href=&quot;&lt;?php echo bp_loggedin_user_domain() ?&gt;settings/notifications&quot;&gt;Notifications Settings&lt;/a&gt;&lt;/li&gt;</p><p> &lt;li&gt;&lt;a href=&quot;/wp-admin/options-general.php&quot;&gt;Blog Settings&lt;/a&gt;&lt;/li&gt;</p><p> &lt;/ul&gt;</p><p> &lt;?php else : ?&gt;</p><p> &lt;?php endif; ?&gt;</p></div><p>Now you can wrap it in a div and style to your liking. If you would like to use it as a widget I recommend downloading the <a
href="http://www.samsarin.com/blog/2007/03/10/samsarin-php-widget/"rel="nofollow" target="_blank" >Samsarin PHP Widget</a>, which allows you to add PHP to certain widgets.</p><p>One last css design hint, the default BuddyPress widget title is styled as class=&#8221;widgettitle&#8221;</p><p
class="ttags">Technorati Tags: <a
href="http://technorati.com/tag/buddypress" class="ttags" target="_blank" rel="tag nofollow">buddypress</a>, <a
href="http://technorati.com/tag/buddypress+menu" class="ttags" target="_blank" rel="tag nofollow"> buddypress menu</a>, <a
href="http://technorati.com/tag/custom+buddypress+menu" class="ttags" target="_blank" rel="tag nofollow"> custom buddypress menu</a>, <a
href="http://technorati.com/tag/buddypress+profile+menu" class="ttags" target="_blank" rel="tag nofollow"> buddypress profile menu</a>, <a
href="http://technorati.com/tag/buddypress+code" class="ttags" target="_blank" rel="tag nofollow"> buddypress code</a>, <a
href="http://technorati.com/tag/create+menu+buddypress" class="ttags" target="_blank" rel="tag nofollow"> create menu buddypress</a>, <a
href="http://technorati.com/tag/buddypress+menu+code" class="ttags" target="_blank" rel="tag nofollow"> buddypress menu code</a>, <a
href="http://technorati.com/tag/buddypress+customization" class="ttags" target="_blank" rel="tag nofollow"> buddypress customization</a>, <a
href="http://technorati.com/tag/buddypress+theme+edit" class="ttags" target="_blank" rel="tag nofollow"> buddypress theme edit</a></p> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/create-profile-menu-buddypress/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>How to Display Code in WordPress Posts</title><link>http://stateofaffairs.info/archive/display-code-wordpress-post/</link> <comments>http://stateofaffairs.info/archive/display-code-wordpress-post/#comments</comments> <pubDate>Fri, 12 Jun 2009 06:18:58 +0000</pubDate> <dc:creator>Jeremy Winter</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://stateofaffairs.info/?p=2701</guid> <description><![CDATA[Adding code to your WordPress post can be easy and pain free&#8230; or it can be a huge hassle! I originally thought it would be easy enough to just add a new plugin that will allow code to be wrapped in a tag, which will output the exact text that was entered. I unfortunately found [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><p>Adding code to your WordPress post can be easy and pain free&#8230; or it can be a huge hassle! I originally thought it would be easy enough to just add a new plugin that will allow code to be wrapped in a tag, which will output the exact text that was entered.</p><p>I unfortunately found out that many of the plugins available for this need, don&#8217;t always seem to work correctly.</p><p>If you&#8217;re going to be constantly displaying code in almost every post, you may want to try out the plugins that are available. However, if you are just going to be displaying code every once in a while, I highly recommend you use the simple text converter HTMLizer by www.onlinetools.org.</p><h3>Display Code, The Easy Way</h3><p><img
src="http://stateofaffairs.info/wp-content/uploads/2009/06/htmlizer-225x102.png" alt="htmlizer 225x102 How to Display Code in WordPress Posts" title="htmlizer" width="225" height="102" class="alignnone size-medium wp-image-2736" />HTMLizer is a simple form that converts all of the special characters in your code into HTML standard code. Its as simple as copy, paste, cut, and then paste. Now that is much easier then spending 30 minutes trying to get a plugin to behave.</p><p><del
datetime="2010-06-14T22:37:54+00:00">Try out HTMLizer</del> and let me know how it works for you. HTMLizer no longer exist, but here is a site that also has an <a
href="http://web.forret.com/tools/html.asp"rel="nofollow" target="_blank" >html encoder</a>.</p><p
class="ttags">Technorati Tags: <a
href="http://technorati.com/tag/display+code+wordpress" class="ttags" target="_blank" rel="tag nofollow">display code wordpress</a>, <a
href="http://technorati.com/tag/display+code" class="ttags" target="_blank" rel="tag nofollow"> display code</a>, <a
href="http://technorati.com/tag/wordpress" class="ttags" target="_blank" rel="tag nofollow"> wordpress</a>, <a
href="http://technorati.com/tag/wordpress+post" class="ttags" target="_blank" rel="tag nofollow"> wordpress post</a>, <a
href="http://technorati.com/tag/convert+code" class="ttags" target="_blank" rel="tag nofollow"> convert code</a>, <a
href="http://technorati.com/tag/html+display+code" class="ttags" target="_blank" rel="tag nofollow"> html display code</a>, <a
href="http://technorati.com/tag/display+html" class="ttags" target="_blank" rel="tag nofollow"> display html</a>, <a
href="http://technorati.com/tag/display+code+block" class="ttags" target="_blank" rel="tag nofollow"> display code block</a>, <a
href="http://technorati.com/tag/code+on+website" class="ttags" target="_blank" rel="tag nofollow"> code on website</a>, <a
href="http://technorati.com/tag/display+source+code" class="ttags" target="_blank" rel="tag nofollow"> display source code</a>, <a
href="http://technorati.com/tag/how+to+display+code" class="ttags" target="_blank" rel="tag nofollow"> how to display code </a></p> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/display-code-wordpress-post/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>SEO Plugin for BuddyPress</title><link>http://stateofaffairs.info/archive/buddypress-seo-plugin/</link> <comments>http://stateofaffairs.info/archive/buddypress-seo-plugin/#comments</comments> <pubDate>Fri, 22 May 2009 20:46:42 +0000</pubDate> <dc:creator>Jeremy Winter</dc:creator> <category><![CDATA[Blogging SEO]]></category> <category><![CDATA[BuddyPress]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[buddypress]]></category> <category><![CDATA[buddypress plugin]]></category> <category><![CDATA[buddypress search engine optimization]]></category> <category><![CDATA[buddypress seo]]></category> <category><![CDATA[buddypress seo plugin]]></category> <category><![CDATA[duplicate content buddypress]]></category> <category><![CDATA[duplicate title tags buddypress]]></category> <category><![CDATA[how to seo buddypress]]></category> <category><![CDATA[seo]]></category> <category><![CDATA[seo for buddypress]]></category> <category><![CDATA[seo tips]]></category> <category><![CDATA[website optimization]]></category><guid
isPermaLink="false">http://stateofaffairs.info/?p=2695</guid> <description><![CDATA[BuddyPress is a new program that is in dire need of some SEO optimization. Luckily there is a new plugin that is going to take a lot of the duplicate content and title tag issues out of the picture for us BuddyPress site developers. Seo for BuddyPress: a great plugin The new plugin is called [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><p>BuddyPress is a new program that is in dire need of some SEO optimization. Luckily there is a new plugin that is going to take a lot of the duplicate content and title tag issues out of the picture for us BuddyPress site developers.</p><h2>Seo for BuddyPress: a great plugin</h2><p>The new plugin is called Seo for BuddyPress and was created by <a
href="http://wordpress.org/extend/plugins/profile/svenl77" rel="nofollow" target="_blank">Sven Lehnert</a>. With Seo for BuddyPress you can enter</p><ul><li>Titles</li><li>Descriptions</li><li>And Keywords</li></ul><p>for the following pages:</p><ul><li>Profile Pages -profile, activity, blogs, friends, groups, wire</li><li>Groups Pages &#8211; groups home, groups wire, groups forum, groups members</li><li>Events Pages from the bp-events plugin</li><li>Bb-dev Youtube &#038; Flickr pages</li><li>Your own buddypress pages, such as your profile</li></ul><p>Also the plugin comes with these great special tags to automaticly insert the user name, group name, or event name.</p><ul><li>%username%</li><li>%groupname%</li><li>%eventname%</li></ul><p>I highly recommend you install <a
href="http://wordpress.org/extend/plugins/seo-for-buddypress/" rel="nofollow" target="_blank">Seo for Buddypress</a> on your BuddyPress site. It has worked flawlessly for me and appears to be headed in the right direction for future updates.</p><p>The big G will love you for it.</p><p
class="ttags">Technorati Tags: <a
href="http://technorati.com/tag/buddypress+seo" class="ttags" target="_blank" rel="tag nofollow">buddypress seo</a>, <a
href="http://technorati.com/tag/buddypress" class="ttags" target="_blank" rel="tag nofollow"> buddypress</a>, <a
href="http://technorati.com/tag/website+optimization" class="ttags" target="_blank" rel="tag nofollow"> website optimization</a>, <a
href="http://technorati.com/tag/buddypress+search+engine+optimization" class="ttags" target="_blank" rel="tag nofollow"> buddypress search engine optimization</a>, <a
href="http://technorati.com/tag/seo+for+buddypress" class="ttags" target="_blank" rel="tag nofollow"> seo for buddypress</a>, <a
href="http://technorati.com/tag/how+to+seo+buddypress" class="ttags" target="_blank" rel="tag nofollow"> how to seo buddypress</a>, <a
href="http://technorati.com/tag/buddypress+plugin" class="ttags" target="_blank" rel="tag nofollow"> buddypress plugin</a>, <a
href="http://technorati.com/tag/buddypress+seo+plugin" class="ttags" target="_blank" rel="tag nofollow"> buddypress seo plugin</a>, <a
href="http://technorati.com/tag/seo+tips" class="ttags" target="_blank" rel="tag nofollow"> seo tips</a>, <a
href="http://technorati.com/tag/seo" class="ttags" target="_blank" rel="tag nofollow"> seo</a>, <a
href="http://technorati.com/tag/duplicate+content+buddypress" class="ttags" target="_blank" rel="tag nofollow"> duplicate content buddypress</a>, <a
href="http://technorati.com/tag/duplicate+title+tags+buddypress" class="ttags" target="_blank" rel="tag nofollow"> duplicate title tags buddypress</a></p> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/buddypress-seo-plugin/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>6 Ways to Celebrate Your Blogs First Birthday</title><link>http://stateofaffairs.info/archive/celebrate-blogs-birthday/</link> <comments>http://stateofaffairs.info/archive/celebrate-blogs-birthday/#comments</comments> <pubDate>Sat, 02 May 2009 03:30:32 +0000</pubDate> <dc:creator>Jeremy Winter</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[blogging tips]]></category> <category><![CDATA[celebrate]]></category> <category><![CDATA[coffee]]></category> <category><![CDATA[donate]]></category> <category><![CDATA[tips on blogging]]></category><guid
isPermaLink="false">http://stateofaffairs.info/?p=2451</guid> <description><![CDATA[The State of Affairs is officially 1 year old this month and I was thinking of ways that we could celebrate all of the work, time, and commitment we have put into growing this site. At first I couldn&#8217;t think of anything symbolic enough worth noting, but after a while I was able to come [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><p>The State of Affairs is officially 1 year old this month and I was thinking of ways that we could celebrate all of the work, time, and commitment we have put into growing this site. At first I couldn&#8217;t think of anything symbolic enough worth noting, but after a while I was able to come up with this list of things you can do to celebrate your blogs first birthday!</p><ol><li>Donate to all of the plugin developers that have written the plugins you use on your blog.</li><li>Take a week off from blogging. Celebrate with a break from the usual.</li><li>Buy each writer a cup of coffee. If you&#8217;re the only writer buy your self one and a croissant to go with it!</li><li>Go for a hike. If you don&#8217;t want to take a whole week off from blogging, at lease take one day off and go enjoy some sun.</li><li>Redesign your site or just do some rearranging. Nothing like a nice spring cleaning for a blog.</li><li>Congratulate yourself on &#8220;sticking-with-it&#8221; for the past year. Honestly, most blogs don&#8217;t make it a year and the fact that yours did signifies your commitment and determination.</li></ol><p>Once you are done celebrating, your next focus should be on where you want your blog to go over the next year. There is nothing wrong with planning ahead and getting a early start right?</p><p
class="ttags">Technorati Tags: <a
href="http://technorati.com/tag/blogging" class="ttags" target="_blank" rel="tag nofollow">blogging</a>, <a
href="http://technorati.com/tag/celebrate" class="ttags" target="_blank" rel="tag nofollow"> celebrate</a>, <a
href="http://technorati.com/tag/donate" class="ttags" target="_blank" rel="tag nofollow"> donate</a>, <a
href="http://technorati.com/tag/coffee" class="ttags" target="_blank" rel="tag nofollow"> coffee</a>, <a
href="http://technorati.com/tag/blogging+tips" class="ttags" target="_blank" rel="tag nofollow"> blogging tips</a>, <a
href="http://technorati.com/tag/tips+on+blogging" class="ttags" target="_blank" rel="tag nofollow"> tips on blogging</a></p> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/celebrate-blogs-birthday/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Best Free Note Taking Software for Blogging</title><link>http://stateofaffairs.info/archive/freeware-note-taking-program/</link> <comments>http://stateofaffairs.info/archive/freeware-note-taking-program/#comments</comments> <pubDate>Fri, 17 Apr 2009 06:59:05 +0000</pubDate> <dc:creator>Jeremy Winter</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[best free]]></category> <category><![CDATA[best free note taking]]></category> <category><![CDATA[free]]></category> <category><![CDATA[free note program]]></category> <category><![CDATA[free note software]]></category> <category><![CDATA[free note taking]]></category> <category><![CDATA[freeware]]></category> <category><![CDATA[keepnote]]></category> <category><![CDATA[note]]></category> <category><![CDATA[note software]]></category> <category><![CDATA[note taking]]></category> <category><![CDATA[notes software]]></category> <category><![CDATA[notetaking]]></category> <category><![CDATA[program]]></category> <category><![CDATA[scribefire]]></category> <category><![CDATA[software]]></category> <category><![CDATA[software free]]></category> <category><![CDATA[taking]]></category> <category><![CDATA[taking software for]]></category> <category><![CDATA[useful note taking software]]></category><guid
isPermaLink="false">http://stateofaffairs.info/?p=2420</guid> <description><![CDATA[Coming up with ideas and topics for new articles can sometimes be very easy, while at other times can be quite demanding. I find the best way to brainstorm for topics is by simply browsing the web for articles that haven&#8217;t been covered yet. The problem with this approach is that it&#8217;s not very goal-driven. [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><p>Coming up with ideas and topics for new articles can sometimes be very easy, while at other times can be quite demanding. I find the best way to brainstorm for topics is by simply browsing the web for articles that haven&#8217;t been covered yet.</p><p>The problem with this approach is that it&#8217;s not very goal-driven. I am simply looking for a topic, not looking to write on one yet. This leads to many ideas popping up then simply fading away as I start twittering, checking email, and viewing stats or whatever else distracts my attention.</p><p>This is why I suggest every blogger starts keeping notes to help grow their blog and bring focus to writing content. Even if you only note down 4 or 5 words a day, such as &#8220;comparison of muscle memory techniques&#8221;, you will still be putting time into creating content.</p><h2>Recommended Note Taking Software</h2><p>There are two programs that are free and readily available I recommend for note taking. One is a self contained program called KeepNote and the other is a Firefox browser addon called ScribeFire.</p><div
class="plasticwarp"><h3>Simple Note Taking With KeepNote</h3><p>KeepNote is a freeware software application for Linux, Windows, and MacOS X with a simple and light design. I found KeepNote to be easy to use and I was very happy that it is still being constantly improved and upgraded (the latest release came out 4 days before posting this article).</p><p>It does what it&#8217;s supposed to, it&#8217;s free, and it&#8217;s ultra light weight. Perfect for note taking.</p><p><a
href="http://media.stateofaffairs.info/wp-content/uploads/2009/04/keepnotes.png" rel="nofollow" ><img
src="http://media.stateofaffairs.info/wp-content/uploads/2009/04/keepnotes-500x387.png" alt="keepnotes 500x387 Best Free Note Taking Software for Blogging" title="keepnotes" width="500" height="387" class="alignnone size-large wp-image-2431" /></a></p><h4>Features</h4><ol><li>Rich-text formatting</li><li>Hierarchical organization for notes</li><li>Full-text search</li><li>Integrated screenshot</li><li>Integrated backup and restore</li><li>Spell checking (via gtkspell)</li><li>Auto-saving</li><li>Built-in backup and restore (archive to zip files)</li><li>Cross-platform (Linux, Windows, MacOS X)</li></ol><p><a
href="http://rasm.ods.org/keepnote/"style="padding:5px;color:#FFFFFF;" class="buttonstyle" rel="nofollow" target="_blank" >More Info On KeepNote</a></p></div><div
class="plasticwarp"><h3>Integrating Note Taking Into Your Browser with ScribeFire</h3><p>If you are a user of Firefox, you may have a better experience using ScribeFire for your note taking needs. ScribeFire is actually a Firefox addon that allows posting to your blog without having to access your blog.</p><p>ScribeFire is a very powerful program, but I have had mixed results with using the &#8220;publish to blog&#8221; options, so I simply use it for my note taking needs. A program that describes itself as a full-featured blog editor that integrates into your browser just has to be cool, right?</p><p><a
href="http://media.stateofaffairs.info/wp-content/uploads/2009/04/scribefire.jpg" rel="nofollow" ><img
src="http://media.stateofaffairs.info/wp-content/uploads/2009/04/scribefire-500x299.jpg" alt="scribefire 500x299 Best Free Note Taking Software for Blogging" title="scribefire" width="500" height="299" class="alignnone size-large wp-image-2432" /></a></p><h4>Features</h4><ol><li>Rich-text formatting</li><li>Publish directly to your blog</li><li>Live preview options</li><li>Html editing</li><li>Spell checking</li><li>Auto-saving</li><li>Save directly to notes</li><li>Firefox addon</li></ol><p><a
href="https://addons.mozilla.org/en-US/firefox/addon/1730"style="padding:5px;color:#FFFFFF;" class="buttonstyle" rel="nofollow" target="_blank" >More Info On ScribeFire</a></div><p
class="ttags">Technorati Tags: <a
href="http://technorati.com/tag/free+note+software" class="ttags" target="_blank" rel="tag nofollow">free note software</a>, <a
href="http://technorati.com/tag/freeware" class="ttags" target="_blank" rel="tag nofollow"> freeware</a>, <a
href="http://technorati.com/tag/note" class="ttags" target="_blank" rel="tag nofollow"> note</a>, <a
href="http://technorati.com/tag/taking" class="ttags" target="_blank" rel="tag nofollow"> taking</a>, <a
href="http://technorati.com/tag/software" class="ttags" target="_blank" rel="tag nofollow"> software</a>, <a
href="http://technorati.com/tag/program" class="ttags" target="_blank" rel="tag nofollow"> program</a>, <a
href="http://technorati.com/tag/note+taking" class="ttags" target="_blank" rel="tag nofollow"> note taking</a>, <a
href="http://technorati.com/tag/free+note+taking" class="ttags" target="_blank" rel="tag nofollow"> free note taking</a>, <a
href="http://technorati.com/tag/free+note+software" class="ttags" target="_blank" rel="tag nofollow"> free note software</a>, <a
href="http://technorati.com/tag/free+note+program" class="ttags" target="_blank" rel="tag nofollow"> free note program</a>, <a
href="http://technorati.com/tag/best+free" class="ttags" target="_blank" rel="tag nofollow"> best free</a>, <a
href="http://technorati.com/tag/free" class="ttags" target="_blank" rel="tag nofollow"> free</a>, <a
href="http://technorati.com/tag/best+free+note+taking" class="ttags" target="_blank" rel="tag nofollow"> best free note taking</a>, <a
href="http://technorati.com/tag/note+software" class="ttags" target="_blank" rel="tag nofollow"> note software</a>, <a
href="http://technorati.com/tag/taking+software+for" class="ttags" target="_blank" rel="tag nofollow"> taking software for</a>, <a
href="http://technorati.com/tag/scribefire" class="ttags" target="_blank" rel="tag nofollow"> scribefire</a>, <a
href="http://technorati.com/tag/keepnote" class="ttags" target="_blank" rel="tag nofollow"> keepnote</a>, <a
href="http://technorati.com/tag/useful+note+taking+software" class="ttags" target="_blank" rel="tag nofollow"> useful note taking software</a>, <a
href="http://technorati.com/tag/notetaking" class="ttags" target="_blank" rel="tag nofollow"> notetaking</a>, <a
href="http://technorati.com/tag/notes+software" class="ttags" target="_blank" rel="tag nofollow"> notes software</a>, <a
href="http://technorati.com/tag/software+free" class="ttags" target="_blank" rel="tag nofollow"> software free</a></p> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/freeware-note-taking-program/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to Create Custom Links in BuddyPress</title><link>http://stateofaffairs.info/archive/create-custom-links-buddypress/</link> <comments>http://stateofaffairs.info/archive/create-custom-links-buddypress/#comments</comments> <pubDate>Mon, 06 Apr 2009 02:52:27 +0000</pubDate> <dc:creator>Jeremy Winter</dc:creator> <category><![CDATA[BuddyPress]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[buddypress]]></category> <category><![CDATA[buddypress code]]></category> <category><![CDATA[buddypress examples]]></category> <category><![CDATA[buddypress profile]]></category> <category><![CDATA[buddypress themes]]></category> <category><![CDATA[Building Link]]></category> <category><![CDATA[construct this URL]]></category> <category><![CDATA[custom links]]></category> <category><![CDATA[links buddypress]]></category> <category><![CDATA[username]]></category> <category><![CDATA[using buddypress]]></category> <category><![CDATA[variable user name]]></category><guid
isPermaLink="false">http://stateofaffairs.info/?p=2320</guid> <description><![CDATA[Recently I have been thinking of ways to add greater usability to my BuddyPress project ebodia.com. One thing I noticed is that when new users sign up, they are redirected to the homepage. I felt this left new users with a &#8220;What now?&#8221; feeling, so I thought it would be a good idea to add [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><p>Recently I have been thinking of ways to add greater usability to my BuddyPress project ebodia.com. One thing I noticed is that when new users sign up, they are redirected to the homepage.</p><p>I felt this left new users with a &#8220;What now?&#8221; feeling, so I thought it would be a good idea to add a second navigation bar with some helpful links to the buddypress home theme. The Main roadblock I found was how to create custom links for users that were logged in. I did some digging and was able to find a snippet of code that will automatically parse the correct user id into the link.</p><h3>How is this useful?</h3><p>A few of the direct links I added for recently logged in users was -</p><ul><li>A link to their Profile</li><li>A link to their list of blogs</li><li>A link to their BuddyPress account settings</li></ul><p>I felt this would be useful for new users that weren&#8217;t sure where to start.</p><h3>Code for Custom Links in BuddyPress</h3><p>This code will work for most custom links you will need, but not all of them. For example, I was not able to create a link to a users blog directly, so instead I created a link to their list of blogs.</p><p>Here is the Old example code to add a link to the logged in users friend activity. The new version is after this one.</p><p><del
datetime="2009-06-23T10:03:18+00:00">&lt;a href=&quot;&lt;?php global $bp; echo bp_core_get_userurl($bp-&gt;loggedin_user-&gt;id); ?&gt;activity/my-friends&quot;&gt;Your Friends Activity&lt;/a&gt; </del><br
/> <strong><br
/> Update: </strong>Andy P. suggested a alternative to the code above. Instead of declaring the bp global variable and requesting the logged in user id, why not just use a handy template tag? This code will output the same thing as the code above, but uses a very useful BuddyPress template tag.</p><div
class="plasticwarp"> &lt;a href=â€&lt;?php echo bp_loggedin_user_domain() ?&gt;activity/my-friendsâ€&gt;Your Friends Activity&lt;/a&gt;</div><p>The above code will output this link</p><p><code>http://yousite.com/members/logged-in-user-id/activity/my-friends</code></p><p>If you take a look at the links in your own profile you should be able to see the small bit of code you will need to customize the links. <strong>Activity/myfriends</strong> can be replaced in the original code by <strong>profile/public</strong> to create a link to the logged in users profile, for example.</p><p>I want to thank <a
href="http://buddypress.org/developers/burtadsit/"rel="nofollow" target="_blank" >Burtadsit</a> for providing the original code used in the above example and Andy P. for providing the template tag AND BuddyPress.</p><p
class="ttags">Technorati Tags: <a
href="http://technorati.com/tag/buddypress+examples" class="ttags" target="_blank" rel="tag nofollow">buddypress examples</a>, <a
href="http://technorati.com/tag/buddypress" class="ttags" target="_blank" rel="tag nofollow"> buddypress</a>, <a
href="http://technorati.com/tag/buddypress+code" class="ttags" target="_blank" rel="tag nofollow"> buddypress code</a>, <a
href="http://technorati.com/tag/custom+links" class="ttags" target="_blank" rel="tag nofollow"> custom links</a>, <a
href="http://technorati.com/tag/links+buddypress" class="ttags" target="_blank" rel="tag nofollow"> links buddypress</a>, <a
href="http://technorati.com/tag/buddypress+profile" class="ttags" target="_blank" rel="tag nofollow"> buddypress profile</a>, <a
href="http://technorati.com/tag/using+buddypress" class="ttags" target="_blank" rel="tag nofollow"> using buddypress</a>, <a
href="http://technorati.com/tag/Building+Link" class="ttags" target="_blank" rel="tag nofollow"> Building Link</a>, <a
href="http://technorati.com/tag/construct+this+URL" class="ttags" target="_blank" rel="tag nofollow"> construct this URL</a>, <a
href="http://technorati.com/tag/variable+user+name" class="ttags" target="_blank" rel="tag nofollow"> variable user name</a>, <a
href="http://technorati.com/tag/username" class="ttags" target="_blank" rel="tag nofollow"> username</a>, <a
href="http://technorati.com/tag/buddypress+themes" class="ttags" target="_blank" rel="tag nofollow"> buddypress themes</a></p> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/create-custom-links-buddypress/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Add an Online Store to your WordPress Blog</title><link>http://stateofaffairs.info/archive/add-store-wordpress-blog/</link> <comments>http://stateofaffairs.info/archive/add-store-wordpress-blog/#comments</comments> <pubDate>Mon, 16 Feb 2009 18:38:56 +0000</pubDate> <dc:creator>Jeremy Winter</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[add store]]></category> <category><![CDATA[community support]]></category> <category><![CDATA[Free Online]]></category> <category><![CDATA[monetize blog]]></category> <category><![CDATA[online store]]></category> <category><![CDATA[online store blog]]></category> <category><![CDATA[online store php]]></category> <category><![CDATA[online store theme]]></category> <category><![CDATA[online store wordpress]]></category> <category><![CDATA[open source]]></category> <category><![CDATA[OS-Commerce]]></category> <category><![CDATA[Roya Khosravi]]></category> <category><![CDATA[VS]]></category> <category><![CDATA[wordpress blog]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[WP E-Commerce]]></category> <category><![CDATA[WP-osCommerce]]></category> <category><![CDATA[WP.osC]]></category><guid
isPermaLink="false">http://stateofaffairs.info/?p=1944</guid> <description><![CDATA[The most popular way to add an online store to your WordPress blog is to use the WP E-Commerce plugin. However, recently (Nov 08&#8242;) Roya Khosravi has released a new plugin called WP-osCommerce (WP.osC) that should be replacing the old standard very soon. So what is the difference between these two plugins? Quite a bit [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><p>The most popular way to add an online store to your WordPress blog is to use the WP E-Commerce plugin. However, recently (Nov 08&#8242;) Roya Khosravi has released a new plugin called WP-osCommerce (WP.osC) that should be replacing the old standard very soon.</p><p>So what is the difference between these two plugins? Quite a bit actually. These two plugins have very little to do with each other except they both allow you to easily add a store to your WordPress blog.</p><div
class="clearboth"></div><h2>WP E-Commerce plugin VS. WP-osCommerce (WP.osC)</h2><p>WP E-Commerce plugin is a proprietary software that was built with a goal of getting the user to upgrade the plugin for a fee, while the WP-osCommerce (WP.osC) plugin was built using a completely free and open-source software called OS-Commerce.</p><p>WP E-Commerce is buggy and has no community support behind it. If something doesn&#8217;t work right with your site, where do you go for help? I feel the lack of support and buggy nature of WP E-Commerce rules it out as a reliable means to create an online store.</p><h3>Stay Open Source!</h3><p>OS-Commerce is a highly popular and free software to create an online store. The WP-osCommerce (WP.osC) plugin allows you to integrate OS-Commerce directly into your blog and keep the WordPress theme system. The online community support is huge for OS-Commerce and even WP.osC has started a new and growing community for support.</p><h4>Where do I get WP-osCommerce (WP.osC)</h4><p>You can download WP.osC from <a
href="http://wposc.com/"rel="nofollow" target="_blank" >http://wposc.com/</a>. There are many helpful tutorials on how to set up WP.osC as well as a community forum to help you get started there.</p><p
class="ttags">Technorati Tags: <a
href="http://technorati.com/tag/WP-osCommerce" class="ttags" target="_blank" rel="tag nofollow">WP-osCommerce</a>, <a
href="http://technorati.com/tag/WP.osC" class="ttags" target="_blank" rel="tag nofollow"> WP.osC</a>, <a
href="http://technorati.com/tag/OS-Commerce" class="ttags" target="_blank" rel="tag nofollow"> OS-Commerce</a>, <a
href="http://technorati.com/tag/WP+E-Commerce" class="ttags" target="_blank" rel="tag nofollow"> WP E-Commerce</a>, <a
href="http://technorati.com/tag/online+store" class="ttags" target="_blank" rel="tag nofollow"> online store</a>, <a
href="http://technorati.com/tag/wordpress+blog" class="ttags" target="_blank" rel="tag nofollow"> wordpress blog</a>, <a
href="http://technorati.com/tag/add+store" class="ttags" target="_blank" rel="tag nofollow"> add store</a>, <a
href="http://technorati.com/tag/online+store+blog" class="ttags" target="_blank" rel="tag nofollow"> online store blog</a>, <a
href="http://technorati.com/tag/online+store+wordpress" class="ttags" target="_blank" rel="tag nofollow"> online store wordpress</a>, <a
href="http://technorati.com/tag/wordpress+plugin" class="ttags" target="_blank" rel="tag nofollow"> wordpress plugin</a>, <a
href="http://technorati.com/tag/monetize+blog" class="ttags" target="_blank" rel="tag nofollow"> monetize blog</a>, <a
href="http://technorati.com/tag/open+source" class="ttags" target="_blank" rel="tag nofollow"> open source</a>, <a
href="http://technorati.com/tag/community+support" class="ttags" target="_blank" rel="tag nofollow"> community support</a>, <a
href="http://technorati.com/tag/Roya+Khosravi" class="ttags" target="_blank" rel="tag nofollow"> Roya Khosravi</a>, <a
href="http://technorati.com/tag/VS" class="ttags" target="_blank" rel="tag nofollow"> VS</a>, <a
href="http://technorati.com/tag/online+store+theme" class="ttags" target="_blank" rel="tag nofollow"> online store theme</a>, <a
href="http://technorati.com/tag/online+store+php" class="ttags" target="_blank" rel="tag nofollow"> online store php</a>, <a
href="http://technorati.com/tag/Free+Online" class="ttags" target="_blank" rel="tag nofollow"> Free Online</a></p> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/add-store-wordpress-blog/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>9 Great Niche Topics for Your New Blog</title><link>http://stateofaffairs.info/archive/niche-topic-your-blog/</link> <comments>http://stateofaffairs.info/archive/niche-topic-your-blog/#comments</comments> <pubDate>Mon, 02 Feb 2009 05:49:13 +0000</pubDate> <dc:creator>Jeremy Winter</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[academics]]></category> <category><![CDATA[advise]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[blog topic]]></category> <category><![CDATA[blogging advise]]></category> <category><![CDATA[comic blog]]></category> <category><![CDATA[comic strip]]></category> <category><![CDATA[cooking]]></category> <category><![CDATA[craft]]></category> <category><![CDATA[internet niche marketing]]></category> <category><![CDATA[mobile]]></category> <category><![CDATA[Music]]></category> <category><![CDATA[niche blogs]]></category> <category><![CDATA[niche sites]]></category> <category><![CDATA[niche strategies]]></category> <category><![CDATA[niche strategy]]></category> <category><![CDATA[niche topics]]></category> <category><![CDATA[topic]]></category><guid
isPermaLink="false">http://stateofaffairs.info/?p=1891</guid> <description><![CDATA[If you are looking to or have already started a new blog and are struggling to find a niche topic to stick to, then this list might spark some ideas for you to ponder. Topics are in no particular order. 1. Start a Comic Strip and Blog it Comic blogs with original content are rare [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><p>If you are looking to or have already started a new blog and are struggling to find a niche topic to stick to, then this list might spark some ideas for you to ponder. Topics are in no particular order.</p><div
class="clearboth"></div><div
class="plasticwarp"><h3>1. Start a Comic Strip and Blog it</h3><p>Comic blogs with original content are rare and hard to find. If you like to draw and have every thought about writing for a comic book, why not start your own comic book and blog about it? I have seen some really great comic blogs, but yet still, there are not many out there.</p><h3>2. Mobile blog</h3><p>Mobile devices may be still gaining momentum, but rest assured the train is moving. The web is moving towards mobile devices and will continue to in the future. Starting a niche topic blog before the topic becomes too popular is always a great idea.</p><h3>3. Blog Your Paintings and Drawings</h3><p>Many bloggers start out writing and posting about their passions. If you love to create art, then a blog can be a great way to show it to the world. You could also write tips and give insight on your particular style.</p><h3>4. Tutorial Blog</h3><p>There may be hundreds of thousands of tutorials on the web right now, but there could always be more. Tutorials will never go out of style and will always have a topic to cover. Every time a new program, or product, or site comes out, there are very few tutorials on them, which means there are plenty of things to write about.</p><h3>5. Travel blog</h3><p>The idea is to travel the worldcountrystate, do amazing things, and blog about it the entire time. Not the typical travel blog format.</p><h3>6. Music blog</h3><p>This is a fairly wide niche that can cover multiple topics. You could have a few niches or stick to one niche such as new music, audio hardware, musical instruments, or musical theory.</p><h3>7. Cooking Blog</h3><p>Are you a great cook with a selection of great recipes? Many people, including myself, are not the greatest cooks in the world, which means we need your advice!</p><h3>8. Craft or Trade blog</h3><p>If you have a special craft or trade then you might want to try sharing it with the world. There are many copycat blogs out there, but not many on specific crafts or trades.</p><h3>9. Academics blog</h3><p>If you&#8217;re a full time student, professor, or administrator, then your knowledge in the field of academics can be a great topic to share. You could give strategic advice on writing skills, essay writing, and research topics for example.</p></div><p><strong>What ideas do you have for your new blog?</strong></p><p
class="ttags">Technorati Tags: <a
href="http://technorati.com/tag/niche+strategies" class="ttags" target="_blank" rel="tag nofollow">niche strategies</a>, <a
href="http://technorati.com/tag/blog+topic" class="ttags" target="_blank" rel="tag nofollow"> blog topic</a>, <a
href="http://technorati.com/tag/blog" class="ttags" target="_blank" rel="tag nofollow"> blog</a>, <a
href="http://technorati.com/tag/topic" class="ttags" target="_blank" rel="tag nofollow"> topic</a>, <a
href="http://technorati.com/tag/music" class="ttags" target="_blank" rel="tag nofollow"> music</a>, <a
href="http://technorati.com/tag/cooking" class="ttags" target="_blank" rel="tag nofollow"> cooking</a>, <a
href="http://technorati.com/tag/craft" class="ttags" target="_blank" rel="tag nofollow"> craft</a>, <a
href="http://technorati.com/tag/academics" class="ttags" target="_blank" rel="tag nofollow"> academics</a>, <a
href="http://technorati.com/tag/mobile" class="ttags" target="_blank" rel="tag nofollow"> mobile</a>, <a
href="http://technorati.com/tag/comic+blog" class="ttags" target="_blank" rel="tag nofollow"> comic blog</a>, <a
href="http://technorati.com/tag/comic+strip" class="ttags" target="_blank" rel="tag nofollow"> comic strip</a>, <a
href="http://technorati.com/tag/advise" class="ttags" target="_blank" rel="tag nofollow"> advise</a>, <a
href="http://technorati.com/tag/blogging+advise" class="ttags" target="_blank" rel="tag nofollow"> blogging advise</a>, <a
href="http://technorati.com/tag/internet+niche+marketing" class="ttags" target="_blank" rel="tag nofollow"> internet niche marketing</a>, <a
href="http://technorati.com/tag/niche+topics" class="ttags" target="_blank" rel="tag nofollow"> niche topics</a>, <a
href="http://technorati.com/tag/niche+blogs" class="ttags" target="_blank" rel="tag nofollow"> niche blogs</a>, <a
href="http://technorati.com/tag/niche+strategy" class="ttags" target="_blank" rel="tag nofollow"> niche strategy</a>, <a
href="http://technorati.com/tag/niche+sites" class="ttags" target="_blank" rel="tag nofollow"> niche sites</a></p> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/niche-topic-your-blog/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Create a Google Gadget for your WordPress Blog</title><link>http://stateofaffairs.info/archive/create-google-gadget-wordpress/</link> <comments>http://stateofaffairs.info/archive/create-google-gadget-wordpress/#comments</comments> <pubDate>Wed, 28 Jan 2009 07:22:36 +0000</pubDate> <dc:creator>Jeremy Winter</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[create gadget]]></category> <category><![CDATA[create google gadget]]></category> <category><![CDATA[custom gadget]]></category> <category><![CDATA[custom google gadget]]></category> <category><![CDATA[developer]]></category> <category><![CDATA[gadget example]]></category> <category><![CDATA[gadget how to]]></category> <category><![CDATA[google gadget]]></category> <category><![CDATA[help]]></category> <category><![CDATA[homepage gadgets]]></category> <category><![CDATA[igoogle]]></category> <category><![CDATA[mygoogle]]></category> <category><![CDATA[show google]]></category> <category><![CDATA[submit gadget]]></category> <category><![CDATA[submit google gadget]]></category> <category><![CDATA[website]]></category> <category><![CDATA[wordpress plugin]]></category> <category><![CDATA[write google gadget]]></category><guid
isPermaLink="false">http://stateofaffairs.info/?p=1824</guid> <description><![CDATA[Roya Khosravi has just released a great, new plugin for WordPress that makes creating and distributing your blogs custom Google Gadget incredibly simple. WP-iGoogle creates a dynamic Google Gadget that displays your latest post by date with your Gravatar image. You can try The State of Affairs Gadget right now to see how it looks [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><p><a
href="http://www.royakhosravi.com/"rel="nofollow" target="_blank" >Roya Khosravi</a> has just released a great, new plugin for WordPress that makes creating and distributing your blogs custom Google Gadget incredibly simple. <a
href="http://wordpress.org/extend/plugins/wp-igoogle/"rel="nofollow" target="_blank" >WP-iGoogle</a> creates a dynamic Google Gadget that displays your latest post by date with your Gravatar image.</p><p>You can <a
href="http://fusion.google.com/add?source=atgs&#038;moduleurl=http://stateofaffairs.info/wp-content/plugins/wp-igoogle/igoogle.php?t=.xml"rel="nofollow" target="_blank" >try The State of Affairs Gadget</a> right now to see how it looks on your iGoogle page. Pretty slick huh? You can also add your custom Gadget to your webpage or offer the option for your readers to add it to their webpage.</p><p>Roya even made it easy to <a
href="http://www.google.com/ig/submit"rel="nofollow" target="_blank" >submit your custom Google Gadget</a> to the <a
href="http://www.google.com/ig/directory?synd=open&#038;cat=all"rel="nofollow" target="_blank" >Google Gadget Directory</a> by automatically generating the link for you on the plugins settings page.</p><p>So far I give this plugin 5 stars and have found it incredibly easy to use. Drop me a comment below or send me a email if your interested in knowing how to edit the plugin so you can submit a screenshot of your Gadget to the Google Directory.</p><p
class="ttags">Technorati Tags: <a
href="http://technorati.com/tag/google+gadget" class="ttags" target="_blank" rel="tag nofollow">google gadget</a>, <a
href="http://technorati.com/tag/custom+gadget" class="ttags" target="_blank" rel="tag nofollow"> custom gadget</a>, <a
href="http://technorati.com/tag/wordpress+plugin" class="ttags" target="_blank" rel="tag nofollow"> wordpress plugin</a>, <a
href="http://technorati.com/tag/gadget+example" class="ttags" target="_blank" rel="tag nofollow"> gadget example</a>, <a
href="http://technorati.com/tag/website" class="ttags" target="_blank" rel="tag nofollow"> website</a>, <a
href="http://technorati.com/tag/custom+google+gadget" class="ttags" target="_blank" rel="tag nofollow"> custom google gadget</a>, <a
href="http://technorati.com/tag/submit+gadget" class="ttags" target="_blank" rel="tag nofollow"> submit gadget</a>, <a
href="http://technorati.com/tag/submit+google+gadget" class="ttags" target="_blank" rel="tag nofollow"> submit google gadget</a>, <a
href="http://technorati.com/tag/create+gadget" class="ttags" target="_blank" rel="tag nofollow"> create gadget</a>, <a
href="http://technorati.com/tag/create+google+gadget" class="ttags" target="_blank" rel="tag nofollow"> create google gadget</a>, <a
href="http://technorati.com/tag/help" class="ttags" target="_blank" rel="tag nofollow"> help</a>, <a
href="http://technorati.com/tag/developer" class="ttags" target="_blank" rel="tag nofollow"> developer</a>, <a
href="http://technorati.com/tag/show+google" class="ttags" target="_blank" rel="tag nofollow"> show google</a>, <a
href="http://technorati.com/tag/website" class="ttags" target="_blank" rel="tag nofollow"> website</a>, <a
href="http://technorati.com/tag/write+google+gadget" class="ttags" target="_blank" rel="tag nofollow"> write google gadget</a>, <a
href="http://technorati.com/tag/mygoogle" class="ttags" target="_blank" rel="tag nofollow"> mygoogle</a>, <a
href="http://technorati.com/tag/igoogle" class="ttags" target="_blank" rel="tag nofollow"> igoogle</a>, <a
href="http://technorati.com/tag/gadget+how+to" class="ttags" target="_blank" rel="tag nofollow"> gadget how to</a>, <a
href="http://technorati.com/tag/homepage+gadgets" class="ttags" target="_blank" rel="tag nofollow"> homepage gadgets</a></p> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/create-google-gadget-wordpress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Growing a Blog with Persistence</title><link>http://stateofaffairs.info/archive/growing-blog-persistence/</link> <comments>http://stateofaffairs.info/archive/growing-blog-persistence/#comments</comments> <pubDate>Sat, 17 Jan 2009 07:59:21 +0000</pubDate> <dc:creator>Jeremy Winter</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Blogging Tips]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[blog stats]]></category> <category><![CDATA[bloggers]]></category> <category><![CDATA[blogoshpere]]></category> <category><![CDATA[branding]]></category> <category><![CDATA[branding blog]]></category> <category><![CDATA[content]]></category> <category><![CDATA[growing]]></category> <category><![CDATA[growing a blog]]></category> <category><![CDATA[niche]]></category> <category><![CDATA[niche blogs]]></category> <category><![CDATA[niche topics]]></category> <category><![CDATA[persistence]]></category> <category><![CDATA[search community]]></category> <category><![CDATA[search engines]]></category> <category><![CDATA[self improvement]]></category> <category><![CDATA[stats]]></category> <category><![CDATA[successful bloggers]]></category> <category><![CDATA[unique visitors]]></category> <category><![CDATA[writer]]></category> <category><![CDATA[writing]]></category><guid
isPermaLink="false">http://stateofaffairs.info/?p=1750</guid> <description><![CDATA[State of Affairs is now 9 months old and I can say it has been quite a journey. This is Rachel&#8217;s and mine first blog and we have learned quite a bit about the blogoshpere and the search community. Most bloggers base their success on the number of visitors they receive to their site, but [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p><p>State of Affairs is now 9 months old and I can say it has been quite a journey. This is Rachel&#8217;s and mine first blog and we have learned quite a bit about the blogoshpere and the search community. Most bloggers base their success on the number of visitors they receive to their site, but this can be a misleading statistic on the value of your blog to your readers. That is why I recommend growing a blog with persistence rather than growing it with visitors.</p><div
class="clearboth"></div><h4>Setting the roots</h4><p>When your blog is just a wee little site, it is important to set the roots for your blog early. This can be done by branding your site and picking your niche early. Consistency can be a great way to show that you are dedicated to your blog and are happy with its growth.</p><h4>Pruning the leafs</h4><p>While you continue to grow your blog, adding fresh content helps to keep your blog healthy looking for search engines. Another thing that I like to do from time to time is to prune older post by adding unique css styling, changing the layout, and updating the material with relevant comments. That way when your post hits Google and the other search engines, it will look it&#8217;s best and still be relevant.</p><h4>Persistence, persistence, and persistence</h4><p>You definitely don&#8217;t want to give up on your blog, even if your number of visitors should fall. Here is a look at the stats for The State of Affairs over the last 6 months;</p><ul><li
class="widget_categories" style="padding:10px;width:135px;float:left;"><h4>July 2008</h4><p>- 285 Unique visits<br
/> - 500 Page-views</p><p> * 12.73%<br
/> Direct Traffic</p><p> * 86.14%<br
/> Referring Sites</p><p> * 1.12%<br
/> Search Engines</li><li
class="widget_categories" style="padding:10px;width:135px;float:left;"><h4>August 2008</h4><p>- 1,140 Unique visits<br
/> - 2,058 page-views</p><p> * 9.12%<br
/> Direct Traffic</p><p> * 86.23%<br
/> Referring Sites</p><p> * 4.65%<br
/> Search Engines</li><li
class="widget_categories" style="padding:10px;width:135px;float:left;"><h4>September 2008</h4><p>- 893 Unique visits<br
/> - 1,613 Page-views</p><p> * 9.18%<br
/> Direct Traffic</p><p> * 63.27%<br
/> Referring Sites</p><p> * 27.55%<br
/> Search Engines</li><li
class="widget_categories" style="padding:10px;width:135px;float:left;"><h4>October 2008</h4><p>- 2,404 Unique visits<br
/> - 3,719 Page-views</p><p> * 5.45%<br
/> Direct Traffic</p><p> * 36.77%<br
/> Referring Sites</p><p> * 57.78%<br
/> Search Engines</li><li
class="widget_categories" style="padding:10px;width:135px;float:left;"><h4>November 2008</h4><p>- 5,018 Unique visits<br
/> - 7,961 Page-views</p><p> * 7.09%<br
/> Direct Traffic</p><p> * 34.85%<br
/> Referring Sites</p><p> * 58.05%<br
/> Search Engines</li><li
class="widget_categories" style="padding:10px;width:135px;float:left;"><h4>December 2008</h4><p>- 7,190 Unique visits<br
/> - 9,770 Page-views</p><p>* 5.38%<br
/> Direct Traffic</p><p>* 13.31%<br
/> Referring Sites</p><p>* 81.31%<br
/> Search Engines</li></ul><p>Notice that in August, we had 1,140 visitors and in September, we had 893 visitors. If we had accepted this as a indication of failure, we would have never made it to 10,000 page views by the end of the year.</p><p>Also another thing to note is, the percentage of visitors from search engines going from virtually nothing in July, to a reasonable 27% in September. It takes anywhere from 3-6 months to start getting organic search engine visitors, so don&#8217;t be discouraged early on by the small gains.</p><h4>Watch it grow</h4><p>Remember, there is no miracle grow for your blog. Just pain old content to feed it. This is something I think all successful bloggers have come to terms with in regards to visitors. In a way you have to step back from your blog and let it be a blog; let yourself be a writer and just watch it grow.</p><p
class="ttags">Technorati Tags: <a
href="http://technorati.com/tag/growing" class="ttags" target="_blank" rel="tag nofollow">growing</a>, <a
href="http://technorati.com/tag/blog" class="ttags" target="_blank" rel="tag nofollow"> blog</a>, <a
href="http://technorati.com/tag/persistence" class="ttags" target="_blank" rel="tag nofollow"> persistence</a>, <a
href="http://technorati.com/tag/stats" class="ttags" target="_blank" rel="tag nofollow"> stats</a>, <a
href="http://technorati.com/tag/blog+stats" class="ttags" target="_blank" rel="tag nofollow"> blog stats</a>, <a
href="http://technorati.com/tag/blogoshpere" class="ttags" target="_blank" rel="tag nofollow"> blogoshpere</a>, <a
href="http://technorati.com/tag/bloggers" class="ttags" target="_blank" rel="tag nofollow"> bloggers</a>, <a
href="http://technorati.com/tag/search+community" class="ttags" target="_blank" rel="tag nofollow"> search community</a>, <a
href="http://technorati.com/tag/unique+visitors" class="ttags" target="_blank" rel="tag nofollow"> unique visitors</a>, <a
href="http://technorati.com/tag/growing+a+blog" class="ttags" target="_blank" rel="tag nofollow"> growing a blog</a>, <a
href="http://technorati.com/tag/self+improvement" class="ttags" target="_blank" rel="tag nofollow"> self improvement</a>, <a
href="http://technorati.com/tag/branding" class="ttags" target="_blank" rel="tag nofollow"> branding</a>, <a
href="http://technorati.com/tag/branding+blog" class="ttags" target="_blank" rel="tag nofollow"> branding blog</a>, <a
href="http://technorati.com/tag/niche" class="ttags" target="_blank" rel="tag nofollow"> niche</a>, <a
href="http://technorati.com/tag/niche+blogs" class="ttags" target="_blank" rel="tag nofollow"> niche blogs</a>, <a
href="http://technorati.com/tag/niche+topics" class="ttags" target="_blank" rel="tag nofollow"> niche topics</a>, <a
href="http://technorati.com/tag/search+engines" class="ttags" target="_blank" rel="tag nofollow"> search engines</a>, <a
href="http://technorati.com/tag/content" class="ttags" target="_blank" rel="tag nofollow"> content</a>, <a
href="http://technorati.com/tag/writing" class="ttags" target="_blank" rel="tag nofollow"> writing</a>, <a
href="http://technorati.com/tag/successful+bloggers" class="ttags" target="_blank" rel="tag nofollow"> successful bloggers</a>, <a
href="http://technorati.com/tag/writer" class="ttags" target="_blank" rel="tag nofollow"> writer</a></p> <!-- google_ad_section_end -->]]></content:encoded> <wfw:commentRss>http://stateofaffairs.info/archive/growing-blog-persistence/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: stateofaffairs.info @ 2010-09-08 09:59:05 by W3 Total Cache -->