<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>The World According to KongKoro</title>
	<atom:link href="http://kongkoro.110mb.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://kongkoro.110mb.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 08 Aug 2009 22:25:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" -->
		<copyright>&#xA9; </copyright>
		<managingEditor>kongkoro@gmail.com ()</managingEditor>
		<webMaster>kongkoro@gmail.com()</webMaster>
		<category></category>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Just another WordPress weblog</itunes:summary>
		<itunes:author></itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name></itunes:name>
			<itunes:email>kongkoro@gmail.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://kongkoro.110mb.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://kongkoro.110mb.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>The World According to KongKoro</title>
			<link>http://kongkoro.110mb.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>IronPython &amp; Silverlight o MY!</title>
		<link>http://kongkoro.110mb.com/?p=172</link>
		<comments>http://kongkoro.110mb.com/?p=172#comments</comments>
		<pubDate>Fri, 07 Aug 2009 05:54:26 +0000</pubDate>
		<dc:creator>kongkoro</dc:creator>
				<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://kongkoro.110mb.com/?p=172</guid>
		<description><![CDATA[// 

This is a sample application that I made using Blend and IronPython!!  The Gui was made in Blend, and the event listener code for the button was written in IronPython!  This example was based on a tutorial by Tim Heuer, and I wanted to see if I could implement it with Iron Python and [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript">// <![CDATA[
        function onSourceDownloadProgressChanged(sender, eventArgs) {
            sender.findName("progressText").Text = Math.round((eventArgs.progress * 100)) + "% downloaded ...";
            sender.findName("progressBar").Width = eventArgs.progress * sender.findName("progressBarBackground").Width;
        }
// ]]&gt;</script><br />
<div id="silverlightControlHost"><object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="400" height="300"><param name="source" value=".//silvr/click.zip"/><param name="background" value="white" /><param name="minRuntimeVersion" value="2.0.31005.0" /><param name="enableHtmlAccess" value="true" /><a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;"><img src="http://storage.timheuer.com/sl4wp-ph.png" alt="Install Microsoft Silverlight" style="border-style: none; width:400px; height:200px"/></a></object><iframe style='visibility:hidden;height:0;width:0;border:0px'></iframe></div><br /></p>
<p>This is a sample application that I made using Blend and IronPython!!  The Gui was made in Blend, and the event listener code for the button was written in IronPython!  This example was based on a <a href="http://beta.silverlight.net/learn/videos/silverlight-videos/getting-started-with-silverlight-development" target="_blank">tutorial</a> by <a href="http://timheuer.com/blog/" target="_blank">Tim Heuer</a>, and I wanted to see if I could implement it with Iron Python and I did.  It&#8217;s nice to see the Dynamic Language Runtime in action, and being able to interact with XAML from python is GRrrrEeaaTTt.</p>
<p><span id="more-172"></span></p>
<p>My app.py code:</p>
<div id="apy" style="border:solid 1px #DEDEDE;background:#EFEFEF;color:#222222;padding:4px; text-lign:center;">from System.Windows import Application<br />
from System.Windows.Controls import ( UserControl, Grid, RowDefinition, ColumnDefinition, Button, TextBlock, TextBox )</p>
<p>xaml = Application.Current.LoadRootVisual(UserControl(), &#8220;app.xaml&#8221;)<br />
root = xaml.LayoutRoot</p>
<p>#the Click Method<br />
def onClick(s,e):<br />
root.outText.Text = root.inText.Text</p>
<p>#add onClick to btn event handler<br />
root.btnText.Click += onClick</p></div>
<p>My app.xaml code:</p>
<div id="apy" style="border:solid 1px #DEDEDE;background:#EFEFEF;color:#222222;padding:4px; text-lign:center;">&lt;UserControl<br />
xmlns=&#8221;http://schemas.microsoft.com/winfx/2006/xaml/presentation&#8221;<br />
xmlns:x=&#8221;http://schemas.microsoft.com/winfx/2006/xaml&#8221;<br />
xmlns:d=&#8221;http://schemas.microsoft.com/expression/blend/2008&#8243; xmlns:mc=&#8221;http://schemas.openxmlformats.org/markup-compatibility/2006&#8243;<br />
x:Class=&#8221;System.Windows.Controls.UserControl&#8221;<br />
&gt;</p>
<p>&lt;Grid x:Name=&#8221;LayoutRoot&#8221; Background=&#8221;White&#8221; ShowGridLines=&#8221;True&#8221;&gt;<br />
&lt;Grid.RowDefinitions&gt;<br />
&lt;RowDefinition /&gt;<br />
&lt;RowDefinition /&gt;<br />
&lt;RowDefinition /&gt;<br />
&lt;/Grid.RowDefinitions&gt;</p>
<p>&lt;TextBox Margin=&#8221;8&#8243; Grid.Row=&#8221;0&#8243;  Text =&#8221;Write Here&#8221; TextWrapping=&#8221;Wrap&#8221; x:Name=&#8221;inText&#8221; FontSize=&#8221;16&#8243; TextAlignment=&#8221;Center&#8221;/&gt;<br />
&lt;Button Margin=&#8221;8&#8243; Grid.Row=&#8221;1&#8243; Content=&#8221;Click Me!&#8221; x:Name=&#8221;btnText&#8221;/&gt;<br />
&lt;TextBlock Margin=&#8221;8&#8243; Grid.Row=&#8221;2&#8243;  TextWrapping=&#8221;Wrap&#8221; x:Name=&#8221;outText&#8221; TextAlignment=&#8221;Center&#8221;/&gt;</p>
<p>&lt;/Grid&gt;<br />
&lt;/UserControl&gt;</p></div>
<p>The complete project is available <a href="http://kongkoro.110mb.com/silvr/click.zip">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kongkoro.110mb.com/?feed=rss2&amp;p=172</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SuperFreak of  the Week! Final Edition</title>
		<link>http://kongkoro.110mb.com/?p=166</link>
		<comments>http://kongkoro.110mb.com/?p=166#comments</comments>
		<pubDate>Tue, 16 Jun 2009 17:03:36 +0000</pubDate>
		<dc:creator>kongkoro</dc:creator>
				<category><![CDATA[SuperFreak]]></category>

		<guid isPermaLink="false">http://kongkoro.110mb.com/?p=166</guid>
		<description><![CDATA[The LAST Super Freak of the Week Segment of my collegiate career&#8230;.ENJOY!!
]]></description>
			<content:encoded><![CDATA[<p>The LAST Super Freak of the Week Segment of my collegiate career&#8230;.ENJOY!!</p>
]]></content:encoded>
			<wfw:commentRss>http://kongkoro.110mb.com/?feed=rss2&amp;p=166</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<enclosure url="http://filebox.vt.edu/users/spdykoro/muz/Last.mp3" length="1" type="audio/mpeg"/>
<itunes:duration>00:01:01</itunes:duration>
		<itunes:subtitle>The LAST Super Freak of the Week Segment of my collegiate career....ENJOY!! </itunes:subtitle>
		<itunes:summary>The LAST Super Freak of the Week Segment of my collegiate career....ENJOY!!</itunes:summary>
		<itunes:keywords>SuperFreak</itunes:keywords>
		<itunes:author>kongkoro@gmail.com</itunes:author>
		<itunes:explicit>no</itunes:explicit>
		<itunes:block>No</itunes:block>
	</item>
		<item>
		<title>SuperFreak of the Week! Tiger Edition</title>
		<link>http://kongkoro.110mb.com/?p=164</link>
		<comments>http://kongkoro.110mb.com/?p=164#comments</comments>
		<pubDate>Tue, 16 Jun 2009 15:51:59 +0000</pubDate>
		<dc:creator>kongkoro</dc:creator>
				<category><![CDATA[SuperFreak]]></category>
		<category><![CDATA[radio]]></category>

		<guid isPermaLink="false">http://kongkoro.110mb.com/?p=164</guid>
		<description><![CDATA[It&#8217;s Tiger Woods y&#8217;all!!
]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s Tiger Woods y&#8217;all!!</p>
]]></content:encoded>
			<wfw:commentRss>http://kongkoro.110mb.com/?feed=rss2&amp;p=164</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<enclosure url="http://filebox.vt.edu/users/spdykoro/muz/Tiger.mp3" length="1" type="audio/mpeg"/>
<itunes:duration>00:01:01</itunes:duration>
		<itunes:subtitle>It's Tiger Woods y'all!! </itunes:subtitle>
		<itunes:summary>It's Tiger Woods y'all!!</itunes:summary>
		<itunes:keywords>SuperFreak</itunes:keywords>
		<itunes:author>kongkoro@gmail.com</itunes:author>
		<itunes:explicit>no</itunes:explicit>
		<itunes:block>No</itunes:block>
	</item>
		<item>
		<title>SuperFreak of the Week! Penguins Edition</title>
		<link>http://kongkoro.110mb.com/?p=162</link>
		<comments>http://kongkoro.110mb.com/?p=162#comments</comments>
		<pubDate>Tue, 16 Jun 2009 15:49:56 +0000</pubDate>
		<dc:creator>kongkoro</dc:creator>
				<category><![CDATA[SuperFreak]]></category>
		<category><![CDATA[radio]]></category>

		<guid isPermaLink="false">http://kongkoro.110mb.com/?p=162</guid>
		<description><![CDATA[Sample of a segement I did on the campus radio station at VT. Enjoy!!
]]></description>
			<content:encoded><![CDATA[<p>Sample of a segement I did on the campus radio station at VT. Enjoy!!</p>
]]></content:encoded>
			<wfw:commentRss>http://kongkoro.110mb.com/?feed=rss2&amp;p=162</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<enclosure url="http://filebox.vt.edu/users/spdykoro/muz/Penguins.mp3" length="1" type="audio/mpeg"/>
<itunes:duration>00:01:01</itunes:duration>
		<itunes:subtitle>Sample of a segement I did on the campus radio station at VT. Enjoy!! </itunes:subtitle>
		<itunes:summary>Sample of a segement I did on the campus radio station at VT. Enjoy!!</itunes:summary>
		<itunes:keywords>SuperFreak</itunes:keywords>
		<itunes:author>kongkoro@gmail.com</itunes:author>
		<itunes:explicit>no</itunes:explicit>
		<itunes:block>No</itunes:block>
	</item>
		<item>
		<title>NUGGETS WIN!!</title>
		<link>http://kongkoro.110mb.com/?p=143</link>
		<comments>http://kongkoro.110mb.com/?p=143#comments</comments>
		<pubDate>Fri, 22 May 2009 04:38:10 +0000</pubDate>
		<dc:creator>kongkoro</dc:creator>
				<category><![CDATA[basketball]]></category>
		<category><![CDATA[sports]]></category>

		<guid isPermaLink="false">http://kongkoro.110mb.com/?p=143</guid>
		<description><![CDATA[1. Chauncey Billups bouncing the ball off of Kobe&#8217;s arm to get the easy lay-up under the basket.
2.Carmelo blowing up the Lakers for 34 points.
It is painfully obvious that Carmelo and Chauncey are going to have to make big plays if they&#8217;re going to get past the Lakers, and thankfully they did EXACTLY that on [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_142" class="wp-caption alignleft" style="width: 277px"><img class="size-full wp-image-142" title="Chauncey_Carmelo" src="http://kongkoro.110mb.com/wp-content/uploads/2009/05/610x.jpg" alt="Chauncey Billups and Carmelo Anthony" width="267" height="173" /><p class="wp-caption-text">Chauncey &amp; Carmelo</p></div>
<p style="text-align: left;">1. Chauncey Billups bouncing the ball off of Kobe&#8217;s arm to get the easy lay-up under the basket.</p>
<p style="text-align: left;">2.Carmelo blowing up the Lakers for 34 points.</p>
<p style="text-align: left;">It is painfully obvious that Carmelo and Chauncey are going to have to make big plays if they&#8217;re going to get past the Lakers, and thankfully they did EXACTLY that on Thursday night.  The Refs may have missed a few calls here and there, but the Nuggets did what they had to do to get the win.  Kobe is absolutely insane, some of the shots he hit in game 2 were absolutely ridiculous. This series is going to continue to be a blast to watch, both teams are bringing it.</p>
<p style="text-align: left;">
<p style="text-align: left;">THIS IS PLAYOFF BASKETBALL!!!</p>
<p style="text-align: left;">Chauncey, Carmelo&#8230;DO WORK!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://kongkoro.110mb.com/?feed=rss2&amp;p=143</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
