<?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>kanno41.com &#124; Blog</title>
	<atom:link href="http://kanno41.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kanno41.com</link>
	<description>My annually updated blog, apparently</description>
	<lastBuildDate>Wed, 16 Mar 2011 17:01:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Aero Battery</title>
		<link>http://kanno41.com/2011/02/aero-battery/</link>
		<comments>http://kanno41.com/2011/02/aero-battery/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 19:43:31 +0000</pubDate>
		<dc:creator>Kenny</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://kanno41.com/?p=36</guid>
		<description><![CDATA[Introducing Aero Battery, an application that shows you your laptop&#8217;s battery life via the Windows color scheme.  Transitions from green to red as your battery goes from full to empty. You&#8217;re welcome to try it out and tell me what &#8230;<p class="read-more"><a href="http://kanno41.com/2011/02/aero-battery/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Introducing Aero Battery, an application that shows you your laptop&#8217;s battery life via the Windows color scheme.  Transitions from green to red as your battery goes from full to empty.</p>
<p>You&#8217;re welcome to try it out and tell me what you think.  It&#8217;s free <img src='http://kanno41.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://kanno41.com/AeroBattery/AeroBatterySetup.exe">http://kanno41.com/AeroBattery/AeroBatterySetup.exe</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kanno41.com/2011/02/aero-battery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MIX 2011 Bound!</title>
		<link>http://kanno41.com/2011/02/mix-2011-bound/</link>
		<comments>http://kanno41.com/2011/02/mix-2011-bound/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 19:01:48 +0000</pubDate>
		<dc:creator>Kenny</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://kanno41.com/?p=33</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="https://msteched.blob.core.windows.net/media/Default/BlogPost/news/MIX11_BB_SeeYouAt_1.gif" alt="" width="240" height="380" /></p>
]]></content:encoded>
			<wfw:commentRss>http://kanno41.com/2011/02/mix-2011-bound/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oh how I love technology</title>
		<link>http://kanno41.com/2011/02/oh-how-i-love-technology/</link>
		<comments>http://kanno41.com/2011/02/oh-how-i-love-technology/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 22:11:20 +0000</pubDate>
		<dc:creator>Kenny</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://kanno41.com/?p=29</guid>
		<description><![CDATA[I really like my job.  It allows me to try out new things and I am always learning.  The one thing about technology these days is how one thing evolves into another so quickly that we rarely step back and &#8230;<p class="read-more"><a href="http://kanno41.com/2011/02/oh-how-i-love-technology/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I really like my job.  It allows me to try out new things and I am always learning.  The one thing about technology these days is how one thing evolves into another so quickly that we rarely step back and think about what is actually going on.  I thought I would show how a few cool things working together can make some REALLY cool.  Microsoft has made such an excellent product that truly is an integrated development environment.</p>
<p>For the airport&#8217;s intranet site, I created a CodedUI test using Visual Studio 2010 Premium to exercise the user interface for a particular page.  It consisted of opening up the browser, clicking on links, Assert()ing that they existed and that everything is working as it should.  A CodedUI test can then be &#8220;played back&#8221; when the tests are run.</p>
<p>Now on to the next bit.  I am using Team Foundation Server (TFS) 2010 for Source Control, Work Item management, and Building.  What&#8217;s really slick is being able to utilize the TFS server to build the project.  I defined a build specification so that it would work like a Continuous Integration (CI) system.  Whenever code is checked in, the server will build the code and copy the binaries to a directory.  If the build fails, the code is rejected.</p>
<p>So what makes this even more awesome, is that with Visual Studio Test Agent, I can run CodedUI tests on a separate test machine from my Visual Studio instance.</p>
<p>Recently, I have been granted access to the network over VPN.  VPN is Virtual Private Networking.  Basically, anywhere there is internet, I can access the servers on the airport&#8217;s local network without physically being there.</p>
<p>So there I was, sitting at home drinking coffee.  I pull out my laptop at the kicthen table and connect through VPN (no wires or anything, wireless is cool beans), and decide to make a quick change to the code of the intranet site.  When I check in my code, the TFS server all the way over at the airport builds the code, copies the build to the test machine, runs the CodedUI test on the test machine, delivers the result to the build server and then TFS accepts the new code (Changeset).</p>
<p>I think that&#8217;s really slick.  It&#8217;s truly mind boggling to think of all the underlying technology it takes for that to just &#8220;work.&#8221;  And this is why I really love technology.</p>
]]></content:encoded>
			<wfw:commentRss>http://kanno41.com/2011/02/oh-how-i-love-technology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s been another year!</title>
		<link>http://kanno41.com/2010/10/its-been-another-year/</link>
		<comments>http://kanno41.com/2010/10/its-been-another-year/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 04:27:58 +0000</pubDate>
		<dc:creator>Kenny</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://kanno41.com/?p=27</guid>
		<description><![CDATA[I think I&#8217;m doing quite well with this once yearly blog.  Oh man, what a year.  Soulfire Software just released SketchBox 360 on the Xbox Live Marketplace.  I&#8217;m so humbled by the team with Soulfire and I have so much &#8230;<p class="read-more"><a href="http://kanno41.com/2010/10/its-been-another-year/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I think I&#8217;m doing quite well with this once yearly blog.  Oh man, what a year.  Soulfire Software just released <a href="http://marketplace.xbox.com/en-US/games/media/66acd000-77fe-1000-9115-d802585505cf">SketchBox 360</a> on the Xbox Live Marketplace.  I&#8217;m so humbled by the team with Soulfire and I have so much respect for every one of them.  I am now a Junior at The Ohio State University.  School is back underway and it feels like I&#8217;m starting to get used to it or something.  It doesn&#8217;t seem to bother me much anymore.  It&#8217;s always hard to stay motivated, but the pain will soon end.  Not much else exciting has been going on.  I&#8217;ve been living and breathing SketchBox almost all summer long and doing work/school for the other parts.  One might say it is dull;  I think it is incredibly fulfilling.  Nothing can compare to the feeling of accomplishment when we finally finished and released SketchBox.  You learn about things that are more important than one man.  Working with a team of such talent is just awesome.</p>
<p>Well, that&#8217;s all for another year!  See ya next time.</p>
]]></content:encoded>
			<wfw:commentRss>http://kanno41.com/2010/10/its-been-another-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ahh the good life.</title>
		<link>http://kanno41.com/2009/10/ahh-the-good-life/</link>
		<comments>http://kanno41.com/2009/10/ahh-the-good-life/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 05:43:24 +0000</pubDate>
		<dc:creator>Kenny</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://kanno41.com/?p=24</guid>
		<description><![CDATA[My blog has now turned into a once yearly blog.  As it so happens, I seem to post something about 1-2 a year.  The reason?  I would attribute this to being &#8220;busy.&#8221;  What does &#8220;busy&#8221; mean?  Well, I&#8217;d say, but &#8230;<p class="read-more"><a href="http://kanno41.com/2009/10/ahh-the-good-life/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>My blog has now turned into a once yearly blog.  As it so happens, I seem to post something about 1-2 a year.  The reason?  I would attribute this to being &#8220;busy.&#8221;  What does &#8220;busy&#8221; mean?  Well, I&#8217;d say, but I don&#8217;t have time.  I&#8217;ll give it a go in one sentence.  Mainly stuff related to school at The Ohio State University full time, working with <a title="enflight.com" href="http://enflight.com" target="_blank">enflight.com</a> (awesome web-based flight planning software), flying to Oshkosh, working with <a href="http://soulfiresoft.com">Soulfire Software</a> on an XNA animation tool and game, the <a href="http://ohioaviation.info">Ohio Aviation Association</a> website, fixing and building various computers, and working at OSU Airport maintaining their intranet site,<a href="http://osuairport.org">Osuairport.org</a> and the Aviation Department website, both in <a href="http://aviation.osu.edu">Silverlight</a>, and <a href="http://aviation.osu.edu/Default2.aspx">ASP.NET</a> versions.  I do pretty much all of this on a daily basis.  To say that I have bitten off more than I can chew is an understatement.  It&#8217;s a challenge, certainly, to keep it all straight in my head.  Languages needed for the above projects: PHP,HTML, CSS, Javascript, ASP.NET (built my own CMS), WPF/Silverlight (XAML), XML, C# (XNA Framework), VB.NET, and C.  Oh, and flying airplanes is cool too, I guess.  I&#8217;m still working on my IFR rating amongst other things that are missing from this short list.</p>
<p>I&#8217;m going to go to bed now.  I think I need it pretty desperately at the moment.</p>
]]></content:encoded>
			<wfw:commentRss>http://kanno41.com/2009/10/ahh-the-good-life/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Life.Alive!</title>
		<link>http://kanno41.com/2008/10/lifealive/</link>
		<comments>http://kanno41.com/2008/10/lifealive/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 06:03:08 +0000</pubDate>
		<dc:creator>Kenny</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://kanno41.com/?p=20</guid>
		<description><![CDATA[Yes it is true; I am alive!  I cannot possibly sum up all of the things that I&#8217;ve been going through since the last post because that would be a waste of time.  A short synopsis in one word: busy.  &#8230;<p class="read-more"><a href="http://kanno41.com/2008/10/lifealive/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Yes it is true; I am alive!  I cannot possibly sum up all of the things that I&#8217;ve been going through since the last post because that would be a waste of time.  A short synopsis in one word: busy.  I am now taking classes at The Ohio State University and have been in a generally good mood, not having to wake up early anymore.  I hate waking up early with a passion.  It may be because I enjoy staying up all night.</p>
<p>The most exciting thing going on this coming week is Microsoft PDC out in LA.  I look forward to having a whole week of pure techawesomeness (is that even a word?!?!).  While in LA, I will get my hands on a pre-beta version of Windows 7!  I am looking forward also to using the Microsoft Surface while I am there.</p>
<p>Lately I have been too busy with classes to handle many other projects.  I am currently working on an XNA project with a friend up at Bowling Green who is doing all of the artwork and modeling for the game while I do the programming.</p>
<p>I simply can&#8217;t believe that we are nearing the end of October already.  It is getting quite a bit colder outside, but that&#8217;s okay, I like it cold.  It&#8217;s 43degrees outside yet you&#8217;d see me in shorts and a T-shirt.  Along with other ramblings, Top Gun in Bluray with 1080p is amazing.  It was quite a brilliant idea to include a Bluray player in every PS3.  I would expect it to be a pretty well-selling item this Christmas.  In Apple&#8217;s infinite brilliance, none of their computers have support for Bluray or even HDMI for that matter.</p>
<p>I will likely update this blog a bit next week with all of the coolness going on at PDC, so yea, back to coding like a good little boy for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://kanno41.com/2008/10/lifealive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Misc.New Theme!</title>
		<link>http://kanno41.com/2008/04/miscnew-theme/</link>
		<comments>http://kanno41.com/2008/04/miscnew-theme/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 01:22:21 +0000</pubDate>
		<dc:creator>Kenny</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://kanno41.com/?p=19</guid>
		<description><![CDATA[I finally found a new theme that looks very nice for this blog.  I&#8217;ve got a nice post that I am still preparing about my trip to Phoenix (actually Wittenburg), Arizona in our small private plane.  I&#8217;ve got video and &#8230;<p class="read-more"><a href="http://kanno41.com/2008/04/miscnew-theme/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I finally found a new theme that looks very nice for this blog.  I&#8217;ve got a nice post that I am still preparing about my trip to Phoenix (actually Wittenburg), Arizona in our small private plane.  I&#8217;ve got video and other stuff for it, but not nearly enough time right now.  I&#8217;m preparing for robotics right now (I&#8217;ll have a post about that too), coding and stuff.</p>
<p>I will have more content later.</p>
]]></content:encoded>
			<wfw:commentRss>http://kanno41.com/2008/04/miscnew-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Life.Hmm</title>
		<link>http://kanno41.com/2008/03/mischmm/</link>
		<comments>http://kanno41.com/2008/03/mischmm/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 01:18:19 +0000</pubDate>
		<dc:creator>Kenny</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://kanno41.com/2008/03/09/mischmm/</guid>
		<description><![CDATA[Hmm. I haven&#8217;t updated my blog in a while for a few reasons. I&#8217;ve been working, sleeping, and breathing. Not much else. I suppose I just had to take a break from blogging for the winter. Happy 2008 everyone! It&#8217;s &#8230;<p class="read-more"><a href="http://kanno41.com/2008/03/mischmm/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Hmm.</p>
<p>I haven&#8217;t updated my blog in a while for a few reasons. I&#8217;ve been working, sleeping, and breathing.  Not much else.  I suppose I just had to take a break from blogging for the winter.  Happy 2008 everyone!  It&#8217;s official, I have been accepted the The Ohio State University at Marion.  I hope it will be an exciting time to meat new people.  I&#8217;m winding down the last couple of months of my high school career. In election news, I was a poll worker for election day in Ohio.  An awful lot of Republicans sabotaged the Democratic Primary. Hehehehe. *Cough* anyway, 15 hours of working at the polls was very enjoyable for me.</p>
<p>I don&#8217;t have much else to say, other than we have a snow day tomorrow.  I believe we set a record for most snow in 24 hours yesterday.  I&#8217;m so thankful for furnaces and gas heat is all I can say.</p>
<p>Take care.</p>
]]></content:encoded>
			<wfw:commentRss>http://kanno41.com/2008/03/mischmm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aviation.Private Pilot</title>
		<link>http://kanno41.com/2007/09/aviationprivate-pilot/</link>
		<comments>http://kanno41.com/2007/09/aviationprivate-pilot/#comments</comments>
		<pubDate>Sun, 30 Sep 2007 16:38:39 +0000</pubDate>
		<dc:creator>Kenny</dc:creator>
				<category><![CDATA[Aviation]]></category>

		<guid isPermaLink="false">http://kanno41.com/2007/09/30/aviationprivate-pilot/</guid>
		<description><![CDATA[Well, sorry for not updating for a couple months, but I have been extremely busy lately. Last week on my 17th birthday, I passed my check ride and earned my Private Pilot&#8217;s license! 17 is the earliest age which you &#8230;<p class="read-more"><a href="http://kanno41.com/2007/09/aviationprivate-pilot/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Well, sorry for not updating for a couple months, but I have been extremely busy lately.  Last week on my 17th birthday, I passed my check ride and earned my Private Pilot&#8217;s license!  17 is the earliest age which you can get your private pilot&#8217;s license.  Because many people don&#8217;t know what it takes to get a private pilot&#8217;s license, I&#8217;ll give you a brief overview.  You must have a student pilot&#8217;s license, meaning you have to go find an FAA Medical examiner because you need a medical certificate to make sure you are healthy enough to fly.  With your student pilot&#8217;s license, you can not fly passengers.  You can only fly with a flight instructor.  After enough time and instruction, he will endorse your logbook (Logbook is required to keep track of flights and such while being a student pilot) so that you may solo an airplane all by yourself.  As a student pilot striving for a private pilot&#8217;s license, you need 40 hours of flight time.  20 hours must be with an instructor and the other 20 must be solo time.  The regulations make you do a certain number of night flying, cross-country, and solo hours that make up the 40 hours.   You must also pass a 60 question knowledge test to show that you know all of the rules, regulations ect..  It all came down to the wire, and I passed everything.  I am so proud that I was able to achieve this.  It&#8217;s truly a wonderful feeling of accomplishment.  Now I can fly passengers and go anywhere I want to whenever (Not that I will, of course <img src='http://kanno41.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  )</p>
]]></content:encoded>
			<wfw:commentRss>http://kanno41.com/2007/09/aviationprivate-pilot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic Script tags</title>
		<link>http://kanno41.com/2007/07/dynamic-script-tags/</link>
		<comments>http://kanno41.com/2007/07/dynamic-script-tags/#comments</comments>
		<pubDate>Fri, 20 Jul 2007 16:45:05 +0000</pubDate>
		<dc:creator>Kenny</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://kanno41.com/?p=16</guid>
		<description><![CDATA[It must be the future!  People have used a certain term, AJAX recently to make stealthful requests only the same domain.  This doesn&#8217;t work in my case because forums.fearlessfew.com and fearlessfew.com can not access each other via AJAX.  One option down, and &#8230;<p class="read-more"><a href="http://kanno41.com/2007/07/dynamic-script-tags/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>It must be the future!  People have used a certain term, AJAX recently to make stealthful requests only the same domain.  This doesn&#8217;t work in my case because forums.fearlessfew.com and fearlessfew.com can not access each other via AJAX.  One option down, and a Google search to go.  I was looking at something called a dynamic script tag that used something called JSON which was all really complicated and I still don&#8217;t understand most of it.</p>
<p>I&#8217;ll try to explain the best way to bypass security policies of AJAX.  Lets say you want to pass on a variable to a PHP script.  You could use GET parameters from the URL that looks something like this</p>
<p><code>http://domain.com/index.php?woot=kanno41</code><br />
The final goal is to pass kanno41 or some variable to a PHP script unobtrusively.  What a dynamic script tag does is that it creates a script tag which can access a source file from <em>ANY </em>domain.  Here is an example of what the script will put on the page:<br />
<code>&lt;script type="text/javascript" src="http://domain.com/index.php?woot=kanno41"&gt;&lt;/script&gt;</code><br />
When this script is loaded, the &#8220;woot&#8221; variable with the value kanno41 will be passed onto the index.php file. Now, what if you don&#8217;t know what variable you want to send yet on page load, or you want someone clicking on something to send that data? This is where the dynamic script tag comes in. It is merely simple javascript.</p>
<pre><code>&lt;script type="text/javascript"&gt; 
function mkscr(url){               
var script=document.createElement('script'); // pretty self explanatory               
script.src=url; // sets the scripts source to the specified url               
script.type="text/javascript";

document.getElementsByTagName('head')[0].appendChild(script); // appends the tag to the head          
}
&lt;/script&gt;</code></pre>
<p>When we run this function and pass a URL to it, it will build the script tag which we mentioned earlier. To run a function, let&#8217;s do something like this, for something simple:<br />
<code>&lt;input type="button" onclick="mkscr(http://domain.com/index.php?woot=kanno41);" /&gt;</code></p>
<p>This will cause a script from any another server or domain to be loaded right when you would click on that button. In my case, since I am making the script&#8217;s source be a PHP script, I pass on the &#8220;woot&#8221; variable with the value kanno41. When this is loaded, the PHP file will be able to get anything passed to it through the GET parameters.What if you want to pass on something which could change all of the time? Just make a little script like this one for example:</p>
<pre><code>&lt;script type="text/javascript"&gt; 
//Take the HTML fromm the element with the id rawr  
var yea = document.getElementById("rawr").innerHTML; 
//Set up the URL to load for the script
urlstr = "http://domain.com/index.php?woot="+yea;         
//Use the mkscr function to create a script tag that will load with a dynamic variable from JS.

mkscr(urlstr);  
&lt;/script&gt;</code></pre>
<p>To me, this is a revelation. I can now send any variables to a PHP script through this method.</p>
<p>For me, I would have the PHP script return some javascript back, maybe something like</p>
<pre><code>&lt;?php 
$woo = $_GET['woot'];
//You are using this as a javascript file, so echo out any JS you want to.
//I used an alert() just because I felt like it
echo "alert('$woo')";
?&gt;</code></pre>
<p>I hope you&#8217;ve enjoyed reading this and maybe you learned something, or maybe you didn&#8217;t. Feel free to ask questions about this. Some stuff may not wrap correctly, but there&#8217;s nothing I can do about that.</p>
]]></content:encoded>
			<wfw:commentRss>http://kanno41.com/2007/07/dynamic-script-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

