<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Technology and You - Google</title>
    <link>http://technyou.supersized.org/</link>
    <description>A layman's look at the technology that is reshaping the world, bringing together latest news, analysis, and tips &amp; tricks.</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.3-alpha1 - http://www.s9y.org/</generator>
    <pubDate>Fri, 25 Jan 2008 20:19:46 GMT</pubDate>

    <image>
        <url>http://technyou.supersized.org/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Technology and You - Google - A layman's look at the technology that is reshaping the world, bringing together latest news, analysis, and tips &amp; tricks.</title>
        <link>http://technyou.supersized.org/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Make Better Charts On-the-Fly</title>
    <link>http://technyou.supersized.org/archives/76-Make-Better-Charts-On-the-Fly.html</link>
            <category>Google</category>
            <category>Internet</category>
    
    <comments>http://technyou.supersized.org/archives/76-Make-Better-Charts-On-the-Fly.html#comments</comments>
    <wfw:comment>http://technyou.supersized.org/wfwcomment.php?cid=76</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://technyou.supersized.org/rss.php?version=2.0&amp;type=comments&amp;cid=76</wfw:commentRss>
    

    <author>nospam@example.com (Rohan Dayal)</author>
    <content:encoded>
    
Finally, something to be excited about. One of the essential requirements in any analysts job is to create charts. However, I find manipulating Excel charts a bit too tedious (most options are hidden inside too many menus). Here&#039;s a simple solution: &lt;a target=&quot;_blank&quot; href=&quot;http://code.google.com/apis/chart/&quot;&gt;Google Charts API&lt;/a&gt;. All you need to do is create an image url that includes the chart options and your data, paste it into the address bar of your browser, and your chart is ready. This means that you can embed charts that are created on the fly directly into a webpage/document/presentation. Here are some examples of the charts that you can generate and the corresponding URLs in green(note that these are not static images, they are created along with this webpage):&lt;br /&gt;&lt;br /&gt;&lt;font color=&quot;#00ff00&quot;&gt;http://chart.apis.google.com/chart?&lt;br /&gt;chs=170x100&amp;amp;cht=p3&amp;amp;chtt=Sample Chart&amp;amp;chd=s:CDDEFH,Wps679&amp;amp;&lt;br /&gt;chdl=sales|visits&amp;amp;chxl=0:|jan|feb|mar|apr|may|jun|&amp;amp;chxt=x&lt;br /&gt;&lt;img src=&quot;http://chart.apis.google.com/chart?chs=170x100&amp;cht=p3&amp;chtt=Sample Chart&amp;chd=s:CDDEFH,Wps679&amp;chdl=sales|visits&amp;chxl=0:|jan|feb|mar|apr|may|jun|&amp;chxt=x&quot; /&gt;&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;&lt;font color=&quot;#00ff00&quot;&gt;http://chart.apis.google.com/chart?chs=180x100&amp;amp;&lt;br /&gt;cht=bhs&amp;amp;chtt=Sample%20Chart&amp;amp;chd=s:CDDEFH,Wps679&amp;amp;&lt;br /&gt;chco=ff0000,0000ff&amp;amp;chdl=sales|visits&amp;amp;&lt;br /&gt;chxl=0:|jan|feb|mar|apr|may|jun|&amp;amp;chxt=x&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://chart.apis.google.com/chart?chs=180x100&amp;cht=bhs&amp;chtt=Sample%20Chart&amp;chd=s:CDDEFH,Wps679&amp;chco=ff0000,0000ff&amp;chdl=sales|visits&amp;chxl=0:|jan|feb|mar|apr|may|jun|&amp;chxt=x&quot; /&gt;&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;&lt;font color=&quot;#00ff00&quot;&gt;http://chart.apis.google.com/chart?cht=v&amp;amp;&lt;br /&gt;chs=150x100&amp;amp;chd=t:100,80,60,30,30,30,10&amp;amp;chtt=Sample Chart&lt;br /&gt;&lt;img src=&quot;http://chart.apis.google.com/chart?cht=v&amp;chs=150x100&amp;chd=t:100,80,60,30,30,30,10&amp;chtt=Sample Chart&quot; /&gt;&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;Of course, numerous tools for creating charts using this API have already sprung up. Amongst the official list, I found the &lt;a target=&quot;_blank&quot; href=&quot;http://www.tagarga.com/files/gcui/&quot;&gt;Visual Google Chart URL Generator&lt;/a&gt; to be the most intuitive (though it does not support Venn diagrams). Another good interface is provided by the &lt;a target=&quot;_blank&quot; href=&quot;http://charts.hohli.com/&quot;&gt;Online Chart Builder&lt;/a&gt;. You can plot basic mathematical functions using &lt;a target=&quot;_blank&quot; href=&quot;http://www.felipebarone.com/plot-function-google.php&quot;&gt;Plot Function Google&lt;/a&gt;. For the security junkies, the FAQ states all data used for generating the chart is purged within two weeks.&lt;br /&gt;&lt;br /&gt;The icing on the cake: The default color pallette is pleasing to the eyes. So you can worry about getting the data right and leaving the aesthetics to the API.&lt;br /&gt;&lt;br /&gt;Another freeware solution to creating charts on the fly is &lt;a href=&quot;http://www.jfree.org/jfreechart/&quot; target=&quot;_blank&quot;&gt;JFreeChart&lt;/a&gt;, an open-source Java based library. A good paid and &lt;i&gt;very&lt;/i&gt; flexible alternative I have used is &lt;a href=&quot;http://www.tableausoftware.com/&quot; target=&quot;_blank&quot;&gt;Tableau&lt;/a&gt; (thanks to Pratik for pointing that out).&lt;br /&gt;&lt;br /&gt;Is it time to say goodbye to Excel charts? What do you think - leave a comment. 
    </content:encoded>

    <pubDate>Fri, 25 Jan 2008 12:24:47 +0100</pubDate>
    <guid isPermaLink="false">http://technyou.supersized.org/archives/76-guid.html</guid>
    
</item>
<item>
    <title>Google Profiting from IE Users' Ignorance</title>
    <link>http://technyou.supersized.org/archives/60-Google-Profiting-from-IE-Users-Ignorance.html</link>
            <category>Google</category>
            <category>Internet</category>
            <category>Search</category>
    
    <comments>http://technyou.supersized.org/archives/60-Google-Profiting-from-IE-Users-Ignorance.html#comments</comments>
    <wfw:comment>http://technyou.supersized.org/wfwcomment.php?cid=60</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://technyou.supersized.org/rss.php?version=2.0&amp;type=comments&amp;cid=60</wfw:commentRss>
    

    <author>nospam@example.com (Rohan Dayal)</author>
    <content:encoded>
    &lt;font style=&quot;BACKGROUND-COLOR: #faffff&quot;&gt;Who likes advertisements? &amp;quot;Not me&amp;quot;, I hear you say? Well that&#039;s why I installed &lt;a href=&quot;http://www.getfirefox.com/&quot; target=&quot;_blank&quot;&gt;Firefox&lt;/a&gt; and then installed &lt;a href=&quot;https://addons.mozilla.org/firefox/10/&quot; target=&quot;_blank&quot;&gt;Adblock Plus&lt;/a&gt; (and recommended that you should too in a &lt;a href=&quot;http://technyou.supersized.org/archives/36-Must-Have-Firefox-Extensions.html&quot; target=&quot;_self&quot;&gt;previous post&lt;/a&gt;). &lt;a href=&quot;http://www.iht.com/articles/2007/09/02/business/link.php&quot; target=&quot;_blank&quot;&gt;A recent article&lt;/a&gt; brought this little known plugin into the limelight. The predominant business model in the internet world depends on revenue generated from advertisements. This means that companies earn when someone clicks on an advertisement shown on their website (you must have seen the &#039;Ads by Google&#039; box on many websites). Most search engines earn by showing targeted advertisements alongside your search results in the hope that you will find the advertisement interesting enough to click on it (look for the &#039;Sponsored links&#039; bar to the right of your search results). In both cases, the advertisement provider charges the company whose advertisement is shown, and when the advertisement is shown on a website, passes a part of the cost to the owner of the website. You can read more about Google &lt;a href=&quot;http://www.google.com/intl/en/ads/&quot; target=&quot;_blank&quot;&gt;Adsense and Adwords here&lt;/a&gt;. Google raked up USD 10.4 billion in FY 2006 and has earned USD 7.4 in Q1+Q2 2007 only from advertising (&lt;a href=&quot;http://investor.google.com/fin_data.html&quot; target=&quot;_blank&quot;&gt;source&lt;/a&gt;).&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;&lt;font style=&quot;BACKGROUND-COLOR: #faffff&quot;&gt;With so much at stake, Adblock poses a potential problem and though people are not shouting from the tops of Manhattan buildings about it, it gets popular by the day. Some cheeky person started a website &lt;a href=&quot;http://whyfirefoxisblocked.com/&quot; target=&quot;_blank&quot;&gt;&#039;WhyFirefoxisBlocked.com&#039;&lt;/a&gt; to encourage people to block Firefox users from visiting their site and even provided a script to automate this. The online community got back by creating a parody site &lt;a href=&quot;http://www.whyisfirefoxblocked.com/&quot; target=&quot;_blank&quot;&gt;&#039;WhyisFirefoxBlocked.com&#039;&lt;/a&gt;.&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;&lt;font style=&quot;BACKGROUND-COLOR: #faffff&quot;&gt;Getting back to the point, Google (and many other companies for that matter) stands to lose a lot if Adblock Plus gets popular. But, lets face it - the average Joe internet user does not even know that Firefox exists, let alone Adblock Plus. Heck, there are &lt;a href=&quot;http://www.download.com/3120-20_4-0.html?tg=dl-20&amp;amp;qt=block%20advertisements&amp;amp;tag=srch&quot; target=&quot;_blank&quot;&gt;numerous tools&lt;/a&gt; for blocking advertisements directly in Internet Explorer. But, no one seems to be interested in using them. Like television, people are dulled into believing that advertisements are a part of the Internet and nothing can be done about it.&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;&lt;font style=&quot;BACKGROUND-COLOR: #faffff&quot;&gt;Personally, I don&#039;t mind Google&#039;s style of advertisements and even if Adblock Plus would let these through, I&#039;ll view them gladly, even click on some if the text is appealing. But it&#039;s those flashing banners that declare that I&#039;ve won 10000 bucks and the laughing monkey that I have to punch to claim my bonus prize that drive me nuts - and no I will never use the next generation of smileys - I don&#039;t even chat. While I&#039;m at it, I&#039;d also like to tell &lt;a href=&quot;http://mail.yahoo.com/&quot; target=&quot;_blank&quot;&gt;Yahoo Mail&lt;/a&gt; to take a crash course in subtlety - the huge banners really annoy me (of course, I haven&#039;t seen them since a long time ;).&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;&lt;font style=&quot;BACKGROUND-COLOR: #faffff&quot;&gt;What do you think? Should ad-blocking tools be allowed? Leave a comment to let us know.&lt;/font&gt;  
    </content:encoded>

    <pubDate>Wed, 05 Sep 2007 14:26:11 +0200</pubDate>
    <guid isPermaLink="false">http://technyou.supersized.org/archives/60-guid.html</guid>
    
</item>
<item>
    <title>Google Spreadsheets Showdown</title>
    <link>http://technyou.supersized.org/archives/42-Google-Spreadsheets-Showdown.html</link>
            <category>Google</category>
            <category>Internet</category>
            <category>Software</category>
    
    <comments>http://technyou.supersized.org/archives/42-Google-Spreadsheets-Showdown.html#comments</comments>
    <wfw:comment>http://technyou.supersized.org/wfwcomment.php?cid=42</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://technyou.supersized.org/rss.php?version=2.0&amp;type=comments&amp;cid=42</wfw:commentRss>
    

    <author>nospam@example.com (Rohan Dayal)</author>
    <content:encoded>
    It&#039;s still early days for a review for the &lt;a href=&quot;http://spreadsheets.google.com/&quot; target=&quot;_blank&quot;&gt;Google Spreadsheet&lt;/a&gt; - Google&#039;s latest offering, but then again here&#039;s my showdown. The timing for this software-as-service could not be better. With so much of hype surrounding &lt;a href=&quot;http://www.microsoft.com/office/preview/default.mspx&quot; target=&quot;_blank&quot;&gt;Microsoft Office 2007&lt;/a&gt;, people will definitely consider this as a free alternative to the arguably expensive Microsoft offering. Plus, the Spreadsheet fits right into Google&#039;s growing portfolio of online replacements to traditionally offline software. That said, there is quite some work to do before Spreadsheets can have a widespread appeal.&lt;br /&gt;&lt;br /&gt;Pros:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;The interface seems very familiar and intuitive. In fact most of it is a direct import from Microsoft Excel. It will be very easy for the average user to adapt.&lt;/li&gt;&lt;li&gt;Most (if not all) functions are supported. I was pleasantly surprised to see &lt;a href=&quot;http://office.microsoft.com/en-gb/assistance/HP052093351033.aspx&quot; target=&quot;_blank&quot;&gt;Vlookup&lt;/a&gt; working right out of the box. Data can be sorted and relative references work as well.&lt;/li&gt;&lt;li&gt;Most (if not all) keyword shortcuts work as well. Your familiar F2 (edit), Ctrl-C (copy), Ctrl-X (cut), Ctrl-V (paste), Ctrl-Arrow key (next empty/filled cell), etc. are already implemented. Remember, a keyboard is way faster then a mouse.&lt;/li&gt;&lt;li&gt;You can import and export spreadsheets in XLS (Microsoft Excel default), and &lt;a href=&quot;http://en.wikipedia.org/wiki/Comma-separated_values&quot; target=&quot;_blank&quot;&gt;CSV&lt;/a&gt; (Comma Separated Values). You can also export to HTML.&lt;/li&gt;&lt;li&gt;Files are saved online and can even be shared. Heck, you can also chat with a friend as you both update your spreadsheet (though I can&#039;t think of a possible use for this).&lt;/li&gt;&lt;li&gt;Multiple sheets are supported, and surprise, surprise, you can refer to cells across worksheets, just like in Excel.&lt;/li&gt;&lt;/ul&gt;Cons:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://technyou.supersized.org/archives/29-Google-Calendar-Rundown.html&quot; target=&quot;_blank&quot;&gt;It&#039;s just another Google AJAX application (ho-hum).&lt;/a&gt;&lt;/li&gt;&lt;li&gt;There are somethings that are better left as they are. The formula bar is conspicuously absent. It is replaced with a small formula corner at the bottom right of the browser window. The corner is not sufficient to display long formulae. It should ideally be placed right next to the spreadsheet name at the top (backward compatibility please!)&lt;/li&gt;&lt;li&gt;WE WANT MACROS! Working on a spreadsheet just isn&#039;t the same without them.&lt;/li&gt;&lt;li&gt;The &lt;a href=&quot;http://www.google.com/support/spreadsheets/bin/answer.py?answer=40606&amp;amp;topic=8839&quot; target=&quot;_blank&quot;&gt;help mentions&lt;/a&gt; that you can anchor cells($) in formulae with F4 (as in Excel), but it does not seem to work as yet.&lt;/li&gt;&lt;li&gt;I would really appreciate formulae tooltips. The tooltips in Excel really help me figure out the syntax for most formulae. Anyone who has used Vlookup would know how I feel.&lt;/li&gt;&lt;li&gt;Any home user could *easily* surpass a 101x20 spreadsheet. I hope they increase the limit soon.&lt;/li&gt;&lt;li&gt;(Not that I&#039;m really missing this but...) You can&#039;t merge cells vertically.&lt;/li&gt;&lt;/ul&gt;For obvious privacy concerns, people working in companies would not (and should not) use Google Spreadsheets. However, this free alternative should prove as a boon for people not dealing with confidential data - students, home users, small business, even the local retailer. The impact of the tool to Microsoft Office&#039;s revenues will make an interesting market estimation study.  
    </content:encoded>

    <pubDate>Wed, 07 Jun 2006 02:25:41 +0200</pubDate>
    <guid isPermaLink="false">http://technyou.supersized.org/archives/42-guid.html</guid>
    
</item>
<item>
    <title>Google Notebook - More Online Storage</title>
    <link>http://technyou.supersized.org/archives/38-Google-Notebook-More-Online-Storage.html</link>
            <category>Google</category>
            <category>Internet</category>
    
    <comments>http://technyou.supersized.org/archives/38-Google-Notebook-More-Online-Storage.html#comments</comments>
    <wfw:comment>http://technyou.supersized.org/wfwcomment.php?cid=38</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://technyou.supersized.org/rss.php?version=2.0&amp;type=comments&amp;cid=38</wfw:commentRss>
    

    <author>nospam@example.com (Rohan Dayal)</author>
    <content:encoded>
    Google announced &lt;a href=&quot;http://www.google.com/notebook&quot;&gt;Google Notebook&lt;/a&gt; on May 15, 2006. Google Notebook allows anyone to make a note regarding something of interest on the internet, and store it in the seemingly &lt;a href=&quot;http://www.smh.com.au/news/breaking/google-infinite-storage-plans-leak-out/2006/03/08/1141701538165.html&quot; target=&quot;_blank&quot;&gt;infinite amount of storage that Google has&lt;/a&gt;. You can even make it public and searchable for the world. The Notebook web application is made from, guess what, AJAX. So be prepared for floating text, fast updates, and easy re-ordering.&lt;br /&gt;&lt;br /&gt;There are two ways of working with Google Notebook. &lt;br /&gt;&lt;a class=&quot;serendipity_image_link&quot; href=&quot;http://technyou.supersized.org/uploads/blogimages/Googlenotebook.jpg&quot;&gt;&lt;img style=&quot;BORDER-RIGHT: 0px; PADDING-RIGHT: 5px; BORDER-TOP: 0px; PADDING-LEFT: 5px; FLOAT: right; BORDER-LEFT: 0px; WIDTH: 225px; BORDER-BOTTOM: 0px; HEIGHT: 152px&quot; height=&quot;152&quot; src=&quot;http://technyou.supersized.org/uploads/blogimages/Googlenotebook.jpg&quot; width=&quot;225&quot; alt=&quot;&quot;  /&gt;&lt;/a&gt;The first way is by logging in with your Google account, clicking on &#039;Add Note&#039;, and typing/copy-pasting. The second, and might I say ingenious way, is an &lt;a href=&quot;http://www.google.com/notebook/download&quot; target=&quot;_blank&quot;&gt;installable plugin&lt;/a&gt; that creates a small window (Mini Notebook) within your browser (currently, IE and &lt;a href=&quot;http://www.getfirefox.com/&quot; target=&quot;_blank&quot;&gt;Firefox&lt;/a&gt; only). You can drag-and-drop text and images into the Mini Notebook to create a new note. Alternately, you can select text, right-click, and select &#039;Note this&#039; from the context menu.&lt;br /&gt;&lt;br /&gt;This web application would be quite helpful for people who need to carry work across computers. For example, the computer center at my college did not have a seat allocation. So, I pretty much had to choose whichever terminal I got. A tool like this sure would have helped me store my research.&lt;br /&gt;&lt;br /&gt;I have suggested some features for this tool to Google. Here&#039;s my wishlist:&lt;ul&gt;&lt;li&gt;Shared editing of notebooks - Currently, only one author is allowed. This feature would be great for people doing research in tandem, or across continents even.&lt;/li&gt;&lt;li&gt;Plugins for other applications - Along with the your browser, Google could develop plugins for other applications such as Adobe Acrobat and MS Word, Outlook that allow direct entry into a Notebook window.&lt;/li&gt;&lt;li&gt;Annotations for Notes - For notes created by right-clicking are created directly from the text and images selected. There is no direct way to add your own annotation or comment to capture why you thought that bit was important.&lt;/li&gt;&lt;/ul&gt;Apart from the privacy concerns, this tool appears to be quite helpful. One more tool in support of &lt;a href=&quot;http://technyou.supersized.org/archives/10-Googles-shift-of-focus.html&quot; target=&quot;_self&quot;&gt;Google&#039;s shift towards home and student users&lt;/a&gt;.  
    </content:encoded>

    <pubDate>Thu, 18 May 2006 13:27:49 +0200</pubDate>
    <guid isPermaLink="false">http://technyou.supersized.org/archives/38-guid.html</guid>
    
</item>
<item>
    <title>Why Google will Acquire Goowy</title>
    <link>http://technyou.supersized.org/archives/35-Why-Google-will-Acquire-Goowy.html</link>
            <category>Desktop</category>
            <category>Google</category>
            <category>Internet</category>
    
    <comments>http://technyou.supersized.org/archives/35-Why-Google-will-Acquire-Goowy.html#comments</comments>
    <wfw:comment>http://technyou.supersized.org/wfwcomment.php?cid=35</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://technyou.supersized.org/rss.php?version=2.0&amp;type=comments&amp;cid=35</wfw:commentRss>
    

    <author>nospam@example.com (Rohan Dayal)</author>
    <content:encoded>
    I feel pretty confident about this. If nothing else, &lt;a href=&quot;http://www.google.com/&quot; target=&quot;_blank&quot;&gt;Google&lt;/a&gt; will launch a service just like &lt;a href=&quot;http://www.goowy.com/&quot; target=&quot;_blank&quot;&gt;Goowy&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Goowy is a full-featured online desktop, and I&#039;m *very* impressed with it. Goowy includes a cool interface, a desktop that holds links for all applications, a &#039;minis&#039; page that holds &lt;a href=&quot;http://en.wikipedia.org/wiki/Widget_(computing)&quot; target=&quot;_blank&quot;&gt;widgets&lt;/a&gt;, an IM application (connects to &lt;a href=&quot;http://messenger.yahoo.com/&quot; target=&quot;_blank&quot;&gt;Yahoo&lt;/a&gt;, &lt;a href=&quot;http://messenger.msn.com/&quot; target=&quot;_blank&quot;&gt;MSN&lt;/a&gt;, &lt;a href=&quot;http://www.aim.com/&quot; target=&quot;_blank&quot;&gt;AIM&lt;/a&gt;, and &lt;a href=&quot;http://www.icq.com/&quot; target=&quot;_blank&quot;&gt;ICQ&lt;/a&gt;), an online file storage drive (2 GB), a mail application (2 GB) that uses Adobe Macromedia Flash and does everything that MS Outlook does (drag-and-drop, mail alerts included), an address book, a calendar, and a set of nice Flash games. All applications run in windows that share screen space in your browser window. It even has a small taskbar that can be used to switch between applications. What&#039;s more - the taskbar has a Google deskbar like search box that allows you to search directly (I would rather the results showed in a window within the same window, but currently, the results open in a separate window). Here&#039;s what the taskbar looks like: &lt;a class=&quot;serendipity_image_link&quot; href=&quot;http://technyou.supersized.org/uploads/blogimages/Goowytaskbar.jpg&quot;&gt;&lt;img style=&quot;BORDER-RIGHT: 0px; PADDING-RIGHT: 5px; BORDER-TOP: 0px; PADDING-LEFT: 5px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px&quot; height=&quot;31&quot; src=&quot;http://technyou.supersized.org/uploads/blogimages/Goowytaskbar.jpg&quot; width=&quot;515&quot; alt=&quot;&quot;  /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Goowy and Google deserve each other. Firstly, the names are too phonetically similar for coincidence. Goowy would fit right into Google&#039;s tools. Even now, I can imagine a &lt;a href=&quot;http://www.writely.com/&quot; target=&quot;_blank&quot;&gt;Writely&lt;/a&gt; icon on the Goowy taskbar. This could prove quite strategic. An entire operating system on the Internet. It goes wherever you go. No need for installing anything - all you need is a PC with a browser and an Internet connection. You can do *whatever* you want to without worries of security, configuration, updates, crashes, storage space etc., etc. Google sweeps the floor from right under MS&#039;s feet, without even entering the operating system market.&lt;br /&gt;&lt;br /&gt;In the mean time, I give Goowy five stars for innovation and implementation. I can&#039;t wait to see how &lt;a href=&quot;http://www.urbandictionary.com/define.php?term=that&#039;s+the+way+the+cookie+crumbles&amp;defid=690293&quot; target=&quot;_blank&quot;&gt;the cookie crumbles&lt;/a&gt;.  
    </content:encoded>

    <pubDate>Wed, 10 May 2006 08:47:46 +0200</pubDate>
    <guid isPermaLink="false">http://technyou.supersized.org/archives/35-guid.html</guid>
    
</item>
<item>
    <title>Google Calendar Rundown</title>
    <link>http://technyou.supersized.org/archives/29-Google-Calendar-Rundown.html</link>
            <category>Google</category>
            <category>Internet</category>
    
    <comments>http://technyou.supersized.org/archives/29-Google-Calendar-Rundown.html#comments</comments>
    <wfw:comment>http://technyou.supersized.org/wfwcomment.php?cid=29</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://technyou.supersized.org/rss.php?version=2.0&amp;type=comments&amp;cid=29</wfw:commentRss>
    

    <author>nospam@example.com (Rohan Dayal)</author>
    <content:encoded>
    The &lt;a href=&quot;http://calendar.google.com/&quot; target=&quot;_blank&quot;&gt;Google Calendar&lt;/a&gt; was (finally) announced on April 13, 2006. After a couple of days of experimenting, here&#039;s what I have to say about it:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Ups&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Cool interface - The interface makes you feel as if you are running a local application - Changes are reflected &amp;#160;&amp;#160;&amp;#160;&amp;#160;immediately and stored in the background. You can continue to work.&lt;/li&gt;&lt;li&gt;&#039;Quick Add&#039;  - This is easily the pick of the host of features. All you need to type in is &#039;Lunch with Max &amp;#160;&amp;#160;&amp;#160;&amp;#160;tomorrow at 5pm&#039; and the correct entry is made.&lt;/li&gt;&lt;li&gt;Configurable views - A variety of views are offered to help you organize your schedule (surprisingly very similar &amp;#160;&amp;#160;&amp;#160;&amp;#160;to &lt;a href=&quot;http://office.microsoft.com/en-us/FX010857931033.aspx&quot; target=&quot;_blank&quot;&gt;Outlook&lt;/a&gt;).&lt;/li&gt;&lt;li&gt;Reminders - Reminder emails will ensure that you don&#039;t miss your appointments - I am more often logged into &amp;#160;&amp;#160;&amp;#160;&amp;#160;GMail than I probably will be in Calendar.&lt;/li&gt;&lt;li&gt;Calendar sharing - I can see this harboring a host of business models based on shared announcements of &amp;#160;&amp;#160;&amp;#160;&amp;#160;events - music concerts, sports events - the list goes on.&lt;/li&gt;&lt;li&gt;Full &lt;a href=&quot;http://en.wikipedia.org/wiki/API&quot; target=&quot;_blank&quot;&gt;API&lt;/a&gt; support - This opens the use of the calendar to innovative programmers everywhere.&lt;/li&gt;&lt;li&gt;GMail integration - Dates and times mentioned in your GMail can be converted into calender event with one &amp;#160;&amp;#160;&amp;#160;&amp;#160;click.&lt;/li&gt;&lt;/ul&gt;&lt;strong&gt;Downs&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Ho-hum - just another Google experiment in &lt;a href=&quot;http://en.wikipedia.org/wiki/AJAX&quot; target=&quot;_blank&quot;&gt;Ajax&lt;/a&gt;. There&#039;s hardly anything that Google is offering that is not &amp;#160;&amp;#160;&amp;#160;&amp;#160;offered by Outlook or &lt;a href=&quot;http://www.zimbra.com/&quot; target=&quot;_blank&quot;&gt;Zimbra&lt;/a&gt;. Frankly, I&#039;m getting a bit bored!&lt;/li&gt;&lt;li&gt;A downside of making the interface cool - the initial page takes ages to load - 7-10 seconds on my 128 kbps &amp;#160;&amp;#160;&amp;#160;&amp;#160;broadband.&lt;/li&gt;&lt;li&gt;The &#039;Quick Add&#039; feature has its share of bugs. &#039;Day after tomorrow&#039; is not picked up. &#039;Lunch with Max day after &amp;#160;&amp;#160;&amp;#160;&amp;#160;tomorrow at 5pm&#039; leads to an entry titled &#039;Lunch with Max day after&#039;. The entry is placed for tomorrow at 5PM.&lt;/li&gt;&lt;li&gt;Managing multiple calendars and sharing your calendar is not intuitive and is best left to experts. I don&#039;t see &amp;#160;&amp;#160;&amp;#160;&amp;#160;many people using this feature.&lt;/li&gt;&lt;/ul&gt;Though I&#039;m quite impressed with Google&#039;s version of an application that *everyone* has tried a hand in making, I still believe they could have done better.  
    </content:encoded>

    <pubDate>Sat, 15 Apr 2006 14:57:28 +0200</pubDate>
    <guid isPermaLink="false">http://technyou.supersized.org/archives/29-guid.html</guid>
    
</item>
<item>
    <title>What Do You Want to Search for Today?</title>
    <link>http://technyou.supersized.org/archives/25-What-Do-You-Want-to-Search-for-Today.html</link>
            <category>Google</category>
            <category>Intellectual Property</category>
            <category>Search</category>
    
    <comments>http://technyou.supersized.org/archives/25-What-Do-You-Want-to-Search-for-Today.html#comments</comments>
    <wfw:comment>http://technyou.supersized.org/wfwcomment.php?cid=25</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://technyou.supersized.org/rss.php?version=2.0&amp;type=comments&amp;cid=25</wfw:commentRss>
    

    <author>nospam@example.com (Rohan Dayal)</author>
    <content:encoded>
    Google&#039;s latest granted patent (&lt;a href=&quot;http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&amp;amp;Sect2=HITOFF&amp;amp;u=/netahtml/search-adv.htm&amp;amp;r=1&amp;amp;p=1&amp;amp;f=G&amp;amp;l=50&amp;amp;d=ptxt&amp;amp;S1=7,027,987&amp;amp;OS=7,027,987&amp;amp;RS=7,027,987&quot; target=&quot;_blank&quot;&gt;US Patent No. 7,027,987&lt;/a&gt;) describes searching by voice. The basic methodology is as follows:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Voice input of a user is captured (say from a microphone or during a phone &amp;#160;&amp;#160;&amp;#160;&amp;#160;call).&lt;/li&gt;&lt;li&gt;Probable words are extracted from the voice input using &lt;a href=&quot;http://en.wikipedia.org/wiki/Speech_recognition&quot; target=&quot;_blank&quot;&gt;speech recognition&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;The probable words and variants are searched for in Google.&lt;/li&gt;&lt;li&gt;Probable results are presented to the user.&lt;/li&gt;&lt;/ul&gt;The speech recognition can be customized based on the locale and/or accents. The results can also be categorized based on the probable words.&lt;br /&gt;&lt;br /&gt;I&#039;m a little confused about how Google will implement voice searching. In the presence of a keyboard, entering information would be more precise (albeit a bit slower) as compared to voice input. The accuracy of the results would, of course, be much better. I have yet to use a speech recognition engine that can construct a sentence based on what I say.&lt;br /&gt;&lt;br /&gt;The obvious implementation appears to be in mobile devices such as cellphones, PDAs and the recently launched &lt;a href=&quot;http://origamiproject.com/default.aspx&quot; target=&quot;_blank&quot;&gt;Ultra Mobile PC (UMPC)&lt;/a&gt;, which still offer clumsy keypads. Further, this service would be most useful for single answer searches - such as &lt;a href=&quot;http://www.google.com/features.html#travel&quot; target=&quot;_blank&quot;&gt;flight tracking&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/features.html#number&quot; target=&quot;_blank&quot;&gt;FedEx package tracking&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/features.html#currency&quot; target=&quot;_blank&quot;&gt;currency conversion&lt;/a&gt;, etc.&lt;br /&gt;&lt;br /&gt;Maybe someday, Google will be able to tell you &lt;a href=&quot;http://blog.outer-court.com/archive/2006-04-01-n20.html&quot; target=&quot;_blank&quot;&gt;where your car keys are&lt;/a&gt;. All you will have to do is to ask the right question.&lt;br /&gt;&lt;br /&gt;Point to be noted: &lt;a href=&quot;http://labs.google.com/people/monika/&quot; target=&quot;_blank&quot;&gt;Monica Henzinger&lt;/a&gt;, one of the inventors, looks surprisingly like one of my friends.&lt;br /&gt;Further reading: &lt;a href=&quot;http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&amp;amp;Sect2=HITOFF&amp;amp;u=/netahtml/search-adv.htm&amp;amp;r=1&amp;amp;p=1&amp;amp;f=G&amp;amp;l=50&amp;amp;d=ptxt&amp;amp;S1=7,027,987&amp;amp;OS=7,027,987&amp;amp;RS=7,027,987&quot; target=&quot;_blank&quot;&gt;US Patent No. 7,027,987&lt;/a&gt;  
    </content:encoded>

    <pubDate>Fri, 14 Apr 2006 00:53:35 +0200</pubDate>
    <guid isPermaLink="false">http://technyou.supersized.org/archives/25-guid.html</guid>
    
</item>
<item>
    <title>Searching for a Needle in a Haystack</title>
    <link>http://technyou.supersized.org/archives/22-Searching-for-a-Needle-in-a-Haystack.html</link>
            <category>Google</category>
            <category>Intellectual Property</category>
            <category>Internet</category>
    
    <comments>http://technyou.supersized.org/archives/22-Searching-for-a-Needle-in-a-Haystack.html#comments</comments>
    <wfw:comment>http://technyou.supersized.org/wfwcomment.php?cid=22</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://technyou.supersized.org/rss.php?version=2.0&amp;type=comments&amp;cid=22</wfw:commentRss>
    

    <author>nospam@example.com (Rohan Dayal)</author>
    <content:encoded>
    The news is abuzz with Google&#039;s acquisition of a new searching algorithm &#039;Orion&#039;, named after its inventor Ori Allon, a student of the University of New South Wales, and an Isreali by birth. Bill Gates had apparently praised this very algorithm a little time back, and Google has edged out Yahoo! and Microsoft who were also in the fray to get their hands on the algorithm.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.smh.com.au/news/breaking/aussies-formula-for-a-fortune/2006/04/10/1144521239582.html&quot; target=&quot;_blank&quot;&gt;This news report&lt;/a&gt; takes a crack at describing the search algorithm:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;Orion finds pages where the content is about a topic strongly related to a keyword. It then returns a section of the page, and lists other topics related to the keyword so the user can pick the most relevant.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;As you can see the paragraph creates more questions than it answers. Ori Allon has filed two patent applications for the algorithm at the &lt;a href=&quot;http://www.ipaustralia.gov.au/&quot; target=&quot;_blank&quot;&gt;Australian Patent Office&lt;/a&gt;. Sadly, these applications have not been published and are not available to the public. I&#039;d love to have a read. I spent quite some time trying to reach the text (hence the article&#039;s name) eventually gave up as patent applications are only published 18 months from the date of filing (these applications were filed in November 2005).&lt;br /&gt;&lt;br /&gt;To wrap up this article, here are a couple of tricks for searching using existing search engines. They are probably a part of some Google hacking book or the other but here goes.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;em&gt;Stopwords&lt;/em&gt; - There are some words that all search engines block by default (such as &#039;a&#039;, &#039;an&#039;, &#039;the&#039;, and &#039;and&#039;).     However, there are some words that you should avoid even though they are available - words like &#039;free&#039;,     &#039;download&#039;, &#039;latest&#039;. These terms are liberally thrown into the metadata of most webpages, and so results that &amp;#160;&amp;#160;&amp;#160;&amp;#160;have nothing to do with what you&#039;re looking for appear.&lt;/li&gt;&lt;li&gt;&lt;em&gt;The exact quote operator&lt;/em&gt; - This is a trick that I find to be quite handy when I am searching for definitions or &amp;#160;&amp;#160;&amp;#160;&amp;#160;facts or numbers. Search for a sentence construct that is followed by what you are looking for. For example, &amp;#160;&amp;#160;&amp;#160;&amp;#160;search for &lt;a href=&quot;http://www.google.com/search?q=%22the+lord+of+the+rings+was+filmed+in%22&quot; target=&quot;_blank&quot;&gt;&amp;quot;the lord of the rings was filmed in&amp;quot;&lt;/a&gt; using Google, instead of keywords like &#039;lord&#039;, &#039;rings&#039;, &#039;location&#039;, &amp;#160;&amp;#160;&amp;#160;&amp;#160;&#039;filming&#039;. You can quicly get your answer as part of the search result extract that Google provides.&lt;/li&gt;&lt;/ol&gt;Remember, the more specific/precise the query, the better the results. Happy searching!  
    </content:encoded>

    <pubDate>Tue, 11 Apr 2006 16:26:36 +0200</pubDate>
    <guid isPermaLink="false">http://technyou.supersized.org/archives/22-guid.html</guid>
    
</item>
<item>
    <title>Google's shift of focus?</title>
    <link>http://technyou.supersized.org/archives/10-Googles-shift-of-focus.html</link>
            <category>Google</category>
    
    <comments>http://technyou.supersized.org/archives/10-Googles-shift-of-focus.html#comments</comments>
    <wfw:comment>http://technyou.supersized.org/wfwcomment.php?cid=10</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://technyou.supersized.org/rss.php?version=2.0&amp;type=comments&amp;cid=10</wfw:commentRss>
    

    <author>nospam@example.com (Rohan Dayal)</author>
    <content:encoded>
    Its about time that I dedicated an entire article to &lt;a href=&quot;http://www.google.com/&quot; target=&quot;_blank&quot;&gt;Google&lt;/a&gt; (people I know would say that its rather late). Google &lt;a href=&quot;http://web.archive.org/web/19981202230410/http://www.google.com/&quot; target=&quot;_blank&quot;&gt;entered the search engine space&lt;/a&gt; quietly. &lt;a href=&quot;http://www.yahoo.com/&quot; target=&quot;_blank&quot;&gt;Yahoo!&lt;/a&gt; was the de-facto search engine (well it was more a web directory anyway). Google promised productivity from the word &#039;Search&#039; - the homepage was plain and loaded quickly, search results were served in a flash, snippets of text from search results helped flush out false positives. Advanced search options remained hidden away.&lt;br /&gt;&lt;br /&gt;Google then shifted its focus towards power users and corporate users. It launched tools such as &lt;a href=&quot;http://www.google.com/apis/&quot; target=&quot;_blank&quot;&gt;Search APIs&lt;/a&gt;, &lt;a href=&quot;http://groups.google.com/&quot; target=&quot;_blank&quot;&gt;Groups&lt;/a&gt;, &lt;a href=&quot;http://news.google.com/&quot; target=&quot;_blank&quot;&gt;News&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/apis/&quot; target=&quot;_blank&quot;&gt;Scholar&lt;/a&gt;, &lt;a href=&quot;http://www.google.com/options/specialsearches.html&quot; target=&quot;_blank&quot;&gt;Special searches&lt;/a&gt;, &lt;a href=&quot;http://mail.google.com/&quot;&gt;GMail&lt;/a&gt; (... &lt;a href=&quot;http://www.google.com/intl/en/options/&quot; target=&quot;_blank&quot;&gt;the list goes on&lt;/a&gt;) for users that needed to do more than searching.&lt;br /&gt;&lt;br /&gt;Lately, however, Google&#039;s target segment seems to be the &lt;a href=&quot;http://en.wikipedia.org/wiki/Everyman&quot; target=&quot;_blank&quot;&gt;everyman&lt;/a&gt;. Its latest tools are nothing to write home about. Particularly, I am talking about &lt;a href=&quot;http://www.blogger.com/&quot; target=&quot;_blank&quot;&gt;Blogger&lt;/a&gt;, &lt;a href=&quot;http://pages.google.com/&quot; target=&quot;_blank&quot;&gt;Pages&lt;/a&gt; and &lt;a href=&quot;http://finance.google.com/&quot; target=&quot;_blank&quot;&gt;Finance&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I tried hosting this blog on Blogger, but soon realized that Blogger did not offer much in terms of features. I could write my 20 odd lines, but that&#039;s about it. Granted, it let me customize my template, but this wasn&#039;t very easy (it took me some time to figure out the template code). All this just for appearance. I really doubt that many Blogger users play around with the template anyway.&lt;br /&gt;&lt;br /&gt;My experience with Google Pages lasted all of 15 minutes. I haven&#039;t returned since. Google Pages is your basic web page hosting service. The tools offered let you resize and recolor text, add images, and some other forgettable operations. You can&#039;t create a page that would impress *anyone*. In fact, the whole service seems more to be just another Google experiment in &lt;a href=&quot;http://technyou.supersized.org/archives/2-AJAX.html&quot; target=&quot;_blank&quot;&gt;AJAX&lt;/a&gt;. There is, of course, the 100 MB storage space that will attract users.&lt;br /&gt;&lt;br /&gt;Google re-invented the wheel with Finance. The only feature worth mentioning is the draggable listings (which is quite cool, IMHO). All the information, however, is available at other websites.&lt;br /&gt;&lt;br /&gt;According to a friend of mine, Google&#039;s strategy is quite clear. Power users may appraise and praise Google&#039;s products, but that&#039;s not where the money lies. Therefore, Google is now targeting us &lt;a href=&quot;http://en.wikipedia.org/wiki/John_Doe&quot; target=&quot;_blank&quot;&gt;John&lt;/a&gt; and &lt;a href=&quot;http://en.wikipedia.org/wiki/Jane_Doe&quot; target=&quot;_blank&quot;&gt;Jane Doe&#039;s&lt;/a&gt; that browse the Internet for information and entertainment. When we see a relevant advertisement alongside something we are reading, we invariably click on it. That is how &lt;a href=&quot;https://www.google.com/adsense/&quot; target=&quot;_blank&quot;&gt;Google makes money&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Does this mean that all future Google services will be for the common man? My guess is that Google does have a couple of aces up its sleeve. After all, Google is the company that gave us &lt;a href=&quot;http://earth.google.com/&quot; target=&quot;_blank&quot;&gt;Google Earth&lt;/a&gt;.  
    </content:encoded>

    <pubDate>Thu, 30 Mar 2006 01:51:35 +0200</pubDate>
    <guid isPermaLink="false">http://technyou.supersized.org/archives/10-guid.html</guid>
    
</item>

</channel>
</rss>