<?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>Euphoria Audio, LLC</title>
	<atom:link href="http://www.euphoriaaudio.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.euphoriaaudio.com</link>
	<description>Audio, Video and Data Consulting</description>
	<lastBuildDate>Fri, 28 Oct 2011 01:13:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Hypertable C++ Thrift Tutorial</title>
		<link>http://www.euphoriaaudio.com/index.php/2011/10/25/hypertable-c-thrift-tutorial/</link>
		<comments>http://www.euphoriaaudio.com/index.php/2011/10/25/hypertable-c-thrift-tutorial/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 01:56:31 +0000</pubDate>
		<dc:creator>Chris Larsen</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.euphoriaaudio.com/?p=159</guid>
		<description><![CDATA[Recently I was looking at different NOSQL solutions to storing huge amounts of data effeciently and so I started digging into Big Table like solutions including Cassandra, Hbase and Hypertable. All three are fairly similar in operation and access and though the first two are written in Java, Hypertable is written in C++, thus standing [...]]]></description>
		<wfw:commentRss>http://www.euphoriaaudio.com/index.php/2011/10/25/hypertable-c-thrift-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Log4cxx XML Configuration Location Patch</title>
		<link>http://www.euphoriaaudio.com/index.php/2011/06/30/log4cxx-xml-configuration-location-patch/</link>
		<comments>http://www.euphoriaaudio.com/index.php/2011/06/30/log4cxx-xml-configuration-location-patch/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 16:48:21 +0000</pubDate>
		<dc:creator>Chris Larsen</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.euphoriaaudio.com/?p=144</guid>
		<description><![CDATA[I&#39;ve been working in C and C++ quite a bit lately and using the Apache Log4cxx library for file and syslogging. It works wonderfully but I didn&#39;t like the fact that it required it&#39;s own configuration file (unless you set it up programmatically). My configs are in XML and I used Log4cxx&#39;s XML configuration as [...]]]></description>
		<wfw:commentRss>http://www.euphoriaaudio.com/index.php/2011/06/30/log4cxx-xml-configuration-location-patch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>libJSON Basic Parser Example</title>
		<link>http://www.euphoriaaudio.com/index.php/2010/09/27/libjson-basic-parser-example/</link>
		<comments>http://www.euphoriaaudio.com/index.php/2010/09/27/libjson-basic-parser-example/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 01:49:43 +0000</pubDate>
		<dc:creator>Chris Larsen</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.euphoriaaudio.com/?p=135</guid>
		<description><![CDATA[libJSON is a great C/C++ library written by Jonathan Wallace and can be found on Sourceforge. Previously we looked at how to create a new JSON node tree programmatically that could be sent over the wire to consumer. Now we&#39;ll look at the consumer side and see how to parse the JSON string into our [...]]]></description>
		<wfw:commentRss>http://www.euphoriaaudio.com/index.php/2010/09/27/libjson-basic-parser-example/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>libJSON Array Example</title>
		<link>http://www.euphoriaaudio.com/index.php/2010/09/27/libjson-array-example/</link>
		<comments>http://www.euphoriaaudio.com/index.php/2010/09/27/libjson-array-example/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 00:53:09 +0000</pubDate>
		<dc:creator>Chris Larsen</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.euphoriaaudio.com/?p=120</guid>
		<description><![CDATA[libJSON is a great C/C++ library written by Jonathan Wallace and can be found on Sourceforge. This quick example will show you how to add an array to your JSON tree. JSONNODE *n = json_new(JSON_NODE); json_push_back(n, json_new_a(&#34;RootA&#34;, &#34;Hello World&#34;)); JSONNODE *c = json_new(JSON_ARRAY); json_set_name(c, &#34;ArrayOfNumbers&#34;); json_push_back(c, json_new_i(NULL, 16)); json_push_back(c, json_new_i(NULL, 42)); json_push_back(c, json_new_i(NULL, 128)); json_push_back(n, [...]]]></description>
		<wfw:commentRss>http://www.euphoriaaudio.com/index.php/2010/09/27/libjson-array-example/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>libJSON Child Node Example</title>
		<link>http://www.euphoriaaudio.com/index.php/2010/09/27/libjson-child-node-write-example/</link>
		<comments>http://www.euphoriaaudio.com/index.php/2010/09/27/libjson-child-node-write-example/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 00:40:23 +0000</pubDate>
		<dc:creator>Chris Larsen</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.euphoriaaudio.com/?p=114</guid>
		<description><![CDATA[libJSON is a great C/C++ library written by Jonathan Wallace and can be found on Sourceforge. In my previous post, I showed you an example of how to create a very simple JSON tree without any branches, just a few nodes. Now we&#39;ll look at how to create a branch off the main tree. JSONNODE [...]]]></description>
		<wfw:commentRss>http://www.euphoriaaudio.com/index.php/2010/09/27/libjson-child-node-write-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>libJSON Simple Write Example</title>
		<link>http://www.euphoriaaudio.com/index.php/2010/09/27/libjson_simple_write/</link>
		<comments>http://www.euphoriaaudio.com/index.php/2010/09/27/libjson_simple_write/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 00:19:50 +0000</pubDate>
		<dc:creator>Chris Larsen</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.euphoriaaudio.com/?p=105</guid>
		<description><![CDATA[libJSON is a great C/C++ library written by Jonathan Wallace and can be found on Sourceforge. I needed a quick and easy way to generate JSON strings to dump in MQ messages and also parse JSON from various sorces and after trying a few of them, I settled on libJSON as the easest to use. [...]]]></description>
		<wfw:commentRss>http://www.euphoriaaudio.com/index.php/2010/09/27/libjson_simple_write/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RRDTool 1.4.4 Released with Win32 and DotNet Support</title>
		<link>http://www.euphoriaaudio.com/index.php/2010/07/07/rrdtool-1-4-4-released-with-win32-and-dotnet-support/</link>
		<comments>http://www.euphoriaaudio.com/index.php/2010/07/07/rrdtool-1-4-4-released-with-win32-and-dotnet-support/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 17:59:53 +0000</pubDate>
		<dc:creator>Chris Larsen</dc:creator>
				<category><![CDATA[Network Management]]></category>

		<guid isPermaLink="false">http://www.euphoriaaudio.com/wp/?p=101</guid>
		<description><![CDATA[Tobias Oetiker graciously released some patches I submitted that allow users to build the excellent RRDTool library with Visual Studio 2008 and up. I updated Stefan Ludewig&#39;s instructions with links to the latest dependencies and updated the solution to make building a little easier. All of the traditional RRDTool functions are working but please note [...]]]></description>
		<wfw:commentRss>http://www.euphoriaaudio.com/index.php/2010/07/07/rrdtool-1-4-4-released-with-win32-and-dotnet-support/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>VB.Net: Remotely Authenticate to Access Network Share</title>
		<link>http://www.euphoriaaudio.com/index.php/2010/05/18/vb-net-remotely-authenticate-to-access-network-share/</link>
		<comments>http://www.euphoriaaudio.com/index.php/2010/05/18/vb-net-remotely-authenticate-to-access-network-share/#comments</comments>
		<pubDate>Tue, 18 May 2010 20:15:41 +0000</pubDate>
		<dc:creator>Chris Larsen</dc:creator>
				<category><![CDATA[Network Management]]></category>

		<guid isPermaLink="false">http://www.euphoriaaudio.com/wp/?p=59</guid>
		<description><![CDATA[An application I wrote to automatically collect log files from dozens of different Windows web servers required authentication in order to get to the log files. Leaving the folders wide open for &#34;Everyone&#34; would have been a terrible idea, naturally, as visitor IPs, usernames and other sensitive information could be gathered and used for nefarious [...]]]></description>
		<wfw:commentRss>http://www.euphoriaaudio.com/index.php/2010/05/18/vb-net-remotely-authenticate-to-access-network-share/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>SNMP Tables Tutorial</title>
		<link>http://www.euphoriaaudio.com/index.php/2010/04/28/snmp-tables-tutorial/</link>
		<comments>http://www.euphoriaaudio.com/index.php/2010/04/28/snmp-tables-tutorial/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 19:50:05 +0000</pubDate>
		<dc:creator>Chris Larsen</dc:creator>
				<category><![CDATA[Network Management]]></category>

		<guid isPermaLink="false">http://www.euphoriaaudio.com/wp/?p=11</guid>
		<description><![CDATA[Recently I worked on a project where we moved a website to a load-balanced environment using a Cisco ACE module on a Catalyst switch. I wanted to setup monitoring so we could see how many people were connected to each server without having to login to the CLI or use Cisco Works as we didn’t have access to existing monitors or the money to buy our own. So I turned to the great Open Source tools, Cacti and Net-SNMP.]]></description>
		<wfw:commentRss>http://www.euphoriaaudio.com/index.php/2010/04/28/snmp-tables-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows Media Encoder XML with Authentication</title>
		<link>http://www.euphoriaaudio.com/index.php/2009/12/15/windows-media-encoder-xml-with-authentication/</link>
		<comments>http://www.euphoriaaudio.com/index.php/2009/12/15/windows-media-encoder-xml-with-authentication/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 20:00:19 +0000</pubDate>
		<dc:creator>Chris Larsen</dc:creator>
				<category><![CDATA[Streaming Media]]></category>

		<guid isPermaLink="false">http://www.euphoriaaudio.com/wp/?p=4</guid>
		<description><![CDATA[This one has been bugging me for quite a while:&#160;I&#160;needed to be able to run a live, PUSH encoding session on startup that was required to authenticate to the Windows Media Services server. When you use the WME GUI, clicking the Start Encoding button will pop-up a dialog box where you can enter in your [...]]]></description>
		<wfw:commentRss>http://www.euphoriaaudio.com/index.php/2009/12/15/windows-media-encoder-xml-with-authentication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
