Archive | Google RSS feed for this section

HTML5 en Google DevFest

19 Apr

La presentación de HTML5 que dio Ernest Delgado. Está en HTML5, como era de suponerse, así que puede que no se vea igual en todos los navegadores…

http://apirocks.com/html5/html5.html

Google AppEngine en Google DevFest

15 Apr

Aquí pongo la presentación de la plática de AppEngine:

Google Maps en Google DevFest

14 Apr

Y las presentaciones sobre mapas, que incluyen la nueva versión (V3) de javascript y varios links con demos. La segunda habla de buenas prácticas en programación de Google Maps:

Google Wave en Google DevFest

14 Apr

Aquí están las presentaciones de Pamela Fox sobre Google Wave:

Open Social en GoogleDevFest

14 Apr

Aquí dejo la presentación que dio Chriss Messina sobre Open Social en el GoogleDevFest:

Google Charts

15 Feb

Ahora que me tocó integrar gráficas al site de GMéxico, tuve que entrar en las florituras de las gráficas.

Además de Highcharts, la opción de Google parece bastante buena.

http://code.google.com/intl/uk/apis/charttools/

Asynchronous Tracking

11 Feb

The Snippet

The Analytics snippet is a small piece of JavaScript code that you paste into your pages. It activates Google Analytics tracking by inserting ga.js into the page, which in turn provides an API for customizing how your page is tracked. The following snippet represents the minimum configuration needed to track a page asynchronously. It specifies the page’s web property ID and then calls _trackPageview to send the tracking data back to the Google Analytics servers.

<script type=”text/javascript”>

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXX-X']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement(’script’); ga.type = ‘text/javascript’; ga.async = true;
    ga.src = (‘https:’ == document.location.protocol ? ‘https://ssl’ : ‘http://www’) + ‘.google-analytics.com/ga.js’;
    (document.getElementsByTagName(‘head’)[0] || document.getElementsByTagName(‘body’)[0]).appendChild(ga);
  })();

</script>

To use this on your pages, copy the code snippet above, replacing UA-XXXXX-X with your web property ID. If you need to do more than basic page tracking, see the tracking reference for a list of methods available in the API and see the usage guide for details on using the asynchronous syntax.

Important: If you want to use the asynchronous snippet, you should remove the existing tracking snippet first. We do not recommend using both snippets together on the same page.


Funcionalidad de grupos y comunidades con google friendconnect

10 Feb

Funcionalidad de grupos y comunidades con google friendconnect

Encontré esta aplicación de google que permite agregar grupos de fans a los sitios y muchas funcionalidades como una barra social, comentarios del sitio, comentarios de los post o páginas, encuestas simples, suscripción al boletin, Tweet This, share this on facebook, etc.

Pueden ver las opciones aquí, entras con tu usuario de gmail, y sigues los pasos (son muy simples), dando de alta el sitio que quieres agregar a friend connect, copiando el codigo HTML y por ultimo pegando este código en el HTML del sitio.

Chequen los gadgets, hay cosas interesantes.

Hola mundo!

4 Feb

echo “hola mundo!”;

alert (“hola mundo!”);

trace (“hola mundo!”);

print (“hola mundo!”);