<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>jaiunblog.com &#124; j&#039;ai un blog - graphisme, design, programmation &#187; graphisme</title>
	<atom:link href="http://jaiunblog.com/category/graphisme/feed/" rel="self" type="application/rss+xml" />
	<link>http://jaiunblog.com</link>
	<description>un peu de tout et beaucoup de rien ça fait du bien !</description>
	<lastBuildDate>Thu, 02 Feb 2012 14:35:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>spirale</title>
		<link>http://jaiunblog.com/3724/spirale/</link>
		<comments>http://jaiunblog.com/3724/spirale/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 12:30:00 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[programmation]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[spirale]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3724</guid>
		<description><![CDATA[Voici une portion de code processing (v1.5 et/ou v2) que l&#8217;on retrouve dans ma carte de vœux 2012, une étape nécessaire avant l&#8217;assemblage de « mes briques de code ». Deux notions de maths sont utiles, le calcul de distances entre deux points et l&#8217;équation paramétrique d&#8217;un cercle mais pas besoin de comprendre rigoureusement pour [...]]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><img src="http://jaiunblog.com/blog/wp-content/uploads/2012/02/spirale.png" alt="" title="spirale" width="425" height="295" class="alignnone size-full wp-image-3726" />Voici une portion de code processing (v1.5 et/ou v2) que l&#8217;on retrouve dans ma carte de vœux 2012, une étape nécessaire avant l&#8217;assemblage de « mes briques de code ».<br />
Deux notions de maths sont utiles, le calcul de distances entre deux points et l&#8217;équation paramétrique d&#8217;un cercle mais pas besoin de comprendre rigoureusement pour s&#8217;amuser avec ces formules :)</p>
<pre class="brush: java; title: ;">
float x, y; //position du point
float a; // une sorte de rayon
int tx, ty; // target du point

void setup() {
  size(640, 360);
  background(250);
  smooth();
  frameRate(500);
  x=400;
  y=200;
  tx=320;
  ty=180;

  strokeWeight(2);
  a=sqrt(sq(x-tx)+sq(y-ty)); // distance entre deux points (pythagore)
}

void draw()
{
  fill(0, 10); //effet trace (motion trail)
  noStroke();
  rect(0, 0, 640, 360);
  stroke(255);
  point(x, y);

  // calcul de la position
  float angle=radians(frameCount*4); // à chaque image on bouge de 4°
  if (a&gt;1) {
    x=cos(angle)*a+tx; // équation d'un cercle de rayon a et centre tx
    y=sin(angle)*a+ty; //
    a=a-0.05; // réduction du rayon
  } else {
    x=tx;
    y=ty;
  }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3724/spirale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2012</title>
		<link>http://jaiunblog.com/3720/2012-2/</link>
		<comments>http://jaiunblog.com/3720/2012-2/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 17:45:41 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[2012]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[processingjs]]></category>
		<category><![CDATA[voeux]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3720</guid>
		<description><![CDATA[À la dernière minute, je vous souhaite une chouette année 2012 ! Une année pleine de pixels et de réel ! http://jenseign.com/2012/]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><img src="http://jaiunblog.com/blog/wp-content/uploads/2012/01/2012.png" alt="" title="2012" width="425" height="317" class="alignnone size-full wp-image-3721" /></p>
<p>À la dernière minute, je vous souhaite une chouette année 2012 !<br />
Une année pleine de pixels et de réel !<br />
<a href="http://jenseign.com/2012/">http://jenseign.com/2012/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3720/2012-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>plink</title>
		<link>http://jaiunblog.com/3717/plink/</link>
		<comments>http://jaiunblog.com/3717/plink/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 22:03:04 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[musique]]></category>
		<category><![CDATA[node]]></category>
		<category><![CDATA[séquenceur]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3717</guid>
		<description><![CDATA[Ça ne marche que sous Chrome à cause de la gestion du son et c&#8217;est du pure HTML5 : http://labs.dinahmoe.com/plink/]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><img src="http://jaiunblog.com/blog/wp-content/uploads/2012/01/plink.png" alt="" title="plink" width="425" height="275" class="alignnone size-full wp-image-3718" /></p>
<p>Ça ne marche que sous Chrome à cause de la gestion du son et c&#8217;est du pure HTML5 :<br />
<a href="http://labs.dinahmoe.com/plink/">http://labs.dinahmoe.com/plink/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3717/plink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pythagora Switch</title>
		<link>http://jaiunblog.com/3711/pythagora-switch/</link>
		<comments>http://jaiunblog.com/3711/pythagora-switch/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 22:21:32 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[domino]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3711</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe width="425" height="239" src="http://www.youtube.com/embed/GOMIBdM6N7Q" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3711/pythagora-switch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>picto</title>
		<link>http://jaiunblog.com/3708/picto/</link>
		<comments>http://jaiunblog.com/3708/picto/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 22:12:40 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[otf]]></category>
		<category><![CDATA[picto]]></category>
		<category><![CDATA[pictogramme]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3708</guid>
		<description><![CDATA[Deux collections de pictogrammes (à archiver) : http://thedesignoffice.org/project/modern-pictograms/ http://thenounproject.com/fr/]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><img src="http://jaiunblog.com/blog/wp-content/uploads/2012/01/gland.png" alt="" title="gland" width="425" height="408" class="alignnone size-full wp-image-3709" /></p>
<p>Deux collections de pictogrammes (à archiver) :<br />
<a href="http://thedesignoffice.org/project/modern-pictograms/">http://thedesignoffice.org/project/modern-pictograms/</a><br />
<a href="http://thenounproject.com/fr/">http://thenounproject.com/fr/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3708/picto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>T</title>
		<link>http://jaiunblog.com/3703/t/</link>
		<comments>http://jaiunblog.com/3703/t/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 14:13:29 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[times]]></category>
		<category><![CDATA[typo]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3703</guid>
		<description><![CDATA[via]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><img src="http://jaiunblog.com/blog/wp-content/uploads/2012/01/judy-kameon-011.jpg" alt="" title="judy-kameon-01" width="425" height="506" class="alignnone size-full wp-image-3705" /></p>
<p>
<a href="http://www.booooooom.com/2012/01/17/garden-designer-judy-kameon-for-new-york-times-t-magazine/">via</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3703/t/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cnap 2012</title>
		<link>http://jaiunblog.com/3701/cnap-2012/</link>
		<comments>http://jaiunblog.com/3701/cnap-2012/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 12:44:31 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[typo]]></category>
		<category><![CDATA[voeux]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3701</guid>
		<description><![CDATA[Par Camille Baudelaire http://www.cnap.fr/bonne-année-2012]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe frameborder="0" width="425" height="285" src="http://www.dailymotion.com/embed/video/xnmiov_voeux-2012_creation"></iframe></p>
<p>Par <a href="http://www.camillebaudelaire.com/">Camille Baudelaire</a><br />
<a href="http://www.cnap.fr/bonne-année-2012">http://www.cnap.fr/bonne-année-2012</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3701/cnap-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the joy of books</title>
		<link>http://jaiunblog.com/3697/the-joy-of-books/</link>
		<comments>http://jaiunblog.com/3697/the-joy-of-books/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 20:29:13 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[bibliothèque]]></category>
		<category><![CDATA[livre]]></category>
		<category><![CDATA[stop-motion]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3697</guid>
		<description><![CDATA[Un stop-motion à archiver]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe width="425" height="239" src="http://www.youtube.com/embed/SKVcQnyEIT8" frameborder="0" allowfullscreen></iframe></p>
<p>Un stop-motion à archiver</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3697/the-joy-of-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cassannet</title>
		<link>http://jaiunblog.com/3695/cassannet/</link>
		<comments>http://jaiunblog.com/3695/cassannet/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 16:50:15 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[cassandre]]></category>
		<category><![CDATA[gratuit]]></category>
		<category><![CDATA[opentype]]></category>
		<category><![CDATA[otf]]></category>
		<category><![CDATA[typo]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3695</guid>
		<description><![CDATA[une typo payable en tweet ! Font Based on the Style of Lettering Seen on Cassandre Posters http://cassannet.net/]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe src="http://player.vimeo.com/video/33167546?title=0&amp;byline=0&amp;portrait=0" width="425" height="239" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><br />
une typo payable en tweet !</p>
<blockquote><p>Font Based on the Style of Lettering Seen on Cassandre Posters </p></blockquote>
<p><a href="http://cassannet.net/">http://cassannet.net/</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3695/cassannet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tut !</title>
		<link>http://jaiunblog.com/3692/tut/</link>
		<comments>http://jaiunblog.com/3692/tut/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 10:42:56 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[klaxon]]></category>
		<category><![CDATA[voiture]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3692</guid>
		<description><![CDATA[Road Rage from Nick Khoo.]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe src="http://player.vimeo.com/video/34460118?title=0&amp;byline=0&amp;portrait=0" width="425" height="239" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/34460118">Road Rage</a> from <a href="http://vimeo.com/nickkhoo">Nick Khoo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3692/tut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>objets perdus</title>
		<link>http://jaiunblog.com/3687/objets-perdus/</link>
		<comments>http://jaiunblog.com/3687/objets-perdus/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 12:32:22 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[found]]></category>
		<category><![CDATA[objet]]></category>
		<category><![CDATA[perdu]]></category>
		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3687</guid>
		<description><![CDATA[Mieux que perdu.com :) Une première photo, cadrée de près, permet d&#8217;identifier l&#8217;objet perdu : un pull, une capuche, un doudou, un objet banal, qui appartenait à quelqu&#8217;un, dont l&#8217;absence est manifeste. Un objet anonyme désormais, posé là, dans l&#8217;attente de&#8230; Prise de plus loin, une deuxième photo élargit le champ, fait découvrir l&#8217;espace dans [...]]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><img src="http://jaiunblog.com/blog/wp-content/uploads/2012/01/media_file_122628-425x297.jpg" alt="" title="media_file_122628" width="425" height="297" class="alignnone size-medium wp-image-3688" /></p>
<p>Mieux que <a href="http://perdu.com/">perdu.com</a> :)</p>
<blockquote><p>Une première photo, cadrée de près, permet d&#8217;identifier l&#8217;objet perdu : un pull, une capuche, un doudou, un objet banal, qui appartenait à quelqu&#8217;un, dont l&#8217;absence est manifeste. Un objet anonyme désormais, posé là, dans l&#8217;attente de&#8230;<br />
Prise de plus loin, une deuxième photo élargit le champ, fait découvrir l&#8217;espace dans lequel apparaît l&#8217;objet perdu. Elle montre son inscription dans l&#8217;environnement, sa marque insolite sur le territoire. </p>
</blockquote>
<p><a href="http://www.objets-perdus.net">http://www.objets-perdus.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3687/objets-perdus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>du jus de pommes</title>
		<link>http://jaiunblog.com/3681/du-jus-de-pommes/</link>
		<comments>http://jaiunblog.com/3681/du-jus-de-pommes/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 20:11:19 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[lampe]]></category>
		<category><![CDATA[pomme]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3681</guid>
		<description><![CDATA[Remarquable, LED Lamp Powered by Apples]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><img src="http://jaiunblog.com/blog/wp-content/uploads/2012/01/appleorchard1.jpg" alt="" title="appleorchard" width="425" height="331" class="alignnone size-full wp-image-3683" /></p>
<p>Remarquable, <a href="http://www.mymodernmet.com/profiles/blogs/led-lamp-powered-by-apples">LED Lamp Powered by Apples</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3681/du-jus-de-pommes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flash vs html5</title>
		<link>http://jaiunblog.com/3674/flash-vs-html5/</link>
		<comments>http://jaiunblog.com/3674/flash-vs-html5/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 20:34:38 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[pong]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3674</guid>
		<description><![CDATA[Voici un jeu pour mettre fin aux polémiques ! À gauche le jeu est motorisé sous Flash et à droite en html5 (via canvas) : http://labs.codecomputerlove.com/FlashVsHtml5/ bonus : http://occupyflash.org/ http://occupyhtml.org/]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><img src="http://jaiunblog.com/blog/wp-content/uploads/2011/12/pong.png" alt="" title="pong" width="425" height="262" class="alignnone size-full wp-image-3675" /><br />
Voici un jeu pour mettre fin aux polémiques ! À gauche le jeu est motorisé sous Flash et à droite en html5 (via canvas) :<br />
<a href=" http://labs.codecomputerlove.com/FlashVsHtml5/">http://labs.codecomputerlove.com/FlashVsHtml5/</a><br />
bonus :<br />
<a href="http://occupyflash.org/">http://occupyflash.org/</a><br />
<a href="http://occupyhtml.org/">http://occupyhtml.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3674/flash-vs-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nudemen clock</title>
		<link>http://jaiunblog.com/3671/nudemen-clock/</link>
		<comments>http://jaiunblog.com/3671/nudemen-clock/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 20:27:19 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[clock]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[heure]]></category>
		<category><![CDATA[horloge]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3671</guid>
		<description><![CDATA[Encore une horloge :) en Flash http://lovedbdb.com/nudemenClock/index2.html]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><img src="http://jaiunblog.com/blog/wp-content/uploads/2011/12/clock-425x225.png" alt="" title="clock" width="425" height="225" class="alignnone size-medium wp-image-3672" /></p>
<p>Encore une horloge :) en Flash<br />
<a href="http://lovedbdb.com/nudemenClock/index2.html">http://lovedbdb.com/nudemenClock/index2.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3671/nudemen-clock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PQR</title>
		<link>http://jaiunblog.com/3666/pqr/</link>
		<comments>http://jaiunblog.com/3666/pqr/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 22:38:14 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[courrier picard]]></category>
		<category><![CDATA[pqr]]></category>
		<category><![CDATA[presse]]></category>
		<category><![CDATA[régionale]]></category>
		<category><![CDATA[tumblr]]></category>
		<category><![CDATA[typographie]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3666</guid>
		<description><![CDATA[Aujourd&#8217;hui, deux sites que j&#8217;ai twitté, facebooké, google plussoyé mais jamais blogué ! Le premier est typographique : http://ajustetitre.tumblr.com/ Le second (image ci-dessus) est photographique (mais on appréciera le rapport texte/image) : http://meracontepastaviedanslejhm.tumblr.com http://fr.wikipedia.org/wiki/PQR]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><img src="http://jaiunblog.com/blog/wp-content/uploads/2011/11/tumblr_ltl5zzjHof1qm7ocbo1_500-425x366.jpg" alt="" title="tumblr_ltl5zzjHof1qm7ocbo1_500" width="425" height="366" class="alignnone size-medium wp-image-3667" /></p>
<p>Aujourd&#8217;hui, deux sites que j&#8217;ai twitté, facebooké, google plussoyé mais jamais blogué !<br />
Le premier est typographique : <a href="http://ajustetitre.tumblr.com/ ">http://ajustetitre.tumblr.com/</a><br />
Le second (image ci-dessus) est photographique (mais on appréciera le rapport texte/image) : <a href="http://meracontepastaviedanslejhm.tumblr.com ">http://meracontepastaviedanslejhm.tumblr.com </a><br />
<a href="http://fr.wikipedia.org/wiki/PQR">http://fr.wikipedia.org/wiki/PQR</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3666/pqr/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>amalgamation</title>
		<link>http://jaiunblog.com/3663/amalgamation/</link>
		<comments>http://jaiunblog.com/3663/amalgamation/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 16:29:51 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[morphing]]></category>
		<category><![CDATA[tête]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3663</guid>
		<description><![CDATA[De l&#8217;excellent dunun.com !]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe src="http://player.vimeo.com/video/32351411?title=0&amp;byline=0&amp;portrait=0&amp;color=d6d6d6" width="425" height="239" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p>De l&#8217;excellent <a href="http://www.dunun.com/">dunun.com</a> !</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3663/amalgamation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cycle animation</title>
		<link>http://jaiunblog.com/3658/cycle-animation/</link>
		<comments>http://jaiunblog.com/3658/cycle-animation/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 19:32:02 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[papier]]></category>
		<category><![CDATA[phénakistiscope]]></category>
		<category><![CDATA[vélo]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3658</guid>
		<description><![CDATA[http://fr.wikipedia.org/wiki/Phénakistiscope]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe width="425" height="239" src="http://www.youtube.com/embed/r6XbhIRtUjQ" frameborder="0" allowfullscreen></iframe><br />
<a href="http://fr.wikipedia.org/wiki/Phénakistiscope">http://fr.wikipedia.org/wiki/Phénakistiscope</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3658/cycle-animation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sliced</title>
		<link>http://jaiunblog.com/3656/sliced/</link>
		<comments>http://jaiunblog.com/3656/sliced/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 16:41:28 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[danse]]></category>
		<category><![CDATA[slice]]></category>
		<category><![CDATA[tranche]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3656</guid>
		<description><![CDATA[SLICED from La Gaîté Lyrique on Vimeo. Merci Éric]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe src="http://player.vimeo.com/video/30792330?title=0&amp;byline=0&amp;portrait=0" width="425" height="233" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/30792330">SLICED</a> from <a href="http://vimeo.com/gaitelyrique">La Gaîté Lyrique</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Merci Éric</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3656/sliced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rappelle-moi</title>
		<link>http://jaiunblog.com/3645/rappelle-moi/</link>
		<comments>http://jaiunblog.com/3645/rappelle-moi/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 22:44:41 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[clip]]></category>
		<category><![CDATA[copie]]></category>
		<category><![CDATA[h5]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[steve]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3645</guid>
		<description><![CDATA[CNET UK Presents: History of the iPhone, dedicated to the memory of Steve Jobs from Drew Stearne on Vimeo. Slagsmålsklubben &#8211; Sponsored by destiny from Tomas Nilsson on Vimeo. « Inspired by Röyksopps Remind me. » L&#8217;original par H5 (qui donnera aussi une version pub pour cogema areva) Remind Me from Röyksopp on Vimeo.]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe src="http://player.vimeo.com/video/30195371" width="425" height="239" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/30195371">CNET UK Presents: History of the iPhone, dedicated to the memory of Steve Jobs</a> from <a href="http://vimeo.com/drewstearne">Drew Stearne</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><iframe src="http://player.vimeo.com/video/3514904?title=0&amp;byline=0&amp;portrait=0" width="425" height="239" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/3514904">Slagsmålsklubben &#8211; Sponsored by destiny</a> from <a href="http://vimeo.com/user1379043">Tomas Nilsson</a> on <a href="http://vimeo.com">Vimeo</a>.<br />
« Inspired by Röyksopps Remind me. »</p>
<p>L&#8217;original par H5 (qui donnera aussi une version pub pour <del datetime="2011-10-11T22:45:21+00:00">cogema</del> areva)<br />
<br />
<iframe src="http://player.vimeo.com/video/2285902?title=0&amp;byline=0&amp;portrait=0" width="425" height="347" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/2285902">Remind Me</a> from <a href="http://vimeo.com/royksopp">Röyksopp</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3645/rappelle-moi/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>l&#8217;art du rangement</title>
		<link>http://jaiunblog.com/3641/lart-du-rangement/</link>
		<comments>http://jaiunblog.com/3641/lart-du-rangement/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 21:42:38 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[ordre]]></category>
		<category><![CDATA[rangement]]></category>
		<category><![CDATA[tri]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3641</guid>
		<description><![CDATA[Très fort Ursus Wehrli ! Je connaissais ses images pour la campagne bisley, mais son travail est vraiment incroyable ! http://www.kunstaufraeumen.ch/ Plus d&#8217;images dans ce petit reportage : bonus chez TED (vostfr)]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe width="425" height="239" src="http://www.youtube.com/embed/BuBg06Oc5i4" frameborder="0" allowfullscreen></iframe></p>
<p>Très fort Ursus Wehrli ! Je connaissais ses images pour la campagne <a href="http://www.cresta-awards.com/creates/entryimg/7155_l.jpg">bisley</a>, mais son travail est vraiment incroyable !<br />
<a href="http://www.kunstaufraeumen.ch/">http://www.kunstaufraeumen.ch/</a></p>
<p>Plus d&#8217;images dans ce petit reportage :<br />
<iframe width="425" height="239" src="http://www.youtube.com/embed/y5Ogv7pzr8s" frameborder="0" allowfullscreen></iframe><br />
bonus chez TED (vostfr)</p>
<hr />
<br/><br />
<object width="425" height="399"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always"/><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param><param name="flashvars" value="vu=http://video.ted.com/talk/stream/2006/Blank/UrsusWehrli_2006-320k.mp4&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/UrsusWehrli-2006.embed_thumbnail.jpg&#038;vw=384&#038;vh=288&#038;ap=0&#038;ti=400&#038;lang=fre_fr&#038;introDuration=15330&#038;adDuration=4000&#038;postAdDuration=830&#038;adKeys=talk=ursus_wehrli_tidies_up_art;year=2006;theme=whipsmart_comedy;theme=art_unusual;theme=unconventional_explanations;event=TED2006;tag=Arts;tag=Design;tag=Entertainment;tag=art;tag=humor;tag=performance;&#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="425" height="398" allowFullScreen="true" allowScriptAccess="always" flashvars="vu=http://video.ted.com/talk/stream/2006/Blank/UrsusWehrli_2006-320k.mp4&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/UrsusWehrli-2006.embed_thumbnail.jpg&#038;vw=384&#038;vh=288&#038;ap=0&#038;ti=400&#038;lang=fre_fr&#038;introDuration=15330&#038;adDuration=4000&#038;postAdDuration=830&#038;adKeys=talk=ursus_wehrli_tidies_up_art;year=2006;theme=whipsmart_comedy;theme=art_unusual;theme=unconventional_explanations;event=TED2006;tag=Arts;tag=Design;tag=Entertainment;tag=art;tag=humor;tag=performance;&#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3641/lart-du-rangement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

