Monday, February 28, 2011

The Pale Blue Dot

All work and no play makes eli have a twitter account

Senyors i senyores... com que amb la feina vaig totalment sense temps, he decidit disminuir els posts per aquí i augmentar el ritme de missatges curts. Així que:

Ara també em podreu trobar a www.twitter.com/elisenda_bou !!

Us espero allí!

Saturday, January 22, 2011

Saturday, January 8, 2011

Dil·lema de pingüins!

Perquè tot i que els pingüins siguin aus marines, a vegades també els hi fa mandra mullarse els peus...



Quin fart de riure!

The difference between knowing the name and knowing

Vist a meneame aquest matí.. i no m'he pogut aguantar de posar-ho aqui.



Que tingueu un bon dia!

Thursday, December 2, 2010

WhereAmI Available for Free in Android market!


Finally WhereAmI App, the application that lets you view your location (GPS or network based) and post a wall  message in your facebook account with your location and a link to google maps is available for free in Android market!!


Tell your friends where they can find you or update a meeting point on the go!

No  more need to wait for all your friends standing in a place, just move to another one and tell them your new location!

If you're interested, you can download it using this QR Code:


And if you're in the mood,  please reccomend it on facebook (which will be very appreciated)!


Thanks!

Friday, October 22, 2010

Using Facebook SDK in Android Applications

Howto publish images and links with Android in your Facebook Wall using stream.publish method from Facebook SDK:

1st: Download Facebook SDK using git. http://github.com/facebook/facebook-android-sdk
(highly recommended to play a little with Example.java and other methods)

2nd: create a new project from Example.java

3rd: create a Bundle with all the parameters to post and publish it using SampleDialogListener
             Bundle parameters = new Bundle();

               parameters.putString("method","stream.publish");
               String mylink="http://kinesina.blogspot.com";
                String myimagelink="http://kinesina.blogspot.com";
               String attachments = "{
                                   \"name\":\"Location Here\",
                                   \"href\":\""+mylink + "\",
                                   \"caption\":\"Click to view in Google Maps\",
                                   \"media\":[{
                                           \"type\":\"image\",
                                           \"src\": \"http://myimgurl\",
                                           \"href\": \""+myimagelink+"\"}]}";

                parameters.putString("attachment", attachments);
                mFacebook.dialog(Example.this, "stream.publish", parameters, new SampleDialogListener()) ;

4th: Using LocationManager and Google Maps API (which I will explain soon), you can post your location and a link to google maps in your facebook wall! 


If you liked this app (WhereAmI) you can download it from Android Market for free, or mark/like it on facebook (available soon).

Hope you like it, 'cause it is gonna be my first app published in Android Market!