SlideShare a Scribd company logo
1 of 57
Download to read offline
Google Analytics
Becoming More Productive Using The Analytics API


Nick Mihailovski
Sr. Developer Programs Engineer
Web Analytics TV
Agenda

  1   What is the API & Why It’s Important

  2   3 Awesome Tools

  3   Advanced Data Uses
Agenda

  1   What is the API & Why It’s Important

  2   3 Awesome Tools

  3   Advanced Data Uses
Developer Platform Overview

                Account Configuration




Tracking Code                           Reports




                     Processing
Developer Platform Overview

                     Management API




ga.js / Mobile SDK                    Data Export API




                       Processing
How the Web Interface works



                   HTTP Request



                                   Processing




                   HTTP Response
How the API works

  API Query
  https://www.google.com/analytics/feeds/data
  ?ids=ga:12345
  &start-date=2009-10-01
  &end-date=2009-10-31                               HTTP Request
  &dimensions=ga:source
  &metrics=ga:visits,
           ga:transactions,
           ga:transactionRevenue


                                                                         Processing




 XML Response                                        HTTP Response
      <feed>
        <entry>
          <dxp:dimension name='ga:source' value='blogger.com'/>
          <dxp:dimension name='ga:medium' value='referral'/>
          <dxp:metric name='ga:visits' type='integer' value='68140'/>
          <dxp:metric name='ga:bounces' type='integer' value='61095'/>
        </entry>
        <entry>
          <dxp:dimension name='ga:source' value=’google.com'/>
          <dxp:dimension name='ga:medium' value=’organic'/>
          <dxp:metric name='ga:visits' type='integer' value=‘54140'/>
          <dxp:metric name='ga:bounces' type='integer' value=‘48095'/>
        </entry>
      </feed>
Retrieving Data From The API
                                                                   Profile

              Advanced Segments


                                            Date Range




                Sort              Filters



 Dimensions                 Metrics




                            Max Results                  Start Index
Simple API Query
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue
Simple API Query
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue




Profile ID: Defines the Google Analytics profile
Simple API Query
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue




Date Range: Get data from the month of October
Simple API Query
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source              # Can specify up
to 7
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue




Dimension: Show all the sources of traffic
Simple API Query
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,                     # Can
specify up to 10
         ga:transactions,
         ga:transactionRevenue




Metrics: The sum of these values across all visits to a site
Simple API Query
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue
&start-index=1,
&max-results=10000



Start Index: Starting row number
Max Results: The number of results to return
Simple API Query
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue
&sort=ga:source,-ga:visits,ga:pageviews




Sort: Order the results in a particular way
Simple API Query
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue
&filters=ga:transactionRevenue>0




Filters: Only return a subset of the values
Advanced Segments
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue
&segment=




Segment: Advanced segment query parameter
Default and Custom Advanced Segments
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue
&segment=gaid::-11




gaid:: Reference the segment by ID
Dynamic Advanced Segments
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue
&segment=dynamic::




dynamic:: Define the segment on the fly
Dynamic Advanced Segments
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue
&segment=dynamic::ga:transactionRevenue>1000




For all visits that had greater than $1000 in revenue
Dynamic Advanced Segments
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue
&segment=dynamic::ga:transactionRevenue>1000;
                  ga:day==Monday



For all visits that had greater than $1000 in revenue AND
 made a purchase on Monday
Dynamic Advanced Segments
https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2009-10-01
&end-date=2009-10-31
&dimensions=ga:source
&metrics=ga:visits,
         ga:transactions,
         ga:transactionRevenue
&segment=dynamic::ga:transactionRevenue>1000;
                  ga:day=~Monday|Wednesday



For all visits that had greater than $1000 in revenue AND
 made a purchase either on Monday OR Wednesday
How the API works

  API Query
  https://www.google.com/analytics/feeds/data
  ?ids=ga:12345
  &start-date=2009-10-01
  &end-date=2009-10-31                               HTTP Request
  &dimensions=ga:source
  &metrics=ga:visits,
           ga:transactions,
           ga:transactionRevenue


                                                                         Processing




 XML Response                                        HTTP Response
      <feed>
        <entry>
          <dxp:dimension name='ga:source' value='blogger.com'/>
          <dxp:dimension name='ga:medium' value='referral'/>
          <dxp:metric name='ga:visits' type='integer' value='68140'/>
          <dxp:metric name='ga:bounces' type='integer' value='61095'/>
        </entry>
        <entry>
          <dxp:dimension name='ga:source' value=’google.com'/>
          <dxp:dimension name='ga:medium' value=’organic'/>
          <dxp:metric name='ga:visits' type='integer' value=‘54140'/>
          <dxp:metric name='ga:bounces' type='integer' value=‘48095'/>
        </entry>
      </feed>
Accessing Report Data


 Metric Totals




                        Total Results
 Rows of Data
API Response
<feed>
  <openSearch:totalResults>6451</openSearch:totalResults>
  <openSearch:startIndex>1</openSearch:startIndex>
  <openSearch:itemsPerPage>5</openSearch:itemsPerPage>

 <dxp:aggregates>
   <dxp:metric name='ga:visits' type='integer' value='136540'/>
   <dxp:metric name='ga:bounces' type='integer' value='101535'/>
 </dxp:aggregates>

  <entry>
    <dxp:dimension name='ga:source' value='blogger.com'/>
    <dxp:dimension name='ga:medium' value='referral'/>
    <dxp:metric name='ga:visits' type='integer' value='68140'/>
    <dxp:metric name='ga:bounces' type='integer' value='61095'/>
  </entry>
  <entry>
    <dxp:dimension name='ga:source' value=’google.com'/>
    <dxp:dimension name='ga:medium' value=’organic'/>
    <dxp:metric name='ga:visits' type='integer' value=‘54140'/>
    <dxp:metric name='ga:bounces' type='integer' value=‘48095'/>
  </entry>
</feed>
API Response
<feed>
  <openSearch:totalResults>6451</openSearch:totalResults>
  <openSearch:startIndex>1</openSearch:startIndex>
  <openSearch:itemsPerPage>5</openSearch:itemsPerPage>

 <dxp:aggregates>
   <dxp:metric name='ga:visits' type='integer' value='136540'/>
   <dxp:metric name='ga:bounces' type='integer' value='101535'/>
 </dxp:aggregates>

  <entry>
    <dxp:dimension name='ga:source' value='blogger.com'/>
    <dxp:dimension name='ga:medium' value='referral'/>
    <dxp:metric name='ga:visits' type='integer' value='68140'/>
    <dxp:metric name='ga:bounces' type='integer' value='61095'/>
  </entry>
  <entry>
    <dxp:dimension name='ga:source' value=’google.com'/>
    <dxp:dimension name='ga:medium' value=’organic'/>
    <dxp:metric name='ga:visits' type='integer' value=‘54140'/>
    <dxp:metric name='ga:bounces' type='integer' value=‘48095'/>
  </entry>
</feed>
API Response
<feed>
  <openSearch:totalResults>6451</openSearch:totalResults>
  <openSearch:startIndex>1</openSearch:startIndex>
  <openSearch:itemsPerPage>5</openSearch:itemsPerPage>

 <dxp:aggregates>
   <dxp:metric name='ga:visits' type='integer' value='136540'/>
   <dxp:metric name='ga:bounces' type='integer' value='101535'/>
 </dxp:aggregates>

  <entry>
    <dxp:dimension name='ga:source' value='blogger.com'/>
    <dxp:dimension name='ga:medium' value='referral'/>
    <dxp:metric name='ga:visits' type='integer' value='68140'/>
    <dxp:metric name='ga:bounces' type='integer' value='61095'/>
  </entry>
  <entry>
    <dxp:dimension name='ga:source' value=’google.com'/>
    <dxp:dimension name='ga:medium' value=’organic'/>
    <dxp:metric name='ga:visits' type='integer' value=‘54140'/>
    <dxp:metric name='ga:bounces' type='integer' value=‘48095'/>
  </entry>
</feed>
API Response
<feed>
  <openSearch:totalResults>6451</openSearch:totalResults>
  <openSearch:startIndex>1</openSearch:startIndex>
  <openSearch:itemsPerPage>5</openSearch:itemsPerPage>

 <dxp:aggregates>
   <dxp:metric name='ga:visits' type='integer' value='136540'/>
   <dxp:metric name='ga:bounces' type='integer' value='101535'/>
 </dxp:aggregates>

  <entry>
    <dxp:dimension name='ga:source' value='blogger.com'/>
    <dxp:dimension name='ga:medium' value='referral'/>
    <dxp:metric name='ga:visits' type='integer' value='68140'/>
    <dxp:metric name='ga:bounces' type='integer' value='61095'/>
  </entry>
  <entry>
    <dxp:dimension name='ga:source' value=’google.com'/>
    <dxp:dimension name='ga:medium' value=’organic'/>
    <dxp:metric name='ga:visits' type='integer' value=‘54140'/>
    <dxp:metric name='ga:bounces' type='integer' value=‘48095'/>
  </entry>
</feed>
Query Explorer Demo
Agenda

  1   What is the API & Why It’s Important

  2   3 Awesome Tools

  3   Advanced Data Uses
3 Awesome Tools

Next Analytics
• Increase productivity


Analytics Canvas
• Make data meaningful to your business


4Q
• Better understand customers through integrations
3 Awesome Tools

Next Analytics
• Increase productivity


Analytics Canvas
• Make data meaningful to your business


4Q
• Better understand customers through integrations
Next Analytics

www.excel.nextanalytics.com
3 Awesome Tools

Next Analytics
• Increase productivity


Analytics Canvas
• Make data meaningful to your business


4Q
• Better understand customers through integrations
By Country
By City
By Regional Market ?
Analytics Canvas

www.analyticscanvas.com
3 Awesome Tools

Next Analytics
• Increase productivity


Analytics Canvas
• Make data meaningful to your business


4Q
• Better understand customers through integrations
Google Analytics Describes the What


       Your campaign drove a
       significant amount of traffic.
       But was it qualified?
                                   There was an increase in
                                   traffic to your support page.
                                   Was there a problem with
                                   the site or your product?
       Time on site increased.
       Were visitors more engaged
       or simply unable to find what
       they were looking for?
Case Study

Media client focusing on Online Publishing
• Rolling out paid access to premium articles

• Customers make purchase decision after reading article abstract

Due Diligence
• Market research

• Needs assessment

• Price sensitivity

Undesirable Results
• Very low conversion               0.5% purchase articles
4Q Answers
                             80% of visitors view abstracts, but
                             only 0.5% purchase articles

          +                  53% found abstracts were too
                             short to make purchase decision
                             • “If I have to pay extra for articles, at least give me a
                               better idea of what the articles are about.”
                             • “The blurbs for your paid articles are not detailed
                               enough.”
                             • “The summary of the article seems interesting but I’m
                               not paying $6.95 to find out that it isn’t what I thought
                               it was”

The Decision – Longer abstracts

The Result – 5x increase – from $40k/month up to $200k/month
Google Analytics & 4Q

                                 •   Developed in consultation
                                     with Avinash Kaushik
                                 •   Asks the “most important
                                     survey questions”
                                 •   Free & paid subscriptions


•   Simple integration with Google
    Analytics
•   Feature rich, even at the
    “free” level
Understand the why


       How would you rate your overall site experience?


       What was the purpose of your visit?


       Did you accomplish the purpose of your visit?


       If not, why not?
Technical Integration

                        4Q Suite displays survey
                        when user leaves the site
                        If user accepts, both 4Q
                        Suite and GA sessions are
                        joined
                        Survey is taken by visitors
                        Upon completion, survey
                        data is sent as events to
                        Google Analytics
4Q Data Inside Google Analytics
  Integrate Into Custom Reports   Setup Advanced Segments
Deeper Understanding of Your Visitors




Improve content based on site experience score
Optimize AdWords bids based on the purpose of a visit
Agenda

  1   What is the API & Why It’s Important

  2   3 Awesome Tools

  3   Advanced Data Uses
Content ID




_gaq.push([‘_trackPageview’]);



                           Google Analytics




https://www.google.com/analytics/feeds/data
?ids=ga:12345
&start-date=2011-04-20&end-date=2011-04-20
&dimensions=ga:pagePath
&metrics=ga:pageviews
&sort=-ga:pageviews
_gaq.push([‘_trackPageview’, ‘/agreeButton’]);



                     Google Analytics



https://www.google.com/analytics/feeds/data
?ids=ga:12345&start-date=2011-04-20&end-date=2011-04-20
&dimensions=ga:latitude,ga:longitude
&metrics=ga:visitors
&filter=ga:pagePath==/agreeButtom




                             Google Charts API
API Resources

App Gallery
http://www.google.com/analytics/apps

Documentation
http://code.google.com/apis/analytics

Developer Group
http://groups.google.com/group/google-analytics-api

Notify Group
http://groups.google.com/group/google-analytics-api-notify




                                                             57

More Related Content

Viewers also liked

AdWords Konferenz_2012: Klaus Müller - Mobile Revolution
AdWords Konferenz_2012: Klaus Müller - Mobile RevolutionAdWords Konferenz_2012: Klaus Müller - Mobile Revolution
AdWords Konferenz_2012: Klaus Müller - Mobile Revolutione-dialog GmbH
 
Google Analytics Workshop Day 2013: Siegfried Stepke, e-dialog: Kampagnen Ana...
Google Analytics Workshop Day 2013: Siegfried Stepke, e-dialog: Kampagnen Ana...Google Analytics Workshop Day 2013: Siegfried Stepke, e-dialog: Kampagnen Ana...
Google Analytics Workshop Day 2013: Siegfried Stepke, e-dialog: Kampagnen Ana...e-dialog GmbH
 
AdWords Konferenz_2012: Viktor Zemann: Optimierungs-Strategien & -Tools tibil...
AdWords Konferenz_2012: Viktor Zemann: Optimierungs-Strategien & -Tools tibil...AdWords Konferenz_2012: Viktor Zemann: Optimierungs-Strategien & -Tools tibil...
AdWords Konferenz_2012: Viktor Zemann: Optimierungs-Strategien & -Tools tibil...e-dialog GmbH
 
Google Analytics Konferenz 2013: Holger Tempel, webalytics: Universal Analyti...
Google Analytics Konferenz 2013: Holger Tempel, webalytics: Universal Analyti...Google Analytics Konferenz 2013: Holger Tempel, webalytics: Universal Analyti...
Google Analytics Konferenz 2013: Holger Tempel, webalytics: Universal Analyti...e-dialog GmbH
 
Google Analytics Workshop Day 2013: Angela Fauck: Extending Reports & Dashboards
Google Analytics Workshop Day 2013: Angela Fauck: Extending Reports & DashboardsGoogle Analytics Workshop Day 2013: Angela Fauck: Extending Reports & Dashboards
Google Analytics Workshop Day 2013: Angela Fauck: Extending Reports & Dashboardse-dialog GmbH
 
AdWords Konferenz_2012: Christoph Godderidge - Display Netzwerk
AdWords Konferenz_2012: Christoph Godderidge - Display NetzwerkAdWords Konferenz_2012: Christoph Godderidge - Display Netzwerk
AdWords Konferenz_2012: Christoph Godderidge - Display Netzwerke-dialog GmbH
 

Viewers also liked (6)

AdWords Konferenz_2012: Klaus Müller - Mobile Revolution
AdWords Konferenz_2012: Klaus Müller - Mobile RevolutionAdWords Konferenz_2012: Klaus Müller - Mobile Revolution
AdWords Konferenz_2012: Klaus Müller - Mobile Revolution
 
Google Analytics Workshop Day 2013: Siegfried Stepke, e-dialog: Kampagnen Ana...
Google Analytics Workshop Day 2013: Siegfried Stepke, e-dialog: Kampagnen Ana...Google Analytics Workshop Day 2013: Siegfried Stepke, e-dialog: Kampagnen Ana...
Google Analytics Workshop Day 2013: Siegfried Stepke, e-dialog: Kampagnen Ana...
 
AdWords Konferenz_2012: Viktor Zemann: Optimierungs-Strategien & -Tools tibil...
AdWords Konferenz_2012: Viktor Zemann: Optimierungs-Strategien & -Tools tibil...AdWords Konferenz_2012: Viktor Zemann: Optimierungs-Strategien & -Tools tibil...
AdWords Konferenz_2012: Viktor Zemann: Optimierungs-Strategien & -Tools tibil...
 
Google Analytics Konferenz 2013: Holger Tempel, webalytics: Universal Analyti...
Google Analytics Konferenz 2013: Holger Tempel, webalytics: Universal Analyti...Google Analytics Konferenz 2013: Holger Tempel, webalytics: Universal Analyti...
Google Analytics Konferenz 2013: Holger Tempel, webalytics: Universal Analyti...
 
Google Analytics Workshop Day 2013: Angela Fauck: Extending Reports & Dashboards
Google Analytics Workshop Day 2013: Angela Fauck: Extending Reports & DashboardsGoogle Analytics Workshop Day 2013: Angela Fauck: Extending Reports & Dashboards
Google Analytics Workshop Day 2013: Angela Fauck: Extending Reports & Dashboards
 
AdWords Konferenz_2012: Christoph Godderidge - Display Netzwerk
AdWords Konferenz_2012: Christoph Godderidge - Display NetzwerkAdWords Konferenz_2012: Christoph Godderidge - Display Netzwerk
AdWords Konferenz_2012: Christoph Godderidge - Display Netzwerk
 

Similar to GA Konferenz-2011 Nick Mihailovski_API

Google Analytics User Conference - Nick Mihailovski, Amsterdam May 19th 2011 ...
Google Analytics User Conference - Nick Mihailovski, Amsterdam May 19th 2011 ...Google Analytics User Conference - Nick Mihailovski, Amsterdam May 19th 2011 ...
Google Analytics User Conference - Nick Mihailovski, Amsterdam May 19th 2011 ...Webanalisten .nl
 
Google Analytics for Beginners - Training
Google Analytics for Beginners - TrainingGoogle Analytics for Beginners - Training
Google Analytics for Beginners - TrainingRuben Vezzoli
 
User Behavior Tracking with Google Analytics, Garb, and Vanity
User Behavior Tracking with Google Analytics, Garb, and VanityUser Behavior Tracking with Google Analytics, Garb, and Vanity
User Behavior Tracking with Google Analytics, Garb, and VanityTony Pitale
 
Pierre Debois - Using Analytics for Sustainable Customer Experiences
Pierre Debois - Using Analytics for Sustainable Customer ExperiencesPierre Debois - Using Analytics for Sustainable Customer Experiences
Pierre Debois - Using Analytics for Sustainable Customer ExperiencesDigital Experience (DX) Summit 2016
 
BCCCA Google Analytics for Improved Lead Generation
BCCCA Google Analytics for Improved Lead GenerationBCCCA Google Analytics for Improved Lead Generation
BCCCA Google Analytics for Improved Lead GenerationPhilippe Taza
 
The Magic of LINE 購物 Testing
The Magic of LINE 購物 TestingThe Magic of LINE 購物 Testing
The Magic of LINE 購物 TestingLINE Corporation
 
Getting Started with AdWords API and Google Analytics
Getting Started with AdWords API and Google AnalyticsGetting Started with AdWords API and Google Analytics
Getting Started with AdWords API and Google Analyticsmarcwan
 
DataXDay - Building a Real Time Analytics API at Scale
DataXDay - Building a Real Time Analytics API at ScaleDataXDay - Building a Real Time Analytics API at Scale
DataXDay - Building a Real Time Analytics API at ScaleDataXDay Conference by Xebia
 
DevFest Kuala Lumpur - Implementing Google Analytics - 2011-09-29.ppt
DevFest Kuala Lumpur - Implementing Google Analytics - 2011-09-29.pptDevFest Kuala Lumpur - Implementing Google Analytics - 2011-09-29.ppt
DevFest Kuala Lumpur - Implementing Google Analytics - 2011-09-29.pptVinoaj Vijeyakumaar
 
Google Analytics for Developers
Google Analytics for DevelopersGoogle Analytics for Developers
Google Analytics for DevelopersRubén Martínez
 
Exploring the Google Analytics API
Exploring the Google Analytics APIExploring the Google Analytics API
Exploring the Google Analytics APIVanessa Sabino
 
Google Analytics for Developers
Google Analytics for DevelopersGoogle Analytics for Developers
Google Analytics for DevelopersParadigma Digital
 
Nuda Anthoney Web Analytics Demo
Nuda Anthoney Web Analytics DemoNuda Anthoney Web Analytics Demo
Nuda Anthoney Web Analytics DemoAnthoney Nuda
 
GTUG Philippines - Implementing Google Analytics - 2011-10-11
GTUG Philippines - Implementing Google Analytics - 2011-10-11GTUG Philippines - Implementing Google Analytics - 2011-10-11
GTUG Philippines - Implementing Google Analytics - 2011-10-11Vinoaj Vijeyakumaar
 
From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...
From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...
From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...Connected Data World
 
Microsoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Tech Community
 
Microsoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Tech Community
 
DevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.ppt
DevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.pptDevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.ppt
DevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.pptVinoaj Vijeyakumaar
 
implemetning google analytics - 2011-09-24 Google Devfest Chiangmai
implemetning google analytics - 2011-09-24 Google Devfest Chiangmaiimplemetning google analytics - 2011-09-24 Google Devfest Chiangmai
implemetning google analytics - 2011-09-24 Google Devfest ChiangmaiPawoot (Pom) Pongvitayapanu
 

Similar to GA Konferenz-2011 Nick Mihailovski_API (20)

Google Analytics User Conference - Nick Mihailovski, Amsterdam May 19th 2011 ...
Google Analytics User Conference - Nick Mihailovski, Amsterdam May 19th 2011 ...Google Analytics User Conference - Nick Mihailovski, Amsterdam May 19th 2011 ...
Google Analytics User Conference - Nick Mihailovski, Amsterdam May 19th 2011 ...
 
Apigee Demo: API Platform Overview
Apigee Demo: API Platform OverviewApigee Demo: API Platform Overview
Apigee Demo: API Platform Overview
 
Google Analytics for Beginners - Training
Google Analytics for Beginners - TrainingGoogle Analytics for Beginners - Training
Google Analytics for Beginners - Training
 
User Behavior Tracking with Google Analytics, Garb, and Vanity
User Behavior Tracking with Google Analytics, Garb, and VanityUser Behavior Tracking with Google Analytics, Garb, and Vanity
User Behavior Tracking with Google Analytics, Garb, and Vanity
 
Pierre Debois - Using Analytics for Sustainable Customer Experiences
Pierre Debois - Using Analytics for Sustainable Customer ExperiencesPierre Debois - Using Analytics for Sustainable Customer Experiences
Pierre Debois - Using Analytics for Sustainable Customer Experiences
 
BCCCA Google Analytics for Improved Lead Generation
BCCCA Google Analytics for Improved Lead GenerationBCCCA Google Analytics for Improved Lead Generation
BCCCA Google Analytics for Improved Lead Generation
 
The Magic of LINE 購物 Testing
The Magic of LINE 購物 TestingThe Magic of LINE 購物 Testing
The Magic of LINE 購物 Testing
 
Getting Started with AdWords API and Google Analytics
Getting Started with AdWords API and Google AnalyticsGetting Started with AdWords API and Google Analytics
Getting Started with AdWords API and Google Analytics
 
DataXDay - Building a Real Time Analytics API at Scale
DataXDay - Building a Real Time Analytics API at ScaleDataXDay - Building a Real Time Analytics API at Scale
DataXDay - Building a Real Time Analytics API at Scale
 
DevFest Kuala Lumpur - Implementing Google Analytics - 2011-09-29.ppt
DevFest Kuala Lumpur - Implementing Google Analytics - 2011-09-29.pptDevFest Kuala Lumpur - Implementing Google Analytics - 2011-09-29.ppt
DevFest Kuala Lumpur - Implementing Google Analytics - 2011-09-29.ppt
 
Google Analytics for Developers
Google Analytics for DevelopersGoogle Analytics for Developers
Google Analytics for Developers
 
Exploring the Google Analytics API
Exploring the Google Analytics APIExploring the Google Analytics API
Exploring the Google Analytics API
 
Google Analytics for Developers
Google Analytics for DevelopersGoogle Analytics for Developers
Google Analytics for Developers
 
Nuda Anthoney Web Analytics Demo
Nuda Anthoney Web Analytics DemoNuda Anthoney Web Analytics Demo
Nuda Anthoney Web Analytics Demo
 
GTUG Philippines - Implementing Google Analytics - 2011-10-11
GTUG Philippines - Implementing Google Analytics - 2011-10-11GTUG Philippines - Implementing Google Analytics - 2011-10-11
GTUG Philippines - Implementing Google Analytics - 2011-10-11
 
From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...
From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...
From Knowledge Graphs to AI-powered SEO: Using taxonomies, schemas and knowle...
 
Microsoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needs
 
Microsoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needsMicrosoft Graph: Connect to essential data every app needs
Microsoft Graph: Connect to essential data every app needs
 
DevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.ppt
DevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.pptDevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.ppt
DevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.ppt
 
implemetning google analytics - 2011-09-24 Google Devfest Chiangmai
implemetning google analytics - 2011-09-24 Google Devfest Chiangmaiimplemetning google analytics - 2011-09-24 Google Devfest Chiangmai
implemetning google analytics - 2011-09-24 Google Devfest Chiangmai
 

More from e-dialog GmbH

Webinar Online Marktforschung 04.03.2020
Webinar Online Marktforschung 04.03.2020Webinar Online Marktforschung 04.03.2020
Webinar Online Marktforschung 04.03.2020e-dialog GmbH
 
ProgrammatiCon 2019 - Content Marketing skalierbar machen - Kurier - Stephani...
ProgrammatiCon 2019 - Content Marketing skalierbar machen - Kurier - Stephani...ProgrammatiCon 2019 - Content Marketing skalierbar machen - Kurier - Stephani...
ProgrammatiCon 2019 - Content Marketing skalierbar machen - Kurier - Stephani...e-dialog GmbH
 
ProgrammatiCon 2019 - Programmatic DOOH - Goldbach - Paul Adamelis
ProgrammatiCon 2019 - Programmatic DOOH - Goldbach - Paul AdamelisProgrammatiCon 2019 - Programmatic DOOH - Goldbach - Paul Adamelis
ProgrammatiCon 2019 - Programmatic DOOH - Goldbach - Paul Adamelise-dialog GmbH
 
GMP-Con 2019 - GTM Hacks - Maik Bruns (Metrika)
GMP-Con 2019 - GTM Hacks - Maik Bruns (Metrika)GMP-Con 2019 - GTM Hacks - Maik Bruns (Metrika)
GMP-Con 2019 - GTM Hacks - Maik Bruns (Metrika)e-dialog GmbH
 
GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...
GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...
GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...e-dialog GmbH
 
GMP-Con 2019 - App Tracking - Markus Vollmert (lunapark)
GMP-Con 2019 - App Tracking - Markus Vollmert (lunapark) GMP-Con 2019 - App Tracking - Markus Vollmert (lunapark)
GMP-Con 2019 - App Tracking - Markus Vollmert (lunapark) e-dialog GmbH
 
GMP-Con 2019 - Programmatic Display mit DV360 - Lisa Weichselbaum (e-dialog)
GMP-Con 2019 - Programmatic Display mit DV360 - Lisa Weichselbaum (e-dialog)GMP-Con 2019 - Programmatic Display mit DV360 - Lisa Weichselbaum (e-dialog)
GMP-Con 2019 - Programmatic Display mit DV360 - Lisa Weichselbaum (e-dialog)e-dialog GmbH
 
GMP-Con 2019 - Facebook & Google Analytics in Love - Michaela Linhart (e-dialog)
GMP-Con 2019 - Facebook & Google Analytics in Love - Michaela Linhart (e-dialog)GMP-Con 2019 - Facebook & Google Analytics in Love - Michaela Linhart (e-dialog)
GMP-Con 2019 - Facebook & Google Analytics in Love - Michaela Linhart (e-dialog)e-dialog GmbH
 
GMP-Con 2019 - Enterprise Ausblick, CRM, Machine Learning, Cloud - Siegfried ...
GMP-Con 2019 - Enterprise Ausblick, CRM, Machine Learning, Cloud - Siegfried ...GMP-Con 2019 - Enterprise Ausblick, CRM, Machine Learning, Cloud - Siegfried ...
GMP-Con 2019 - Enterprise Ausblick, CRM, Machine Learning, Cloud - Siegfried ...e-dialog GmbH
 
GMP-Con 2019 - Enhanced E-Commerce - Markus Vollmert (lunapark)
GMP-Con 2019 - Enhanced E-Commerce - Markus Vollmert (lunapark)GMP-Con 2019 - Enhanced E-Commerce - Markus Vollmert (lunapark)
GMP-Con 2019 - Enhanced E-Commerce - Markus Vollmert (lunapark)e-dialog GmbH
 
GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...
GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...
GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...e-dialog GmbH
 
Google Analytics Konferenz 2019_Kampagnen-Tracking_Holger Tempel (webalytics)
Google Analytics Konferenz 2019_Kampagnen-Tracking_Holger Tempel (webalytics)Google Analytics Konferenz 2019_Kampagnen-Tracking_Holger Tempel (webalytics)
Google Analytics Konferenz 2019_Kampagnen-Tracking_Holger Tempel (webalytics)e-dialog GmbH
 
Google Analytics Konferenz 2019_App Tracking_Runa Reno (Booking.com) & Markus...
Google Analytics Konferenz 2019_App Tracking_Runa Reno (Booking.com) & Markus...Google Analytics Konferenz 2019_App Tracking_Runa Reno (Booking.com) & Markus...
Google Analytics Konferenz 2019_App Tracking_Runa Reno (Booking.com) & Markus...e-dialog GmbH
 
Google Analytics Konferenz 2019_Attribution: building a model_Martin Frotzler...
Google Analytics Konferenz 2019_Attribution: building a model_Martin Frotzler...Google Analytics Konferenz 2019_Attribution: building a model_Martin Frotzler...
Google Analytics Konferenz 2019_Attribution: building a model_Martin Frotzler...e-dialog GmbH
 
Google Analytics Konferenz 2019_Audience Management_Emma Crawford-Prajapati (...
Google Analytics Konferenz 2019_Audience Management_Emma Crawford-Prajapati (...Google Analytics Konferenz 2019_Audience Management_Emma Crawford-Prajapati (...
Google Analytics Konferenz 2019_Audience Management_Emma Crawford-Prajapati (...e-dialog GmbH
 
Google Analytics Konferenz 2019_Data Privacy & Consent Management_Eckart Holz...
Google Analytics Konferenz 2019_Data Privacy & Consent Management_Eckart Holz...Google Analytics Konferenz 2019_Data Privacy & Consent Management_Eckart Holz...
Google Analytics Konferenz 2019_Data Privacy & Consent Management_Eckart Holz...e-dialog GmbH
 
Google Analytics Konferenz 2019_Conversion Optimierung mit Analytics & Optimi...
Google Analytics Konferenz 2019_Conversion Optimierung mit Analytics & Optimi...Google Analytics Konferenz 2019_Conversion Optimierung mit Analytics & Optimi...
Google Analytics Konferenz 2019_Conversion Optimierung mit Analytics & Optimi...e-dialog GmbH
 
Google Analytics Konferenz 2019_Customer Data Platform_Michaela Linhart (e-di...
Google Analytics Konferenz 2019_Customer Data Platform_Michaela Linhart (e-di...Google Analytics Konferenz 2019_Customer Data Platform_Michaela Linhart (e-di...
Google Analytics Konferenz 2019_Customer Data Platform_Michaela Linhart (e-di...e-dialog GmbH
 
Google Analytics Konferenz 2019_Customer Data Platform_Timo von Focht (Comman...
Google Analytics Konferenz 2019_Customer Data Platform_Timo von Focht (Comman...Google Analytics Konferenz 2019_Customer Data Platform_Timo von Focht (Comman...
Google Analytics Konferenz 2019_Customer Data Platform_Timo von Focht (Comman...e-dialog GmbH
 
Google Analytics Konferenz 2019_Google Marketing Platform - Enterprise_Siegfr...
Google Analytics Konferenz 2019_Google Marketing Platform - Enterprise_Siegfr...Google Analytics Konferenz 2019_Google Marketing Platform - Enterprise_Siegfr...
Google Analytics Konferenz 2019_Google Marketing Platform - Enterprise_Siegfr...e-dialog GmbH
 

More from e-dialog GmbH (20)

Webinar Online Marktforschung 04.03.2020
Webinar Online Marktforschung 04.03.2020Webinar Online Marktforschung 04.03.2020
Webinar Online Marktforschung 04.03.2020
 
ProgrammatiCon 2019 - Content Marketing skalierbar machen - Kurier - Stephani...
ProgrammatiCon 2019 - Content Marketing skalierbar machen - Kurier - Stephani...ProgrammatiCon 2019 - Content Marketing skalierbar machen - Kurier - Stephani...
ProgrammatiCon 2019 - Content Marketing skalierbar machen - Kurier - Stephani...
 
ProgrammatiCon 2019 - Programmatic DOOH - Goldbach - Paul Adamelis
ProgrammatiCon 2019 - Programmatic DOOH - Goldbach - Paul AdamelisProgrammatiCon 2019 - Programmatic DOOH - Goldbach - Paul Adamelis
ProgrammatiCon 2019 - Programmatic DOOH - Goldbach - Paul Adamelis
 
GMP-Con 2019 - GTM Hacks - Maik Bruns (Metrika)
GMP-Con 2019 - GTM Hacks - Maik Bruns (Metrika)GMP-Con 2019 - GTM Hacks - Maik Bruns (Metrika)
GMP-Con 2019 - GTM Hacks - Maik Bruns (Metrika)
 
GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...
GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...
GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...
 
GMP-Con 2019 - App Tracking - Markus Vollmert (lunapark)
GMP-Con 2019 - App Tracking - Markus Vollmert (lunapark) GMP-Con 2019 - App Tracking - Markus Vollmert (lunapark)
GMP-Con 2019 - App Tracking - Markus Vollmert (lunapark)
 
GMP-Con 2019 - Programmatic Display mit DV360 - Lisa Weichselbaum (e-dialog)
GMP-Con 2019 - Programmatic Display mit DV360 - Lisa Weichselbaum (e-dialog)GMP-Con 2019 - Programmatic Display mit DV360 - Lisa Weichselbaum (e-dialog)
GMP-Con 2019 - Programmatic Display mit DV360 - Lisa Weichselbaum (e-dialog)
 
GMP-Con 2019 - Facebook & Google Analytics in Love - Michaela Linhart (e-dialog)
GMP-Con 2019 - Facebook & Google Analytics in Love - Michaela Linhart (e-dialog)GMP-Con 2019 - Facebook & Google Analytics in Love - Michaela Linhart (e-dialog)
GMP-Con 2019 - Facebook & Google Analytics in Love - Michaela Linhart (e-dialog)
 
GMP-Con 2019 - Enterprise Ausblick, CRM, Machine Learning, Cloud - Siegfried ...
GMP-Con 2019 - Enterprise Ausblick, CRM, Machine Learning, Cloud - Siegfried ...GMP-Con 2019 - Enterprise Ausblick, CRM, Machine Learning, Cloud - Siegfried ...
GMP-Con 2019 - Enterprise Ausblick, CRM, Machine Learning, Cloud - Siegfried ...
 
GMP-Con 2019 - Enhanced E-Commerce - Markus Vollmert (lunapark)
GMP-Con 2019 - Enhanced E-Commerce - Markus Vollmert (lunapark)GMP-Con 2019 - Enhanced E-Commerce - Markus Vollmert (lunapark)
GMP-Con 2019 - Enhanced E-Commerce - Markus Vollmert (lunapark)
 
GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...
GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...
GMP-Con 2019 - Conversion Optimierung mit Analytics + Optimize - Sophie Kubec...
 
Google Analytics Konferenz 2019_Kampagnen-Tracking_Holger Tempel (webalytics)
Google Analytics Konferenz 2019_Kampagnen-Tracking_Holger Tempel (webalytics)Google Analytics Konferenz 2019_Kampagnen-Tracking_Holger Tempel (webalytics)
Google Analytics Konferenz 2019_Kampagnen-Tracking_Holger Tempel (webalytics)
 
Google Analytics Konferenz 2019_App Tracking_Runa Reno (Booking.com) & Markus...
Google Analytics Konferenz 2019_App Tracking_Runa Reno (Booking.com) & Markus...Google Analytics Konferenz 2019_App Tracking_Runa Reno (Booking.com) & Markus...
Google Analytics Konferenz 2019_App Tracking_Runa Reno (Booking.com) & Markus...
 
Google Analytics Konferenz 2019_Attribution: building a model_Martin Frotzler...
Google Analytics Konferenz 2019_Attribution: building a model_Martin Frotzler...Google Analytics Konferenz 2019_Attribution: building a model_Martin Frotzler...
Google Analytics Konferenz 2019_Attribution: building a model_Martin Frotzler...
 
Google Analytics Konferenz 2019_Audience Management_Emma Crawford-Prajapati (...
Google Analytics Konferenz 2019_Audience Management_Emma Crawford-Prajapati (...Google Analytics Konferenz 2019_Audience Management_Emma Crawford-Prajapati (...
Google Analytics Konferenz 2019_Audience Management_Emma Crawford-Prajapati (...
 
Google Analytics Konferenz 2019_Data Privacy & Consent Management_Eckart Holz...
Google Analytics Konferenz 2019_Data Privacy & Consent Management_Eckart Holz...Google Analytics Konferenz 2019_Data Privacy & Consent Management_Eckart Holz...
Google Analytics Konferenz 2019_Data Privacy & Consent Management_Eckart Holz...
 
Google Analytics Konferenz 2019_Conversion Optimierung mit Analytics & Optimi...
Google Analytics Konferenz 2019_Conversion Optimierung mit Analytics & Optimi...Google Analytics Konferenz 2019_Conversion Optimierung mit Analytics & Optimi...
Google Analytics Konferenz 2019_Conversion Optimierung mit Analytics & Optimi...
 
Google Analytics Konferenz 2019_Customer Data Platform_Michaela Linhart (e-di...
Google Analytics Konferenz 2019_Customer Data Platform_Michaela Linhart (e-di...Google Analytics Konferenz 2019_Customer Data Platform_Michaela Linhart (e-di...
Google Analytics Konferenz 2019_Customer Data Platform_Michaela Linhart (e-di...
 
Google Analytics Konferenz 2019_Customer Data Platform_Timo von Focht (Comman...
Google Analytics Konferenz 2019_Customer Data Platform_Timo von Focht (Comman...Google Analytics Konferenz 2019_Customer Data Platform_Timo von Focht (Comman...
Google Analytics Konferenz 2019_Customer Data Platform_Timo von Focht (Comman...
 
Google Analytics Konferenz 2019_Google Marketing Platform - Enterprise_Siegfr...
Google Analytics Konferenz 2019_Google Marketing Platform - Enterprise_Siegfr...Google Analytics Konferenz 2019_Google Marketing Platform - Enterprise_Siegfr...
Google Analytics Konferenz 2019_Google Marketing Platform - Enterprise_Siegfr...
 

Recently uploaded

Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 

Recently uploaded (20)

Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 

GA Konferenz-2011 Nick Mihailovski_API