
<?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>Technoreply</title>
	<atom:link href="http://www.technoreply.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.technoreply.com</link>
	<description></description>
	<lastBuildDate>Thu, 17 May 2012 06:49:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Finally a Dummy SMTP for Linux</title>
		<link>http://www.technoreply.com/finally-a-dummy-smtp-for-linux/</link>
		<comments>http://www.technoreply.com/finally-a-dummy-smtp-for-linux/#comments</comments>
		<pubDate>Tue, 01 May 2012 07:57:27 +0000</pubDate>
		<dc:creator>Jevin</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.technoreply.com/?p=533</guid>
		<description><![CDATA[Okay picture this: You&#8217;re building your awesome web app and suddenly, you have to verify that emails are being sent properly. You&#8217;d want some kind of app that would drop emails in a folder, right? If you were on Windows, &#8230; <a href="http://www.technoreply.com/finally-a-dummy-smtp-for-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Okay picture this: You&#8217;re building your awesome web app and suddenly, you have to verify that emails are being sent properly. You&#8217;d want some kind of app that would drop emails in a folder, right?</p>
<p>If you were on Windows, that would be fairly easy. Just hit a web search and install one of the many dummy SMTP servers out there.</p>
<p>But you&#8217;re probably on Linux (why else would you be reading this). And on Linux, there is no such app. You&#8217;ll have to hack your way out of this.</p>
<p>Well not anymore. Thanks to this <a href="http://muffinresearch.co.uk/archives/2010/10/15/fake-smtp-server-with-python/" target="_blank">awesome script</a> by Stuart Colville, I was able to create a dummy SMTP server in Python. I&#8217;ve posted the code on github :</p>
<pre><strong><a href="https://github.com/jevin/Dummy-SMTP" target="_blank">https://github.com/jevin/Dummy-SMTP</a></strong></pre>
<p>It&#8217;s really simple to use :</p>
<ol>
<li>Download the .zip</li>
<li>Extract it</li>
<li>Make &#8220;listen.py&#8221; executable</li>
<li>Kill any process using port 25 (usually &#8220;sudo pkill sendmail&#8221; is enough)</li>
<li>Type &#8220;sudo ./listen.py&#8221; on your console</li>
<li>Tada! All emails sent will be dropped in the &#8220;mails&#8221; folder.</li>
</ol>
<div>I&#8217;ve only tested this with <a href="http://www.feep.net/sendmail/tutorial/" target="_blank">Sendmail</a>. So if you see something weird with other MTAs, let me know!</div>
]]></content:encoded>
			<wfw:commentRss>http://www.technoreply.com/finally-a-dummy-smtp-for-linux/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to install Sublime Text 2 on Ubuntu 12.04 (Unity)</title>
		<link>http://www.technoreply.com/how-to-install-sublime-text-2-on-ubuntu-12-04-unity/</link>
		<comments>http://www.technoreply.com/how-to-install-sublime-text-2-on-ubuntu-12-04-unity/#comments</comments>
		<pubDate>Sat, 28 Apr 2012 11:24:24 +0000</pubDate>
		<dc:creator>Jevin</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.technoreply.com/?p=509</guid>
		<description><![CDATA[Sublime Text is an awesome text editor. If you&#8217;ve never heard of it, you should check it out right now. I&#8217;ve made this tutorial because there&#8217;s no installer for the Linux versions of Sublime Text. While that&#8217;s not a real &#8230; <a href="http://www.technoreply.com/how-to-install-sublime-text-2-on-ubuntu-12-04-unity/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sublime Text is an awesome text editor. If you&#8217;ve never heard of it, you should <a title="Official Sublime Text website" href="http://www.sublimetext.com/" target="_blank">check it out right now</a>.</p>
<p>I&#8217;ve made this tutorial because there&#8217;s no installer for the Linux versions of Sublime Text. While that&#8217;s not a real problem, I feel there is a cleaner way to go around this. Also, this post will show you how to integrate Sublime Text to Unity (which, I&#8217;m glad to report, has now matured into a fully functional user interface).</p>
<p>So let&#8217;s get on with this. Here is my how to install Sublime Text on Ubuntu tutorial.</p>
<h2>Step 1</h2>
<p>Download the tarfile that suits you best and extract it. Here&#8217;s the command to extract <strong>tar.bz2</strong> files:</p>
<pre class="brush: bash">tar xf Sublime\ Text\ 2\ Build\ 2181\ x64.tar.bz2</pre>
<p>You&#8217;ll notice that I got the 64-bit version. The reason is that it&#8217;s lightning fast. So, go for that if you can!</p>
<h2>Step 2</h2>
<p>You&#8217;ll get a &#8220;Sublime Text 2&#8243; folder after extraction. This folder contains all the files that Sublime Text will need. So we have to move that folder somewhere more appropriate. Yep &#8220;/usr/lib/&#8221; it is:</p>
<pre class="brush: bash">sudo mv Sublime\ Text\ 2 /usr/lib/</pre>
<h2>Step 3</h2>
<p>At some point you&#8217;d want to be able to call Sublime Text from the Terminal by just typing &#8220;sublime&#8221;. To do that, we&#8217;ll just create a symbolic link in &#8220;/usr/bin&#8221; like thus:</p>
<pre class="brush: bash">sudo ln -s /usr/lib/Sublime\ Text\ 2/sublime_text /usr/bin/sublime</pre>
<h2>Step 4</h2>
<p>Now that our files are at the right place, we need to create a launcher in Unity. To do this, we&#8217;re going to create a .desktop file in &#8220;/usr/share/applications&#8221;:</p>
<pre class="brush: bash">sudo sublime /usr/share/applications/sublime.desktop</pre>
<p>And paste the following content:</p>
<pre class="brush: bash">[Desktop Entry]
Version=1.0
Name=Sublime Text 2
# Only KDE 4 seems to use GenericName, so we reuse the KDE strings.
# From Ubuntu's language-pack-kde-XX-base packages, version 9.04-20090413.
GenericName=Text Editor

Exec=sublime
Terminal=false
Icon=/usr/lib/Sublime Text 2/Icon/48x48/sublime_text.png
Type=Application
Categories=TextEditor;IDE;Development
X-Ayatana-Desktop-Shortcuts=NewWindow

[NewWindow Shortcut Group]
Name=New Window
Exec=sublime -n
TargetEnvironment=Unity</pre>
<p>As you can see, these lines are quite straightforward. Go ahead and experiment a bit with them.</p>
<h2>Step 5</h2>
<p>Now you would probably want to open all text files with Sublime Text 2. The easiest way to do that is to open up the file associations list:</p>
<pre class="brush: bash">sudo sublime /usr/share/applications/defaults.list</pre>
<p>And replace all occurrences of <strong>gedit.desktop</strong> with <strong>sublime.desktop</strong>.</p>
<p>Tada ! There you go. You now have Sublime Text 2 installed on Unity on Ubuntu 12.04, like a pro.</p>
<p>Here are some screenshots:</p>

<a href='http://www.technoreply.com/how-to-install-sublime-text-2-on-ubuntu-12-04-unity/sublime_text_unity__screenshot1/' title='Screenshot of SublimeText launcher on Unity (Ubuntu 12.04)'><img width="150" height="150" src="http://www.technoreply.com/wp-content/uploads/2012/04/sublime_text_unity__screenshot1-150x150.png" class="attachment-thumbnail" alt="Screenshot of SublimeText launcher on Unity (Ubuntu 12.04)" title="Screenshot of SublimeText launcher on Unity (Ubuntu 12.04)" /></a>
<a href='http://www.technoreply.com/how-to-install-sublime-text-2-on-ubuntu-12-04-unity/sublime_text_unity__screenshot2/' title='Screenshot of SublimeText launcher on Unity (Ubuntu 12.04)'><img width="150" height="150" src="http://www.technoreply.com/wp-content/uploads/2012/04/sublime_text_unity__screenshot2-150x150.png" class="attachment-thumbnail" alt="Screenshot of SublimeText launcher on Unity (Ubuntu 12.04)" title="Screenshot of SublimeText launcher on Unity (Ubuntu 12.04)" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.technoreply.com/how-to-install-sublime-text-2-on-ubuntu-12-04-unity/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Autogrow Textarea Plugin Version 2.0</title>
		<link>http://www.technoreply.com/autogrow-textarea-plugin-version-2-0/</link>
		<comments>http://www.technoreply.com/autogrow-textarea-plugin-version-2-0/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 16:47:34 +0000</pubDate>
		<dc:creator>Jevin</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.technoreply.com/?p=453</guid>
		<description><![CDATA[Today, I am glad to announce a new version of the Autogrow Textarea plugin. There were quite a few people that submitted feedback and I tried to take all that into consideration. Your comments are still welcome. The plugin can &#8230; <a href="http://www.technoreply.com/autogrow-textarea-plugin-version-2-0/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today, I am glad to announce a new version of the <strong>Autogrow Textarea</strong> plugin. There were quite a few people that submitted feedback and I tried to take all that into consideration. Your comments are still welcome.</p>
<p>The plugin can be tried on this textarea:</p>
<div style="text-align: center;">
<textarea id="txtInput" cols="40" rows="5"></textarea>
</div>
<p>It may not be apparent, but there are a quite a few things that have changed with this new version. Here&#8217;s the list:</p>
<ul>
<li>It automatically resizes your <em>textarea;</em> before you had an algorithm that calculated the correct <em>width </em>according to your <em>font-size</em> and <em>cols</em> settings. Now, the plugin does it automatically. Big time saver.</li>
<li>It automatically sets the correct CSS attributes; before the user had to enter this manually in the CSS file. Now it&#8217;s done by the plugin.</li>
<li>The plugin is fired when the page loads; a lot of users requested this feature. When you load a page with data already entered in the <em>textarea</em>, the latter will automatically resize itself.</li>
<li>The plugin fires on more events; the plugin used to be fired when the user was typing. Now it does more than that.</li>
<li>It no more pollutes the global namespace; if you&#8217;re not familiar with these terms, let&#8217;s just say the code will not conflict with other Javascripts.</li>
</ul>
<p>You may have guessed it. The setup is now much faster. You simply download the plugin : <a href="http://www.technoreply.com/wp-content/uploads/2011/03/jquery.autogrowtextarea.js" target="_blank">jquery.autogrowtextarea.js</a> and call the Javascript method. The code is :</p>
<pre class="brush: html">&lt;script type="text/javascript"&gt;
  $(document).ready(function(){
    $("#txtInput").autoGrow();
  });
&lt;/script&gt;
&lt;textarea id="txtInput" cols="40" rows="5"&gt;&lt;/textarea&gt;</pre>
<p>There you go. Enjoy! And do leave your feedback, please.</p>
<h2>Licensing</h2>
<p>A lot of people have been emailing/commenting asking about Autogrow Textarea&#8217;s licensing. I finally decided I to go with this one : <a href="http://en.wikipedia.org/wiki/Beerware" target="_blank">Beerware License</a>.</p>
<p><script type="text/javascript" src="http://www.technoreply.com/wp-content/uploads/2011/03/jquery.autogrowtextarea.js"></script><script type="text/javascript">// <![CDATA[
            jQuery(document).ready(function(){jQuery("#txtInput").autoGrow();});
// ]]&gt;</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.technoreply.com/autogrow-textarea-plugin-version-2-0/feed/</wfw:commentRss>
		<slash:comments>84</slash:comments>
		</item>
		<item>
		<title>Google, the easiest Pac-Man game I ever played</title>
		<link>http://www.technoreply.com/google-the-easiest-pac-man-game-i-ever-played/</link>
		<comments>http://www.technoreply.com/google-the-easiest-pac-man-game-i-ever-played/#comments</comments>
		<pubDate>Fri, 21 May 2010 15:36:29 +0000</pubDate>
		<dc:creator>Jevin</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.technoreply.com/?p=449</guid>
		<description><![CDATA[Today, May 22 is the anniversary of Pac-Man. And to celebrate what is undoubtedly the most famous computer game, Google changed it&#8217;s homepage logo for a Pac-Man game. This year Pac-Man is 30 years old. And this says a lot.We &#8230; <a href="http://www.technoreply.com/google-the-easiest-pac-man-game-i-ever-played/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today, May 22 is the anniversary of Pac-Man. And to celebrate what is undoubtedly the most famous computer game, Google changed it&#8217;s homepage logo for a Pac-Man game.</p>
<div id="attachment_450" class="wp-caption aligncenter" style="width: 160px"><a href="http://www.technoreply.com/wp-content/uploads/2010/05/Google-Pac-Man.jpg"><img class="size-thumbnail wp-image-450" title="Google Pac-Man" src="http://www.technoreply.com/wp-content/uploads/2010/05/Google-Pac-Man-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Pac-Man game on the Google homepage</p></div>
<p>This year Pac-Man is 30 years old. And this says a lot.We are talking of a time where people were rushing through the cinema halls to watch the premiere of Star Wars 5.</p>
<p>The game is in DHTML. Nothing fancy. But it&#8217;s quite a nice to have a go at it before hitting a search. <img src='http://www.technoreply.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.technoreply.com/google-the-easiest-pac-man-game-i-ever-played/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Autogrow Textarea Plugin</title>
		<link>http://www.technoreply.com/autogrow-textarea-plugin/</link>
		<comments>http://www.technoreply.com/autogrow-textarea-plugin/#comments</comments>
		<pubDate>Tue, 11 May 2010 18:16:53 +0000</pubDate>
		<dc:creator>Jevin</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.technoreply.com/?p=399</guid>
		<description><![CDATA[Autogrow Textarea is a simple jQuery plugin that allows textareas to grow vertically when text is typed in. Many of you will find this quite familiar, since it is used extensively on social networking giant, Facebook. You can try out &#8230; <a href="http://www.technoreply.com/autogrow-textarea-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="red-box"><a href="http://www.technoreply.com/autogrow-textarea-plugin-version-2-0/">Click here for the new version of the plugin</a></div> <strong>Autogrow Textarea</strong> is a simple jQuery plugin that allows textareas to grow vertically when text is typed in. Many of you will find this quite familiar, since it is used extensively on social networking giant, Facebook.  You can <em><strong>try out the plugin</strong></em> below:</p>
<p style="text-align: center;"><textarea id="txtInput" style="overflow: hidden; width: 326px; height: auto;" cols="40" rows="5"></textarea></p>
<p>As you can see, this simple growth comes very <em>naturally to the user</em>. It can be useful for sites needing large user input. So if you would like to use this plugin, read the <strong>quick guide</strong> below.</p>
<ul class="specialList">
<li>First, you will need to download this one file: <a onclick="javascript:pageTracker._trackPageview('/download/jquery.autogrowtextarea.js/');" href="http://www.technoreply.com/wp-content/uploads/2010/05/jquery.autogrowtextarea.js">jquery.autogrowtextarea.js</a>.</li>
<li>After downloading and importing the script you will need to add some CSS to your page, as follows.
<pre class="brush: css">&lt;style type="text/css"&gt;
  textarea
  {
    overflow:hidden;
    height:auto;
    width:326px;
  }
&lt;/style&gt;</pre>
<p>The overflow and height properties should remain unchanged. The width however is tricky. You see, textarea&#8217;s are not generated the same way in different browsers, meaning that each browser will set a different width to your textarea. To counter this, I have created a small script that will give you the right width to use.<br />
<textarea id="txtInputArea" class="hidden" style="overflow: hidden; width: 326px; height: auto; display: none;" cols="40" rows="5"></textarea><br />
<div class="yellow-box">Columns:<br />
<input id="txtCols" type="text" />
<p>Font size(in px):<br />
<input id="txtFontSize" type="text" />
<input onclick="calculateWidth();" type="button" value="Go" />
<p>Appropriate textarea width: <span id="spnResult">-</span>px</div></p>
<p>I have set my width to 346px since I am using 40 columns for my textarea. It&#8217;s nice to point out that the default textarea font size is 13px.</li>
<li>With all that done, you can call the plugin this way:
<pre class="brush: html">&lt;script type="text/javascript"&gt;
  $(document).ready(function(){
    $("#txtInput").autoGrow();
  });
&lt;/script&gt;
&lt;textarea id="txtInput" cols="40" rows="5"&gt;&lt;/textarea&gt;</pre>
<p>Where &#8220;txtInput&#8221; is the textarea&#8217;s identifier and &#8220;autoGrow()&#8221; is the function that activates the plugin for the selected textarea.</li>
</ul>
<p>As you can see, the <strong>implementation is quite straightforward</strong>. I am planning to include automatic width detection in the plugin, so you don&#8217;t have to generate the appropriate width every time.  If you like this plugin and would like to suggest features, or report bugs, you are welcome to <a title="Contact me" href="http://www.technoreply.com/contact/">contact me</a>.</p>
<div class="hidden"><script src="http://www.technoreply.com/wp-content/uploads/2010/05/jquery.autogrowtextarea.js" type="text/javascript"></script> <script src="http://www.technoreply.com/wp-content/uploads/2010/05/autogrowtextarea.util_.js" type="text/javascript"></script> <script type="text/javascript">// <![CDATA[
                                               jQuery(document).ready(function(){jQuery("#txtInput").autoGrow();});
// ]]&gt;</script></div>
<p><div class="red-box"><a href="http://www.technoreply.com/autogrow-textarea-plugin-version-2-0/">Click here for the new version of the plugin</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.technoreply.com/autogrow-textarea-plugin/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>The need for computer gaming keyboards</title>
		<link>http://www.technoreply.com/the-need-for-computer-gaming-keyboards/</link>
		<comments>http://www.technoreply.com/the-need-for-computer-gaming-keyboards/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 18:35:00 +0000</pubDate>
		<dc:creator>Jevin</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://www.technoreply.com/?p=387</guid>
		<description><![CDATA[It is difficult to imagine a world without gaming keyboards. Yet it was the case, only some years back. Today, enter any decent computer shop and you are sure to stumble on those glossy keyboard boxes that will undeniably attract &#8230; <a href="http://www.technoreply.com/the-need-for-computer-gaming-keyboards/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It is difficult to imagine a world without gaming keyboards. Yet it was the case, only some years back. Today, enter any decent computer shop and you are sure to stumble on those glossy keyboard boxes that will undeniably attract your eyes. But these cost a lot more than traditional keyboards, and choosing the wrong is the last thing you&#8217;d want to do.</p>
<div id="attachment_390" class="wp-caption alignleft" style="width: 160px"><a href="http://www.technoreply.com/wp-content/uploads/2010/02/logitech-g15.jpg"><img class="size-thumbnail wp-image-390" title="Logitech G15 computer gaming keyboard" src="http://www.technoreply.com/wp-content/uploads/2010/02/logitech-g15-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Logitech G15</p></div>
<p>If you are on the market for a gaming keyboard, chances are that you&#8217;ve seen the Logitech G15. This is the reference in gaming keyboards for it was the first to have been commercially successful. The Logitech comes with loads of options, to name a few:</p>
<ul class="float">
<li>LCD screen</li>
<li>Ability to create hotkeys</li>
<li>Ability to create macros</li>
<li>Option to deactivate the Windows key</li>
</ul>
<div class="clear"></div>
<p>The last option really goes to show how much good work Logitech has put into that G15. As a gamer, you would surely know how irritating it is to press the Windows key accidentally in the middle of a game.</p>
<p>The LCD screen can be very useful for gamers. It can be customized to show lots of different info. From CPU/Memory usage to current playing track, without forgetting your HP. This keyboard is sure to please the inner geek in you.</p>
<div id="attachment_391" class="wp-caption alignleft" style="width: 160px"><a href="http://www.technoreply.com/wp-content/uploads/2010/02/razer-lycosa.jpg"><img class="size-thumbnail wp-image-391" title="Razer Lycosa computer gaming keyboard" src="http://www.technoreply.com/wp-content/uploads/2010/02/razer-lycosa-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Razer Lycosa</p></div>
<p>The Razer Lycosa is another good gaming keyboard. The design, coupled with the magnificent blue backlight, makes it look like it came from outer space. When you are face to face with this keyboard, you know its true gaming material. Among its options, we have:</p>
<ul class="float">
<li>Non-slip rubber keys</li>
<li>Ability to create macros</li>
<li>10 customizable profiles</li>
<li>Hyperesponse technology</li>
</ul>
<div class="clear"></div>
<p>The Hyperesponse technology is sure to bring a smile on your face during intense gaming. This orders the keys to react faster to your movements. Couple this with some macros, and you are sure to have a nice time gaming.</p>
<p>The first thing buyers will notice about the Lycosa, is the lack of an LCD display. While I feel the LCD is a handy tool, I must admit that the philosophy behind the two keyboards are not the same. If you want good all-round computer gaming keyboard, then the G15 has to be your pick. But for some serious gaming, I&#8217;d have to go with the Lycosa.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technoreply.com/the-need-for-computer-gaming-keyboards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Please Rob Me dot Com</title>
		<link>http://www.technoreply.com/please-rob-me-dot-com/</link>
		<comments>http://www.technoreply.com/please-rob-me-dot-com/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 06:11:09 +0000</pubDate>
		<dc:creator>Morinn</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.technoreply.com/?p=381</guid>
		<description><![CDATA[All too often, people don&#8217;t realise the danger of posting details about their planned holidays away from home on social networking sites such as Facebook, Twitter or on their blogs. Giving details on when and how long your holidays are &#8230; <a href="http://www.technoreply.com/please-rob-me-dot-com/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">All too often, people don&#8217;t realise the danger of posting details about their planned holidays away from home on social networking sites such as Facebook, Twitter or on their blogs. Giving details on when and how long your holidays are scheduled or where you are going, exposes your house to robberies.</p>
<p style="text-align: justify;"><a href="http://www.technoreply.com/wp-content/uploads/2010/02/PleaseRobMe.png"><img class="alignleft size-medium wp-image-382" title="PleaseRobMe" src="http://www.technoreply.com/wp-content/uploads/2010/02/PleaseRobMe-300x142.png" alt="" width="300" height="142" /></a>To sensitize people on this matter, in a very unorthodox way, Forthehack has created <a href="http://pleaserobme.com">Please Rob Me</a>. Please Rob Me basically tracks and lists down information that people post on social networking sites about their leave from home.</p>
<p style="text-align: justify;">Though Please Rob Me&#8217;s practice is quite unethical, at the bottom of it all, it serves to make people realise the trouble they are putting themselves into by unveiling their privacy on the web.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technoreply.com/please-rob-me-dot-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Haloscan will be obsolete as from February 19 2010</title>
		<link>http://www.technoreply.com/haloscan-will-be-obsolete-as-from-february-19-2010/</link>
		<comments>http://www.technoreply.com/haloscan-will-be-obsolete-as-from-february-19-2010/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 15:32:53 +0000</pubDate>
		<dc:creator>Morinn</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.technoreply.com/?p=367</guid>
		<description><![CDATA[JS-Kit&#8216;s Haloscan is being shut down on the 19th of February, this year. This is what the team from Haloscan announced today in a mail to registered members: The Haloscan hardware and software is physically failing and we have no choice &#8230; <a href="http://www.technoreply.com/haloscan-will-be-obsolete-as-from-february-19-2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://js-kit.com/">JS-Kit</a>&#8216;s Haloscan is being shut down on the 19th of February, this year. This is what the team from Haloscan announced today in a mail to registered members:</p>
<blockquote style="text-align: justify;"><p>The <strong>Haloscan hardware and software is physically failing</strong> and we have no choice but to discontinue the service.</p></blockquote>
<p style="text-align: justify;"><a href="http://www.haloscan.com/">Haloscan</a> users now have the choice to either switch to Echo, another JS-Kit project or export their comments freely from Haloscan to their original blog host&#8217;s commenting system.</p>
<p style="text-align: justify;"><a href="http://www.technoreply.com/wp-content/uploads/2010/02/echo.png"><img class="alignleft size-medium wp-image-369" title="echo" src="http://www.technoreply.com/wp-content/uploads/2010/02/echo-300x151.png" alt="" width="300" height="151" /></a>For several years Haloscan has been a good alternative to bloggers (especially those using Google&#8217;s <a href="http://blogger.com/start">Blogger</a>) looking for a better and more rapid solution to their blog&#8217;s original commenting system. Now that Blogger has implemented some changes to its commenting system and that JS-Kit has developed Echo, a better performing system, that amongst others, integrates with Facebook, Twitter and Yahoo accounts, Haloscan has become quite obsolete.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technoreply.com/haloscan-will-be-obsolete-as-from-february-19-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The VAIO goes all flashy</title>
		<link>http://www.technoreply.com/sonyvaio-goes-all-flashy/</link>
		<comments>http://www.technoreply.com/sonyvaio-goes-all-flashy/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 08:42:49 +0000</pubDate>
		<dc:creator>Jevin</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.technoreply.com/?p=362</guid>
		<description><![CDATA[Sony just announced the new E Series VAIO. Big surprise concerning the laptop, its physical appearance and its price tag. Indeed, the new E Series will come in a series of flashy colors to choose from. Sony states &#8220;Caribbean Green, Iridescent Blue, &#8230; <a href="http://www.technoreply.com/sonyvaio-goes-all-flashy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.technoreply.com/wp-content/uploads/2010/02/sony-vaio-e-series.jpg"><img class="size-thumbnail wp-image-363 alignleft" title="sony-vaio-e-series" src="http://www.technoreply.com/wp-content/uploads/2010/02/sony-vaio-e-series-150x150.jpg" alt="Sony VAIO E Series" width="150" height="150" /></a></p>
<p>Sony just announced the new E Series VAIO. Big surprise concerning the laptop, its physical appearance and its price tag. Indeed, the new E Series will come in a series of flashy colors to choose from. Sony states &#8220;Caribbean Green, Iridescent Blue, Hibiscus Pink and Lava Black&#8221;.  Moreover, flashy keyboard skins and mouse covers are available too.</p>
<p>The best thing yet is the price. The laptops start at a little less than $800. This is bargain price if you ask me. The keyboard skins and mouse covers are at around $20 and $5 respectively.</p>
<p>And if you are still not persuaded, don&#8217;t forget that this laptop comes with the latest processor from Intel, the Core i5.</p>
<p>Right now, the laptop is available on pre-order only. And if you have a Sony Financial Services card, you will enjoy 12 months of free interest. Now isn&#8217;t that a deal?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technoreply.com/sonyvaio-goes-all-flashy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google shows IE6 the door</title>
		<link>http://www.technoreply.com/google-shows-ie6-the-door/</link>
		<comments>http://www.technoreply.com/google-shows-ie6-the-door/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 13:18:22 +0000</pubDate>
		<dc:creator>Jevin</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.technoreply.com/?p=358</guid>
		<description><![CDATA[I have seen several attempts, in the past, to dissuade people from using IE6. All in vain, though. But this time, Google is trying to show IE6 the door. Let&#8217;s be honest about IE6 for a while. This browser has &#8230; <a href="http://www.technoreply.com/google-shows-ie6-the-door/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-359" title="http-image" src="http://www.technoreply.com/wp-content/uploads/2010/02/http-image-150x150.jpg" alt="" width="150" height="150" />I have seen several attempts, in the past, to dissuade people from using IE6. All in vain, though. But this time, Google is trying to show IE6 the door. Let&#8217;s be honest about IE6 for a while. This browser has done its time and has had its share of glory, but it really needs to let go. All the HTML, Javascript and CSS incompatibilities are there to sate one thing&#8230; &#8220;IE6 has done its time&#8221;.</p>
<p>So now, just some hours ago, Google has announced that it will no longer support IE6. Their message is clear, IE6 is preventing them from moving on and adding new features to their products. They state:</p>
<blockquote><p>In order to continue to improve our products and deliver more sophisticated features and performance, we are harnessing some of the latest improvements in web browser technology.  This includes faster JavaScript processing and new standards like HTML5.  As a result, over the course of 2010, we will be phasing out support for Microsoft Internet Explorer 6.0 as well as other older browsers that are not supported by their own manufacturers.</p></blockquote>
<p>This is a real hit towards IE6. Personally, I really like the way things are going. It&#8217;s about time some giant organisation attacked IE6.</p>
<p>What are your views about this? Do you think Google is going too far?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technoreply.com/google-shows-ie6-the-door/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

