<?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>C0ns0l3art&#039;s Bl0g</title>
	<atom:link href="http://consoleart.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://consoleart.wordpress.com</link>
	<description>I am starting with the man in the mirror</description>
	<lastBuildDate>Sat, 24 Oct 2009 05:42:30 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='consoleart.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/36531eb3f440708d955f5f5aee1a4b1e?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>C0ns0l3art&#039;s Bl0g</title>
		<link>http://consoleart.wordpress.com</link>
	</image>
			<item>
		<title>Encrypt and Decrypt &#8211; Basic version</title>
		<link>http://consoleart.wordpress.com/2009/10/24/encrypt-and-decrypt-basic-version/</link>
		<comments>http://consoleart.wordpress.com/2009/10/24/encrypt-and-decrypt-basic-version/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 05:42:30 +0000</pubDate>
		<dc:creator>consoleart</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[decrypt]]></category>
		<category><![CDATA[encypt]]></category>

		<guid isPermaLink="false">http://consoleart.wordpress.com/?p=118</guid>
		<description><![CDATA[This is a basic version of encrypt-decrypt function&#8230;we used this from one of the .NET sites, since i am not able to find teh reference link , iam posting it here so that others can use it&#8230;
    public class MyEnctDect
    {
        private [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=118&subd=consoleart&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is a basic version of encrypt-decrypt function&#8230;we used this from one of the .NET sites, since i am not able to find teh reference link , iam posting it here so that others can use it&#8230;<br />
    public class MyEnctDect<br />
    {<br />
        private Byte[] key = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24 };<br />
        private Byte[] iv = { 65, 110, 68, 26, 69, 178, 200, 219 };</p>
<p>        public string Encrypt(string plainText)<br />
        {<br />
            //&#8217; Declare a UTF8Encoding object so we may use the GetByte<br />
            //&#8217; method to transform the plainText into a Byte array.<br />
            String outString;<br />
            UTF8Encoding utf8encoder = new UTF8Encoding();<br />
            Byte[] inputInBytes = utf8encoder.GetBytes(plainText);<br />
            //&#8217; Create a new TripleDES service provider<br />
            TripleDESCryptoServiceProvider tdesProvider = new TripleDESCryptoServiceProvider();<br />
            //&#8217; The ICryptTransform interface uses the TripleDES<br />
            //&#8217; crypt provider along with encryption key and init vector<br />
            //&#8217; information<br />
            ICryptoTransform cryptoTransform = tdesProvider.CreateEncryptor(key, iv);<br />
            //&#8217; All cryptographic functions need a stream to output the<br />
            //&#8217; encrypted information. Here we declare a memory stream<br />
            //&#8217; for this purpose.<br />
            MemoryStream encryptedStream = new MemoryStream();<br />
            CryptoStream cryptStream = new CryptoStream(encryptedStream, cryptoTransform, CryptoStreamMode.Write);<br />
            //&#8217; Write the encrypted information to the stream. Flush the information<br />
            //&#8217; when done to ensure everything is out of the buffer.<br />
            cryptStream.Write(inputInBytes, 0, inputInBytes.Length);<br />
            cryptStream.FlushFinalBlock();<br />
            encryptedStream.Position = 0;<br />
            //&#8217; Read the stream back into a Byte array and return it to the calling<br />
            //&#8217; method.<br />
            //  Dim result(encryptedStream.Length &#8211; 1) As Byte<br />
            byte[] result = new byte[encryptedStream.Length];<br />
            encryptedStream.Read(result, 0, (int)encryptedStream.Length);<br />
            cryptStream.Close();<br />
            //&#8217;test section<br />
            //&#8217;Convert to / fro the memory stream to a base64 string<br />
            //&#8217;compare decText to result<br />
            outString = System.Text.ASCIIEncoding.Default.GetString(result);</p>
<p>            string encText = Convert.ToBase64String(encryptedStream.ToArray());<br />
            byte[] decText = Convert.FromBase64String(encText);<br />
            string sDec = Decrypt(decText);<br />
            return outString;<br />
        }</p>
<p>        public String Decrypt(Byte[] inputInBytes)<br />
        {<br />
            //&#8217; UTFEncoding is used to transform the decrypted Byte Array<br />
            //&#8217; information back into a string.<br />
            UTF8Encoding utf8encoder = new UTF8Encoding();<br />
            TripleDESCryptoServiceProvider tdesProvider = new TripleDESCryptoServiceProvider();<br />
            //&#8217; As before we must provide the encryption/decryption key along with<br />
            //&#8217; the init vector.<br />
            ICryptoTransform cryptoTransform = tdesProvider.CreateDecryptor(key, iv);<br />
            //&#8217; Provide a memory stream to decrypt information into<br />
            MemoryStream decryptedStream = new MemoryStream();<br />
            CryptoStream cryptStream = new CryptoStream(decryptedStream, cryptoTransform, CryptoStreamMode.Write);<br />
            cryptStream.Write(inputInBytes, 0, inputInBytes.Length);<br />
            cryptStream.FlushFinalBlock();<br />
            decryptedStream.Position = 0;<br />
            //&#8217; Read the memory stream and convert it back into a string<br />
            Byte[] result = new byte[decryptedStream.Length];<br />
            decryptedStream.Read(result, 0, (int)decryptedStream.Length);<br />
            cryptStream.Close();<br />
            UTF8Encoding myutf = new UTF8Encoding();<br />
            return myutf.GetString(result);<br />
        }<br />
    }<br />
usage<br />
MyEnctDect classDeclartion = new MyEnctDect();<br />
classDeclartion.Encrypt(text);<br />
classDeclartion.Decrypt(bytearray);</p>
<p>Its a good one for beginners, there are other methods available as well</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/consoleart.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/consoleart.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/consoleart.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/consoleart.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/consoleart.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/consoleart.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/consoleart.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/consoleart.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/consoleart.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/consoleart.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=118&subd=consoleart&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://consoleart.wordpress.com/2009/10/24/encrypt-and-decrypt-basic-version/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b32cdc3d13dff9494ad944f27c2ea10?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">consoleart</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating controls with javascript</title>
		<link>http://consoleart.wordpress.com/2009/10/23/creating-controls-with-javascript/</link>
		<comments>http://consoleart.wordpress.com/2009/10/23/creating-controls-with-javascript/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 10:29:49 +0000</pubDate>
		<dc:creator>consoleart</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[create controls]]></category>

		<guid isPermaLink="false">http://consoleart.wordpress.com/?p=115</guid>
		<description><![CDATA[Thought this will be helpful for beginners
Create static combo
Create password field
create textbox
create textarea, all samples are subject to COPY rights&#8230;i mean you can use them for freee&#8230;
function CreateStaticCombo(sCtrlId, Width, list, value, defaultValue) {
    var optGroup = document.createElement(&#8217;select&#8217;)
    var arr = list.split(&#8216;###&#8217;);
    optGroup.setAttribute(&#8216;className&#8217;, &#8216;ComboBoxStyle&#8217;);
    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=115&subd=consoleart&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Thought this will be helpful for beginners</p>
<p>Create static combo<br />
Create password field<br />
create textbox<br />
create textarea, all samples are subject to COPY rights&#8230;i mean you can use them for freee&#8230;</p>
<p>function CreateStaticCombo(sCtrlId, Width, list, value, defaultValue) {</p>
<p>    var optGroup = document.createElement(&#8217;select&#8217;)<br />
    var arr = list.split(&#8216;###&#8217;);</p>
<p>    optGroup.setAttribute(&#8216;className&#8217;, &#8216;ComboBoxStyle&#8217;);<br />
    optGroup.onblur = function() { };<br />
    optGroup.id = sCtrlId;<br />
    optGroup.name = sCtrlId;</p>
<p>    var objOption = document.createElement(&#8220;option&#8221;)<br />
    objOption.innerText = &#8220;&#8221;;<br />
    objOption.value = &#8220;&#8221;;<br />
    optGroup.appendChild(objOption)</p>
<p>    for (var i = 0; i &lt; arr.length; i++) {<br />
        if (arr[i] != &quot;&quot;) {<br />
            var objOption = document.createElement(&quot;option&quot;)<br />
            objOption.innerText = arr[i];<br />
            objOption.value = arr[i];</p>
<p>            if (arr[i] == value.trim())<br />
                objOption.selected = true;</p>
<p>            optGroup.appendChild(objOption)<br />
        }<br />
    }<br />
    optGroup.style.border = 0;<br />
    optGroup.onkeyup = function() { };<br />
    return optGroup;</p>
<p>}</p>
<p>function CreateLookupIcon(sCtrlId, IsLookupConditionAvailable) {<br />
    var imageNode = document.createElement(&quot;input&quot;);<br />
    imageNode.type = &#39;image&#39;;<br />
    imageNode.id = &quot;imagetext&quot;<br />
    imageNode.src = &#39;../images/asmall.gif&#39;;</p>
<p>        imageNode.onclick = function() { someJavascriptFunction(someParameters); return false; };<br />
    return imageNode;<br />
}<br />
function CreateHiddenField(sCtrlId) {<br />
    var txtbox = document.createElement(&#39;input&#39;);<br />
    txtbox.type = &#39;hidden&#39;;<br />
    txtbox.id = sCtrlId.replace(&#39;TD&#39;, &#39;D&#39;);<br />
    txtbox.name = sCtrlId.replace(&#39;TD&#39;, &#39;D&#39;);<br />
    return txtbox;<br />
}</p>
<p>function CreatePassword(sCtrlId) {<br />
    var txtbox = document.createElement(&#39;input&#39;);<br />
    txtbox.onblur = function() { SetHiddenValue(this.id, this.value); EvaluateExpression(&#39;ALL&#39;, sCtrlId.toString().split(&#39;~&#39;)[2]) };<br />
    txtbox.type = &#39;password&#39;;<br />
    txtbox.passwordText = &#39;*&#39;;<br />
    txtbox.id = sCtrlId;<br />
    txtbox.name = sCtrlId;<br />
    txtbox.setAttribute(&#39;className&#39;, &#39;MVTextBoxStyle&#39;);<br />
    txtbox.style.border = 1;<br />
    txtbox.style.bordercolor = &quot;black&quot;;<br />
    txtbox.style.borderStyle = &quot;solid&quot;<br />
    return txtbox;<br />
}</p>
<p>function CreateTextArea(sCtrlId, Width) {<br />
    var txtbox = document.createElement(&#39;textarea&#39;);<br />
    txtbox.rows = &quot;2&quot;;<br />
    txtbox.style.height = &quot;40px&quot;;<br />
    txtbox.onblur = function() { SetHiddenValue(this.id.replace(&#39;txt&#39;, &#39;&#39;), this.value); EvaluateExpression(&#39;ALL&#39;, sCtrlId.toString().split(&#39;~&#39;)[2]) };<br />
    txtbox.id = &quot;txt&quot; + sCtrlId;<br />
    txtbox.name = &quot;txt&quot; + sCtrlId;<br />
    txtbox.setAttribute(&#39;className&#39;, &#39;MVTextBoxStyle&#39;);</p>
<p>    return txtbox;<br />
}</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/consoleart.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/consoleart.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/consoleart.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/consoleart.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/consoleart.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/consoleart.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/consoleart.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/consoleart.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/consoleart.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/consoleart.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=115&subd=consoleart&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://consoleart.wordpress.com/2009/10/23/creating-controls-with-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b32cdc3d13dff9494ad944f27c2ea10?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">consoleart</media:title>
		</media:content>
	</item>
		<item>
		<title>Fruits, Flowers and Sea !!!</title>
		<link>http://consoleart.wordpress.com/2009/06/26/fruits-flowers-and-sea/</link>
		<comments>http://consoleart.wordpress.com/2009/06/26/fruits-flowers-and-sea/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 04:12:44 +0000</pubDate>
		<dc:creator>consoleart</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Painting]]></category>
		<category><![CDATA[Pencil drawing]]></category>

		<guid isPermaLink="false">http://consoleart.wordpress.com/?p=109</guid>
		<description><![CDATA[Camera Version &#8211; Canon &#8211; i have replaced my earlier pic with this new one

Fruits

Seashore

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=109&subd=consoleart&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Camera Version &#8211; Canon &#8211; i have replaced my earlier pic with this new one<br />
<img src="http://consoleart.files.wordpress.com/2009/06/flowervase3.jpg?w=500&#038;h=843" alt="flowervase3" title="flowervase3" width="500" height="843" class="alignnone size-full wp-image-111" /></p>
<p>Fruits<br />
<img src="http://consoleart.files.wordpress.com/2009/06/fruits.jpg?w=640&#038;h=480" alt="Fruits" title="Fruits" width="640" height="480" class="alignnone size-full wp-image-107" /><br />
Seashore<br />
<img src="http://consoleart.files.wordpress.com/2009/06/seashore.jpg?w=640&#038;h=480" alt="SeaShore" title="SeaShore" width="640" height="480" class="alignnone size-full wp-image-108" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/consoleart.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/consoleart.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/consoleart.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/consoleart.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/consoleart.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/consoleart.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/consoleart.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/consoleart.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/consoleart.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/consoleart.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=109&subd=consoleart&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://consoleart.wordpress.com/2009/06/26/fruits-flowers-and-sea/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b32cdc3d13dff9494ad944f27c2ea10?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">consoleart</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/flowervase3.jpg" medium="image">
			<media:title type="html">flowervase3</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/fruits.jpg" medium="image">
			<media:title type="html">Fruits</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/seashore.jpg" medium="image">
			<media:title type="html">SeaShore</media:title>
		</media:content>
	</item>
		<item>
		<title>one of my earlier sketches</title>
		<link>http://consoleart.wordpress.com/2009/06/25/one-of-my-earlier-sketches/</link>
		<comments>http://consoleart.wordpress.com/2009/06/25/one-of-my-earlier-sketches/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 04:40:14 +0000</pubDate>
		<dc:creator>consoleart</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://consoleart.wordpress.com/?p=104</guid>
		<description><![CDATA[This one is my favorite

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=104&subd=consoleart&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This one is my favorite<br />
<img src="http://consoleart.files.wordpress.com/2009/06/image_00076.jpg?w=480&#038;h=640" alt="IMAGE_00076" title="IMAGE_00076" width="480" height="640" class="alignnone size-full wp-image-103" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/consoleart.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/consoleart.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/consoleart.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/consoleart.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/consoleart.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/consoleart.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/consoleart.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/consoleart.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/consoleart.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/consoleart.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=104&subd=consoleart&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://consoleart.wordpress.com/2009/06/25/one-of-my-earlier-sketches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b32cdc3d13dff9494ad944f27c2ea10?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">consoleart</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/image_00076.jpg" medium="image">
			<media:title type="html">IMAGE_00076</media:title>
		</media:content>
	</item>
		<item>
		<title>Copied from real life &#8211; redrawn by me</title>
		<link>http://consoleart.wordpress.com/2009/06/24/copied-from-real-life-redrawn-by-me/</link>
		<comments>http://consoleart.wordpress.com/2009/06/24/copied-from-real-life-redrawn-by-me/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 13:44:42 +0000</pubDate>
		<dc:creator>consoleart</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://consoleart.wordpress.com/?p=100</guid>
		<description><![CDATA[
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=100&subd=consoleart&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://consoleart.files.wordpress.com/2009/06/image_00055.jpg?w=640&#038;h=480" alt="IMAGE_00055" title="IMAGE_00055" width="640" height="480" class="alignnone size-full wp-image-101" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/consoleart.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/consoleart.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/consoleart.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/consoleart.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/consoleart.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/consoleart.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/consoleart.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/consoleart.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/consoleart.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/consoleart.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=100&subd=consoleart&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://consoleart.wordpress.com/2009/06/24/copied-from-real-life-redrawn-by-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b32cdc3d13dff9494ad944f27c2ea10?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">consoleart</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/image_00055.jpg" medium="image">
			<media:title type="html">IMAGE_00055</media:title>
		</media:content>
	</item>
		<item>
		<title>Some of my random sketches</title>
		<link>http://consoleart.wordpress.com/2009/06/24/some-of-my-random-sketches/</link>
		<comments>http://consoleart.wordpress.com/2009/06/24/some-of-my-random-sketches/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 06:13:44 +0000</pubDate>
		<dc:creator>consoleart</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://consoleart.wordpress.com/?p=97</guid>
		<description><![CDATA[All sketches were done with Stedler pencils&#8230;.
Bridge

Far Far Away !!!!

Natraj &#8211; Thai Crown version

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=97&subd=consoleart&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>All sketches were done with Stedler pencils&#8230;.<br />
Bridge<br />
<img src="http://consoleart.files.wordpress.com/2009/06/image_00069.jpg?w=225&#038;h=300" alt="IMAGE_00069" title="IMAGE_00069" width="225" height="300" class="alignnone size-medium wp-image-93" /></p>
<p>Far Far Away !!!!<br />
<img src="http://consoleart.files.wordpress.com/2009/06/image_00057.jpg?w=225&#038;h=300" alt="IMAGE_00057" title="IMAGE_00057" width="225" height="300" class="alignnone size-medium wp-image-91" /></p>
<p>Natraj &#8211; Thai Crown version<br />
<img src="http://consoleart.files.wordpress.com/2009/06/image_00056.jpg?w=225&#038;h=300" alt="IMAGE_00056" title="IMAGE_00056" width="225" height="300" class="alignnone size-medium wp-image-90" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/consoleart.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/consoleart.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/consoleart.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/consoleart.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/consoleart.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/consoleart.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/consoleart.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/consoleart.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/consoleart.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/consoleart.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=97&subd=consoleart&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://consoleart.wordpress.com/2009/06/24/some-of-my-random-sketches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b32cdc3d13dff9494ad944f27c2ea10?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">consoleart</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/image_00069.jpg?w=225" medium="image">
			<media:title type="html">IMAGE_00069</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/image_00057.jpg?w=225" medium="image">
			<media:title type="html">IMAGE_00057</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/image_00056.jpg?w=225" medium="image">
			<media:title type="html">IMAGE_00056</media:title>
		</media:content>
	</item>
		<item>
		<title>Malesome Model</title>
		<link>http://consoleart.wordpress.com/2009/06/24/malesome-model/</link>
		<comments>http://consoleart.wordpress.com/2009/06/24/malesome-model/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 06:08:48 +0000</pubDate>
		<dc:creator>consoleart</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://consoleart.wordpress.com/?p=89</guid>
		<description><![CDATA[A sketch of a model&#8230;AKA Washing Powder Nirma !!!

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=89&subd=consoleart&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A sketch of a model&#8230;AKA Washing Powder Nirma !!!</p>
<p><img src="http://consoleart.files.wordpress.com/2009/06/image_00065.jpg?w=225&#038;h=300" alt="IMAGE_00065" title="IMAGE_00065" width="225" height="300" class="alignnone size-medium wp-image-92" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/consoleart.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/consoleart.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/consoleart.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/consoleart.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/consoleart.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/consoleart.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/consoleart.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/consoleart.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/consoleart.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/consoleart.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=89&subd=consoleart&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://consoleart.wordpress.com/2009/06/24/malesome-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b32cdc3d13dff9494ad944f27c2ea10?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">consoleart</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/image_00065.jpg?w=225" medium="image">
			<media:title type="html">IMAGE_00065</media:title>
		</media:content>
	</item>
		<item>
		<title>Small scale IT companies</title>
		<link>http://consoleart.wordpress.com/2009/06/23/small-scale-it-companies/</link>
		<comments>http://consoleart.wordpress.com/2009/06/23/small-scale-it-companies/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 03:29:36 +0000</pubDate>
		<dc:creator>consoleart</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://consoleart.wordpress.com/?p=87</guid>
		<description><![CDATA[This was how we used to work our ass off&#8230;its hard to beleive that i remember each dialogue that happened some 8 years before, they still haunt me at times&#8230;this conversation is in tamil, iam not sure whether this will give the same meaning when i translate this in English, so iam not trying out [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=87&subd=consoleart&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This was how we used to work our ass off&#8230;its hard to beleive that i remember each dialogue that happened some 8 years before, they still haunt me at times&#8230;this conversation is in tamil, iam not sure whether this will give the same meaning when i translate this in English, so iam not trying out one&#8230;the characters&#8230;. P: is the boss : JM and J are the workers, there were some more people in the room, but they were totally dumbstruck!!!!&#8230;i hope you can imagine&#8230;</p>
<p><img src="http://consoleart.files.wordpress.com/2009/06/howwereact.jpg?w=640&#038;h=480" alt="howwereact" title="howwereact" width="640" height="480" class="alignnone size-full wp-image-86" /></p>
<p>most of the small scale IT companies management think the same way&#8230;the workers will always give this look&#8230;poor but fun&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/consoleart.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/consoleart.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/consoleart.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/consoleart.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/consoleart.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/consoleart.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/consoleart.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/consoleart.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/consoleart.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/consoleart.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=87&subd=consoleart&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://consoleart.wordpress.com/2009/06/23/small-scale-it-companies/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b32cdc3d13dff9494ad944f27c2ea10?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">consoleart</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/howwereact.jpg" medium="image">
			<media:title type="html">howwereact</media:title>
		</media:content>
	</item>
		<item>
		<title>Candle Painting</title>
		<link>http://consoleart.wordpress.com/2009/06/06/candle-painting/</link>
		<comments>http://consoleart.wordpress.com/2009/06/06/candle-painting/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 09:03:44 +0000</pubDate>
		<dc:creator>consoleart</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://consoleart.wordpress.com/?p=81</guid>
		<description><![CDATA[
A candle created with Gimp, i got inspiration to draw this from a picture my friend took&#8230;

the same one with some realistic smoke&#8230;instead of a blue one&#8230;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=81&subd=consoleart&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://consoleart.files.wordpress.com/2009/06/candel.jpg?w=640&#038;h=400" alt="Candel" title="Candel" width="640" height="400" class="alignnone size-full wp-image-82" /></p>
<p>A candle created with Gimp, i got inspiration to draw this from a picture my friend took&#8230;</p>
<p><img src="http://consoleart.files.wordpress.com/2009/06/candel-grey.jpg?w=640&#038;h=400" alt="Candel-Grey" title="Candel-Grey" width="640" height="400" class="alignnone size-full wp-image-84" /><br />
the same one with some realistic smoke&#8230;instead of a blue one&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/consoleart.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/consoleart.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/consoleart.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/consoleart.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/consoleart.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/consoleart.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/consoleart.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/consoleart.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/consoleart.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/consoleart.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=81&subd=consoleart&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://consoleart.wordpress.com/2009/06/06/candle-painting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b32cdc3d13dff9494ad944f27c2ea10?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">consoleart</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/candel.jpg" medium="image">
			<media:title type="html">Candel</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/candel-grey.jpg" medium="image">
			<media:title type="html">Candel-Grey</media:title>
		</media:content>
	</item>
		<item>
		<title>Couple at beach !!!</title>
		<link>http://consoleart.wordpress.com/2009/06/04/couple-at-beach/</link>
		<comments>http://consoleart.wordpress.com/2009/06/04/couple-at-beach/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 06:44:54 +0000</pubDate>
		<dc:creator>consoleart</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://consoleart.wordpress.com/?p=76</guid>
		<description><![CDATA[
another one photo taken by my friend Sidhu&#8230;messed up by me using GIMP !!!!

this one is almost done
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=76&subd=consoleart&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://consoleart.files.wordpress.com/2009/06/img_4211.jpg?w=300&#038;h=225" alt="IMG_4211" title="IMG_4211" width="300" height="225" class="alignnone size-medium wp-image-75" /></p>
<p>another one photo taken by my friend Sidhu&#8230;messed up by me using GIMP !!!!</p>
<p><img src="http://consoleart.files.wordpress.com/2009/06/houlingnight.jpg?w=800&#038;h=600" alt="houlingnight" title="houlingnight" width="800" height="600" class="alignnone size-full wp-image-78" /><br />
this one is almost done</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/consoleart.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/consoleart.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/consoleart.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/consoleart.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/consoleart.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/consoleart.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/consoleart.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/consoleart.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/consoleart.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/consoleart.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=consoleart.wordpress.com&blog=3015197&post=76&subd=consoleart&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://consoleart.wordpress.com/2009/06/04/couple-at-beach/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b32cdc3d13dff9494ad944f27c2ea10?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">consoleart</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/img_4211.jpg?w=300" medium="image">
			<media:title type="html">IMG_4211</media:title>
		</media:content>

		<media:content url="http://consoleart.files.wordpress.com/2009/06/houlingnight.jpg" medium="image">
			<media:title type="html">houlingnight</media:title>
		</media:content>
	</item>
	</channel>
</rss>