Pon a prueba tus conocimientos de DART

Recientemente he visto como Guillaume Girou ha creado una divertida y muy instructiva presentación para poner a prueba nuestros conocimientos sobre DART.

Debes utilizar las flechas de tu teclado y la barra espaciadora.

Enlace a la presentación sobre Google Dart.
http://data-prez.appspot.com/deck/id=agtzfmRhdGEtcHJlenIRCxIJU2xpZGVEZWNrGKm6BAw&slide=0?locale=en

Artículo escrito por Moisés Belchín

Introducción a Google DART

Para todo aquel que desconozca Google Dart, se han creado una serie de documentos realmente interesantes que permiten que nos familiaricemos rápidamente con este fantástico proyecto que engloba el lenguaje (DART), la máquina virtual (DART VM) y el entorno de desarrollo (DART Editor).

Publico los enlaces a continuación.

Listado de Presentaciones sobre el proyecto.
http://www.dartlang.org/slides/

Videos sobre DART
> Introducción a Dart: http://www.youtube.com/watch?v=vT1KmTQ-1Os
> Dart preguntas y respuestas: http://www.youtube.com/watch?v=EZzZ7z6iuYw
> Introducción al editor de Dart: http://www.youtube.com/watch?v=9PHMKzgrmxE
> Dart Editor preguntas y respuestas: http://www.youtube.com/watch?v=gmOrexwZepU

Artículo escrito por Moisés Belchín

Google Developers Videos

He encontrado un recurso que estoy seguro puede interesar a mucha gente.

Se trata del portal de Google Developers la sección de videos.

Podréis ver los videos que se van publicando relacionados a los desarrollos de Google, Google IO Live, etc.

Espero sea de vuestro interés.

http://www.youtube.com/user/GoogleDevelopers/videos?feature=context-chv&sort=dd&page=1&view=0

Artículo escrito por Moisés Belchín

New DART event at Google IO

dart (1)

Wednesday 27th June 2012 you can watch it live at Google IO.

I attached the official post on DART discuss.

Hello fellow Dartisans!

Lars Bak and Kasper Lund will present «Dart: A modern web language» at Google IO, and you can watch it LIVE! Tune in to https://developers.google.com/events/io/ on Wednesday, July 27th at 1:30PM (US/Pacific) to watch the live broadcast.

If you can’t make it, no worries, this and other Google IO presentations will be recorded and uploaded to YouTube after the show.

Thanks for all your support,
Seth

Thanks Seth.

Post wrote by Moisés Belchín

Nuevo evento sobre DART

dart (1)

El miercoles 27 de Junio de 2012 Lars Bak y Kasper Lund realizarán una presentación sobre Dart, «DART: A modern web language» en Google IO

Para todos los interesados podréis seguir el evento en vivo a través de este enlace:

https://developers.google.com/events/io/

Nota oficial publicada en la lista de Dart.

Hello fellow Dartisans!

Lars Bak and Kasper Lund will present «Dart: A modern web language» at Google IO, and you can watch it LIVE! Tune in to https://developers.google.com/events/io/ on Wednesday, July 27th at 1:30PM (US/Pacific) to watch the live broadcast.

If you can’t make it, no worries, this and other Google IO presentations will be recorded and uploaded to YouTube after the show.

Thanks for all your support,
Seth

Gracias Seth.

Artículo escrito por Moisés Belchín

Hangout with DART Team

dart (1)

Hi,

I’ve received new post with a link to see a Hangout DART Team video.

You can see the video here: http://www.dartlang.org/hangouts/dartisans-ep-6.html

I attached the official Dart discuss post:

Hello Dartisans!

We posted a video of our a Hangout with Adam Smith, Chris Buckett, John Evans, John McCutchan, and Lars Tackmann. We chatted about their open source work on their Dart libraries, and what they’d like to see from Dart in the future. Thanks to our participants!

Let us know what other topics or formats you’d like to see in the future.

Enjoy!
Seth

Post wrote by Moisés Belchín

Reunión con los miembros del equipo de DART

dart (1)

Me acaba de llegar la nota sobre la publicación de un video donde puedes ver una reunión con los miembros del equipo de DART.

Podéis acceder al video aquí: http://www.dartlang.org/hangouts/dartisans-ep-6.html

Os dejo el enlace y la publicación de la nota.

Hello Dartisans!

We posted a video of our a Hangout with Adam Smith, Chris Buckett, John Evans, John McCutchan, and Lars Tackmann. We chatted about their open source work on their Dart libraries, and what they’d like to see from Dart in the future. Thanks to our participants!

Let us know what other topics or formats you’d like to see in the future.

Enjoy!
Seth

Artículo escrito por Moisés Belchín

CAMBIO IMPORTANTE: Interfaz Timer se mueve a la librería dart:isolate

Seguimos con importantes cambios en lo que se refiere a nuestro código fuente, hoy le toca el turno a la interfaz Timer.

Conoce la interfaz Timer
http://api.dartlang.org/docs/continuous/dart_isolate/Timer.html

Lee el comentario completo sobre este cambio.
https://dartgoogle.wordpress.com/2012/06/21/breaking-change-timer-interface-moved-to-dartisolate/

Comentan que la interfaz Timer se ha movido a la librería dart:isolate, antes estaba en la librería dart:io, para permitir que cada entorno pueda proporcionar su propia implementación y resulte más sencillo portar código.

Este cambio actualmente afecta a la máquina virtual de Dart (DART VM), pero en un futuro las implemtaciones del Timer de Dartium o de Dart2Js también serán cambiadas.

Artículo escrito por Moisés Belchín

BREAKING CHANGE: Timer interface moved to dart:isolate

New breaking change for DART.

Post.

With revision

http://code.google.com/p/dart/source/detail?r=8987

the Timer interface moved to the «dart:isolate» library. This will
allow different environments (e.g. Dartium) to provide their own Timer
implementations making it easier to write portable code which relies
on an event loop and delayed execution.

Currently the only environment which has a working Timer
implementation is the standalone Dart VM binary. If you have been
using the Timer interface before, you will now need to import the
«dart:isolate» library instead of the «dart:io» library.

With this change other runtime environments such as Dartium or dart2js
can now provide an implementation of the Timer interface and I am sure
the individual teams will announce when they are ready.

-Ivan

P.S. It might well be that «dart:isolate» will not be the final
resting place of the Timer interface. Out of the existing libraries it
was the best fit at the moment. This question will be addressed as we
keep cleaning up our libraries.

Ivan Posva.

Post wrote by Moisés Belchín

CAMBIO IMPORTANTE: Clase DATE

A continuación paso a comentar algunos cambios de importancia en la clase Date de Google Dart.

Cualquiera de nosotros hemos utilizado o estamos utilizando esta clase en nuestras aplicaciones, asique mucho ojo con estos cambios porque con total seguridad afectarán a tú código.

Puedes ver la nota de la publicación aquí.
https://dartgoogle.wordpress.com/2012/06/20/importante-change-date-members/

– Date.isUtc ahora será getter.

– Renombrado de los siguientes propiedades.
* Date.hours -> Date.hour
* Date.minutes -> Date.minute
* Date.seconds -> Date.second
* Date.milliseconds -> Date.millisecond
* Date.fromEpoch -> Date.fromMillisecondsSinceEpoch
* Date.value -> Date.millisecondsSinceEpoch

– Date.MON == 1 (hasta Date.SUN == 7) (de acuerdo a ISO8601).

Artículo escrito por Moisés Belchín