Twitter Weekly Updates for 2011-11-13

Powered by Twitter Tools

Posted in Récréation | Leave a comment

Twitter Weekly Updates for 2011-11-06

Powered by Twitter Tools

Posted in Récréation | Leave a comment

Twitter Weekly Updates for 2011-10-30

  • have to wait until 2nd quarter in 2012 to have ICS on my Galaxy SII……. Too long ! #
  • did any iOS developer ever use their services : http://t.co/RB30Ff1M ???? #iOS #iosDev #
  • ranking bug : on iTunes on my mac, my app is #1 Education (France) but on AppStore on iPad, this is not the same… #
  • a lot of witches and vampires this morning at school…… #Halloween #
  • “@antoinepic: Facebook's future is mobile – http://t.co/LklRYgug"so they have to improve their apps! iPhone or android not really amazing #
  • en rogne contre shérif de la route qui t'empêches de passer pour pas être doublé alors que tu tournes dans la rue à côté ……. grrrrrr #
  • why UPC is not in our street ???? ;o( still waiting end of upload for my app…. #
  • great ;o( update of xcode removed all my provisioning profiles…. #ios5 #iosDev #
  • how to hold a 5 year old child: give him an empty box with scissors, it will become the most beautiful boats, castles,….. #finallyQuiet #
  • @mrboo suis intéressée aussi….. tu peux faire suivre si tu as des retours ? merci :o ) in reply to mrboo #
  • This evening in our street…. Happy to leave on the right side of the street ! http://t.co/cipI5jKm #
  • "@vinnycoyne: Getting lost in my own code…" ….. Add comments ;-) #

Powered by Twitter Tools

Posted in Récréation | Leave a comment

Twitter Weekly Updates for 2011-10-30

  • have to wait until 2nd quarter in 2012 to have ICS on my Galaxy SII……. Too long ! #
  • did any iOS developer ever use their services : http://t.co/RB30Ff1M ???? #iOS #iosDev #
  • ranking bug : on iTunes on my mac, my app is #1 Education (France) but on AppStore on iPad, this is not the same… #
  • a lot of witches and vampires this morning at school…… #Halloween #
  • “@antoinepic: Facebook's future is mobile – http://t.co/LklRYgug"so they have to improve their apps! iPhone or android not really amazing #
  • en rogne contre shérif de la route qui t'empêches de passer pour pas être doublé alors que tu tournes dans la rue à côté ……. grrrrrr #
  • why UPC is not in our street ???? ;o( still waiting end of upload for my app…. #
  • great ;o( update of xcode removed all my provisioning profiles…. #ios5 #iosDev #
  • how to hold a 5 year old child: give him an empty box with scissors, it will become the most beautiful boats, castles,….. #finallyQuiet #
  • @mrboo suis intéressée aussi….. tu peux faire suivre si tu as des retours ? merci :o ) in reply to mrboo #
  • This evening in our street…. Happy to leave on the right side of the street ! http://t.co/cipI5jKm #
  • "@vinnycoyne: Getting lost in my own code…" ….. Add comments ;-) #

Powered by Twitter Tools

Posted in Récréation | Leave a comment

XCode 4.2 : maintain app compatibility with iOS 3.0

Releasing XCode 4.2, Apple makes it difficult to release applications with deployment target < iOS 4.3. It seems that Apple would like all early iPhone adopter to leave their device to change to a new one…. as iPhone 2 can not be updated higher than iOS 3.1.3.
I don’t like to leave potential user so I try to continue working with target on iOS 3.0.

The last thing I found is that, by default, the only architecture available in Build Settings is armv7.
Sure, you can still workaround that by modifying this setting like described above :

If the other answers don’t work for you (as was the case for me with Xcode 4.2), try the following:

  1. Click your Project name (in the left column), followed by the Target:enter image description here
  2. Click the ‘Build Settings’ tab (in the right column):enter image description here
  3. Click the ‘Distribution’ row under ‘Architectures’, and choose ‘Other…’:enter image description here
  4. Double click the highlighted row named ‘$(ARCHS_STANDARD_32_BIT)’ in the popover that appears, and replace it by typing ‘armv6′. Then add a new row with the plus button in the bottom left of the popover, and type ‘armv7′, then click Done:enter image description here

That’s it. You should now be able to build/archive without generating errors.

Found here.

Posted in app development, iOS, iPhone, tutoriels | Tagged , , , , , | 1 Comment

Twitter Weekly Updates for 2011-10-23

  • Coffee time :-) #
  • bad day and indeed very bad week for productivity…. nothing really done and everything to be done. Hard to start new project from scratch #
  • Apple developer support is unefficient : you ask a question, they send the link to the top general documentation as an answer… #
  • @Cocoanetics oK thanks ! in reply to Cocoanetics #
  • @Cocoanetics sure less than 5% isn't big amount ! where do you get this number ? in reply to Cocoanetics #
  • @Cocoanetics sure… amazing for me as a developer but what about user, is there a big amount of user still 3.x ? I don't know …. in reply to Cocoanetics #
  • @Cocoanetics so what about supporting 3.x I'm still changing iOS deployment target to 3.0 but never sure it's still necessary.hard to know. in reply to Cocoanetics #
  • ARC or not ARC, that i s the question ….. #iosDev #
  • 37 years old today and no desert for lunch….. Finally adulthood ? :-) #
  • just discover this in XCode : the small "point" which allow to see in which xib files are the IBOutlet defined in a .h! http://t.co/yNjs1gSl #

Powered by Twitter Tools

Posted in Récréation | Leave a comment

Méthode de classe versus méthode d’instance

Embrouillamini cérébral ce matin, un petit retour aux fondamentaux a été nécessaire !

Méthodes de classe/d’instance

Les méthodes de classe et d’instance se différencient exactement de la même manière que les variables de classe ou d’instance. Ainsi, on appelle une méthode de classe (prenons l’exemple de la classe Point) parPoint.quelleDimension(). Les méthodes d’instance ne s’appliquent qu’à une instance de classe, il est donc nécessaire de créer au moins un objet pour pouvoir appeler ces méthodes.

Exemple en Java :

Point monPoint = new Point(4,6) ;
//On crée un Point

monPoint.symetrieSelonX() ;
//On appelle la méthode symetrieSelonX() sur l'instance monPoint
//de Point.

System.out.println("L'abscisse de monPoint est : " + monPoint.getX()) ;
System.out.println("Oracle : L'abscisse de monPoint est : 4") ;
//On remarque que les accesseurs sont appelés comme des méthodes
//d'instance normales, et en effet, c'en sont.

System.out.println("L'ordonnée de monPoint est : " + monPoint.getY()) ;
System.out.println("Oracle : L'ordonnée de monPoint est : -6) ;

On a donc créé une instance à laquelle on a appliqué des méthodes.

Thanks to wikiversité, whatever you search, it’s on internet !

Posted in Uncategorized | Leave a comment

Twitter Weekly Updates for 2011-10-16

Powered by Twitter Tools

Posted in Récréation | Leave a comment

Twitter Weekly Updates for 2011-10-09

  • “@thejournal_ie: The war in Afghanistan began on Oct 7, 2001: ten years ago today.<< wouf already 10 years…. so sad…. #
  • suggestion à #SNCF : twitter en direct quand retard suie à incident comme @irishRail ! #tweetUtile ! #
  • Google suicide : block Larry Page on Google+ or report as spam ;o) #
  • Comment ne plus apparaitre dans les pages 123people : http://t.co/FQSAMJ4k #
  • Understand the mobile consumer : http://t.co/lwNx71Bb #
  • a good way to understand memory management with Automatic Reference Counting in iOS : http://t.co/Vw7xwZ9I #

Powered by Twitter Tools

Posted in Récréation | Leave a comment

Ne plus apparaître dans les pages 123people

Vous connaissez sûrement le site www.123people.fr. C’est un site web du groupe Pages Jaunes. Le principe est simple : ils construisent des pages webs sur des personnes en agrégeant les infos trouvées sur internet. Jusque là rien de très intrusif.

Là où cela commence à être gênant c’est qu’ils font également apparaître les recherches dans les pages blanches dans la page de résultat. Donc si vous êtes dans l’annuaire, et que vous êtes le seul avec ce patronyme, une recherche rapide sur Google, sans vraiment le chercher, conduit à donner vos adresses et numéro de téléphone personnels…. Pas glop !

Un peu gênée par ce constat, j’ai donc lancé une recherche sur Google : “123people remover”. Résultat : le premier lien conduit sur un site très bien fait qui permet, en entrant l’url de votre profil 123people, de collecter tous les liens présents sur la page du profil.

A partir de ces liens, un mail est généré automatiquement. Il ne vous reste plus qu’à l’envoyer au support du site 123people (dont l’adresse mail est fournie).

J’ai donc envoyé ce mail. Bilan : toutes les urls listées dans le mail ont été supprimées de la page générée automatiquement avec mes informations sur 123people. J’ai quand même dû envoyer un second mail pour que le résultat de la recherche Pages Blanches soient également supprimés.

La loi informatique et liberté qui permet d’avoir un droit de modifications sur ses infos personnelles est donc bien appliquée ! Ce qui est gênant quand même c’est que l’on puisse utiliser nos données pour les agglomérer comme ça…. Big Brother nous regarde !

Posted in media, société | Tagged | Leave a comment