<?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>procsilas&#039; universe</title>
	<atom:link href="http://procsilas.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://procsilas.net</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 08:54:12 +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>playing with inline processing code</title>
		<link>http://procsilas.net/playing-with-inline-processing-code/</link>
		<comments>http://procsilas.net/playing-with-inline-processing-code/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 18:38:07 +0000</pubDate>
		<dc:creator>procsilas</dc:creator>
				<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://procsilas.net/?p=2068</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<script type="text/processing" data-processing-target="processingcanvas">
/*
 * Joc de la vida adaptat de l'original de Conway
 *
 */
 
int BDIMX=25;
int BDIMY=20;
int BSIZE=20;
float BFACTOR=1; /* no usat */

void randomize() {
  float p=0.987654321;

  for (int i=0; i<BDIMX; i++) {
    for (int j=0; j<BDIMY; j++) {
      XY[i][j]=1-int(random(0,1+p));
    }
  }
}

void setup() {
  size(BDIMX*BSIZE, BDIMY*BSIZE);
  randomize();
}

int [][] XY = new int[BDIMX][BDIMY];
int [][] XYb = new int[BDIMX][BDIMY];

void draw() {

  /* esborra la pantalla */
  background(255);
    
  /* X/Y */
  pushMatrix();
//  translate(BSIZE/2,BSIZE/2);
  for (int i=0; i<BDIMX; i++) {
    pushMatrix();
    for (int j=0; j<BDIMY; j++) {
      fill(255*(1-XY[i][j]));
      rect(0,0,BSIZE*BFACTOR-1,BSIZE*BFACTOR-1);
      translate(0,BSIZE);
    }
    popMatrix();
    translate(BSIZE,0);
  }
  popMatrix();
 
  /* Conway joc de la vida 2D */
  /* X/Y */
  for (int i=0; i<BDIMX; i++) {
    for (int j=0; j<BDIMY; j++) {
      int nv=0;
      /* 8 veins */
      nv=XY[(BDIMX+i-1) % BDIMX][(BDIMY+j-1) % BDIMY]+XY[i][(BDIMY+j-1) % BDIMY]+XY[(i+1) % BDIMX][(BDIMY+j-1) % BDIMY]+XY[(BDIMX+i-1) % BDIMX][j]+XY[(i+1) % BDIMX][j]+XY[(BDIMX+i-1) % BDIMX][(j+1) % BDIMY]+XY[i][(j+1) % BDIMY]+XY[(i+1) % BDIMX][(j+1) % BDIMY];
   
      /* canviar estat */
      if (XY[i][j]==0) { /* inactiu */
        if ((nv>=3) && (nv<=3)) { /* s'activa */
          XYb[i][j]=1;
        } else { /* continua inactiva */
          XYb[i][j]=0;
        }
      } else { /* actiu */
        if ((nv>=2) && (nv<=3)) { /* continua activa */
          XYb[i][j]=1;
        } else { /* s'inactiva */
          XYb[i][j]=0; 
        }
      }   
    }
  }

  /* copiar el nou estat */
  /* X/Y */
  for (int i=0; i<BDIMX; i++) {
    for (int j=0; j<BDIMY; j++) {
      XY[i][j]=XYb[i][j];
    }
  }  

  /* afegir una mica de aleatorietat */
  /* X/Y */
  if (random(0,1)>0.987654321) { /* afegir un glider */
    int i=int(random(1,BDIMX));
    int j=int(random(1,BDIMY-1));

    XY[i][j]=1;
    XY[i+1][j+1]=1;
    XY[i+1][j+2]=1;
    XY[i][j+2]=1;
    XY[i-1][j+2]=1;
  }  

  float t=millis();
  while (millis()-t<40) {
    t=t; /* !!! */
  }
}
</script><canvas id="processingcanvas"></canvas>]]></content:encoded>
			<wfw:commentRss>http://procsilas.net/playing-with-inline-processing-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>cada noche cae la noche sobre la ciudad</title>
		<link>http://procsilas.net/cada-noche-cae-la-noche-sobre-la-ciudad/</link>
		<comments>http://procsilas.net/cada-noche-cae-la-noche-sobre-la-ciudad/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 12:20:45 +0000</pubDate>
		<dc:creator>procsilas</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[theater]]></category>
		<category><![CDATA[cel]]></category>
		<category><![CDATA[edifici]]></category>

		<guid isPermaLink="false">http://procsilas.net/?p=2042</guid>
		<description><![CDATA[ahir vaig veure em van portar a veure &#8220;Pegados&#8220;, un musical al Club Capitol sobre una parella de joves que en el fragor de la batalla va y se encalla!!! tonteries a part he de dir que em va agradar per diferents motius: 1) és curt; 2) és divertit, fa riure o almenys somriure de [...]]]></description>
			<content:encoded><![CDATA[<p><a title="wide enough by procsilas, on Flickr" href="http://www.flickr.com/photos/procsilas/6771274187/"><img src="http://farm8.staticflickr.com/7029/6771274187_6192aa9e76.jpg" alt="wide enough" width="500" height="375" /></a></p>
<p>ahir <del datetime="2012-02-03T12:12:54+00:00">vaig veure</del> em van portar a veure &#8220;<a title="pegados" href="http://www.pegadoselmusical.com/" target="_blank">Pegados</a>&#8220;, un musical al Club Capitol sobre una parella de joves que en el fragor de la batalla va y se encalla!!!</p>
<p>tonteries a part he de dir que em va agradar per diferents motius: 1) és curt; 2) és divertit, fa riure o almenys somriure de tant en tant; 3) canten bé i 4) toquen millor, felicitats al pianista!!!</p>
<p>no sé si queden gaires funcions, així que espabileu!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://procsilas.net/cada-noche-cae-la-noche-sobre-la-ciudad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>viejo gruñon</title>
		<link>http://procsilas.net/viejo-grunon/</link>
		<comments>http://procsilas.net/viejo-grunon/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 12:00:10 +0000</pubDate>
		<dc:creator>procsilas</dc:creator>
				<category><![CDATA[opera]]></category>
		<category><![CDATA[cel]]></category>

		<guid isPermaLink="false">http://procsilas.net/?p=2039</guid>
		<description><![CDATA[ahir al Liceu vaig veure &#8220;Il burbero de buon cuore&#8221;, de Vicent Martín i Soler, &#8220;competidor&#8221; de Mozart tal i com ens el presenten&#8230; però li falta molt per poder &#8220;competir&#8221; amb Mozart, de fet l&#8217;obra d&#8217;ahir la vaig trobar molt avorrida, musicalment plana, repetitiva (tot i que això era el canon de l&#8217;època) i, [...]]]></description>
			<content:encoded><![CDATA[<p><a title="éphémère by procsilas, on Flickr" href="http://www.flickr.com/photos/procsilas/6796583487/"><img src="http://farm8.staticflickr.com/7142/6796583487_fde7c36dd1.jpg" alt="éphémère" width="500" height="375" /></a></p>
<p>ahir al Liceu vaig veure &#8220;Il burbero de buon cuore&#8221;, de Vicent Martín i Soler, &#8220;competidor&#8221; de Mozart tal i com ens el presenten&#8230;</p>
<p>però li falta molt per poder &#8220;competir&#8221; amb Mozart, de fet l&#8217;obra d&#8217;ahir la vaig trobar molt avorrida, musicalment plana, repetitiva (tot i que això era el canon de l&#8217;època) i, de fet, les dues millors àries són de Mozart!!! era costum &#8220;regalar-se&#8221; àries entre compositors, pel que es veu, això o no tenien clar el copyright&#8230;</p>
<p>la crítica de veritat, com sempre <a title="Il burbero de buon cuore (In fernem land)" href="http://ximo.wordpress.com/2012/01/30/liceu-il-burbero-di-buon-cuore/" target="_blank">aquí</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://procsilas.net/viejo-grunon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>behind the wheel</title>
		<link>http://procsilas.net/behind-the-wheel/</link>
		<comments>http://procsilas.net/behind-the-wheel/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 20:27:49 +0000</pubDate>
		<dc:creator>procsilas</dc:creator>
				<category><![CDATA[movies]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[llum]]></category>

		<guid isPermaLink="false">http://procsilas.net/?p=2036</guid>
		<description><![CDATA[vinc de veure &#8220;Drive&#8220;, dirigida per Nicolas Winding Refs, del qual coneixia sense saber-ho &#8220;Bronson&#8221;, que la vaig descobrir fa poc al + m&#8217;he quedat una mica amb una sensació estranya, una història que es va desenvolupant, senzilla, sense complicacions, tots els personatges estan clars (quis és bo i qui no), molt ben explicada, uns [...]]]></description>
			<content:encoded><![CDATA[<p><a title="behind the wheel by procsilas, on Flickr" href="http://www.flickr.com/photos/procsilas/6784367615/"><img src="http://farm8.staticflickr.com/7169/6784367615_46d92d8633.jpg" alt="behind the wheel" width="500" height="375" /></a></p>
<p>vinc de veure &#8220;<a title="Drive (imdb)" href="http://www.imdb.com/title/tt0780504/" target="_blank">Drive</a>&#8220;, dirigida per Nicolas Winding Refs, del qual coneixia sense saber-ho &#8220;Bronson&#8221;, que la vaig descobrir fa poc al +</p>
<p>m&#8217;he quedat una mica amb una sensació estranya, una història que es va desenvolupant, senzilla, sense complicacions, tots els personatges estan clars (quis és bo i qui no), molt ben explicada, uns tocs d&#8217;acció molt versemblants i amb un aspecte visual brutal&#8230;</p>
<p>&#8230;però el conjunt pse, poc consistent, poc arriscat, una mica previsible fins i tot&#8230;</p>
<p>jo per exemple, haguès deixat al personatge principal sense parlar en tota la pel·lícula, només assentint i amb els ulls ja podria desenvolupar-se tot solet&#8230; ella, en canvi, està força bé excepte en una escena típica i tòpica que no desvetllaré, però que hom es pot imaginar&#8230;</p>
<p>sigui com sigui, recomanable!</p>
]]></content:encoded>
			<wfw:commentRss>http://procsilas.net/behind-the-wheel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mess test for DS106</title>
		<link>http://procsilas.net/mess-test-for-ds106/</link>
		<comments>http://procsilas.net/mess-test-for-ds106/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 22:22:13 +0000</pubDate>
		<dc:creator>procsilas</dc:creator>
				<category><![CDATA[photos]]></category>
		<category><![CDATA[procsilas]]></category>
		<category><![CDATA[bn]]></category>
		<category><![CDATA[ds106]]></category>
		<category><![CDATA[metall]]></category>

		<guid isPermaLink="false">http://procsilas.net/?p=2034</guid>
		<description><![CDATA[hello DS106 world!!!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/procsilas/6727769517/" title="mess by procsilas, on Flickr"><img src="http://farm8.staticflickr.com/7160/6727769517_a1190182a4.jpg" width="500" height="375" alt="mess"></a></p>
<p>hello DS106 world!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://procsilas.net/mess-test-for-ds106/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>censored</title>
		<link>http://procsilas.net/censored/</link>
		<comments>http://procsilas.net/censored/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 08:20:58 +0000</pubDate>
		<dc:creator>procsilas</dc:creator>
				<category><![CDATA[pensaments / thoughts]]></category>
		<category><![CDATA[things]]></category>
		<category><![CDATA[negre]]></category>

		<guid isPermaLink="false">http://procsilas.net/?p=2031</guid>
		<description><![CDATA[This image has been blocked in protest of SOPA (Stop Online Piracy Act) americancensorship.org/]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/procsilas/6719067481/" title="censored by procsilas, on Flickr"><img src="http://farm8.staticflickr.com/7167/6719067481_481bc276c6.jpg" width="500" height="375" alt="censored"></a></p>
<p>This image has been blocked in protest of SOPA (Stop Online Piracy Act)</p>
<p><a href="http://americancensorship.org/" rel="nofollow">americancensorship.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://procsilas.net/censored/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>suicide; interplanetary travel</title>
		<link>http://procsilas.net/suicide-interplanetary-travel/</link>
		<comments>http://procsilas.net/suicide-interplanetary-travel/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 15:18:10 +0000</pubDate>
		<dc:creator>procsilas</dc:creator>
				<category><![CDATA[movies]]></category>
		<category><![CDATA[mirall]]></category>

		<guid isPermaLink="false">http://procsilas.net/?p=2029</guid>
		<description><![CDATA[ahir vaig veure &#8220;A dangerous method&#8220;, dirigida per David Cronenberg, un director dels meus favorits però que amb aquesta pel·lícula no acaba d&#8217;encertar-la, al meu parer&#8230; a estones se&#8217;m va fer avorrida, vaig trobar que anava a salts, li mancava una mica de ritme sostingut de totes formes és una pel·lícula interessant, molt bé el [...]]]></description>
			<content:encoded><![CDATA[<p><a title="suicide; interplanetary travel by procsilas, on Flickr" href="http://www.flickr.com/photos/procsilas/6704090899/"><img src="http://farm8.staticflickr.com/7003/6704090899_bdb23572ce.jpg" alt="suicide; interplanetary travel" width="500" height="375" /></a></p>
<p>ahir vaig veure &#8220;<a title="A dangerous method (imdb)" href="http://www.imdb.com/title/tt1571222/" target="_blank">A dangerous method</a>&#8220;, dirigida per David Cronenberg, un director dels meus favorits però que amb aquesta pel·lícula no acaba d&#8217;encertar-la, al meu parer&#8230; a estones se&#8217;m va fer avorrida, vaig trobar que anava a salts, li mancava una mica de ritme sostingut</p>
<p>de totes formes és una pel·lícula interessant, molt bé el trio actoral, especialment Jung (Michael Fassbender) i Sabina Spielrein (Keira Knightley), amb un Freud (Viggo Mortensen) una mica menys creïble</p>
<p>un detall: la veig veure al Verdi Park HD, amb una nitidesa brutal, però que li donava un aspecte de cine TV, amb tots els respectes</p>
<p>recomanable!</p>
]]></content:encoded>
			<wfw:commentRss>http://procsilas.net/suicide-interplanetary-travel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>quina llauna&#8230;</title>
		<link>http://procsilas.net/quina-llauna/</link>
		<comments>http://procsilas.net/quina-llauna/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 18:46:37 +0000</pubDate>
		<dc:creator>procsilas</dc:creator>
				<category><![CDATA[cineforum]]></category>
		<category><![CDATA[llauna]]></category>

		<guid isPermaLink="false">http://procsilas.net/?p=2027</guid>
		<description><![CDATA[&#8230;que el cineforum sigui només un cop a la setmana!!! ahir vàrem veure &#8220;Fong juk&#8221; (&#8220;Exiled&#8221;) de Johnie To, una pel·lícula on tot té un sentit i un lloc, fins i tot una simple llauna de refresc&#8230; boníssima i refrescant!!!]]></description>
			<content:encoded><![CDATA[<p><a title="i wish i was gursky by procsilas, on Flickr" href="http://www.flickr.com/photos/procsilas/6290621009/"><img src="http://farm7.staticflickr.com/6040/6290621009_2a7b65de4c.jpg" alt="i wish i was gursky" width="500" height="333" /></a></p>
<p>&#8230;que el cineforum sigui només un cop a la setmana!!! ahir vàrem veure &#8220;<a title="Exiled (imdb)" href="http://www.imdb.com/title/tt0796212/" target="_blank">Fong juk</a>&#8221; (&#8220;Exiled&#8221;) de Johnie To, una pel·lícula on tot té un sentit i un lloc, fins i tot una simple llauna de refresc&#8230;</p>
<p>boníssima i refrescant!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://procsilas.net/quina-llauna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sisyphus christmas tree</title>
		<link>http://procsilas.net/sisyphus-christmas-tree/</link>
		<comments>http://procsilas.net/sisyphus-christmas-tree/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 20:06:55 +0000</pubDate>
		<dc:creator>procsilas</dc:creator>
				<category><![CDATA[pensaments / thoughts]]></category>
		<category><![CDATA[things]]></category>
		<category><![CDATA[bola]]></category>
		<category><![CDATA[llum]]></category>

		<guid isPermaLink="false">http://procsilas.net/?p=2024</guid>
		<description><![CDATA[cada Nadal el mateix sentiment, montar l&#8217;arbre i tres o quatre setmanes després, desmontar-lo&#8230; és un cicle infinit, em sento importent (palabro entre important i impotent) posant les boles, les llums, totes ben equidistants en un arbre (millor dit, en un cadàver d&#8217;arbre) més o menys cònic&#8230; ingredients un arbre 20 boles vermelles 18 boles [...]]]></description>
			<content:encoded><![CDATA[<p><a title="sisyphus christmas tree by procsilas, on Flickr" href="http://www.flickr.com/photos/procsilas/6668726875/"><img src="http://farm8.staticflickr.com/7159/6668726875_0205f8e66e.jpg" alt="sisyphus christmas tree" width="500" height="375" /></a></p>
<p>cada Nadal el mateix sentiment, montar l&#8217;arbre i tres o quatre setmanes després, desmontar-lo&#8230; és un cicle infinit, em sento <em>importent</em> (palabro entre important i impotent) posant les boles, les llums, totes ben equidistants en un arbre (millor dit, en un cadàver d&#8217;arbre) més o menys cònic&#8230;</p>
<p><strong>ingredients</strong></p>
<p>un arbre<br />
20 boles vermelles<br />
18 boles daurades<br />
100 llumetes amb 7 programes<br />
2&#215;90 llumetes amb 7 programes<br />
un lladre</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://procsilas.net/sisyphus-christmas-tree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flors de plàstic</title>
		<link>http://procsilas.net/flors-de-plastic/</link>
		<comments>http://procsilas.net/flors-de-plastic/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 08:09:13 +0000</pubDate>
		<dc:creator>procsilas</dc:creator>
				<category><![CDATA[opera]]></category>
		<category><![CDATA[arbre]]></category>
		<category><![CDATA[barcelona]]></category>
		<category><![CDATA[llum]]></category>
		<category><![CDATA[nit]]></category>

		<guid isPermaLink="false">http://procsilas.net/?p=2022</guid>
		<description><![CDATA[ahir vaig anar al Liceu a veure &#8220;Linda di Chamounix&#8221;, de Gaetano Donizetti, una peça clàsica, canònica, estàndard basada en un potent joc amb les veus dels cantants&#8230; &#8230;i aquests van estar excel·lents, començant per Linda (Diana Damrau) i Carlo (Juan Diego Flórez) però també el Prefecte (Simón Orfila), Pierotto (Silvia Tro Santafé) i Antonio [...]]]></description>
			<content:encoded><![CDATA[<p><a title="gran teatre del Liceu by procsilas, on Flickr" href="http://www.flickr.com/photos/procsilas/6621756697/"><img src="http://farm8.staticflickr.com/7164/6621756697_ca8e46430e.jpg" alt="gran teatre del Liceu" width="500" height="375" /></a></p>
<p>ahir vaig anar al Liceu a veure &#8220;Linda di Chamounix&#8221;, de Gaetano Donizetti, una peça clàsica, canònica, estàndard basada en un potent joc amb les veus dels cantants&#8230;</p>
<p>&#8230;i aquests van estar excel·lents, començant per Linda (Diana Damrau) i Carlo (Juan Diego Flórez) però també el Prefecte (Simón Orfila), Pierotto (Silvia Tro Santafé) i Antonio (Pietro Spagnoli)</p>
<p>i per un cop, l&#8217;escenografia em va semblar excel·lent, visualment molt potent i amb quatre elements, genials les flors del bosc</p>
<p>com sempre, la crítica de veritat la podeu trobar <a title="Linda di Chamounix (in fernem land)" href="http://ximo.wordpress.com/2011/12/21/liceu-linda-di-chamounix/" target="_blank">aquí</a></p>
]]></content:encoded>
			<wfw:commentRss>http://procsilas.net/flors-de-plastic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

