<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>IT Release</title>
	
	<link>http://www.itrelease.com</link>
	<description />
	<lastBuildDate>Thu, 17 May 2012 09:25:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/itrelease/KDBr" /><feedburner:info uri="itrelease/kdbr" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><image><link>http://www.itrelease.com</link><url>http://www.itrelease.com/wp-content/uploads/2011/05/logo1.png</url><title>IT Release</title></image><feedburner:emailServiceId>itrelease/KDBr</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Difference between get and post in php</title>
		<link>http://feedproxy.google.com/~r/itrelease/KDBr/~3/JVM-49bsAA8/</link>
		<comments>http://www.itrelease.com/2012/05/difference-between-get-and-post-in-php/#comments</comments>
		<pubDate>Wed, 16 May 2012 10:52:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[advantage of using post in php]]></category>
		<category><![CDATA[Comparison between get and post in php]]></category>
		<category><![CDATA[get vs post in php]]></category>
		<category><![CDATA[why to use get in php]]></category>

		<guid isPermaLink="false">http://www.itrelease.com/?p=989</guid>
		<description><![CDATA[<p>When you visit some website then you surely see some forms to fill out like enter username, password, email and message. These forms are build in html. We use &#60;form&#62; tag in html to submit these forms. There are two methods to submit these types of forms. One method is get and other is post [...]]]></description>
			<content:encoded><![CDATA[<p>When you visit some website then you surely see some forms to fill out like enter username, password, email and message. These forms are build in html. We use &lt;form&gt; tag in html to submit these forms. There are two methods to submit these types of forms. One method is get and other is post method.<br />
Let me first give you code about how to use get method in html and get values in php.</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/isset"><span style="color: #990000;">isset</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;submit&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
<span style="color: #000088;">$username</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;username&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$password</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;password&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Username = <span style="color: #006699; font-weight: bold;">$username</span> &lt;br&gt;&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Password = <span style="color: #006699; font-weight: bold;">$password</span>&quot;</span><span style="color: #339933;">;</span>&nbsp; &nbsp; <br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #000000; font-weight: bold;">?&gt;</span><br />
&lt;!DOCTYPE HTML&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;<br />
&lt;title&gt;Using Get Method&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;form method=&quot;get&quot; action=&quot;&quot;&gt;<br />
&lt;p&gt;&lt;label for=&quot;username&quot;&gt;Username: &lt;/label&gt;<br />
&lt;input type=&quot;text&quot; name=&quot;username&quot; /&gt;&lt;/p&gt;<br />
&lt;p&gt;&lt;label for=&quot;password&quot;&gt;Password: &lt;/label&gt;<br />
&lt;input type=&quot;password&quot; name=&quot;password&quot; /&gt;&lt;/p&gt;<br />
&lt;p&gt;&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Submit&quot; /&gt;&lt;/p&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</div></div>
<p>In the above code we use method=”get” and then on the top of code we first check if form is submitted by using isset method and in isset method we get the value of submit button. When we first load the page then the php code inside if condition not runs because we have not clicked the submit button. When we fill the username and password then press submit button then php code inside if statement runs and shows the value of username and password which display above the form in browser. The value of action method is left blank because we want to submit the form to current page and no any other page. $_GET[] is used to get the values from the form and in it we pass the name of input fields as we have given in html.<br />
Similarly the code for post method in php is as follows:-</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><a href="http://www.php.net/isset"><span style="color: #990000;">isset</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;submit&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><br />
<span style="color: #000088;">$username</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;username&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$password</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;password&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Username = <span style="color: #006699; font-weight: bold;">$username</span> &lt;br&gt;&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Password = <span style="color: #006699; font-weight: bold;">$password</span>&quot;</span><span style="color: #339933;">;</span>&nbsp; &nbsp; <br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #000000; font-weight: bold;">?&gt;</span><br />
&lt;!DOCTYPE HTML&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;<br />
&lt;title&gt;Using Post Method&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;form method=&quot;post&quot; action=&quot;&quot;&gt;<br />
&lt;p&gt;&lt;label for=&quot;username&quot;&gt;Username: &lt;/label&gt;<br />
&lt;input type=&quot;text&quot; name=&quot;username&quot; /&gt;&lt;/p&gt;<br />
&lt;p&gt;&lt;label for=&quot;password&quot;&gt;Password: &lt;/label&gt;<br />
&lt;input type=&quot;password&quot; name=&quot;password&quot; /&gt;&lt;/p&gt;<br />
&lt;p&gt;&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Submit&quot; /&gt;&lt;/p&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</div></div>
<p>Most of this code is similar to the get method code except we used method=”post” and we used $_POST[] to get the values from the form.<br />
Now the difference between get and post is that in get method the values of input form fields are shown in the url when we submit the form. While in post method the values of input form fields are not shown in the url. Other difference is that in get method we can pass small number of values i.e we have to use limited number of input fields in one form while in post method we can use large number of input form fields.<br />
For security reason I advise you use post method in most of cases where you want password field to be submitted or any other secure field to be submitted.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=JVM-49bsAA8:YZcmaXb_nAA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=JVM-49bsAA8:YZcmaXb_nAA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=JVM-49bsAA8:YZcmaXb_nAA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=JVM-49bsAA8:YZcmaXb_nAA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=JVM-49bsAA8:YZcmaXb_nAA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=JVM-49bsAA8:YZcmaXb_nAA:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itrelease/KDBr/~4/JVM-49bsAA8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itrelease.com/2012/05/difference-between-get-and-post-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itrelease.com/2012/05/difference-between-get-and-post-in-php/</feedburner:origLink></item>
		<item>
		<title>How important social media is to recruiters</title>
		<link>http://feedproxy.google.com/~r/itrelease/KDBr/~3/2t_lavpjXhA/</link>
		<comments>http://www.itrelease.com/2012/04/how-important-social-media-is-to-recruiters/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 21:49:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[how a recruiter find a candate]]></category>
		<category><![CDATA[importance of social media in finding jobs]]></category>
		<category><![CDATA[Posting a job for recruiter]]></category>

		<guid isPermaLink="false">http://www.itrelease.com/?p=981</guid>
		<description><![CDATA[<p>Nowadays companies find 8 out of 10 candidates through social media. As you know 600 million people are using facebook. People at their home are mostly in touch with social media sites all the day. Linkedin is also an important site for the company to find the best candidate for a job opening.</p> <p>So the [...]]]></description>
			<content:encoded><![CDATA[<p>Nowadays companies find 8 out of 10 candidates through social media. As you know 600 million people are using facebook. People at their home are mostly in touch with social media sites all the day. Linkedin is also an important site for the company to find the best candidate for a job opening.</p>
<div id="attachment_982" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.itrelease.com/wp-content/uploads/2012/04/Recruiting-a-job.jpg"><img class="size-full wp-image-982" title="Jobs" src="http://www.itrelease.com/wp-content/uploads/2012/04/Recruiting-a-job.jpg" alt="Jobs" width="300" height="299" /></a><p class="wp-caption-text">Jobs</p></div>
<p>So the recruiters use social media for the following reasons:-</p>
<ul>
<li>Company gets publicized by posting job on social media. More and more people get to know the company and it may get future contacts for the company.</li>
<li>It is cheap for recruiter to post a job on social media like linkedin, facebook and twitter. So the expenses of company can be decreased by such action. Company can utilized the saved money in their projects.</li>
<li>It is easy to fire a candidate. As the company has not spend much money in job posting so it is easy for the company to fire the candidate after testing his skills for some days. But that happens very less as mostly the company first takes written and practical test that can evaluate the right candidate.</li>
</ul>
<p>So recruiters find that candidates also which don’t apply to jobs through newspapers or job portal. Linkedin is top website which is used by recruiter to find the candidate.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=2t_lavpjXhA:ez_4s7g4nso:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=2t_lavpjXhA:ez_4s7g4nso:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=2t_lavpjXhA:ez_4s7g4nso:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=2t_lavpjXhA:ez_4s7g4nso:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=2t_lavpjXhA:ez_4s7g4nso:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=2t_lavpjXhA:ez_4s7g4nso:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itrelease/KDBr/~4/2t_lavpjXhA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itrelease.com/2012/04/how-important-social-media-is-to-recruiters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itrelease.com/2012/04/how-important-social-media-is-to-recruiters/</feedburner:origLink></item>
		<item>
		<title>How many people use wifi</title>
		<link>http://feedproxy.google.com/~r/itrelease/KDBr/~3/hdPXC-TODAY/</link>
		<comments>http://www.itrelease.com/2012/04/how-many-people-use-wifi/#comments</comments>
		<pubDate>Fri, 06 Apr 2012 01:48:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[Percentage of users using wifi]]></category>
		<category><![CDATA[wifi usage in the world]]></category>

		<guid isPermaLink="false">http://www.itrelease.com/?p=975</guid>
		<description><![CDATA[<p>With the introduction of mobiles in the market the usage of wifi increases very much. As you can see in the market ipad has also version with only wifi connectivity and other versions with wifi support also. Now isp also offering wifi support for mobile users which increase in wifi connection.</p> <p>As you have seen [...]]]></description>
			<content:encoded><![CDATA[<p>With the introduction of mobiles in the market the usage of wifi increases very much. As you can see in the market ipad has also version with only wifi connectivity and other versions with wifi support also. Now isp also offering wifi support for mobile users which increase in wifi connection.</p>
<div id="attachment_976" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.itrelease.com/wp-content/uploads/2012/04/how-many-people-use-wifi.jpg"><img class="size-medium wp-image-976" title="Wifi usage in the world" src="http://www.itrelease.com/wp-content/uploads/2012/04/how-many-people-use-wifi-300x211.jpg" alt="Wifi usage in the world" width="300" height="211" /></a><p class="wp-caption-text">Wifi usage in the world</p></div>
<p>As you have seen in the above image south korea has highest number of users who uses wifi. United states has also good ratio of wifi users. Wifi is also cheap as compared to 3G and 4G connections. Wifi performs the same task as to see websites but has less speed in connecting. So for a middle family wifi connection is better than any other connection for his ipad and iphone and other mobile sets in the market.</p>
<p>The download speed of wifi is also not as good as other connection. And you cannot see high quality videos in wifi. The speed of wifi depends but I don’t think that wifi has very good speed available still now. In underdeveloped countries 8 out of 10 people use wifi for mobile and ipads. China has still very less users using wifi but there is looking great increase of wifi users in china.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=hdPXC-TODAY:OHPZQXiOA1s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=hdPXC-TODAY:OHPZQXiOA1s:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=hdPXC-TODAY:OHPZQXiOA1s:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=hdPXC-TODAY:OHPZQXiOA1s:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=hdPXC-TODAY:OHPZQXiOA1s:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=hdPXC-TODAY:OHPZQXiOA1s:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itrelease/KDBr/~4/hdPXC-TODAY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itrelease.com/2012/04/how-many-people-use-wifi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itrelease.com/2012/04/how-many-people-use-wifi/</feedburner:origLink></item>
		<item>
		<title>Is AroundMe app better than apple maps app and google’s places app</title>
		<link>http://feedproxy.google.com/~r/itrelease/KDBr/~3/2NypSzH5huo/</link>
		<comments>http://www.itrelease.com/2012/04/is-aroundme-app-better-than-apple-maps-app-and-googles-places-app/#comments</comments>
		<pubDate>Fri, 06 Apr 2012 01:44:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ipad and iphone]]></category>
		<category><![CDATA[AroundMe vs Apps Maps vs Google's Places App]]></category>
		<category><![CDATA[which location app is best for iphone and android]]></category>
		<category><![CDATA[why AroundMe so popular]]></category>

		<guid isPermaLink="false">http://www.itrelease.com/?p=971</guid>
		<description><![CDATA[<p>AroundMe app is founded by a single person named Pifferi and 4 team members. This app does more efficient work than apple maps app and google’s places app. The company which has made AroundMe app was developed in 2008. The company idea was stolen by google and google made his mind to make similar app [...]]]></description>
			<content:encoded><![CDATA[<p>AroundMe app is founded by a single person named Pifferi and 4 team members. This app does more efficient work than apple maps app and google’s places app. The company which has made AroundMe app was developed in 2008. The company idea was stolen by google and google made his mind to make similar app and named it google’s places app. Pifferi does not mind it and keep their development going and when the app was released in the mobile world it captures all the users.</p>
<div id="attachment_972" class="wp-caption aligncenter" style="width: 217px"><a href="http://www.itrelease.com/wp-content/uploads/2012/04/AroundMe-app.jpg"><img class="size-full wp-image-972" title="AroundMe App" src="http://www.itrelease.com/wp-content/uploads/2012/04/AroundMe-app.jpg" alt="AroundMe App" width="207" height="312" /></a><p class="wp-caption-text">AroundMe App</p></div>
<p>By this app you can find your nearby restaurants, hotels, coffee shop, gas station and they are making some amendments in the app to find taxi near you (is that not amazing). This app is now available in apple iphone and google android mobiles but soon will be available to Microsoft mobiles also. Most of users of this app come from united states and European countries. This app is also becoming popular in japan.</p>
<p>This app has more than 6 million monthly users and users download this app for 1 million times in a month. So this tells us that this app is performing very well in the mobile world. I suggest you to download this app and try it for one time. This app is getting his huge income from the ads and is getting unexpected income compare to its expenses.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=2NypSzH5huo:LZnTbCLXx9g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=2NypSzH5huo:LZnTbCLXx9g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=2NypSzH5huo:LZnTbCLXx9g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=2NypSzH5huo:LZnTbCLXx9g:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=2NypSzH5huo:LZnTbCLXx9g:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=2NypSzH5huo:LZnTbCLXx9g:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itrelease/KDBr/~4/2NypSzH5huo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itrelease.com/2012/04/is-aroundme-app-better-than-apple-maps-app-and-googles-places-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itrelease.com/2012/04/is-aroundme-app-better-than-apple-maps-app-and-googles-places-app/</feedburner:origLink></item>
		<item>
		<title>Why outsourcing is losing regular jobs</title>
		<link>http://feedproxy.google.com/~r/itrelease/KDBr/~3/Om9TxQxp7JY/</link>
		<comments>http://www.itrelease.com/2012/03/why-outsourcing-is-losing-regular-jobs/#comments</comments>
		<pubDate>Sat, 31 Mar 2012 22:15:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freelancing]]></category>
		<category><![CDATA[why outsourcing in under-developed countries]]></category>
		<category><![CDATA[Why outsourcing is damaging regular jobs]]></category>

		<guid isPermaLink="false">http://www.itrelease.com/?p=966</guid>
		<description><![CDATA[<p>Due to recession of 2009 many companies got huge loss in their revenues. This impact whole the world either it is IT related company or any other working company. The high wage and expenses for the normal man in U.S has made the bigger to smaller companies in U.S to think about how they decrease [...]]]></description>
			<content:encoded><![CDATA[<p>Due to recession of 2009 many companies got huge loss in their revenues. This impact whole the world either it is IT related company or any other working company. The high wage and expenses for the normal man in U.S has made the bigger to smaller companies in U.S to think about how they decrease their expenses. So these companies decided to give some of their work to under developed countries like india and Pakistan. With this step they our come their loss and got some profit so other companies who saw this, try to follow the same procedure and succeeded in such action.</p>
<div id="attachment_967" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.itrelease.com/wp-content/uploads/2012/03/why-there-is-loss-of-regular-job.jpg"><img class="size-medium wp-image-967" title="Situation of loss in regular job" src="http://www.itrelease.com/wp-content/uploads/2012/03/why-there-is-loss-of-regular-job-300x223.jpg" alt="Situation of loss in regular job" width="300" height="223" /></a><p class="wp-caption-text">Situation of loss in regular job</p></div>
<p>If the company hires a regular employee then it has to pay him the salary according to his country. As the expense of normal person is higher than in background countries so they prefer to give work to the companies of lower countries. In that way the lower country will give good salary to their employee but that salary is far lower than the salary of regular employee in U.S or other developed countries.</p>
<p>Freelancing has also influenced the lack of regular jobs. Now people can do the same computer job in their homes so that can benefit the company in following ways:-</p>
<ul>
<li>Company has no tension to pay their electricity and internet bills.</li>
<li>Company doesn’t have to pay entertaining expense and rent of their office.</li>
<li>Company don’t have to care about the regular attendance as there are remote software available that can track the time duration of how many hours the freelancer has worked.</li>
</ul>
<p>But this outsourcing and freelancing is damaging the life of a person in developed countries. So they don’t have any option instead of taking part in cash lottery.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=Om9TxQxp7JY:n7uIscOGtgc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=Om9TxQxp7JY:n7uIscOGtgc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=Om9TxQxp7JY:n7uIscOGtgc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=Om9TxQxp7JY:n7uIscOGtgc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=Om9TxQxp7JY:n7uIscOGtgc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=Om9TxQxp7JY:n7uIscOGtgc:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itrelease/KDBr/~4/Om9TxQxp7JY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itrelease.com/2012/03/why-outsourcing-is-losing-regular-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itrelease.com/2012/03/why-outsourcing-is-losing-regular-jobs/</feedburner:origLink></item>
		<item>
		<title>Why blackberry is going in loss</title>
		<link>http://feedproxy.google.com/~r/itrelease/KDBr/~3/J-I3ZIS4AZU/</link>
		<comments>http://www.itrelease.com/2012/03/why-blackberry-is-going-in-loss/#comments</comments>
		<pubDate>Sat, 31 Mar 2012 22:09:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Reasons of Rim loss]]></category>
		<category><![CDATA[why Rim going in loss]]></category>

		<guid isPermaLink="false">http://www.itrelease.com/?p=962</guid>
		<description><![CDATA[<p>As you already know that blackberry has announced a loss of 125 million in 2012. There are many factors behind this loss. The most important factor is that users of mobiles are now more interested to use large screen touch phones. Blackberry is coming with same design in mind from its start when they release [...]]]></description>
			<content:encoded><![CDATA[<p>As you already know that blackberry has announced a loss of 125 million in 2012. There are many factors behind this loss. The most important factor is that users of mobiles are now more interested to use large screen touch phones. Blackberry is coming with same design in mind from its start when they release their first handset. They are not interested to make evolvement in their sets due to likeliness of their users.</p>
<div id="attachment_963" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.itrelease.com/wp-content/uploads/2012/03/blackberry-curve-company-loss.jpg"><img class="size-medium wp-image-963" title="Blackberry going down - Why?" src="http://www.itrelease.com/wp-content/uploads/2012/03/blackberry-curve-company-loss-300x294.jpg" alt="Blackberry going down - Why?" width="300" height="294" /></a><p class="wp-caption-text">Blackberry going down - Why?</p></div>
<p>Some of blackberry staff is losing their jobs due to such loss in the company. Now new competitors are coming in the mobile manufacturing and old companies like apple, Samsung, android and Microsoft. So it is looking impossible for RIM (Creator of Blackberry) to compete with such bigger companies. Now Heins(The new Ceo of RIM) is willing to sell blackberry. I think heins has discouraged due to such loss. But he said that this loss is not due to 25% decrease in sold blackberry phone sets and tablets but this loss is due to expenses of creation of blackberry 7. What else you want to say heins?</p>
<p>All that loss of blackberry is because it is not following the strategy that other companies is like if you look at Samsung then it has variety of phone designs from touch screen to normal handsets. And Samsung phones have good quality camera. So what the heck blackberry is making. I know blackberry has earned above 900 million profits last year but they don’t think about the future. So now if they can make any new change then they may succeed in near future.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=J-I3ZIS4AZU:YJQbjF9RqVw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=J-I3ZIS4AZU:YJQbjF9RqVw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=J-I3ZIS4AZU:YJQbjF9RqVw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=J-I3ZIS4AZU:YJQbjF9RqVw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=J-I3ZIS4AZU:YJQbjF9RqVw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=J-I3ZIS4AZU:YJQbjF9RqVw:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itrelease/KDBr/~4/J-I3ZIS4AZU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itrelease.com/2012/03/why-blackberry-is-going-in-loss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itrelease.com/2012/03/why-blackberry-is-going-in-loss/</feedburner:origLink></item>
		<item>
		<title>What are advantages and disadvantages of siri in iphone</title>
		<link>http://feedproxy.google.com/~r/itrelease/KDBr/~3/JMFmK8T4c_0/</link>
		<comments>http://www.itrelease.com/2012/03/what-are-advantages-and-disadvantages-of-siri-in-iphone/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 23:22:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ipad and iphone]]></category>
		<category><![CDATA[Merits and demerits of siri in iphone]]></category>
		<category><![CDATA[why to use siri in iphone]]></category>

		<guid isPermaLink="false">http://www.itrelease.com/?p=958</guid>
		<description><![CDATA[<p>Siri is the technology by which the user of iphone can send commands to iphone via voice and iphone can translate that voice command and act like-vice. The feature of voice commands in iphone was built in earler sets also but the full power was introduced in siri. As Apple said that the power of [...]]]></description>
			<content:encoded><![CDATA[<p>Siri is the technology by which the user of iphone can send commands to iphone via voice and iphone can translate that voice command and act like-vice. The feature of voice commands in iphone was built in earler sets also but the full power was introduced in siri. As Apple said that the power of siri cannot be achieved in older models of iphone. So it is available in iphone 4s only. Google has already introduced the same power of siri in his android phones year ago but the impact of siri was more influenced.</p>
<div id="attachment_959" class="wp-caption aligncenter" style="width: 350px"><a href="http://www.itrelease.com/wp-content/uploads/2012/03/advantages-disadvantages-of-siri-in-iphone-4s.jpg"><img class="size-full wp-image-959" title="Merits and demerits of siri in iphone" src="http://www.itrelease.com/wp-content/uploads/2012/03/advantages-disadvantages-of-siri-in-iphone-4s.jpg" alt="Merits and demerits of siri in iphone" width="340" height="340" /></a><p class="wp-caption-text">Merits and demerits of siri in iphone</p></div>
<p>So let me discuss the advantages of siri:-</p>
<ul>
<li>You can find nearest restaurants by just driving and giving commands to your iphone through voice by siri technology.</li>
<li>You can read text messages.</li>
<li>View maps.</li>
<li>Make appointments.</li>
<li>Hold on call.</li>
<li>And much more.</li>
</ul>
<p>And here are some disadvantages on siri:-</p>
<ul>
<li>You have to connect to internet to use siri which was not in 3gs.</li>
<li>The maps was only translated in us English so you have to speak in us English else it not find maps.</li>
<li>Sometime voice commands are not interpreted by iphone as you speak and something other happens that you don’t want.</li>
</ul>
<p>More people are thinking that siri has make unbelievable entry in iphone but you can decide yourself whether to buy an iphone 4s for this feature or not.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=JMFmK8T4c_0:ti74lu68bLo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=JMFmK8T4c_0:ti74lu68bLo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=JMFmK8T4c_0:ti74lu68bLo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=JMFmK8T4c_0:ti74lu68bLo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=JMFmK8T4c_0:ti74lu68bLo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=JMFmK8T4c_0:ti74lu68bLo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itrelease/KDBr/~4/JMFmK8T4c_0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itrelease.com/2012/03/what-are-advantages-and-disadvantages-of-siri-in-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itrelease.com/2012/03/what-are-advantages-and-disadvantages-of-siri-in-iphone/</feedburner:origLink></item>
		<item>
		<title>Which company mobile camera is good</title>
		<link>http://feedproxy.google.com/~r/itrelease/KDBr/~3/70Vlnw6aDaM/</link>
		<comments>http://www.itrelease.com/2012/03/which-company-mobile-camera-is-good/#comments</comments>
		<pubDate>Sat, 17 Mar 2012 20:39:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[good quality mobile phone]]></category>
		<category><![CDATA[mobile phone of the year]]></category>

		<guid isPermaLink="false">http://www.itrelease.com/?p=953</guid>
		<description><![CDATA[<p>I have used many mobile phones and I have good experience with mobile cameras. Before coming to the main part of this topic let me tell you one thing. When first mobile generation comes into existence then manual cameras were used and the sale of normal cameras was high. Now when the new models of [...]]]></description>
			<content:encoded><![CDATA[<p>I have used many mobile phones and I have good experience with mobile cameras. Before coming to the main part of this topic let me tell you one thing. When first mobile generation comes into existence then manual cameras were used and the sale of normal cameras was high. Now when the new models of mobiles come, more competition between the mobile companies is introduced. All the mobile companies wanted to have good features in their mobile sets. The camera introduced in iphone before 4s was not in good quality. In 4s iphone the quality of camera is better than before.</p>
<div id="attachment_954" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.itrelease.com/wp-content/uploads/2012/03/Nokia-n8-best-camera-mobile-phone.jpg"><img class="size-full wp-image-954" title="Nokia N8 best camera mobile phone" src="http://www.itrelease.com/wp-content/uploads/2012/03/Nokia-n8-best-camera-mobile-phone.jpg" alt="Nokia N8 best camera mobile phone" width="500" height="463" /></a><p class="wp-caption-text">Nokia N8 best camera mobile phone</p></div>
<p>But the mobile camera I have noted in the nokia company mobile sets is best than all other companies. I have used many mobile sets with camera like iphone, LG, Samsung but all are far behind nokia. Now the nokia N8 comes with 12 mega pixel camera. The default in other company’s mobile sets is that some time the voice and video not run at the same time and some delay in voice and video exists. But in nokia sets voice and video run smooth with each other.</p>
<p>So I hope you prefer nokia sets if you don’t want to waste your money.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=70Vlnw6aDaM:36q8uoajbbA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=70Vlnw6aDaM:36q8uoajbbA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=70Vlnw6aDaM:36q8uoajbbA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=70Vlnw6aDaM:36q8uoajbbA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=70Vlnw6aDaM:36q8uoajbbA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=70Vlnw6aDaM:36q8uoajbbA:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itrelease/KDBr/~4/70Vlnw6aDaM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itrelease.com/2012/03/which-company-mobile-camera-is-good/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itrelease.com/2012/03/which-company-mobile-camera-is-good/</feedburner:origLink></item>
		<item>
		<title>Why to quit your job</title>
		<link>http://feedproxy.google.com/~r/itrelease/KDBr/~3/LAM9Z_2TGSc/</link>
		<comments>http://www.itrelease.com/2012/03/why-to-quit-your-job/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 19:04:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[how to leave a job]]></category>
		<category><![CDATA[Why to leave a job]]></category>
		<category><![CDATA[why to terminate job]]></category>

		<guid isPermaLink="false">http://www.itrelease.com/?p=949</guid>
		<description><![CDATA[<p>There are many ups and downs in your life. All the people do the job for their livings. But there comes some time moments when the person wants to quit his regular job. Here are some of the reasons why to quit your regular job:-</p> You are not getting the respect as you deserve for [...]]]></description>
			<content:encoded><![CDATA[<p>There are many ups and downs in your life. All the people do the job for their livings. But there comes some time moments when the person wants to quit his regular job. Here are some of the reasons why to quit your regular job:-</p>
<ul>
<li>You are not getting the respect as you deserve for your work.</li>
<li>Your colleagues making fun of you.</li>
<li>You’re learning stops at some point and further improvement not looking to come.</li>
<li>Salary is not sufficient to excel your needs.</li>
<li>Your boss is insulting you without any reason.</li>
<li>You are not getting any reward and bonuses for your good work.</li>
<li>Company is going down and they are firing people.</li>
<li>You find good opportunity in some other place.</li>
<li>You want to start your own business.</li>
</ul>
<div id="attachment_950" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.itrelease.com/wp-content/uploads/2012/03/quit_a_job.jpg"><img class="size-full wp-image-950" title="Quit a job" src="http://www.itrelease.com/wp-content/uploads/2012/03/quit_a_job.jpg" alt="Quit a job" width="300" height="199" /></a><p class="wp-caption-text">Quit a job</p></div>
<p>I suggest you to not leave job before 1 year. You have to do your job at least for 1 year in a company. After 1 year if you find good opportunity in another office then go for it else remains in your company. Don’t left the job before you are confirmed that you are hired in another office.</p>
<p>If you change your company very often then you are losing your confidence in doing a job and you will not like any company. Try to stay in one company and do your work with good spirit. You will get more respect when you stay more time in one company and automatically your level and grade becomes higher.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=LAM9Z_2TGSc:2quqnee0N4E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=LAM9Z_2TGSc:2quqnee0N4E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=LAM9Z_2TGSc:2quqnee0N4E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=LAM9Z_2TGSc:2quqnee0N4E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=LAM9Z_2TGSc:2quqnee0N4E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=LAM9Z_2TGSc:2quqnee0N4E:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itrelease/KDBr/~4/LAM9Z_2TGSc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itrelease.com/2012/03/why-to-quit-your-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itrelease.com/2012/03/why-to-quit-your-job/</feedburner:origLink></item>
		<item>
		<title>Tips to get a job</title>
		<link>http://feedproxy.google.com/~r/itrelease/KDBr/~3/IGEr5hQHJNc/</link>
		<comments>http://www.itrelease.com/2012/03/tips-to-get-a-job/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 19:00:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[How to get a job]]></category>

		<guid isPermaLink="false">http://www.itrelease.com/?p=946</guid>
		<description><![CDATA[<p>As you know these are the days of recession. The competition to get a new job is increasing day by day. I am in the field of IT so I can tell you how to get an IT job. But the steps and tips to get other jobs may look same.</p> <p>Follow the following steps [...]]]></description>
			<content:encoded><![CDATA[<p>As you know these are the days of recession. The competition to get a new job is increasing day by day. I am in the field of IT so I can tell you how to get an IT job. But the steps and tips to get other jobs may look same.</p>
<div id="attachment_947" class="wp-caption aligncenter" style="width: 340px"><a href="http://www.itrelease.com/wp-content/uploads/2012/03/tips-to-get-job.jpg"><img class="size-full wp-image-947" title="How to get a job" src="http://www.itrelease.com/wp-content/uploads/2012/03/tips-to-get-job.jpg" alt="How to get a job" width="330" height="350" /></a><p class="wp-caption-text">How to get a job</p></div>
<p>Follow the following steps to get your new job:-</p>
<ul>
<li>Read the interview question on the internet of your related field or job.</li>
<li>Apply with confidence as confidence is very important.</li>
<li>Wear a good dress because that impact well on the interviewer.</li>
<li>Give a valid reason about why you are leaving your old job.</li>
<li>Tell the interviewer that how you give that company a good success and how you take part in the betterment of company.</li>
<li>If you are shy person then don’t tell the interviewer you are shy person and apply with confidence and tell him that you have good communication skills.</li>
<li>Don’t tell the interviewer about your home discomforts.</li>
<li>Tell that you are a very punctual person.</li>
</ul>
<p>If you get a job then try to be punctual and don’t leave the office without telling your supervisor. If you want to have leave then give a valid reason. I hope you will get a good job following the points I have discussed.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=IGEr5hQHJNc:U-yDe0d_cBo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=IGEr5hQHJNc:U-yDe0d_cBo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=IGEr5hQHJNc:U-yDe0d_cBo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=IGEr5hQHJNc:U-yDe0d_cBo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/itrelease/KDBr?a=IGEr5hQHJNc:U-yDe0d_cBo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itrelease/KDBr?i=IGEr5hQHJNc:U-yDe0d_cBo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itrelease/KDBr/~4/IGEr5hQHJNc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itrelease.com/2012/03/tips-to-get-a-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itrelease.com/2012/03/tips-to-get-a-job/</feedburner:origLink></item>
	</channel>
</rss>

