<?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/"
	>

<channel>
	<title>Jason Champion</title>
	<atom:link href="http://zetacentauri.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://zetacentauri.com/blog</link>
	<description>The Zeta Centauri Founder</description>
	<pubDate>Mon, 01 Feb 2010 00:20:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Deploying XAudio2 With InnoSetup</title>
		<link>http://zetacentauri.com/blog/?p=74</link>
		<comments>http://zetacentauri.com/blog/?p=74#comments</comments>
		<pubDate>Mon, 01 Feb 2010 00:20:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://zetacentauri.com/blog/?p=74</guid>
		<description><![CDATA[

Zeta Centauri’s latest application, SampliTron, uses XAudio2, which is the new audio portion of Microsoft’s DirectX.  Bundling all of DirectX with an installer is overkill for applications that don’t need all of it – for instance, apps that only use the audio portion.  Since SampliTron is a fairly large download due to all of the [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Zeta Centauri’s latest application, SampliTron, uses XAudio2, which is the new audio portion of Microsoft’s DirectX.  Bundling all of DirectX with an installer is overkill for applications that don’t need all of it – for instance, apps that only use the audio portion.  Since SampliTron is a fairly large download due to all of the bundled .WAV files, I wanted to keep from inflating the installer much.</p>
<p>Microsoft has an article on MSDN, <a href="http://msdn.microsoft.com/en-us/library/ee416805%28VS.85%29.aspx">&#8220;DirectX Installation for Game Developers&#8221;</a>.  That gives an overview of performing a minimal install by bundling only the items you need to distribute.  After a bit of experimentation with InnoSetup I came up with a process that works well.</p>
<p>First thing, I figured out what files I wanted to include.  These are:</p>
<p><span style="color: #000080;">DSETUP.dll<br />
dsetup32.dll<br />
DXSETUP.exe<br />
dxupdate.cab<br />
Aug2009_XAudio_x86.cab</span></p>
<p>These files add up to 2.5 megabytes, a far cry from the full DirectX installation, which is over 100MB.  To deploy these in an InnoSetup project, I added the following lines to my InnoSetup script:</p>
<h6><span style="color: #000080;">[Files]<br />
Source: &#8220;F:\src\zc\SampliTron\Release\DirectX\DXSETUP.exe&#8221;; DestDir: &#8220;{app}&#8221;; Flags: ignoreversion deleteafterinstall<br />
Source: &#8220;F:\src\zc\SampliTron\Release\DirectX\DSETUP.dll&#8221;; DestDir: &#8220;{app}&#8221;; Flags: ignoreversion deleteafterinstall<br />
Source: &#8220;F:\src\zc\SampliTron\Release\DirectX\dsetup32.dll&#8221;; DestDir: &#8220;{app}&#8221;; Flags: ignoreversion deleteafterinstall<br />
Source: &#8220;F:\src\zc\SampliTron\Release\DirectX\dxupdate.cab&#8221;; DestDir: &#8220;{app}&#8221;; Flags: ignoreversion deleteafterinstall<br />
Source: &#8220;F:\src\zc\SampliTron\Release\DirectX\Aug2009_XAudio_x86.cab&#8221;; DestDir: &#8220;{app}&#8221;; Flags: ignoreversion deleteafterinstall </span></h6>
<h6><span style="color: #000080;">[Run]<br />
Filename: &#8220;{app}\DXSETUP.exe&#8221;; Parameters: &#8220;/SILENT&#8221;; WorkingDir: &#8220;{app}&#8221;;  StatusMsg: &#8220;Installing DirectX XAudio2 Redistributable&#8230;&#8221;; Flags: waituntilterminated </span></h6>
<p>The “deleteafterinstall” means that InnoSetup will remove the files after setup completes.  In the [Run] section, the DXSETUP.exe is before the “LaunchProgram” entry to be sure that it is installed before the user can launch the program.  This method can be used to include any other portions of DirectX you want &#8212; it only installs the pieces it finds .cab files for.</p>
]]></content:encoded>
			<wfw:commentRss>http://zetacentauri.com/blog/?feed=rss2&amp;p=74</wfw:commentRss>
		</item>
		<item>
		<title>New Year, New OS</title>
		<link>http://zetacentauri.com/blog/?p=70</link>
		<comments>http://zetacentauri.com/blog/?p=70#comments</comments>
		<pubDate>Sat, 30 Jan 2010 03:26:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://zetacentauri.com/blog/?p=70</guid>
		<description><![CDATA[

I&#8217;ve always had a thing for multiplatform development.  Most of the Windows code I write can run on Linux with no or very few modifications, thanks in no small part to the wxWidgets GUI toolkit.  I started using it because it brought internal consistency to the Windows API.  I Think of it as what MFC [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>I&#8217;ve always had a thing for multiplatform development.  Most of the Windows code I write can run on Linux with no or very few modifications, thanks in no small part to the wxWidgets GUI toolkit.  I started using it because it brought internal consistency to the Windows API.  I Think of it as what MFC would be if it were designed by a sane person.</p>
<p>I recently added a Macbook with Snow Leopard to the development mix and have been getting used to writing code for (and more importantly, porting code to) MacOS.  Every operating system has its development annoyances, and OSX is no exception.  I haven&#8217;t decided which applications are going to be ported to the new (to me) OS yet, but I&#8217;m sure a few will make it.</p>
]]></content:encoded>
			<wfw:commentRss>http://zetacentauri.com/blog/?feed=rss2&amp;p=70</wfw:commentRss>
		</item>
		<item>
		<title>Building FLAC On Windows Isn&#8217;t Easy</title>
		<link>http://zetacentauri.com/blog/?p=68</link>
		<comments>http://zetacentauri.com/blog/?p=68#comments</comments>
		<pubDate>Fri, 04 Dec 2009 03:57:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://zetacentauri.com/blog/?p=68</guid>
		<description><![CDATA[

FLAC, the Free Lossless Audio Codec, is more popular on *NIX-based operating systems than it is on Windows.  This shows in their source code package.
I had to solve two problems in order to build FLAC on windows.
1:  The projects try to link to a library called &#8220;ogg_static.lib&#8221;.  The library builds as &#8220;libogg_static.lib&#8221;, so I had [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>FLAC, the Free Lossless Audio Codec, is more popular on *NIX-based operating systems than it is on Windows.  This shows in their source code package.</p>
<p>I had to solve two problems in order to build FLAC on windows.</p>
<p>1:  The projects try to link to a library called &#8220;ogg_static.lib&#8221;.  The library builds as &#8220;libogg_static.lib&#8221;, so I had to change the project to add the &#8220;lib&#8221; prefix.</p>
<p>2: The project tries to compile the main libraries with a file called &#8220;nasmw.exe&#8221;.  I did not have this file and had to do some research to figure out what the heck it was.  Turns out it was the Netwide Assembler, which can be found <a href="http://www.nasm.us/">HERE</a>.  I downloaded version 2.07 and after installing did not see a nasmw.exe.  It seems that the executable is now called nasm.exe, so I dropped a copy renamed to &#8220;nasmw.exe&#8221; into C:\Windows\System32 and was able to build the main libraries.  It did the trick.</p>
<p>Just some things to watch out for if you&#8217;re planning on using the FLAC libraries with Windows.</p>
]]></content:encoded>
			<wfw:commentRss>http://zetacentauri.com/blog/?feed=rss2&amp;p=68</wfw:commentRss>
		</item>
		<item>
		<title>Zeta Centauri Now A Member of TechColumbus</title>
		<link>http://zetacentauri.com/blog/?p=66</link>
		<comments>http://zetacentauri.com/blog/?p=66#comments</comments>
		<pubDate>Sat, 28 Nov 2009 01:45:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Entrepreneurship]]></category>

		<guid isPermaLink="false">http://zetacentauri.com/blog/?p=66</guid>
		<description><![CDATA[

There&#8217;s a local entrepreneurship organization by the name of TechColumbus.  They&#8217;re the local hub for startups and tend to host plenty of events related to boostrapping, starting up a business, marketing, and all that fun stuff.  Zeta Centauri has joined up and will be working on world domination.  You know what they say &#8212; start [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>There&#8217;s a local entrepreneurship organization by the name of <a href="http://www.techcolumbus.org/">TechColumbus</a>.  They&#8217;re the local hub for startups and tend to host plenty of events related to boostrapping, starting up a business, marketing, and all that fun stuff.  Zeta Centauri has joined up and will be working on world domination.  You know what they say &#8212; start local, conquer global.  Or something like that.</p>
]]></content:encoded>
			<wfw:commentRss>http://zetacentauri.com/blog/?feed=rss2&amp;p=66</wfw:commentRss>
		</item>
		<item>
		<title>More Than 60 Applications Written</title>
		<link>http://zetacentauri.com/blog/?p=61</link>
		<comments>http://zetacentauri.com/blog/?p=61#comments</comments>
		<pubDate>Wed, 25 Nov 2009 01:58:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://zetacentauri.com/blog/?p=61</guid>
		<description><![CDATA[

I sat down and made a list of the software applications I&#8217;ve written or taken part in the release of.  I&#8217;m listing complete rewrites of the same software as different items, but each item may have multiple minor version release (especially Life&#124;ware, which I worked on for 2 years).  The total is over [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>I sat down and made a list of the software applications I&#8217;ve written or taken part in the release of.  I&#8217;m listing complete rewrites of the same software as different items, but each item may have multiple minor version release (especially Life|ware, which I worked on for 2 years).  The total is over 60.</p>
<p>The Apps I&#8217;ve Written (or Updated)</p>
<p>1. C64 Arena Combat<br />
2. Illustrium Arcana MUD<br />
3. Basternae 2 MUD<br />
4. Basternae 3 MUD<br />
5. The MUD Screen Editor<br />
6. The Basternae Editor<br />
7. The Basternae Help Editor<br />
8. The Basternae Client<br />
9. Digital Radio 2<br />
10. HLA Gateway<br />
11. Bad Monkey Do Not Push This Button<br />
12. TextRPG<br />
13. Mini Calendar<br />
14. Magma MUD Codebase<br />
15. ClickStars<br />
16. GLTriangles<br />
17. DikuEdit (Basternae Version)<br />
18. Life|ware 2<br />
19. Life|ware 3<br />
20. Hex String Visualizer<br />
21. PixelSwapper<br />
22. AlgoRhythmia 1 and 2.<br />
23. AlgoRhythmia 3 (Rewrite).<br />
24. CheckBeat<br />
25. SampleTrigger<br />
26. LineMerge<br />
27. SpaceTheremin<br />
28. ZC Trigram Generator<br />
29. Proxima Controller<br />
30. Bass Tuner<br />
31. Guitar Tuner<br />
32. Vorbital Player<br />
33. MidiPlayer<br />
34. Zeta Telnet<br />
35. Zeta Minibrowser<br />
36. Quick Tile Viewer<br />
37. RoboBlather<br />
38. Champion Stock Chart Viewer<br />
39. Zetatag Auto-Renamer<br />
40. SV2<br />
41. I-Collect-It.com<br />
42. Got-It-Done.com<br />
43. Newline Removal Utility<br />
44. Software Listing PHP Module<br />
45. Galaxy Xangis<br />
46. Sample Rate and BPM Calculator<br />
47. Drumming Dummy<br />
48. Arcaen Dice<br />
49. Arcaen Battle Simulator<br />
50. Random Name Generator<br />
51. CrawlMapper Sitemap Generator<br />
52. Python FTP Autopatcher<br />
53. Situational Awareness Toolkit<br />
54. EI Power Usage Meter<br />
55. Torsion-Knudsen Apparatus Data Acquisition<br />
56. SampleSplitter<br />
57. wxDuris<br />
58. D &amp; D Character Generator<br />
59. Emitter-Collector<br />
60. wxSpectrum<br />
61. Stock Data Importer<br />
62. Eve Online Character Viewer<br />
63. DTED Viewer</p>
]]></content:encoded>
			<wfw:commentRss>http://zetacentauri.com/blog/?feed=rss2&amp;p=61</wfw:commentRss>
		</item>
		<item>
		<title>ASP: The Association of Shareware Professionals</title>
		<link>http://zetacentauri.com/blog/?p=58</link>
		<comments>http://zetacentauri.com/blog/?p=58#comments</comments>
		<pubDate>Sat, 21 Nov 2009 23:04:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://zetacentauri.com/blog/?p=58</guid>
		<description><![CDATA[

The name sounds a little archaic in this day and age, even though the &#8220;shareware&#8221; industry is just as alive as ever.  It&#8217;s just that they don&#8217;t use that term much anymore.  Even so, I&#8217;ve been meaning to join up for a while because there are some things that are easier to figure [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>The name sounds a little archaic in this day and age, even though the &#8220;shareware&#8221; industry is just as alive as ever.  It&#8217;s just that they don&#8217;t use that term much anymore.  Even so, I&#8217;ve been meaning to join up for a while because there are some things that are easier to figure out when you have a peer network.  A prime example would be choosing a secure content delivery system.</p>
<p>The dues of $100 per year is in that &#8220;neither large nor small&#8221; category, so it&#8217;s not a big risk.  I signed Zeta Centauri up this month and have been reading the parts of the huge archive of newsgroup posts that are relevant to my business.  There&#8217;s a lot to digest, but I feel smarter already.  I don&#8217;t think it&#8217;ll be that hard to extract $100 of value from a membership in the <a href="http://asp-shareware.org">ASP</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://zetacentauri.com/blog/?feed=rss2&amp;p=58</wfw:commentRss>
		</item>
		<item>
		<title>Time Tracking With Paymo</title>
		<link>http://zetacentauri.com/blog/?p=55</link>
		<comments>http://zetacentauri.com/blog/?p=55#comments</comments>
		<pubDate>Tue, 17 Nov 2009 23:02:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Entrepreneurship]]></category>

		<guid isPermaLink="false">http://zetacentauri.com/blog/?p=55</guid>
		<description><![CDATA[

Even though new product development doesn&#8217;t result in any billable hours, it&#8217;s pretty useful to know how you&#8217;re spending your time.  It helps with optimizing workflow, planning for schedules and new products, and is pretty good to know overall.  The trouble is, every method I&#8217;ve tried has been too annoying and has fizzled out after [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Even though new product development doesn&#8217;t result in any billable hours, it&#8217;s pretty useful to know how you&#8217;re spending your time.  It helps with optimizing workflow, planning for schedules and new products, and is pretty good to know overall.  The trouble is, every method I&#8217;ve tried has been too annoying and has fizzled out after a bit.</p>
<p>A physical notepad?  Sure, I can carry a notepad with me most of the time, but at some point that&#8217;s going to require data entry of some sort.  This has never worked for me for longer than a week.</p>
<p>Excel?  Close, but the fact that it&#8217;s a physical file that has to be synchronized across locations and that it&#8217;s a little clunky to categorize time has never made this last for more than two weeks.</p>
<p>The only viable solution really would have to be a web-based application.</p>
<p>I asked Google what was available and stumbled into <a href="http://paymo.biz">Paymo</a>.  It looks like an ideal solution &#8212; the interface is clean and streamlined and it&#8217;s easy to enter and categorize time.  They also have an add-on service that lets you send invoices and bill for time spent on projects.  Although I don&#8217;t do anything billable right now, it&#8217;s pretty nice to have that already in place with the click of a button should I need it in the future.  I&#8217;m sure at some point I&#8217;ll be doing some product enhancements as contract work, so it&#8217;s good to know that issue is already solved when it comes up.</p>
<p>It&#8217;s only been a few days, but it feels like I&#8217;ll be able to stick with tracking time this way.  With the graphs and pie charts it&#8217;s almost fun to update.</p>
]]></content:encoded>
			<wfw:commentRss>http://zetacentauri.com/blog/?feed=rss2&amp;p=55</wfw:commentRss>
		</item>
		<item>
		<title>The International Bootstrapping Association</title>
		<link>http://zetacentauri.com/blog/?p=53</link>
		<comments>http://zetacentauri.com/blog/?p=53#comments</comments>
		<pubDate>Sat, 14 Nov 2009 23:00:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Entrepreneurship]]></category>

		<guid isPermaLink="false">http://zetacentauri.com/blog/?p=53</guid>
		<description><![CDATA[

The IBA is an organization that was started here in Columbus, Ohio over the summer.  It&#8217;s a group specifically for bootstrappers and folks like myself who are building a business out-of-pocket, whether it be part-time or full-time.  It&#8217;s a nice mix of veterans and beginners with a pretty wide variety of experiences.  They&#8217;ve already expanded [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>The IBA is an organization that was started here in Columbus, Ohio over the summer.  It&#8217;s a group specifically for bootstrappers and folks like myself who are building a business out-of-pocket, whether it be part-time or full-time.  It&#8217;s a nice mix of veterans and beginners with a pretty wide variety of experiences.  They&#8217;ve already expanded to holding meetings at two locations in the city and I&#8217;d be surprised if Cleveland and Cincinnati don&#8217;t have their own chapters before long.</p>
<p>For more information, you can visit <a href="http://www.bootstrappingassociation.org/" target="_blank">http://www.bootstrappingassociation.org</a>.  It&#8217;s not the most sophisticated website, but the magic happens in the meetings.  So far most meetings have had between 10 and 20 people attending which is a nice comfortable number.</p>
<p>If you&#8217;re curious about the group, you can attend a meeting as a guest and see if it&#8217;s right for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://zetacentauri.com/blog/?feed=rss2&amp;p=53</wfw:commentRss>
		</item>
		<item>
		<title>Trying Out Assembla</title>
		<link>http://zetacentauri.com/blog/?p=51</link>
		<comments>http://zetacentauri.com/blog/?p=51#comments</comments>
		<pubDate>Thu, 12 Nov 2009 22:59:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://zetacentauri.com/blog/?p=51</guid>
		<description><![CDATA[

As a software developer, I have to use a version control system to keep my source code safe.  Subversion is my repository of choice, but I&#8217;ve had pretty bad luck with hard drive failures, having had two die already.  There&#8217;s been no data loss, but it is still pretty annoying.
That&#8217;s why I signed up for [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>As a software developer, I have to use a version control system to keep my source code safe.  Subversion is my repository of choice, but I&#8217;ve had pretty bad luck with hard drive failures, having had two die already.  There&#8217;s been no data loss, but it is still pretty annoying.</p>
<p>That&#8217;s why I signed up for a trial of <a href="http://www.assembla.com">Assembla</a>.  So far it&#8217;s pretty useful because they offer Subversion hosting with an integrated Trac project management system.  I&#8217;ve wanted to try Trac for a while, and I like it quite a bit now that I&#8217;ve gotten into it.  It&#8217;s simple but very useful, and most importantly it helps prioritize and manage tasks, bugs, and enhancements without getting in the way.</p>
<p>I&#8217;m sure I&#8217;ll stick with Assembla.  The price is good and the service is great, and it&#8217;s already increased my productivity as a developer.</p>
]]></content:encoded>
			<wfw:commentRss>http://zetacentauri.com/blog/?feed=rss2&amp;p=51</wfw:commentRss>
		</item>
		<item>
		<title>Domain For Sale: WinApp.Net</title>
		<link>http://zetacentauri.com/blog/?p=49</link>
		<comments>http://zetacentauri.com/blog/?p=49#comments</comments>
		<pubDate>Sun, 20 Sep 2009 19:07:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zetacentauri.com/blog/?p=49</guid>
		<description><![CDATA[

Over the past few weeks I&#8217;ve gotten rid of a handful of domains that either tested as &#8220;not worth building&#8221;, or that just weren&#8217;t something I wanted to work on.
I just put the last domain from this round up on eBay.  Unlike some others that weren&#8217;t keepers, this one is a keeper that someone could [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Over the past few weeks I&#8217;ve gotten rid of a handful of domains that either tested as &#8220;not worth building&#8221;, or that just weren&#8217;t something I wanted to work on.</p>
<p>I just put the last domain from this round up on eBay.  Unlike some others that weren&#8217;t keepers, this one is a keeper that someone could build a pretty successful and profitable site with if they knew what they were doing.</p>
<p>It&#8217;s winapp.net and the <a href="http://cgi.ebay.com/winapp-net-6-letter-Windows-Software-Domain-Memorable_W0QQitemZ290351869899QQcmdZViewItemQQptZLH_DefaultDomain_0">eBay auction is here</a>.  Feel free to bid if you think you&#8217;re the right person to build it (or if you&#8217;re a domain investor and think you can make a good return).</p>
]]></content:encoded>
			<wfw:commentRss>http://zetacentauri.com/blog/?feed=rss2&amp;p=49</wfw:commentRss>
		</item>
	</channel>
</rss>
