Author Archives: Iván Mosquera Paulo

Unknown's avatar

About Iván Mosquera Paulo

Software Engineer

Ikusth: Android threads dependency graph generator

English

Tras una temporada dedicada especialmente a depurar deadlocks relacionados con nuestro componente XMPP decidí construir Ikusth. Básicamente realiza lo que solía hacer con boli y papel, escribe el grafo de dependencias con las hebras y recursos implicados.

Más información en la publicación que escribí para el blog de desarrollo de la compañía:

http://corporate.tuenti.com/en/dev/blog/Ikusth-Android-threads-dependency-graph-generator

Proyecto en Github:

https://github.com/tuenti/ikusth

Graph%202

Español

After some time debugging a few deadlocks related to the XMPP component we have I decided to build Ikusth. It basically does what I used to do on paper, write the dependency graph of the threads and resources involved in a deadlock.

More info in the blog post I wrote for my company dev Blog:

http://corporate.tuenti.com/en/dev/blog/Ikusth-Android-threads-dependency-graph-generator

Project in Github:

https://github.com/tuenti/ikusth

Graph%202

Introducción a WebRTC y VozDigital

English

La semana pasada impartí el workshop “Introducción a WebRTC y VozDigital” en las oficinas de Tuenti para The Evnt (@TheEvnt).

A continuación los slides, el repositorio GitHub con el material y el vídeo de la sesión. Espero que sirva de ayuda a quien pase por aquí buscando dar sus primeros pasos con WebRTC.

http://www.slideshare.net/slideshow/embed_code/42260055

https://github.com/ivmos/webrtc-workshop

Español

Last week I gave the workshop “Intro to WebRTC and VozDigital” in the Tuenti offices for The Evnt (@TheEvnt).

Here you have the slides, the Github repo with the material and the recorded video of the session (spanish only sorry). I hope it can be valuable for those trying to learn WebRTC.

http://www.slideshare.net/slideshow/embed_code/42260055

https://github.com/ivmos/webrtc-workshop

reboot 2013

I didn’t post a single thing on 2012 :-S

The days of the long blog posts are gone for most of us, microblogging and social networks killed them.

Actually, I thought about closing this blog but as there’s some content which is reached every day, I’ve just updated it with a better theme and I’ll try to add content every month. It won’t be just about computing as the days when I only cared about that are gone too. 2012 was great and 2013 is being exciting too, but this time I’ll share a bit more about it on the internet.

 

Netbeans: rsync with remote server

rsync netbeans

So you’re still using Eclipse/PDT because you see no way to rsync your local files with your remote dev machine.

This is the workaround I use:

Continue reading

“CSS Pocket Reference”, Fourth edition, By Eric A. Meyer; O’Reilly Media;

CSS Pocket Reference

 Eric A. Meyer , also author of other CSS books like CSS: The Definitive Guide tries to provide a good tool for  the daily CSS work.

The book features the following parts:

  • 1. Basic concepts.
  • 2. Values
  • 3. Selectors.
  • 4. Property Reference.

As a pocket reference it is, don’t expect learning CSS from this book but a quick reference for your daily work. You’ll find a few references to chapters of CSS: The Definitive Guide. This edition is updated to CSS3. Continue reading

PHP Barcelona Conference 2010

Este año he tenido la suerte de asistir como ponente a la PHP Barcelona Conference para presentar “PHP for Android: Scripting PHP en Android”.

A pesar de que mi conferencia coincidía en el tiempo con otras dos muy interesantes creo que no quedaron sillas vacías y se cumplió el objetivo de generar interés en torno al proyecto.

Continue reading

Acerca de la certificación ZCE.

(Google translation : Link)

zce

Hoy he aprobado el examen “Zend PHP Certified Engineer – PHP5″ y he pensado que estaría bien un post con mi opinión sobre esta certificación.

 

Ikuspro es libre.

Ikuspro es el proyecto de fín de carrera que hice en su día en el que aprendí un montón de cosas sin las cuales no se me habría ocurrido empezar el proyecto PFA.

En su día ya comenté un poco de qué iba el tema . Tras eso la cosa terminó en que el proyecto obtuvo matrícula de honor.

Continue reading

Un vistazo a Quercus: PHP by Java

Quercus es una implementación de PHP 5.2 escrita totalmente en Java, algo similar al famoso Hiphop de facebook sólo que en lugar de un traductor a C++ se trata de un intérprete PHP que corre en Java.
Se ha oído hablar mucho menos de Quercus que de HipHop pero es probable que Hiphop no llegue a utilizarse tanto como ya se está utilizando Quercus.

Continue reading

[Destripando PHP] Las variables

Con esta entrada comienzo una serie en la que hablaré del lenguaje PHP atendiendo a cómo está implementado internamente, para cada post desarrollaré un pequeño PECL (extensión de PHP) que trabaje los conceptos. En realidad no haría falta recurrir a ese nivel para ver las estructuras internas ya que PHP5 tiene un API de Reflection, pero sí que es necesario para ver realmente cómo funcionan las cosas.
La motivación de esta serie es ir documentando lo que voy aprendiendo en mi estudio de PHP. En el desarrollo de mi PFC me enganché al tema de los intérpretes y ahora trato de continuar tomando PHP como ejemplo, al mismo tiempo me ayuda a tener una base sólida de cara al ZCE.

En este primer post veremos en profundidad cómo se trabajan las variables en PHP y su idiosincrasia.
Continue reading