<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6763470889186963292</id><updated>2026-06-08T23:41:25.467-07:00</updated><category term="Gadgets"/><category term="Internet"/><category term="Other"/><category term="Operating System"/><category term="Tech News"/><category term="Social Networks"/><title type='text'>Apsotech</title><subtitle type='html'>The rule in technology is WHATEVER CAN BE DONE WILL BE DONE.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>25</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-4107710389555995517</id><published>2016-02-03T04:36:00.003-08:00</published><updated>2016-02-03T04:36:52.085-08:00</updated><title type='text'>An attempt to write a script to notify when a movie is listed online for booking</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;p1&quot;&gt;
This is my attempt to write a shell script that sends me an email when a movie is available for booking online.&lt;br /&gt;
&lt;br /&gt;
NOTE: You might want to configure &#39;mail&#39; command SMTP settings on your box to avoid the mail being sent to your spam folder.&lt;br /&gt;
&lt;br /&gt;
This script takes 2 arguments. The first argument is the URL that has to be monitored and the second argument is name of the theater (Or anything that is unique to that theater).&lt;br /&gt;
&lt;br /&gt;
The script&amp;nbsp;scrapes the URL page once in a given interval period and looks for the theater name, and when it&#39;s found it sends an email to the given email ID.&lt;br /&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;#! /bin/bash&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;if [ &quot;$#&quot; -ne 2 ]; then&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; echo &quot;Illegal number of parameters&quot;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; echo &quot;USAGE: movieAlert &amp;lt;URL&amp;gt; &amp;lt;KEYWORD&amp;gt;&quot;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; exit 1&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;fi&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;EMAIL_IDS=&quot;username@mail.com&quot;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;BODY=$1&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;SUB=&quot;Hurry up!!!&quot;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;IP=$1&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;QUERY=$2&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;while true; do&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; result=`wget -O - $IP -o /dev/null|grep $QUERY|wc -l`&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; if [ $result -gt 1 ]; then&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mail -s &quot;$SUB&quot; &quot;$EMAIL_IDS&quot; &amp;lt;&amp;lt;&amp;lt;&quot;$BODY&quot;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; exit 0&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; fi&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; sleep 60&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;div class=&quot;p1&quot;&gt;
&lt;span class=&quot;s1&quot; style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;done&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/4107710389555995517/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2016/02/an-attempt-to-write-script-to-notify.html#comment-form' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/4107710389555995517'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/4107710389555995517'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2016/02/an-attempt-to-write-script-to-notify.html' title='An attempt to write a script to notify when a movie is listed online for booking'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-1211276007114834508</id><published>2015-05-22T03:42:00.000-07:00</published><updated>2015-05-22T03:46:41.739-07:00</updated><title type='text'>Share files over devices under same network - Linux</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
First, Make sure you have python installed in your machine. If not, follow these instructions to install python&lt;br /&gt;
&lt;pre class=&quot;wp-code-highlight prettyprint prettyprinted&quot; style=&quot;background-attachment: initial !important; background-clip: initial !important; background-color: white; background-image: initial !important; background-origin: initial !important; background-position: initial !important; background-repeat: initial !important; background-size: initial !important; border-radius: 4px; border: 1px solid rgb(204, 204, 204); color: #666666; font-family: ubuntu; font-size: 12px; font-stretch: inherit; font-weight: bold; line-height: 16px; margin-bottom: 6px; margin-top: 6px; overflow: auto; padding: 2px 7px; vertical-align: baseline; white-space: pre-wrap; width: 599px; word-wrap: normal;&quot;&gt;&lt;span class=&quot;pln&quot; style=&quot;border: 0px; color: black; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;sudo apt&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;border: 0px; color: #666600; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;kwd&quot; style=&quot;border: 0px; color: #000088; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: normal !important; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;get&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;border: 0px; color: black; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt; install libssl&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;border: 0px; color: #666600; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;border: 0px; color: black; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;dev openssl

wget https&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;border: 0px; color: #666600; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;com&quot; style=&quot;border: 0px; color: #880000; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 20px 0px 0px; padding: 0px; vertical-align: baseline;&quot;&gt;//www.python.org/ftp/python/3.4.1/Python-3.4.1.tgz&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;border: 0px; color: black; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;

tar &lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;border: 0px; color: #666600; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;border: 0px; color: black; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;xvf &lt;/span&gt;&lt;span class=&quot;typ&quot; style=&quot;border: 0px; color: #660066; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;Python&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;border: 0px; color: #666600; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;lit&quot; style=&quot;border: 0px; color: #006666; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;3.4&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;border: 0px; color: #666600; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;lit&quot; style=&quot;border: 0px; color: #006666; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;1.tgz&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;border: 0px; color: black; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;

cd &lt;/span&gt;&lt;span class=&quot;typ&quot; style=&quot;border: 0px; color: #660066; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;Python&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;border: 0px; color: #666600; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;lit&quot; style=&quot;border: 0px; color: #006666; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;3.4&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;border: 0px; color: #666600; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;lit&quot; style=&quot;border: 0px; color: #006666; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;border: 0px; color: #666600; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;border: 0px; color: black; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;border: 0px; color: #666600; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;./&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;border: 0px; color: black; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;configure

make

sudo make install

&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;border: 0px; color: #666600; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;./&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;border: 0px; color: black; font-family: inherit; font-size: inherit; font-stretch: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; line-height: inherit; margin: 0px; padding: 0px; vertical-align: baseline;&quot;&gt;python&lt;/span&gt;&lt;/pre&gt;
&lt;i&gt;&lt;span style=&quot;font-size: x-small;&quot;&gt;(source:&amp;nbsp;&lt;a href=&quot;http://www.sysads.co.uk/2014/06/install-python-3-4-1-ubuntu-14-04/&quot;&gt;http://www.sysads.co.uk/2014/06/install-python-3-4-1-ubuntu-14-04/&lt;/a&gt;)&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Now just follow below 3 steps to create your own file server with one command&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1. Create a shell script file with the following content&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
e.g.: shareThis.sh&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif; font-size: x-small;&quot;&gt;&lt;b&gt;#!/bin/bash&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif; font-size: x-small;&quot;&gt;&lt;b&gt;ipaddress=$(ifconfig | grep -A 1 wlan0 | grep &#39;inet&#39; | sed s/:/&#39; &#39;/ |awk &#39;{print $3}&#39;)&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif; font-size: x-small;&quot;&gt;&lt;b&gt;echo &#39;Access any file from location &#39;$PWD&#39; on http://&#39;$ipaddress&#39;:8000&#39;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif; font-size: x-small;&quot;&gt;&lt;b&gt;python -m SimpleHTTPServer &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Actually this is all you need. Now run the shell script e.g.,&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif; font-size: x-small;&quot;&gt;&lt;b&gt;sh shareThis.sh&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
In whichever directory you want.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;2. Make an executable command for the same.&amp;nbsp;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
Give full permission to the file.&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif; font-size: x-small;&quot;&gt;&lt;b&gt;chmod +x shareThis.sh&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Now you can run it by just typing&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif; font-size: x-small;&quot;&gt;&lt;b&gt; ./shareThis.sh&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;3. Create an alias.&amp;nbsp;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
Alias helps you to run this script just like you run any other command on Linux&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Open .bashrc file.&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif; font-size: x-small;&quot;&gt;vi ~/.bashrc&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
At the end of this file, add this line&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif; font-size: x-small;&quot;&gt;&lt;b&gt;alias shareThis=&#39;~/shareThis.sh&#39;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Source bash file to get immediate effect &lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif; font-size: x-small;&quot;&gt;&lt;b&gt;source &amp;nbsp;~/.bashrc&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
That&#39;s it. Now whenever you want to share files among other devices in your network, just run the command &#39;&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif; font-size: x-small;&quot;&gt;&lt;b&gt;shareThis&lt;/b&gt;&lt;/span&gt;&#39;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/1211276007114834508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2015/05/share-files-over-devices-under-same-ip.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/1211276007114834508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/1211276007114834508'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2015/05/share-files-over-devices-under-same-ip.html' title='Share files over devices under same network - Linux'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-8764444564210275397</id><published>2015-04-12T22:17:00.000-07:00</published><updated>2015-04-13T11:12:38.473-07:00</updated><title type='text'>LED Lighting – The Cost Effective Lighting Solution</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
If you are searching for ways to light up your lifestyle and your home without lighting up your energy bills then this is for you. &lt;a href=&quot;http://yescomusa.com/collections/led&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;Led lighting strips&lt;/span&gt;&lt;/a&gt; provide the perfect lighting solution both outside and inside the home. They may make your furniture appear to float on air, bring a genuine glow towards the walls, provide lighting the stairs for more safety and embrace your home with indirect lighting of most colors which will not only please your eyes but the rest of your senses too.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFDH1Ns7Gy5V9nFmgoD0U8-Rbc3lt5w5Tqh3aDQJkG-lmKPhixMb8Eo_AXbLRZSO0ykmM6_wEDCgLYEn11RCYFhcmjcCq_D2LPYy8VQltvjXG1ENy8q7EbmqMLfQ8wJDz7oubI1yV05EU/s1600/Yescom-FirstBatch-6-1.jpg&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFDH1Ns7Gy5V9nFmgoD0U8-Rbc3lt5w5Tqh3aDQJkG-lmKPhixMb8Eo_AXbLRZSO0ykmM6_wEDCgLYEn11RCYFhcmjcCq_D2LPYy8VQltvjXG1ENy8q7EbmqMLfQ8wJDz7oubI1yV05EU/s1600/Yescom-FirstBatch-6-1.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Indirect lighting can certainly produce a cozy atmosphere free from glares, background lighting can turn your television viewing into a cinema style experience and LED bathroom lighting can create a variety of moods in perfect harmony with your own. Different areas of the bathroom require different qualities of light - it should be functional in some areas but sometimes you may need that it is more calm and relaxing. You may need bright lights to pick you up in the mornings when you want to shave or apply makeup but subtle in the evenings while you are enjoying a relaxing soak in the tub.&lt;br /&gt;
&lt;br /&gt;
It can also give a room an infinitely more spacious feel and can be mounted anywhere - why not set them up on the ceiling and baseboards to provide warm lighting with hardly any shadows for an even distribution of cozy light?&lt;br /&gt;
&lt;br /&gt;
Kitchens might be brought to life, particularly those dark corners and recesses underneath the wall cabinets and well placed LED lighting inside the bedroom will help to set by far the most romantic of tones when required.&lt;br /&gt;
&lt;br /&gt;
LED lights are also perfectly safe for outdoor use and will make fabulous party lights and they also have lots of benefits.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWO3vg66EpYlaZkVXSv0ZpMt1up7OjSZM4PI2qcbSCvZEnDUqkd3il-NuzfWH_rcGtj7yVDRTFIz1cr0lpP8HPSXlM_fx-6SengFCuirMpBe0Sls3cTjQsJHz0bpgQskCFIAukexN0pQo/s1600/Yescom-FirstBatch-6-2.jpg&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWO3vg66EpYlaZkVXSv0ZpMt1up7OjSZM4PI2qcbSCvZEnDUqkd3il-NuzfWH_rcGtj7yVDRTFIz1cr0lpP8HPSXlM_fx-6SengFCuirMpBe0Sls3cTjQsJHz0bpgQskCFIAukexN0pQo/s1600/Yescom-FirstBatch-6-2.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Benefits of LEDs &lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;LED lights are longer lasting, energy efficient and intensely eco friendly which means that you’ll be doing your bit for the environment and you’ll also be spending less on your energy bills&lt;/li&gt;
&lt;/ul&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijXXB5e4asUU-b1E5bc6yKS7aY_Z5dUJPjv4jQpcCvri8wZi6BulJy98E3Y1-3vfCo7ZOHOWGcy7tfIJGQSo9LWvUKcBFZe_D6gIRNpjcfIvFJRWw-CeIRfPmNr3HpDhFNtWyTJlujq9I/s1600/Yescom-FirstBatch-6-3.jpg&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijXXB5e4asUU-b1E5bc6yKS7aY_Z5dUJPjv4jQpcCvri8wZi6BulJy98E3Y1-3vfCo7ZOHOWGcy7tfIJGQSo9LWvUKcBFZe_D6gIRNpjcfIvFJRWw-CeIRfPmNr3HpDhFNtWyTJlujq9I/s1600/Yescom-FirstBatch-6-3.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;LED lights could be recycled simply because they don’t contain any mercury. They also don’t emit infrared or UV light.&lt;/li&gt;
&lt;li&gt;LED lights could be fitted almost anywhere and are easy to fit because the rope and strip lights often have self adhesive backing.&lt;/li&gt;
&lt;li&gt;LED lights are available in many different different colors to help set the mood and tone of your property. They are available in cozy warm white as well as a variety of other colors.&lt;/li&gt;
&lt;li&gt;Various types of LED lights are weather proof - water resistant and perfectly safe to be used outdoors. This can provide excellent safety benefits along with help to add interesting focus to some features of your property. Then why not wrapping rope lights around balcony railings for a dramatic effect or maybe subtle lighting beneath the porch ceiling helping you to find your keys when you’re home after dark.&lt;/li&gt;
&lt;/ul&gt;
They’ve got a great deal of information and LED lighting products offered at &lt;a href=&quot;http://yescomusa.com/&quot;&gt;yescomusa.com&lt;/a&gt;. In order to get some great ideas about how you can enhance the ambiance both inside and outside your own home using energy-efficient, long lasting LED lights and LED lighting strips, you are able to take a look at your leisure in the home, you don’t even have to step outside.&lt;br /&gt;
&lt;br /&gt;
Don’t put up with dark and dingy corners - install some of these lighting strips in strategic places around the home and you’ll be delighted using the difference. The only thing which won’t see a dramatic change will probably be your bank balance or your energy bills, and that’s certainly worth remembering.&lt;br /&gt;
&lt;div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;span style=&quot;background-color: white; color: #222222; font-family: arial, sans-serif; font-size: 12.8000001907349px;&quot;&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;



&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F4.bp.blogspot.com%2F-f2C09BvQQP0%2FVStPRd04P8I%2FAAAAAAAAIYk%2FY606bQyBJ5A%2Fs1600%2FYescom-FirstBatch-6-2.jpg&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWO3vg66EpYlaZkVXSv0ZpMt1up7OjSZM4PI2qcbSCvZEnDUqkd3il-NuzfWH_rcGtj7yVDRTFIz1cr0lpP8HPSXlM_fx-6SengFCuirMpBe0Sls3cTjQsJHz0bpgQskCFIAukexN0pQo/s1600/Yescom-FirstBatch-6-2.jpg&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F3.bp.blogspot.com%2F-F-H__CRJwgo%2FVStPRVPDT8I%2FAAAAAAAAIYo%2FA9jjGdNMio4%2Fs1600%2FYescom-FirstBatch-6-3.jpg&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijXXB5e4asUU-b1E5bc6yKS7aY_Z5dUJPjv4jQpcCvri8wZi6BulJy98E3Y1-3vfCo7ZOHOWGcy7tfIJGQSo9LWvUKcBFZe_D6gIRNpjcfIvFJRWw-CeIRfPmNr3HpDhFNtWyTJlujq9I/s1600/Yescom-FirstBatch-6-3.jpg&quot; --&gt;&lt;!-- Blogger automated replacement: &quot;https://images-blogger-opensocial.googleusercontent.com/gadgets/proxy?url=http%3A%2F%2F1.bp.blogspot.com%2F-wDvgLqNbuTc%2FVStPRcjUr6I%2FAAAAAAAAIYw%2FeW-00c6lTIU%2Fs1600%2FYescom-FirstBatch-6-1.jpg&amp;amp;container=blogger&amp;amp;gadget=a&amp;amp;rewriteMime=image%2F*&quot; with &quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFDH1Ns7Gy5V9nFmgoD0U8-Rbc3lt5w5Tqh3aDQJkG-lmKPhixMb8Eo_AXbLRZSO0ykmM6_wEDCgLYEn11RCYFhcmjcCq_D2LPYy8VQltvjXG1ENy8q7EbmqMLfQ8wJDz7oubI1yV05EU/s1600/Yescom-FirstBatch-6-1.jpg&quot; --&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/8764444564210275397/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2015/04/led-lighting-cost-effective-lighting.html#comment-form' title='279 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/8764444564210275397'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/8764444564210275397'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2015/04/led-lighting-cost-effective-lighting.html' title='LED Lighting – The Cost Effective Lighting Solution'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFDH1Ns7Gy5V9nFmgoD0U8-Rbc3lt5w5Tqh3aDQJkG-lmKPhixMb8Eo_AXbLRZSO0ykmM6_wEDCgLYEn11RCYFhcmjcCq_D2LPYy8VQltvjXG1ENy8q7EbmqMLfQ8wJDz7oubI1yV05EU/s72-c/Yescom-FirstBatch-6-1.jpg" height="72" width="72"/><thr:total>279</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-6166104728557009759</id><published>2015-01-22T23:32:00.002-08:00</published><updated>2015-01-22T23:40:11.228-08:00</updated><title type='text'>WhatsApp is now on your computer browser!!</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg7AE-SPMqWWrXvtT79hDoxZJKSWIiSOx8JKoe-2HQPf5yyCmnWLuCoGauoLds31X-JB0k0ko1hAMpjU9z_XYQ5BIKkVKgI2x4UNKTnU_0JcFkkPvjHtrwUZC36nqZ5rH9lLCrIxpSmZF0/s1600/7145524.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg7AE-SPMqWWrXvtT79hDoxZJKSWIiSOx8JKoe-2HQPf5yyCmnWLuCoGauoLds31X-JB0k0ko1hAMpjU9z_XYQ5BIKkVKgI2x4UNKTnU_0JcFkkPvjHtrwUZC36nqZ5rH9lLCrIxpSmZF0/s1600/7145524.png&quot; height=&quot;197&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
Finally WhatsApp officially arrives on computer screen. Now you can use WhatsApp on your browser. All you need to is just scan a QR code that you can see at&amp;nbsp;&lt;a href=&quot;https://web.whatsapp.com/&quot;&gt;https://web.whatsapp.com/&lt;/a&gt;&amp;nbsp;using your mobile phone. That&#39;s it!! Now you can use WhatsApp with a &#39;Secure&#39; connection.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Here are the steps you need to follow.&lt;/b&gt;&lt;br /&gt;
&lt;ol style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Download the latest WhatsApp version or upgrade your WhatsApp. Once you see &#39;WhatsApp Web&#39; option in WhatsApp menu, you are all set to go!!&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Tap the&amp;nbsp;&#39;WhatsApp Web&#39;&amp;nbsp;button&lt;/li&gt;
&lt;li&gt;Goto&amp;nbsp;&lt;a href=&quot;https://web.whatsapp.com/&quot;&gt;https://web.whatsapp.com/&lt;/a&gt;&amp;nbsp;on your computer browser (Use Google chrome)&lt;/li&gt;
&lt;li&gt;Scan the QR code that you can see on the computer screen using your phone.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;That&#39;s it. Congratulations!! You have WhatsApp desktop version now :)&amp;nbsp;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/6166104728557009759/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2015/01/whatsapp-on-your-browser.html#comment-form' title='16 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/6166104728557009759'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/6166104728557009759'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2015/01/whatsapp-on-your-browser.html' title='WhatsApp is now on your computer browser!!'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg7AE-SPMqWWrXvtT79hDoxZJKSWIiSOx8JKoe-2HQPf5yyCmnWLuCoGauoLds31X-JB0k0ko1hAMpjU9z_XYQ5BIKkVKgI2x4UNKTnU_0JcFkkPvjHtrwUZC36nqZ5rH9lLCrIxpSmZF0/s72-c/7145524.png" height="72" width="72"/><thr:total>16</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-6329336836174806678</id><published>2013-12-11T06:26:00.001-08:00</published><updated>2013-12-11T06:26:31.059-08:00</updated><title type='text'>Apple and Microsoft May Merge in next 5-10 years</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhoLDo_Te1dRv-FrE-kps9hrwV7LRw-bKP9s_-e_HAaCRmw-y4P32Mjp4gioe3lcUnsvBXQajM5Xxy91Mb9tww5zCQEist6veDd9aZlFx-fxlqnT-JKckOFD8jNdV8gJRNqTy0RT07izPw/s1600/Apple-MS-logo.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;269&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhoLDo_Te1dRv-FrE-kps9hrwV7LRw-bKP9s_-e_HAaCRmw-y4P32Mjp4gioe3lcUnsvBXQajM5Xxy91Mb9tww5zCQEist6veDd9aZlFx-fxlqnT-JKckOFD8jNdV8gJRNqTy0RT07izPw/s400/Apple-MS-logo.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
Yes, the title says it all. Impossible?? Even I had that thought in my mind until I read the analyst report.&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
It was the analyst, Keith Fitz-Gerald of Money Map Press who unveils his cockamamy idea that Apple and Microsoft could merge in the not too distant future to combat their mutual rivals in his interview with Varney &amp;amp; Co. host Stuart Varney.&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Keith Fitz-Gerald later added, “I think that Apple and Microsoft may not only have to work together for the next few years but may even see a merger in the next five to ten years from now because they’re going to have to take on the Google/Android/Facebooks of the world.”&lt;br /&gt;He also said, “Look at what Apple wants to accomplish with the mobile market, You look at the one Microsoft initiative. And you look at the cross-pollinization of devices. Content is king. Security is king. And you’ve got a user base between the Millennials and the senior citizens who have to have easy-to-use, functional stuff that is transparent between devices.”&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Well, the integration of these two tech giants will definitely result in seamless enhancements in all the core parts the technology and entertainment. It will be the next revolution in the history of Computer science. It&#39;s still a statement with &#39;may&#39; in it. &lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/6329336836174806678/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2013/12/apple-and-microsoft-may-merge-in-next-5.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/6329336836174806678'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/6329336836174806678'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2013/12/apple-and-microsoft-may-merge-in-next-5.html' title='Apple and Microsoft May Merge in next 5-10 years'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhoLDo_Te1dRv-FrE-kps9hrwV7LRw-bKP9s_-e_HAaCRmw-y4P32Mjp4gioe3lcUnsvBXQajM5Xxy91Mb9tww5zCQEist6veDd9aZlFx-fxlqnT-JKckOFD8jNdV8gJRNqTy0RT07izPw/s72-c/Apple-MS-logo.png" height="72" width="72"/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-4835604676429305560</id><published>2013-11-22T06:04:00.000-08:00</published><updated>2013-11-22T06:07:50.594-08:00</updated><title type='text'>Group Photo Ideas That Will Create Everlasting Memories</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Group photos are among the most common kinds of photos people take. However, they aren&#39;t always the most memorable. This is because they are easily spoiled since there are so many subjects in the picture. Someone is always blinking or looking away right when the photo is snapped so it can get pretty hard to take a good group picture. However, we can make it a little easier for you with these handy tips.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;1. Preparation&lt;/b&gt;&lt;br /&gt;Even though some of the best pictures are spontaneous, this is not the case with group photos. People tend to lose their patience pretty fast if you, the photographer, are not prepared beforehand. This reduces the chance that they will cooperate which reduces the chance of a good photo. In order to avoid this, you should already have a location in mind, know the position you will sit them in and already figure out how you are going to frame the picture.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0vTk4YFMJ78Mt1VCO0OQyqP_Z3X2FgABHlJN4-9NQNHPWpbttbnJ-jUgrtTUFYSZCiuy18nSvYWLu2xSXuA8laEJAGbAluLWu_faMOpKRssIWwYXd3houE4E7N_8d1XDRw9uwLR53TeQ/s1600/unnamed.jpg&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0vTk4YFMJ78Mt1VCO0OQyqP_Z3X2FgABHlJN4-9NQNHPWpbttbnJ-jUgrtTUFYSZCiuy18nSvYWLu2xSXuA8laEJAGbAluLWu_faMOpKRssIWwYXd3houE4E7N_8d1XDRw9uwLR53TeQ/s1600/unnamed.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;2. Take more than one shot&lt;/b&gt;&lt;br /&gt;While not a guarantee of a success, this technique will at least increase your chances of taking a good photo. If your camera has a burst mode then use it. If not, simply tell everyone that you will take multiple photos and keep snapping away.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhSzYDlUEOZCFgFqkFpwbpkMX2GTYrxvEVSzna5C5y92Gyf9CQhEnR0oUDnHIa9VobFLLKyvL91e3_OY4wDcY2YBWUNxu_iMlRHQtL6uzitQzjAywRMdxL6HAUeun_-xvJUZwMBkWiofMI/s1600/YesCom-Photo-2-2.jpg&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhSzYDlUEOZCFgFqkFpwbpkMX2GTYrxvEVSzna5C5y92Gyf9CQhEnR0oUDnHIa9VobFLLKyvL91e3_OY4wDcY2YBWUNxu_iMlRHQtL6uzitQzjAywRMdxL6HAUeun_-xvJUZwMBkWiofMI/s1600/YesCom-Photo-2-2.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;
&lt;b&gt;3. Get in closer&lt;/b&gt;&lt;br /&gt;This is a useful tip for any kind of photography, but it can be harder when talking about a group photo. You need to be sure that you do not get too close and start cutting people out of the image. However, if you do manage to find the sweet spot, you will give your subjects’ faces a lot more detail and definition which improves the overall quality of the picture.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiavLv2e-cfv4WIAg8Xrzvo510J4dLg7zfRH9BY1VI37PxFy_y3L1lFlqp6ViV9CAKGQw5txF-Vw_w4z7CxLQ_CpCqkZpIWAli7YzLO_HWKFZL7-w85vqrcdMjvCYBHgTcNZaSgv3hpQP0/s1600/YesCom-Photo-2-3.jpg&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiavLv2e-cfv4WIAg8Xrzvo510J4dLg7zfRH9BY1VI37PxFy_y3L1lFlqp6ViV9CAKGQw5txF-Vw_w4z7CxLQ_CpCqkZpIWAli7YzLO_HWKFZL7-w85vqrcdMjvCYBHgTcNZaSgv3hpQP0/s1600/YesCom-Photo-2-3.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;When you are looking for top quality equipment such as &lt;a href=&quot;http://www.yescomusa.com/Photography-Backgrounds/&quot;&gt;photo backdrops&lt;/a&gt;, visit &lt;a href=&quot;http://www.yescomusa.com/&quot;&gt;http://www.yescomusa.com&lt;/a&gt;. Here you will be able to access a large collection of merchandise at very reasonable prices.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Van&lt;br /&gt;YesComUSA.com&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/4835604676429305560/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2013/11/group-photo-ideas-that-will-create.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/4835604676429305560'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/4835604676429305560'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2013/11/group-photo-ideas-that-will-create.html' title='Group Photo Ideas That Will Create Everlasting Memories'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0vTk4YFMJ78Mt1VCO0OQyqP_Z3X2FgABHlJN4-9NQNHPWpbttbnJ-jUgrtTUFYSZCiuy18nSvYWLu2xSXuA8laEJAGbAluLWu_faMOpKRssIWwYXd3houE4E7N_8d1XDRw9uwLR53TeQ/s72-c/unnamed.jpg" height="72" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-4866249350736024955</id><published>2013-05-04T11:58:00.001-07:00</published><updated>2013-05-11T21:59:51.827-07:00</updated><title type='text'>Installing Ruby on Rails on Ubuntu 10.04</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEir8W6DjbGxorFtdksot6LEgsCiEcoc03bc7JxF0e4Lc6XFCy9s0doNUNI-iIDSbOddzIcls5uc2IAxkAw_NoGx0Req5kL4hyhnS3D-wICE5kEYCBooOUArvUrHmsHp6hJSoFy85JW5VNg/s1600/ruby-on-rails2.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEir8W6DjbGxorFtdksot6LEgsCiEcoc03bc7JxF0e4Lc6XFCy9s0doNUNI-iIDSbOddzIcls5uc2IAxkAw_NoGx0Req5kL4hyhnS3D-wICE5kEYCBooOUArvUrHmsHp6hJSoFy85JW5VNg/s1600/ruby-on-rails2.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
This is the first tutorial post on Apsotech blog. There are several tutorials available on Internet which guides through Ruby and Rails installation. This post is very particular about installing ruby version &amp;nbsp;1.9.3p194&amp;nbsp;&amp;nbsp;and rails version&amp;nbsp;3.2.13. Lets get started.&lt;br /&gt;
Follow the below steps carefully if you get any error in between please solve the issue before going to the next step.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Installing ruby&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
Download the source file &lt;a href=&quot;http://www.mediafire.com/?c21uu12ikebkxw0&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
Copy the file to home folder and open terminal, type the command&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: black; color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;prathviraj@apsotech:~&lt;/b&gt;&lt;b&gt;$tar xvjf&amp;nbsp;ruby-1.9.3-p194.tar.gz&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: black;&quot;&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;prathviraj@apsotech:~$cd ruby-1.9.3-p194/&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;br /&gt;
Install dependency&lt;br /&gt;
&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;prathviraj@apsotech:~/&lt;/b&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;ruby-1.9.3-p194&lt;/b&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;$sudo apt-get install&amp;nbsp;&lt;/b&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b style=&quot;background-color: black;&quot;&gt;libyaml-dev&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
Compile, make and install&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: black;&quot;&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;prathviraj@apsotech:~/&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;ruby-1.9.3-p194&lt;/b&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;$sudo ./configure&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: black;&quot;&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;prathviraj@apsotech:~/&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;ruby-1.9.3-p194&lt;/b&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;$sudo make&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: black; color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;prathviraj@apsotech:~/&lt;/b&gt;&lt;/span&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;ruby-1.9.3-p1&lt;/b&gt;&lt;span style=&quot;background-color: black;&quot;&gt;&lt;span style=&quot;color: white;&quot;&gt;&lt;b style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;94&lt;/b&gt;&lt;b style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;$sudo make install&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Now you have installed ruby on your machine. To confirm, check the ruby version&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b style=&quot;background-color: black;&quot;&gt;prathviraj@apsotech:~/&lt;/b&gt;&lt;/span&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;ruby-1.9.3-p194&lt;/b&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;$ ruby -v&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b style=&quot;background-color: black;&quot;&gt;ruby 1.9.3p194 (2012-04-20 revision 35410) [i686-linux]&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b&gt;Rails Installation&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
Now time to install rails using gem. I am not using apt-get repository for rails as it does not provide all the packages needed and its not up to date, instead I am using gem repository which is directly backed by ruby repository.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install curl&lt;br /&gt;
&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;prathviraj@apsotech:~$sudo apt-get install curl&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: black;&quot;&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;
Now download gem&lt;br /&gt;
&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;prathviraj@apsotech:~&lt;/b&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b style=&quot;background-color: black;&quot;&gt;/&lt;/b&gt;&lt;/span&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;ruby-1.9.3-p194&lt;/b&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;$sudo&lt;/b&gt;&lt;span style=&quot;background-color: black;&quot;&gt;&lt;b style=&quot;color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;&amp;nbsp;&lt;/b&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;curl -L https://get.rvm.io | bash -s stable --ruby -V&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
To install rails just type&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: black; color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;prathviraj@apsotech:~&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b style=&quot;background-color: black;&quot;&gt;/&lt;/b&gt;&lt;/span&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;ruby&lt;/b&gt;&lt;span style=&quot;background-color: black;&quot;&gt;&lt;span style=&quot;color: white;&quot;&gt;&lt;b style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;-1.9.3-p194&lt;/b&gt;&lt;b style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;$sudo gem install rails&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
It may take some time depending on your Internet speed.&lt;/div&gt;
&lt;div&gt;
After completion check your rails version&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: black;&quot;&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;prathviraj@apsotech:~&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b style=&quot;background-color: black;&quot;&gt;/&lt;/b&gt;&lt;/span&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;ruby-1.9.3-p194&lt;/b&gt;&lt;b style=&quot;background-color: black; color: white; font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;$ rails -v&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: black;&quot;&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;Rails 3.2.13&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Now create a project. I would suggest you to do it inside home directory&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: black;&quot;&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;prathviraj@apsotech:~$ rails new projectname -d mysql&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: black;&quot;&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;prathviraj@apsotech:~$ cd projectname/&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Now download all necessary gem files &lt;a href=&quot;http://www.mediafire.com/?zc7mhy2j88jgcn7&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
Extract the cache.zip file and place it inside directory ~/projectname/vendor/&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;
Before going ahead, you need to install some dependecies for mysql2 gem. Type&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b style=&quot;background-color: black;&quot;&gt;prathviraj@apsotech:~/projectname$&amp;nbsp;sudo apt-get install mysql-client libmysqlclient-dev&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: white; color: #333333; font-family: &#39;Comic Sans MS&#39;, &#39;lucida grande&#39;, tahoma, verdana, arial, sans-serif; font-size: 11px; line-height: 14px; white-space: pre-wrap;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
Install all the gem files&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: black;&quot;&gt;&lt;span style=&quot;color: white; font-family: Courier New, Courier, monospace;&quot;&gt;&lt;b&gt;prathviraj@apsotech:~/projectname$ bundle install --local&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
Congratulations!! If you are lucky enough to go through all the installation steps.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/4866249350736024955/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2013/05/installing-ruby-on-rails-on-ubuntu-1004.html#comment-form' title='16 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/4866249350736024955'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/4866249350736024955'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2013/05/installing-ruby-on-rails-on-ubuntu-1004.html' title='Installing Ruby on Rails on Ubuntu 10.04'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEir8W6DjbGxorFtdksot6LEgsCiEcoc03bc7JxF0e4Lc6XFCy9s0doNUNI-iIDSbOddzIcls5uc2IAxkAw_NoGx0Req5kL4hyhnS3D-wICE5kEYCBooOUArvUrHmsHp6hJSoFy85JW5VNg/s72-c/ruby-on-rails2.jpg" height="72" width="72"/><thr:total>16</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-4794106068524101530</id><published>2013-05-04T03:57:00.001-07:00</published><updated>2015-04-13T11:00:44.213-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Other"/><title type='text'>How to get video viral on YouTube </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWRWbYAZG8rsrZIobFkNV8y-jSmTVbc5qEQggR380qMHcykmaQiGstSF03bwdzZ6PzbDShUuZiZmC4S0G5ACQT3nlQm_kYeIquWmmkXj4WU9gHv8xmpTkuiWAkLjF1o-yVjzH1NqIFeWQ/s1600/viral.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWRWbYAZG8rsrZIobFkNV8y-jSmTVbc5qEQggR380qMHcykmaQiGstSF03bwdzZ6PzbDShUuZiZmC4S0G5ACQT3nlQm_kYeIquWmmkXj4WU9gHv8xmpTkuiWAkLjF1o-yVjzH1NqIFeWQ/s1600/viral.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span id=&quot;goog_1122135404&quot;&gt;&lt;/span&gt;&lt;span id=&quot;goog_1122135405&quot;&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;
All these days when I read the tech-news page of a news paper I see this story which repeatedly appears once in every month tattling about the “Most viewed Video on YouTube”. And people always tend to watch this video just to know why this video got so famous? The most viewed video such as an album song is publicized externally to some extent. Lets see how to get ANY video Viral on YouTube.&lt;br /&gt;
&lt;br /&gt;
I call videos as Viral Videos, when these videos are viewed by thousands and millions of people all over the world through Internet. You can find these videos in video sharing website like ‘YouTube’. Here, I talk only about YouTube just for the simple reason that in YouTube 48 hours of video is uploaded per minute and it hits 3 billion viewers per day and no other video sharing site is even close to this stats.&lt;br /&gt;
&lt;br /&gt;
Such a stat gives you the best chance to make a viral video. I&#39;ve got some videos (Mentioned later in this article) which are very famous all around the cyber space. This sort of popularity gives you a public promotion which is very useful for&amp;nbsp;start-up&amp;nbsp;companies. &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Tips to make a video go Viral &lt;/b&gt;&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Videos should be short enough that viewer feels comfortable to watch full video, normally advertisement clips will be of 30 seconds, but on Internet it may be of larger length. It should not be 5 plus minutes, it will be nice if it ends in couple of minutes.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Videos should be shorter as mentioned, but it should convey complete message to the viewer.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Videos should be funny, or something which attracts viewer in first 30 seconds.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;Videos should be simple and should attract all class of viewers irrespective of their country, culture, language.&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;Some viral videos on YouTube&amp;nbsp;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
This video is about a startup company called ‘&lt;a href=&quot;http://dollarshaveclub.com/&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;DollarShaveClub.com&lt;/span&gt;&lt;/a&gt;’, the CEO and the co-founder of the company ‘Michael Durbin’ starred in video.&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
Reason for video getting viral:&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;It was short enough so the viewer won’t spend much time on it.&lt;/li&gt;
&lt;li&gt;It was a funny, and it made people laugh.&lt;/li&gt;
&lt;/ul&gt;
Here is the link to that video &lt;a href=&quot;http://www.youtube.com/watch?v=ZUG9qYTJMsI&quot; target=&quot;_blank&quot;&gt;http://www.youtube.com/watch?v=ZUG9qYTJMsI&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;
&lt;br /&gt;
Second viral video I am talking about is very popular, i.e., ‘Gangnam Style’ this was the most popular video on YouTube in 2012, having one billion plus views.&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
Reason for video getting viral: &lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;A crazy horse riding dance in Gangnam style made it a viral video.&amp;nbsp;&lt;/li&gt;
&lt;li&gt;The main reason was open perspective on copyright, Korean entertainer encouraged; anyone can copy the style in their own way to show. This lead many people to use that dance and publish it in their own way.&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
Here is the link to that video &lt;a href=&quot;http://www.youtube.com/watch?v=9bZkp7q19f0&quot; target=&quot;_blank&quot;&gt;http://www.youtube.com/watch?v=9bZkp7q19f0&lt;/a&gt; &lt;br /&gt;
&lt;br /&gt;
Please comment any more tips that you think makes a Video Viral on YouTube. &lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/4794106068524101530/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2013/05/how-to-get-video-viral-on-youtube.html#comment-form' title='14 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/4794106068524101530'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/4794106068524101530'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2013/05/how-to-get-video-viral-on-youtube.html' title='How to get video viral on YouTube '/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWRWbYAZG8rsrZIobFkNV8y-jSmTVbc5qEQggR380qMHcykmaQiGstSF03bwdzZ6PzbDShUuZiZmC4S0G5ACQT3nlQm_kYeIquWmmkXj4WU9gHv8xmpTkuiWAkLjF1o-yVjzH1NqIFeWQ/s72-c/viral.jpg" height="72" width="72"/><thr:total>14</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-3168947899871948923</id><published>2013-04-03T07:14:00.000-07:00</published><updated>2013-08-08T18:58:47.231-07:00</updated><title type='text'>Learning More About Photography</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgm8RniTPTAExMUNCL2Bjrq16jD7YLjlwiNm5rG3tCtgdsp8JkDr8yt0_Xb6vaRJ2USci2zfm3DZFau2c_nTpiJug4Ae2ZIV84WYxR2IisQtifZ8eZAsxohEZxx43a6bju-e00U0KzK1Y/s1600/qtOtMQPtslzoar-opDtZj59Hbv9CEj_dI7fuVP9Jtb0.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgm8RniTPTAExMUNCL2Bjrq16jD7YLjlwiNm5rG3tCtgdsp8JkDr8yt0_Xb6vaRJ2USci2zfm3DZFau2c_nTpiJug4Ae2ZIV84WYxR2IisQtifZ8eZAsxohEZxx43a6bju-e00U0KzK1Y/s320/qtOtMQPtslzoar-opDtZj59Hbv9CEj_dI7fuVP9Jtb0.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;background-color: white; color: #222222; font-family: arial, sans-serif; font-size: 13px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; color: #222222; font-family: arial, sans-serif; font-size: 13px;&quot;&gt;Having the right &lt;/span&gt;&lt;span style=&quot;background-color: white; color: #222222; font-family: arial, sans-serif; font-size: 13px;&quot;&gt;photography backdrops, as well as top notch &lt;/span&gt;&lt;span style=&quot;background-color: white; color: #222222; font-family: arial, sans-serif; font-size: 13px;&quot;&gt;photography lighting equipment&amp;nbsp;is imperative to a good photograph so make sure your money counts and visit &lt;/span&gt;&lt;a href=&quot;http://www.thelashop.com/&quot;&gt;http://www.thelashop.com&lt;/a&gt;&lt;span style=&quot;background-color: white; color: #222222; font-family: arial, sans-serif; font-size: 13px;&quot;&gt;. Photography is a great skill to learn about and excel in. There are lots of different reasons that a person should learn how to take photographs. In your own personal life, there are lots of moments that would be worth remembering and can easily be with the right camera.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #222222; font-family: arial, sans-serif; font-size: 13px;&quot;&gt;Some people are turned away from photography just knowing that certain DSLR cameras can be quite expensive and so they view it as a hobby that you need money for - but that&#39;s not true at all. Even if you just have a little money you can buy a relatively cheap digital camera that you won&#39;t need to buy constant film for. Once you invest in the camera, you can worry about the lighting equipment and backdrops to make your subject look professional. You can improve your skill by adding lenses to your camera set which will help you to take different kinds of pictures and focus beautifully on a subject no matter where it&#39;s at.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #222222; font-family: arial, sans-serif; font-size: 13px;&quot;&gt;If you like the idea of portrait photography, you will need big backdrops for your photos as well as a nice two to four set of lighting equipment stands. It will also be beneficial for you to read up on photography a bit before you embark on your journey since there are certain keywords like aperture and shutter speed that will be imperative to understanding how a digital camera works. No matter what your subject may be, with the right eye, knowledge and photography equipment, anyone can make a beautiful work of art. Photography is a great hobby to take up as well as a very interesting and captivating profession for those interested.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #222222; font-family: arial, sans-serif; font-size: 13px;&quot;&gt;For your next photography endeavor, you can trust the LA shop for all future equipment needs.&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/3168947899871948923/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2013/04/learning-more-about-photography.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3168947899871948923'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3168947899871948923'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2013/04/learning-more-about-photography.html' title='Learning More About Photography'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgm8RniTPTAExMUNCL2Bjrq16jD7YLjlwiNm5rG3tCtgdsp8JkDr8yt0_Xb6vaRJ2USci2zfm3DZFau2c_nTpiJug4Ae2ZIV84WYxR2IisQtifZ8eZAsxohEZxx43a6bju-e00U0KzK1Y/s72-c/qtOtMQPtslzoar-opDtZj59Hbv9CEj_dI7fuVP9Jtb0.jpg" height="72" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-3215348233435798684</id><published>2012-11-16T20:30:00.001-08:00</published><updated>2012-11-16T20:34:46.341-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Gadgets"/><title type='text'>Coolest Gadgets of 2012</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;margin-bottom: 0in; text-align: justify; text-indent: 0px;&quot;&gt;
&lt;span style=&quot;font-family: inherit; text-indent: 0.5in;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;With
more than half of the year completed, many gadgets have already been
released. People always look for innovative and the latest features
for their gadgets. These days’ people can’t stay even a day
without their mobile phones, laptops, tablets etc. because they are
so multifunctional. Everyone wants to have the latest, updated
gadget, as the technology is continuously evolving so are peoples
expectations.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin-bottom: 0in; text-align: justify; text-indent: 0.5in;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Below
is a list of the coolest and most advanced gadgets that have been
released in the year 2012.&lt;/span&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;&lt;div style=&quot;margin-bottom: 0in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;Mac
 book pro&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div style=&quot;margin-bottom: 0in; text-align: justify;&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoJPsuYd_9PJ6NI8m3glnFjfN5pHUhIJfc7tjtkI_ZBaT6epYQTbDAP8q5yXxQd05gy-SnXVnrAiSPj9Fx3L43mBW9N3xemH4trsV23EtY2-GM1E8vMTJeeU7reDbM0OMrHGufI2W5Arc/s1600/Mac+book+pro.jpeg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoJPsuYd_9PJ6NI8m3glnFjfN5pHUhIJfc7tjtkI_ZBaT6epYQTbDAP8q5yXxQd05gy-SnXVnrAiSPj9Fx3L43mBW9N3xemH4trsV23EtY2-GM1E8vMTJeeU7reDbM0OMrHGufI2W5Arc/s1600/Mac+book+pro.jpeg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;While
everyone was expecting iPhone 5 to be released in starting of the
year  and many rumors have spread about the iPhone5, apple.inc
instead has given a shock to the world by releasing the latest mac
book pro  before iPhone 5 which has a retina display. The screen is
much thinner and stylish with high resolutions of 2880 by 1800. It is
the best laptop to opt for, which has an i7 quad core processor and
16 gigabytes of random access memory (RAM). The price is about $2200
which is quite expensive but it is worth it.&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;ol start=&quot;2&quot;&gt;
&lt;li&gt;&lt;div style=&quot;margin-bottom: 0in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;HTC
 one&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin-bottom: 0in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;HTC
is famous for Smart phones. It has released so many smart phones this
year based on android. Currently the HTC one series is dominating the
mobile world and one X is the best smart phone so far. This series is
best for its authentic sound and amazing camera of 8MP. It has
capacitive2 wide screen of 4.7 inches and tegra3 quad core processor.&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;ol start=&quot;3&quot;&gt;
&lt;li&gt;&lt;div style=&quot;margin-bottom: 0in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;Apple’s
 new iPad&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiU38oaY8xsy_4oe5VkLHCH6HFaUKobc7XDcdv2CeQ0T8d2fHMZ-0wtDhyphenhyphenViGLtnnOBeFAMPz6ZgnPDRpb0SPDnepceBGrCXJTDBeoVCGLjVnLcd61jJTucG5Ah3lZWMzK5yFirS03nU_A/s1600/Ipad.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiU38oaY8xsy_4oe5VkLHCH6HFaUKobc7XDcdv2CeQ0T8d2fHMZ-0wtDhyphenhyphenViGLtnnOBeFAMPz6ZgnPDRpb0SPDnepceBGrCXJTDBeoVCGLjVnLcd61jJTucG5Ah3lZWMzK5yFirS03nU_A/s1600/Ipad.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;margin-bottom: 0in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin-bottom: 0in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;There
 are some features that have improved compared to the previous iPad.
 It is also has a retina display with&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;
 &lt;/b&gt;&lt;/span&gt;resolutions
 of 2048 by 1536 which is the best display up until now. The battery
 is life is extended in this gadget. The front camera is 5mp and is
 an iSight camera which gives you better clarity.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin-bottom: 0in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;&lt;div style=&quot;margin-bottom: 0in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit; font-size: small;&quot;&gt;&lt;b&gt;Samsung
 galaxy s3&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin-bottom: 0in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;This
was the  most Awaited  phone from Samsung  which is released for
competing with the HTC one. It has the best features like s beam and
tectiles reprogrammable technology. You have 2GB of RAM for this
cellular device and QUALCOMM’s dual core processor.&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;ol start=&quot;5&quot;&gt;
&lt;li&gt;&lt;div style=&quot;margin-bottom: 0in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit; font-size: small;&quot;&gt;&lt;b&gt;LG
 LED 3d HD 55 inch TV&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin-bottom: 0in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;It
is the best smart 3-D television with a wide screen of 55inches. It
uses WRGB technology, has very high contrast ratio and gives you good
viewing positions. It has the internet, magic motion, USB option and
many more that you can’t even imagine.&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;div style=&quot;margin-bottom: 0in; margin-left: 0.25in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt; 
There are hundreds of gadgets which have been released this year with
innovative ideas and heaps of creativity. The newly released gadgets
will be expensive because of its new technology and specifications.
If you lack the funds for these electronic devices, you can pay
through installments or you can get it through &lt;span style=&quot;color: navy;&quot;&gt;&lt;span lang=&quot;zxx&quot;&gt;&lt;u&gt;&lt;a href=&quot;http://www.crazy-payday.co.uk/&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;same
day cash loans&lt;/b&gt;&lt;/span&gt;&lt;/a&gt;&lt;/u&gt;&lt;/span&gt;&lt;/span&gt;.
The only thing you have to do is to fill in the application form,
submit the application and wait for approval. Getting a payday loan
and purchasing the device is easier than you think!&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;margin-bottom: 0in; margin-left: 0.25in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; background-position: initial initial; background-repeat: initial initial; line-height: 0.2in; margin-bottom: 0in; margin-left: 0.25in; text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;&lt;span lang=&quot;zxx&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;About
the Author: &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: navy;&quot;&gt;&lt;span lang=&quot;zxx&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;The
guest post was contributed by Diana, Passionate guest blogger from
Manchester, UK. Find out more about her  blogs @&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: navy;&quot;&gt;&lt;span lang=&quot;zxx&quot;&gt;&lt;u&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b&gt;&lt;a href=&quot;http://twitter.com/financeport&quot;&gt;&lt;span style=&quot;font-family: inherit;&quot;&gt;financeport&lt;/span&gt;&lt;/a&gt;
&lt;/b&gt;&lt;/span&gt;&lt;/u&gt;&lt;/span&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/3215348233435798684/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2012/11/coolest-gadgets-of-2012.html#comment-form' title='14 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3215348233435798684'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3215348233435798684'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2012/11/coolest-gadgets-of-2012.html' title='Coolest Gadgets of 2012'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoJPsuYd_9PJ6NI8m3glnFjfN5pHUhIJfc7tjtkI_ZBaT6epYQTbDAP8q5yXxQd05gy-SnXVnrAiSPj9Fx3L43mBW9N3xemH4trsV23EtY2-GM1E8vMTJeeU7reDbM0OMrHGufI2W5Arc/s72-c/Mac+book+pro.jpeg" height="72" width="72"/><thr:total>14</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-3683345615739055361</id><published>2012-10-14T09:31:00.002-07:00</published><updated>2012-10-14T09:32:38.891-07:00</updated><title type='text'>The Benefits of Quality Web Design</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7VryjvCRGOrVdj8tCk4Qut_KFrdVtuHQJvbpVHCArREt-slXDdAJz7D2cW9FT6JXWCKWf_gS4aISOcopDwYetpvBRljKZtLIRq3qmWkJ7ZPhAKMFKxYCYzez4BxqwFs7pp56RHUm2GeA/s1600/benefitsOfQuality.jpeg&quot; imageanchor=&quot;1&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7VryjvCRGOrVdj8tCk4Qut_KFrdVtuHQJvbpVHCArREt-slXDdAJz7D2cW9FT6JXWCKWf_gS4aISOcopDwYetpvBRljKZtLIRq3qmWkJ7ZPhAKMFKxYCYzez4BxqwFs7pp56RHUm2GeA/s1600/benefitsOfQuality.jpeg&quot; width=&quot;288&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
In 1990, there was one web server online, info.cern.ch, which was created by Tim Berners Lee (Inventor of World Wide Web). The number upraised slowly, two years later there were 50 websites online.  Then with the dot com boom the number of websites grew from 23,500 sites in 1995 to 10,000,000 sites in 2000. According to the recent survey, till December 2011 around 366,848,493 websites were online. Now the statistics clearly states the pace at which new web sites are coming online. But the real fact is most of these sites will not see the light of day. Unfortunately most people have not got the first idea of what it takes and how much work is involved in having a successful site. Most of the people think that just having a site on the web will solve their business problems and they will automatically get free traffic. But it’s not the case in World Wide Web. The Search Engine Optimization is a key factor that every website should qualify in order to be in the race of millions of rivals. Therefore, the Quality Web Design is crucial for the web developement. &lt;br /&gt;
&lt;br /&gt;
Web designing is an art of carving the organization capacity by promoting the company image and earn more valuable customers. A technically sound website is a very strong marketing tool itself. Skilled website designers find the most effective way to get visitors across using illustration, photography, color and layout etc. While the advances in technology and content management systems have made basic website design easier for the novice, other technologies such as interactive media, mobile design and search engine optimization overwhelm the novice webmaster thus fails to satisfy the quality of the web site. &lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;
&lt;b&gt;The Benefits of Quality Web Design are:&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;i&gt;Visual appeal&lt;/i&gt;&lt;br /&gt;
Web users form first impressions of web pages in as little as 50 milliseconds, according to Canadian researchers. In the blink of an eye, web surfers make nearly instantaneous judgments of a website&#39;s &quot;visual appeal. To catch the attention of users it is indispensable to have attractive web design.&lt;/div&gt;
&lt;div&gt;
&amp;nbsp; &lt;br /&gt;
&lt;i&gt;Intelligent Website&lt;/i&gt;&lt;br /&gt;
An intelligent web site is one which can trace the behavior of the customers (visitors). The Web developer keep themselves equipped with the latest technical know-how in order to stay ahead of competition from other web design companies. The intelligent web sites helps to build effective business strategy based on the customer’s taste.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;i&gt; SEO Optimization&lt;/i&gt;&lt;br /&gt;
SEO is the key tool for the website owners to get more traffic to the website. Optimization of a website is crucial to get traffic and to maintain the position on the search engines. The main aim of the search engine optimization is to get more traffic from diverse sources and to get repetitive visitors. The website design should consider the facts that favors in SEO optimizations like, effective use of meta tag, placing keywords in division &amp;lt;div&amp;gt; or higher order header &amp;lt;h&amp;gt; tags to enable search engine crawler to trap the content easily. &lt;/div&gt;
&lt;div&gt;
&lt;i&gt;Interactive websites&lt;/i&gt;&lt;br /&gt;
With the advent of web 2.0 and web applications the websites have moved from traditional static pages to the interactive web sites. The good user-experience is not defined by wild mouse clicks alone. A truly amazing interactive website is defined by its ability to engage the user in an immersive experience that delivers satisfaction. The web application establishes an interactive environment on web which makes user to experience the web tools and informations effectively. &lt;br /&gt;
&lt;br /&gt;
To survive in the hard-bitten competition over the internet, it is prenominal to ensure the quality of web design in order to be in picture and to make the real sense of having the web site. Collaborate your ideas into the web designing and develop SEO-friendly websites to bring in wholesome traffic.&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/3683345615739055361/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2012/10/the-benefits-of-quality-web-design.html#comment-form' title='347 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3683345615739055361'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3683345615739055361'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2012/10/the-benefits-of-quality-web-design.html' title='The Benefits of Quality Web Design'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7VryjvCRGOrVdj8tCk4Qut_KFrdVtuHQJvbpVHCArREt-slXDdAJz7D2cW9FT6JXWCKWf_gS4aISOcopDwYetpvBRljKZtLIRq3qmWkJ7ZPhAKMFKxYCYzez4BxqwFs7pp56RHUm2GeA/s72-c/benefitsOfQuality.jpeg" height="72" width="72"/><thr:total>347</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-2817746438228390004</id><published>2012-09-29T10:40:00.000-07:00</published><updated>2012-09-29T10:41:54.147-07:00</updated><title type='text'>A new &#39;Promote&#39; button by Facebook</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibak0UHwISMaOAjv5uZIU0YJSgos445lxq5WBk5D6HYZv-SbiH9GwQ40jlAavAswMjgZwDrtOckqMsjSeN0l43WMmncqBlxdzUJhSL7DLxfGjB1fduevGyb1xN2KPH0NxvlwN8-1fPwVU/s1600/Screenshot.png&quot; imageanchor=&quot;1&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibak0UHwISMaOAjv5uZIU0YJSgos445lxq5WBk5D6HYZv-SbiH9GwQ40jlAavAswMjgZwDrtOckqMsjSeN0l43WMmncqBlxdzUJhSL7DLxfGjB1fduevGyb1xN2KPH0NxvlwN8-1fPwVU/s1600/Screenshot.png&quot; width=&quot;288&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
I found this &#39;Promote&#39; button today when I was posting update on my personal profile. I was&amp;nbsp;astonished when Facebook asked me to promote my post for $0.30. The promote button is not a brand new&amp;nbsp;conception of Facebook, It was there before for the Facebook pages with 400+ likes. I never thought that Facebook would go ask money from its user for promoting their posts.&lt;br /&gt;
&lt;div&gt;
The &#39;Promote&#39; button is an attempt to commercialize the Facebook which might be the result of Facebook&#39;s recent IPO fiasco.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
The &#39;Promote&#39; button will convert your posts into ads with the help of few clicks and a small payment. The posts will appear in your friends&#39; news feeds and the people who have interacted with your post.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/2817746438228390004/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2012/09/a-new-promote-button-by-facebook.html#comment-form' title='49 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/2817746438228390004'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/2817746438228390004'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2012/09/a-new-promote-button-by-facebook.html' title='A new &#39;Promote&#39; button by Facebook'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibak0UHwISMaOAjv5uZIU0YJSgos445lxq5WBk5D6HYZv-SbiH9GwQ40jlAavAswMjgZwDrtOckqMsjSeN0l43WMmncqBlxdzUJhSL7DLxfGjB1fduevGyb1xN2KPH0NxvlwN8-1fPwVU/s72-c/Screenshot.png" height="72" width="72"/><thr:total>49</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-2250315176456415455</id><published>2012-04-18T07:20:00.000-07:00</published><updated>2012-04-18T07:20:30.835-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Gadgets"/><category scheme="http://www.blogger.com/atom/ns#" term="Operating System"/><title type='text'>Upgraded Aakash tablet to be launched next month: Sibal</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQ9qYY-fcpghbTV44dkZlvhJBxz1fYYktooV_2y3bEd4YKe1vQG6C_zHFItW_gkLxELregypog2umOmqgKdkSj8w3pOViJqT_VWB8h9xxMjrvsCOfwUdShC_ueSsq60claI5VZhcbU040/s1600/Aakash.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQ9qYY-fcpghbTV44dkZlvhJBxz1fYYktooV_2y3bEd4YKe1vQG6C_zHFItW_gkLxELregypog2umOmqgKdkSj8w3pOViJqT_VWB8h9xxMjrvsCOfwUdShC_ueSsq60claI5VZhcbU040/s320/Aakash.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;font-size: xx-small;&quot;&gt;(image source:&amp;nbsp;phonearenaindia.com)&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
The cheapest known tablet PC Akash is coming back to the gadget world with enhanced features to attract the masses.&lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;A faster and enhanced version coming up in May 2012 with the ability to manage the large number of customers. “After freezing the technology, we will start manufacturing it. We are calling people from across the world to manufacture it and some people have shown interest,” Mr. Sibal said.&lt;div&gt;&lt;br /&gt;
The older version which has some quality and interface issues are known to be fixed in the new version to cope up with Android 2.3 and apps. The new tablet would have a better 3200m AH battery with a three-hour backup, a 700 MHz Cortex A8 processor and a capacitive touch screen which would get over the earlier issues observed in the tablets, Mr. Sibal had said earlier.&lt;br /&gt;
&lt;br /&gt;
Datawind the maker of Aakash and Quad Electronics, the contract manufacturer of Aakash Tablet have been exchanging the charges against each other on payment issues. Overcoming all these issues the Telecom Minister Kapil Sibal assures the launch of Tablet PC in May 2012. &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/2250315176456415455/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2012/04/upgraded-aakash-tablet-to-be-launched.html#comment-form' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/2250315176456415455'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/2250315176456415455'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2012/04/upgraded-aakash-tablet-to-be-launched.html' title='Upgraded Aakash tablet to be launched next month: Sibal'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQ9qYY-fcpghbTV44dkZlvhJBxz1fYYktooV_2y3bEd4YKe1vQG6C_zHFItW_gkLxELregypog2umOmqgKdkSj8w3pOViJqT_VWB8h9xxMjrvsCOfwUdShC_ueSsq60claI5VZhcbU040/s72-c/Aakash.jpg" height="72" width="72"/><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-3108080274417075751</id><published>2012-01-02T05:31:00.000-08:00</published><updated>2012-01-02T05:31:03.464-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Gadgets"/><title type='text'>Galaxy Nexus registration open in India</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiCMpAHJbkQrVUDBVUwslffBUYuegeeL9pO-aC7Njtpyrr5fSvuBHB0nD_bT3IFLMQ5uutQDKPLA1n9LaX7ogzhkeYEqH3ev2XlR5cDDuMiukzgoccNa4gDwSfEeDNYJpJ2hBWZTLsoe5E/s1600/Nexus_Galaxy.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;205&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiCMpAHJbkQrVUDBVUwslffBUYuegeeL9pO-aC7Njtpyrr5fSvuBHB0nD_bT3IFLMQ5uutQDKPLA1n9LaX7ogzhkeYEqH3ev2XlR5cDDuMiukzgoccNa4gDwSfEeDNYJpJ2hBWZTLsoe5E/s400/Nexus_Galaxy.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;The much awaited gadget of the year 2011, Galaxy Nexus is finally all set to rule the smartphone market in India this month. Many sources over the web had reported the Galaxy Nexus release on November 2011, but it didn&#39;t happen due to market ups and downs.&lt;br /&gt;
India is one of the 18 countries selected by Google to launch its upcoming smart phones Galaxy Nexus in the first phase, which commences in this month. The device is the first ever smartphone featuring the latest Android Ice-cream Sandwich OS . Google has already started &lt;a href=&quot;http://www.google.co.in/nexus/&quot;&gt;registration in India&lt;/a&gt; for Galaxy Nexus. The search engine giant has launched specific web pages for India and 17 other nations where customers can register for further updates about the various features and the availability of Galaxy Nexus.&amp;nbsp;The new pricing is expected to be around 32-35k.&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/3108080274417075751/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2012/01/galaxy-nexus-registration-open-in-india.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3108080274417075751'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3108080274417075751'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2012/01/galaxy-nexus-registration-open-in-india.html' title='Galaxy Nexus registration open in India'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiCMpAHJbkQrVUDBVUwslffBUYuegeeL9pO-aC7Njtpyrr5fSvuBHB0nD_bT3IFLMQ5uutQDKPLA1n9LaX7ogzhkeYEqH3ev2XlR5cDDuMiukzgoccNa4gDwSfEeDNYJpJ2hBWZTLsoe5E/s72-c/Nexus_Galaxy.png" height="72" width="72"/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-3626291959380786310</id><published>2011-12-06T08:06:00.000-08:00</published><updated>2011-12-06T08:17:57.258-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Internet"/><category scheme="http://www.blogger.com/atom/ns#" term="Social Networks"/><title type='text'>Facebook is allowing status messages upto 63,206 characters now!</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;style type=&quot;text/css&quot;&gt;
 &lt;!--
  @page { margin: 2cm }
  P { margin-bottom: 0.21cm }
  A:link { so-language: zxx }
 --&gt;
 
&lt;/style&gt;   &lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8VkJo_kAS5n-pV_ZBasXLkNTwcgqn95iR2Vw4yyDJuMwj9dvrjEydgDgM-YfzGSlQFtqTrevB-8bar_B5UpUT1tZXWZD_8_iXSBKFWpZRYsKkjUib3e6b9HpcAdrA30u6JQUYUoJzq6w/s1600/Screenshot.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8VkJo_kAS5n-pV_ZBasXLkNTwcgqn95iR2Vw4yyDJuMwj9dvrjEydgDgM-YfzGSlQFtqTrevB-8bar_B5UpUT1tZXWZD_8_iXSBKFWpZRYsKkjUib3e6b9HpcAdrA30u6JQUYUoJzq6w/s640/Screenshot.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Arial,Helvetica,sans-serif; margin-top: 0.42cm; page-break-after: avoid;&quot;&gt;&lt;span style=&quot;font-family: Arial,Helvetica,sans-serif; font-size: small;&quot;&gt;&lt;i&gt;&lt;span style=&quot;font-style: normal;&quot;&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt; &lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-family: inherit;&quot;&gt;The social network giant Facebook &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;color: black; font-family: inherit;&quot;&gt;With roughly 800 million users  has raised its character limits on status updates to a rather precise 63,206 characters.&lt;/span&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;On 1&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;sup&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;st&lt;/span&gt;&lt;/span&gt;&lt;/sup&gt;&lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt; December, &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;a href=&quot;http://www.facebook.com/vadim&quot;&gt;&lt;u&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;Vadim Lavrusik&lt;/span&gt;&lt;/u&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;, Facebook Journalist Program Manager has &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;a href=&quot;https://www.facebook.com/photo.php?fbid=10101347666163140&amp;amp;set=a.10100111870342870.2825615.13930675&amp;amp;type=1&quot;&gt;&lt;u&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;announced&lt;/span&gt;&lt;/u&gt;&lt;/a&gt;&lt;/span&gt; that Facebook users can now post Facebook status updates that are more than 60,000 characters in length.&lt;/div&gt;&lt;div style=&quot;font-family: inherit;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt; Lavrusik wrote, “For a reference, a novel has roughly 500,000 characters. This could be shared in 9 posts,”  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: black; font-size: small;&quot;&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: inherit;&quot;&gt;&lt;span style=&quot;color: black; font-size: small;&quot;&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;Facebook has been constantly increasing the character limits for status updates. In the beginning, the social networking site allowed 160 characters and in 2009, this character limit was extended to 420 spaces. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;500 characters in July 2011, and 5,000 in September 2011.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;While People can literally blog on Google Plus without worrying about the length of the post content! As it limits its posts to 100,000 characters. At the other end is Twitter, where the maximum limit is 140.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: inherit; font-weight: normal; text-decoration: none;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;Is it a good idea to post 60000 characters long updates and annoy your friends? &lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/3626291959380786310/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2011/12/facebook-allowing-status-messages-upto.html#comment-form' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3626291959380786310'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3626291959380786310'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2011/12/facebook-allowing-status-messages-upto.html' title='Facebook is allowing status messages upto 63,206 characters now!'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8VkJo_kAS5n-pV_ZBasXLkNTwcgqn95iR2Vw4yyDJuMwj9dvrjEydgDgM-YfzGSlQFtqTrevB-8bar_B5UpUT1tZXWZD_8_iXSBKFWpZRYsKkjUib3e6b9HpcAdrA30u6JQUYUoJzq6w/s72-c/Screenshot.png" height="72" width="72"/><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-5017183155725238695</id><published>2011-10-17T03:50:00.001-07:00</published><updated>2011-10-17T05:59:27.524-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Gadgets"/><title type='text'>Get the best out of cool gaming and computer gadgets</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: 14pt; line-height: 115%;&quot;&gt;LG Optimus 3D receives 3D game converter&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: 14pt; line-height: 115%;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBN3iToN-orRghWmMHk4LrewKrIOTd0kxrvLD7y98CNvtMF69qM2JAn2ZhvOXFj56hP3uknMvZ7-QPjOH1uySJWJ8szCkCMVeaOA0wmJYJimFqlae9rh2Q4v8HTiTmXSCRDeqMGdHwfCQ/s1600/optimus-3d-back-front.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;196&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBN3iToN-orRghWmMHk4LrewKrIOTd0kxrvLD7y98CNvtMF69qM2JAn2ZhvOXFj56hP3uknMvZ7-QPjOH1uySJWJ8szCkCMVeaOA0wmJYJimFqlae9rh2Q4v8HTiTmXSCRDeqMGdHwfCQ/s320/optimus-3d-back-front.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;If you are addicted to watching movies in 3D versions, then you know better the key difference between the ordinary and a 3D version. 3D is quite IN these days and you cannot live without it after having a single experience. This innovation has jolt down the entertainment industry and now, it is affecting video games industry too.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;Imagine how it feels to play your favorite video game in a 3D version. This route is quite impressive; as now, the newest version of 3D gaming has been arrived. “Stereoscopic 3D” is the next gen of 3D games. LG Optimus 3D is proud to announce this gaming mode in a trendy gadget. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;This is a wonderful 3D game convertor and if you have some 2D games in your mobile and you want to turn them into some dashing 3D games, then it will help you. It works very well and is made for Smartphone users to let them covert “GL-based 2D games” into a smashing 3D version. Isn’t it excited enough for you to enjoy the same old game in a new version? After all, 3D is the ultimate replacement of old-fashioned 2D games. Similarly, if you got tired of playing in 3D version, then turn back into 2D as its possible here. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: 14pt; line-height: 115%;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: 14pt; line-height: 115%;&quot;&gt;The Ultimate Gaming Chair&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: 14pt; line-height: 115%;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_NNoAVD6ICFKuKmdI2_eQ2n0-b3zFKAKgQ37T575UA_XeLeevx7OEtjMvMh0OuSUhwfz-dlXMBKZVxAIs-2xdsD-bzibiILh0ttLME6X80lazGKxqPx4IijjF1lm6h8PqIx2QPkAw6K8/s1600/ultimate-gaming-chair.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_NNoAVD6ICFKuKmdI2_eQ2n0-b3zFKAKgQ37T575UA_XeLeevx7OEtjMvMh0OuSUhwfz-dlXMBKZVxAIs-2xdsD-bzibiILh0ttLME6X80lazGKxqPx4IijjF1lm6h8PqIx2QPkAw6K8/s1600/ultimate-gaming-chair.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;For ultimate gaming experiences, Ultimate Gaming Chair features outstanding vibration with its extraordinary 12 motors. These motors are specially designed for better synchronization with the game. If the character jumps, you jump and if it falls, then the chair moves in the same motion. This whole gaming experience can’t be completed without superb stereo sounds. If you want to add sound, then buy some good headphones and enjoy a lot. Even this chair has the capacity to adjust 3D stereo speakers.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;Remember, your whole thrilling experience will be useless, if you are not comfortable on the chair. Comfort is the basic element of this chair, and you can sit in a relaxing mood while playing it. It is made of soft leather and can be adjusted according to your height. Just imagine if comfort and thrill can be combined together, what else you can expect? &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;Keep it in mind that only PS2, Xbox, Mac, PS1, Gamecube, PC, and Xbox Live are compatible with this chair. So, don’t be confused if other doesn’t work with the Ultimate Gaming Chair. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: 14pt; line-height: 115%;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: 14pt; line-height: 115%;&quot;&gt;WorkEZ Professional Adjustable Stand &lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: 14pt; line-height: 115%;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmkgWqSNE9Pz2uFEX1cqrvZkiuZJsGzCAXJNPRycpadfNbV0jIdknhWo2E1dfrvzQzxG8NVILy8igeyB1_4Zxogu1ofNoawvXwMnnbwOHb71hIJfRPmuyWx305CG0cqHib69rYyzyRQaE/s1600/1341a51dpro-290x300.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmkgWqSNE9Pz2uFEX1cqrvZkiuZJsGzCAXJNPRycpadfNbV0jIdknhWo2E1dfrvzQzxG8NVILy8igeyB1_4Zxogu1ofNoawvXwMnnbwOHb71hIJfRPmuyWx305CG0cqHib69rYyzyRQaE/s1600/1341a51dpro-290x300.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;Uncaged Ergonomics understand very well a common need of the computer user. Keep yourself comfortable while doing official work on your computer is nearly difficult. Mostly, a lot of people suffer back and spinal pain issues due to unrest while constantly working on a laptop.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;No matter wherever you sit and work, if you are not doing it comfortably, then you may suffer with the body pain. WorkEZ Professional is an easy-to-use, adjustable stand. It is made for those guys who use to work on laptop while sitting or lying on sofa, bed, floor or some chair. Laptops are not much heavier, but a constant weight on your belly or lap will make you uncomfortable. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;This stand is made of pure aluminum and is quite strong to hold the weight of good-sized laptop. It can bear the load up to 13 pounds, which is a big plus. It means you can put some books on this stand as well. It’s easy to handle, as all you have to do is to push the buttons and adjust it accordingly. It’s up to you at which angle you want it to be. So, enjoy carefree and a comfortable laptop session while you are sitting or laying on your bed, floor or a sofa. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;Say goodbye to lower back pain and enjoy the comfort of WorkEZ Professional Adjustable Stand. It can carry strong weight, but it’s not difficult to carry it. Its total weight is nearly 3 pounds. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: 16pt; line-height: 115%;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;font-size: 16pt; line-height: 115%;&quot;&gt;AOC portable USB monitor&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjbO8ZdH_LrIIS89SMvTRqDUafBajpC3oBRRRaqeYkypVf8aRGjNOU99iRWoM_P8fkF2q2eIMH2AykPBb5P8JfaDvgE0TyNApJD4w3qKX3IAy58Ppfv0y0vkxBaqbkRnHa7TZbgH-SMV4/s1600/AOC-portable-USB-monitor-587x440.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;239&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhjbO8ZdH_LrIIS89SMvTRqDUafBajpC3oBRRRaqeYkypVf8aRGjNOU99iRWoM_P8fkF2q2eIMH2AykPBb5P8JfaDvgE0TyNApJD4w3qKX3IAy58Ppfv0y0vkxBaqbkRnHa7TZbgH-SMV4/s320/AOC-portable-USB-monitor-587x440.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;AOC portable monitor has 16” screen, light weight, and a built USP port, which lets the monitor suck power and the signals from the same computer. All you need to do is to connect a little USB cable with the monitor in order to connect it with your PC.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;It’s a great experience to enjoy dual monitors at the same time. For those people who are stuck into some presentation work, it can work very well, as its 16” screen can serve the purpose, if you have a limited number of people. By doing this, you can save money on expensive multimedia and presentation screens. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;It has a standard built-in stand, which can help you keep it still while you do your work. This stand can work efficiently, if you want to switch between landscape or portrait modes. Hence, try is a must, if you need such a useful gadget for small scale presentations.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;This article is written by Kevin Moor, who also writes for tweakwindows7.net, a site emphasizing on &lt;a href=&quot;http://www.antivirussoftwarealert.us/&quot;&gt;antivirus software&lt;/a&gt;.&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/5017183155725238695/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2011/10/get-best-out-of-cool-gaming-and.html#comment-form' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/5017183155725238695'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/5017183155725238695'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2011/10/get-best-out-of-cool-gaming-and.html' title='Get the best out of cool gaming and computer gadgets'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBN3iToN-orRghWmMHk4LrewKrIOTd0kxrvLD7y98CNvtMF69qM2JAn2ZhvOXFj56hP3uknMvZ7-QPjOH1uySJWJ8szCkCMVeaOA0wmJYJimFqlae9rh2Q4v8HTiTmXSCRDeqMGdHwfCQ/s72-c/optimus-3d-back-front.jpg" height="72" width="72"/><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-2092095236064510066</id><published>2011-10-13T08:05:00.001-07:00</published><updated>2011-10-13T08:16:20.295-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Gadgets"/><title type='text'>A guide to cool and exciting gadgets</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;Jabra Cruiser2 Bluetooth in-car speakerphone&lt;/b&gt;&lt;br /&gt;
&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirx3rGH_j-CX90BANVnLHJWYXqkL9oD3Pf2TeobxTMDummjjsxL5y8MP_fNmGCcshrzwBAuDNmfjTBjmdaFQa1hF6SEC5uwdpaGo5Nwt_Etf_1wJDLCUYXLsevnpIKZNvS16gMJbc46V4/s1600/Jabra-Introduces-CRUISER2-the-In-car-Bluetooth-Speakerphone.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;241&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirx3rGH_j-CX90BANVnLHJWYXqkL9oD3Pf2TeobxTMDummjjsxL5y8MP_fNmGCcshrzwBAuDNmfjTBjmdaFQa1hF6SEC5uwdpaGo5Nwt_Etf_1wJDLCUYXLsevnpIKZNvS16gMJbc46V4/s400/Jabra-Introduces-CRUISER2-the-In-car-Bluetooth-Speakerphone.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;Jabra has recently launched its outstanding car gadget, “&lt;i&gt;Jabra Cruiser2 Bluetooth in-car speakerphone.”&lt;/i&gt; Cruiser includes one USB cable, and a car adopter. Jabra Cruiser can easily connect two Bluetooth devices at the same time. It’s a dual microphone for the outclass quality of sound. Its sound quality is awesome and can be compared with any other Bluetooth microphone gadget.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;Cruiser 2 has an FM transmitter for wireless synchronization with the car stereo system. It’s an amazing gadget, as you can handle it with greater ease while keeping your eyes on the road. Its call quality is impressive and can support with its 14 hours talk time and 20 days of standby battery. This portable speakerphone is bigger than the iPhone and useful enough to keep in your car. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;The gadget has a firm grip on any surface, but can be pulled out easily with just a single hand. It’s a perfect make for those who always want to talk while driving. Jabra Cruiser 2 is the easiest way to talk while you are moving driving wheels. Enjoy the hands-free experience with Jabra Cruiser 2 Bluetooth car speakerphone. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;Nikon Coolpix AW100&lt;/b&gt;&lt;br /&gt;
&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhkTgt7AfhyphenhypheniqHM75miKbOe7NftU10P4zEnOTHRXoQ7fOE0cjMAndSC7M7-3qcOqkUy0JuTMW2A8y3yVBPcyE7neHWBqdSFeELfCVew3bTS_bhuoElimBHYotuWJfj4Q18PswxFP9st-W8/s1600/nikon-coolpix-aw100-camera.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;303&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhkTgt7AfhyphenhypheniqHM75miKbOe7NftU10P4zEnOTHRXoQ7fOE0cjMAndSC7M7-3qcOqkUy0JuTMW2A8y3yVBPcyE7neHWBqdSFeELfCVew3bTS_bhuoElimBHYotuWJfj4Q18PswxFP9st-W8/s400/nikon-coolpix-aw100-camera.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;Live your moments with Nikon Coolpix, as it has 5x Zoom-NIKKOR ED glass lens, 16-MP CMOS sensor for “low light” recording, action photos, and a GPS electronic campus. It’s water proof, cold proof, shock proof and what not? Overall it’s a tough camera that can give you the best of your desired results, even if, you’re in some strange environment.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;You can take crisp images underwater with its water proof feature. By shaking the camera, you can also recall a scene mode without going into settings. Nikon Coolpix is available in the market with its 83MB of internal memory. It feels great to remember where you have taken the picture, as with its GPS technology, you can display an internal map of the site where your pictures have been taken. This way, you can also retrace your route. Exciting! Isn’t it? &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;It has an interesting feature, “Action Control Operation System,” which allows you to assign some movement to control the camera function. Suppose, moving your hand can switch to its scene mode or any other movement, which can give some other direction. &lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b&gt;Harmony Link universal remote&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhB0WA3wBvLgw1owyBL7RwfDwPqGvHINznrDkHCR8xu80NAMOkQjx8VwLS9f1CdhTIhMXRT8Rx-W1ItoS-Th9KV0bXClZCGCIFuPycWUgUBNmopmXMqREVP37qe7XsljoXmQgoy4qr5YPg/s1600/logitech-harmony-link-9.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;222&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhB0WA3wBvLgw1owyBL7RwfDwPqGvHINznrDkHCR8xu80NAMOkQjx8VwLS9f1CdhTIhMXRT8Rx-W1ItoS-Th9KV0bXClZCGCIFuPycWUgUBNmopmXMqREVP37qe7XsljoXmQgoy4qr5YPg/s400/logitech-harmony-link-9.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;Now, you can control your television, home theater, DVR, blue-ray player, DVD, and everything you want with one single remote. You can do this easily by using your iPad, iPod or iPhone to control these all functions while sitting relaxed on your sofa.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;This remote can connect you with your media equipment through Wi-Fi and you can control them all by your iPhone or iPod’s operating system. The companion app for using Harmony Remote can be downloaded freely from the App Store. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;Now, you don’t have to worry about pressing a wrong button of your pocket-sized remote control. It is now possible to give directions through the wide screen of your iPad. You can use these regular remote control features through its personalized features. You can select schedules of your favorite programs, movies, and sit-coms via this device. Even, it can help you show the images, synopsis and reviews of the programs. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;You just need to plug in a small wireless device next to your TV, then connect to it wirelessly and use your finger to change a channel. It can help you navigate easily on available TV channels. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;Samsung Galaxy Tab 7&lt;/b&gt;&lt;br /&gt;
&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1NlErUpWK2Q0RXxYZ0j0toHvrhwbN1MIeY6UgqjB_kQf9Y9SCSlgXlo94_Qh-wHfhncMc9PISC9RCa50WTtf9Vzx2vZyDr1i1ST3cT2cThLMy-iOPQKt8r3B0yuFPxv914F5KsXWbNKM/s1600/Samsung-Galaxy-Tab-7-inch-Android-2.2-OS-Based-Tablet-540x383.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;282&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1NlErUpWK2Q0RXxYZ0j0toHvrhwbN1MIeY6UgqjB_kQf9Y9SCSlgXlo94_Qh-wHfhncMc9PISC9RCa50WTtf9Vzx2vZyDr1i1ST3cT2cThLMy-iOPQKt8r3B0yuFPxv914F5KsXWbNKM/s400/Samsung-Galaxy-Tab-7-inch-Android-2.2-OS-Based-Tablet-540x383.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;Samsung has done it again, as it becomes pioneer in launching the 7-inch tablet. Galaxy Tab 7 is made for an easy user experience with Google Android Honeycomb having portable rich media and touch screen. You can use it easily for voice or video call without giving it a head. There is no need to use headphones for such calls. We can say it the future of touch screen mobiles, as Samsung has given its best shot while delivering the key promising features.&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;Samsung Galaxy Tab has a dual processor of 1.2GHZ and is paired with a RAM of 1GB. Like these two basic features, it has accelerometer, gyro, Bluetooth, WI-Fi direct, USB connectivity, digital compass and ambient light sensors. It’s your turn to enjoy social networking on its wide screen and vigilant features now. Furthermore, it has a 4,000 MAH Li-ion battery with a rear 3MP and a front 2MP camera for better results. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;It offers 16GB or 32GB internal storage. Now, it’s up to you to select the mode you want to, as the set is available in two different models. It is a model for each of your need and can serve you like a pocket PC. Really, Samsung offered unique specs and features, which people were expecting from this gray color tablet. Like its big-sized screen, the price is bigger as well, but quality cannot be compromised over price. So, are you willing to go for it?&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;This article is written by Kevin Moor, who also writes for speedmycomputer.net, a site emphasizing on how to &lt;a href=&quot;http://www.speedmycomputer.net/&quot;&gt;speed up computer&lt;/a&gt;.&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/2092095236064510066/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2011/10/guide-to-cool-and-exciting-gadgets.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/2092095236064510066'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/2092095236064510066'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2011/10/guide-to-cool-and-exciting-gadgets.html' title='A guide to cool and exciting gadgets'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirx3rGH_j-CX90BANVnLHJWYXqkL9oD3Pf2TeobxTMDummjjsxL5y8MP_fNmGCcshrzwBAuDNmfjTBjmdaFQa1hF6SEC5uwdpaGo5Nwt_Etf_1wJDLCUYXLsevnpIKZNvS16gMJbc46V4/s72-c/Jabra-Introduces-CRUISER2-the-In-car-Bluetooth-Speakerphone.jpg" height="72" width="72"/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-3740524758957722754</id><published>2011-09-06T11:41:00.000-07:00</published><updated>2011-10-11T18:04:22.456-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Other"/><category scheme="http://www.blogger.com/atom/ns#" term="Tech News"/><title type='text'>GTA 5 to be released in 2012</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://apsotech.blogspot.com/2011/09/gta-5-to-be-released-in-2012.html&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjZ9V4EZYqxEl-8a32qUCmFpMpKRMWJgbzyWBJqH_gyNqx8vkvkNsxumv0hsEuuiyWTxxbk8JUxOmYcPdNsuh7zNI8JL6EdE1-2fR4YoMww-CdDJbx7P5x5Qa53z7icPtN3_24Y7EYig_s/s1600/gta-5-wallpaper-1280.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;Grand Theft Auto, one of my favorite games best known for its riots. The fans are raring to hear the news when the new edition of the GTA will be released. Here you go, according to the gamers and industry experts it &lt;b&gt;won’t be released before March 2012&lt;/b&gt;. &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp;After the release of Take Two’s financial results, Doug Creutz made the forecast in which the next GTA was &lt;b&gt;not&lt;/b&gt; mentioned. It seems more like pushing the release to next financial year. Meanwhile, the Industry watchers point out that it has been four years since GTA 4 was launched, making it the perfect time to launch the new Grand Theft Auto edition. &amp;nbsp;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;Few sources have concluded after calculating the available information that, the new edition &lt;b&gt;would release in fourth quarter of 2012&lt;/b&gt;. However, the gamers and fans are expecting the release ASAP.&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/3740524758957722754/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2011/09/gta-5-to-be-released-in-2012.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3740524758957722754'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3740524758957722754'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2011/09/gta-5-to-be-released-in-2012.html' title='GTA 5 to be released in 2012'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjZ9V4EZYqxEl-8a32qUCmFpMpKRMWJgbzyWBJqH_gyNqx8vkvkNsxumv0hsEuuiyWTxxbk8JUxOmYcPdNsuh7zNI8JL6EdE1-2fR4YoMww-CdDJbx7P5x5Qa53z7icPtN3_24Y7EYig_s/s72-c/gta-5-wallpaper-1280.png" height="72" width="72"/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-4573024780367870030</id><published>2011-08-22T01:47:00.000-07:00</published><updated>2011-09-05T10:14:21.981-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Internet"/><category scheme="http://www.blogger.com/atom/ns#" term="Other"/><title type='text'>Cloud TV now in India – Thanks to Star TV</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;br /&gt;
&lt;h1 style=&quot;line-height: 24.3pt; margin-bottom: .0001pt; margin: 0in;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: inherit; font-size: small;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h1&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJEWmSnMDY-Rtz3PD2lLj_Pr41cIkNC6oD7x5CLDqqaz0QRYp60eWocZOpkhMkWdZPxLVJrO905oSKxvdix3hGHmB1K4gcFOxcTFlMRMun9BouFSK-7TKSSg9vIzyu3kmsH9RdwHOhnz0/s1600/CloudTV.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJEWmSnMDY-Rtz3PD2lLj_Pr41cIkNC6oD7x5CLDqqaz0QRYp60eWocZOpkhMkWdZPxLVJrO905oSKxvdix3hGHmB1K4gcFOxcTFlMRMun9BouFSK-7TKSSg9vIzyu3kmsH9RdwHOhnz0/s1600/CloudTV.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;Star TV has decided to upgrade Television entertainment experience in India by uploading its contents on the cloud. As all the leading companies are doing what they can to move its data on cloud, the Star India is not behind the race.  Star India is all set to offer Cloud TV to its Indian viewers, being the first player in India to shift all its operations to the cloud.&lt;br /&gt;
&lt;br /&gt;
As Star is going to move itself on cloud, it has decided to shoot all its contents in HD and upload it on cloud after processing.  This will fairly allow to stream its programmes on devices with an Internet connection and an Internet browser.  Not to mention explicitly that these contents will be in HD.  The contents such as movies, serials, shows will remain the same while the new entertainments like game, social networks are expected to enhance user’s digital experience.&lt;br /&gt;
&lt;br /&gt;
As the new technologies always overrode the old ones, the cloud TV is expected to downtrend current TV technologies like cable TV or satellite in course of its time.&lt;br /&gt;
Star India owns popular channels like : Star Plus, Star One, Star World, Star News, Star Movies, Star Gold, Channel V and Star Pravah. And Star India joins the ranks of Apple, Google, Hulu, Netflix and Amazon to become the content provider on the cloud.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/4573024780367870030/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2011/08/cloud-tv-now-in-india-thanks-to-star-tv.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/4573024780367870030'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/4573024780367870030'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2011/08/cloud-tv-now-in-india-thanks-to-star-tv.html' title='Cloud TV now in India – Thanks to Star TV'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJEWmSnMDY-Rtz3PD2lLj_Pr41cIkNC6oD7x5CLDqqaz0QRYp60eWocZOpkhMkWdZPxLVJrO905oSKxvdix3hGHmB1K4gcFOxcTFlMRMun9BouFSK-7TKSSg9vIzyu3kmsH9RdwHOhnz0/s72-c/CloudTV.jpg" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-8975004931518288214</id><published>2011-08-20T07:57:00.000-07:00</published><updated>2011-08-21T22:48:50.962-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Gadgets"/><title type='text'>LACS launches Tablet PC based on Google Android for just $99</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 18px;&quot;&gt;&lt;img src=&quot;file:///C:/DOCUME~1/Admin/LOCALS~1/Temp/msohtmlclip1/01/clip_image002.jpg&quot; v:shapes=&quot;Picture_x0020_1&quot; /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgox5qb8xZ8qtNn_qaGD11BKc1AzCnSM6DBLifov7Qt78EMe2ehCI_MhBVGUi7qSupO30Qv38Skt69osAsOzZGKTcQckKbgPxD0N3F27-M_k6YP8iEaREEECYhvYaXMm89lvmjvmVz4QCo/s1600/Magnum-Red.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: inherit;&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: inherit;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSH0vlipzEwAlMPw-_E5Peypud-O2-YzqOtx2ETFjDkbxGO_dN0yegqtwz7S3JLQDZVrhlwB5w9XOSzFJd2mhQRsNIq6O3K7hUK31jIz3_zfdjOu_f9mpRsXqgub1m9MsGUQB68f4R2HY/s1600/Magnum-Red.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSH0vlipzEwAlMPw-_E5Peypud-O2-YzqOtx2ETFjDkbxGO_dN0yegqtwz7S3JLQDZVrhlwB5w9XOSzFJd2mhQRsNIq6O3K7hUK31jIz3_zfdjOu_f9mpRsXqgub1m9MsGUQB68f4R2HY/s1600/Magnum-Red.png&quot; /&gt;&lt;/a&gt; &lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: inherit; line-height: 115%;&quot;&gt;Bangalore-based Lakshmi Access Communications Systems Pvt. Ltd. (LACS) has launched four tablet PC models powered by Google Android Platform at the price starting from US $99. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: inherit;&quot;&gt;&lt;span style=&quot;line-height: 115%;&quot;&gt;LACS announced 4 Tablet PC models called Pepper, Tamarind, Mirchi and Paprika under its Magnum Tablet PC series. These Tablets are available in multiple display sizes &lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial;&quot;&gt;varying from 4.3 inches to 10.9 inches&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-converted-space&quot;&gt;&lt;span style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial;&quot;&gt;, and the price ranging from &lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial;&quot;&gt;$99 to $799. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; line-height: 115%;&quot;&gt;The company also offering an upgrade warranty to their customers, which means that they would be able to upgrade to newer models by returning the older unit and paying the difference price&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; line-height: 115%;&quot;&gt;. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: inherit;&quot;&gt;&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; line-height: 115%;&quot;&gt;Magnum is based on Android 2.3, which are 3G dongle compatible with Wi-Fi, MP3 player, eBook, Office documents and Gaming. The company expects Indians to buy tablets instead of laptop and desktop PCs to access internet, giving the new device to users that stands between cell phones and PCs to serve internet needs. &lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; line-height: 115%;&quot;&gt;&quot;&lt;/span&gt;&lt;/span&gt;&lt;em&gt;&lt;span style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-color: windowtext; border-bottom-style: none; border-bottom-width: 1pt; border-left-color: windowtext; border-left-style: none; border-left-width: 1pt; border-right-color: windowtext; border-right-style: none; border-right-width: 1pt; border-top-color: windowtext; border-top-style: none; border-top-width: 1pt; line-height: 115%; padding-bottom: 0in; padding-left: 0in; padding-right: 0in; padding-top: 0in;&quot;&gt;We have made it affordable, we have ensured it fits the pocket&lt;/span&gt;&lt;/em&gt;&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; line-height: 115%;&quot;&gt;,&quot; said Mahendraa Kumar Jain, the company&#39;s Managing Director. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: inherit;&quot;&gt;&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; line-height: 115%;&quot;&gt;The company aims to open their outlets around the country to sell these devices. &lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;apple-style-span&quot;&gt;&lt;span style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; line-height: 115%;&quot;&gt;“We will open exclusive showrooms, Experience Zones and we are planning out to reach out to 15 cities in next one month,” he said.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;line-height: 115%;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: inherit;&quot;&gt;The tablets are expected to be available on showrooms from September while online bookings will open within 10 days.&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Bookman Old Style&#39;, serif; font-size: 12pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/8975004931518288214/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2011/08/lacs-launches-tablet-pc-based-on-google.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/8975004931518288214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/8975004931518288214'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2011/08/lacs-launches-tablet-pc-based-on-google.html' title='LACS launches Tablet PC based on Google Android for just $99'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSH0vlipzEwAlMPw-_E5Peypud-O2-YzqOtx2ETFjDkbxGO_dN0yegqtwz7S3JLQDZVrhlwB5w9XOSzFJd2mhQRsNIq6O3K7hUK31jIz3_zfdjOu_f9mpRsXqgub1m9MsGUQB68f4R2HY/s72-c/Magnum-Red.png" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-2024467465752887231</id><published>2011-08-18T12:33:00.000-07:00</published><updated>2011-08-19T19:57:58.230-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Internet"/><title type='text'>Anna Hazare and the social networks</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDsZTs5Su8kRKZtJcuxa6q99GHJtm7x4iuO6c7r9Bvsi99jQFod6i0ZELTt2I4YF0sat9FunQWp-1Bpp0oI37s-eDj4CzBlXlSwui9nEoBOZg5XlhIgVgAxfBTd2suGW9bjYluTdCR7qM/s1600/download.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDsZTs5Su8kRKZtJcuxa6q99GHJtm7x4iuO6c7r9Bvsi99jQFod6i0ZELTt2I4YF0sat9FunQWp-1Bpp0oI37s-eDj4CzBlXlSwui9nEoBOZg5XlhIgVgAxfBTd2suGW9bjYluTdCR7qM/s1600/download.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Anna Hazare the social activist, is the superpower of India&#39;s fight against corruption. He has challenged the government at the highest level for the implementation of the Jan Lokpal Bill, the anti-corruption bill drafted by his team of reformists. The common man and well-known personalities likewise, are supporting him in the hundreds swelling to the thousands and now to the millions. And of course every sincere citizen of India will support Anna on their own ways.&lt;br /&gt;
&lt;br /&gt;
The social media is playing big role in motivating young people and social networking addicts towards the fight against corruption. Practically speaking, More than 150 Facebook pages related to &#39;Anna Hazare&#39; and &#39;India Against Corruption&#39; have emerged in the last few months. And amazingly majority of these pages are not owned by any of the Anna Hazare&#39;s official team members.&lt;br /&gt;
&lt;br /&gt;
The official &#39;India Against Corruption&#39; page (&lt;a href=&quot;http://facebook.com/IndiACor&quot;&gt;facebook.com/IndiACor&lt;/a&gt;) has more than 360000 fans and its ticking every now and then.&lt;br /&gt;
&lt;br /&gt;
Analysis of the official fan page has below stats.&lt;br /&gt;
India Against Corruption page analytics&lt;br /&gt;
&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;Page Name &amp;nbsp; →&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;India Against Corruption&lt;br /&gt;
&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;URL of Page →&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;India Against Corruption&lt;br /&gt;
&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;Number of fans →&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;363,140&lt;br /&gt;
&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;Today&#39;s fans →&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;21,238&lt;br /&gt;
&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;Today&#39;s interactions →&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;9,838&lt;br /&gt;
&amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;Today&#39;s unique interactions →&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;8,453&lt;br /&gt;
( Source: &lt;a href=&quot;http://buzzref.com/&quot;&gt;buzzref.com&lt;/a&gt; on 18-08-2011)&lt;br /&gt;
&lt;br /&gt;
The non official pages are not behind in numbers. For instance, one of the page titled, &#39;Join Anna Hazare&#39;s Fast To Bring the Jan Lokpal Bill&#39; (&lt;a href=&quot;http://facebook.com/joinanna&quot;&gt;Facebook.com/joinanna&lt;/a&gt;), created by a Facebook user, is followed/liked by more than 44,000 users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The similar momentum can be seen on Twitter too. Thousands of tweets have mentioned Anna Hazare and the fight against corruption. The hashtag #isupportannahazare &amp;nbsp;is mentioned in over 15,000 tweets (As per &lt;a href=&quot;http://topsy.com/&quot;&gt;topsy.com&lt;/a&gt; on &amp;nbsp;18-08-2011).&lt;br /&gt;
&lt;br /&gt;
The influential power of official Twitter account/handle of the movement (&lt;a href=&quot;http://twitter.com/Janlokpal&quot;&gt;Twitter.com/Janlokpal&lt;/a&gt;) has notably jumped by six points in the past two days. The Klout score of @janlokpal went up from 68 on August 15 to 75.6 on August 18. For the uninitiated, Klout.com determines the influential power of a Twitter handle.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;The numbers keeps ticking......&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/2024467465752887231/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2011/08/anna-hazare-and-social-networks.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/2024467465752887231'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/2024467465752887231'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2011/08/anna-hazare-and-social-networks.html' title='Anna Hazare and the social networks'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDsZTs5Su8kRKZtJcuxa6q99GHJtm7x4iuO6c7r9Bvsi99jQFod6i0ZELTt2I4YF0sat9FunQWp-1Bpp0oI37s-eDj4CzBlXlSwui9nEoBOZg5XlhIgVgAxfBTd2suGW9bjYluTdCR7qM/s72-c/download.jpg" height="72" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-3184537608148628119</id><published>2011-06-20T08:51:00.005-07:00</published><updated>2011-08-17T19:20:25.938-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Internet"/><title type='text'>Generic top-level domains - now its &quot;www.abc.anything&quot;</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0htzkSWTWBEoUzXeXJtiI2b47ijjVj53dj_rZKYk3ZaTDGcaON-PNg_ywqbcG3kMBk-Kgk2yqJOh6yxX-JO-3IbEne-PXedHzyW99ZPBl7Z6zbCUsNIMs5yr1J3V4tZmS4If0nlW8y2I/s1600/icann_digits_D_20110620084611.jpg&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; id=&quot;BLOGGER_PHOTO_ID_5620884336191166322&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0htzkSWTWBEoUzXeXJtiI2b47ijjVj53dj_rZKYk3ZaTDGcaON-PNg_ywqbcG3kMBk-Kgk2yqJOh6yxX-JO-3IbEne-PXedHzyW99ZPBl7Z6zbCUsNIMs5yr1J3V4tZmS4If0nlW8y2I/s400/icann_digits_D_20110620084611.jpg&quot; style=&quot;cursor: hand; cursor: pointer; display: block; height: 174px; margin: 0px auto 10px; text-align: center; width: 262px;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 10px;&quot;&gt;&lt;b&gt;&lt;u&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;Rod Beckstrom, President and Chief Executive Officer of the Internet Corporation for Assigned Names and Numbers (ICANN)&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Are you one of those people who are desperate to have their domain name with .com/.net/.org/.biz suffix  and pressed down by someone who has already registered the same?  Do not worry now. The ICANN (Internet Corporation for Assigned Names and Numbers) has approved to bring the remarkable change to the Internet&#39;s Domain Name System, which will allow new &quot;dot.anything&quot; web variations ranging from .movies to .clips and .computers to .calculators - at a price of $185,000.&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;ICANN, the international organization that issues domain names has took this step to witness the upcoming rush in domain name registration process. The new system is called generic top-level domains (gTLDs). This move by ICANN increases the number of domains drastically from 22 ( current available suffixes) to a big number.  The new system would allow companies and organizations to apply for their own suffixes, which could be anything from a brand like .coke to something more broad like .cars. Or even one can think about the name of the city too. Names will also be allowed in native scripts such as Hindi or Chinese.&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Rod Beckstrom, The President and Chief Executive Officer of ICANN said, &quot;ICANN has opened the Internet&#39;s naming system to unleash the global human imagination. Today&#39;s decision respects the rights of groups to create new Top Level Domains in any language or script&quot;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;The gTLDs may drag companies in confusion to choose the best possible choice. The new system would encourage companies and businesses to customize their website. Reuters reports that the Japanese company Canon already has its plans to use .canon. Soon we will be searching .apple , .fedora , .man.&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;ICANN will take applications starting January 12, 2012 through April 12, 2012 to operate these domain names. The registration would cost you $185,000 ,plus an additional $25,000 annually to operate the registry.&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/3184537608148628119/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2011/06/generic-top-level-domains-now-its_9702.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3184537608148628119'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/3184537608148628119'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2011/06/generic-top-level-domains-now-its_9702.html' title='Generic top-level domains - now its &quot;www.abc.anything&quot;'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0htzkSWTWBEoUzXeXJtiI2b47ijjVj53dj_rZKYk3ZaTDGcaON-PNg_ywqbcG3kMBk-Kgk2yqJOh6yxX-JO-3IbEne-PXedHzyW99ZPBl7Z6zbCUsNIMs5yr1J3V4tZmS4If0nlW8y2I/s72-c/icann_digits_D_20110620084611.jpg" height="72" width="72"/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-402100554024270128</id><published>2011-06-06T03:33:00.000-07:00</published><updated>2011-08-17T10:56:32.194-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Internet"/><title type='text'>Facebook and Psychology - Everything matters</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Next time you feel like broadcasting some gloomy tale of woe on Facebook, you might want to think twice. Your friends could catch your feelings. &lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Psychologists have long known that emotions, just like germs, are contagious. People exposed to a person experiencing strong emotions may experience similar feelings, catching them through facial expressions, tones of voice or some other means. But now there is a new means of transmission -- social media.&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Facebook data scientist Adam D.I. Kramer analyzed postings by about 1 million English speakers and their roughly 150 million friends in multiple countries on the social network to show that the words people use in their status updates drive the emotions of their online friends, even days later. Kramer found people who used emotionally loaded words like &quot;happy,&quot; &quot;hug,&quot; &quot;sick,&quot; and &quot;vile&quot; in their status updates sparked similar emotions in later Facebook postings by their friends.&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&quot;Up to three days later, for people who use more negative words, their friends will also use more negative words,&quot; Kramer said. &quot;If people are using more positive words, not only are their friends using more positive words, their friends also will use fewer negative words.&quot;&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Kramer&#39;s analysis is not just an academic study of the vast amounts of data that underlie Facebook&#39;s social web. His work is related to Facebook&#39;s fast-growing social products and the&amp;nbsp;advertising that powers them.&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Facebook CEO Mark Zuckerberg studied psychology at Harvard and often talks about the psychological underpinnings of Facebook&#39;s business model, saying, for example, its photo-sharing service became tops on the Internet not because of software wizardry, but because Facebook filled a basic human need by allowing people to &quot;tag&quot; photos of their friends and share them. To build on that, Facebook has assembled a data science team that mines the vast amount of information contained in the relationships and profiles of the social network&#39;s more than 600 million users.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Kramer&#39;s study on emotional &quot;contagion,&quot; which he presented at the 2011 annual meeting of the Society for Personality and Social Psychology, is an example of how people&#39;s online social interactions are increasingly important sources and tools for social research.&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Other companies are pouring through data, too. Yahoo (YHOO), for example, has been using social sites like Amazon.com&#39;s Mechanical Turk, an online marketplace that matches freelance jobs with people looking for work, to study questions such as whether better paid people produce better quality work.&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Facebook now tracks the emotional states not just of people, but of nations. Kramer also developed Facebook&#39;s &quot;Gross National Happiness&quot; index, based on a computer analysis of emotion-laden words used by more than 400 million Facebook users since 2007. The ongoing fluctuations in that multinational index, following events like the March 11 earthquake and tsunami in Japan, hint at the social bonds between societies.&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&quot;During the earthquake in Japan, many Asian countries showed a dip in their overall happiness,&quot; Kramer said, &quot;whereas many Western countries were unaffected -- except for Chile, which just had a catastrophic earthquake&quot; last year.&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Kramer, 30, stands out as brainy even by Facebook standards. After growing up in a small town in western Massachusetts, he studied computer science as an undergrad and graduate student before getting a doctorate in social and personality psychology. His thesis was on &quot;decisional procrastination,&quot; or why it can sometimes be good to put off decisions.&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Psychologists still don&#39;t know, Kramer said, whether a person who feels sad upon hearing their friend Joe say his dog has died feels sad for Joe, sad for the dog, or is just mirroring Joe&#39;s feelings. But Kramer said emotion transmitted through status updates could not be mirroring, because that requires one-to-one communication.&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;The study found that for every negative word such as &quot;sick,&quot; &quot;petty&quot; or &quot;lame&quot; Facebook members used in a status update, their friends used 28 percent more negative words on the following day than would be expected, based on their pattern of speech at other times.&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;One key finding, Kramer said, is that emotional states are not mutually exclusive opposites.&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&quot;You&#39;re not either sad, or you&#39;re happy,&quot; he said, of the mixed emotions people feel at any moment. &quot;There are bittersweet emotions.&quot;&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Facebook data scientists used an anonymous computer program to scan the status updates of about 1 million English speakers, searching for positive words including &quot;thanks,&quot; &quot;wonderful,&quot; &quot;cute&quot; and &quot;sunshine&quot;; and negative words including &quot;angry,&quot; &quot;worst&quot; and &quot;sucks.&quot; They then scanned the status updates of those people&#39;s roughly 150 million friends, to see whether the emotions were echoed by others, and discovered a pattern where negative and positive feelings were transmitted to friends for the following three days. Facebook&#39;s Gross National Happiness index is at &lt;/span&gt;&lt;a href=&quot;http://apps.facebook.com/gnh_index&quot;&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;apps.facebook.com/gnh_index&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Tag this blog if you like it.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/402100554024270128/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2011/06/facebook-and-psychology-everything.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/402100554024270128'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/402100554024270128'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2011/06/facebook-and-psychology-everything.html' title='Facebook and Psychology - Everything matters'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-6123228021873061548</id><published>2011-06-04T09:12:00.000-07:00</published><updated>2011-08-17T10:49:21.579-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Operating System"/><category scheme="http://www.blogger.com/atom/ns#" term="Tech News"/><title type='text'>Windows domination continues - Windows 7 now holds third place in worldwide OS market share</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Microsoft, the leading computer operating system manufacturer accounts over 80% of worldwide OS share. And now its latest available version playing its heritage duties.&lt;br /&gt;
&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
Statistics firm &lt;a href=&quot;http://gs.statcounter.com/#os-ww-monthly-201003-201105&quot;&gt;StatCounter&lt;/a&gt; released their latest worldwide operating system stats today. The firm says that Windows 7 now accounts for 33.2% of all worldwide OS market share, compared to Windows XP which now accounts for 45.87%. Microsoft’s downward spiral for Windows XP, a popular operating system released originally in 2001, continues to continue. Windows 7 is experiencing impressive gains globally but has yet to pass Windows XP market share worldwide. Neowin estimates that Windows 7 could overtake Windows XP in time for the holiday season later this year.&lt;br /&gt;
&lt;br /&gt;
As of today, over 20% of Internet-connected PCs worldwide are running Windows 7 according to Net Applications. It was an incredibly successful year for Windows 7 in 2010. Microsoft’s success with Windows 7 began before the product was even widely available. Released in October 2009, the operating system has received praise from consumers, businesses and the media. In November 2009, Windows 7 managed to surpass Apple’s Snow Leopard market share in just two weeks. In early February 2010 it was revealed that Windows 7 had reached 10% market share in just three months.&lt;br /&gt;
&lt;br /&gt;
Windows 7 has also driven an uptake of 64-bit computing. According to ChangeBASE research, conducted with senior IT decision makers, more than 65% of businesses hoped to migrate to Windows 7 within 12 months of its release. Over 50% of those migrating will be choosing the 64-bit route. Microsoft confirmed in July that nearly half of all Windows 7 PCs run 64-bit versions. &lt;a href=&quot;http://www.winrumors.com/windows-7-powers-1-in-10-business-pcs/&quot;&gt;Forrester Research&lt;/a&gt; revealed in November that 1 in 10 PCs within North America and European companies are powered by Windows 7.&lt;br /&gt;
&lt;br /&gt;
Windows 7 recently celebrated its first birthday after selling over 240 million licenses in the first year of sales. Microsoft revealed in late January that the software maker has now shipped over 300 million licenses of Windows 7.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div height=&quot;400&quot; id=&quot;os-ww-monthly-201003-201105&quot; style=&quot;height: 400px; width: 600px;&quot; width=&quot;600&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;script src=&quot;http://www.statcounter.com/js/FusionCharts.js&quot; type=&quot;text/javascript&quot;&gt;
&lt;/script&gt;&lt;script src=&quot;http://gs.statcounter.com/chart.php?os-ww-monthly-201003-201105&quot; type=&quot;text/javascript&quot;&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/6123228021873061548/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2011/06/windows-domination-continues-windows-7.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/6123228021873061548'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/6123228021873061548'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2011/06/windows-domination-continues-windows-7.html' title='Windows domination continues - Windows 7 now holds third place in worldwide OS market share'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6763470889186963292.post-2635198467928386427</id><published>2011-06-03T08:48:00.000-07:00</published><updated>2011-08-17T10:43:43.729-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Other"/><title type='text'>Few lines from Sudha Murthy’s Autobiography  &quot;When I went to Hubli I told my parents about Murty and his proposal&quot;</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Hi my dear readers, This is not a typical apsotech topic. But I&#39;m sure you&#39;ll enjoy reading the master&#39;s love story. These are few lines taken from Sudha Murthy’s Autobiography.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://im.rediff.com/money/2009/apr/22murthy13.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;234&quot; src=&quot;http://im.rediff.com/money/2009/apr/22murthy13.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;i&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Image: (Left to right) Sudha Murthy, N R Narayana Murthy, Nandan Nilekani and Rohini Nilekani, a journalist at Bombay magazine before their wedding, at a picnic near Bangalore in the early 1980s. | Photograph, courtesy: Infosys technologies&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;________________________________________________________________&lt;/span&gt;&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;It was in Pune that I met Narayan Murty through my friend Prasanna who is&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;now the Wipro chief, who was also training in Telco (TataMotors). Most of the books that Prasanna lent me had Murty’s name on them which meant that I had a&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;preconceived image of the man. Contrary to expectation, Murty was&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;shy, bespectacled and an introvert. When he invited us for dinner, I was&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;a bit taken aback as I thought the young man was making a very fast move.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;I refused since I was the only girl in the group. But Murty was relentless and we all decided to meet for dinner the next day at 7.30 p.m at Green Fields Hotel on the Main Road, Pune.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;The next day I went there at 7o’clock since I had to go to the tailor near the hotel. And what do I see? Mr. Murty waiting in front of the hotel and it was only seven. Till today, Murty maintains that I had mentioned (consciously!) that I would be going to the tailor at 7 so that I could meet him…And I maintain that I did not say any such thing consciously or unconsciously because I did not think of Murty as anything other than a friend at that stage. We have agreed to disagree on this matter. &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Soon, we became friends. Our conversations were filled with Murty’s experiences abroad and the books that he has read. My friends insisted that Murty was trying to impress me because he was interested in me. I kept denying it till one fine day, after dinner Murty said, I want to tell you something. I knew this as it. It was coming.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;He said, I am 5′4″ tall.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;I come from a lower middle class family.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;I can never become rich in my life and I can never give you any riches.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;You are beautiful, bright, and intelligent and you can get anyone you want.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;But will you marry me? &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;I asked Murty to give me some time for an answer. My father didn’t want me to&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;marry a wannabe politician (a communist at that) who didn’t have a steady job and wanted to build an orphanage…&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;When I went to Hubli I told my parents about Murty and his proposal. My mother was positive since Murty was also from Karnataka, seemed intelligent and comes from a good family. But my father asked: What’s his job, his salary, his qualifications etc? Murty was working as a research assistant and was earning less than me. He was willing to go dutch with me on our outings. My parents agreed to meet Murty in Pune on a particular day at 10 a.m sharp. Murty did not turn up. How can I trust a man to take care of my daughter if he cannot keep an appointment? asked my father. &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;At 12 noon Murty turned up in a bright red shirt! He had gone on work to Bombay, was stuck in a traffic jam on the ghats, so he hired a taxi (though it was very expensive for him) to meet his would-be father-in-law.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Father was unimpressed. My father asked him what he wanted to become in life.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Murty said he wanted to become a politician in the communist party and&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;wanted to open an orphanage. My father gave his verdict. NO. I don’t want my daughter to marry somebody who wants to become a communist and then open an orphanage when he himself didn’t have money to support his family.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Ironically, today, I have opened many orphanages something, which Murty wanted to do 25 years ago. By this time I realized I had developed a liking towards Murty which could only be termed as love. I wanted to marry Murty because he is an honest man. He proposed to me highlighting the negatives in his life. I promised my father that I will not marry Murty without his blessings though at the same time, I cannot marry anybody else. My father said he would agree if Murty promised to take up a steady job. But Murty refused saying he will not do things in life because somebody wanted him to. So, I was caught between the two most important persons in my life.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;The stalemate continued for three years during which our courtship took us to every restaurant and cinema hall in Pune. In those days, Murty was always broke. Moreover, he didn’t earn much to manage. Ironically today, he manages Infosys Technologies Ltd., one of the world’s most reputed companies. He always owed me money. We used to go for dinner and he would say, I don’t have money with me, you pay my share, I will return it to you later. For three years I maintained a book on Murty’s debt to me.. No, he never returned the money and I finally tore it up after my wedding. The amount was a little over Rs 4000. During this interim period Murty quit his job as research assistant and started his own software business. Now, I had to pay his salary too! Towards the late 70s computers were entering India in a big way.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;During the fag end of 1977 Murty decided to take up a job as General Manager at Patni Computers in Bombay .. But before he joined the company he wanted to marry me since he was to go on training to the US after joining. My father gave in as he was happy Murty had a decent job, now.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;WE WERE MARRIED IN MURTY’S HOUSE IN BANGALORE ON FEBRUARY 10, 1978 WITH ONLY OUR TWO FAMILIES PRESENT. I GOT MY FIRST SILK SARI. THE WEDDING EXPENSES CAME TO ONLY RS 800 (US $17) WITH MURTY AND I PULLING IN RS. 400 EACH.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;I went to the US with Murty after marriage. Murty encouraged me to see&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;America on my own because I loved travelling. I toured America for three months on backpack and had interesting experiences which will remain fresh in my mind forever. Like the time when the New York police took me into custody because they thought I was an Italian trafficking drugs in Harlem. Or the time when I spent the night at the bottom of the Grand Canyon with an old couple. Murty panicked because he couldn’t get a response from my hotel room even at midnight. He thought I was either killed or kidnapped.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;IN 1981 MURTY WANTED TO START INFOSYS. HE HAD A VISION AND ZERO&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;CAPITAL…initially I was very apprehensive about Murty getting into business. We did not have any business background .. Moreover we were living a comfortable life in Bombay with a regular pay check and I didn’t want to rock the boat. But Murty was passionate about creating good quality software. I decided to support him. Typical of Murty, he just had a dream and no money. So I gave him Rs 10,000 which I had saved for a rainy day, without his knowledge and told him, this is all I have. Take it. I give you three years sabbatical leave. I will take care of the financial needs of our house. You go and chase your dreams without any worry. But you have only three years!&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Murty and his six colleagues started Infosys in 1981,with enormous interest and hard work. In 1982 I left Telco and moved to Pune with Murty. We bought a small house on loan which also became the Infosys office. I was a clerk-cum-cook-cum-programmer. I also took up a job as Senior Systems Analyst with Walchand group of Industries to support the house. In 1983, Infosys got their first client, MICO, in Bangalore .. Murty moved to Bangalore and stayed with his mother while I went to Hubli to deliver my second child, Rohan. Ten days after my son was born, Murty left for the US on project work. I saw him only after a year, as I was unable to join Murty in the US because my son had infantile eczema, an allergy to vaccinations. So for more than a year I did not step outside our home for fear of my son contracting an infection. It was only after Rohan got all his&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;vaccinations that I came to Bangalore where we rented a small house in Jayanagar and rented another house as Infosys headquarters. My father presented Murty a scooter to commute. I once again became a cook, programmer, clerk, secretary, office assistant et al. Nandan Nilekani (MD of Infosys) and&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;his wife Rohini stayed with us. While Rohini babysat my son, I wrote programs for Infosys. There was no car, no phone, and just two kids and a bunch of us working hard, juggling our lives and having fun while Infosys was taking shape. It was not only me but also the wives of other partners too who gave their unstinted support. We all knew that our men were trying to build something good.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;It was like a big joint family,taking care and looking out for one another. I still remember Sudha Gopalakrishna looking after my daughter Akshata with all care and love while Kumari Shibulal cooked for all of us. Murty made it very clear that it would either be me or him working at Infosys. Never the two of us together… I was involved with Infosys initially. &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;Nandan Nilekani suggested I should be on the Board but Murty said he did not want a husband and wife team at Infosys. I was shocked since I had the relevant experience and technical qualifications. He said, Sudha if you want to work with Infosys, I will withdraw, happily. I was pained to know that I will not be involved in the company my husband was building and that I would have to give up a job that I am qualified to do and love doing. &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;It took me a couple of days to grasp the reason behind Murty’s request.. I realized that to make Infosys a success one had to give one’s 100 percent. One had to be focussed on it alone with no other distractions. If the two of us had to give 100 percent to Infosys then what would happen to our home and our children? One of us had to take care of our home while the other took care of Infosys.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;I opted to be a homemaker, after all Infosys was Murty’s dream. It was a big sacrifice but it was one that had to be made. Even today, Murty says, Sudha, I stepped on your career to make mine. &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Georgia, &#39;Times New Roman&#39;, serif;&quot;&gt;You are responsible for my success.&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.launchbit.com/az/68-103/&quot;&gt;&lt;img width=&quot;468&quot; height=&quot;60&quot; src=&quot;http://www.launchbit.com/az-images/68-103/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;small&gt;(Powered by &lt;a href=&quot;http://www.launchbit.com/lb/68-103/&quot;&gt;LaunchBit&lt;/a&gt;)&lt;/small&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://apsotech.blogspot.com/feeds/2635198467928386427/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://apsotech.blogspot.com/2011/06/few-lines-from-sudha-murthys.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/2635198467928386427'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6763470889186963292/posts/default/2635198467928386427'/><link rel='alternate' type='text/html' href='http://apsotech.blogspot.com/2011/06/few-lines-from-sudha-murthys.html' title='Few lines from Sudha Murthy’s Autobiography  &quot;When I went to Hubli I told my parents about Murty and his proposal&quot;'/><author><name>PrathviRaj</name><uri>http://www.blogger.com/profile/16932547718783365523</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjua_Anxrm9fwrME2VWsGg04qbxzuaxi1kL6B816_nlCRBbpO2HhEFSvtcWDibi26r9BEuvMvabvtZ4TvjFJJ5Mju8IH7f13uYfS1T_9QvioaToB6u336jItAP8ZYS3SA/s114/11805817_10207406190178105_13039306255_n.jpg'/></author><thr:total>4</thr:total></entry></feed>