Upgrade to Pro — share decks privately, control downloads, hide ads and more …

presentación betabeers + ducksboard

Betabeers
May 12, 2012
230

presentación betabeers + ducksboard

Betabeers

May 12, 2012
Tweet

Transcript

  1. ¿Qué hacemos? Evento mensual - 2 horas - Charla -

    Presentación de proyectos (web, apps, hardware) - Busco socio - Networking + Cervezas - Cena Cada 2 meses - Talleres - 2 horas - Hackathons - 12 horas
  2. ¡Se nos ha ido de las manos! 1- Madrid 2-

    Barcelona 3- Valencia 4- Zaragoza 5- Salamanca 6- Murcia 7- Bilbao 8- Girona 9- Badajoz 10- Buenos aires 11- Londres
  3. Próxima fecha 25 mayo - 19:00 Utopic_us - C/Concepción Jerónima,

    22 (zona la latina) http://bit.ly/betabeersmayo
  4. ¿Qué es? Es un servicio para crear un panel con

    metricas importantes para tu negocio en tiempo real. http://bit.ly/IKLtya
  5. API - Ejemplo 1 <?php // config $key = 'sdfdsfsdf232323wsfsfssfsf23432ew';

    $id = 1; $value = 940; // push update $ch = curl_init('https://push.ducksboard.com/values/' . $id . '/'); curl_setopt($ch, CURLOPT_USERPWD, $key . ":ignored"); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode( array( 'value' => $value ) ) ); curl_setopt($ch, CURLOPT_POST, 1); curl_exec($ch);
  6. API - Ejemplo 2 <?php // config $key = 'sdfdsfsdf232323wsfsfssfsf23432ew';

    $id = 1; $img = 'http://dominio.com/rutaimagen.jpg'; $caption = 'test'; $value = array('source' => $img, 'caption' => $caption); // push update $ch = curl_init('https://push.ducksboard.com/values/' . $id . '/'); curl_setopt($ch, CURLOPT_USERPWD, $key . ":ignored"); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode( array( 'value' => $value ) ) ); curl_setopt($ch, CURLOPT_POST, 1); curl_exec($ch);