<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Ziki - Sylvain Gamel's last published content</title>
    <link>http://www.ziki.com/en/sgamel+4550</link>
    <pubDate>Thu, 15 Jul 2010 11:36:36 +0200</pubDate>
    <ttl>120</ttl>
    <description>My aggregated content at ziki.com</description>
    <item>
      <title>Touch Notation &#187; Matt Legend Gemmell</title>
      <link>http://mattgemmell.com/2010/07/14/touch-notation?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:%20mattgemmell/rss2%20(Matt%20Legend%20Gemmell%20-%20RSS2)&amp;utm_content=Google%20Reader</link>
      <description>
        <![CDATA[<div class="post_content wiki_text">Une convention de notation pour identifier les actions dans une interface tactile multi-points.</div>]]>
      </description>
      <pubDate>Thu, 15 Jul 2010 11:36:36 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12660596</guid>
    </item>
    <item>
      <title>gCons: Free All-Purpose Icons for Designers and Developers (100 icons PSD) - Smashing Magazine [del.icio.us]</title>
      <link>http://feedproxy.google.com/%7Er/Sylvain_v2dot0/%7E3/OxmRjWGm5YQ/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text">Un set d'icônes pour développeurs.<img src="http://feeds.feedburner.com/~r/Sylvain_v2dot0/~4/OxmRjWGm5YQ" height="1" width="1" />
</div>]]>
      </description>
      <pubDate>Thu, 15 Jul 2010 10:05:31 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12677705</guid>
    </item>
    <item>
      <title>gCons: Free All-Purpose Icons for Designers and Developers (100 icons PSD) - Smashing Magazine</title>
      <link>http://www.smashingmagazine.com/2010/07/14/gcons-free-all-purpose-icons-for-designers-and-developers-100-icons-psd</link>
      <description>
        <![CDATA[<div class="post_content wiki_text">Un set d'icônes pour développeurs.</div>]]>
      </description>
      <pubDate>Thu, 15 Jul 2010 10:05:31 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12660597</guid>
    </item>
    <item>
      <title>New Objective-C Features [UPDATEDx2]</title>
      <link>http://feedproxy.google.com/%7Er/mdnbigblog/%7E3/0LFtBZFzrN8/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  Prior to Apple acquiring NeXT, Objective-C had had relatively little added to it since it became a fully fledge language rather than simply a C preprocessor back in the 80s. About the only thing added for many years after Apple acquired NeXT was the @try…@catch…@finally exception syntax.
</p>
<p>
  Then in 2007 Apple released Leopard and with it Objective-C 2.0 and the modern runtime. This added features such as properties, fast enumeration, class extensions and garbage collection and improved areas such as protocols, while making the runtime far more flexible and less fragile to change. Last year with Snow Leopard, Apple added blocks and associative storage to the language in what can sort of be thought of as Objective-C 2.1.
</p>
<p>
  At WWDC Apple announced a few more features, which I personally think of as Objective-C 2.2. These are "@synthesize by default" and "declare ivars in class extensions". These are features that I have wanted for quite a while and I am sure a lot of other Objective-C developers have wanted. So what are they and how do you get them?
</p><br />
<h3>
  Getting the Features
</h3>
<p>
  To get them there are two requirements:
</p>
<ul>
  <li>Your app must use the modern runtime (so no 32 bit Mac apps)
  </li>
  <li>You have to use LLVM 1.5 or higher as your compiler
  </li>
</ul>
<p>
  If you fulfil those requirements then you're almost able to use them. All that is left to do is add these two flags to your "Other C Flags" build setting:
</p>
<ul>
  <li>-Xclang
  </li>
  <li>-fobjc-nonfragile-abi2
  </li>
</ul>
<p>
  So now we're all set up, what the hell are these features?
</p><br />
<h3>
  @synthesize by Default
</h3>
<p>
  With the addition of properties, Apple was able to remove a lot of boilerplate code from our classes. If you are using the legacy runtime then you are able to write code like this:
</p>
<pre style="width: 600px;">
==========MyClass.h==========

@interface MyClass {
    NSString *foo;
}

@property (copy) NSString *foo;

@end



==========MyClass.m==========

@implementation MyClass

@synthesize foo;

@end
</pre>
<p>
  It is a lot cleaner than what you had to write pre Obj-C 2.0, but it still has a lot of stuff to write. If you are using the modern runtime (ie are writing an iOS or 64 bit only Mac app) then you can get rid of the instance variable:
</p>
<pre style="width: 600px;">
==========MyClass.h==========

@interface MyClass {}

@property (copy) NSString *foo;

@end



==========MyClass.m==========

@implementation MyClass

@synthesize foo;

@end
</pre>
<p>
  That's a bit cleaner, we're only having to sort out our property in two places rather than three, but it's still one too many. 95% of the time, you just want to synthesise the methods and instance variable and so the vast majority of property code in your implementation is the same. Well as you can probably guess, "@synthesize by default" means that this is done for you by the compiler by default. If you want to override it with an @dynamic statement or link it to a different instance variable you can, but for the rest of the time you can reduce your code to this:
</p>
<pre style="width: 600px;">
==========MyClass.h==========

@interface MyClass {}

@property (copy) NSString *foo;

@end



==========MyClass.m==========

@implementation MyClass

@end
</pre>
<p>
  There is one slight gotcha with this. <span style="text-decoration: line-through;">Due to what seems to be a compiler bug,</span> you will get an error if you try to directly access the synthesised instance variable. Unfortunately the only ways to fix this are to either add @synthesize, add the instance variable or only access it via the property methods.
</p>
<p>
  <strong>[Update]</strong> It seems that this isn't a bug but is instead expected behaviour. The @synthesize methods are generated at the end of the class if you don't specify them explicitly, as the compiler can't tell if the properties need to be default synthesised until it has got to the end of the implementation.
</p>
<p>
  <strong>[Update 2]</strong> And now it seems the LLVM/Clang team are going to try and work around this and get it working as you would expect. Three cheers for the LLVM/Clang team!
</p><br />
<h3>
  Declare Instance Variables in Class Extensions
</h3>
<p>
  So, we have got rid of the instance variables for our properties, but these are public anyway, it's not that big a deal if developers can see them in the header. However, what is left are the private instance variables, the ones only used internally in a class. We can hide methods we don't want as our public interface in our implementation file, but not our instance variables. Instead we end up with this:
</p>
<pre style="width: 600px;">
==========MyClass.h==========

@interface MyClass {
    id internal1;
    id internal2;
}

@end



==========MyClass.m==========

@interface MyClass ()

- (void)internalMethod;

@end


@implementation MyClass

- (void)internalMethod {
    NSLog(@"%@ %@", internal1, internal2);
}

@end
</pre>
<p>
  Thanks to Objective-C 2.0 and class extensions we can put our internal method declaration into our .m file and also have the compiler check that it is implemented and warn us if it isn't (unlike if we added a simple category). What we haven't been able to do is do the same for our instance variables. Well we can now, so our code can now look like this:
</p>
<pre style="width: 600px;">
==========MyClass.h==========

@interface MyClass
@end


==========MyClass.m==========

@interface MyClass () {
 id internal1;
 id internal2;
}

- (void)internalMethod;

@end


@implementation MyClass

- (void)internalMethod {
 NSLog(@"%@ %@", internal1, internal2);
}

@end
</pre>
<p>
  Our internal instance variables really are internal now, which makes the header effectively become purely our public interface. And if you are feeling really crazy, you can have multiple class extensions:
</p>
<pre style="width: 600px;">
==========MyClass.h==========

@interface MyClass
@end


==========MyClass.m==========

@interface MyClass () {
 id internal1;
}

- (void)internalMethod;

@end


@interface MyClass () {
 id internal2;
}
@end


@implementation MyClass

- (void)internalMethod {
 NSLog(@"%@ %@", internal1, internal2);
}

@end
</pre><br />
<br />
<br />
<p>
  These may only seem like small enhancements, but they help you reduce the code you need to write and make that which you do much neater. It is little enhancements like this that keep trickling out that makes the life of an Objective-C developer that much easier.
</p><br />
<br />
<hr />
<strong><em>This post is <strong>NOT</strong> original MDN content but aggregated from <a href="http://www.mcubedsw.com/blog">Martin Pilkington's Blog - M Diced</a><br />
Please click the article link to visit the original website/post</em></strong>
<hr />
The Big Blog is provided by the <a href="http://www.macdevelopernetwork.com">The Mac Developer Network</a><br />
<img src="http://feeds.feedburner.com/~r/mdnbigblog/~4/0LFtBZFzrN8" height="1" width="1" />
</div>]]>
      </description>
      <pubDate>Tue, 13 Jul 2010 10:41:51 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12648517</guid>
    </item>
    <item>
      <title>How to make your web content look stunning on the iPhone 4&#8217;s new Retina display</title>
      <link>http://feedproxy.google.com/%7Er/mdnbigblog/%7E3/y7NdgR1BcJ8/3331</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><img height="425" alt="An image showing the superior detail in using high-resolution web images for the iPhone 4 Retina display" width="500" />
<p>
  The moment you first lay eyes on the iPhone 4's new Retina display, you are ruined. No other display will ever make you happy. Not unless it, too, is a Retina display. You start seeing pixels everywhere. My beloved MacBook Pro's screen? Pixels. The iPad I bought a few months ago and couldn't leave aside? Pixels.
</p>
<h2>
  Retina changes everything
</h2>
<p>
  The iPhone 4 really does change everything again and not just for phones. By introducing the Retina display, Apple has just changed the rules of the game. Make no mistake, this is as fundamental a shift as the move from black and white to color TV. I now want Retina displays on my next iPad and my next MacBook Pro (and will happily pay a premium for it). Whether or not Apple has the technology to meet the expectations it has now created with the Retina display on its other products is another issue (i.e., does the technology exist to manufacture a 326ppi 15" retina display for a MacBook Pro?)
</p>
<p>
  With the introduction of the Retina display, Apple has guaranteed the following three things:
</p>
<ol>
  <li>Vectors will play a central role in any graphic production pipeline.
  </li>
  <li>You basically have to design liquid interfaces (and interface elements) for your apps.
  </li>
  <li>You won't be able to get away with the levels of image compression you've been using so far.
  </li>
</ol>
<p>
  Basically, if you want your applications and web sites to look beautiful on the iPhone 4's new retina screen, you're going to have to create high-resolution versions of your bitmaps and/or use vectors. Resolution independence is here today and it is here to stay.
</p>
<h2>
  What about images in web pages?
</h2>
<p>
  While version 4 of the iPhone SDK handles much of the hassle of working with two versions of every bitmap for you by automatically loading the right image if you adhere to the simple naming convention of adding @2x to the ends of your image names, no such automagic handling of images exists for images in web pages. I'd been meaning to look into this since I got my iPhone 4 last week and was happy to see that <a href="http://blog.iwalt.com/" title="WaltPad">Walt Dickinson</a> beat me to it with his article on <a href="http://blog.iwalt.com/2010/06/targeting-the-iphone-4-retina-display-with-css3-media-queries.html" title="Targeting the iPhone 4 Retina Display with CSS3 Media Queries - WaltPad">Targeting the iPhone 4 Retina Display with CSS3 Media Queries</a> in which he draws on Dave Hyatt's post on <a href="http://webkit.org/blog/55/high-dpi-web-sites/" title="Surfin’ Safari - Blog Archive » High DPI Web Sites">high DPI web sites</a>, John Gruber's <a href="http://daringfireball.net/2010/04/why_960_by_640" title="Daring Fireball: Why 960 × 640">Why 960x640</a> post, and the <a href="http://developer.apple.com/safari/library/documentation/appleapplications/reference/safariwebcontent/OptimizingforSafarioniPhone/OptimizingforSafarioniPhone.html" title="Safari Web Content Guide: Optimizing Web Content">Safari Web Content Guide</a> to suggest the use of <code>device-pixel-ratio</code> <a href="http://www.w3.org/TR/css3-mediaqueries/">CSS3 media query</a> to serve high-resolution images to devices with high-DPI screens:
</p>
<blockquote>
  <pre>
<code> 
&lt;link rel="stylesheet" type="text/css" href="/css/retina.css" media="only screen and (-webkit-min-device-pixel-ratio: 2)"
/&gt;</code>
</pre>
</blockquote>
<p>
  Then, in the Retina-specific CSS, he loads in 32x32 icons as background images and specifies their dimensions in <a href="http://webkit.org/blog/55/high-dpi-web-sites/" title="Surfin’ Safari - Blog Archive » High DPI Web Sites">CSS pixels</a> as 16x16 using the <code>background-size</code> CSS property.
</p>
<h2>
  Demo
</h2>
<p>
  I put together <a>a quick demo</a> using the same technique that you can <a>test out</a>. It uses the lovely <a href="http://www.smashingmagazine.com/2008/06/20/smashing-royal-icon-set/" title="Smashing Royal Icon Set - Smashing Magazine">Smashing Royal Icon Set</a> by <a href="http://artua.com/" title="Artua Design Studios">Artua.com</a> to embed 64x64 and 128x128 actual pixel size icons for display at 64x64 CSS pixel size.
</p>
<p>
  <a>Download the source</a> (.zip; 74KB).
</p>
<p>
  CSS media queries and background images are all well and good, but what about other visual assets such as images embedded on a web site via the <code>img</code> tag? Or videos?
</p>
<h2>
  A call for native browser support for high-DPI image and video substitution
</h2>
<p>
  I'd like to suggest that browsers adopt the same naming convention that Cocoa Touch uses to find and load high-DPI versions of image and video assets. That is, if I embed an image using the following code…
</p>
<pre>
<code>&lt;img src="flower.jpg" alt="A beautiful rose"&gt;</code>
</pre>
<p>
  … it should load in flower.jpg when the device-pixel-ratio is 1 but it should attempt to find an image called flower@2x.jpg at the same relative path if device-pixel-ratio is 2 (and so on, for higher pixel-ratios), falling back to the original graphic if it can't find a high-resolution version.
</p>
<p>
  (And the same convention could be used to load video assets.)
</p>
<p>
  Update: <a href="http://www.zirro.se/">Magne Andersson</a> pointed out in the comments (and I agree) that sending two requests for every image asset would not be ideal. However, it would be easy to work around this by introducing a new HTML meta tag that tells the browser whether or not high-resolution images are available. The browser then only tries to load high-resolution images if the meta tag is present and if it detects that it is running on a high-DPI screen.
</p>
<h2>
  How to optimize for high-DPI screens today
</h2>
<p>
  Since browsers do not currently have this sort of automatic support for loading high-resolution versions of image and video assets, how can we detect that the site is being displayed on a high-DPI screen and load in high-resolution assets? The obvious way is to <a href="http://www.mobilexweb.com/blog/iphone4-ios4-detection-safari-viewport" title="iPhone 4 and iOS 4 Safari detection &amp; behavior with CSS media queries, viewport and JavaScript timers | Mobile Web Programming">use a combination of CSS media queries and JavaScript</a>:
</p>
<ol>
  <li>Use the <code>device-pixel-ratio</code> CSS query to load in a high-DPI CSS file,
  </li>
  <li>Set some CSS property to a unique value (to use as a flag),
  </li>
  <li>Check that value in JavaScript and substitute high-resolution image/video assets accordingly.
  </li>
</ol>
<h2>
  Don't forget about SVG
</h2>
<p>
  SVG has been the unloved step-child of the web ever since I can remember. However, it has really begun interest me now that we're moving to creating resolution-independent designs. (That's why I'm so happy that I have the chance to catch <a href="http://schepers.cc/" title="Reinventing Fire">Doug Schepers</a>'s <a href="http://atmedia.webdirections.org/program/development#svg-today-and-tomorrow" title="Development Track | @media 2010">talk on SVG</a> at tonight's <a href="http://skillswap.org/brighton/" title="Skillswap | Brighton: Tiny, free speaking events.">SkillSwap</a> after missing it during <a href="http://atmedia.webdirections.org/" title="@media 2010">WebDirections @media</a>.) If you, too, have been ignoring it, now might be a good time to <a href="http://svg-wow.org/">take another look</a>.
</p>
<h2>
  Why native iPhone app developers should care
</h2>
<p>
  Most native iPhone applications are – to some degree – hybrid apps and use the UIWebView WebKit control to embed HTML, CSS, and JavaScript content. Some native apps – such as those wrapped by <a href="http://www.phonegap.com/" title="PhoneGap">PhoneGap</a>, are almost entirely created with web technologies. Regardless of where on this spectrum your app falls, you will probably find yourself having to support high-DPI images in web content. Not only that, but UIWebView renders SVG so you could consider using it to keep parts of your interface as vectors without having to write custom drawing code.
</p>
<p>
  The iPhone 4's Retina display really does change everything. The sooner you start thinking about (and practicing) resolution-independent design, the sooner you can start to take advantage of this beautiful new screen and the other high-DPI screens that will, no doubt, be following its lead.
</p>
<div>
  <a href="http://feeds.feedburner.com/~ff/aralbalkan?a=kQEVghiF5Lo:zilOSxxgN4Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/aralbalkan?d=yIl2AUoC8zA" /></a> <a href="http://feeds.feedburner.com/~ff/aralbalkan?a=kQEVghiF5Lo:zilOSxxgN4Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/aralbalkan?d=qj6IDK7rITs" /></a> <a href="http://feeds.feedburner.com/~ff/aralbalkan?a=kQEVghiF5Lo:zilOSxxgN4Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/aralbalkan?i=kQEVghiF5Lo:zilOSxxgN4Q:V_sGLiPBpWU" /></a> <a href="http://feeds.feedburner.com/~ff/aralbalkan?a=kQEVghiF5Lo:zilOSxxgN4Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/aralbalkan?i=kQEVghiF5Lo:zilOSxxgN4Q:gIN9vFwOqvQ" /></a> <a href="http://feeds.feedburner.com/~ff/aralbalkan?a=kQEVghiF5Lo:zilOSxxgN4Q:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/aralbalkan?i=kQEVghiF5Lo:zilOSxxgN4Q:F7zBnMyn0Lo" /></a> <a href="http://feeds.feedburner.com/~ff/aralbalkan?a=kQEVghiF5Lo:zilOSxxgN4Q:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/aralbalkan?d=I9og5sOYxJI" /></a>
</div><img src="http://feeds.feedburner.com/~r/aralbalkan/~4/kQEVghiF5Lo" height="1" width="1" /><br />
<br />
<hr />
<strong><em>This post is <strong>NOT</strong> original MDN content but aggregated from <a href="http://aralbalkan.com">Aral Balkan's Blog</a><br />
Please click the article link to visit the original website/post</em></strong>
<hr />
The Big Blog is provided by the <a href="http://www.macdevelopernetwork.com">The Mac Developer Network</a><br />
<img src="http://feeds.feedburner.com/~r/mdnbigblog/~4/y7NdgR1BcJ8" height="1" width="1" />
</div>]]>
      </description>
      <pubDate>Tue, 13 Jul 2010 10:39:05 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12648518</guid>
    </item>
    <item>
      <title>Aujourd'hui c'est beignets!</title>
      <link>http://www.flickr.com/photos/sylvain_gamel/4782834024/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  <a href="http://www.flickr.com/people/sylvain_gamel/">Sylvain Gamel</a> a posté une photo&nbsp;:
</p>
<p>
  <a href="http://www.flickr.com/photos/sylvain_gamel/4782834024/" title="Aujourd'hui c'est beignets!"><img src="http://farm5.static.flickr.com/4076/4782834024_ef0b2b437d_m.jpg" height="179" alt="Aujourd'hui c'est beignets!" width="240" /></a>
</p>
<p>
  Flo se lance dans les beignets. Nature ou au nut' ça va être une tuerie.
</p>
</div>]]>
      </description>
      <pubDate>Sun, 11 Jul 2010 13:38:28 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12677104</guid>
    </item>
    <item>
      <title>After the Deadline - Spell, Style, and Grammar Checker for WordPress, Firefox, TinyMCE, jQuery, and CKEditor</title>
      <link>http://www.afterthedeadline.com</link>
      <description>
        <![CDATA[<div class="post_content wiki_text">Un correcteur grammatical pour OpenOffice, WordPress et Firefox (entre autre).</div>]]>
      </description>
      <pubDate>Fri, 09 Jul 2010 10:57:09 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12650893</guid>
    </item>
    <item>
      <title>After the Deadline - Spell, Style, and Grammar Checker for WordPress, Firefox, TinyMCE, jQuery, and CKEditor [del.icio.us]</title>
      <link>http://feedproxy.google.com/%7Er/Sylvain_v2dot0/%7E3/z2ueHxvLG5k/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text">Un correcteur grammatical pour OpenOffice, WordPress et Firefox (entre autre).<img src="http://feeds.feedburner.com/~r/Sylvain_v2dot0/~4/z2ueHxvLG5k" height="1" width="1" />
</div>]]>
      </description>
      <pubDate>Fri, 09 Jul 2010 10:57:09 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12648146</guid>
    </item>
    <item>
      <title>Le Bon Coin lance sa version mobile</title>
      <link>http://www.presse-citron.net/le-bon-coin-lance-sa-version-mobile</link>
      <description>
        <![CDATA[<div class="post_content wiki_text">Au cas où il il vous prendrait une envie subite de consulter la liste des spoilers d'occasion pour votre Twingo depuis la salle d'attente de votre dentiste, voilà une bonne nouvelle : <strong>Le Bon Coin</strong> vient de sortir <a href="http://mobile.leboncoin.fr">la version mobile</a> de son site de petites annonces.
<p style="text-align: center;">
  <a href="http://www.presse-citron.net/wordpress_prod/wp-content/uploads/leboncoin_mobile.jpg"><img title="leboncoin_mobile" src="http://www.presse-citron.net/wordpress_prod/wp-content/uploads/leboncoin_mobile.jpg" height="230" alt="" width="530" /></a>
</p>C'est drôle Le Bon Coin : voilà un site dont personne ne parle quasiment jamais dans les blogs (à part chez ceux qui s'intéressent au gros trafic des principaux sites français[1]), et que j'ai découvert il y a environ deux ans quand je faisais du ménage dans mes placards et que des amis (pas du tout Web 2.0) l'ont mentionné comme un truc très efficace pour vendre des petites choses pas chères dont on ne sait plus quoi faire. Une sorte de vide-grenier permanent en ligne. Depuis je l'utilise régulièrement pour vider ma cave car je n'ai pas de grenier mais ça marche aussi. Il parait que ça marche aussi très bien pour les choses plus coûteuses, y compris voitures et même l'immobilier. Fin de la parenthèse. <strong>Le Bon Coin vient donc de publier la version mobile de son site web</strong>, qui permet d'emporter dans sa poche les petites annonces afin de les consulter facilement en rapidement sans avoir à passer par son PC ou se taper la version web de bureau sur le petit écran de son mobile.
<p style="text-align: center;">
  <a href="http://www.presse-citron.net/wordpress_prod/wp-content/uploads/leboncoin_mobile02.jpg"><img title="leboncoin_mobile02" src="http://www.presse-citron.net/wordpress_prod/wp-content/uploads/leboncoin_mobile02.jpg" height="339" alt="" width="530" /></a>
</p>Dans cette première version - très propre et bien conçue - il est seulement possible de consulter les annonces, mais pas encore d'en passer. Le Bon Coin mobile évoluera ensuite puisque la prochaine étape de développement sera de faire évoluer cette version mobile grâce aux avis des mobinautes. Le Bon Coin mobile est accessible à partir de n'importe-quel téléphone mobile doté d'un navigateur web à l'adresse http://mobile.leboncoin.fr. <em>[1] Avec plus de 11 millions de visiteurs uniques* par mois, leboncoin.fr est le 1er site français de petites annonces gratuites. *Source MNR mai 2010. Voir <a href="http://www.2803.fr/reflexion-business/le-bon-coin-en-chiffres-8253/">l'article d'Henri</a> sur le sujet.</em>
<p>
  <strong>Articles sur le même sujet :</strong>
</p>
<ul>
  <li>
    <strong><a href="http://www.presse-citron.net/youtube-lance-sa-nouvelle-version-mobile-bien-plus-complete" title="8 juillet 2010">YouTube lance sa nouvelle version mobile, bien plus complète</a></strong><br />
    Application à installer ou version web mobile ? La question n’est toujours pas tranchée et chaque camp avance ses pions.
  </li>
  <li style="">
    <br />
  </li>
  <li>
    <strong><a href="http://www.presse-citron.net/mobilepress-un-autre-plugin-pour-adapter-votre-blog-wordpress-aux-format-mobile" title="18 mars 2009">MobilePress, un autre plugin pour adapter votre blog WordPress au format mobile</a></strong><br />
    Il existe plusieurs plugins pour WordPress qui permettent d’adapter automatiquement votre blog au format des écrans des terminaux mobiles, mais
  </li>
  <li style="">
    <br />
  </li>
  <li>
    <strong><a href="http://www.presse-citron.net/wordpress-pour-iphone-version-2-on-efface-tout-et-on-recommence" title="30 octobre 2009">WordPress pour iPhone, version 2, on efface tout et on recommence</a></strong><br />
    L’iPhone n’est pas la blog machine mobile&nbsp; idéale, mais la qualité de son navigateur et la relative puissance de l’engin
  </li>
  <li style="">
    <br />
  </li>
  <li>
    <strong><a href="http://www.presse-citron.net/une-nouvelle-version-mobile-de-twitter" title="7 décembre 2009">Une nouvelle version mobile de Twitter</a></strong><br />
    Si la plupart des power-users de Twitter ne passent plus par le site Twitter.com depuis longtemps, mais utilisent des clients
  </li>
  <li style="">
    <br />
  </li>
  <li>
    <strong><a href="http://www.presse-citron.net/navigateur-web-pour-mobiles-skyfire-nouvelle-version-nouvelles-fonctions" title="29 mai 2009">Navigateur web pour mobiles Skyfire : nouvelle version, nouvelles fonctions.</a></strong><br />
    Le navigateur web pour mobiles et smartphones Skyfire, dont je vous déjà dit tout le bien que je pensais ici,
  </li>
  <li style="">
    <br />
  </li>
</ul>
<p>
  
</p><img src="http://feeds.feedburner.com/~r/Pressecitron/~4/6rw1kyWsiRU" height="1" width="1" />
</div>]]>
      </description>
      <pubDate>Fri, 09 Jul 2010 09:28:17 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12643318</guid>
    </item>
    <item>
      <title>Be Paletto</title>
      <link>http://feedproxy.google.com/%7Er/Muuuz-BlogArchitectureDesignTendancesInspiration/%7E3/5mVWR7lEjjM/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  <a href="http://muuuz.com/2010/07/07/be-paletto/"><img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-1" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-1.jpg" height="414" alt="" width="450" /></a>
</p>
<p>
  Au Danemark, à l’école d’architecture d’Aarhus, 9 étudiants ont conçu et construit «&nbsp;Be Paletto&nbsp;», un pavillon temporaire à partir de palettes de bois empilées.
</p>
<p>
  «&nbsp;Be Paletto&nbsp;» a été créé et réalisé par Thibault Marcilly, Aron Davidsson, Paddy Roche, Darja Ostapceva, Diego Garcia Esteban, Paz Nevado Llopis, Alba Minguez Moreno, Ruth Carlens et Gali Sereisky.
</p>
<p>
  <img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-2" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-2.jpg" height="300" alt="" width="450" />
</p>
<p>
  <img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-3" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-3.jpg" height="235" alt="" width="450" />
</p>
<p>
  <img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-4" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-4.jpg" height="600" alt="" width="450" />
</p>
<p>
  <img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-5" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-5.jpg" height="600" alt="" width="450" />
</p>
<p>
  <img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-6" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-6.jpg" height="600" alt="" width="450" />
</p>
<p>
  <img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-7" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-7.jpg" height="300" alt="" width="450" />
</p>
<p>
  <img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-8" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-8.jpg" height="600" alt="" width="450" />
</p>
<p>
  <img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-9" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-9.jpg" height="600" alt="" width="450" />
</p>
<p>
  <img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-10" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-10.jpg" height="675" alt="" width="450" />
</p>
<p>
  <img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-11" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-11.jpg" height="700" alt="" width="450" />
</p>
<p>
  <img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-12" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-12.jpg" height="221" alt="" width="450" />
</p>
<p>
  <img title="952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-13" src="http://muuuz.com/wp-content/uploads/2010/07/952-architecture-design-muuuz-be-paletto-temporary-pavilion-project-aarhus-13.jpg" height="300" alt="" width="450" />
</p>
<p>
  Sur ce projet, les étudiants précisent:
</p>
<p>
  <em>«&nbsp;This project was designed and built by 9 exchange students in the Aarhus School of Architecture, during a ten-days workshop in June 2010. The pavilion was standing in the main courtyard of the school for one week before being dismantled.</em>
</p>
<p>
  <em>Interactive strip.</em>
</p>
<p>
  <em>Made of 420 overlapped pallets, the pavilion was basically a strip interacting with its context. A tree, a table and its bench, flows of people and daylight, were the main elements which impacted on the pavilion’s shape. The “strip” was leading people to use a different way of crossing the courtyard, by walking and sitting up to 3.50m high. Then, by curving the strip to link and adapt to each element, many steps were naturally created between the pallets, allowing people to sit in the sun, like on a terrace.</em>
</p>
<p>
  <em>Social life.</em>
</p>
<p>
  <em>The Pavilion was meant to become an active element in the everyday-life of the school, and not to be only an object. By adapting naturally to the original flow of people crossing the courtyard, it was inviting people to interact with the structure and to follow the strip to come inside a shelter, built all around the tree. Inside, up to 20 people could easily stand and sit down, being totally covered by the pallets. Sunlight was going through the thickness of the strip, creating a calm and cosy atmosphere, insulated from the external heat.</em>
</p>
<p>
  <em>Only one element.</em>
</p>
<p>
  <em>The structure is made by stacking pallets, set in the same direction. Some of them were set perpendicularly, in cantilever, to create steps going out of the structure, allowing people to climb easily over the structure, or to sit down, feet in the air. By being built with nothing else but pallets, easily reachable on the site by the closeness of the harbour, the pavilion was basically a short-living vernacular architecture.&nbsp;»</em>
</p>
<p>
  Photographies: Thibault Marcilly, Aron Davidsson, Paddy Roche, Gali Sereisky, David Hannon.
</p>
<p>
  <embed src="http://www.vimeo.com/moogaloop.swf?clip_id=12825744&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=" height="355" width="425" />
</p>
<p>
  Pour en savoir plus, <a href="http://bepaletto.blogspot.com/">visitez le blog de Be Paletto.</a>
</p>
<p>
  <a href="http://muuuz.com/2010/07/07/be-paletto/">Be Paletto</a> is a post from: <a href="http://muuuz.com">Muuuz - Blog Architecture, Design, Tendances, Inspiration</a>
</p><img src="http://feeds.feedburner.com/~r/Muuuz-BlogArchitectureDesignTendancesInspiration/~4/5mVWR7lEjjM" height="1" width="1" />
</div>]]>
      </description>
      <pubDate>Wed, 07 Jul 2010 10:26:30 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12638400</guid>
    </item>
    <item>
      <title>Not Replaced</title>
      <link>http://waffle.wootest.net/2010/07/06/xlang-clarifications/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  Things <em>I did not say</em> in <a href="http://waffle.wootest.net/2010/06/19/surpass/">Surpass</a>:
</p>
<ul>
  <li>That Objective-C will be taken out back and shot.
  </li>
  <li>That Apple will need to drop C-based languages.
  </li>
  <li>That Apple will need to drop Objective-C.
  </li>
  <li>That Apple will need to stop supporting Objective-C as a language for application development.
  </li>
  <li>That Objective-C sucks.
  </li>
  <li>That Cocoa needs to be laid to bed.
  </li>
  <li>That Cocoa needs to be rewritten.
  </li>
  <li>That people would need to use <em>either</em> xlang or Objective-C to write one program.
  </li>
  <li>That xlang is basically { LISP, Nu, Smalltalk, Ruby, Python, … }.
  </li>
</ul>
<p>
  My premise was always what I’m about to describe, but I think I didn’t explain it well enough. Let’s start by saying that Apple would keep Objective-C on-board. The xlang scenario is sufficiently fantastic that them just dropping their existing environment would be too incredible, beyond plain stupid. I’ve been thinking — and hoping — that Apple may be doing something like it for years. I’ve been finding it more and more plausible since at least 2005. The scales dropped in my mind when I saw the WWDC advances not because they were big changes, but because they were the right kind of small changes, the right sort of hints.
</p>
<p>
  Most people don’t get why I see the need for a new language at all. And they’re half-right, even: the intersection of a well-supported, stable MacRuby and an Xcode with less brittle and better implemented Objective-C support (including refactoring) would serve the vast majority of my own needs in languages I already enjoy. I think there’s an angle to why Apple would want to do this, I think that angle is interesting and I think it’ll have consequences for me when it happens. If. When.
</p>
<p>
  Here’s the thing, again. Imagine Objective-C. Imagine Objective-C without C. Can you do it? I can’t. Objective-C is a layer on top of C. It never got to define its own primitives, it never gets to escape the pile of rope that is C pointers, and backwards compatibility limits what can be added on top.
</p>
<p>
  Blocks are a good example of the position Apple is in – they did manage to add them, for which I am eternally grateful. But look at the collateral damage: you have to copy the block if you pass it elsewhere, you have to reference count it, you have to swallow, count to three and close your eyes every time you want to define a block variable, typedef or parameter due to the <em>consistent</em> but <em>horrible</em> syntax. You have to cast, or explicitly specify <code>BOOL</code>, every time you want to return boolean, because <code>BOOL</code> is just a typedef’d <code>signed char</code>, <code>YES</code> is just <code>1</code> cast to <code>BOOL</code>, and type inference isn’t smart enough to figure it out. There are worse things in programming, and my point isn’t that I can’t handle nuisances, but that blocks aren’t all they could be. For example.
</p>
<p>
  So imagine what the good things from Objective-C would look like if Apple could define the entire language. Imagine what they would stick in, knowing what they do now about being tight on memory, fast on dispatch, and consistent on asynchrony as a good, overriding paradigm for scalable programs. That’s what I <em>hope</em> xlang is.
</p>
<p>
  It’s also entirely possible for this to be mixed with Objective-C within one app — Objective-C and MacRuby get along fine, don’t they? When I said “surpass”, I did qualify it as “their intended, primary, publicly recommended programming language”, never as the “only” one. Let’s again take Blocks; you can write Snow Leopard or iOS 4 code without using them, but they help greatly. Let’s also take QuickTime: when they added a 64-bit API, it was only accessible through QTKit. People working with 32-bit QuickTime didn’t lose anything, but Apple didn’t have to keep doing things the same way as in their oldest surviving non-deprecated API.
</p>
<p>
  C isn’t going to go away. Objective-C isn’t going to go away. There’s a way to recognize both those things and see that a new language could be modern, stable, small, fast, and provide better models and abstractions.
</p>
</div>]]>
      </description>
      <pubDate>Wed, 07 Jul 2010 01:29:35 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12638401</guid>
    </item>
    <item>
      <title>Bent Basket</title>
      <link>http://www.fubiz.net/2010/07/04/bent-basket/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  Voici le <a href="http://www.bentbasket.com/">Bent Basket</a>, un panier en bois pour vélo qui allie design et intelligence. Avec un système d’attache en nylon joliment integré sur le panier, ce dernier permet de pouvoir transporter ses affaires en toute sécurité tout en gardant un look agréable. Un projet à découvrir dans la suite.
</p>
<p>
  <a href="http://www.fubiz.net/2010/07/04/bent-basket/"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket1.jpg" height="355" alt="" width="550" /></a><br />
  <br />
  <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket4/"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket4.jpg" height="483" alt="bentbasket4" width="550" /></a>
</p>
<p>
  <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket6/"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket6.jpg" height="366" alt="bentbasket6" width="550" /></a>
</p>
<p>
  <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket5/"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket5.jpg" height="378" alt="bentbasket5" width="550" /></a>
</p>
<p>
  <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket3/"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket3.jpg" height="431" alt="bentbasket3" width="550" /></a>
</p>
<p>
  <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket8/"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket8-550x327.jpg" height="327" alt="bentbasket8" width="550" /></a>
</p>
<p>
  <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket2/"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket2.jpg" height="366" alt="bentbasket2" width="550" /></a>
</p>
<p>
  <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket7/"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket7-550x374.png" height="374" alt="bentbasket7" width="550" /></a>
</p>
<p>
  <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket1/" title="bentbasket1"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket1-150x150.jpg" height="150" alt="" width="150" /></a> <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket2/" title="bentbasket2"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket2-150x150.jpg" height="150" alt="" width="150" /></a> <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket3/" title="bentbasket3"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket3-150x150.jpg" height="150" alt="" width="150" /></a> <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket4/" title="bentbasket4"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket4-150x150.jpg" height="150" alt="" width="150" /></a> <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket5/" title="bentbasket5"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket5-150x150.jpg" height="150" alt="" width="150" /></a> <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket6/" title="bentbasket6"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket6-150x150.jpg" height="150" alt="" width="150" /></a> <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket7/" title="bentbasket7"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket7-150x150.png" height="150" alt="" width="150" /></a> <a href="http://www.fubiz.net/2010/07/04/bent-basket/bentbasket8/" title="bentbasket8"><img src="http://www.fubiz.net/wp-content/uploads/2010/06/bentbasket8-150x150.jpg" height="150" alt="" width="150" /></a><br />
</p>
<h3>
  Previously on Fubiz
</h3>
<ul>
  <li>
    <a href="http://www.fubiz.net/2010/07/06/ryan-johnson/" title="Ryan Johnson">Ryan Johnson</a>
  </li>
  <li>
    <a href="http://www.fubiz.net/2010/07/06/fashion-shoot-wad-magazine/" title="Fashion Shoot : Wad Magazine">Fashion Shoot : Wad Magazine</a>
  </li>
  <li>
    <a href="http://www.fubiz.net/2010/07/06/hp-hit-print/" title="HP - Hit print">HP - Hit print</a>
  </li>
</ul><img src="http://feeds.feedburner.com/~r/fubiz/~4/CK6xSEGuOhU" height="1" width="1" />
</div>]]>
      </description>
      <pubDate>Sun, 04 Jul 2010 21:55:04 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12625432</guid>
    </item>
    <item>
      <title>Google Docs Viewer on Mobile Browsers</title>
      <link>http://feedproxy.google.com/%7Er/OfficialGoogleDocsBlog/%7E3/pbX-8fTDPyg/google-docs-viewer-on-mobile-browsers.html</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><span style="font-style: italic;">Cross posted on the <a href="http://googlemobile.blogspot.com/">Google Mobile Blog</a></span><br />
<br />
Last week, we <a href="http://googledocs.blogspot.com/2010/06/view-doc-attachments-right-in-your.html">announced</a> that the <a href="http://docs.google.com/viewer">Google Docs viewer</a> supports .doc and .docx attachments. Today we’re also releasing a mobile version of the Google Docs viewer for Android, iPhone and iPad to help you view PDFs, .ppt, .doc and .docx files you’ve uploaded to your documents list, without needing to download the file.<br />
<br />
<a href="http://3.bp.blogspot.com/_ihObidpqGPM/TCjl39r9D7I/AAAAAAAAAYo/3Wn0WMw-nus/s1600/n1+screenshot+3.jpg"><img src="http://3.bp.blogspot.com/_ihObidpqGPM/TCjl39r9D7I/AAAAAAAAAYo/3Wn0WMw-nus/n1+screenshot+3.jpg" alt="" style="display: block; margin: 0px auto 10px; text-align: center; width: 400px;" /></a><br />
<br />
With our mobile viewer you can switch quickly between pages and pan/zoom within a page. On your iPhone and iPad, you can pinch to zoom in or out.<br />
<br />
You can try it out by going to <span style="font-weight: bold;">docs.google.com</span> on your Android-powered device, iPad or iPhone and select any document in these formats that you've previously uploaded. Let us know what you think in the <a href="http://www.google.com/support/forum/p/Google+Mobile?hl=en">Mobile Help Forum</a>.<br />
<br />
<span style="font-weight: bold;">Posted by:</span> Mickey Kataria, Software Engineer
<div>
  <img src="https://blogger.googleusercontent.com/tracker/35192255-8201076439050778474?l=googledocs.blogspot.com" height="1" alt="" width="1" />
</div>
<div>
  <a href="http://feeds.feedburner.com/~ff/OfficialGoogleDocsBlog?a=pbX-8fTDPyg:1C9aRhXcfZk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/OfficialGoogleDocsBlog?d=yIl2AUoC8zA" /></a> <a href="http://feeds.feedburner.com/~ff/OfficialGoogleDocsBlog?a=pbX-8fTDPyg:1C9aRhXcfZk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/OfficialGoogleDocsBlog?i=pbX-8fTDPyg:1C9aRhXcfZk:V_sGLiPBpWU" /></a>
</div><img src="http://feeds.feedburner.com/~r/OfficialGoogleDocsBlog/~4/pbX-8fTDPyg" height="1" width="1" />
</div>]]>
      </description>
      <pubDate>Mon, 28 Jun 2010 20:35:17 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12625434</guid>
    </item>
    <item>
      <title>IE9 supports Canvas&#8230;. hardware accelerated!</title>
      <link>http://feedproxy.google.com/%7Er/ajaxian/%7E3/ibyDyJdKP6k/ie9-supports-canvas-hardware-accelerated</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  Huge news. My canvas crusade is done. <a href="http://blogs.msdn.com/b/ie/archive/2010/06/23/html5-native-third-ie9-platform-preview-available-for-developers.aspx">IE9 is supporting canvas, and it is hardware accelerated</a>, in the third preview release:
</p>
<blockquote>
  <p>
    With the third platform preview, we introduce support for the HTML5 Canvas element. As you know our approach for standards support is informed both by developer feedback and real word usage patterns today, along with where we see the web heading. Many web developers have asked us to support this part of HTML5 and we definitely took this feedback into account as we prioritized our work.
  </p>
  <p>
    Like all of the graphics in IE9, canvas is hardware accelerated through Windows and the GPU. Hardware accelerated canvas support in IE9 illustrates the power of native HTML5 in a browser. We’ve rebuilt the browser to use the power of your whole PC to browse the web. These extensive changes to IE9 mean websites can now take advantage of all the hardware innovation in the PC industry.
  </p>
  <p>
    Preview 3 completes the media landscape for modern websites with hardware accelerated video, audio, and canvas. Developers now have a comprehensive platform to build hardware accelerated HTML5 applications. This is the first browser that uses hardware acceleration for everything on the web page, on by default, available today for developers to start using for their modern site development.
  </p>
  <p>
    <img src="http://ieblog.members.winisp.net/images/Dean_PPB3_3.png" width="460" />
  </p>
  <p>
    The third platform preview continues to support more of DOM and CSS3 standards that developers want. Examples here include DOM Traversal, full DOM L2 and L3 events, getComputedStyle from DOM Style, CSS3 Values and Units, and CSS3 multiple backgrounds.
  </p>
  <p>
    Also included in the third platform preview is support for using the Web Open Font Format (WOFF) through CSS3 font face.
  </p>
  <p>
    <img src="http://ieblog.members.winisp.net/images/Dean_PPB3_6-2.png" />
  </p>
</blockquote>
<p>
  Oh, and Acid3 is coming along too..... as well as a lot of performance improvements.
</p>
<p>
  <img src="http://ieblog.members.winisp.net/images/Dean_PPB3_9.png" width="460" />
</p>
<p>
  Congrats to the IE team.
</p>
<div>
  <a href="http://feeds.feedburner.com/~ff/ajaxian?a=ibyDyJdKP6k:iJSQ4Omf02o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ajaxian?d=yIl2AUoC8zA" /></a> <a href="http://feeds.feedburner.com/~ff/ajaxian?a=ibyDyJdKP6k:iJSQ4Omf02o:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ajaxian?d=7Q72WNTAKBA" /></a> <a href="http://feeds.feedburner.com/~ff/ajaxian?a=ibyDyJdKP6k:iJSQ4Omf02o:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ajaxian?i=ibyDyJdKP6k:iJSQ4Omf02o:D7DqB2pKExk" /></a>
</div>
</div>]]>
      </description>
      <pubDate>Wed, 23 Jun 2010 23:54:00 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12587608</guid>
    </item>
    <item>
      <title>Une nouvelle exp&#233;rience Photo : vos Photos encore plus belles</title>
      <link>http://blog.flickr.net/fr/2010/06/23/une-nouvelle-experience-photo-vos-photos-encore-plus-belle/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  Depuis plus de six ans, Flickr est votre service de partage de vos photos préférées. Des milliards de photos de vos voyages, de votre quotidien et de vos proches sont enregistrées et partagées avec votre communauté. La richesse de cet immense album photo ne cessera jamais de nous étonner. Pour continuer à enrichir le service, nous sommes heureux de vous annoncer une nouvelle version de votre page photo.
</p>
<p>
  <a href="http://www.flickr.com/photos/hartsell/4624147095/"><img src="http://farm2.static.flickr.com/1104/4725345795_84b57e770b_o.png" /></a><br />
  &nbsp;
</p>
<p>
  Notre objectif est de vous donner la meilleure vitrine possible pour vos images. Les étapes clés de votre vie, votre quotidien ou des instants choisis présentés au travers vos albums sont autant de témoignages qui ont enrichi l’univers Flickr. En lançant cette nouvelle page photo, nous avons souhaité donner un nouvel angle à la façon de raconter vos histoires et présenter vos photos.
</p>
<p>
  Ces nouvelles fonctionnalités seront déployées à l’ensemble du service Flickr aux cours des prochaines semaines mais pourquoi patienter ? Cette nouvelle expérience est disponible pour les membres enregistrés aujourd’hui en avant-première. <em>Pour activer cette version, rendez-vous sur n’importe quelle page photo et suivez les instructions en haut de la page</em>.
</p>
<p>
  Aux chapitres des nouveautés, voici une présentation du nouveau design.
</p>
<p>
  <strong>Une nouvelle vitrine pour vos photos</strong><br />
  Vos photos en grand format sont fantastiques ? Montrez-les. Nous avons modifié le format par défaut d’affichage des photos qui sont dorénavant disponible en 640 pixels de largeur. Le design général de la page photo a changé lui aussi en offrant un cadre plus large. Bref, vos photos seront mises en valeur sur grand écran.
</p>
<p>
  <img src="http://farm2.static.flickr.com/1191/4726144602_6141b40acf_o.png" align="right" style="margin-bottom: 10px;" /> <strong>Un historique précis pour chaque photo</strong><br />
  Il y a de plus en plus d’informations associées à vos photos : conditions et date de prise de vue, lieu et modèle de l’appareil utilisé. Tous ces paramètres qui peuvent répondre à des questions précises pour les visiteurs sont maintenant disponibles et affichés de manière différente. Dorénavant les informations concernant le propriétaire de la photo, la date et lieu de prise de vue, le nom d’appareil photo utilisé sont disponibles directement à droite de l’image. La nouvelle section donne un accès direct à des informations utiles pour vos visiteurs et ouvre de nouvelles perspectives pour explorer votre univers Flickr.
</p>
<p>
  <img src="http://farm2.static.flickr.com/1356/4726144654_a536134d33_o.png" align="left" /> <strong>Une navigation améliorée</strong><br />
  Une photo publiée sur Flickr peut servir de point d’entrée vers votre univers photographique. Il n’y a rien de plus magique au final que d’inviter un visiteur à découvrir vos albums et de lui faire partager votre expérience. Pour les aider à mieux explorer votre contenu, nous avons amélioré la navigation sur vos pages avec la présence de nouveaux boutons situés au dessus de chaque photo. C’est un nouveau moyen de lecture de manière à rendre plus accessible vos photos intéressantes en un clic. C’est un excellent outil pour les aider à plonger dans de nouvelles directions (groupes, favoris) et leur découvrir de nouvelles pépites.
</p>
<p>
  <img src="http://farm2.static.flickr.com/1355/4726144626_beb973fe4f_o.png" align="right" /><br />
  <strong>Une organisation simplifiée</strong><br />
  Il est important qu’une photo soit mise en avant sans distraire la vision du visiteur par trop d’informations qui ne sont pas nécessaire. Nous avons donc modifié l’organisation des outils utiles dans un nouveau menu Actions.
</p>
<p>
  <strong>Une nouvelle immersion</strong><br />
  Certains préfèrent l’obscurité pour apprécier une photo, nous avons développé une nouvelle boîte à lumière pour la mettre en valeur. Cliquez sur vos photos pour la découvrir sur un fond noir ! Naviguez dans le confort de votre siège et redécouvrez vos images et celles de vos contacts avec un nouveau regard. C’est une nouvelle immersion photographique.
</p>
<p>
  <strong>Vos plus belles histoires</strong><br />
  Les belles histoires nourrissent les échanges et la photographie peut être une source d’inspiration. La fonction Favori a longtemps été considérée comme un simple commentaire sur une photo et c’est pourquoi nous avons intégré les mises en favoris directement dans les commentaires des photos. Elles mettent en valeur les échanges. A chaque fois qu’un visiteur ou contact mettra dans ses favoris une de vos photos, cette information sera publiée dans la section commentaire.<br />
  &nbsp;<br />
  <img src="http://farm2.static.flickr.com/1124/4726048226_e33711e42e_o.png" /><br />
  &nbsp;<br />
</p>
<p>
  Voilà, ce sont quelques améliorations lancées aujourd’hui et il y a beaucoup plus à découvrir en testant la nouvelle version. La gestion des paramètres du compte a été améliorée, idem pour la gestion des copyrights.
</p>
<p>
  Pour plus d’informations, vous pouvez consultez ces <a href="http://www.flickr.com/help/general/#1567038">FAQs</a>. Ces changements sont les fruits de vos suggestions et commentaires sur les designs que nous avons testés ces dernières années. N’hésitez pas à tester cette nouvelle version et vous joindre à la discussion sur ce <a href="http://www.flickr.com/groups/newphotopagepreview/">groupe</a>.
</p><br />
<a href="http://feeds.wordpress.com/1.0/gocomments/flickrtheblog.wordpress.com/19374/"><img src="http://feeds.wordpress.com/1.0/comments/flickrtheblog.wordpress.com/19374/" alt="" /></a> <a href="http://feeds.wordpress.com/1.0/godelicious/flickrtheblog.wordpress.com/19374/"><img src="http://feeds.wordpress.com/1.0/delicious/flickrtheblog.wordpress.com/19374/" alt="" /></a> <a href="http://feeds.wordpress.com/1.0/gostumble/flickrtheblog.wordpress.com/19374/"><img src="http://feeds.wordpress.com/1.0/stumble/flickrtheblog.wordpress.com/19374/" alt="" /></a> <a href="http://feeds.wordpress.com/1.0/godigg/flickrtheblog.wordpress.com/19374/"><img src="http://feeds.wordpress.com/1.0/digg/flickrtheblog.wordpress.com/19374/" alt="" /></a> <a href="http://feeds.wordpress.com/1.0/goreddit/flickrtheblog.wordpress.com/19374/"><img src="http://feeds.wordpress.com/1.0/reddit/flickrtheblog.wordpress.com/19374/" alt="" /></a> <img src="http://stats.wordpress.com/b.gif?host=blog.flickr.net&amp;blog=957851&amp;post=19374&amp;subd=flickrtheblog&amp;ref=&amp;feed=1" alt="" />
</div>]]>
      </description>
      <pubDate>Wed, 23 Jun 2010 22:32:30 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12587609</guid>
    </item>
    <item>
      <title>&#8220;Demande de Licence&#8221; via Getty Images disponible !</title>
      <link>http://blog.flickr.net/fr/2010/06/18/%E2%80%9Cdemande-de-licence%E2%80%9D-via-getty-images-disponible/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  <a href="http://www.flickr.com/photos/cacovaccaro/4035962020/" title="Keita by caco vaccaro, on Flickr"><img src="http://farm4.static.flickr.com/3506/4035962020_7cf58f0cc9.jpg" height="333" alt="Keita" width="500" /></a>
</p>
<p>
  Il ya des milliards de photos sur Flickr et cela fait un paquet d’images disponibles pour des visiteurs du monde entier. Mais, si vous êtes un photographe en herbe, comment sortir du lot ? Et si vous cherchez à utiliser une image pour votre travail, blog, campagne de publicité ou pour d’autres projets, comment trouver la bonne image avec les droits appropriés pour l’utiliser ?
</p>
<p>
  A partir d’aujourd’hui dans les membres de Flickr et les visiteurs peuvent travailler ensemble sur un nouveau programme avec Getty Images, intitulé «Demande de licence». Nous avons conçu ce programme basé sur la réussite du lancement de la collection Flickr sur Getty Images il y a un peu plus d’un an aujourd’hui.
</p>
<p>
  Comment ce nouveau système va-t-il fonctionnner ? Sous la rubrique Information additionnelle de vos pages photos, vous pouvez maintenant voir un nouveau lien : «&nbsp;Vous souhaitez obtenir une licence pour vos photos via Getty Images ?&nbsp;». Ce lien est uniquement visible pour les propriétaires des photos, et non les visiteurs.
</p>
<p>
  <img src="http://l.yimg.com/a/i/us/flickr/blog/getty_licensevia_fr.gif" height="108" alt="Vous souhaitez obtenir une licence pour vos photos via Getty Images ?" width="279" />
</p>
<p>
  Ce lien pointe vers une nouvelle page qui vous présente tous les paramètres du programme. Vous pouvez décider ici de vous joindre au programme Getty Images. Choisissez l’option qui s’adapte le mieux à vos besoins et cliquez sur le bouton «&nbsp;Sauvegarder&nbsp;» pour supprimer ce lien de toutes vos pages. Si vous adhérez au programme, les visiteurs de vos photos publiques verront une demande d’homologation pour une licence.
</p>
<p>
  <img src="http://l.yimg.com/a/i/us/flickr/blog/getty_request2license_fr.gif" height="112" alt="Demander une licence" width="279" />
</p>
<p>
  Lorsqu’un acheteur potentiel consulte une de vos images avec une licence, il peut alors cliquer sur le lien et être mis directement en contact avec un représentant de Getty Images, qui lui donnera tous les détails comme les permissions d’utilisation, les publications et les tarifs. Après examen, les éditeurs de Getty Images vous enverrons un FlickrMail pour vous demander votre permission d’utiliser cette photo, soit pour un usage commercial ou éditorial. La décision finale vous renviendra bien sur.
</p>
<p>
  Prêt à participer ? Rendez-vous sur les paramètres de votre compte ou sur l’une de vos photos. Si vous n’êtes pas intéressé par ce programme et ne souhaitez pas voir ce nouveau lien sur vos pages photos, vous pouvez les désactiver. Pour plus d’informations, consultez les <a href="http://www.flickr.com/help/gettyimages/">FAQ complète de Getty Images</a>.
</p>
<p>
  Vous souhaitez voir ce programme en action ? Consultez cette liste de photographes qui ont déjà rejoins le programme : <a href="http://www.flickr.com/photos/pyrokinetic/">pyrokinetic</a>, <a href="http://www.flickr.com/photos/10817874@N00/">ryanmcginnis</a>, <a href="http://www.flickr.com/photos/25137388@N08/">gracie’s ephemera</a>, <a href="http://www.flickr.com/photos/pinksherbet/">Pink Sherbert Photography</a>, <a href="http://www.flickr.com/photos/jeffclow/">Jeff Clow</a>, <a href="http://www.flickr.com/photos/29565504@N07/">njekaterina</a> et <a href="http://www.flickr.com/photos/30499684@N00/">pixability</a>.
</p>
<p>
  Note : Nous avons récemment ajouté la cent millième photos à la collection Flickr sur Getty Images. Bravo aux participants !
</p>
<p>
  Photo de <a href="http://www.flickr.com/photos/cacovaccaro/">Caco Vaccaro</a>.
</p><br />
<a href="http://feeds.wordpress.com/1.0/gocomments/flickrtheblog.wordpress.com/19175/"><img src="http://feeds.wordpress.com/1.0/comments/flickrtheblog.wordpress.com/19175/" alt="" /></a> <a href="http://feeds.wordpress.com/1.0/godelicious/flickrtheblog.wordpress.com/19175/"><img src="http://feeds.wordpress.com/1.0/delicious/flickrtheblog.wordpress.com/19175/" alt="" /></a> <a href="http://feeds.wordpress.com/1.0/gostumble/flickrtheblog.wordpress.com/19175/"><img src="http://feeds.wordpress.com/1.0/stumble/flickrtheblog.wordpress.com/19175/" alt="" /></a> <a href="http://feeds.wordpress.com/1.0/godigg/flickrtheblog.wordpress.com/19175/"><img src="http://feeds.wordpress.com/1.0/digg/flickrtheblog.wordpress.com/19175/" alt="" /></a> <a href="http://feeds.wordpress.com/1.0/goreddit/flickrtheblog.wordpress.com/19175/"><img src="http://feeds.wordpress.com/1.0/reddit/flickrtheblog.wordpress.com/19175/" alt="" /></a> <img src="http://stats.wordpress.com/b.gif?host=blog.flickr.net&amp;blog=957851&amp;post=19175&amp;subd=flickrtheblog&amp;ref=&amp;feed=1" alt="" />
</div>]]>
      </description>
      <pubDate>Fri, 18 Jun 2010 10:26:31 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12564684</guid>
    </item>
    <item>
      <title>Copie... d'&#233;l&#232;ve !</title>
      <link>http://www.framablog.org/index.php/post/2010/06/17/copie-eleve</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  J’ai vu de nombreuses perles dans les copies de mes élèves au cours de ma (déjà longue) carrière de prof de maths.
</p>
<p>
  Mais je n’ai pas eu souvent de scanner à côté de moi pour en garder trace comme aujourd’hui ;-)
</p>
<p>
  <img title="Copie d&amp;apos;élève" src="http://www.framablog.org/public/_img/others/copie-eleve.jpg" alt="Copie d&amp;apos;élève" style="display: block; margin: 0 auto;" />
</p>
<p>
  <em>Désolé pour ce petit hors sujet de fin d’année scolaire…</em>
</p>
</div>]]>
      </description>
      <pubDate>Thu, 17 Jun 2010 17:18:00 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12564685</guid>
    </item>
    <item>
      <title>Ach&#232;terais-je un iPad?</title>
      <link>http://feedproxy.google.com/%7Er/Sylvain_v2dot0/%7E3/iXieUAA-iFY/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  L’ article «<a href="http://www.framablog.org/index.php/post/2010/05/29/ipad-pourquoi-je-ne-l-acheterai-pas">Pourquoi je n’achèterai pas un iPad</a>» est vraiment très bien écrit et il donne un point de vue qui détonne avec le béni-oui-oui habituel.
</p>
<p>
  Je n’ai pas l’intention d’acheter un iPad, mais cet article n’y est pour rien. Je fais le choix de l’attente. À choisir entre mon portable et mon iPhone je n’ai pas la place pour un terminal de plus. Ma famille y trouverait certainement à redire, surtout ma fille ainée.
</p>
<p>
  Ils aimeraient certainement profiter du dernier gadget à la mode et d’une fenêtre supplémentaire sur le web.
</p>
<p>
  Apple est maintenant le nouveau géant à abattre. Microsoft semble chanceler pour beaucoup grâce au succès de Firefox. Google accumule des critiques de domination du monde tout en critiquant Apple d’être le <em>Big Brother</em> de 2010… un contexte un peu ironique quand on voit à quel point Google embrasse de plus en plus de domaines de notre vie <img src="http://sylvain.gamel.free.fr/blog/wp-includes/images/smilies/icon_smile.gif" alt=":-)" />
</p>
<p>
  Mais n’en déplaise à tous les défenseurs du libre, Firefox ne remplace pas un OS et Ubuntu est encore loin d’offrir une réelle simplicité d’utilisation pour tout le monde. À moins que je ne soit trop coincé dans mes habitudes d’utilisateur Windows et Mac?
</p>
<p>
  Oui j’utilise Windows et aussi des Mac. Et l’iPad n’est pas le fossoyeur du PC libre et ouvert. L’iPad n’est pas un ordinateur indépendant. Il a un minimum besoin d’une connexion à un ordinateur hôte, un port d’attache numérique.
</p>
<h3>
  On ne développe pas gratuitement sur ipad?
</h3>
<p>
  Le Mac reste encore&nbsp;indispensable <span style="text-decoration: line-through;">encore</span> pour développer sur iPhone OS. Et ça ne coute rien de plus qu’avoir un Mac.
</p>
<p>
  La seule licence à payer est celle qui permet d’installer et tester les logiciels sur le terminal. Mais il est parfaitement possible d’apprendre à développer pour iPad sans avoir à bourse délier.
</p>
<p>
  Peut-on en dire autant de Windows alors que Microsoft n’offre que des versions limitées de ses outils de développement?
</p>
<p>
  Depuis 2000, l’ensemble des outils de développement est une option de la procédure d’installation de Mac OS X.
</p>
<p>
  L’iPad est en parti verrouillé, soit. Mais qui a envie d’écrire du code en le tapant sur un écran tactile? Pas moi.
</p>
<p>
  Et doit-on reprocher à Apple de réserver ses outils au seuls Mac, alors que l’on trouve normal que les outils de développement Microsoft ne soient disponibles que sur Windows? Et non, les alternatives «libre» comme Mono ne sont pas des alternatives. Elles restent à la traine, toujours un train en retard. Comme un alibi d’ouverture.
</p>
<p>
  La seule vraie plateforme ouverte de développement pour l’iPad c’est le web. Un univers où tout est permis. Un univers libre et ouvert sans l’ombre de programmes propriétaires comme Flash… un Flash qui vacille doucement mais surement car l’avenir du web est mobile et il ne peut évoluer que s’il abandonne les vieilles technologies.
</p>
<p style="text-align: center;">
  <em>Intéressant que l’iPhone et l’iPad soient les champions de cette lutte contre un Flash trop propriétaire non?</em>
</p>
<h3 style="text-align: left;">
  iPad, ennemi du libre?
</h3>
<p>
  L’iPad est un univers fermé?
</p>
<p>
  Intéressant de voir à quel point l’OS d’Apple contient des logiciels libres.&nbsp;WebKit en étant certainement le plus connu.
</p>
<p>
  Certe l’iPad n’est pas bidouillable physiquement. Mais qui a envie d’aller admirer les soudures d’une carte mère?
</p>
<p>
  Un minimum d’honnêteté intellectuelle vous interdirait de comparer la carte mère d’un Apple II (soudée presque à la main) avec celle d’un ordinateur récent, d’un Nexus One ou d’un iPad.
</p>
<p>
  Nous ne somme plus dans un monde ou l’on risque de voir une résistance grillée se faire remplacer d’un simple coup de fer à souder!
</p>
<h3 style="font-size: 1.17em;">
  iPad fermé car sans fil à la patte…
</h3>
<p>
  Pas assez de connectiques sur l’iPad?
</p>
<p>
  Mais vous être fous? L’iPad est un terminal mobile pour des usages mobiles. Vous voulez vous obliger à lui adjoindre un fil? Des fils?
</p>
<p>
  Tout ce qui est nécessaire est là: du Wifi et du BlueTooth.&nbsp;Des protocoles pas assez ouvert pour vous? Qui veut encombrer sa tablette d’un câble réseau, d’une prise USB pour un fil d’imprimante ou un disque externe.
</p>
<p>
  Apple a choisi une solution mixte: le sans fil pour les communications et une prise propriétaire pour des besoins ultra-spécifiques. L’accès au connecteur Dock est ouvert depuis le SDK 3. Mais où sont les périphériques qui en profitent?
</p>
<p>
  L’iPad n’est pas un ordinateur. C’est un outil de complément. Une vision minimaliste de ce que doit offrir un outil d’accès au web, mais pas seulement au web.
</p>
<p>
  C’est la tablette rêvée par Bill Gates au début des années 2000, mais réalisée enfin correctement.
</p>
<h3 style="font-size: 1.17em;">
  iPad fermé par la main mise d’Apple sur des API privées…
</h3>
<p>
  Apple se réserve le droit d’accès à certaines parties du matériel. Soit cela peut ne pas convenir.
</p>
<p>
  Mais c’est un choix réfléchi qui permet de ne pas polluer la plateforme d’API mal conçues. La plateforme est relativement homogène entre les différents iPad/iPhone/iPod et cela facilite la vie des développeurs.
</p>
<p>
  Plus de richesse c’est aussi plus de complexité à gérer.
</p>
<p>
  Cette position peut ne pas plaire, mais elle est pragmatique. Chaque nouvelle interface nécessite un support. À trop diluer ses efforts sur iPhone OS celui ci perdrait bien vite sa cohérence (et je ne parle pas du look des interfaces graphiques).
</p>
<h3 style="font-size: 1.17em;">
  iPad vous enchaine à l’App Store et aux DRMs…
</h3>
<p>
  Ne soyons pas hypocrites en critiquant l’App Store.
</p>
<p>
  Si c’est un succès, ce n’est pas grâce aux développeurs qui pestent sur l’emprise de Cuppertino.
</p>
<p>
  Non c’est chaque utilisateur d’iPhone qui y trouve son compte. Souvenez-vous que tout le monde a ri au nez d’Apple, Nokia en tête, lorsque l’iPhone Edge a été annoncé et que seules les applications web étaient autorisées.
</p>
<p>
  Avec l’App Store Apple a donné aux développeurs ce qu’ils demandaient en construisant un écosystème qui convient aux utilisateurs.
</p>
<p>
  Au lieu de se lamenter de la fermeture de l’App Store le camp du libre ferait mieux de se mobiliser pour proposer une alternative aussi simple dans le monde du web!
</p>
<p>
  Et trouver une telle solution n’est pas si simple… à moins que Facebook n’y arrive avant?
</p>
<h3 style="font-size: 1.17em;">
  iPhone et iPad ont ouvert un nouveau monde
</h3>
<p>
  Je ne souhaite pas verser dans le positivisme aveugle. Chaque plateforme est pétrie de défauts. iPhone OS ne fait pas exception.
</p>
<p>
  Pourtant un bilan sur la présence de l’iPhone nous oblige à constater au moins trois points:
</p>
<ol>
  <li>WebKit est le moteur de rendu choisi par l’essentiel des plateformes mobiles: Android, Chrome, Nokia, BlackBerry et Safari.
  </li>
  <li>Le Flash n’est pas supporté sur iPhone OS et cette pression supplémentaire à obligé Adobe à se joindre à Google pour offrir à ce dernier un alibi d’universalité. Les performances parlent d’elles même, Flash n’est pas fait pour vos poches.
  </li>
  <li>L’internet mobile est devenu accessible au plus grand nombre. Bien plus accessible que sur un ordinateur qui lui ne vous suit pas partout.
  </li>
</ol>
<p>
  Apple a construit une plateforme à deux visages:
</p>
<ol>
  <li>Un visage fermé avec un kit de développement soumis à des règles et un App Store tout autant règlementé. Mais rien ne vous oblige à développer pour cet univers là!
  </li>
  <li>Un visage ouvert avec WebKit et Safari et une promotion d’un web vraiment ouvert sans Flash ni plugins.
  </li>
</ol>
<p>
  Le MPEG4/h.264 sont encore un sujet de dispute. Mais il faut être bien constater que le libre n’arrive pas à promouvoir une solution crédible, et la complexité des codec vidéos rend bien difficile la création d’un codec qui ne puisse être entaché par une atteinte à un quelconque&nbsp;brevet. Google le crois; je leur souhaite bonne chance.
</p>
<p>
  L’iPad n’est pas un ordinateur. Ce n’est pas une tablette pour geek avide de celui qui a la plus grosse ou la plus longue liste de caractéristiques techniques.
</p>
<p>
  Et par pitié, ne me dites pas que l’iPad est un outil de consommation. Il existe de merveilleuses applications de dessin, des suites bureautiques et bien d’autres outils pour créer du contenu.
</p>
<p>
  Comme un ordinateur l’iPad est un outil que vous construisez en lui ajoutant des fonctionnalités. Mais cet ajout est logiciel. Nous ne sommes plus au début des années 80 où seul le matériel comptait.
</p>
<p>
  Vous avez le droit de ne pas l’aimer et ne pas le choisir, comme vous avez le droit de foncer l’acheter à votre conjoint(e), maman ou grand-mère…
</p>
<p>
  Ma liberté c’est aussi ne pas me laisser dicter mes choix par des positions trop dogmatiques.
</p>
<p>
  <em>MaJ 02/06/2010</em>: Bon OK j’avais de grosses fautes et erreurs. Il doit encore en rester. Merci de vos commentaires.
</p>
<p>
  <a href="http://feedads.g.doubleclick.net/~a/F4jv849J12E5ex-GqlITh4LTjkI/0/da"><img src="http://feedads.g.doubleclick.net/~a/F4jv849J12E5ex-GqlITh4LTjkI/0/di" /></a><br />
  <a href="http://feedads.g.doubleclick.net/~a/F4jv849J12E5ex-GqlITh4LTjkI/1/da"><img src="http://feedads.g.doubleclick.net/~a/F4jv849J12E5ex-GqlITh4LTjkI/1/di" /></a>
</p>
<div>
  <a href="http://feeds.feedburner.com/~ff/Sylvain_v2dot0?a=iXieUAA-iFY:bjTYEhQuU-0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Sylvain_v2dot0?d=yIl2AUoC8zA" /></a> <a href="http://feeds.feedburner.com/~ff/Sylvain_v2dot0?a=iXieUAA-iFY:bjTYEhQuU-0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Sylvain_v2dot0?d=7Q72WNTAKBA" /></a> <a href="http://feeds.feedburner.com/~ff/Sylvain_v2dot0?a=iXieUAA-iFY:bjTYEhQuU-0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Sylvain_v2dot0?i=iXieUAA-iFY:bjTYEhQuU-0:F7zBnMyn0Lo" /></a>
</div><img src="http://feeds.feedburner.com/~r/Sylvain_v2dot0/~4/iXieUAA-iFY" height="1" width="1" />
</div>]]>
      </description>
      <pubDate>Sun, 30 May 2010 00:25:29 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12500089</guid>
    </item>
    <item>
      <title>Tulou du Fujian</title>
      <link>http://blog.flickr.net/fr/2010/05/25/tulou-du-fujian/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  <a href="http://www.flickr.com/photos/shima11/3148570501/" title="Fujian Tulou, China 3 (福建客家土樓) by shima11, on Flickr"><img src="http://farm4.static.flickr.com/3253/3148570501_1b725d4b17.jpg" height="332" alt="Fujian Tulou, China 3 (福建客家土樓)" width="500" /></a>
</p>
<p>
  <a href="http://www.flickr.com/photos/shima11/3155365258/" title="Fujian Tulou, China 12 (福建客家土樓) by shima11, on Flickr"><img src="http://farm4.static.flickr.com/3263/3155365258_520eb3a0d8.jpg" height="332" alt="Fujian Tulou, China 12 (福建客家土樓)" width="500" /></a>
</p>
<p>
  <a href="http://www.flickr.com/photos/eliaswong/4229010076/" title="Fujian Tulou [Explored] by @^ ^@ elias, on Flickr"><img src="http://farm3.static.flickr.com/2761/4229010076_ae69d990c3.jpg" height="333" alt="Fujian Tulou [Explored]" width="500" /></a>
</p>
<p>
  <a href="http://www.flickr.com/photos/28075177@N02/3929518731/" title="廈門-土樓王 China-Xiamen-Fujian by mawingchung, on Flickr"><img src="http://farm4.static.flickr.com/3477/3929518731_126ca9db4f_m.jpg" height="161" alt="廈門-土樓王 China-Xiamen-Fujian" width="240" /></a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.flickr.com/photos/kymak/4436078332/" title="O by kymak, on Flickr"><img src="http://farm5.static.flickr.com/4052/4436078332_e5c157ba85_m.jpg" height="159" alt="O" width="240" /></a>
</p>
<blockquote>
  Un Tulou (en mandarin土楼; pinyin: tǔlóu) est une forme de maison construite par les hakka que l’on trouve dans les montagnes du sud du Fujian. Faite de terre, de forme circulaire ou carrée, il peut accueillir plusieurs centaines de personnes. (source : <a href="http://fr.wikipedia.org/wiki/Tulou">Wikipedia</a>)
</blockquote>
<p>
  Photos de <a href="http://www.flickr.com/photos/shima11/">shima11</a> , <a href="http://www.flickr.com/photos/eliaswong/">@^ ^@ elias</a>, <a href="http://www.flickr.com/photos/28075177@N02/">mawingchung</a> et <a href="http://www.flickr.com/photos/kymak/">kymak</a>.
</p><br />
<a href="http://feeds.wordpress.com/1.0/gocomments/flickrtheblog.wordpress.com/18352/"><img src="http://feeds.wordpress.com/1.0/comments/flickrtheblog.wordpress.com/18352/" alt="" /></a> <a href="http://feeds.wordpress.com/1.0/godelicious/flickrtheblog.wordpress.com/18352/"><img src="http://feeds.wordpress.com/1.0/delicious/flickrtheblog.wordpress.com/18352/" alt="" /></a> <a href="http://feeds.wordpress.com/1.0/gostumble/flickrtheblog.wordpress.com/18352/"><img src="http://feeds.wordpress.com/1.0/stumble/flickrtheblog.wordpress.com/18352/" alt="" /></a> <a href="http://feeds.wordpress.com/1.0/godigg/flickrtheblog.wordpress.com/18352/"><img src="http://feeds.wordpress.com/1.0/digg/flickrtheblog.wordpress.com/18352/" alt="" /></a> <a href="http://feeds.wordpress.com/1.0/goreddit/flickrtheblog.wordpress.com/18352/"><img src="http://feeds.wordpress.com/1.0/reddit/flickrtheblog.wordpress.com/18352/" alt="" /></a> <img src="http://stats.wordpress.com/b.gif?host=blog.flickr.net&amp;blog=957851&amp;post=18352&amp;subd=flickrtheblog&amp;ref=&amp;feed=1" alt="" />
</div>]]>
      </description>
      <pubDate>Tue, 25 May 2010 12:07:19 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12474667</guid>
    </item>
    <item>
      <title>Un ciel orageux</title>
      <link>http://www.flickr.com/photos/sylvain_gamel/4635457944/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  <a href="http://www.flickr.com/people/sylvain_gamel/">Sylvain Gamel</a> a posté une photo&nbsp;:
</p>
<p>
  <a href="http://www.flickr.com/photos/sylvain_gamel/4635457944/" title="Un ciel orageux"><img src="http://farm4.static.flickr.com/3387/4635457944_0ae53b6832_m.jpg" height="180" alt="Un ciel orageux" width="240" /></a>
</p>
<p>
  Fréjus, avril 2004.
</p>
</div>]]>
      </description>
      <pubDate>Mon, 24 May 2010 14:17:52 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12472475</guid>
    </item>
    <item>
      <title>Un ciel orageux</title>
      <link>http://www.flickr.com/photos/sylvain_gamel/4634855509/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  <a href="http://www.flickr.com/people/sylvain_gamel/">Sylvain Gamel</a> a posté une photo&nbsp;:
</p>
<p>
  <a href="http://www.flickr.com/photos/sylvain_gamel/4634855509/" title="Un ciel orageux"><img src="http://farm5.static.flickr.com/4054/4634855509_9a65a36746_m.jpg" height="240" alt="Un ciel orageux" width="180" /></a>
</p>
<p>
  Fréjus, avril 2004.
</p>
</div>]]>
      </description>
      <pubDate>Mon, 24 May 2010 14:17:42 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12472476</guid>
    </item>
    <item>
      <title>Un ciel orageux</title>
      <link>http://www.flickr.com/photos/sylvain_gamel/4635457336/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  <a href="http://www.flickr.com/people/sylvain_gamel/">Sylvain Gamel</a> a posté une photo&nbsp;:
</p>
<p>
  <a href="http://www.flickr.com/photos/sylvain_gamel/4635457336/" title="Un ciel orageux"><img src="http://farm5.static.flickr.com/4046/4635457336_91d5d08d61_m.jpg" height="240" alt="Un ciel orageux" width="180" /></a>
</p>
<p>
  Fréjus, avril 2004.
</p>
</div>]]>
      </description>
      <pubDate>Mon, 24 May 2010 14:17:33 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12472477</guid>
    </item>
    <item>
      <title>Un ciel orageux</title>
      <link>http://www.flickr.com/photos/sylvain_gamel/4634854805/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  <a href="http://www.flickr.com/people/sylvain_gamel/">Sylvain Gamel</a> a posté une photo&nbsp;:
</p>
<p>
  <a href="http://www.flickr.com/photos/sylvain_gamel/4634854805/" title="Un ciel orageux"><img src="http://farm5.static.flickr.com/4058/4634854805_d503837053_m.jpg" height="180" alt="Un ciel orageux" width="240" /></a>
</p>
<p>
  Fréjus, avril 2004.
</p>
</div>]]>
      </description>
      <pubDate>Mon, 24 May 2010 14:17:23 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12472478</guid>
    </item>
    <item>
      <title>Un ciel orageux</title>
      <link>http://www.flickr.com/photos/sylvain_gamel/4635456712/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  <a href="http://www.flickr.com/people/sylvain_gamel/">Sylvain Gamel</a> a posté une photo&nbsp;:
</p>
<p>
  <a href="http://www.flickr.com/photos/sylvain_gamel/4635456712/" title="Un ciel orageux"><img src="http://farm5.static.flickr.com/4008/4635456712_ded7a0e9b7_m.jpg" height="135" alt="Un ciel orageux" width="240" /></a>
</p>
<p>
  Fréjus, avril 2004.
</p>
</div>]]>
      </description>
      <pubDate>Mon, 24 May 2010 14:17:14 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12472479</guid>
    </item>
    <item>
      <title>Un ciel orageux</title>
      <link>http://www.flickr.com/photos/sylvain_gamel/4635456458/</link>
      <description>
        <![CDATA[<div class="post_content wiki_text"><p>
  <a href="http://www.flickr.com/people/sylvain_gamel/">Sylvain Gamel</a> a posté une photo&nbsp;:
</p>
<p>
  <a href="http://www.flickr.com/photos/sylvain_gamel/4635456458/" title="Un ciel orageux"><img src="http://farm5.static.flickr.com/4049/4635456458_6b169a812d_m.jpg" height="180" alt="Un ciel orageux" width="240" /></a>
</p>
<p>
  Fréjus, avril 2004.
</p>
</div>]]>
      </description>
      <pubDate>Mon, 24 May 2010 14:17:07 +0200</pubDate>
      <guid isPermaLink="false">tag:ziki.com,2010:/article/12472480</guid>
    </item>
  </channel>
</rss>
