<?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>A Life Without Compunction &#187; Babblings</title>
	<atom:link href="http://www.djohnson.info/category/babblings/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.djohnson.info</link>
	<description>Thoughts by Dan on a myriad of topics.</description>
	<lastBuildDate>Mon, 26 Dec 2011 06:16:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Merry Christmas</title>
		<link>http://www.djohnson.info/merry-christmas-2/</link>
		<comments>http://www.djohnson.info/merry-christmas-2/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 06:15:28 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Babblings]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Spotlight]]></category>
		<category><![CDATA[spotlight]]></category>
		<category><![CDATA[tragic]]></category>

		<guid isPermaLink="false">http://www.djohnson.info/?p=419</guid>
		<description><![CDATA[Hope you all are having a great Christmas, in the middle of your festivities take a moment to think of the children of the world who didn&#8217;t have the &#8220;turkey and fixings&#8221; this year.]]></description>
			<content:encoded><![CDATA[<p>Hope you all are having a great Christmas, in the middle of your festivities take a moment to think of the children of the world who didn&#8217;t have the &#8220;turkey and fixings&#8221; this year.</p>
<p><iframe width="299" height="152" src="http://www.youtube.com/embed/SonHxSX80Fw" frameborder="0" allowfullscreen></iframe></p>]]></content:encoded>
			<wfw:commentRss>http://www.djohnson.info/merry-christmas-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you need a great yet simple PHP REST  &#8230;</title>
		<link>http://www.djohnson.info/if-you-need-a-great-yet-simple-php-rest/</link>
		<comments>http://www.djohnson.info/if-you-need-a-great-yet-simple-php-rest/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 22:26:13 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Babblings]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.djohnson.info/if-you-need-a-great-yet-simple-php-rest/</guid>
		<description><![CDATA[If you need a great yet simple PHP REST Server class look no further than: https://github.com/deepeshmalviya/simple-rest Well made and dead simple to use.]]></description>
			<content:encoded><![CDATA[<p>If you need a great yet simple PHP REST Server class look no further than:</p>
<p><a href="https://github.com/deepeshmalviya/simple-rest" rel="nofollow">https://github.com/deepeshmalviya/simple-rest</a></p>
<p>Well made and dead simple to use.</p>]]></content:encoded>
			<wfw:commentRss>http://www.djohnson.info/if-you-need-a-great-yet-simple-php-rest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Here&#8217;s a dandy function I banged out to &#8230;</title>
		<link>http://www.djohnson.info/heres-a-dandy-function-i-banged-out-to/</link>
		<comments>http://www.djohnson.info/heres-a-dandy-function-i-banged-out-to/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 23:59:21 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Babblings]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.djohnson.info/heres-a-dandy-function-i-banged-out-to/</guid>
		<description><![CDATA[Here&#8217;s a dandy function I banged out today for Drupal to reorder a tree taxonomy in alphabetical order. function reordertaxonomy($tid) { $sql = 'SELECT term_data.tid, name, weight FROM term_data JOIN term_hierarchy ON term_hierarchy.tid = term_data.tid WHERE term_hierarchy.parent = ' . $tid; $result = db_query($sql); if ($result) { $neworder = array(); while ($row = db_fetch_object($result)) { [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a dandy function I banged out today for Drupal to reorder a tree taxonomy in alphabetical order.<br />
<code><br />
function reordertaxonomy($tid) {<br />
	$sql = 'SELECT term_data.tid, name, weight FROM term_data JOIN term_hierarchy ON term_hierarchy.tid = term_data.tid WHERE term_hierarchy.parent = ' . $tid;<br />
	$result = db_query($sql);<br />
	if ($result) {<br />
		$neworder = array();<br />
		while ($row = db_fetch_object($result)) {<br />
			$neworder[$row->name] = $row->tid;<br />
			reordertaxonomy($row->tid);<br />
		}<br />
		ksort($neworder);<br />
		print_r($neworder);<br />
		$i = 0;<br />
		foreach ($neworder as $termid) {<br />
			$updatesql = 'UPDATE term_data SET weight = "' . $i . '" WHERE tid = "' . $termid . '"';<br />
			db_query($updatesql);<br />
			$i++;<br />
		}<br />
	}<br />
}<br />
</code></p>]]></content:encoded>
			<wfw:commentRss>http://www.djohnson.info/heres-a-dandy-function-i-banged-out-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Little Bitty Blossoms</title>
		<link>http://www.djohnson.info/little-bitty-blossoms/</link>
		<comments>http://www.djohnson.info/little-bitty-blossoms/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 21:42:02 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Babblings]]></category>
		<category><![CDATA[spotlight]]></category>

		<guid isPermaLink="false">http://www.djohnson.info/?p=402</guid>
		<description><![CDATA[If you have a moment stop by https://www.facebook.com/LittleBittyBlossoms and check out her awesome hair flowers for girls. If you like em, like her page and buy a few for you and your friends!]]></description>
			<content:encoded><![CDATA[<p>If you have a moment stop by <a href="https://www.facebook.com/LittleBittyBlossoms" rel="nofollow">https://www.facebook.com/LittleBittyBlossoms</a> and check out her awesome hair flowers for girls. If you like em, like her page and buy a few for you and your friends!</p>]]></content:encoded>
			<wfw:commentRss>http://www.djohnson.info/little-bitty-blossoms/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>In Drupal when working with bread crumbs &#8230;</title>
		<link>http://www.djohnson.info/in-drupal-when-working-with-bread-crumbs/</link>
		<comments>http://www.djohnson.info/in-drupal-when-working-with-bread-crumbs/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 21:53:21 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Babblings]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.djohnson.info/in-drupal-when-working-with-bread-crumbs/</guid>
		<description><![CDATA[In Drupal when working with bread crumbs the Custom Breadcrumbs module blows Hansel out of the water. Less complicated and much more intuitive.]]></description>
			<content:encoded><![CDATA[<p>In Drupal when working with bread crumbs the Custom Breadcrumbs module blows Hansel out of the water. Less complicated and much more intuitive.</p>]]></content:encoded>
			<wfw:commentRss>http://www.djohnson.info/in-drupal-when-working-with-bread-crumbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Putting this here so I remember it next  &#8230;</title>
		<link>http://www.djohnson.info/putting-this-here-so-i-remember-it-next/</link>
		<comments>http://www.djohnson.info/putting-this-here-so-i-remember-it-next/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 17:47:00 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Babblings]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.djohnson.info/putting-this-here-so-i-remember-it-next/</guid>
		<description><![CDATA[Putting this here so I remember it next time I need it. On a FB Like button on your website to hide the &#8220;comments&#8221; box that pops up just add the following to your CSS: .fb_edge_comment_widget { display: none !important; }]]></description>
			<content:encoded><![CDATA[<p>Putting this here so I remember it next time I need it. On a FB Like button on your website to hide the &#8220;comments&#8221; box that pops up just add the following to your CSS:</p>
<p>.fb_edge_comment_widget { display: none !important; }</p>]]></content:encoded>
			<wfw:commentRss>http://www.djohnson.info/putting-this-here-so-i-remember-it-next/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just rolled out HTML5 Video for a client &#8230;</title>
		<link>http://www.djohnson.info/just-rolled-out-html5-video-for-a-client/</link>
		<comments>http://www.djohnson.info/just-rolled-out-html5-video-for-a-client/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 23:25:05 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Babblings]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.djohnson.info/just-rolled-out-html5-video-for-a-client/</guid>
		<description><![CDATA[Just rolled out HTML5 Video for a client! Great success so far. The only thing I don&#8217;t like is it buffers longer than an FLV. Not as good a user experience, but I guess that&#8217;s what building for the future web is about]]></description>
			<content:encoded><![CDATA[<p>Just rolled out HTML5 Video for a client! Great success so far. The only thing I don&#8217;t like is it buffers longer than an FLV. Not as good a user experience, but I guess that&#8217;s what building for the future web is about</p>]]></content:encoded>
			<wfw:commentRss>http://www.djohnson.info/just-rolled-out-html5-video-for-a-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pray for the children</title>
		<link>http://www.djohnson.info/pray-for-the-children/</link>
		<comments>http://www.djohnson.info/pray-for-the-children/#comments</comments>
		<pubDate>Mon, 30 May 2011 06:20:10 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Babblings]]></category>

		<guid isPermaLink="false">http://www.djohnson.info/?p=397</guid>
		<description><![CDATA[Probably one of the best songs regarding the plight of children. It&#8217;s an original song written by my brother so I may be biased but give it a listen and if you like it &#8230; share it! You can see more about his endeavours with music at http://www.rainbowsafterrain.com]]></description>
			<content:encoded><![CDATA[<p>Probably one of the best songs regarding the plight of children. It&#8217;s an original song written by my brother so I may be biased but give it a listen and if you like it &#8230; share it! You can see more about his endeavours with music at <a href="http://www.rainbowsafterrain.com">http://www.rainbowsafterrain.com</a></p>
<p><iframe width="390" height="222" src="http://www.youtube.com/embed/SonHxSX80Fw" frameborder="0" allowfullscreen></iframe></p>]]></content:encoded>
			<wfw:commentRss>http://www.djohnson.info/pray-for-the-children/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting a stress management course, rea &#8230;</title>
		<link>http://www.djohnson.info/starting-a-stress-management-course-rea/</link>
		<comments>http://www.djohnson.info/starting-a-stress-management-course-rea/#comments</comments>
		<pubDate>Sat, 21 May 2011 16:21:57 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Babblings]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://www.djohnson.info/starting-a-stress-management-course-rea/</guid>
		<description><![CDATA[Starting a stress management course, realized that there&#8217;s some really good tools and professionals out there who can actually help with this. Amazed that in my upbringing I never really got exposed to how many good tools there are out there. Stress can be at the core of so many issues. Learning to deal with [...]]]></description>
			<content:encoded><![CDATA[<p>Starting a stress management course, realized that there&#8217;s some really good tools and professionals out there who can actually help with this. Amazed that in my upbringing I never really got exposed to how many good tools there are out there. Stress can be at the core of so many issues. Learning to deal with stress is paramount to navigating life.</p>]]></content:encoded>
			<wfw:commentRss>http://www.djohnson.info/starting-a-stress-management-course-rea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Got DD-WRT running on my LinkSys WRT-320 &#8230;</title>
		<link>http://www.djohnson.info/got-dd-wrt-running-on-my-linksys-wrt-320/</link>
		<comments>http://www.djohnson.info/got-dd-wrt-running-on-my-linksys-wrt-320/#comments</comments>
		<pubDate>Fri, 20 May 2011 18:28:04 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Babblings]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.djohnson.info/got-dd-wrt-running-on-my-linksys-wrt-320/</guid>
		<description><![CDATA[Got DD-WRT running on my LinkSys WRT-320N. Works like a charm!]]></description>
			<content:encoded><![CDATA[<p>Got DD-WRT running on my LinkSys WRT-320N. Works like a charm!</p>]]></content:encoded>
			<wfw:commentRss>http://www.djohnson.info/got-dd-wrt-running-on-my-linksys-wrt-320/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

