<?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>AttackOfTheSam</title>
	<atom:link href="http://www.attackofthesam.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.attackofthesam.com</link>
	<description>Not sure what to attack.</description>
	<lastBuildDate>Fri, 30 Apr 2010 21:11:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Selecting an Epoch to count from</title>
		<link>http://www.attackofthesam.com/?p=105</link>
		<comments>http://www.attackofthesam.com/?p=105#comments</comments>
		<pubDate>Fri, 30 Apr 2010 21:11:15 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.attackofthesam.com/?p=105</guid>
		<description><![CDATA[When starting a project a good way to select an epoch would be to select the closest year in the past that is divisible by 400.
This will simplify time conversions to / from days since epoch to years as
Years that are evenly divisible by 100 are not leap years, unless they are also evenly divisible [...]]]></description>
			<content:encoded><![CDATA[<p>When starting a project a good way to select an epoch would be to select the closest year in the past that is divisible by 400.</p>
<p>This will simplify time conversions to / from days since epoch to years as<br />
Years that are evenly divisible by 100 are not leap years, unless they are also evenly divisible by 400, in which case they are leap years.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.attackofthesam.com/?feed=rss2&amp;p=105</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Naming Convention</title>
		<link>http://www.attackofthesam.com/?p=101</link>
		<comments>http://www.attackofthesam.com/?p=101#comments</comments>
		<pubDate>Mon, 26 Oct 2009 18:36:45 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.attackofthesam.com/?p=101</guid>
		<description><![CDATA[Class_Name
Structure_Name
variable_name
MethodName
_argument_name
]]></description>
			<content:encoded><![CDATA[<p>Class_Name</p>
<p>Structure_Name<br />
variable_name</p>
<p>MethodName<br />
_argument_name</p>
]]></content:encoded>
			<wfw:commentRss>http://www.attackofthesam.com/?feed=rss2&amp;p=101</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change SVN Editor</title>
		<link>http://www.attackofthesam.com/?p=100</link>
		<comments>http://www.attackofthesam.com/?p=100#comments</comments>
		<pubDate>Wed, 07 Oct 2009 19:34:39 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[gedit]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.attackofthesam.com/?p=100</guid>
		<description><![CDATA[in bash type
export SVN_EDITOR=gedit
]]></description>
			<content:encoded><![CDATA[<p>in bash type<br />
export SVN_EDITOR=gedit</p>
]]></content:encoded>
			<wfw:commentRss>http://www.attackofthesam.com/?feed=rss2&amp;p=100</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CFLAGS to get assembly and c code together</title>
		<link>http://www.attackofthesam.com/?p=99</link>
		<comments>http://www.attackofthesam.com/?p=99#comments</comments>
		<pubDate>Mon, 05 Oct 2009 21:05:11 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.attackofthesam.com/?p=99</guid>
		<description><![CDATA[export CFLAGS	= -Wall -g -Wa,-a,-ad,-ahls=$@.lst
]]></description>
			<content:encoded><![CDATA[<p>export CFLAGS	= -Wall -g -Wa,-a,-ad,-ahls=$@.lst</p>
]]></content:encoded>
			<wfw:commentRss>http://www.attackofthesam.com/?feed=rss2&amp;p=99</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>svn &amp; kompare</title>
		<link>http://www.attackofthesam.com/?p=98</link>
		<comments>http://www.attackofthesam.com/?p=98#comments</comments>
		<pubDate>Thu, 24 Sep 2009 19:36:36 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[differences]]></category>
		<category><![CDATA[kompare]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.attackofthesam.com/?p=98</guid>
		<description><![CDATA[svn diff -r500 &#124; kompare -o -
svn diff -r549:551 &#124; kompare -o -
]]></description>
			<content:encoded><![CDATA[<p>svn diff -r500 | kompare -o -<br />
svn diff -r549:551 | kompare -o -</p>
]]></content:encoded>
			<wfw:commentRss>http://www.attackofthesam.com/?feed=rss2&amp;p=98</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blue Ink</title>
		<link>http://www.attackofthesam.com/?p=97</link>
		<comments>http://www.attackofthesam.com/?p=97#comments</comments>
		<pubDate>Sun, 20 Sep 2009 04:15:28 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.attackofthesam.com/?p=97</guid>
		<description><![CDATA[Weird thing about some government forms is you cant use blue ink.  There should be a list of reasons for this.  Here are some of my suggestions.
And the color shall be black.  Not Grey, nor green or yellow.  Red is right out.
If any other color than black is used the writer [...]]]></description>
			<content:encoded><![CDATA[<p>Weird thing about some government forms is you cant use blue ink.  There should be a list of reasons for this.  Here are some of my suggestions.</p>
<p>And the color shall be black.  Not Grey, nor green or yellow.  Red is right out.</p>
<p>If any other color than black is used the writer shall perform tracing jobs over all blue.</p>
<p>The reader of this document may be color blind to any color than black.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.attackofthesam.com/?feed=rss2&amp;p=97</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inline Assembly set / clear status register</title>
		<link>http://www.attackofthesam.com/?p=96</link>
		<comments>http://www.attackofthesam.com/?p=96#comments</comments>
		<pubDate>Tue, 01 Sep 2009 21:23:49 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.attackofthesam.com/?p=96</guid>
		<description><![CDATA[		/*Lock Interupts*/
		uint16 srTemp;
		asm volatile (&#8221;move.w %%sr, %0;&#8221; : &#8220;=r&#8221;(srTemp)::/*none*/);
		asm volatile (&#8221;move.w #0&#215;2700, %sr;&#8221;);	/* Lock out interrupts */
]]></description>
			<content:encoded><![CDATA[<p>		/*Lock Interupts*/<br />
		uint16 srTemp;<br />
		asm volatile (&#8221;move.w %%sr, %0;&#8221; : &#8220;=r&#8221;(srTemp)::/*none*/);<br />
		asm volatile (&#8221;move.w #0&#215;2700, %sr;&#8221;);	/* Lock out interrupts */</p>
]]></content:encoded>
			<wfw:commentRss>http://www.attackofthesam.com/?feed=rss2&amp;p=96</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Assembly listing from a make file</title>
		<link>http://www.attackofthesam.com/?p=95</link>
		<comments>http://www.attackofthesam.com/?p=95#comments</comments>
		<pubDate>Mon, 31 Aug 2009 17:36:48 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.attackofthesam.com/?p=95</guid>
		<description><![CDATA[%.o: %.cpp $(HEADERS)
	@$(CC) -c $(CFLAGS) -c -g -Wa,-a,-ad,-ahls=$@.lst $(INCPATH) $< -o $@
	@echo Compiling $]]></description>
			<content:encoded><![CDATA[<p>%.o: %.cpp $(HEADERS)<br />
	@$(CC) -c $(CFLAGS) -c -g -Wa,-a,-ad,-ahls=$@.lst $(INCPATH) $< -o $@<br />
	@echo Compiling $<</p>
]]></content:encoded>
			<wfw:commentRss>http://www.attackofthesam.com/?feed=rss2&amp;p=95</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Command Alpha 0.0.0.0.0.1</title>
		<link>http://www.attackofthesam.com/?p=88</link>
		<comments>http://www.attackofthesam.com/?p=88#comments</comments>
		<pubDate>Tue, 23 Jun 2009 00:03:29 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.attackofthesam.com/?p=88</guid>
		<description><![CDATA[Visual Command
I have been playing around with this idea since I graduated in May.  I learned a lot about QT from this project.
It can dynamically create an interface for a command prompt application.
It currently uses check boxes, numerical integer , and strings as inputs.
Files, doubles, and sliders will be next, along with a way to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.attackofthesam.com/wp-content/uploads/2009/06/visualcommand.zip">Visual Command</a></p>
<p>I have been playing around with this idea since I graduated in May.  I learned a lot about QT from this project.</p>
<p>It can dynamically create an interface for a command prompt application.</p>
<p>It currently uses check boxes, numerical integer , and strings as inputs.</p>
<p>Files, doubles, and sliders will be next, along with a way to upload/download GUI interfaces to a server.</p>
<p>It was built using QT over the previous month.  Never used Qt before so it was more of a learning experience.</p>
<p><a href="http://www.attackofthesam.com/wp-content/uploads/2009/06/visualcommandedit.png"><img class="alignnone size-full wp-image-92" title="Visual Command Edit Mode" src="http://www.attackofthesam.com/wp-content/uploads/2009/06/visualcommandedit.png" alt="Visual Command Edit Mode" width="485" height="471" /></a><a href="http://www.attackofthesam.com/wp-content/uploads/2009/06/visualcommand.png"><img class="alignnone size-full wp-image-93" title="Visual Command run Mode" src="http://www.attackofthesam.com/wp-content/uploads/2009/06/visualcommand.png" alt="Visual Command run Mode" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.attackofthesam.com/?feed=rss2&amp;p=88</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Calling base function, and base constructor C++</title>
		<link>http://www.attackofthesam.com/?p=84</link>
		<comments>http://www.attackofthesam.com/?p=84#comments</comments>
		<pubDate>Wed, 17 Jun 2009 13:12:30 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Class]]></category>

		<guid isPermaLink="false">http://www.attackofthesam.com/?p=84</guid>
		<description><![CDATA[class ParentClass{
ParentClass(){
}
void FunctionA(){
}
}
class ChildClass:ParentClass{
ChildClass():ParentClass(){
}
void FunctionA(){
ParentClass::FunctionA();
}
}
]]></description>
			<content:encoded><![CDATA[<p>class ParentClass{</p>
<p style="padding-left: 30px;">ParentClass(){</p>
<p style="padding-left: 30px;">}</p>
<p style="padding-left: 30px;">void FunctionA(){</p>
<p style="padding-left: 30px;">}</p>
<p>}</p>
<p>class ChildClass:ParentClass{</p>
<p style="padding-left: 30px;">ChildClass():ParentClass(){</p>
<p style="padding-left: 30px;">}</p>
<p style="padding-left: 30px;">void FunctionA(){</p>
<p style="padding-left: 60px;">ParentClass::FunctionA();</p>
<p style="padding-left: 30px;">}</p>
<p>}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.attackofthesam.com/?feed=rss2&amp;p=84</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
