<?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>Dunamis Design Net</title>
	<atom:link href="http://dunamisdesign.net/feed" rel="self" type="application/rss+xml" />
	<link>http://dunamisdesign.net</link>
	<description>Our work, forums, and play.</description>
	<lastBuildDate>Sat, 12 Jun 2010 08:22:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Addition/Update HTML5 KidGames</title>
		<link>http://dunamisdesign.net/archives/22</link>
		<comments>http://dunamisdesign.net/archives/22#comments</comments>
		<pubDate>Sat, 12 Jun 2010 08:16:04 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://dunamisdesign.net/?p=22</guid>
		<description><![CDATA[I have made some improvements and have added a new game to this little web application. The new game is &#8220;spelling.&#8221; OK, it is not so much a game as it is a review tool for sight words. The word is played and some or all of the letter will need to be filled in. [...]]]></description>
			<content:encoded><![CDATA[<p>I have made some improvements and have added a new game to this little web application.  The new game is &#8220;spelling.&#8221;  OK, it is not so much a game as it is a review tool for sight words.  The word is played and some or all of the letter will need to be filled in.  Please try it out.<br />
You can find it here: <a href="http://dunamisdesign.net/kidsgames/">http://dunamisdesign.net/kidsgames/</a>.<br />
<span id="more-22"></span><br />
Other changes:</p>
<ul>
<li>Started to use jquery ui theme</li>
<li>Added a level changer</li>
<li>Added levels to many of the games</li>
<li>Tried to make the focus  (resetting the current to the right input box) more intuitive</li>
</ul>
<p>I have more ideas and improvements to make, we will have to see if I have the time to play and experiment.</p>
]]></content:encoded>
			<wfw:commentRss>http://dunamisdesign.net/archives/22/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>osCommerce Pop on Confirmation</title>
		<link>http://dunamisdesign.net/archives/17</link>
		<comments>http://dunamisdesign.net/archives/17#comments</comments>
		<pubDate>Fri, 30 Apr 2010 17:15:07 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[OS Commerce]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://dunamisdesign.net/archives/17</guid>
		<description><![CDATA[This was designed to solve the problem of duplicate orders being generated in osCommerce from a customer hitting the confirmation button more than once. So, I set this up to pop-up a &#8220;please wait&#8221; dialog with a progress bar to assure the customer that something was happening. If the progress bar make it to the [...]]]></description>
			<content:encoded><![CDATA[<section>
<p>This was designed to solve the problem of duplicate orders being generated in osCommerce from a customer hitting the  confirmation button more than once.  So, I set this up to pop-up a &#8220;please wait&#8221; dialog with a progress bar to assure the customer that something was happening.  If the progress bar make it to the end (currently programed for 125 seconds),  then the dialog box changes to display an error occured and they can press the refresh button (in the dialog box) and try again.
    </p>
</section>
<p><span id="more-17"></span></p>
<section>
<h3>Install:</h3>
<p>Edit the osCommerce catalog/checkout_confirmation.php (osCommerce vanilla) or catalog/template/content/checkout_confirmation.tpl.php (creloaded).</p>
<p>Insert the following code either just below the &lt;body&gt; tag or at the top of the creloaded template file.</p>
<pre>
&lt;!-- PopupConf - Copyright (c) 2010 Michael Calabrese, Dunamis Design --&gt;
&lt;link type="text/css" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/cupertino/jquery-ui.css" rel="Stylesheet" /&gt;
&lt;script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
  jQuery.noConflict();
  var percent_progress=0;
  var count = 0;
  var progress_update_interval = 40; //usec
  var progress_delay = 125; //seconds
  function reload() {
      location.reload();
  }
  function startProgress() {
    jQuery("#progress_bar").progressbar("value", percent_progress);
    var max_count= progress_delay*(1000/progress_update_interval)
    if(count < max_count) {
      count=count+1;
      //percent_progress=(count/130) * 100;
      percent_progress=(count*100) /max_count;
      //alert(percent_progress);
      setTimeout("startProgress()", progress_update_interval);
    } else {
      //timer is up.
      jQuery("#dialog_process").empty();
      jQuery("#dialog_process").append(  jQuery("&lt;div&gt;Processing your order failed. Please press the reload button and try again.&lt;br&gt; &lt;button class=\"ui-state-default ui-corner-all\" onclick=\"reload();\"&gt;Reload&lt;/button&gt;&lt;/div&gt;")  );
    }
  }

  jQuery(document).ready(function($) {
  jQuery("#dialog_process").dialog({ autoOpen: false, closeOnEscape: false, draggable: false, modal: true,resizable: false })
    // Code that uses jQuery's $ can follow here.
    jQuery("#progress_bar").progressbar({value: count});
    jQuery("#popup_test").click(function() {
        jQuery("#dialog_process").dialog("open");
        startProgress();
    });
    $(".button_confirm_order").click(function(event) {
        jQuery("#dialog_process").dialog("open");
        startProgress();
        setTimeout("document.forms[0].submit()", 1000);
        event.preventDefault();
    });
  });
&lt;/script&gt;
&lt;div id="dialog_process" style="display:none;font-size:70%;"  title="Please Wait" &gt;
  We are processing your order, it could take up to 2 minutes. Thank you.
  &lt;div id="progress_bar"&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;!-- PopupConf - Copyright (c) 2010 Michael Calabrese, Dunamis Design --&gt;
</pre>
<p>Find the following php code (which generates the confirmation button).  Please note that tep_template_image_submit will be tep_image_submit), I would search for IMAGE_BUTTON_CONFIRM_ORDER:</p>
</pre>
<pre>
 echo tep_template_image_submit('button_confirm_order.gif', IMAGE_BUTTON_CONFIRM_ORDER)
</pre>
<p>Added the class paramater to look like:</p>
<pre>
 echo tep_template_image_submit('button_confirm_order.gif', IMAGE_BUTTON_CONFIRM_ORDER,'class="button_confirm_order"')
</pre>
<p>All done, that should be it.</p>
</section>
]]></content:encoded>
			<wfw:commentRss>http://dunamisdesign.net/archives/17/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML5 Kids Games</title>
		<link>http://dunamisdesign.net/archives/16</link>
		<comments>http://dunamisdesign.net/archives/16#comments</comments>
		<pubDate>Wed, 07 Apr 2010 06:01:42 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dunamisdesign.net/archives/16</guid>
		<description><![CDATA[Well, I have had some time to play again, and this time I wanted to play with HTML5 and offline apps. So I have started to build a set of simple HTML5 based kid&#8217;s game to wrap my head around it. Before you go and look at it, it may or may not work under [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I have had some time to play again, and this time I wanted to play with HTML5 and offline apps.  So I have started to build a set of simple HTML5 based kid&#8217;s game to wrap my head around it.  Before you go and look at it, it may or may not work under Internet Explorer.</p>
<p>You can find my current work on it <a href="http://dunamisdesign.net/kidsgames/">http://dunamisdesign.net/kidsgames/</a>.<br />
<span id="more-16"></span></p>
<p>This far I have to say that in all I like the changes in HTML5.  In may ways it seems to have tried to make your life easier.  The added tags seems to make sense to add better structure to a page.  You can look at the code and get a faster feeling for what is going on.</p>
<p>I know that I have not kept up on this sight much, if I keep my spare time I will get some more of my project that I have built in the mean time up.</p>
]]></content:encoded>
			<wfw:commentRss>http://dunamisdesign.net/archives/16/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QBRuby</title>
		<link>http://dunamisdesign.net/archives/15</link>
		<comments>http://dunamisdesign.net/archives/15#comments</comments>
		<pubDate>Fri, 03 Aug 2007 07:06:15 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Programs]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dunamisdesign.net/archives/15</guid>
		<description><![CDATA[Currently is a an object interface written in the Ruby programming language to interface with QuickBooks. At some point in time, I would like to have some completed tools that can general be used with websites and QuickBooks. At this point in time. The basic interface is written with some extra methods written to help [...]]]></description>
			<content:encoded><![CDATA[<p>Currently is a an object interface written in the Ruby programming language to interface with QuickBooks. At some point in time, I would like to have some completed tools that can general be used with websites and QuickBooks.</p>
<p>At this point in time. The basic interface is written with some extra methods written to help automate lookup and creation methods in QuickBooks.</p>
<p>It also contains some programs that use the interface for downloading orders from a website, uploading inventory to a website, and download part (item inventory) from a website. This code could be used by a programmer to help them develop a custom solution for a customer.<br />
<span id="more-15"></span></p>
<p>As I am just getting this project up, please be patient while I get all of the sections setup. If you would like to help out with this project, please contact me through the comments.</p>
<p>I have put the code in to the SVN and can be checked out anonymously.  When I have the complete product written for my current customer, I will release a set of files.</p>
<p>Please check out QBRuby <a href="http://qbruby.rubyforge.org">website</a> at the Ruby Forge.</p>
<p>QuickBooks is a Registered trademark of Intuit Inc. </p>
]]></content:encoded>
			<wfw:commentRss>http://dunamisdesign.net/archives/15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Cart</title>
		<link>http://dunamisdesign.net/archives/8</link>
		<comments>http://dunamisdesign.net/archives/8#comments</comments>
		<pubDate>Mon, 04 Dec 2006 14:00:15 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dunamisdesign.net/?p=8</guid>
		<description><![CDATA[New Version available that support 2.0.5! This is a beta version of a Shopping Cart for WordPress. It was built as a collaboration with David Merwin at Pure Blue for Anderson Group International. This shopping cart was designed as a quote order system. It does not contain any inventory tracking. You simply make a post [...]]]></description>
			<content:encoded><![CDATA[<p>New Version available that support 2.0.5!<br />
This is a beta version of a Shopping Cart for WordPress.  It was built as a collaboration with <a href="http://madeblue.com">David Merwin at Pure Blue</a> for Anderson Group International.<br />
<span id="more-8"></span></p>
<p>This shopping cart was designed as a quote order system. It does not contain any inventory tracking. You simply make a post a part in the post edit screen.</p>
<p><strong>Features:</strong></p>
<ul>
<li>Quote System</li>
<li>Buy Now System</li>
<li>Beta Downloadable product System</li>
<li>Email Order Confirmations</li>
<li>Using posts as sale items</li>
<li>Item can have comments on them</li>
<li>Unique emails at every step</li>
<li>Highlight order that have not move in a set number of days</li>
<li>Can be used for call in orders.</li>
<li>Credit card processing with two available modules.</li>
</ul>
<p>The downable file contains:</p>
<ul>
<li>The shopcart plugin</li>
<li>A theme that has all of the file needed to run the shopping cart.</li>
<li>readme.txt</li>
</ul>
<p><strong>Download</strong></p>
<ul>
<li>Version 0.9.0 <small><a href="http://dunamisdesign.net/?ddn_id=wpcart-0.9.0.tar.gz">wpcart-0.9.0.tar.gz</a> </small>(Inital Public Beta)</li>
<li>Version 0.9.1 <small><a href="http://dunamisdesign.net/?ddn_id=wpcart-0.9.1.tar.gz">wpcart-0.9.1.tar.gz</a></small></li>
<li>Version 0.9.6 <small><a href="http://dunamisdesign.net/?ddn_id=wpcart-0.9.6.tar.gz">wpcart-0.9.6.tar.gz</a></small></li>
</ul>
<p><strong>Download</strong></p>
<li>Authorize.Net <small><a href="">To be released shortly</a></small></li>
<li>Paypal Pro      <small><a href="">To be released shortly</a></small></li>
<ul>
</ul>
<p><strong>Install</strong></p>
<ol>
<li>You can extract the tar file into the wp-contents directory. This will put the plugin into the plugins directory and the theme WPC into the themes directory.</li>
<li>Next login to the admin of your site and enable the shopping cart plugin.</li>
<li>Set your theme to the WPC theme.</li>
<li>Edit any options that you need to change in under the Cart | Options Page.</li>
</ol>
<p><strong>ToDo</strong></p>
<ul>
<li>Better split login from display code</li>
<li>PHPDoc the code</li>
<li>Clean up the options page</li>
<li>Better documentation</li>
<li>Make the Acting As a filter call.</li>
<li>Admin Panel that controls feature set not just cart processing</li>
<li>Move extra post data to post meta.</li>
<li>Move extra user data into user meta (version 2 &#8211; only)</li>
<li>Setup module system (using WP modules system?)</li>
<li>Add Shipping modules</li>
<li>Add Inventory Control</li>
</ul>
<p><strong>SVN Access</strong></p>
<ul>
<li>Access current SVN version: <br /><code>svn export http://svn.wp-plugins.org/wpcart/trunk/</code></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://dunamisdesign.net/archives/8/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Linux One Liners</title>
		<link>http://dunamisdesign.net/archives/14</link>
		<comments>http://dunamisdesign.net/archives/14#comments</comments>
		<pubDate>Mon, 23 Oct 2006 15:13:01 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Notes]]></category>

		<guid isPermaLink="false">http://dunamisdesign.net/?p=14</guid>
		<description><![CDATA[I wanted a place to put quick command that I use. I sometimes forget, and wanted a quick reference for myself. Remove backup files recursively (bash/sh): find ./ -name '*~' -exec rm '{}' \; -print Rip CD to one wav file: cdparanoia -w - Rip CD, one track/wav file: cdparanoia -w -B - YUM update [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted a place to put quick command that I use.  I sometimes forget, and wanted a quick reference for myself.</p>
<p>Remove backup files recursively (bash/sh):</p>
<p><code>find ./ -name '*~' -exec rm '{}' \; -print</code></p>
<p><code><span id="more-14"></span></code><br />
Rip CD to one wav file:</p>
<p><code>cdparanoia -w</code></p>
<p>-<br />
Rip CD, one track/wav file:</p>
<p><code>cdparanoia -w -B</code></p>
<p>-<br />
YUM update one set of files.  (This pulls all rpms that begin with SDL, I like this example because it whose awk example and xagrs):</p>
<p><code>yum list updates | awk '/^SDL/ {printf("%s ",$1)}' | xargs yum upgrade -y</code></p>
<p>Also done with:</p>
<p><code>yum upgrade SDL*</code></p>
]]></content:encoded>
			<wfw:commentRss>http://dunamisdesign.net/archives/14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Future Post Plugin for Word Press</title>
		<link>http://dunamisdesign.net/archives/11</link>
		<comments>http://dunamisdesign.net/archives/11#comments</comments>
		<pubDate>Thu, 06 Apr 2006 16:11:52 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dunamisdesign.net/?p=11</guid>
		<description><![CDATA[This is a modified version of View Future Post plugin orginally developed by Michael Moncur at figby.com. It allows you to show future posts in WP 1.5.2. It can work in WP2 with alittle extra work. The main modifications that I have made was to add an options screen for easy install and changes to [...]]]></description>
			<content:encoded><![CDATA[<p>This is a modified version of View Future Post plugin orginally developed by <a href="http://www.michaelmoncur.com/">Michael Moncur</a> at  <a href="http://www.figby.com/archives/2005/04/12/wordpress-15-plug-in-view-future-posts/">figby.com.</a> It allows you to show future posts in WP 1.5.2.  It can work in WP2 with alittle extra work.<br />
<span id="more-11"></span></p>
<p>The main modifications that I have made was to add an options screen for easy install and changes to the setup. I tried to made it work with version 2 of WordPress, but WP2 has done something annoying. In order to get it to work with WP2 you need to comment out the following lines in wp-includes/classes.php</p>
<blockquote><p>if (mysql2date(&#8216;U&#8217;, $this->posts[0]->post_date_gmt) > mysql2date(&#8216;U&#8217;, $now)) { //it&#8217;s fu //$this->is_preview = true;<br />
//if (!current_user_can(&#8216;edit_post&#8217;, $this->posts[0]->ID)) {<br />
//      $this->posts = array ( );<br />
//}<br />
}</p></blockquote>
<p>I am still looking to see if I can by pass this with a hook.  This code really should be does as part of the sql statement.</p>
<p><strong>Tested on:</strong></p>
<ul>
<li>1.5.2</li>
<li>2.0.2 (with classes.php edit)</li>
</ul>
<p><strong>Download</strong></p>
<ul>
<li>MPC Version 0.8.0 <a href="http://dunamisdesign.net/?ddn_id=futureposts-mpc-0.8.0.tar.gz">futureposts-mpc-0.8.0.tar.gz</a></li>
</ul>
<p><strong>Installation</strong></p>
<ol>
<li>Uncompress plugin into the plugins folder</li>
<li>Activate the plugin</li>
<li>Set your options</li>
<li>For WP2 &#8212; Edit classess.php</li>
</ol>
<p><strong>Todo</strong></p>
<ul>
<li>Find hook for WP2 so edit does not have to be made</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://dunamisdesign.net/archives/11/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>AJAX Calendar for WordPress</title>
		<link>http://dunamisdesign.net/archives/7</link>
		<comments>http://dunamisdesign.net/archives/7#comments</comments>
		<pubDate>Thu, 09 Mar 2006 15:00:12 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://dunamisdesign.net/?p=7</guid>
		<description><![CDATA[This is a new plugin for WordPress. It dynanically replaces the standard calendar to an AJAX based one. There are many options that can be set inside the the WordPress Options page. I apologize for the bad links. They are getting fixed across the site now. Thanks. I took a look at the Live Calendar [...]]]></description>
			<content:encoded><![CDATA[<p>This is a new plugin for WordPress. It dynanically replaces the standard calendar to an AJAX based one. There are many options that can be set inside the the WordPress Options page.<span id="more-7"></span><br />
I apologize for the bad links.  They are getting fixed across the site now.  Thanks.</p>
<p>I took a look at the Live Calendar plugin and completly rewritten it to use a more modular system.  AJAXCalendar now uses the <a href="http://prototype.conio.net/">prototype.js</a> library for it&#8217;s AJAX routines and a slightly modified <a href="http://www.micronetwork.de/activecalendar/">Active Calendar</a> for the calendar routines.  The systems is fully CSS-able though it does not conform to the current WordPress calendar CSS.</p>
<p><strong>Tested on:</strong></p>
<ul>
<li>1.5.2</li>
<li>2.0.1</li>
</ul>
<p><strong>Download the Program:</strong></p>
<ul>
<li>Version 0.8.1 Lost</li>
<li>Version 0.8.2 Not Released</li>
<li>Version 0.8.3 Lost</li>
<li>Version 0.8.6 <a href="http://dunamisdesign.net/?ddn_id=ajaxcalendar-0.8.6.tar.gz">ajaxcalendar-0.8.6.tar.gz</a></li>
</ul>
<p><strong>Installation (Please see the readme.txt file for the most current information) :</strong></p>
<ol>
<li>Uncompress ajaxcalendar-#.#.#.tar.gz into your wp-content/plugins folder.</li>
<li>Activate the plugin in the Plugin Management section of your WordPress install.</li>
<li>Make sure you have the following where you want the calendar to be displayed (e.g.: your theme&#8217;s index.php/home.php). For the admin side of the side, the plugin will try to automatically insert the div for you in the Lastest Activity Box. You can also disable the auto insert and hack wp-admin/index.php and insert the same code in there. NOTE: it is the div tag that makes the system work. The call to get calendar is only there to be a fallback in case the AJAX does not work.
<pre>&lt;div id="calendar"&gt;
&lt;?php get_calendar(); ?&gt;
&lt;/div&gt;</pre>
</li>
<li>Check you options on the Options | AjaxCal page.</li>
<li>All Done</li>
</ol>
<p><strong>Todo:</strong></p>
<ul>
<li>Add in the alt/text tags the title of the posts or some type of drop down.</li>
<li>Use WP calendar CSS tags</li>
<li>Use WP start of week option</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://dunamisdesign.net/archives/7/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Linux on a T42p Thinkpad</title>
		<link>http://dunamisdesign.net/archives/6</link>
		<comments>http://dunamisdesign.net/archives/6#comments</comments>
		<pubDate>Mon, 12 Dec 2005 21:53:52 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Notes]]></category>

		<guid isPermaLink="false">http://dunamisdesign.net/?p=6</guid>
		<description><![CDATA[I have reciently purchased a IBM T42p Thinkpad. I think that this computer is great. I have been contributing to ThinkWiki with all of the instructions and notes I have been using to setup my computer. Please go here to find my contribution.]]></description>
			<content:encoded><![CDATA[<p>I have reciently purchased a IBM T42p Thinkpad.  I think that this computer is great.  I have been contributing to <a href="http://www.thinkwiki.org/wiki/ThinkWiki">ThinkWiki</a> with all of the instructions and notes I have been using to setup my computer.  Please go <a href="http://www.thinkwiki.org/wiki/Installing_Fedora_Core_4_on_a_ThinkPad_T42p_%282373-HBU%29">here</a> to find my contribution.</p>
]]></content:encoded>
			<wfw:commentRss>http://dunamisdesign.net/archives/6/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMDR_FS</title>
		<link>http://dunamisdesign.net/archives/5</link>
		<comments>http://dunamisdesign.net/archives/5#comments</comments>
		<pubDate>Mon, 12 Dec 2005 21:40:18 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[Phone Systems]]></category>
		<category><![CDATA[Programs]]></category>

		<guid isPermaLink="false">http://dunamisdesign.net/?p=5</guid>
		<description><![CDATA[This program was designed to get SMDR records from an Intertel Axxess phone system and insert the records into a PostgreSQL DB. This was done to generate real time monitoring raphs so the sales people could see their &#8220;phone&#8221; progress throughout the day on a group monitor. Download the Program Version 1.1smdr_fs-1.1.tar.gz (Initial Pubic Release)]]></description>
			<content:encoded><![CDATA[<p>This program was designed to get SMDR records from an Intertel Axxess phone system and insert the records into a PostgreSQL DB.  This was done to generate real time monitoring raphs so the sales people could see their &#8220;phone&#8221; progress throughout the day on a group monitor.<span id="more-5"></span></p>
<p>Download the Program</p>
<blockquote><p>
Version 1.1<a href="?ddn_id=smdr_fs-1.1.tar.gz">smdr_fs-1.1.tar.gz</a> (Initial Pubic Release)
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://dunamisdesign.net/archives/5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

