<?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>Shea Bunge</title>
	<atom:link href="http://bungeshea.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bungeshea.com</link>
	<description>Just another {teenage} WordPress developer</description>
	<lastBuildDate>Sat, 18 May 2013 05:26:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6-beta3</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>How to check if a shortcode has been registered in WordPress</title>
		<link>http://codex.wordpress.org/Function_Reference/has_shortcode</link>
		<comments>http://bungeshea.com/wordpress-shortcode-exists/#comments</comments>
		<pubDate>Sat, 18 May 2013 05:04:52 +0000</pubDate>
		<dc:creator>Shea Bunge</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[shortcodes]]></category>

		<guid isPermaLink="false">http://bungeshea.com/?p=11386</guid>
		<description><![CDATA[<p>With WordPress 3.6 comes a few new methods for dealing with shortcodes &#8211; like the new has_shortcode() function and the shortcode_atts_{shortcode} filter. However, one thing you can&#8217;t do with a simple function is checking if a shortcode has already been registered or not. There might be a few reasons why you might want to do this. [&#8230;]</p><p><hr/><small><a href="http://bungeshea.com/wordpress-shortcode-exists/">How to check if a shortcode has been registered in WordPress</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p>]]></description>
				<content:encoded><![CDATA[<p>With WordPress 3.6 comes a few new methods for dealing with shortcodes &#8211; like the new <a href="http://codex.wordpress.org/Function_Reference/has_shortcode"><code>has_shortcode()</code></a> function and the <a href="http://markjaquith.wordpress.com/2013/04/04/wordpress-36-shortcode-attribute-filter/"><code>shortcode_atts_{shortcode}</code></a> filter. However, one thing you can&#8217;t do with a simple function is checking if a shortcode has already been registered or not.</p>
<p>There might be a few reasons why you might want to do this. For example, you might be providing a fallback for a certain shortcode, and you don&#8217;t want to overwrite it. Whatever the reason, just drop this snippet into your plugin code:</p>
<script src="https://gist.github.com/2916977.js"></script><noscript><pre><code class="language-php php">&lt;?php

if ( ! function_exists( 'shortcode_exists' ) ) :
/**
 * Check if a shortcode is registered in WordPress.
 *
 * Examples: shortcode_exists( 'caption' ) - will return true.
 *           shortcode_exists( 'blah' )    - will return false.
 * 
 * @param bool|string $shortcode The name of the shortcode to check
 * @return bool Whether the shortcode exists or not
 */
function shortcode_exists( $shortcode = false ) {
	global $shortcode_tags;

	if ( ! $shortcode )
		return false;

	if ( array_key_exists( $shortcode, $shortcode_tags ) )
		return true;

	return false;
}
endif;</code></pre></noscript>
<p>… and then use the new <code>shortcode_exists( $shortcode_name )</code> function. Pass a shortcode name as the first parameter, and it will return true if it has been registered, or false if not.</p>
<p>The <code>function_exists()</code> wrapper around the code will make sure that your code doesn&#8217;t break if WordPress one day decides to include this function in core, or another plugin is using this code. You might also like to namespace the function or include it in a class.</p><p><hr/><small><a href="http://bungeshea.com/wordpress-shortcode-exists/">How to check if a shortcode has been registered in WordPress</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p><div class='yarpp-related-rss'>
<p>Possibly Related posts:</p><ol>
<li><a href='http://bungeshea.com/bookmarks-shortcode-updated-version-20/' rel='bookmark' title='Bookmarks Shortcode plugin updated to version 2.0!'>Bookmarks Shortcode plugin updated to version 2.0!</a></li>
<li><a href='http://bungeshea.com/plugins/bookmarks-shortcode/' rel='bookmark' title='Bookmarks Shortcode'>Bookmarks Shortcode</a></li>
<li><a href='http://bungeshea.com/what-wordpress-shortcodes-should-be-used-for/' rel='bookmark' title='What WordPress shortcodes should be used for'>What WordPress shortcodes should be used for</a></li>
</ol>
<img src='http://yarpp.org/pixels/9463b9bced7f3c7c89159f4bcb2277b0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://bungeshea.com/wordpress-shortcode-exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s only been three months since I released my p&#8230;</title>
		<link>http://bungeshea.com/stop-buddypress-user-spam/</link>
		<comments>http://bungeshea.com/11348/#comments</comments>
		<pubDate>Thu, 18 Apr 2013 01:07:49 +0000</pubDate>
		<dc:creator>Shea Bunge</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[BuddyPress Security Check]]></category>

		<guid isPermaLink="false">http://bungeshea.com/?p=11348</guid>
		<description><![CDATA[<p>It&#8217;s only been three months since I released my plugin BuddyPress Security Check, but it&#8217;s already been downloaded over 1000 times! And to think it started out as a simple fix to stop spammers on my own BuddyPress site&#8230;</p><p><hr/><small><a href="http://bungeshea.com/11348/">It&#8217;s only been three months since I released my p&#8230;</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p>]]></description>
				<content:encoded><![CDATA[<p style="text-align: left;">It&#8217;s only been three months since I <a title="Effectively stop spam users from registering on BuddyPress" href="http://bungeshea.com/stop-buddypress-user-spam/">released</a> my plugin <a title="BuddyPress Security Check" href="http://bungeshea.com/plugins/bp-security-check/">BuddyPress Security Check</a>, but it&#8217;s already been downloaded <a href="http://wordpress.org/extend/plugins/bp-security-check/stats/">over 1000 times</a>! And to think it started out as a simple fix to stop spammers on my own BuddyPress site&#8230;</p><p><hr/><small><a href="http://bungeshea.com/11348/">It&#8217;s only been three months since I released my p&#8230;</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p><div class='yarpp-related-rss'>
<p>Possibly Related posts:</p><ol>
<li><a href='http://bungeshea.com/stop-buddypress-user-spam/' rel='bookmark' title='Effectively stop spam users from registering on BuddyPress'>Effectively stop spam users from registering on BuddyPress</a></li>
<li><a href='http://bungeshea.com/plugins/bp-security-check/' rel='bookmark' title='BuddyPress Security Check'>BuddyPress Security Check</a></li>
<li><a href='http://bungeshea.com/personal-email-released/' rel='bookmark' title='Personal Email plugin released'>Personal Email plugin released</a></li>
</ol>
<img src='http://yarpp.org/pixels/9463b9bced7f3c7c89159f4bcb2277b0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://bungeshea.com/11348/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Explain xkcd bookmarklet</title>
		<link>http://bungeshea.com/tag/xkcd/</link>
		<comments>http://bungeshea.com/explain-xkcd-bookmarklet/#comments</comments>
		<pubDate>Mon, 01 Apr 2013 23:42:13 +0000</pubDate>
		<dc:creator>Shea Bunge</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http://bungeshea.com/?p=11252</guid>
		<description><![CDATA[<p>Quickly go to the explanation for an xkcd comic with this handy link in your bookmark bar</p><p><hr/><small><a href="http://bungeshea.com/explain-xkcd-bookmarklet/">Explain xkcd bookmarklet</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p>]]></description>
				<content:encoded><![CDATA[<p>As you <a title="xkcd" href="http://bungeshea.com/tag/xkcd/" target="_blank">may know</a>, I really love reading comics over at xkcd. However, some of the comic meanings can be a bit abstract, and it helps to verify your interpretation is correct.</p>
<p>One of the best services for doing so is <a title="explain xkcd" href="http://www.explainxkcd.com" target="_blank">explain xkcd</a>, a wiki where anyone can submit and contribute to explanations.  However, it becomes tedious reading multiple comics over at xckd.com and then looking up their explanations on explain xkcd.</p>
<p>I created a bookmarklet that sits in your bookmark bar or menu, and if you click it when you&#8217;re visiting a comic over at xkcd.com, it will take you to the explanation.</p>
<p>To use, create a new bookmark and paste the following code instead of the bookmark URL:</p>
<pre>javascript:location.href="http://www.explainxkcd.com/wiki/index.php?title="+window.location.pathname.replace(/^/|/$/g, "");</pre>
<p>Next time you&#8217;re visiting xkcd.com, click on the bookmark and you should be redirected directly to the explanation for the comic you&#8217;re viewing. Enjoy!</p><p><hr/><small><a href="http://bungeshea.com/explain-xkcd-bookmarklet/">Explain xkcd bookmarklet</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p><div class='yarpp-related-rss'>
<p>Possibly Related posts:</p><ol>
<li><a href='http://bungeshea.com/best-of-xkcd-for-programmers/' rel='bookmark' title='Best of xkcd for programmers'>Best of xkcd for programmers</a></li>
<li><a href='http://bungeshea.com/send-visitors-back-to-where-they-came-from/' rel='bookmark' title='How to send visitors back to where they came from'>How to send visitors back to where they came from</a></li>
<li><a href='http://bungeshea.com/hello-world/' rel='bookmark' title='Hello World!'>Hello World!</a></li>
</ol>
<img src='http://yarpp.org/pixels/9463b9bced7f3c7c89159f4bcb2277b0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://bungeshea.com/explain-xkcd-bookmarklet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What WordPress shortcodes should be used for</title>
		<link>http://wpdaily.co/shortcode-revolution/</link>
		<comments>http://bungeshea.com/what-wordpress-shortcodes-should-be-used-for/#comments</comments>
		<pubDate>Sun, 31 Mar 2013 02:01:20 +0000</pubDate>
		<dc:creator>Shea Bunge</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[shortcodes]]></category>

		<guid isPermaLink="false">http://bungeshea.com/?p=11299</guid>
		<description><![CDATA[<p>I know that many developers cringe on the mention of shortcodes, especially ones included in a theme. Shortcodes are being abused to the extreme, replacing the good old HTML code with a supposedly &#8220;user-friendly&#8221; syntax. And then, if the plugin or theme that handles the shortcodes is uninstalled, you get ugly shortcode tags floating around [&#8230;]</p><p><hr/><small><a href="http://bungeshea.com/what-wordpress-shortcodes-should-be-used-for/">What WordPress shortcodes should be used for</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p>]]></description>
				<content:encoded><![CDATA[<p>I know that <a title="A shortcode revolution - WP Daily" href="http://wpdaily.co/shortcode-revolution/">many</a> <a title="Dealing with shortcode madness - Justin Tadlock" href="http://justintadlock.com/archives/2011/05/02/dealing-with-shortcode-madness">developers</a> cringe on the mention of shortcodes, especially ones included in a theme. Shortcodes are being abused to the extreme, replacing the good old <acronym title="HyperText Markup Language">HTML</acronym> code with a supposedly &#8220;user-friendly&#8221; syntax. And then, if the plugin or theme that handles the shortcodes is uninstalled, you get ugly shortcode tags floating around in your content.</p>
<p>So when should shortcodes be used? My answer: never for static content. For example, if a shortcode named <code>[notice]</code> resulted in a <code>&lt;div id="notice"&gt;</code> which is then styled by the theme, then you&#8217;re doing it wrong. An example for a good use of shortcodes might be to output the current year. If we were making a copyright notice like:</p>
<pre>Copyright 2013 ACME, inc</pre>
<p>… we would need to go and update this notice every year. To resolve this, we can create a shortcode that uses <acronym title="PHP: Hypertext Preprocessor (recursive acronym)">PHP</acronym>&#8217;s <code>date() </code>function to output the current year:<code></code></p>
<pre>Copyright [current_year] ACME, inc</pre>
<p>This is an example of what shortcodes really should be used for: bringing dynamic content to static posts. Shortcodes shouldn&#8217;t be used by themes (except in rare cases), and definitely shouldn&#8217;t replace <acronym title="HyperText Markup Language">HTML</acronym> or <acronym title="Cascading Style Sheets">CSS</acronym> classes.</p><p><hr/><small><a href="http://bungeshea.com/what-wordpress-shortcodes-should-be-used-for/">What WordPress shortcodes should be used for</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p><div class='yarpp-related-rss'>
<p>Possibly Related posts:</p><ol>
<li><a href='http://bungeshea.com/wordpress-escaping-shortcodes/' rel='bookmark' title='Displaying shortcodes in WordPress'>Displaying shortcodes in WordPress</a></li>
<li><a href='http://bungeshea.com/bookmarks-shortcode-updated-version-20/' rel='bookmark' title='Bookmarks Shortcode plugin updated to version 2.0!'>Bookmarks Shortcode plugin updated to version 2.0!</a></li>
<li><a href='http://bungeshea.com/code-snippets-released/' rel='bookmark' title='Code Snippets plugin released'>Code Snippets plugin released</a></li>
</ol>
<img src='http://yarpp.org/pixels/9463b9bced7f3c7c89159f4bcb2277b0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://bungeshea.com/what-wordpress-shortcodes-should-be-used-for/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Panic! Google celebrates Douglas Adams&#8217; 61st Birthday</title>
		<link>http://www.google.com</link>
		<comments>http://bungeshea.com/douglas-adams-61st-birthday/#comments</comments>
		<pubDate>Mon, 11 Mar 2013 01:55:20 +0000</pubDate>
		<dc:creator>Shea Bunge</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://bungeshea.com/?p=11255</guid>
		<description><![CDATA[<p>Today the home page of the world&#8217;s biggest search engine is adorned with an interactive Google Doodle dedicated to Douglas Adam and his Hitchhiker&#8217;s Guide to the Galaxy. I personally love this trilogy of five books, and I was overjoyed to find this tribute to towels, babblefish, Vogons, and the number 42. Go and check it out!</p><p><hr/><small><a href="http://bungeshea.com/douglas-adams-61st-birthday/">Don&#8217;t Panic! Google celebrates Douglas Adams&#8217; 61st Birthday</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p>]]></description>
				<content:encoded><![CDATA[<p><span style="line-height: 1.8;">Today the home page of the</span><a style="line-height: 1.8;" title="Google" href="http://www.google.com" target="_blank"> world&#8217;s biggest search engine</a><span style="line-height: 1.8;"> is adorned with an interactive Google Doodle dedicated to Douglas</span><span style="line-height: 1.8;"> Adam and his </span><em style="line-height: 1.8;">Hitchhiker&#8217;s Guide to the Galaxy</em><span style="line-height: 1.8;">. I personally love this trilogy of five books, and I was overjoyed to find this tribute to towels, babblefish, Vogons, and the number 42. Go and <a title="Douglas Adams' 61st Birthday" href="http://www.google.com/doodles/douglas-adams-61st-birthday" target="_blank">check it out</a>!</span></p>
<p><a href="http://www.google.com/doodles/douglas-adams-61st-birthday"><img alt="Google's dedication to Douglas Adams" src="http://i2.wp.com/bungeshea.com/wp-content/uploads/google-h2g2.png?resize=611%2C212" data-recalc-dims="1" /></a></p><p><hr/><small><a href="http://bungeshea.com/douglas-adams-61st-birthday/">Don&#8217;t Panic! Google celebrates Douglas Adams&#8217; 61st Birthday</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p><div class='yarpp-related-rss'>
<p>Possibly Related posts:</p><ol>
<li><a href='http://bungeshea.com/easy-google-search-form/' rel='bookmark' title='Add a Google Search form to your website'>Add a Google Search form to your website</a></li>
<li><a href='http://bungeshea.com/15th-birthday/' rel='bookmark' title='Today, January 30th 2013, is my 15th birthday. I&#8217;m&#8230;'>Today, January 30th 2013, is my 15th birthday. I&#8217;m&#8230;</a></li>
<li><a href='http://bungeshea.com/managewp-chrome-app/' rel='bookmark' title='ManageWP Chrome App'>ManageWP Chrome App</a></li>
</ol>
<img src='http://yarpp.org/pixels/9463b9bced7f3c7c89159f4bcb2277b0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://bungeshea.com/douglas-adams-61st-birthday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twenty Thirteen</title>
		<link>http://twentythirteendemo.wordpress.com/</link>
		<comments>http://bungeshea.com/twenty-thirteen/#comments</comments>
		<pubDate>Sat, 23 Feb 2013 01:23:52 +0000</pubDate>
		<dc:creator>Shea Bunge</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Core]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://bungeshea.com/?p=11241</guid>
		<description><![CDATA[<p><a href="http://twentythirteendemo.wordpress.com/"><img src="http://s.wordpress.com/mshots/v1/http%3A%2F%2Ftwentythirteendemo.wordpress.com%2F?w=600" alt="" width="600" class="aligncenter" /></a>Twenty Thirteen will be the next WordPress default theme. It is scheduled to be bundled with WordPress 3.6. Twenty Thirteen boasts bright, bold and beautiful colors, perfect for a personal blogging site.</p><p><hr/><small><a href="http://bungeshea.com/twenty-thirteen/">Twenty Thirteen</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p>]]></description>
				<content:encoded><![CDATA[<a href="http://twentythirteendemo.wordpress.com/"><img src="http://s.wordpress.com/mshots/v1/http%3A%2F%2Ftwentythirteendemo.wordpress.com%2F?w=600" alt="" width="600" class="aligncenter" /></a><p><a title="Twenty Thirteen Demo" href="http://twentythirteendemo.wordpress.com/" target="_blank">Twenty Thirteen</a> will be the <a title="Introducing Twenty Thirteen" href="http://make.wordpress.org/core/2013/02/18/introducing-twenty-thirteen/" target="_blank">next WordPress default theme</a>. It is scheduled to be bundled with WordPress 3.6. Twenty Thirteen boasts bright, bold and beautiful colors, perfect for a personal blogging site.</p><p><hr/><small><a href="http://bungeshea.com/twenty-thirteen/">Twenty Thirteen</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p><div class='yarpp-related-rss'>
<p>Possibly Related posts:</p><ol>
<li><a href='http://bungeshea.com/plugins/personal-email/' rel='bookmark' title='Personal Email'>Personal Email</a></li>
<li><a href='http://bungeshea.com/personal-email-released/' rel='bookmark' title='Personal Email plugin released'>Personal Email plugin released</a></li>
<li><a href='http://bungeshea.com/easy-google-search-form/' rel='bookmark' title='Add a Google Search form to your website'>Add a Google Search form to your website</a></li>
</ol>
<img src='http://yarpp.org/pixels/9463b9bced7f3c7c89159f4bcb2277b0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://bungeshea.com/twenty-thirteen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Effectively stop spam users from registering on BuddyPress</title>
		<link>http://bungeshea.com/plugins/bp-security-check/</link>
		<comments>http://bungeshea.com/stop-buddypress-user-spam/#comments</comments>
		<pubDate>Fri, 15 Feb 2013 20:46:25 +0000</pubDate>
		<dc:creator>Shea Bunge</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[Plugin Development]]></category>

		<guid isPermaLink="false">http://bungeshea.com/?p=11226</guid>
		<description><![CDATA[<p>Help combat spam registrations by forcing users to answer a simple maths sum when registering</p><p><hr/><small><a href="http://bungeshea.com/stop-buddypress-user-spam/">Effectively stop spam users from registering on BuddyPress</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p>]]></description>
				<content:encoded><![CDATA[<p>I own a BuddyPress site, and so I know how many spam user registrations I get in a day. I had tried multiple antispam plugins, but the multitude are specific to stopping comment spam, not user spam.</p>
<p>I found one plugin which I liked the idea of: BuddyPress Humanity adds a question to the BuddyPress registration form which you need to set and change from the WordPress dashboard. I thought that the idea of adding a simple question or maths sum to the signup form was a great idea, but I didn&#8217;t want to go and change it every day.</p>
<p>That&#8217;s why I wrote <a title="BuddyPress Security Check" href="http://bungeshea.com/plugins/bp-security-check/">BuddyPress Security Check</a>, which requires users to answer simple maths sum adding or subtracting two randomly generated numbers between 0 and 10 inclusive. The code that handles adding the question to the form and validating it is based on that of BuddyPress Humanity, but the rest is completely rewritten.</p>
<p>Following my own personal practices and philosophy of writing plugins, BuddyPress Security Check has no options page, requires no configuration, and does not store any values in the database. Activate the plugin when it is needed; deactivate it when it is not.</p>
<p>I&#8217;ve used this plugin on my BuddyPress site since it was written  and have received virtually no spam users in that time. @magichew on Twitter reports similar success:</p>
<p>https://twitter.com/magichew/status/301599724346155008</p>
<p>So what are you waiting for? You can download<a title="BuddyPress Security Check" href="http://bungeshea.com/plugins/bp-security-check/"> BuddyPress Security Check</a> from <a title="BuddyPress Security Check WordPress Plugin" href="http://wordpress.org/extend/plugins/bp-security-check" target="_blank">WordPress.org</a>, or contribute to its development on <a title="BuddyPress Security Check on GitHub" href="https://github.com/bungeshea/bp-security-check" target="_blank">GitHub</a>.</p><p><hr/><small><a href="http://bungeshea.com/stop-buddypress-user-spam/">Effectively stop spam users from registering on BuddyPress</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p><div class='yarpp-related-rss'>
<p>Possibly Related posts:</p><ol>
<li><a href='http://bungeshea.com/plugins/bp-security-check/' rel='bookmark' title='BuddyPress Security Check'>BuddyPress Security Check</a></li>
<li><a href='http://bungeshea.com/personal-email-released/' rel='bookmark' title='Personal Email plugin released'>Personal Email plugin released</a></li>
<li><a href='http://bungeshea.com/remember-me-checked/' rel='bookmark' title='Automatically remember your WordPress login password'>Automatically remember your WordPress login password</a></li>
</ol>
<img src='http://yarpp.org/pixels/9463b9bced7f3c7c89159f4bcb2277b0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://bungeshea.com/stop-buddypress-user-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Today, January 30th 2013, is my 15th birthday. I&#8217;m&#8230;</title>
		<link>http://www.sony.com.au/product/sve14a27cg</link>
		<comments>http://bungeshea.com/15th-birthday/#comments</comments>
		<pubDate>Tue, 29 Jan 2013 23:33:17 +0000</pubDate>
		<dc:creator>Shea Bunge</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://bungeshea.com/?p=11215</guid>
		<description><![CDATA[<p>Today, January 30th 2013, is my 15th birthday. I&#8217;m planning on spending the day with my family and setting up my new laptop. This year you can hopefully look forward to more frequent plugin updates and blog posts thanks to my Sony VAIO E14A27CGH. It features some pretty nice specs such as: Intel Core i7-3632QL Processor / 2.20 GHz [&#8230;]</p><p><hr/><small><a href="http://bungeshea.com/15th-birthday/">Today, January 30th 2013, is my 15th birthday. I&#8217;m&#8230;</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p>]]></description>
				<content:encoded><![CDATA[<p>Today, January 30<sup>th</sup> 2013, is my 15<sup>th</sup> birthday. I&#8217;m planning on spending the day with my family and setting up my new laptop. This year you can hopefully look forward to more frequent plugin updates and blog posts thanks to my <a title="SVE14A27CGH" href="http://www.sony.com.au/product/sve14a27cg" target="_blank">Sony VAIO E14A27CGH</a>. It features some pretty nice specs such as:</p>
<ul>
<li><span style="line-height: 1.8;">Intel Core i7-3632QL Processor / 2.20 <acronym title="Gigahertz">GHz</acronym></span></li>
<li>Intel HD Graphics 4000 / AMD Radeon HD 7570M, 2GB</li>
<li>14&#8243; / 1600 X 900 display with multitouch</li>
<li>approx. 750 <acronym title="Gigabyte">GB</acronym> storage (hard disk drive)</li>
<li>4 <acronym title="Gigabyte">GB</acronym> RAM</li>
<li><acronym title="Digital Versatile Disc">DVD</acronym> and BluRay burner and reader</li>
<li>Windows 8 64-bit <acronym title="Operating System">OS</acronym></li>
</ul>
<p>&nbsp;</p><p><hr/><small><a href="http://bungeshea.com/15th-birthday/">Today, January 30th 2013, is my 15th birthday. I&#8217;m&#8230;</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p><div class='yarpp-related-rss'>
<p>Possibly Related posts:</p><ol>
<li><a href='http://bungeshea.com/resources/' rel='bookmark' title='Resources'>Resources</a></li>
<li><a href='http://bungeshea.com/jetpack-pocket-share-button/' rel='bookmark' title='How to add Pocket to WordPress.com Sharing'>How to add Pocket to WordPress.com Sharing</a></li>
<li><a href='http://bungeshea.com/happy-new-year-2013/' rel='bookmark' title='Happy New Year, everyone! Here&#8217;s to 2013!'>Happy New Year, everyone! Here&#8217;s to 2013!</a></li>
</ol>
<img src='http://yarpp.org/pixels/9463b9bced7f3c7c89159f4bcb2277b0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://bungeshea.com/15th-birthday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ten 1TB MaxCDN accounts to be won</title>
		<link>http://tommcfarlin.com/maxcdn-giveaway</link>
		<comments>http://bungeshea.com/tom-mcfarlin-maxcdn-giveaway/#comments</comments>
		<pubDate>Sun, 27 Jan 2013 06:21:32 +0000</pubDate>
		<dc:creator>Shea Bunge</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[giveaway]]></category>

		<guid isPermaLink="false">http://bungeshea.com/?p=11184</guid>
		<description><![CDATA[<p><a href="http://tommcfarlin.com/maxcdn-giveaway"><img src="http://s.wordpress.com/mshots/v1/http%3A%2F%2Ftommcfarlin.com%2Fmaxcdn-giveaway?w=600" alt="" width="600" class="aligncenter" /></a>I&#8217;m always looking for ways to speed up my sites. One of the best ways to do that is use a content delivery network (CDN). MaxCDN is one such content delivery service that hosts your static files to make downloading your website content fast and seamless, taking the load off your server completely! Tom McFarlin is hosting [&#8230;]</p><p><hr/><small><a href="http://bungeshea.com/tom-mcfarlin-maxcdn-giveaway/">Ten 1TB MaxCDN accounts to be won</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p>]]></description>
				<content:encoded><![CDATA[<a href="http://tommcfarlin.com/maxcdn-giveaway"><img src="http://s.wordpress.com/mshots/v1/http%3A%2F%2Ftommcfarlin.com%2Fmaxcdn-giveaway?w=600" alt="" width="600" class="aligncenter" /></a><p>I&#8217;m always looking for ways to speed up my sites. One of the best ways to do that is use a content delivery network (CDN). MaxCDN is one such content delivery service that hosts your static files to make downloading your website content fast and seamless, taking the load off your server completely!</p>
<p>Tom McFarlin is hosting a <a title="MaxCDN Giveaway: Ten 1TB Accounts!" href="http://tommcfarlin.com/maxcdn-giveaway/" target="_blank">giveaway</a> on his blog where there are ten (10!) 1TB accounts for MaxCDN to be won. The prize in drawn in 5 days, so hurry up and enter before it&#8217;s too late!</p><p><hr/><small><a href="http://bungeshea.com/tom-mcfarlin-maxcdn-giveaway/">Ten 1TB MaxCDN accounts to be won</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p><div class='yarpp-related-rss'>
<p>Possibly Related posts:</p><ol>
<li><a href='http://bungeshea.com/free-dropbox-space/' rel='bookmark' title='Get free Dropbox space!'>Get free Dropbox space!</a></li>
<li><a href='http://bungeshea.com/code-snippets-website/' rel='bookmark' title='Code Snippets has a new website'>Code Snippets has a new website</a></li>
<li><a href='http://bungeshea.com/dropbox-referrals-double-space/' rel='bookmark' title='Double space for Dropbox referrals'>Double space for Dropbox referrals</a></li>
</ol>
<img src='http://yarpp.org/pixels/9463b9bced7f3c7c89159f4bcb2277b0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://bungeshea.com/tom-mcfarlin-maxcdn-giveaway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy New Year, everyone! Here&#8217;s to 2013!</title>
		<link>http://bungeshea.com/happy-new-year-2013/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=happy-new-year-2013</link>
		<comments>http://bungeshea.com/happy-new-year-2013/#comments</comments>
		<pubDate>Tue, 01 Jan 2013 01:00:54 +0000</pubDate>
		<dc:creator>Shea Bunge</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://bungeshea.com/?p=11153</guid>
		<description><![CDATA[<p>Happy New Year, everyone! Here&#8217;s to 2013!</p><p><hr/><small><a href="http://bungeshea.com/happy-new-year-2013/">Happy New Year, everyone! Here&#8217;s to 2013!</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p>]]></description>
				<content:encoded><![CDATA[<p>Happy New Year, everyone! Here&#8217;s to 2013!</p><p><hr/><small><a href="http://bungeshea.com/happy-new-year-2013/">Happy New Year, everyone! Here&#8217;s to 2013!</a> is a post by <a href="http://bungeshea.com">Shea Bunge</a></small></p><div class='yarpp-related-rss'>
<p>Possibly Related posts:</p><ol>
<li><a href='http://bungeshea.com/happy-new-year-2012/' rel='bookmark' title='Happy New Year!

January 01, 2012 at 12:00AM'>Happy New Year!

January 01, 2012 at 12:00AM</a></li>
</ol>
<img src='http://yarpp.org/pixels/9463b9bced7f3c7c89159f4bcb2277b0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://bungeshea.com/happy-new-year-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
