<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:gd="http://schemas.google.com/g/2005" xmlns:georss="http://www.georss.org/georss" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:thr="http://purl.org/syndication/thread/1.0"><id>tag:blogger.com,1999:blog-4907257916066055864</id><updated>2024-10-01T22:22:01.125-07:00</updated><category term="Desktop APIs Blog"/><category term="Developers"/><category term="Tips"/><category term="New gadget"/><category term="Announcements"/><category term="Articles"/><category term="Community"/><category term="SDK"/><category term="Tools"/><category term="Documentation"/><category term="Mac"/><category term="Help wanted"/><category term="Linux"/><category term="UI design"/><category term="Reviewed gadget"/><title type="text">Google Desktop APIs Blog</title><subtitle type="html">Your official source on the Google Desktop APIs.</subtitle><link href="http://googledesktopapis.blogspot.com/feeds/posts/default" rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default?redirect=false" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/" rel="alternate" type="text/html"/><link href="http://pubsubhubbub.appspot.com/" rel="hub"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default?start-index=26&amp;max-results=25&amp;redirect=false" rel="next" type="application/atom+xml"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><generator uri="http://www.blogger.com" version="7.00">Blogger</generator><openSearch:totalResults>161</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-3075106613604173288</id><published>2011-09-02T12:48:00.000-07:00</published><updated>2020-07-15T11:53:22.532-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Announcements"/><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><title type="text">Google Desktop Update</title><content type="html">In 2004, Google launched Google Desktop, a program designed to make it easy for users to search their own PCs for emails, files, music, photos, Web pages and more. 
&lt;br /&gt;
&lt;br /&gt;Desktop has been used by tens of millions of people and we’ve been humbled by its usage and great user feedback. However, over the past seven years we’ve also witnessed some big changes in how users store and access their own data, with many moving to web-based applications. There has been a significant shift from local to cloud-based storage and computing, as well as integration of Google Desktop functionality (like local search) into most modern operating systems. This is a positive development for users and we’re excited that most people now have instant access to their personal information. As such, we’ll be discontinuing support for Google Desktop, including all of the associated APIs, services, plugins and gadgets. 
&lt;br /&gt;
&lt;br /&gt;As of September 14, Google Desktop will no longer be available for download, and existing installations will not be updated to include new features or fixes.
&lt;br /&gt;
&lt;br /&gt;Thanks again to all of our users. It’s been a fun journey.
&lt;br /&gt;
&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by the Google Desktop Team&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/3075106613604173288/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/3075106613604173288" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/3075106613604173288" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/3075106613604173288" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2011/09/google-desktop-update.html" rel="alternate" title="Google Desktop Update" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-6475403964875537310</id><published>2009-05-07T15:48:00.000-07:00</published><updated>2020-07-15T11:53:23.545-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type="text">Tip: Build a quality gadget</title><content type="html">What makes a quality gadget?&lt;br /&gt;&lt;ul&gt;&lt;li&gt;      &lt;span style="font-weight: bold;"&gt;Platform specification:&lt;/span&gt; If you create a gadget only for Windows, make sure that the gadget is not installable on Mac or Linux:&lt;br /&gt;&lt;pre&gt;&amp;lt;windows minimumGadgetHostVersion="5.1.0.0"/&gt;  &amp;lt;!-- Windows is supported --&gt;&lt;br /&gt;&amp;lt;mac supported="no"/&gt;                          &amp;lt;!-- No support for Mac --&gt;&lt;/pre&gt;For more information, check the &lt;a href="http://code.google.com/apis/desktop/docs/script.html#gmanifest"&gt;gadget.gmanifest&lt;/a&gt; documentation.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Good performance:&lt;/span&gt; The gadget should make optimum use of  the hardware and operating system services. The efficiency of software can usually be greatly improved by an intelligent choice of high-level algorithms, rather than  using local "tricks" or optimizations that can lead to maintenance problems. Factors that may be of interest are response time and memory requirements.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Robustness:&lt;/span&gt; The gadget should continue to function in non-standard conditions such as incorrect user input. For example, when the user types something wrong, you can warn the user with a basic message box.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Appropriate interface:&lt;/span&gt; The gadget should be friendly and inviting to users. The design and choice of the interface should take into account the needs and capabilities of the users. Many times, gadget features are not utilized because the interface is difficult.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Documentation:&lt;/span&gt; The gadget must link to a website that provides support and information about the gadget. On the website, you can write detailed descriptions about what the gadget can do. And don’t forget to display your email address so the users can easily provide feedback about your gadget, offer to translate it, or report a bug. Try to always include a page with frequently asked questions. One good idea is to add a YouTube video about your gadget on the website to show what it can do.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span class="byline-author"&gt;Posted by Stefan Van Damme, Gadget Developer&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/6475403964875537310/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/6475403964875537310" rel="replies" title="3 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/6475403964875537310" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/6475403964875537310" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2009/05/tip-build-quality-gadget.html" rel="alternate" title="Tip: Build a quality gadget" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-2270776395048657150</id><published>2009-04-28T12:08:00.000-07:00</published><updated>2020-07-15T11:53:22.082-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><category scheme="http://www.blogger.com/atom/ns#" term="New gadget"/><title type="text">Congratulations to Adam Hotz!</title><content type="html">A new gadget by Adam Hotz is featured on the Inside Google Desktop blog. See the post &lt;a href="http://googledesktop.blogspot.com/2009/04/featured-gadget-task-list-and-timer.html"&gt;Featured gadget: Task List and Timer&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Kathy Walrath, Technical Writer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/2270776395048657150/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/2270776395048657150" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/2270776395048657150" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/2270776395048657150" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2009/04/congratulations-to-adam-hotz.html" rel="alternate" title="Congratulations to Adam Hotz!" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-4098768132760875932</id><published>2009-04-20T13:38:00.000-07:00</published><updated>2020-07-15T11:53:22.877-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><category scheme="http://www.blogger.com/atom/ns#" term="New gadget"/><title type="text">Congratulations to Rosie Ojo!</title><content type="html">Yet another gadget by Rosie Ojo is featured on the Inside Google Desktop blog. See the post &lt;a href="http://googledesktop.blogspot.com/2009/04/featured-gadget-periodic-table.html"&gt;Featured gadget: Periodic Table Interactive&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Kathy Walrath, Technical Writer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/4098768132760875932/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/4098768132760875932" rel="replies" title="1 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/4098768132760875932" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/4098768132760875932" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2009/04/congratulations-to-rosie-ojo.html" rel="alternate" title="Congratulations to Rosie Ojo!" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-7740193248294299402</id><published>2009-04-13T07:38:00.000-07:00</published><updated>2020-07-15T11:53:23.922-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><category scheme="http://www.blogger.com/atom/ns#" term="New gadget"/><title type="text">Congratulations to Teodor Filimon!</title><content type="html">A gadget by Teodor Filimon is featured on the Inside Google Desktop blog. See the post &lt;a href="http://googledesktop.blogspot.com/2009/04/featured-gadget-tabbed-todo-list.html"&gt;Featured gadget: Tabbed Todo List&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Kathy Walrath, Technical Writer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/7740193248294299402/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/7740193248294299402" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/7740193248294299402" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/7740193248294299402" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2009/04/congratulations-to-teodor-filimon.html" rel="alternate" title="Congratulations to Teodor Filimon!" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-8157770478065832138</id><published>2009-04-06T21:28:00.000-07:00</published><updated>2020-07-15T11:53:24.028-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><category scheme="http://www.blogger.com/atom/ns#" term="New gadget"/><title type="text">Congratulations to Prithvi Prabhu!</title><content type="html">A new gadget by Prithvi Prabhu is featured on the Inside Google Desktop blog. See the post &lt;a href="http://googledesktop.blogspot.com/2009/04/featured-gadget-resource-hog-tracker.html"&gt;Featured gadget: Resource Hog Tracker&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Kathy Walrath, Technical Writer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/8157770478065832138/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/8157770478065832138" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/8157770478065832138" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/8157770478065832138" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2009/04/congratulations-to-prithvi-prabhu.html" rel="alternate" title="Congratulations to Prithvi Prabhu!" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-3450333311463551549</id><published>2009-03-13T09:35:00.000-07:00</published><updated>2020-07-15T11:53:22.611-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><category scheme="http://www.blogger.com/atom/ns#" term="UI design"/><title type="text">Tip: Provide a better About dialog</title><content type="html">What information must be in a gadget's About dialog? The About dialog certainly needs to display the &lt;b&gt;gadget name&lt;/b&gt;. It should also contain:&lt;ul&gt;&lt;li&gt;The &lt;b&gt;gadget creator's name&lt;/b&gt; (your name or your company's name)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;A &lt;b&gt;short description&lt;/b&gt; of what the gadget can do&lt;br /&gt;&lt;/li&gt;&lt;li&gt;The gadget's &lt;b&gt;license&lt;/b&gt;, if any (for example, CC-License or Apache License)&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;Optionally, you can add information such as:&lt;ul&gt;&lt;li&gt;The &lt;b&gt;version number&lt;/b&gt; of the gadget&lt;br /&gt;&lt;/li&gt;&lt;li&gt;A list of &lt;b&gt;features&lt;/b&gt; introduced in this version of the gadget&lt;/li&gt;&lt;li&gt;A link to your &lt;b&gt;website&lt;/b&gt;, so happy customers can get more gadgets from you or contact you&lt;/li&gt;&lt;/ul&gt;Here's an example of a good About dialog in my &lt;a href="http://desktop.google.com/plugins/i/fastshutdown.html?hl=en" target="_blank"&gt;Fast shutdown&lt;/a&gt; gadget.&lt;div&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_eeoi-8Kj-hI/SbqN0YWynJI/AAAAAAAAAX8/4CQyPN401iA/s1600-h/svd.png"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 354px; height: 319px;" src="http://4.bp.blogspot.com/_eeoi-8Kj-hI/SbqN0YWynJI/AAAAAAAAAX8/4CQyPN401iA/s400/svd.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5312714641467677842" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Stefan Van Damme, Gadget Developer &lt;/span&gt;&lt;br /&gt;&lt;/div&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/3450333311463551549/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/3450333311463551549" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/3450333311463551549" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/3450333311463551549" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2009/03/tip-provide-better-about-dialog.html" rel="alternate" title="Tip: Provide a better About dialog" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://4.bp.blogspot.com/_eeoi-8Kj-hI/SbqN0YWynJI/AAAAAAAAAX8/4CQyPN401iA/s72-c/svd.png" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-6514960356562425088</id><published>2009-02-23T09:48:00.000-08:00</published><updated>2020-07-15T11:53:23.572-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><category scheme="http://www.blogger.com/atom/ns#" term="Tools"/><title type="text">Tip: Use keyboard shortcuts in the Gadget Designer</title><content type="html">When writing code in the Google Desktop Gadget Designer, you most likely have used the Ctrl+C and Ctrl+V keyboard shortcuts to copy and paste text.&lt;br /&gt;&lt;br /&gt;Here are some other shortcuts to work faster in the Gadget Designer. They work only while editing text such as JavaScript and XML files.&lt;br /&gt;&lt;br /&gt;&lt;table&gt; &lt;tbody&gt;&lt;tr&gt;&lt;td width="20%"&gt;Ctrl+D&lt;/td&gt;&lt;td&gt;Inserts a copy of the current line below the current line&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Ctrl+L&lt;/td&gt;&lt;td&gt; Deletes the current line&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Ctrl+T&lt;/td&gt;&lt;td&gt; Swaps the current line and the line above it&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Ctrl+[0-9] &lt;/td&gt;&lt;td&gt; Switches the current tab. For example, if the Preview window is positioned in the second tab, Ctrl+2 switches to that tab.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Stefan Van Damme, Gadget Developer&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/6514960356562425088/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/6514960356562425088" rel="replies" title="1 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/6514960356562425088" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/6514960356562425088" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2009/02/tip-use-keyboard-shortcuts-in-gadget.html" rel="alternate" title="Tip: Use keyboard shortcuts in the Gadget Designer" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-5053280408122058386</id><published>2009-02-17T11:38:00.000-08:00</published><updated>2020-07-15T11:53:23.118-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Announcements"/><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="SDK"/><category scheme="http://www.blogger.com/atom/ns#" term="Tools"/><title type="text">A completely new Gadget Designer</title><content type="html">A new and improved &lt;a href="http://code.google.com/apis/desktop/docs/designer.html"&gt;Google Desktop Gadget Designer&lt;/a&gt; is out, with a couple of major new features. The Designer editor now includes autocompletion support and function call tips for the &lt;a href="http://code.google.com/apis/desktop/docs/gadgetapi.html"&gt;Google Desktop Gadget API&lt;/a&gt; and the JavaScript language.&lt;br /&gt;&lt;br /&gt;You can start autocompletion by typing the "." key or pressing Ctrl+Space. A list appears that displays objects, methods, properties, events, and constants to choose from, along with visual indicators to help you distinguish between them. Non-object related variables and functions are also dynamically recognized as you type them, and you'll see autocompletion suggestions based on your current scope. The following screenshot shows how Designer displays autocompletion suggestions for &lt;a href="http://code.google.com/apis/desktop/docs/gadget_apiref.html#view"&gt;&lt;code&gt;view&lt;/code&gt;&lt;/a&gt; object properties and methods that start with "s".&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_eeoi-8Kj-hI/SZsTl7owJ6I/AAAAAAAAAXs/xyYDbB5iNDs/s1600-h/image1.png"&gt;&lt;img src="http://1.bp.blogspot.com/_eeoi-8Kj-hI/SZsTl7owJ6I/AAAAAAAAAXs/xyYDbB5iNDs/s400/image1.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5303854528543598498" style="cursor: pointer; width: 299px; height: 127px; " /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Call tips display function prototypes and short descriptions. They appear when you type an opening brace "(" or press Shift+Space. The following screenshot shows the call tip for the &lt;code&gt;view.setInterval()&lt;/code&gt; method.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_eeoi-8Kj-hI/SZsT1WqqdjI/AAAAAAAAAX0/SnCC7k_w-Rc/s1600-h/image2.png"&gt;&lt;img src="http://1.bp.blogspot.com/_eeoi-8Kj-hI/SZsT1WqqdjI/AAAAAAAAAX0/SnCC7k_w-Rc/s400/image2.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5303854793497409074" style="cursor: pointer; width: 327px; height: 87px; " /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;We sincerely hope that these new features will save you a lot of time while developing gadgets, making it that much more fun to bring your ideas to life. Please download the &lt;a href="http://desktop.google.com/downloadsdksubmit"&gt;latest SDK&lt;/a&gt; and try out the new Gadget Designer.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt; Posted by Paneendra Ba, Software Engineer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/5053280408122058386/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/5053280408122058386" rel="replies" title="10 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/5053280408122058386" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/5053280408122058386" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2009/02/completely-new-gadget-designer.html" rel="alternate" title="A completely new Gadget Designer" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://1.bp.blogspot.com/_eeoi-8Kj-hI/SZsTl7owJ6I/AAAAAAAAAXs/xyYDbB5iNDs/s72-c/image1.png" width="72"/><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-7723986284036697847</id><published>2009-02-09T15:05:00.000-08:00</published><updated>2020-07-15T11:53:23.895-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Community"/><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><title type="text">IIT Google Desktop Developer Challenge II (2008)</title><content type="html">Google Desktop has &lt;a href="http://desktop.google.com/ambassadors"&gt;active ambassadors&lt;/a&gt; all over the world who have successfully held programming contests and seminars at their schools.&lt;br /&gt;&lt;br /&gt;As a stepping stone for bigger events, we held IIT Google Desktop Developer Challenge II at &lt;a href="http://www.iit.ac.lk/"&gt;Informatics Institute of Technology (IIT)&lt;/a&gt;, Sri Lanka, last summer.&lt;br /&gt;&lt;br /&gt;This is the second event we organized at IIT Sri Lanka; you can &lt;a href="http://googledesktopapis.blogspot.com/2008/05/iit-google-desktop-gadget-challenge-i.html"&gt;read about the first event&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;IIT Google Desktop Developer Challenge II was a Google Desktop Gadget contest organized for student developers at our institute. Any student enrolled at IIT was eligible to take part, and the main purpose of the contest was to inspire new developers to try the &lt;a href="http://code.google.com/apis/desktop/"&gt;Google Desktop APIs&lt;/a&gt; and develop gadgets.&lt;br /&gt;&lt;br /&gt;First, the students who wished to participate in this contest had to hand in proposals, which contained a brief introduction to the gadget they planned to develop. After that, it was time for them to develop their gadgets. The completed gadgets were forwarded to a panel of experts including &lt;a href="http://groups.google.com/group/google-desktop-developer"&gt;API Gurus&lt;/a&gt; and the Google Desktop team. All these steps were done online through the &lt;a href="http://gdc.appspot.com/"&gt;official website&lt;/a&gt; for the contest, powered by &lt;a href="http://code.google.com/appengine/"&gt;Google App Engine&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;And now, we are very happy to announce the winners of the second successful ambassador event in Sri Lanka.      &lt;br /&gt;&lt;br /&gt;Nadeeshani Jayathilaka was selected as third runner up for the gadget &lt;a href="http://nadeeshanistar.googlepages.com/GreetingBird.gg"&gt;Greeting Bird&lt;/a&gt;, while Shazin was selected as the second runner up the gadget &lt;a href="http://shazin.sadakath.googlepages.com/Radio.gg"&gt;Radio Pro&lt;/a&gt;. The first runner up was Hanitha Gnanathesigar for her gadget &lt;a href="http://ghanitha.googlepages.com/GHealthNFitness.gg"&gt;GHealth N Fitness&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The winner of the contest was Lakmal Jayathilaka, who created the gadget &lt;a href="http://desktop.google.com/plugins/i/text2wav_2832.html"&gt;Text 2 Wav Converter&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_eeoi-8Kj-hI/SZC4xVeeSyI/AAAAAAAAAXU/xDoIt_zdhgM/s1600-h/iit.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 400px; height: 246px;" src="http://2.bp.blogspot.com/_eeoi-8Kj-hI/SZC4xVeeSyI/AAAAAAAAAXU/xDoIt_zdhgM/s400/iit.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5300939919133133602" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;We congratulate all the winners and would like to thank everyone who took part in this competition and who helped to make this event a success. You can view &lt;a href="http://picasaweb.google.com/llahiru/GDDevChallengeII2008"&gt;photos of the award ceremony&lt;/a&gt; on Picasa Web Albums. Last but not least, a special thanks to the Google Desktop team for the greatest support given. &lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Lahiru Lakmal Priyadarshana, Google Desktop Ambassador and Gadget Developer&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/7723986284036697847/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/7723986284036697847" rel="replies" title="2 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/7723986284036697847" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/7723986284036697847" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2009/02/iit-google-desktop-developer-challenge.html" rel="alternate" title="IIT Google Desktop Developer Challenge II (2008)" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://2.bp.blogspot.com/_eeoi-8Kj-hI/SZC4xVeeSyI/AAAAAAAAAXU/xDoIt_zdhgM/s72-c/iit.jpg" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-3594353975236656460</id><published>2009-01-27T10:08:00.000-08:00</published><updated>2020-07-15T11:53:22.665-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Announcements"/><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="New gadget"/><title type="text">Open source from the get-go</title><content type="html">In the past few weeks, we launched the &lt;a href="http://code.google.com/p/google-youtube-gadget/" title="YouTube" target="_blank"&gt;YouTube&lt;/a&gt;, &lt;a href="http://code.google.com/p/google-calendar-gadget/" title="Calendar" target="_blank"&gt;Calendar&lt;/a&gt;, and &lt;a href="http://code.google.com/p/google-docslist-gadget/" title="Google Docs" target="_blank"&gt;Google Docs&lt;/a&gt; gadgets, making them open source from the very beginning. We also wrote a &lt;a href="http://google-opensource.blogspot.com/2009/01/open-sourcing-google-desktop-gadgets.html" title="short story"&gt;short story&lt;/a&gt; on the Google Open Source blog about our experiences with these projects and how open sourcing benefits the developer community. Once again, we'd like to encourage everyone to &lt;a href="http://code.google.com/apis/desktop/articles/4.html" title="open source your gadgets"&gt;open source your gadgets&lt;/a&gt; and share your code. If you're new to Desktop gadgets, looking at &lt;a href="http://code.google.com/hosting/gadgets.html" title="open sourced gadgets"&gt;open sourced gadgets&lt;/a&gt; is a great way to learn.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by James Yum, Developer Programs Engineer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/3594353975236656460/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/3594353975236656460" rel="replies" title="1 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/3594353975236656460" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/3594353975236656460" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2009/01/open-source-from-get-go.html" rel="alternate" title="Open source from the get-go" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-1839892003577328419</id><published>2008-12-11T10:52:00.000-08:00</published><updated>2020-07-15T11:53:21.896-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Announcements"/><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="New gadget"/><title type="text">YouTube gadget open sourced</title><content type="html">Wanted to let you all know that the just-released &lt;a href="http://desktop.google.com/plugins/i/youtubegadget.html"&gt;YouTube gadget&lt;/a&gt; was open sourced at launch. Please check out the &lt;a href="http://code.google.com/p/google-youtube-gadget/"&gt;Google Code project&lt;/a&gt; and the &lt;a href="http://apiblog.youtube.com/2008/12/youtube-google-desktop-gagdet.html"&gt;announcement&lt;/a&gt; on the YouTube API blog.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt; Posted by James Yum, Developer Programs Engineer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/1839892003577328419/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/1839892003577328419" rel="replies" title="1 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/1839892003577328419" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/1839892003577328419" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/12/youtube-gadget-open-sourced.html" rel="alternate" title="YouTube gadget open sourced" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-2398205862754046615</id><published>2008-12-09T13:40:00.000-08:00</published><updated>2020-07-15T11:53:22.134-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Articles"/><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><title type="text">Aiming for a better user experience</title><content type="html">Although Google Desktop gadgets are getting easier and easier to develop, you still might want to spend time on improving the overall experience of using your gadget. There are a lot of features you may want to consider, and many resources exist to help you implement these features.&lt;br /&gt;&lt;br /&gt;For example, my latest article about &lt;a href="http://code.google.com/apis/desktop/articles/e20.html"&gt;Improving User Experience&lt;/a&gt; deals with following useful standards in your gadget. It describes ways to achieve attractive and intuitive interfaces, gather user feedback, and implement an update system. It also touches on related topics such as attracting users and planning for updates. The article has links to other articles and API references, where you can find further details.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Teodor "Teo" Filimon, Gadget Developer&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/2398205862754046615/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/2398205862754046615" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/2398205862754046615" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/2398205862754046615" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/12/aiming-for-better-user-experience.html" rel="alternate" title="Aiming for a better user experience" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-7571822710095695282</id><published>2008-12-03T09:31:00.000-08:00</published><updated>2020-07-15T11:53:23.762-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Community"/><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><title type="text">Report: Gadget Development Workshop at Vellore Institute of Technology</title><content type="html">It was my immense pleasure to conduct this Desktop gadget development workshop at &lt;a href="http://www.vit.ac.in/"&gt;Vellore Institute of Technology&lt;/a&gt; (VIT) on 22 Oct as part of Phreak 08. Phreak is a National Level Technical Symposium organized by VIT every year to discuss, share, and learn about the latest and future technologies. The time allotted for this workshop was 3 hours, including a 15-minute break.&lt;br /&gt;&lt;br /&gt;It started off with a 45-minute technical presentation similar to what was presented at &lt;a href="http://www.youtube.com/watch?v=bkvyG2eAvt4"&gt;Google Developer Day&lt;/a&gt;. I covered the basic introduction, structure, and benefits of Google Desktop gadgets. This also included a demo of the &lt;a href="http://code.google.com/apis/desktop/docs/designer.html"&gt;Designer&lt;/a&gt; and an explanation of developer resources. I showed the &lt;a href="http://code.google.com/apis/desktop/docs/gadget_apiref.html"&gt;Gadget API Reference page&lt;/a&gt;, and from that we used a few API methods to quickly create the &lt;a href="http://desktop.google.com/plugins/i/memorysmiley.html"&gt;Memory Smiley&lt;/a&gt; gadget.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://2.bp.blogspot.com/_eeoi-8Kj-hI/STbEXdto0MI/AAAAAAAAAU8/yPNM98HkAoU/s200/1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5275619920903196866" style="width: 100px; height: 56px; " /&gt; &lt;img src="http://1.bp.blogspot.com/_eeoi-8Kj-hI/STbEgZMnpGI/AAAAAAAAAVM/XXYRIEfN4Ls/s200/3.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5275620074309788770" style="width: 100px; height: 56px; " /&gt; &lt;img src="http://1.bp.blogspot.com/_eeoi-8Kj-hI/STbEctuGh6I/AAAAAAAAAVE/yTfWPcuePLE/s200/2.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5275620011099457442" style="width: 100px; height: 56px; " /&gt; &lt;img src="http://1.bp.blogspot.com/_eeoi-8Kj-hI/STbEkY3vJvI/AAAAAAAAAVU/-FRvtmHRuMY/s200/4.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5275620142941677298" style="width: 100px; height: 56px; " /&gt;&lt;br /&gt;&lt;br /&gt;The second part of the session was a fun-filled one. I started with the basics of XML and JavaScript, as most of the students were in their first year and were new to these. After that, I opened the Designer and added some images and a single button. Then students were challenged to come up with ideas on how to develop a gadget out of it. We received more than 35 ideas. Some had real potential, and others were just funny.&lt;br /&gt;&lt;br /&gt;A few of the ideas: a dictionary with language converter, a gadget to automatically download videos as you watch them on YouTube/Orkut, phone dialers, file restorer, and a shortcut to clear history. Some of the ideas that came up — such as a to-do list, a weather gadget, and a program runner — already existed in the gallery. We had a few Google T-shirts and gave them away to people that suggested the best ideas.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://3.bp.blogspot.com/_eeoi-8Kj-hI/STbEyE6WMZI/AAAAAAAAAV0/GwOOhiOQrfI/s200/2-4.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5275620378102083986" style="width: 100px; height: 56px; " /&gt; &lt;img src="http://3.bp.blogspot.com/_eeoi-8Kj-hI/STbEuGaOC_I/AAAAAAAAAVs/qvTuSql6VlE/s200/2-3.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5275620309784726514" style="width: 100px; height: 56px; " /&gt; &lt;img src="http://2.bp.blogspot.com/_eeoi-8Kj-hI/STbEq3y68TI/AAAAAAAAAVk/oilO8Hc208I/s200/2-2.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5275620254322192690" style="width: 100px; height: 56px; " /&gt; &lt;img src="http://2.bp.blogspot.com/_eeoi-8Kj-hI/STbEoDf1rEI/AAAAAAAAAVc/wrc3PXT9uA4/s200/2-1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5275620205923773506" style="width: 100px; height: 56px; " /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://4.bp.blogspot.com/_eeoi-8Kj-hI/STbE4ol1PkI/AAAAAAAAAV8/i1nasUqPKP8/s320/3-1.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5275620490758929986" style="width: 320px; height: 200px; " /&gt; &lt;br /&gt;&lt;br /&gt;After the brainstorming session, we took two of the ideas and implemented them on the spot. One was &lt;a href="http://gdgadgets-bijoy.googlecode.com/svn/trunk/Workshop_VIT_22Oct2008/Thought%20for%20the%20click.gg"&gt;Thought for the Click&lt;/a&gt;; the other was a &lt;a href="http://gdgadgets-bijoy.googlecode.com/svn/trunk/Workshop_VIT_22Oct2008/Play%20Audio.gg"&gt;Simple Music Player&lt;/a&gt;. I've posted the slides and the code from the workshop in &lt;a href="http://gadgetsbybijoy.blogspot.com/2008/10/slides-and-code-for-google-desktop.html"&gt;my blog&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I would like to thank the ambassadors, &lt;a href="http://desktop.google.com/author/287.html"&gt;Vishnu S&lt;/a&gt; and &lt;a href="http://desktop.google.com/author/378.html"&gt;Ajay Amritraj&lt;/a&gt;, who made this all possible. They did all they could to book the hall and get people registered. It was an opportunity for me to showcase my passion for sharing technology. It was a great experience, and I would love to conduct more of these kind of workshops in the future.&lt;br /&gt;&lt;br /&gt;If you'd like to see more photos, here's the &lt;a href="http://picasaweb.google.com/jsplashindia/GoogleDesktopGadgetsWorkshopAtVIT"&gt;complete set of pictures&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Bijoy Thangaraj R, Gadget Developer &amp;amp; API Guru&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/7571822710095695282/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/7571822710095695282" rel="replies" title="4 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/7571822710095695282" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/7571822710095695282" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/12/report-gadget-development-workshop-at.html" rel="alternate" title="Report: Gadget Development Workshop at Vellore Institute of Technology" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://2.bp.blogspot.com/_eeoi-8Kj-hI/STbEXdto0MI/AAAAAAAAAU8/yPNM98HkAoU/s72-c/1.jpg" width="72"/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-417883962576932547</id><published>2008-11-21T11:38:00.000-08:00</published><updated>2020-07-15T11:53:22.904-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><category scheme="http://www.blogger.com/atom/ns#" term="New gadget"/><title type="text">Congratulations to Edwin Lee!</title><content type="html">A new gadget by Edwin Lee is featured on the Inside Google Desktop blog. See the post &lt;a href="http://googledesktop.blogspot.com/2008/11/featured-gadget-on-screen-ruler.html"&gt;Featured gadget: On-Screen Ruler&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Kathy Walrath, Technical Writer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/417883962576932547/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/417883962576932547" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/417883962576932547" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/417883962576932547" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/11/congratulations-to-edwin-lee.html" rel="alternate" title="Congratulations to Edwin Lee!" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-2912382840367609052</id><published>2008-11-20T16:08:00.000-08:00</published><updated>2020-07-15T11:53:22.372-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Announcements"/><category scheme="http://www.blogger.com/atom/ns#" term="Community"/><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><title type="text">Google Developer Day contest results</title><content type="html">Thanks to everyone who attended the Developer Day India codelab sessions and participated in the gadget contest. We've completed the judging and have awarded prizes. Here are the final results:&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-size:large;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;1st place&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href="http://desktop.google.com/plugins/i/mwhogtracker_2745.html"&gt;Resource Hog Tracker&lt;/a&gt; by Prithvi Prabhu&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://desktop.google.com/plugins/images/mwhogtracker_1157.gif"&gt;&lt;img src="http://desktop.google.com/plugins/images/mwhogtracker_1157.gif" border="0" alt="" style="cursor: pointer; width: 300px; height: 225px; " /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-size:large;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;2nd place&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href="http://desktop.google.com/plugins/i/kidstypingtutor.html"&gt;Typing Tutor&lt;/a&gt; by Shourya Sarcar&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://desktop.google.com/plugins/images/kidstypingtutor.gif"&gt;&lt;img src="http://desktop.google.com/plugins/images/kidstypingtutor.gif" border="0" alt="" style="cursor: pointer; width: 300px; height: 225px; " /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-size:large;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;3rd place (tie)&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;br /&gt;&lt;a href="http://desktop.google.com/plugins/i/roman_2714.html"&gt;Number Converter&lt;/a&gt; by Sathish Kulal&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://desktop.google.com/plugins/images/roman_1014.gif"&gt;&lt;img src="http://desktop.google.com/plugins/images/roman_1014.gif" border="0" alt="" style="cursor: pointer; width: 300px; height: 225px; " /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;and &lt;/span&gt;&lt;a href="http://desktop.google.com/plugins/i/indicsearch.html"&gt;Indic Search&lt;/a&gt; by Amit Agarwal&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_eeoi-8Kj-hI/SSWWo1DqmuI/AAAAAAAAAU0/04y0OganOZU/s1600-h/IndicSearch.png"&gt;&lt;img src="http://1.bp.blogspot.com/_eeoi-8Kj-hI/SSWWo1DqmuI/AAAAAAAAAU0/04y0OganOZU/s400/IndicSearch.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5270784567088421602" style="cursor: pointer; width: 276px; height: 287px; " /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;As far as I know, all of these gadgets were created by newcomers to the Desktop Gadget APIs. The entire Google Developer Day team was continually impressed by the skill level of the attendees, and these gadgets prove that point.&lt;br /&gt;&lt;br /&gt;Many thanks to all the participants, and we hope to see you all next year!&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by James Yum, Developer Programs Engineer (Google Desktop Team)&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/2912382840367609052/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/2912382840367609052" rel="replies" title="4 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/2912382840367609052" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/2912382840367609052" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/11/google-developer-day-contest-results.html" rel="alternate" title="Google Developer Day contest results" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://1.bp.blogspot.com/_eeoi-8Kj-hI/SSWWo1DqmuI/AAAAAAAAAU0/04y0OganOZU/s72-c/IndicSearch.png" width="72"/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-7274058882894138245</id><published>2008-11-14T09:42:00.000-08:00</published><updated>2020-07-15T11:53:23.735-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><category scheme="http://www.blogger.com/atom/ns#" term="New gadget"/><title type="text">Congratulations to Stefan Van Damme!</title><content type="html">A new gadget by Stefan Van Damme (aka Stefan vd) is featured on the Inside Google Desktop blog. See the post &lt;a href="http://googledesktop.blogspot.com/2008/11/featured-gadget-vtm-wheater-map.html"&gt;Featured gadget: VM Wheater Map&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Kathy Walrath, Technical Writer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/7274058882894138245/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/7274058882894138245" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/7274058882894138245" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/7274058882894138245" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/11/congratulations-to-stefan-van-damme.html" rel="alternate" title="Congratulations to Stefan Van Damme!" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-7666296883473162993</id><published>2008-11-10T15:18:00.000-08:00</published><updated>2020-07-15T11:53:23.842-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><title type="text">Submit your winter holiday gadgets</title><content type="html">It is again that time of the year when we ask the developer community to unleash their creativity and submit holiday-themed gadgets.&lt;br /&gt;&lt;br /&gt;In the past we've featured gadgets for a &lt;a href="http://desktop.google.com/plugins/c/sidebar/holiday.html"&gt;long list of holidays&lt;/a&gt; such as Valentine's Day, Halloween, New Year, Christmas, and Hanukkah; these gadgets were a great success. Many thanks to the developers who submitted them! &lt;br /&gt;&lt;br /&gt;We would like to repeat this feat with the upcoming winter holidays and New Year 2009. If you have plans to develop a gadget, please let us know. We'll feature holiday gadgets and &lt;a href="http://googledesktop.blogspot.com/2007/12/desktop-gadgets-for-holiday-season.html"&gt;blog about them&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Please submit your gadgets by December 3, 2008. We're looking forward to seeing what you come up with. Any questions? You can send them to gd-developer AT google DOT com. &lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Mihai Ionescu, Software Engineer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/7666296883473162993/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/7666296883473162993" rel="replies" title="4 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/7666296883473162993" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/7666296883473162993" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/11/submit-your-winter-holiday-gadgets.html" rel="alternate" title="Submit your winter holiday gadgets" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-2782165252573570041</id><published>2008-11-06T08:02:00.000-08:00</published><updated>2020-07-15T11:53:22.293-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Community"/><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><title type="text">New Hall of Fame leader: Alexey Polkovnikov</title><content type="html">We would like congratulate &lt;a href="http://desktop.google.com/author/22.html"&gt;Alexey Polkovnikov&lt;/a&gt;, who has grabbed the top spot in the &lt;a href="http://desktop.google.com/authors"&gt;Developer Hall of Fame&lt;/a&gt;. The Google Desktop team thanks Alexey for creating so many popular, useful gadgets!&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by James Yum, Developer Programs Engineer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/2782165252573570041/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/2782165252573570041" rel="replies" title="2 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/2782165252573570041" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/2782165252573570041" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/11/new-hall-of-fame-leader-alexey.html" rel="alternate" title="New Hall of Fame leader: Alexey Polkovnikov" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-3001091395584514001</id><published>2008-11-03T11:47:00.000-08:00</published><updated>2020-07-15T11:53:22.452-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type="text">Tip: Automatically update gadget screenshots</title><content type="html">When you submit your gadget, you specify URLs for large and small screenshots of the gadget. These screenshots represent your gadget in listings such as the Add gadgets window, online gadget directories, and the web page that's automatically generated for each gadget. &lt;br /&gt;&lt;br /&gt;Unfortunately, there was no direct way to update these locations should they ever change &amp;mdash; until now. This tip tells you how to update the screenshot URLs.&lt;br /&gt;&lt;br /&gt;Add these tags to the gadget.gmanifest of your published .gg file:&lt;pre&gt;&amp;lt;about&gt;&lt;br /&gt;  ...&lt;br /&gt;  &amp;lt;thumbnailUrl&gt;http://mysite.appspot.com/80x60_screen.png&amp;lt;/thumbnailUrl&gt;&lt;br /&gt;  &amp;lt;screenshotUrl &gt;http://mysite.appspot.com/300x255_screen.png&amp;lt;/screenshotUrl&gt;&lt;br /&gt;  ...&lt;br /&gt;&amp;lt;/about&gt;&lt;br /&gt;&lt;/pre&gt;The gadget gallery has the smarts to pick up these changes and use the URLs you specify to update the images in the gallery. Check out the &lt;a href="http://code.google.com/apis/desktop/docs/script.html#gmanifest"&gt;gadget.gmanifest documentation&lt;/a&gt; for more details.&lt;br /&gt;&lt;br /&gt;Just a reminder, the small screenshot should be &lt;b&gt;80x60 pixels&lt;/b&gt;. Also, be sure to take a look at this &lt;a href="http://googledesktopapis.blogspot.com/2008/06/tip-submit-better-screenshots.html"&gt;classic tip&lt;/a&gt; about submitting better screenshots.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by James Yum, Developer Programs Engineer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/3001091395584514001/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/3001091395584514001" rel="replies" title="1 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/3001091395584514001" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/3001091395584514001" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/11/tip-automatically-update-gadget.html" rel="alternate" title="Tip: Automatically update gadget screenshots" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-6738120385590634476</id><published>2008-10-28T14:28:00.000-07:00</published><updated>2020-07-15T11:53:23.627-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><category scheme="http://www.blogger.com/atom/ns#" term="New gadget"/><title type="text">Congratulations to Andreas Horlacher!</title><content type="html">Another new gadget by Andreas Horlacher is featured on the Inside Google Desktop blog. See the post &lt;a href="http://googledesktop.blogspot.com/2008/10/featured-gadget-radio-energy-zrich.html"&gt;Featured gadget: Radio Energy Zürich&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Kathy Walrath, Technical Writer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/6738120385590634476/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/6738120385590634476" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/6738120385590634476" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/6738120385590634476" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/10/congratulations-to-andreas-horlacher_28.html" rel="alternate" title="Congratulations to Andreas Horlacher!" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-2811035646792119730</id><published>2008-10-24T15:31:00.000-07:00</published><updated>2020-07-15T11:53:22.319-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Articles"/><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><title type="text">"Vox populi" applies everywhere</title><content type="html">"Vox populi" is a Latin phrase that means "the voice of the people" or, in our case, the voice of the users. A good way to tap into this great source of feedback and to get a gratifying feeling, as well, is to compile accurate statistics about how many people install your gadgets and how long people keep your gadgets.&lt;br /&gt;&lt;br /&gt;My latest article, &lt;a href="http://code.google.com/apis/desktop/articles/e19.html"&gt;Gadget Usage Stats&lt;/a&gt;, details a possible implementation of such a system, keeping user privacy in mind. It isn't too complicated; you can reduce it to 3 levels: the gadget, a server-side script, and a database. The interesting part is how all the elements communicate with each other. After reading this article, you should be able to set up this system for your own gadgets. You can take advantage of the system's flexibility by changing it to meet your own needs.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Teodor Filimon, Gadget Developer&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/2811035646792119730/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/2811035646792119730" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/2811035646792119730" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/2811035646792119730" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/10/vox-populi-applies-everywhere.html" rel="alternate" title="&quot;Vox populi&quot; applies everywhere" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-7765538218464653252</id><published>2008-10-20T09:08:00.000-07:00</published><updated>2020-07-15T11:53:23.949-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><category scheme="http://www.blogger.com/atom/ns#" term="New gadget"/><title type="text">Congratulations to Rosie Ojo!</title><content type="html">A new gadget by Rosie Ojo is featured on the Inside Google Desktop blog. See the post &lt;a href="http://googledesktop.blogspot.com/2008/10/featured-gadget-precious-metals-spot.html"&gt;Featured gadget: Precious Metals Spot Prices&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Kathy Walrath, Technical Writer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/7765538218464653252/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/7765538218464653252" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/7765538218464653252" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/7765538218464653252" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/10/congratulations-to-rosie-ojo.html" rel="alternate" title="Congratulations to Rosie Ojo!" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-3408056691979692533</id><published>2008-10-16T03:32:00.000-07:00</published><updated>2020-07-15T11:53:22.585-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Announcements"/><category scheme="http://www.blogger.com/atom/ns#" term="Community"/><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><title type="text">Update: Google Developer Day 2008 India</title><content type="html">&lt;p&gt;Our very first &lt;a href="http://code.google.com/intl/en_in/events/developerday/2008/home.html"&gt;Developer Day&lt;/a&gt; in India will be held on October 18, 2008 at the &lt;a href="http://code.google.com/intl/en_in/events/developerday/2008/location.html"&gt;Chancery Pavilion&lt;/a&gt;, Bangalore, India.&lt;br /&gt;&lt;br /&gt;This is a very special Developer Day for Google Desktop, as many of our team members work out of the Google Bangalore office. If you are going to attend or happen to know someone who is, allow me to point out a couple of can't-miss sessions:&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Rajesh Chandrashekaran is scheduled to hold a &lt;a href="http://code.google.com/intl/en_in/events/developerday/2008/sessions.html"&gt;tech talk&lt;/a&gt; about Google Desktop gadgets. The talk introduces the Desktop gadgets platform and provides an overview of the APIs, tools, and incentives for creating gadgets.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;I am conducting two codelab sessions throughout the afternoon, which are actually going to be mini gadget programming competitions. You can be the inaugural winner of the "Google Desktop award for codelab excellence at Developer Day" and win a fabulous prize!&lt;/li&gt;&lt;/ul&gt; &lt;div&gt;Unfortunately, we've reached capacity and are no longer accepting registrations. However, if you are an &lt;a href="http://desktop.google.com/authors"&gt;established gadget developer&lt;/a&gt;, please send a note to gd-developer AT google DOT com, and we'll try to sneak you in through the side door.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt; &lt;div&gt;धन्यवाद (Thank you)&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by James Yum, Developer Programs Engineer (Google Desktop Team)&lt;/span&gt;&lt;/div&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/3408056691979692533/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/3408056691979692533" rel="replies" title="1 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/3408056691979692533" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/3408056691979692533" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/10/update-google-developer-day-2008-india.html" rel="alternate" title="Update: Google Developer Day 2008 India" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4907257916066055864.post-640892334360981646</id><published>2008-10-13T12:38:00.000-07:00</published><updated>2020-07-15T11:53:23.465-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Desktop APIs Blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Developers"/><category scheme="http://www.blogger.com/atom/ns#" term="New gadget"/><title type="text">Congratulations to Mehdy Bohlool!</title><content type="html">A new gadget by Mehdy Bohlool is featured on the Inside Google Desktop blog. See the post &lt;a href="http://googledesktop.blogspot.com/2008/10/featured-gadget-persian-calendar.html"&gt;Featured gadget: Persian Calendar&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Posted by Kathy Walrath, Technical Writer (Google Desktop Team)&lt;/span&gt;</content><link href="http://googledesktopapis.blogspot.com/feeds/640892334360981646/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/><link href="http://www.blogger.com/comment/fullpage/post/4907257916066055864/640892334360981646" rel="replies" title="0 Comments" type="text/html"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/640892334360981646" rel="edit" type="application/atom+xml"/><link href="http://www.blogger.com/feeds/4907257916066055864/posts/default/640892334360981646" rel="self" type="application/atom+xml"/><link href="http://googledesktopapis.blogspot.com/2008/10/congratulations-to-mehdy-bohlool.html" rel="alternate" title="Congratulations to Mehdy Bohlool!" type="text/html"/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image height="16" rel="http://schemas.google.com/g/2005#thumbnail" src="https://img1.blogblog.com/img/blank.gif" width="16"/></author><thr:total>0</thr:total></entry></feed>