<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Raju Sykam &#187; blog</title>
	<atom:link href="http://raju.net.in/blog/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://raju.net.in/blog</link>
	<description>Electrical engineer / Web Developer</description>
	<lastBuildDate>Sat, 01 Jan 2011 18:10:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Ajax Multiple file upload script with Progress bar, Drag and Drop</title>
		<link>http://raju.net.in/blog/2011/01/01/ajax-multiple-file-upload-script-with-progress-bar-drag-and-drop/</link>
		<comments>http://raju.net.in/blog/2011/01/01/ajax-multiple-file-upload-script-with-progress-bar-drag-and-drop/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 18:10:54 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[php scripts]]></category>
		<category><![CDATA[upload script]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=457</guid>
		<description><![CDATA[This script uses XMLHttpRequest for uploading multiple files with progress-bar with drag and drop feature in Firefox 3.6+, Safari 4+ and Chrome; and falls back to hidden iframe based upload in other browsers. Features multiple file select, progress-bar in Firefox, Chrome, Safari drag-and-drop file select in Firefox, Chrome uploads are cancellable no external dependencies doesn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>This script uses <a href="http://www.w3schools.com/XML/xml_http.asp">XMLHttpRequest</a> for uploading multiple files with progress-bar with drag and drop feature in Firefox 3.6+, Safari 4+ and Chrome; and falls back to hidden iframe based upload in other browsers.</p>
<p><strong>Features</strong></p>
<ul>
<li>multiple file select, progress-bar in Firefox, Chrome, Safari</li>
<li>drag-and-drop file select in Firefox, Chrome</li>
<li>uploads are cancellable</li>
<li>no external dependencies</li>
<li>doesn&#8217;t use Flash</li>
<li>fully working with https</li>
<li>keyboard support in Firefox, Chrome, Safari</li>
</ul>
<p><strong>Demo:</strong><a href="http://valums.com/ajax-upload/">Check the demo</a><br />
<strong>URL:</strong><a href="http://valums.com/ajax-upload/">http://valums.com/ajax-upload/</a><br />
<strong>Download:</strong><a href="http://github.com/valums/file-uploader/zipball/master">Download the source code</a></p>
<p><strong>Usage:</strong></p>
<p>Download the script, unzip to a folder; let’s say ajax-<em>upload-script</em> in your root folder.</p>
<p>For me, its http://localhost/ajax-upload-script such that folders server,client, tests  will be in your folder <em>ajax-upload-script</em></p>
<p>Create a new file; let’s say <em>upload.php</em> in your <em>ajax-upload-script</em> folder.</p>
<p>Include fileuploader.js and fileuploader.css into upload.php</p>
<p>The required two files are in your <em>ajax-upload-script/client</em> folder.</p>
<pre class="brush: xml; title: Code;">
&lt;script src=&quot;client/fileuploader.js&quot; language=&quot;javascript1.1&quot;&gt;&lt;/script&gt;
&lt;link href=&quot;client/fileuploader.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;all&quot; /&gt;
</pre>
<p>Now create a container element on the page, which accepts the files, we drop to it.</p>
<pre class="brush: xml; title: Code;">
  &lt;div id=&quot;file-uploader&quot;&gt;
        &lt;noscript&gt;
            &lt;p&gt;Please enable JavaScript to use file uploader.&lt;/p&gt;
            &lt;!-- or put a simple form for upload here --&gt;
        &lt;/noscript&gt;
    &lt;/div&gt;
</pre>
<p>Now initialize your uploader. Paste the below the javascript below the container div tag.</p>
<pre class="brush: jscript; title: Code;">

 &lt;script&gt;
        function createUploader(){
            var uploader = new qq.FileUploader({
                //  pass the dom node (ex. $(selector)[0] for jQuery users)
                element: document.getElementById('file-uploader'),
               // path to server-side upload script. In our case server/php.php
               action: 'server/php.php'
            });
        }
        window.onload = createUploader;
    &lt;/script&gt;
</pre>
<p>Pass the DOM node to the element, and the server side script path to the action.<br />
This script comes with sever side script also, to upload files, in different platforms-PHP, Coldfusion, CGI and Java.</p>
<p>We will take the PHP file,  php.php in server folder as our server side script to upload files.<br />
You can delete the other platform files in this folder, no harm at all.</p>
<p>That’s all. Our Ajax multiple file upload script with progress bar, drag and drop is completed. Just open the file in browser http://localhost/ajax-upload-script/upload.php<br />
You can upload the files by clicking the ‘Upload a File’ button or simply dragging and dropping files on it. Files will be uploaded to server/uploads folder.</p>
<p>Some test files and demos are there in tests folder. If you want to play with this script further, have a look into it. If not, you can simply delete it.</p>
<p>You can use jQuery also with this script, and other settings such as allowed extensions, file size limits and events.</p>
<pre class="brush: jscript; title: Code;">
    // additional data to send, name-value pairs
    params: {},

    // validation
    // ex. ['jpg', 'jpeg', 'png', 'gif'] or []
    allowedExtensions: [],
    // each file size limit in bytes
    // this option isn't supported in all browsers
    sizeLimit: 0, // max size
    minSizeLimit: 0, // min size

    // set to true to output server response to console
    debug: false,

    // events
    // you can return false to abort submit
    onSubmit: function(id, fileName){},
    onProgress: function(id, fileName, loaded, total){},
    onComplete: function(id, fileName, responseJSON){},
    onCancel: function(id, fileName){},

    messages: {
        // error messages, see qq.FileUploaderBasic for content
    },
    showMessage: function(message){ alert(message); }        
</pre>
<p><strong>To Use with jQuery:</strong></p>
<p><strong> </strong></p>
<p>Include jQuery javascript into your page.</p>
<pre class="brush: xml; title: Code;">
&lt;script src=&quot;http://code.jquery.com/jquery-1.4.4.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
</pre>
<p>And replace the script below container DIV with this.</p>
<pre class="brush: jscript; title: Code;">
    jQuery(function(){
        var uploader = new qq.FileUploader({
            element: document.getElementById('file-uploader'),
          // url of the server-side upload script, should be on the same domain
	action: 'server/php.php',

        }); 

    });
</pre>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2011/01/01/ajax-multiple-file-upload-script-with-progress-bar-drag-and-drop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Blessed with a baby Boy</title>
		<link>http://raju.net.in/blog/2010/07/15/blessed-with-a-baby-boy/</link>
		<comments>http://raju.net.in/blog/2010/07/15/blessed-with-a-baby-boy/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 08:43:08 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=419</guid>
		<description><![CDATA[Yesterday( 14th July, 2010) was a big day! I became father first time. I am very very happy. so, a new phase in life. more duties, more responsibilities. The baby boy came out in morning @ 07:15am. I am on the way to hospital from Hyderabad and exactly at Vijayawada Kanakaduragamma Temple. Jumped out from [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://raju.net.in/blog/wp-content/uploads/2010/07/richie.gif" alt="Richie - Raju Sykam's son" />Yesterday( 14th July, 2010) was a big day! I became father first time. I am very very happy. so, a new phase in life. more duties, more responsibilities.</p>
<p>The baby boy came out in morning @ 07:15am. I am on the way to hospital from Hyderabad and exactly at Vijayawada Kanakaduragamma Temple.</p>
<p><span id="more-419"></span>Jumped out from the dead slow RTC bus in bus stand and catched an auto and reached hospital, and ran into the hospital, calling my mother on her mobile.</p>
<p>My boy is on the table in my mother hands, and waiting for a first  clean up from nurse.</p>
<p>My mother is so happy and saying that her son became father!!!</p>
<p>I am quite calm and watching him&#8230; Nurse came and taken him into her hands and cleaned with him with little hot water. Me and My mother noticed a cut on his head. <img src='http://raju.net.in/blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  as he came out after sizerian.</p>
<p>He is so cute and quite calm. a lot is happening with him, in life.</p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2010/07/15/blessed-with-a-baby-boy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>APTransco Notification &#8211; 2010 Assistant Engineers</title>
		<link>http://raju.net.in/blog/2010/01/09/aptransco-notification-2010-assistant-engineers/</link>
		<comments>http://raju.net.in/blog/2010/01/09/aptransco-notification-2010-assistant-engineers/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 06:49:47 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[Electrical]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[aptransco]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=417</guid>
		<description><![CDATA[Aptransco notification for Assistant Engineers in Electrical / Telecom / Civil for 2010]]></description>
			<content:encoded><![CDATA[<p>APTransco notification for 2010 was announced for Assistant engineers in Electrical / telecom / Civil. For more complete details see here: <a href="http://aptransco.cgg.gov.in/">http://aptransco.cgg.gov.in/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2010/01/09/aptransco-notification-2010-assistant-engineers/feed/</wfw:commentRss>
		<slash:comments>204</slash:comments>
		</item>
		<item>
		<title>Strange CountDown on Google Home page</title>
		<link>http://raju.net.in/blog/2009/12/16/strange-countdown-on-google-home-page/</link>
		<comments>http://raju.net.in/blog/2009/12/16/strange-countdown-on-google-home-page/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 17:54:17 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[web resources]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[new year]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=410</guid>
		<description><![CDATA[Here is the new Google Easter egg!&#8230; Go to Google Home page and hit &#8221; I&#8217;m Feeling Lucky &#8221; you will be presented with a countdown on google Home page. today is 16 dec 2009 and time is 11:10 PM. Counter is at 1299000. (1299000)/(60*60*24)=15.03472 Still 15 days to Dec 31. so Happy New Year!]]></description>
			<content:encoded><![CDATA[<p>Here is the new Google Easter egg!&#8230;</p>
<p>Go to Google Home page and hit &#8221; I&#8217;m Feeling Lucky &#8221; you will be presented with a countdown on google Home page. <img src='http://raju.net.in/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>today is 16 dec 2009 and time is 11:10 PM. Counter is at 1299000.</p>
<p>(1299000)/(60*60*24)=15.03472</p>
<p>Still 15 days to Dec 31.</p>
<p>so Happy New Year!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="i=34346" /><param name="allowFullScreen" value="true" /><param name="src" value="http://screenr.com/Content/assets/screenr_1116090935.swf" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="300" src="http://screenr.com/Content/assets/screenr_1116090935.swf" allowfullscreen="true" flashvars="i=34346"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2009/12/16/strange-countdown-on-google-home-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>php4 vs php5 &#8211; Key features added in php 5</title>
		<link>http://raju.net.in/blog/2009/12/16/php4vsphp5/</link>
		<comments>http://raju.net.in/blog/2009/12/16/php4vsphp5/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 17:22:40 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web resources]]></category>
		<category><![CDATA[mysqli]]></category>
		<category><![CDATA[php4]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[SimpleXML]]></category>
		<category><![CDATA[SOAP]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=404</guid>
		<description><![CDATA[One of the questions you face in interview on PHP  is  about the key features added in PHP 5.? I have not found any single  page on web which lists the key features introduced in php5. so here is the list. The final release of PHP 5 was announced on 13 July 2004.(as per php.net [...]]]></description>
			<content:encoded><![CDATA[<p>One of the questions you face in interview on PHP  is  about the <strong>key features added in PHP 5.?</strong> I have not found any single  page on web which lists the key features introduced in php5. so here is the list.</p>
<div id="attachment_405" class="wp-caption alignright" style="width: 160px"><a class="highslide" onclick="return vz.expand(this)" href="http://raju.net.in/blog/wp-content/uploads/2009/12/php5.gif"><img class="size-full wp-image-405" title="php5" src="http://raju.net.in/blog/wp-content/uploads/2009/12/php5.gif" alt="php 5" width="150" height="150" /></a><p class="wp-caption-text">php 5</p></div>
<p>The final release of PHP 5 was announced on 13 July 2004.(as per php.net news archives)</p>
<p>Some of the key features of PHP 5 include:</p>
<ul>
<li> The <a href="http://www.zend.com/php5/zend-engine2.php">Zend Engine II</a> with a new object model and dozens of new features.</li>
<li> XML support has been completely redone in PHP 5, all extensions are now   focused around the excellent libxml2 library   (<a href="http://www.xmlsoft.org/">http://www.xmlsoft.org/</a>).</li>
<li> A new SimpleXML extension for easily accessing and manipulating XML as   PHP objects. It can also interface with the DOM extension and vice-versa.</li>
<li> A brand new built-in SOAP extension for interoperability with Web Services.</li>
<li> A new MySQL extension named MySQLi for developers using MySQL 4.1 and later.   This new extension includes an object-oriented interface in addition to   a traditional interface; as well as support for many of MySQL&#8217;s new features,   such as prepared statements.</li>
<li> SQLite has been bundled with PHP. For more information on SQLite,   please visit <a href="http://www.sqlite.org/">their website</a>.</li>
<li> Streams have been greatly improved, including the ability to access   low-level socket operations on streams.</li>
</ul>
<p>Did I missed anything? or went wrong? if so, please let me know by commenting here.</p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2009/12/16/php4vsphp5/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ISRO loses communication with chandrayaan-1 spacecraft [NEWS]</title>
		<link>http://raju.net.in/blog/2009/08/29/isro-loses-communication-with-chandrayaan-1-spacecraft-news/</link>
		<comments>http://raju.net.in/blog/2009/08/29/isro-loses-communication-with-chandrayaan-1-spacecraft-news/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 12:15:43 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[India]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[chandrayaan-1]]></category>
		<category><![CDATA[ISRO]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=388</guid>
		<description><![CDATA[ISRO loses communication with Chandrayaan-1 spacecraft after friday midnight]]></description>
			<content:encoded><![CDATA[<p><img style="display: none;" src="http://raju.net.in/blog/isro-chandrayaan-1" alt="" width="1" height="1" /></p>
<div id="attachment_390" class="wp-caption alignright" style="width: 160px"><img class="size-thumbnail wp-image-390" title="ISRO loses communication with chandrayaan-1" src="http://raju.net.in/blog/wp-content/uploads/2009/08/isro_loses_chandrayaan-1_contact-150x150.png" alt="ISRO loses communication with chandrayaan-1" width="150" height="150" /><p class="wp-caption-text">ISRO loses communication with chandrayaan-1</p></div>
<p>The Radio communication with Chandrayaan-1 was abruptly lost after friday (28 Aug 2009 ) midnight at 0130 Hrs (IST) on Saturday. ISRO scientists are reviewing the telemetry data received from the spacecraft before losing communication to analyse the health of sub-systems of spacecraft.</p>
<p>AS per earlier news for ISRO, though Chandrayaan-1 has achieved 90 per cent of his task and there is no major worry as such..this is a serious one. and they are working hard to rectify the problem.<span id="more-388"></span></p>
<p><strong>About Chandrayaan-1:</strong></p>
<p>Chandrayaan-1 spacecraft was launched from Satish Dhawan Space Centre in Sriharikota on October 22, 2008 .The Spacecraft has completed 312 days in orbit making more than 3400 orbits around the Moon and providing large volume of data from sophisticated sensors like Terrain Mapping Camera, Hyper-spectral Imager, Moon Mineralogy Mapper etc., meeting most of the scientific objectives of the mission.</p>
<p><strong>Second time in its life:</strong></p>
<p>This is the second time that chandrayaan is running into trouble.  month back it developed a snag when it lost one of its sensors which forced ISRO to push its orbit from 100 kilometers to 200 kilometers from the moon&#8217;s surface. The change in orbit meant the data would be of lower quality.</p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2009/08/29/isro-loses-communication-with-chandrayaan-1-spacecraft-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Funny photos with your photo [FUN]</title>
		<link>http://raju.net.in/blog/2009/08/27/create-funny-photos-with-your-photo-fun/</link>
		<comments>http://raju.net.in/blog/2009/08/27/create-funny-photos-with-your-photo-fun/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 18:13:14 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[Digital Art]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[animations]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=373</guid>
		<description><![CDATA[Create Funny photos, add static and animation effects to your photos. ]]></description>
			<content:encoded><![CDATA[<p>I would like to show you some of my new photos.</p>
<div id="attachment_376" class="wp-caption alignnone" style="width: 128px"><img class="size-full wp-image-376" title="me, Raju Sykam MegaStar" src="http://raju.net.in/blog/wp-content/uploads/2009/08/Raju_Sykam_MegaStar.gif" alt="me, Raju Sykam MegaStar" width="118" height="175" /><p class="wp-caption-text">me, Raju Sykam Mega StarRaju Sykam </p></div>
<p>2.</p>
<div id="attachment_380" class="wp-caption alignnone" style="width: 217px"><img class="size-medium wp-image-380" title="Raju Sykam on Glamour Magazine" src="http://raju.net.in/blog/wp-content/uploads/2009/08/Raju-Sykam-on-Glamour-MAgazine1-207x300.jpg" alt="Raju Sykam on Glamour Magazine" width="207" height="300" /><p class="wp-caption-text">me on Glamour Magazine</p></div>
<p>3.</p>
<div id="attachment_381" class="wp-caption alignnone" style="width: 217px"><img class="size-medium wp-image-381" title="Raju Sykam on magazine in a girls hand" src="http://raju.net.in/blog/wp-content/uploads/2009/08/Raju-Sykam-on-magazine-in-a-girls-hand-207x300.jpg" alt="me, Raju Sykam on magazine in a girls hand" width="207" height="300" /><p class="wp-caption-text">me, Raju Sykam on magazine in a girls hand</p></div>
<p>4.</p>
<div id="attachment_382" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-382" title="why girls are crazy about me, Raju Sykam with gilrs" src="http://raju.net.in/blog/wp-content/uploads/2009/08/raju-sykam_with_girls1-300x266.jpg" alt="why girls are crazy about me, Raju Sykam with gilrs" width="300" height="266" /><p class="wp-caption-text">why girls are crazy about me, Raju Sykam with girls</p></div>
<p>5.</p>
<div id="attachment_383" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-383" title="Coin released with my picture" src="http://raju.net.in/blog/wp-content/uploads/2009/08/Raju_coin-300x225.jpg" alt="Coin released with my picture" width="300" height="225" /><p class="wp-caption-text">Coin released with my picture</p></div>
<p>6.</p>
<div id="attachment_384" class="wp-caption alignnone" style="width: 224px"><img class="size-full wp-image-384" title="Raju Sykam album" src="http://raju.net.in/blog/wp-content/uploads/2009/08/Raju-Sykam-album.gif" alt="Raju Sykam album" width="214" height="152" /><p class="wp-caption-text">Raju Sykam&#39;s album</p></div>
<p> <img src='http://raju.net.in/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  All these photos are done with Online Funny Photo create websites. Let me tell you the real thing.</p>
<p>1. <a title="Fun Photos Box" href="http://raju.net.in/blog/funphotobox" target="_blank"> Fun Photo Box </a> is a free online service website for adding special live effects using your photo. With this, you can realistic animations, magazine covers, e-cards and more. 120 High quality templates (both static and animation) templates are there.</p>
<p>2. <a title="Photo Funia" href="http://raju.net.in/blog/photofunia" target="_blank">Photo Funia</a> is one more site for adding lively funny effects to your photo. Photo Funia uses intelligent face detection technology.</p>
<p>so, burn your creativity.</p>
<p>and post your creations here. me, and my readers love to see your work.</p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2009/08/27/create-funny-photos-with-your-photo-fun/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Improve your Mathematical skills and programming skills with Project Euler</title>
		<link>http://raju.net.in/blog/2009/08/27/improve-your-mathematical-skills-and-programming-skills-with-project-euler/</link>
		<comments>http://raju.net.in/blog/2009/08/27/improve-your-mathematical-skills-and-programming-skills-with-project-euler/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 19:10:40 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[Maths]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[advanced mathematics]]></category>
		<category><![CDATA[mathematics]]></category>
		<category><![CDATA[programming skills]]></category>
		<category><![CDATA[project euler]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=357</guid>
		<description><![CDATA[Are you passionate about Mathematics and programming ? Like to play with numbers and find the magic in them? if so, soon you will be addictive to Project Euler, a must site for mathematics lovers.]]></description>
			<content:encoded><![CDATA[<div id="attachment_363" class="wp-caption alignleft" style="width: 194px"><img class="size-full wp-image-363" title="Love in mathematics" src="http://raju.net.in/blog/wp-content/uploads/2009/08/maths_love.png" alt="Love in mathematics" width="184" height="110" /><p class="wp-caption-text">Love in mathematics</p></div>
<p>Are you passionate about Mathematics and programming ? Like to play with numbers and find the magic in them? if so, soon you will be addictive to<a title="Project Euler" href="http://raju.net.in/blog/projecteuler" target="_blank"> Project Euler</a>, a must site for mathematics lovers.</p>
<p><strong><br />
What is Project Euler?</strong></p>
<blockquote><p><a title="Project Euler" href="http://raju.net.in/blog/projecteuler" target="_blank"> Project Euler</a> is a series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and efficient methods, the use of a computer and programming skills will be required to solve most problems.</p></blockquote>
<p><img class="size-full wp-image-359 alignright" title="mathematics_love" src="http://raju.net.in/blog/wp-content/uploads/2009/08/mathematics_love.png" alt="Love in Mathematics" width="223" height="301" /></p>
<p><strong>How to use Project Euler</strong>:</p>
<p>Just Register with <a title="Project Euler" href="http://raju.net.in/blog/projecteuler" target="_blank"> Project Euler</a> website, and you are ready to sink in maths.</p>
<p>After successful registration and login, you are greeted with 252 problems(Number of problems might change as new problems are added frequently.</p>
<p>Solutions to some of the problems can be get by paper and pen applying simple mathematics formula learned at school. Some can be solved only with advanced mathematics upon a lot of thinking thinking thinking and writing algorithms but most of then requires some programming in your favorite language.</p>
<p>When you got the solution, you can enter the answer there and check whether you are right or not? If you are right, particular problem will be shifted to &#8216;solved problems&#8217; sections and you are ranked +1.  And score board will show the levels of all users based on the number of problems solved. The more problems solved -&gt; more score -&gt; more respect at forum.</p>
<p>And, if you solve the problem, then only you will be able to see the forum for that particular problem, where all other share their code and mathematical formula they used to solve the problem.</p>
<p>A Problem from Project Euler:</p>
<div id="attachment_371" class="wp-caption alignnone" style="width: 752px"><img class="size-full wp-image-371" title="problem 2 project euler" src="http://raju.net.in/blog/wp-content/uploads/2009/08/problem-2-project-euler.png" alt="problem 2 project euler" width="742" height="261" /><p class="wp-caption-text">problem 2 project euler</p></div>
<p>and if you cant solve the problem&#8230;??? Project Euler says&#8230;</p>
<p><strong> </strong> <strong>Please do not contact Project Euler if you are unable to solve a particular problem. If you can&#8217;t solve it, then you can&#8217;t solve it!</strong></p>
<p>Dont worry! I try to post solutions to problems<a href="http://raju.net.in/blog/category/maths/" target="_self"> here</a> on my blog.</p>
<p>so, Happy Mathematics.</p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2009/08/27/improve-your-mathematical-skills-and-programming-skills-with-project-euler/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>get a free domain name and blog &#8211; manage all your social content</title>
		<link>http://raju.net.in/blog/2009/08/26/get-a-free-domain-name-and-blog-manage-all-your-social-content/</link>
		<comments>http://raju.net.in/blog/2009/08/26/get-a-free-domain-name-and-blog-manage-all-your-social-content/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 04:35:39 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[web resources]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=348</guid>
		<description><![CDATA[Would you love to own your personal domain, and able to to blog without writing single line of coding, not buying any hosting, create photo albums, and aggregate all of your social accounts at one place. if yes, chi.mp is for you.]]></description>
			<content:encoded><![CDATA[<p>Would you love to own your personal domain, and able to to blog without writing single line of coding, not buying any hosting, create photo albums, and aggregate all of your social accounts at one place. if yes, <a title="chi.mp" href="http://raju.net.in/blog/chimp" target="_blank">chi.mp</a> is for you.</p>
<p><strong>What you can get from chi.mp</strong>:</p>
<ul>
<li>Your Own personal Domain name (.mp extension) with your blog and OpenID</li>
<li>A Blog</li>
<li>Photo Albums</li>
<li>Aggregation of all your social accounts ( twitter, facebook, flickr, friendfeed, digg etc.)</li>
<li>Contacts and management system</li>
<li>Choice of  custom themes</li>
<li>Detailed profile.</li>
<li>No Advertisements.</li>
<li>COMPLETELY FREE.</li>
</ul>
<p><img class="size-full wp-image-351" title="chimp" src="http://raju.net.in/blog/wp-content/uploads/2009/08/chimp.png" alt="chi.mp" width="572" height="473" /></p>
<p><strong>How to Start:</strong></p>
<p>Its very simple to get started with chi.mp. Simply enter your name(or the name you wish to have) at <a title="chi.mp" href="http://raju.net.in/blog/chimp" target="_blank">chi.mp</a> and enter. If the name is available, you can get that domain name for free after a simple registration process which is completely free.</p>
<p>and this is my site with chimp <a href="http://raju.net.in/blog/rajusmp">rajus.mp</a> Check this one also. if you got your domain and blog with chi.mp let me know by commenting here.</p>
<p>and also write your suggestions here. good day <img src='http://raju.net.in/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2009/08/26/get-a-free-domain-name-and-blog-manage-all-your-social-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to start a free website or blog–part 1</title>
		<link>http://raju.net.in/blog/2009/08/12/how-to-start-a-free-website-or-blog-part-1/</link>
		<comments>http://raju.net.in/blog/2009/08/12/how-to-start-a-free-website-or-blog-part-1/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 04:18:53 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[web resources]]></category>
		<category><![CDATA[free blog]]></category>
		<category><![CDATA[free website]]></category>
		<category><![CDATA[newbie]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=316</guid>
		<description><![CDATA[Start a Free Website or blog, without knowing a line of code and without spending a single paisa.]]></description>
			<content:encoded><![CDATA[<p>Have you ever wanted to start a website or blog? Starting a website or blog is very easy these days.<br />
In this series we will see, how to start a website or blog without a single line of code and single paisa.</p>
<p>All you need to know is, sending mail from your mail client( I suggest gmail.com).</p>
<p>1. <a title="Posterous" href="http://raju.net.in/blog/posterous.com" target="_blank">Posterous</a></p>
<p><a title="Posterous" href="http://raju.net.in/blog/posterous.com" target="_blank"><br />
<img class="size-full wp-image-315" title="posterous start free website or blog" src="http://raju.net.in/blog/wp-content/uploads/2009/08/posterous_start_free_website_or_blog.png" alt="posterous start free website or blog" width="454" height="239" /></a></p>
<p><span id="more-316"></span><br />
No need of filling long forms. No signup at all. Just email your anything to <a href="mailto:post@posterous.com">post@posterous.com</a><br />
and Posterous will mail you back the details of your blog at <a href="http://yourname.posterous.com/">http://yourname.posterous.com</a></p>
<p>With this, you can attach posts, videos, MP3’s and files with your email. Posterous will read your mail, and publish the contents on your blog.</p>
<p>So, let’s give it a try, if you want to start a website/blog and wish to write on www. And let me know, your website/blog URL by commenting below.</p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2009/08/12/how-to-start-a-free-website-or-blog-part-1/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Michael Jackson &#8211; R.I.P</title>
		<link>http://raju.net.in/blog/2009/06/28/michael-jackson-rip/</link>
		<comments>http://raju.net.in/blog/2009/06/28/michael-jackson-rip/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 18:53:32 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[Digital Art]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=309</guid>
		<description><![CDATA[May his soul RIP. Pop King Michael Jackson]]></description>
			<content:encoded><![CDATA[<p>R.I.P</p>
<p><img title="michael_jackson_forever" src="http://raju.net.in/blog/wp-content/uploads/2009/06/michael_jackson_forever.jpg" alt="RIP Michael Jackson" width="600" height="849" /><br />
My Tributes to Pop King.</p>
<p>may his Soul RIP.</p>
<p>Image Credits:<a href="http://felsus.deviantart.com/art/Michael-Jackson-Forever-127271950" target="_blank"> http://felsus.deviantart.com/art/Michael-Jackson-Forever-127271950</a></p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2009/06/28/michael-jackson-rip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>3D Computer Interface</title>
		<link>http://raju.net.in/blog/2009/05/30/3d-computer-interface/</link>
		<comments>http://raju.net.in/blog/2009/05/30/3d-computer-interface/#comments</comments>
		<pubDate>Fri, 29 May 2009 19:14:34 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[Electrical]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=300</guid>
		<description><![CDATA[This invention was done by Free Flow, a team of five electrical and computer engineering seniors about to graduate from Northeastern University. via Scene 360 Illusion]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="300" data="http://vimeo.com/moogaloop.swf?clip_id=4366452&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=4366452&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /></object></p>
<p>This invention was done by Free Flow, a team of five electrical and computer engineering seniors about to graduate from Northeastern University.</p>
<p>via <a href="http://illusion.scene360.com/" target="_blank">Scene 360 Illusion</a></p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2009/05/30/3d-computer-interface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy new year 2009</title>
		<link>http://raju.net.in/blog/2009/01/04/happy-new-year-2009/</link>
		<comments>http://raju.net.in/blog/2009/01/04/happy-new-year-2009/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 07:02:05 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[new year]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=280</guid>
		<description><![CDATA[Happy New Years Eve everyone! Just taking the opportunity to say thanks to everyone for visiting and being a part of my blog. This blog has came a long way in one short year, and now is a great time to reflect. Most popular posts in 2008 1.Â Â Â Â Â Â  APTransco Notification for Assistant Engineers 2.Â Â Â Â Â Â  aptransco [...]]]></description>
			<content:encoded><![CDATA[<p>Happy New Years Eve everyone! Just taking the opportunity to say thanks to everyone for visiting and being a part of my blog. This blog has came a long way in one short year, and now is a great time to reflect.</p>
<h3>Most popular posts in 2008</h3>
<p>1.Â Â Â Â Â Â  <a href="http://raju.net.in/blog/2008/07/02/aptransco-notification-for-assistant-engineers/">APTransco Notification for Assistant Engineers</a></p>
<p>2.Â Â Â Â Â Â  <a href="http://raju.net.in/blog/2008/10/04/aptransco-syllabus-for-assistant-engineer-post-electrical-stream/">aptransco syllabus for assistant engineer post &#8211; electrical stream</a></p>
<p>3.Â Â Â Â Â Â  <a href="http://raju.net.in/blog/2008/07/24/apgenco-notification-for-assistant-engineers/">APGenco Notification for Assistant Engineers 2008</a></p>
<p>4.Â Â Â Â Â Â  <a href="http://raju.net.in/blog/2008/08/10/apgenco-aptransco-previous-questions/">APGenco and APTransco Previous questions</a></p>
<p>5.Â Â Â Â Â Â  <a href="http://raju.net.in/blog/2008/11/05/power-grid-interview-questions-from-our-reader-arjun/">Power grid interview Questions &#8211; From our reader Arjun</a></p>
<p>6.Â Â Â Â Â Â  <a href="http://raju.net.in/blog/2008/10/05/subscribe-to-my-sms-channel-so-that-you-will-get-a-sms-everytime-when-i-have-to-say-something-to-you/">subscribe to my SMS Channel so that you will get a SMS everytime when I have to say something to you</a></p>
<p>7.Â Â Â Â Â Â  <a href="http://raju.net.in/blog/2008/07/23/indias-first-atomic-power-station-at-kalpakkam-tamilnadu-completes-25-years-today/">India&#8217;s first Atomic Power Station at kalpakkam, Tamilnadu completes 25 years today</a></p>
<p>8.Â Â Â Â Â Â  <a href="http://raju.net.in/blog/2008/06/24/pillars-of-india-economy-complete-list-of-navaratna-and-miniratna-cpses/">Pillars of India Economy: Complete list of Navaratna and Miniratna CPSEs</a></p>
<p>9.Â Â Â Â Â Â  <a href="http://raju.net.in/blog/2008/10/22/indias-first-moon-mission-chandrayaan-1-perfect-now-india-on-the-moon/">Indias first moon mission Chandrayaan-1 perfect, Now India on the Moon</a></p>
<p>10.Â Â Â  <a href="http://raju.net.in/blog/2008/11/06/hello-www/">Hello WWW,</a></p>
<p><span id="more-280"></span></p>
<p><strong>Launched Other Sites</strong></p>
<p>I launched electrical.org.in for all the electrical &amp; electronics students and there is a long way to go.</p>
<p><strong>Statistics<br />
</strong></p>
<ul>
<li><strong>95</strong> posts have been publsihed</li>
<li><strong>2320 </strong>approved comments</li>
<li>Akismet has caughtÂ <strong>4,884</strong> spam comments.</li>
<li><strong>1613</strong> subscribers to blog and forum.</li>
<li><strong>248 </strong>Feed readers by feedburner</li>
<li><strong> 86.66%</strong> of traffic comes from search engines,<strong> 8.84%</strong> of traffic comes directly and <strong>4.5% </strong>of traffic comes from referring sites.</li>
<li>the entire year saw total <strong>6,44,066</strong> page views</li>
<li>the most popular post in 2008:Â <a href="http://raju.net.in/blog/2008/07/02/aptransco-notification-for-assistant-engineers/">APTransco Notification for Assistant Engineers</a></li>
</ul>
<p><strong>What&#8217;s to come in 2009</strong></p>
<p>I cant say anything right now, but 2009 will have more dynamic stuff here than 2008.</p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2009/01/04/happy-new-year-2009/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Video of the Moon from Chandrayaan-1</title>
		<link>http://raju.net.in/blog/2008/11/18/video-of-the-moon-from-chandrayaan-1/</link>
		<comments>http://raju.net.in/blog/2008/11/18/video-of-the-moon-from-chandrayaan-1/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 18:02:30 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[chandrayaan-1]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[ISRO]]></category>
		<category><![CDATA[moon]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=277</guid>
		<description><![CDATA[This is the first video of the Moon, and was taken by the terrain mapping camera of Chandrayaan-1. This short video was shot as the spacecraft flew over the area near moon&#8217;s south polar region. src: rediff.com]]></description>
			<content:encoded><![CDATA[<p>This is the first video of the Moon, and was taken by the terrain mapping camera of Chandrayaan-1. This short video was shot as the spacecraft flew over the area near moon&#8217;s south polar region.<span id="more-277"></span><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="322" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="player" /><param name="flashvars" value="videoURL=http://ishare.rediff.com/embedcodeplayer_config.php?content_id=515335" /><param name="src" value="http://ishare.rediff.com/images/player.swf" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="400" height="322" src="http://ishare.rediff.com/images/player.swf" allowfullscreen="true" flashvars="videoURL=http://ishare.rediff.com/embedcodeplayer_config.php?content_id=515335" name="player"></embed></object><br />
src: rediff.com</p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2008/11/18/video-of-the-moon-from-chandrayaan-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello WWW,</title>
		<link>http://raju.net.in/blog/2008/11/06/hello-www/</link>
		<comments>http://raju.net.in/blog/2008/11/06/hello-www/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 18:57:48 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[web resources]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[web 3.0]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=267</guid>
		<description><![CDATA[Yes! Hello WWW, not Hello World! I started blogging a long back. but blogging mostly on electrical and India. For a few months, I am planning to blog on favorite subject. so thats the heading &#8211; Hello WWW. wish to blog on WWW. World Wide Web. I am on web for last 10 years and [...]]]></description>
			<content:encoded><![CDATA[<p>Yes! Hello WWW, not Hello World! I started blogging a long back. but blogging mostly on electrical and India. For a few months, I am planning to blog on favorite subject. so thats the heading &#8211; Hello WWW. wish to blog on WWW. World Wide Web.</p>
<p>I am on web for last 10 years and blogging for last 3 years(rarely), and got something to share with you and need to learn a lot from WWW. so lets start.</p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2008/11/06/hello-www/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Power grid interview Questions &#8211; From our reader Arjun</title>
		<link>http://raju.net.in/blog/2008/11/05/power-grid-interview-questions-from-our-reader-arjun/</link>
		<comments>http://raju.net.in/blog/2008/11/05/power-grid-interview-questions-from-our-reader-arjun/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 17:48:51 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[Electrical]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[inetrview questions]]></category>
		<category><![CDATA[power grid]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=265</guid>
		<description><![CDATA[One of my Blog reader Arjun wants to share some great important things with us. I appreciate his wish to help others. Arjun Says: I am Arjun, I have attended the Power grid interview on 3-Nov-2008 at Bhubaneshwar. I like to share some of the questions that I have faced in the interview. The Interview [...]]]></description>
			<content:encoded><![CDATA[<p>One of my Blog reader Arjun wants to share some great important things with us. I appreciate his wish to help others.</p>
<p>Arjun Says:</p>
<p>I am Arjun, I have attended the Power grid interview on 3-Nov-2008 at Bhubaneshwar. I like to share some of the questions that I have faced in the interview.</p>
<p>The Interview panel comprises a team of 6 persons, as this interview is for the post of AE to work under Rural Electrification projects in the states of West Bengal and Orissa, apart from the Technical skills they looked for knowledge in Hindi also. As the work comprises mostly of construction of Distribution sub-statation and Distribution of the supply. They very much concentrated on the Power systems and they also posed questions in the Power Electronics.<span id="more-265"></span></p>
<p>On an average the interview will go around half-an-hour as said earlier they looking for both Hindi and Technical skills in the Candidate. I am posting some questions here which I have faced in the interview. Hope it will be useful for the people who are atteninding the interviews.</p>
<p>1) What is a Triode? What are its uses?<br />
2) What is a Triac?<br />
3) What is a Thyristor?<br />
4) What is the HVDC Transmission System?<br />
5) What are the conditions applicable to lay an HVDC Line?<br />
6) Does Conveter and Inveter has same ckt? Explain.<br />
7) Why do we use only Sinusoidal Wave in AC supply why not the Square,Triangle or Sawtooth etc?<br />
 <img src='http://raju.net.in/blog/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> What constraints regarding the HVDC Transmission System?<br />
9) Explain the Local Distribution System?<br />
10) What are the different types of transformers present in the Transmission and Distribution system?<br />
11) How would you supply a single house hold load from a 3-phase supply coming out of a sub-station?<br />
12) How would you supply power to a village which is very far from a sub-station and has only a 11kV line running near by?<br />
13) What are the important structures of a local Distribution System?<br />
14) Name any Five Major Rivers of country?( we should answer in Hindi)<br />
15) Name the Person who became President of India from A.P?(In Hindi)<br />
16) Name the Person who became P.M of India form A.P? (In Hindi)<br />
17) Name the Famous Power Plants present in A.P? (In Hindi)<br />
18) Are you willing to work in the rural Areas of Orissa?</p>
<p>They may ask question on your native place,name,college etc., to test our language skills and confidence levels in answering it.</p>
<p>Thank you Raju for giving Â me this oppurtunity, hope in future I can contribute more for this site.</p>
<p>Regards,<br />
Arjun</p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2008/11/05/power-grid-interview-questions-from-our-reader-arjun/feed/</wfw:commentRss>
		<slash:comments>156</slash:comments>
		</item>
		<item>
		<title>Indias first moon mission Chandrayaan-1 perfect, Now India on the Moon</title>
		<link>http://raju.net.in/blog/2008/10/22/indias-first-moon-mission-chandrayaan-1-perfect-now-india-on-the-moon/</link>
		<comments>http://raju.net.in/blog/2008/10/22/indias-first-moon-mission-chandrayaan-1-perfect-now-india-on-the-moon/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 04:37:06 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[India]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[astronomy]]></category>
		<category><![CDATA[chandrayaan-1]]></category>
		<category><![CDATA[ISRO]]></category>
		<category><![CDATA[moon]]></category>
		<category><![CDATA[Space]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=256</guid>
		<description><![CDATA[India has successfully launched its first mission to the Moon. India achieved a milestone in the global space history with the successful launch of Chandrayaan -I, India&#8217;s first spacecraft mission to moon, today, on October 22, 2008 at 6.22 am from Sathish Dhawan Space Centre in Sriharikota (SHAR) in Andhra Pradesh.]]></description>
			<content:encoded><![CDATA[<p><strong>India has successfully launched its first mission to the Moon.</strong></p>
<p>India achieved a milestone in the global space history with the successful launch of Chandrayaan -I, India&#8217;s first spacecraft mission to moon, today, on October 22, 2008 at 6.22 am from Sathish Dhawan Space Centre in Sriharikota (SHAR) in Andhra Pradesh.<span id="more-256"></span></p>
<div id="attachment_257" class="wp-caption alignright" style="width: 229px"><a href="http://raju.net.in/blog/wp-content/uploads/2008/10/chandrayaan-1.jpg"><img class="size-full wp-image-257" title="chandrayaan-1" src="http://raju.net.in/blog/wp-content/uploads/2008/10/chandrayaan-1.jpg" alt="Chandrayaan-1" width="219" height="141" /></a><p class="wp-caption-text">Chandrayaan-1</p></div>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2008/10/22/indias-first-moon-mission-chandrayaan-1-perfect-now-india-on-the-moon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>subscribe to my SMS Channel so that you will get a SMS everytime when I have to say something to you</title>
		<link>http://raju.net.in/blog/2008/10/05/subscribe-to-my-sms-channel-so-that-you-will-get-a-sms-everytime-when-i-have-to-say-something-to-you/</link>
		<comments>http://raju.net.in/blog/2008/10/05/subscribe-to-my-sms-channel-so-that-you-will-get-a-sms-everytime-when-i-have-to-say-something-to-you/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 06:56:50 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[Electrical]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[google sms channels]]></category>
		<category><![CDATA[raju sykam]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/?p=234</guid>
		<description><![CDATA[Now you can subscribe to my posts by mobile via sms. Google IndiaÂ started a new service calledÂ SMS Channels. By susbscribing to my SMS channel, you can get my posts/jobs notifications by SMS to your mobile directly. If you subscribe, you will receive a SMS everytime when I write some article/post some notification/important message. So you [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_235" class="wp-caption alignright" style="width: 160px"><a href="http://raju.net.in/blog/wp-content/uploads/2008/10/googlesms.gif"><img class="size-full wp-image-235" title="googlesms" src="http://raju.net.in/blog/wp-content/uploads/2008/10/googlesms.gif" alt="Google SMS Channels" width="150" height="55" /></a><p class="wp-caption-text">Google SMS Channels</p></div>
<p>Now you can subscribe to my posts by mobile via sms. Google IndiaÂ started a new service calledÂ SMS Channels.</p>
<p>By susbscribing to my SMS channel, you can get my posts/jobs notifications by SMS to your mobile directly.</p>
<p>If you subscribe, you will receive a SMS everytime when I write some article/post some notification/important message. So you will never miss a message and need not to wait.</p>
<blockquote><p>Susbcribe here at <a href="http://labs.google.co.in/smschannels/subscribe/rajusykam">http://labs.google.co.in/smschannels/subscribe/rajusykam</a></p></blockquote>
<blockquote><p>Subscribe to Electrical.org.in SMS alerts/notifications here: <a href="http://labs.google.co.in/smschannels/subscribe/ElectricalOrgIN">http://labs.google.co.in/smschannels/subscribe/ElectricalOrgIN</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2008/10/05/subscribe-to-my-sms-channel-so-that-you-will-get-a-sms-everytime-when-i-have-to-say-something-to-you/feed/</wfw:commentRss>
		<slash:comments>50</slash:comments>
		</item>
		<item>
		<title>aptransco syllabus for assistant engineer post &#8211; electrical stream</title>
		<link>http://raju.net.in/blog/2008/10/04/aptransco-syllabus-for-assistant-engineer-post-electrical-stream/</link>
		<comments>http://raju.net.in/blog/2008/10/04/aptransco-syllabus-for-assistant-engineer-post-electrical-stream/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 12:48:06 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[Electrical]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[aptransco]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/2008/10/04/aptransco-syllabus-for-assistant-engineer-post-electrical-stream/</guid>
		<description><![CDATA[Syllabus for written test for Electrical Engineering Graduates â€“ AP TRANSCO Electric Circuits: Network graph, KCL, KVL, node and mesh analysis, star/delta transformation; electro-magnetic induction; mutual induction; AC Fundamentals; harmonics, transient response of dc and ac networks; sinusoidal steady-state analysis; resonance; ideal current and voltage sources; Theveninâ€™s Nortonâ€™s Superposition and Maximum power transfer theorems,. Two [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span style="" mce_style="Georgia;">Syllabus for written test for Electrical Engineering Graduates â€“ AP TRANSCO</span></p>
<p class="MsoNormal"><span style="" mce_style="Verdana;"> </span><br />
<b><span style="" mce_style="&quot;Century Gothic&quot;;">Electric Circuits:</span></b>
</p>
<p class="MsoNormal"><span style="" mce_style="Verdana;">Network graph, KCL, KVL, node and mesh analysis, star/delta transformation; electro-magnetic induction; mutual induction; AC Fundamentals; harmonics, transient response of dc and ac networks; sinusoidal steady-state analysis; resonance; ideal current and voltage sources; Theveninâ€™s Nortonâ€™s Superposition and Maximum power transfer theorems,. Two port networks, z parameters, y-parameters, three phase circuits, power measurements;</span></p>
<p class="MsoNormal"><span style="" mce_style="Verdana;"> <img src="http://raju.net.in/blog/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" mce_src="http://raju.net.in/blog/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" class="mceWPmore mceItemNoResize" title="More..."/></span></p>
<p class="MsoNormal"><b><span style="" mce_style="&quot;Century Gothic&quot;;">Electrical Machines:</span></b></p>
<p class="MsoNormal"><span style="" mce_style="Verdana;">Single phase transformer- equivalent circuit, phasor diagram, tests, regulation and efficiency; three phase transformers-connections, parallel operation; auto-transformer; DC machines-types, windings, generator/motor characteristics, armature reaction and commutation, starting and speed control of motors; three-phase induction motors-principles, types, performance characteristics, starting and speed control; single-phase induction motors; synchronous machines-performance, regular and parallel operation of generators, motor starting, characteristics and applications</span></p>
<p class="MsoNormal"><b><span style="" mce_style="Verdana;"><br />
</span></b>
</p>
<p class="MsoNormal"><b><span style="" mce_style="&quot;Century Gothic&quot;;">Power Systems:</span></b></p>
<p class="MsoNormal"><span style="" mce_style="Verdana;">Basic power generation concepts; transmission line models and performance; underground cables; string insulators; corona; distribution systems; per-unit quantities; bus impedance and admittance matrices; load flow; voltage control; power factor correction; economic operation; symmetrical components; fault analysis; current limiting reactors; principles of over-current, differential and distance protection; protection of alternator, transformer, transmission lines, neutral earthing, solid state relays; circuit breakers; system stability concepts, swing curves and equal area criterion;</span></p>
<p><span style="" mce_style="Verdana;"> </span></p>
<p class="MsoNormal"><b><span style="" mce_style="&quot;Century Gothic&quot;;">Utilization, Electrical and Electronic measurements:</span></b></p>
<p class="MsoNormal"><span style="" mce_style="Verdana;">Heating-resistance, induction, dielectric; welding-spot, seam and butt; electric traction-speed-time curves, tractive effort; bridges and potentiometers; PMMC, moving iron, dynamometer and induction type instruments; measurement of voltage, current, power, energy and power factor; digital voltmeters and multi meters; phase, time and frequency measurement; Q-meters; oscilloscopes and potentiometric recorders;<span> </span></span></p>
<p class="MsoNormal"><span style="" mce_style="Verdana;"> </span></p>
<p class="MsoNormal"><b><span style="" mce_style="&quot;Century Gothic&quot;;">Power Electronics:</span></b></p>
<p class="MsoNormal"><span style="" mce_style="Verdana;">Semiconductor power diodes, transistors, thyristors, triacs, GTOs, MOSFETs and IGBTs-static characteristics and principle of operation; triggering circuits; phase control rectifiers; bridge converters-fully controlled and half controlled; principles of choppers and inverters; adjustable speed dc and ac drivers;</span></p>
<p class="MsoNormal"><span style="" mce_style="Verdana;"> </span></p>
<p class="MsoNormal"><span style="" mce_style="Verdana;"> </span></p>
<p><!--Mime Type of File is application/pdf --><br />
<span class="download"><a href="http://raju.net.in/blog/wp-filez/aptransco_syllabus.pdf" mce_href="http://raju.net.in/blog/wp-filez/aptransco_syllabus.pdf">Download ApTransco Syllabus in PDF</a><br />
<!--Mime Type of File is application/msword --><a href="http://raju.net.in/blog/wp-filez/APTransco_syllabus.doc" mce_href="http://raju.net.in/blog/wp-filez/APTransco_syllabus.doc">Download ApTransco Syllabus in DOC</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2008/10/04/aptransco-syllabus-for-assistant-engineer-post-electrical-stream/feed/</wfw:commentRss>
		<slash:comments>234</slash:comments>
		</item>
		<item>
		<title>goDaddy registers already registered .ME domains too :(</title>
		<link>http://raju.net.in/blog/2008/07/18/godaddy-registers-already-registered-domains-too/</link>
		<comments>http://raju.net.in/blog/2008/07/18/godaddy-registers-already-registered-domains-too/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 06:11:24 +0000</pubDate>
		<dc:creator>Raju Sykam</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[web resources]]></category>
		<category><![CDATA[domain registration]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[godaddy]]></category>

		<guid isPermaLink="false">http://raju.net.in/blog/2008/07/18/godaddy-registeres-already-registered-domains-too/</guid>
		<description><![CDATA[for long time,Â  I am waiting for raju.com and settled with raju.net.in at last. Last evening, I came to know that .me registrations are going started in a couple of hours and waited till the time to start and grabbed myself raju.me by paying $39.98/2 years. Before that I looked does this domain available or [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_178" class="wp-caption alignleft" style="width: 160px"><img class="size-medium wp-image-178" title="godaddy" src="http://raju.net.in/blog/wp-content/uploads/2008/07/godaddy.gif" alt="GoDaddy" width="150" height="72" /><p class="wp-caption-text">GoDaddy</p></div>
<p>for long time,Â  I am waiting for raju.com and settled with raju.net.in at last. Last evening, <a href="http://www.labnol.org/internet/favorites/register-me-web-domains-godaddy/3902/">I came to know</a> that .me registrations are going started in a couple of hours and waited till the time to start and grabbed myself raju.me by paying $39.98/2 years.</p>
<div id="attachment_179" class="wp-caption alignright" style="width: 229px"><img class="size-medium wp-image-179" title="me_domain" src="http://raju.net.in/blog/wp-content/uploads/2008/07/me_domain.gif" alt=".ME Domain Registration" width="219" height="72" /><p class="wp-caption-text">.ME Domain Registration</p></div>
<p>Before that I looked does this domain available or not at <a href="http://www.domain.me">www.domain.me</a> oops.. again I was unlucky. that was not available. But godaddy says that was available and registered for me after some lengthy confusing pages. GoDaddy doamin registration pages were very confusing and very muchÂ  irritating.</p>
<p><span id="more-176"></span></p>
<p>I got confirmation mail from goDaddy saying that my order was successful. Still, I can&#8217;t believe that as I already know that raju.me was already registered by someone. I keep trying to refresh whois records for raju.me and nothing was changed. how it would be?Â Â  After 30min, I got another mail from GoDaddy saying that the order can&#8217;t be completed as it was already registered. OMG, Don&#8217;t they know it before processing my request.</p>
<p>anyhow, raju.net.in was quite good domain name. and now, I am not at all waiting for another domain name by name Raju, but for my amount I paid to goDaddy.</p>
]]></content:encoded>
			<wfw:commentRss>http://raju.net.in/blog/2008/07/18/godaddy-registers-already-registered-domains-too/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

