<?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; code</title>
	<atom:link href="http://jaiunblog.com/tag/code/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, 17 May 2012 10:12:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>patatas de goma</title>
		<link>http://jaiunblog.com/3777/patatas-de-goma/</link>
		<comments>http://jaiunblog.com/3777/patatas-de-goma/#comments</comments>
		<pubDate>Thu, 17 May 2012 10:12:42 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[musique]]></category>
		<category><![CDATA[programmation]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[klaxon]]></category>
		<category><![CDATA[phare]]></category>
		<category><![CDATA[puredata]]></category>
		<category><![CDATA[voiture]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3777</guid>
		<description><![CDATA[Réalisation en PureData mais vu en trainant sur des forums de Processing. Plus d&#8217;informations : http://jeromeabel.net/ http://jeromeabel.net/fr/art/patatas-de-goma]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe width="425" height="318" src="http://www.youtube.com/embed/Nlm0WUFzI7A" frameborder="0" allowfullscreen></iframe></p>
<p>Réalisation en PureData mais vu en trainant sur des forums de Processing.<br />
Plus d&#8217;informations :<br />
<a href="http://jeromeabel.net/">http://jeromeabel.net/</a><br />
<a href="http://jeromeabel.net/fr/art/patatas-de-goma">http://jeromeabel.net/fr/art/patatas-de-goma<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3777/patatas-de-goma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>processing</title>
		<link>http://jaiunblog.com/3690/processing/</link>
		<comments>http://jaiunblog.com/3690/processing/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 17:39:39 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[programmation]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[liste]]></category>
		<category><![CDATA[p5]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[supprimer]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3690</guid>
		<description><![CDATA[On peut faire pas mal d&#8217;opérations sur les Array dans Processing mais pour supprimer un élément, j&#8217;ai rien vu, de plus subset compte de 1 à n les éléments de la liste (=array) ! Voici une function _remove pour les listes de chiffres, à adapter selon vos besoins. int[] s= { 1, 2, 3, 4}; [...]]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p>On peut faire pas mal d&#8217;opérations sur les Array dans Processing mais pour supprimer un élément, j&#8217;ai rien vu, de plus <a href="http://processing.org/reference/subset_.html">subset</a> compte de 1 à n les éléments de la liste (=array) !<br />
Voici une function _remove pour les listes de chiffres, à adapter selon vos besoins.</p>
<pre class="brush: java; title: ;">
int[] s= { 1, 2, 3, 4};

int[] _remove(int[] s, int r) {
  return concat(subset(s, 0, r), subset(s, r+1, s.length-r-1));
}

void setup() {
  println(&quot;s=&quot;+join(nf(s, 0), &quot;, &quot;));
  s=_remove(s, 1); //on compte comme dans l'array à partir de 0
  println(&quot;s=&quot;+join(nf(s, 0), &quot;, &quot;));
}
</pre>
<p>Comme la manipulation sur les tableaux en 2D n&#8217;est pas simple (enfin il faut juste mettre un type devant), voici la version 2D</p>
<pre class="brush: java; title: ;">
int[][] _remove(int[][] s,int r){
 return (int[][]) concat((int[][]) subset(s,0,r),(int[][]) subset(s,r+1,s.length-r-1));
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3690/processing/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>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>bookophone</title>
		<link>http://jaiunblog.com/3366/bookophone/</link>
		<comments>http://jaiunblog.com/3366/bookophone/#comments</comments>
		<pubDate>Thu, 05 May 2011 10:17:53 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[automatophone]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[livre]]></category>
		<category><![CDATA[xylophone]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3366</guid>
		<description><![CDATA[C&#8217;est l&#8217;heure de la dictée rythmique ! L&#8217;ensemble avec des livres de chez O’Reilly (logique).]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe width="425" height="345" src="http://www.youtube.com/embed/VZrnjevlx4g?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p>C&#8217;est l&#8217;heure de la dictée rythmique ! L&#8217;ensemble avec des livres de chez O’Reilly (logique).</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3366/bookophone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>impromptu</title>
		<link>http://jaiunblog.com/3330/impromptu/</link>
		<comments>http://jaiunblog.com/3330/impromptu/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 14:16:41 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[programmation]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[piano]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3330</guid>
		<description><![CDATA[Dancing Phalanges from Andrew Sorensen on Vimeo. Très étrange, jouer du piano avec un clavier du code ! Je vous invite à lire l&#8217;article (fr) chez l&#8217;excellentissime Cuarto derecha. Où voir le programme ici : http://impromptu.moso.com.au/]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe src="http://player.vimeo.com/video/8732631" width="425" height="318" frameborder="0"></iframe>
<p><a href="http://vimeo.com/8732631">Dancing Phalanges</a> from <a href="http://vimeo.com/impromptu">Andrew Sorensen</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Très étrange, jouer du piano avec <del datetime="2011-04-12T14:10:45+00:00">un clavier</del> du code !<br />
Je vous invite à lire l&#8217;article (fr) chez l&#8217;excellentissime <a href="http://www.cuartoderecha.com/4870/">Cuarto derecha</a>.</p>
<p>Où voir le programme ici : <a href="http://impromptu.moso.com.au/">http://impromptu.moso.com.au/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3330/impromptu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>motion code</title>
		<link>http://jaiunblog.com/2339/motion-code/</link>
		<comments>http://jaiunblog.com/2339/motion-code/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 03:08:46 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[programmation]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[motion]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=2339</guid>
		<description><![CDATA[Flightpattern from Gwen Vanhee on Vimeo. Vu chez smashing sur cette belle compile à voir !]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><object width="425" height="239"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7174318&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7174318&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="425" height="239"></embed></object>
<p><a href="http://vimeo.com/7174318">Flightpattern</a> from <a href="http://vimeo.com/revoid" class="broken_link">Gwen Vanhee</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Vu chez smashing sur <a href="http://www.smashingmagazine.com/2010/02/06/beautiful-motion-graphics-created-with-programming-showcase-tools-and-tutorials/">cette belle compile</a>  à voir !</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/2339/motion-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

