SlideShare una empresa de Scribd logo
1 de 52
iGoogle Google Developers Day Haifa Ran Tavory
Google Technologies ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
What are Gadgets? ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?>  <Module>   <ModulePrefs title=“Hello World&quot; />    <Content type=&quot;html”><![CDATA[ <b>Hello World!</b> ]]></Content>  </Module>
Examples of Google Gadgets
Where do Google Gadgets live? ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
iGoogle homepage…
Third-party websites… http://gadgetryout.blogspot.com http://www.puertovallarta.net
Google Desktop…
Mac OS X Dashboard…
Instant Dashboard capabilities ,[object Object]
Instant Dashboard capabilities ,[object Object]
Full application (gadget interaction) ,[object Object]
Who writes gadgets? ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Gadgets are open ,[object Object],[object Object],[object Object]
“ Hello world” gadget ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
The Google Gadgets Editor ,[object Object]
API services ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Anatomy of a Gadget User-configurable preferences Gadget content Gadget directory meta-data
Gadget UserPrefs ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<UserPref name=“saved”  datatype=“hidden”  default_value=“0” />
Creating a Gadget: Using the API ,[object Object],[object Object],[object Object],[object Object],Analytics Dynamic Height Tabs MiniMessages Flash
Creating a Gadget: Using the API ,[object Object],<?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?> <Module> <ModulePrefs …> <Require feature=&quot;tabs&quot;/> <Require feature=&quot;flash&quot;/> <Require feature=&quot;dynamic-height&quot;/> <Require feature=&quot;minimessage&quot;/> <Require feature=&quot;analytics&quot;/> <Require feature=&quot;setprefs&quot;/> <Require feature=&quot;drag&quot;/> <Require feature=&quot;grid&quot;/> </ModulePrefs> <Content…/> </Module>
Tech Tip 1: Analytics & Numbers ,[object Object],http://www.google.com/ig/directory?synd=open&url= <gadget_url> ,[object Object],<ModulePrefs …> <Require feature=&quot;analytics&quot;/> </ModulePrefs> … <script> _IG_Analytics(&quot;UA-00000&quot;, &quot;/mygadget&quot;); </script>
Tech Tip 2: Fetching Remote Content ,[object Object],[object Object],[object Object],[object Object]
Tech Tip 2: Fetching Remote Content ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Tech Tip 2: Fetching Remote Content <div id=&quot;container&quot;></div> <script> function callback(response) { // Iterate through each entry and generate HTML to be inserted var html = new Array(); for (var n = 0; n < response.Entry.length; n++) { var entry = response.Entry[n]; html.push('<a href=&quot;' + entry.Link + '&quot;>' + entry.Title + '</a>' + '<div>' + entry.Summary + '</div>'); } _gel('container').innerHTML = html.join('<hr>'); } // Fetch 3 entries from Google News Atom feed and include summaries _IG_FetchFeedAsJSON(&quot;http://news.google.com/?output=atom&quot;, callback, 3, true); </script> <?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?> <feed version=&quot;0.3&quot; xml:lang=&quot;en&quot; xmlns=&quot;http://purl.org/atom/ns#&quot;> <generator>NFE/1.0</generator> <title>Google News</title> … </feed> http://news.google.com?output=atom
Tech Tip 2: Fetching Remote Content ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Tech Tip 3: Internationalize! ,[object Object],[object Object],[object Object],Hello World <?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?>  <Module>   <ModulePrefs title=“ __ MSG_title__ &quot;> <Locale lang=“en” messages=“en.xml” /> <Locale lang=“ja” messages=“ja.xml” /> </ModulePrefs>    <Content type=&quot;html&quot;><![CDATA[ __MSG_hello__ ]]></Content>  </Module>  hello.xml <?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?>  <messagebundle>   <msg name=“title”> Title </msg>  <msg name=“hello”> Hello, World! </msg>  </messagebundle>  en.xml <?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?>  <messagebundle>   <msg name=“title”> 題名 </msg>  <msg name=“hello”> こんにちは世界 </msg>  </messagebundle>  ja.xml
Tech Tip 4: Storing State ,[object Object],[object Object],[object Object],[object Object]
Tech Tip 4: Storing State ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Tech Tip 5: Caching External Resources ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Tech Tip 5: Caching External Resources ,[object Object],[object Object],<img id=&quot;goImg&quot; src=&quot;&quot; width=100 height=150 /> <script> _gel(&quot;goImg&quot;).src = _IG_GetImageUrl(&quot;http://domainA.com/go.gif&quot;); </script> <div id=&quot;container&quot;></div> <script> var cacheUrl = _IG_GetCachedUrl(‘http://mydomain.com/flashvideo.swf’); _IG_EmbedFlash(cacheUrl, ‘container’, { width: 300, height: 250 }); </script>
Advanced API ,[object Object],[object Object],[object Object]
Feeds in tabs step-by-step ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Building a Gadget ,[object Object],[object Object],[object Object],<?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?> <Module> <ModulePrefs title=&quot;Feeds in Tabs&quot; height=&quot;250&quot;/> <Content type=&quot;html&quot;><![CDATA[ Here's my gadget content! ]]></Content> </Module>
Building a Gadget ,[object Object],[object Object],[object Object],<?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?> <Module> <ModulePrefs title=&quot;Feeds in Tabs&quot; height=&quot;250&quot;> <Require feature=&quot;tabs&quot;/> </ModulePrefs> <Content type=&quot;html&quot;><![CDATA[ <script> var tabs = new _IG_Tabs(); tabs.addDynamicTab('Feed 1', _IG_Callback(tabCallback)); tabs.addDynamicTab('Feed 2', _IG_Callback(tabCallback)); tabs.addDynamicTab('Feed 3', _IG_Callback(tabCallback)); tabs.addDynamicTab('Feed 4', _IG_Callback(tabCallback)); function tabCallback(domId) { var tab = tabs.getSelectedTab(); _gel(domId).innerHTML = 'my content for tab # ' + (tab.getIndex() + 1); } </script> ]]> </Content> </Module>
Building a Gadget ,[object Object],[object Object],[object Object],<UserPref name=&quot;feed1&quot; display_name=&quot;Feed 1: URL&quot; datatype=&quot;string&quot; default_value=&quot;http://groups.google.com/group/Google-Gadgets-API/feed/atom_v1_0_topics.xml&quot;/> <UserPref name=&quot;feed2&quot; display_name=&quot;Feed 2: URL&quot; datatype=&quot;string&quot; default_value=&quot;http://code.google.com/feeds/updates.xml&quot;/> <UserPref name=&quot;feed3&quot; display_name=&quot;Feed 3: URL&quot; datatype=&quot;string&quot; default_value=&quot;http://www.google.com/calendar/feeds/developer-calendar@google.com/public/basic&quot;/> <UserPref name=&quot;feed4&quot; display_name=&quot;Feed 4: URL&quot; datatype=&quot;string&quot; default_value=&quot;http://googleblog.blogspot.com/atom.xml&quot;/>
Building a Gadget ,[object Object],[object Object],[object Object],<script> var tabs = new _IG_Tabs(); tabs.addDynamicTab('Feed 1', _IG_Callback(tabCallback)); tabs.addDynamicTab('Feed 2', _IG_Callback(tabCallback)); tabs.addDynamicTab('Feed 3', _IG_Callback(tabCallback)); tabs.addDynamicTab('Feed 4', _IG_Callback(tabCallback)); function tabCallback(domId) { var tab = tabs.getSelectedTab(); var prefs = new _IG_Prefs(); var feedUrl = prefs.getString('feed' + (tab.getIndex() + 1)); _IG_FetchFeedAsJSON( feedUrl, function(feed) { // JSON response received. }, 3,  // # of entries true // show summaries } } </script>
Building a Gadget ,[object Object],[object Object],[object Object],function(feed) { // JSON response received. var container = _gel(domId); if (typeof feed == &quot;undefined&quot; || typeof feed.Entry == &quot;undefined&quot;) { container.innerHTML = '<div class=&quot;statusLabel&quot;>Invalid feed URL:<br>' + feedUrl + '</div>'; } else { // Fetch feed successful.  Generate HTML content from returned JSON object. // Create feed header containing title and description. var html = new Array(); html.push('<div class=&quot;feedHeader&quot;>'); html.push('<div class=&quot;feedTitle&quot;>'); html.push((feed.Link != &quot;&quot;) ? '<a target=&quot;_blank&quot; href=&quot;' + _hesc(feed.Link) + '&quot;>' + _hesc(feed.Title) + '</a>' : _hesc(feed.Title)); html.push((feed.Author != &quot;&quot;) ? '<span class=&quot;feedAuthor&quot;> by ' + _hesc(feed.Author) + '</span>' : &quot;&quot;); html.push('</div>'); html.push('<div class=&quot;feedDesc&quot;>' + _hesc(feed.Description) + '</div>'); html.push('</div>'); // Iterate through each feed entry and generate list of content. html.push('<ul class=&quot;feedList&quot;>'); for (var n = 0; n < feed.Entry.length; n++) { var entry = feed.Entry[n]; html.push('<li>'); html.push('<a target=&quot;_blank&quot; href=&quot;' + entry.Link + '&quot;><b>' + _hesc(entry.Title) + '</b></a>'); if (typeof entry.Summary != &quot;undefined&quot; && entry.Summary != &quot;&quot;) { var summary = document.createElement(&quot;div&quot;); summary.innerHTML = entry.Summary; html.push('<div class=&quot;entrySummary&quot;>'); html.push(summary.innerHTML); html.push('</div>'); } html.push('<div class=&quot;entryTimestamp&quot;>[' + new Date(entry.Date * 1000).toLocaleString() + ']</div>'); html.push('</li>'); } html.push('</ul>'); container.innerHTML = html.join(&quot;&quot;); } }
Building a Gadget ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],<style type=&quot;text/css&quot;> .tablib_table { font-size: 0.7em; } .tablib_selected, .tablib_unselected { width: 23%; } .statusLabel { font-size: 0.75em; font-style: italic; padding-top: 10px; text-align: center; } .feedHeader { padding-top: 5px; font-size: 0.7em; } .feedHeader .feedTitle { font-weight: bold; font-size: 1.1em; } .feedHeader .feedAuthor { font-weight: normal; font-size: 0.8em; color: #676767; } .feedList { font-size: 0.7em; margin: 0px; padding: 0px 0px 5px 0px; border-bottom: 1px solid #aaaaaa; } .feedList li { margin-top: 5px; padding: 3px 3px 0px 3px; border-top: 1px solid #aaaaaa; } .feedList li div.entryTitle a { font-weight: bold; } .feedList li div.entryTimestamp { font-size: 0.95em; font-style: italic; color: #676767; } </style>
Building a Gadget: Almost Done ,[object Object],[object Object],[object Object],[object Object],… _IG_FetchFeedAsJSON( feedUrl, function(feed) { // Generate HTML and insert into DOM … // Resize iframe height to fit content. _IG_AdjustIFrameHeight(); }, 3,  // # of entries true // show summaries ); … _IG_RegisterOnloadHandler(function() { _IG_Analytics(&quot;UA-676947-9&quot;, &quot;/feeds_tabs&quot;); }); <ModulePrefs title=&quot;Feeds in Tabs&quot; height=&quot;250&quot;> <Require feature=&quot;tabs&quot;/> <Require feature=&quot;dynamic-height&quot;/> </ModulePrefs>
Building a Gadget: Almost Done ,[object Object],[object Object]
Building a Gadget: Final Touches ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Building a Gadget: Final Touches ,[object Object],[object Object],<ModulePrefs title=&quot; __UP_title__ &quot; height=&quot;250&quot;> … </ModulePrefs> <UserPref name=&quot;title&quot; display_name=&quot;Gadget Title&quot; default_value=&quot;Feeds in Tabs&quot;/> <UserPref name=&quot;feedTitle1&quot; display_name=&quot;Feed 1: Title&quot; datatype=&quot;string&quot; default_value=&quot;Gadgets API&quot;/> <UserPref name=&quot;feedTitle2&quot; display_name=&quot;Feed 2: Title&quot; datatype=&quot;string&quot; default_value=&quot;Google Code&quot;/> <UserPref name=&quot;feedTitle3&quot; display_name=&quot;Feed 3: Title&quot; datatype=&quot;string&quot; default_value=&quot;Dev Events&quot;/> <UserPref name=&quot;feedTitle4&quot; display_name=&quot;Feed 4: Title&quot; datatype=&quot;string&quot;  default_value=&quot;Google Blog&quot;/> var prefs = new _IG_Prefs(); tabs.addDynamicTab( prefs.getString('feedTitle1') , _IG_Callback(tabCallback)); tabs.addDynamicTab( prefs.getString('feedTitle2') , _IG_Callback(tabCallback)); tabs.addDynamicTab( prefs.getString('feedTitle3') , _IG_Callback(tabCallback)); tabs.addDynamicTab( prefs.getString('feedTitle4') , _IG_Callback(tabCallback)); JavaScript code:
Building a Gadget: Final Touches ,[object Object],<UserPref name=&quot;entries&quot; display_name=&quot;# of Entries&quot; datatype=&quot;enum&quot; default_value=&quot;3&quot;> <EnumValue value=”1&quot;/> <EnumValue value=”2&quot;/> <EnumValue value=&quot;3&quot;/> <EnumValue value=&quot;4&quot;/> <EnumValue value=&quot;5&quot;/> <EnumValue value=&quot;6&quot;/> <EnumValue value=&quot;7&quot;/> <EnumValue value=&quot;8&quot;/> <EnumValue value=&quot;9&quot;/> </UserPref> _IG_FetchFeedAsJSON( feedUrl, function(feed) { … }, prefs.getInt('entries'),  // # of entries true // show summaries ); JavaScript code:
Building a Gadget: Final Touches ,[object Object],[object Object],<ModulePrefs title=&quot;__UP_title__&quot; directory_title=&quot;Feeds in Tabs&quot; description=&quot;Read up to four Atom or RSS feeds from within a single gadget using tabs. Customize the feed URLs, titles, control how many entries to receive and more.&quot; author=&quot;Daniel L.&quot; author_email=&quot;daniel.feedback+feedstabs@gmail.com&quot; author_affiliation=&quot;Google Inc.&quot; author_location=&quot;Mountain View, CA&quot; screenshot=&quot;/ig/modules/feeds_tabs.png&quot; thumbnail=&quot;/ig/modules/feeds_tabs-thm.png&quot; height=&quot;250&quot; scrolling=&quot;false&quot; singleton=&quot;false&quot;>
Now What? ,[object Object]
Submit your Gadget ,[object Object],[object Object],[object Object],[object Object],[object Object]
It’s all in the first impression… ,[object Object],[object Object],[object Object],[object Object]
Promote your Gadget ,[object Object],[object Object],[object Object],[object Object]
Track your Gadget ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Hosting & Publishing ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Want to know more? ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]

Más contenido relacionado

Último

Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Bhuvaneswari Subramani
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 

Último (20)

Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 

Destacado

AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at WorkGetSmarter
 

Destacado (20)

AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 

iGoogle - Haifa Seminar

  • 1. iGoogle Google Developers Day Haifa Ran Tavory
  • 2.
  • 3.
  • 5.
  • 9. Mac OS X Dashboard…
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25. Tech Tip 2: Fetching Remote Content <div id=&quot;container&quot;></div> <script> function callback(response) { // Iterate through each entry and generate HTML to be inserted var html = new Array(); for (var n = 0; n < response.Entry.length; n++) { var entry = response.Entry[n]; html.push('<a href=&quot;' + entry.Link + '&quot;>' + entry.Title + '</a>' + '<div>' + entry.Summary + '</div>'); } _gel('container').innerHTML = html.join('<hr>'); } // Fetch 3 entries from Google News Atom feed and include summaries _IG_FetchFeedAsJSON(&quot;http://news.google.com/?output=atom&quot;, callback, 3, true); </script> <?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?> <feed version=&quot;0.3&quot; xml:lang=&quot;en&quot; xmlns=&quot;http://purl.org/atom/ns#&quot;> <generator>NFE/1.0</generator> <title>Google News</title> … </feed> http://news.google.com?output=atom
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.