<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Bits of Art &#187; Uncategorized</title>
	<atom:link href="http://burag.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://burag.com</link>
	<description>software matters</description>
	<lastBuildDate>Wed, 18 Jan 2012 20:25:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='burag.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Bits of Art &#187; Uncategorized</title>
		<link>http://burag.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://burag.com/osd.xml" title="Bits of Art" />
	<atom:link rel='hub' href='http://burag.com/?pushpress=hub'/>
		<item>
		<title>My Mobile Development Experience on iOS, Android and Windows Phone 7</title>
		<link>http://burag.com/2011/06/24/my-mobile-development-experience-on-ios-android-and-windows-phone-7/</link>
		<comments>http://burag.com/2011/06/24/my-mobile-development-experience-on-ios-android-and-windows-phone-7/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 04:03:52 +0000</pubDate>
		<dc:creator>buragc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://buragc.wordpress.com/?p=124</guid>
		<description><![CDATA[My mobile development itch started as soon as the iPhone came out. I just wanted to create some quick apps/games as a hobby. Over the course of next couple of years I developed on the iOS/Android and WP7 with different experiences/features/limitations. Below I summarize my personal experience in different platforms. Full Disclaimer: I am not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=124&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My mobile development itch started as soon as the iPhone came out. I just wanted to create some quick apps/games as a hobby. Over the course of next couple of years I developed on the iOS/Android and WP7 with different experiences/features/limitations. Below I summarize my personal experience in different platforms.</p>
<p><em>Full Disclaimer: I am not developing primarily for monetary purposes, since this is a side project it needs to be fun for me and I have been using .NET since the first beta.</em></p>
<h2>iOS Development with Objective-C ~ circa 2009</h2>
<p>Although architectural approach looked perfect on paper (use of MVC, clear separation of different responsibilities), the development experience with IDE and the language was a while different story. Simple things such as creating properties would require 3 disconnected steps, the libraries were a left-over from the Next Systems (NS-prefix on everything) and frankly for someone with Java/C# experience on a day to day basis it felt like I was going back in time to develop on a device. Long story short, I was not having enough fun to develop on the iOS to make it a hobby. I suppose since I was not quite interested in the monetary rewards that comes with iOS development, I lost interest and stopped altogether.</p>
<h2>iOS Development with Titanium ~ circa 2009/10</h2>
<p>Then I used Titanium to see if it was possible to come up with a simple application using JavaScript for behavior and a JS like layout language. Yes, it was possible and it was pretty quick too. I actuallly published one application. However, since Titanium was an abstraction on top of the native API, certain lower level things were not quite accessible. It remains a viable option to create a form over data type of&nbsp; application within a couple hours, but for games and more complex applications it was not really a good candidate in my opinion. </p>
<h2>Andoid Development with Titanium ~ circa 2009/10</h2>
<p>While I was at it, I figured it would be interesting to see if the same code-base I used for iOS using Titanium would compile and run on Android. Unfortunately the experience was not that great. Credit to Titanium folks who really try hard to create a consistent cross-platform compatible API and I admit that it is a very hard problem get 100% right and make everyone happy.&nbsp; <br />Although 80% of the code-base just worked fine, certain things kept just crashing and I was not too keen on isolating every single issue and then forking the code, so I stopped there.<br />Android Development with Java ~ circa 2010<br />After the not so successful try with Titanium on Android, I went ahead and started looking into Android SDK. Farnkly, I love the architecture. It is well thought and makes complete sense to any programmer who looks at it for the first time (unlike the iPhone SDK). I created a couple of prototypes and deployed onto the emulator everything worked fine and I was happy. Since I did not have an Android device at that time, I did not test on the device. The only thing that I did not like about this was how slow the Simulator was and each compile/deploy took forever on a reasonably good machine (dual-core, 4GB ram etc). </p>
<p><strong></strong>&nbsp;</p>
<h2>Windows Phone Development with Silverlight: ~ 2010</h2>
<p><strong></strong><br />When they announced Windows Phone 7 SDK beta prior to the device launch, I did not pay much attention to it. Then one day, I realized it was using Silverlight. Since I had used Silverlight on a couple of projects I had a good idea on how to get started on it. I downloaded the SDK and within 6 hours I had ported the game done in Titanium over the course of 2 weeks. I have to admit that C# and Silverlight with Visual Studio are my comfort zone. That probably has much to do with the fact that it took so little time. </p>
<p>One thing that was not too exciting on the Windows platform was that it is way too simple to get started and create the apps just like the VB6 days. Stuff everything into the UI control handlers and let the code execute in the UI thread and eventually lock the thread by doing web-bound I/O.&nbsp; Hopefully, certain frameworks that are available out there will emerge and somewhat force developers to use the MVVM pattern when developing apps on the WP7.<br />As per gaming experience, I certainly love the XNA model. It was my first introduction to XNA with WP7 and it is very simple to grasp and run with. I definitely recommend looking into WP7 with XNA to all developers who are trying to get into game development.</p>
<h2>Conclusion</h2>
<p><strong></strong><br />In my experience, working with iOS using the intermediary language/platform such as Titanium was a good enough way to create some line of business apps or simple things. Android has a great SDK but really suffers from JDS (Java Development Syndrome) on the windows stack &#8211; hopefully Linux environments are faster/more stable, and Windows Phone 7 development is the easiest for existing .NET developers, has great IDE/environment support. <br />I am really hoping to use MonoTouch and MonoDroid in the next couple of months to see if cross-compilation/execution of mobile apps is possible with C# or will people have to wait for HTML5 to be available on all platforms.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buragc.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buragc.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buragc.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buragc.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buragc.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buragc.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buragc.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buragc.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buragc.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buragc.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buragc.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buragc.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buragc.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buragc.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=124&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://burag.com/2011/06/24/my-mobile-development-experience-on-ios-android-and-windows-phone-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4fa7e44a2ebc7b8be526c8b703312a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Burag</media:title>
		</media:content>
	</item>
		<item>
		<title>Moving away from GoDaddy</title>
		<link>http://burag.com/2011/03/31/moving-away-from-godaddy/</link>
		<comments>http://burag.com/2011/03/31/moving-away-from-godaddy/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 21:17:31 +0000</pubDate>
		<dc:creator>buragc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://burag.com/?p=116</guid>
		<description><![CDATA[I had been using GoDaddy&#8217;s domain registration services for a long time (this domain is also being served by them) despite their tacky commercials and confusing UI. I always found the hassle of switching carriers to be too much effort as long as the service did the job. After all, how many times do you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=116&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had been using GoDaddy&#8217;s domain registration services for a long time (this domain is also being served by them) despite their tacky commercials and confusing UI. I always found the hassle of switching carriers to be too much effort as long as the service did the job. After all, how many times do you need to go back and play around with your domain settings after the initial purchase/setting.</p>
<p>However <a title="Bob Parsons killing Elephant" href="http://jacquesmattheij.com/How+to+damage+your+brand+in+one+smooth+shot+Way+to+GoDaddy">seeing Bob Parsons kill an elephant in Africa while making the entire village wear GoDaddy hats</a> was something I really could not stomach. So effective today, I will start moving my domains away from GoDaddy (about 60 of them) to another provider like NameCheap.com.</p>
<p>For those of you wondering how you can do this quickly (through the complicated UI that GoDaddy has that practically makes this impossible) here is a <a href="http://blog.dnsimple.com/post/3167427271/preparing-domains-in-godaddy-for-transfer-out">guide on how to switch your domains from GoDaddy to another provider</a>.</p>
<p>I hope many follow the lead and do not put the $1-2 year savings every year above some good ethics both as a person and as a corporation.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buragc.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buragc.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buragc.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buragc.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buragc.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buragc.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buragc.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buragc.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buragc.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buragc.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buragc.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buragc.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buragc.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buragc.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=116&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://burag.com/2011/03/31/moving-away-from-godaddy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4fa7e44a2ebc7b8be526c8b703312a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Burag</media:title>
		</media:content>
	</item>
		<item>
		<title>Software Design for Tablets</title>
		<link>http://burag.com/2011/02/20/software-design-for-tablets/</link>
		<comments>http://burag.com/2011/02/20/software-design-for-tablets/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 03:57:37 +0000</pubDate>
		<dc:creator>buragc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://burag.com/?p=109</guid>
		<description><![CDATA[There is quite a bit of interesting posts about tablets these days with the introduction of new players such as the Motorola XOOM, ViewSonic ViewPad and Galaxy Tab to an Apple dominated space. This blog post by Jon Stokes talks about how the user&#8217;s own hands get in the way of human-computer-interaction when using the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=109&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://buragc.files.wordpress.com/2011/02/tablet.png"><img class="alignleft size-medium wp-image-112" title="tablet" src="http://buragc.files.wordpress.com/2011/02/tablet.png?w=300&#038;h=233" alt="" width="300" height="233" /></a>There is quite a bit of interesting posts about tablets these days with the introduction of new players such as the Motorola XOOM, ViewSonic ViewPad and Galaxy Tab to an Apple dominated space. <a title="Why I dont care very much about tablets anymore" href="http://arstechnica.com/staff/carthage/2011/02/why-i-dont-care-very-much-about-tablets.ars">This blog post by Jon Stokes</a> talks about how the user&#8217;s own hands get in the way of human-computer-interaction when using the tablet and block the view, making things much harder to focus on and decreasing the valuable real estate.</p>
<p>Even if you hate them, tablets are here to stay. They cater to the needs of most people who want to just digest information from the web on the go. Nothing ground breaking here so far but let&#8217;s take a look at how this information is actually different&#8230;</p>
<p>Some of the most common tasks performed on the tablets are:</p>
<ol>
<li>Watching videos</li>
<li>Flicking through pictures</li>
<li>Reading the news/magazines</li>
<li>Consuming social content (mainly looking at bits of text from your updates and sending out bits of updates)</li>
</ol>
<p>Do you see a trend here? The amount of input required to complete these actions are at most 2-3 taps on the screen. This is the key to designing any user-acceptable software for the tablet: <strong>reduce the input to output ratio with considerable think time between user inputs.</strong></p>
<p>Let&#8217;s look at some examples of this in games and apps:</p>
<p>1) Angry Birds: carefully calculate what you think might happen, set the bird free (or on fire!) and just observe the impact.</p>
<p>2) Words with Friends: <em>think</em> about the word you will form and then put the tiles on the board with 4-5 taps</p>
<p>3) Facebook: browse through pictures of friends and latest status updates.</p>
<p>4) Twitter: <em>read</em> the tweets of people you follow</p>
<p>This is exactly why I cringe when I see applications like &#8220;focused writing&#8221; on the iPad. I just cannot possible imagine an adult sitting down and trying to type more then 3 sentences on a 10&#8243; iPad while covering the lower part of the screen with a keyboard, making sure that there are no typos and then with the rest of the attention she has left focus on what she was actually trying to type. <strong>Tablets are meant to be information &#8220;consumption devices&#8221; where large amounts of data are distilled into smaller bits</strong> and the user quickly consumes the data and moves on.</p>
<p>This is right in line with how the society behaves in the past 20 years. The progression of people reading books to blog posts to 140 character messages shows us how much majority of  people value snippets of shallow information over deep thinking about a particular topic.</p>
<p>The actual work of creating the content should mostly be left to other input devices. So next time you start thinking about the scope of that tablet app, make sure you let the user consume more than he produces.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buragc.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buragc.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buragc.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buragc.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buragc.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buragc.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buragc.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buragc.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buragc.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buragc.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buragc.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buragc.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buragc.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buragc.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=109&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://burag.com/2011/02/20/software-design-for-tablets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4fa7e44a2ebc7b8be526c8b703312a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Burag</media:title>
		</media:content>

		<media:content url="http://buragc.files.wordpress.com/2011/02/tablet.png?w=300" medium="image">
			<media:title type="html">tablet</media:title>
		</media:content>
	</item>
		<item>
		<title>Parallel Input Output to Speed up Your Apps</title>
		<link>http://burag.com/2010/12/28/parallel-input-output-to-speed-up-your-apps/</link>
		<comments>http://burag.com/2010/12/28/parallel-input-output-to-speed-up-your-apps/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 01:53:19 +0000</pubDate>
		<dc:creator>buragc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://burag.com/?p=95</guid>
		<description><![CDATA[My new whitepaper has been published a couple of days ago. This article stems from a client experience where code had to be transitioned to a team of developers non multi-threaded programmers who needed to maintain a parallel application. A simple overview of a possible framework has been also outlined in this paper. Note that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=95&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My new whitepaper has been published a couple of days ago. This article stems from a client experience where code had to be transitioned to a team of developers non multi-threaded programmers who needed to maintain a parallel application. A simple overview of a possible framework has been also outlined in this paper. Note that Microsoft&#8217;s Task Parallel Library also has some similar concepts (and it was released a couple months after this paper was originally written..)</p>
<blockquote><p>&nbsp;</p>
<p>In recent years, chip manufacturers have stated that CPU speeds cannot continue to increase. Instead, hardware manufacturers have begun to create chips with more cores, making them available on lower-priced hardware. The responsibility now falls to the software industry to take advantage of these multiple-core processors.</p>
<p>There are currently a plethora of parallelization frameworks available that take advantage of the multi-core machines. Most examples, however, are focused on more scientific or computationally intensive operations such as dealing with prime numbers, ray tracing, or working on matrix operations. Although these are great ways of utilizing the extra horsepower that multiple cores provide, they certainly do not directly help the average enterprise application.</p>
<p>Unfortunately, enterprise development has traditionally not required a multi-threaded development focus for the majority of applications. Consequently, development teams in most enterprises are not well versed in multi-threaded programming. Therefore, just introducing the requirement for parallel I/O via multi-threaded programming with no automated guidance in the form of frameworks and tools is a recipe for disaster.</p>
<p>In this whitepaper, we look at how developers can take advantage of multi-threaded code to reduce the response time of an expense application by 70% by simply applying parallel I/O concepts without changing the current code structure or requiring new training for the development team. Through the use of a parallel I/O framework, development teams can create multi-threaded applications without having to deal with the complex programming of multi-threaded code.</p></blockquote>
<p><a href="http://www.netsoft-usa.com/en/WhitePapers/20101217-Parallel-IO.aspx">Click here to read the rest of the article&#8230;</a></p>
<blockquote><p>&nbsp;</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buragc.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buragc.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buragc.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buragc.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buragc.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buragc.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buragc.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buragc.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buragc.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buragc.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buragc.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buragc.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buragc.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buragc.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=95&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://burag.com/2010/12/28/parallel-input-output-to-speed-up-your-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4fa7e44a2ebc7b8be526c8b703312a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Burag</media:title>
		</media:content>
	</item>
		<item>
		<title>Beta period has started, request your in</title>
		<link>http://burag.com/2010/07/22/beta-period-has-started-request-your-in/</link>
		<comments>http://burag.com/2010/07/22/beta-period-has-started-request-your-in/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 04:02:53 +0000</pubDate>
		<dc:creator>buragc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://burag.com/2010/07/22/beta-period-has-started-request-your-in/</guid>
		<description><![CDATA[Beta period has started, request your invite code now to join our public beta! SmartPointment will be free during the beta period.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=89&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Beta period has started, request your invite code now to join our public beta! SmartPointment will be free during the beta period.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buragc.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buragc.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buragc.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buragc.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buragc.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buragc.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buragc.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buragc.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buragc.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buragc.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buragc.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buragc.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buragc.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buragc.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=89&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://burag.com/2010/07/22/beta-period-has-started-request-your-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4fa7e44a2ebc7b8be526c8b703312a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Burag</media:title>
		</media:content>
	</item>
		<item>
		<title>Why Telemedicine might be the answer?</title>
		<link>http://burag.com/2009/12/19/why-telemedicine-might-be-the-answer/</link>
		<comments>http://burag.com/2009/12/19/why-telemedicine-might-be-the-answer/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 22:43:47 +0000</pubDate>
		<dc:creator>buragc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://burag.com/?p=69</guid>
		<description><![CDATA[Advancements in technology change everything. What about our health care system? This paper explores the concept of tele-medicine and how the changing factors in this decade affect the adoption and usage patterns of tele-medicine around the world. Below is an excerpt from the paper. &#8220;Health care is one of the determining factors when categorizing different [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=69&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Advancements in technology change everything. What about our health care system? This paper explores the concept of tele-medicine and how the changing factors in this decade affect the adoption and usage patterns of tele-medicine around the world.</p>
<p>Below is an excerpt from the paper.</p>
<blockquote><p>&#8220;Health care is one of the determining factors when categorizing different countries on development scale. Based on availability of health professionals, education system, infrastructure capabilities and finally available government funding, the quality and reach of health care varies greatly from one country to the next. Today, depending on one’s location and socio-economic status, the amount and quality of health care available ranges from non-existent to intensive and close monitored&#8230;&#8221;</p></blockquote>
<p>You can download the paper in  <a href="http://buragc.files.wordpress.com/2009/12/telemedicine.pdf">PDF</a> or <a href="http://buragc.files.wordpress.com/2009/12/telemedicine.docx">Word</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buragc.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buragc.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buragc.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buragc.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buragc.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buragc.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buragc.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buragc.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buragc.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buragc.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buragc.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buragc.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buragc.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buragc.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=69&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://burag.com/2009/12/19/why-telemedicine-might-be-the-answer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4fa7e44a2ebc7b8be526c8b703312a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Burag</media:title>
		</media:content>
	</item>
		<item>
		<title>ITARC 2009 Presentation</title>
		<link>http://burag.com/2009/10/14/itarc-2009-presentation/</link>
		<comments>http://burag.com/2009/10/14/itarc-2009-presentation/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 17:05:04 +0000</pubDate>
		<dc:creator>buragc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://burag.com/?p=63</guid>
		<description><![CDATA[I recently gave a talk on Re-thinking Software Architecture for Mobile platforms and it was very well received. What&#8217;s interesting is that most architects today keep ignoring the mobile space and think of it just as a new, shiny UI for the existing applications. Unfortunately, however existing systems that were architected for web applications does [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=63&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently gave a talk on Re-thinking Software Architecture for Mobile platforms and it was very well received. What&#8217;s interesting is that most architects today keep ignoring the mobile space and think of it just as a new, shiny UI for the existing applications.</p>
<p>Unfortunately, however existing systems that were architected for web applications does not scale well to serve the requirements of multiple mobile clients.</p>
<p>In short here are some key points from the presentation:</p>
<ol>
<li>Cloud computing is the key enabler of scaling architectures for new mobile solutions</li>
<li>User Experience is key when designing a mobile solution</li>
<li>Analyze your users, not all of them are on the same platform. Create different applications for different users instead of creating a monolithic applications with menus and options</li>
<li>Touch UI is a minimum requirement today</li>
<li>Responsiveness of the touch interface determines the usability of the application</li>
<li>Responsiveness on the client is achieved by introducing asynchronous client development</li>
<li>People who use your mobile solution will have short attention spans, break-down your workflows into smaller activities that can be completed within a couple of minutes</li>
<li>Limit the text input to a minimum, use selection based data entry as much as possible</li>
<li>Platform choice is key but some of the determining factors are: Internal/External Deployment, current skills of development team, market share of the platform, form factor and screen resolution of the target platform</li>
</ol>
<p>Above points mostly talk about the client aspect of mobile development. The server aspects were covered in great detail during the presentation.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buragc.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buragc.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buragc.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buragc.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buragc.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buragc.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buragc.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buragc.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buragc.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buragc.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buragc.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buragc.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buragc.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buragc.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=63&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://burag.com/2009/10/14/itarc-2009-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4fa7e44a2ebc7b8be526c8b703312a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Burag</media:title>
		</media:content>
	</item>
		<item>
		<title>Why I love Netflix?</title>
		<link>http://burag.com/2009/09/01/why-i-love-netflix/</link>
		<comments>http://burag.com/2009/09/01/why-i-love-netflix/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 02:44:18 +0000</pubDate>
		<dc:creator>buragc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://burag.com/?p=58</guid>
		<description><![CDATA[I have been a very happy Netflix customer for years now. It&#8217;s nice to see a company innovate and adopt all the new technologies like streaming to the XBox360, provide a Silverlight based video player etc. However, sometimes things go wrong. Last night I had some problems watching an episode of Coupling on my Xbox [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=58&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been a very happy Netflix customer for years now. It&#8217;s nice to see a company innovate and adopt all the new technologies like streaming to the XBox360, provide a Silverlight based video player etc. However, sometimes things go wrong. Last night I had some problems watching an episode of Coupling on my Xbox 360. Nothing that a good reboot couldn&#8217;t fix. I had almost forgotten about the incidence when I received the following email:</p>
<div id="attachment_59" class="wp-caption alignnone" style="width: 310px"><a href="http://buragc.files.wordpress.com/2009/09/netflixapology.png"><img src="http://buragc.files.wordpress.com/2009/09/netflixapology.png?w=300&#038;h=194" alt="Netflix apology" title="NetflixApology" width="300" height="194" class="size-medium wp-image-59" /></a><p class="wp-caption-text">Netflix apology</p></div>
<p>Not that 3% really matters on a $10/month account but this shows what customer satisfaction means to Netflix. Once again cementing my loyalty to their service, good job Netflix!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buragc.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buragc.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buragc.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buragc.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buragc.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buragc.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buragc.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buragc.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buragc.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buragc.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buragc.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buragc.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buragc.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buragc.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=58&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://burag.com/2009/09/01/why-i-love-netflix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4fa7e44a2ebc7b8be526c8b703312a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Burag</media:title>
		</media:content>

		<media:content url="http://buragc.files.wordpress.com/2009/09/netflixapology.png?w=300" medium="image">
			<media:title type="html">NetflixApology</media:title>
		</media:content>
	</item>
		<item>
		<title>CCD and HealthVault</title>
		<link>http://burag.com/2009/07/17/ccd-and-healthvault/</link>
		<comments>http://burag.com/2009/07/17/ccd-and-healthvault/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 18:02:56 +0000</pubDate>
		<dc:creator>buragc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://burag.com/?p=55</guid>
		<description><![CDATA[A new paper written by on the topic of integrating legacy health care systems to CCD compliant me has been published on Netsoft&#8217;s web site.. Here&#8217;s an excerpt from the paper In recent years, health care providers, insurance companies and health applications have all been collecting mountains of health-related data in various electronic formats. The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=55&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A new paper written by on the topic of integrating legacy health care systems to CCD compliant me has been published on Netsoft&#8217;s web site.. Here&#8217;s an excerpt from the paper </p>
<blockquote><p>
In recent years, health care providers, insurance companies<br />
and health applications have all been collecting mountains<br />
of health-related data in various electronic formats. The<br />
ability to search and analyze this data in context is required in<br />
order to prove it worthy of the effort of collecting it in the first<br />
place. One big challenge that stands in the way of ubiquitous<br />
health information is the data format disparity between different<br />
systems. It is not uncommon today to see legacy applications that<br />
are using older standards such as flat text files, HL7, CCR &#8230;</p></blockquote>
<p>You can read the white paper on <a href="http://www.netsoft-usa.com/insights/default.aspx">Netsoft USA&#8217;s web site by clicking here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buragc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buragc.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buragc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buragc.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buragc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buragc.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buragc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buragc.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buragc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buragc.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buragc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buragc.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buragc.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buragc.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=55&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://burag.com/2009/07/17/ccd-and-healthvault/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4fa7e44a2ebc7b8be526c8b703312a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Burag</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://burag.com/2006/05/23/hello-world/</link>
		<comments>http://burag.com/2006/05/23/hello-world/#comments</comments>
		<pubDate>Tue, 23 May 2006 02:51:40 +0000</pubDate>
		<dc:creator>buragc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=1&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/buragc.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/buragc.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buragc.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buragc.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buragc.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buragc.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buragc.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buragc.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buragc.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buragc.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buragc.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buragc.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buragc.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buragc.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buragc.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buragc.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=burag.com&amp;blog=235187&amp;post=1&amp;subd=buragc&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://burag.com/2006/05/23/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d4fa7e44a2ebc7b8be526c8b703312a3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Burag</media:title>
		</media:content>
	</item>
	</channel>
</rss>
