<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.2" -->
<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:georss="http://www.georss.org/georss" xmlns:gml="http://www.opengis.net/gml"
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>blogopalha</title>
	<link>http://blog.palha.org</link>
	<description>experiências do dia a dia / day by day experiences</description>
	<pubDate>Mon, 21 Sep 2009 14:29:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
	<language>en</language>
		<!-- podcast_generator="podPress/8.8" -->
		<copyright>&#xA9; </copyright>
		<managingEditor>artur.palha@gmail.com ()</managingEditor>
		<webMaster>artur.palha@gmail.com()</webMaster>
		<category></category>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>experiecirc;ncias do dia a dia / day by day experiences</itunes:summary>
		<itunes:author></itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name></itunes:name>
			<itunes:email>artur.palha@gmail.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://blog.palha.org/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://blog.palha.org/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>blogopalha</title>
			<link>http://blog.palha.org</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Installing deal.II v6.2.1 (deal II) on Mac OSX v10.5.8</title>
		<link>http://blog.palha.org/programming/installing-dealii-v621-deal-ii-on-mac-osx-v1058</link>
		<comments>http://blog.palha.org/programming/installing-dealii-v621-deal-ii-on-mac-osx-v1058#comments</comments>
		<pubDate>Mon, 21 Sep 2009 09:37:27 +0000</pubDate>
		<dc:creator>gorkiana</dc:creator>
		
		<category><![CDATA[mac]]></category>

		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://blog.palha.org/programming/installing-dealii-v621-deal-ii-on-mac-osx-v1058</guid>
		<description><![CDATA[ 	Apparently installing deal.II (finite element library) on a Mac, seems like a fairly straightforward thing, in practice it took me a loot of time to do it because there was one very nasty thing that had to be done and it was not at all obvious. So I try here to give a walkthrough [...]]]></description>
			<content:encoded><![CDATA[<p> 	Apparently installing deal.II (finite element library) on a Mac, seems like a fairly straightforward thing, in practice it took me a loot of time to do it because there was one very nasty thing that had to be done and it was not at all obvious. So I try here to give a walkthrough of all the steps I took to install deal.II on my mac. I installed it with MPI, so that I could use the multiprocessing capabilities.<strong>PRE-REQUISITES</strong>In order to install deal.II you need to have installed some other packages:
<ul>
<li>LAPACK and BLAS</li>
<li>OpenMPI (v1.3.3)</li>
<li>Boost (v1.4.0)</li>
<li>PETSc (v2.3.3)</li>
</ul>
<p>Let&#8217;s do it by parts, you should follow this order of installation:<strong>Directory structure</strong>I decided to install all libraries, except the compiler and LAPACK and BLAS on my home directory. I put all my source files and downloaded archived on a folder:~/Programs/srcAll the installed libraries I put them on a folder inside:~/Programs/installSo, most probably you do not have this directory structure hence open a terminal window and do the following to create these directories:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre>mkdir ~/Programs</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre>mkdir ~/Programs/src</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>3
</pre></td><td class="code"><pre>mkdir ~/Programs/install</pre></td></tr></table></div>

<p><strong>LAPACK and BLAS</strong>In order to compile anything you need a compiler, hence you need something like the <a href="http://gcc.gnu.org/" title="gcc, GNU compiler collection">gcc collection</a>. You can use some other compilers but I haven&#8217;t tried them. The easiest way to get up and running with compilers on a mac it&#8217;s by installing <a href="http://developer.apple.com/TOOLS/Xcode/" title="Xcode homepage">Xcode</a> and the <a href="http://www.macresearch.org/xcode_gfortran_plugin_update" title="Xcode gFortran plugin">Xcode gFortran plugin</a>. With this you get the gcc collection and also gfortran.For free you also get an optimized version of LAPACK and BLAS with <a href="http://developer.apple.com/mac/library/documentation/Performance/Conceptual/vecLib/Reference/reference.html" title="vecLib optimized LAPACK and BLAS">vecLib</a>. Hence you don&#8217;t need to have any additional work in order to have LAPACK and BLAS installed.<strong>OpenMPI</strong>I installed version 1.3.3. You can dowload it from <a href="http://www.open-mpi.org/software/ompi/v1.3/downloads/openmpi-1.3.3.tar.gz" title="dowload openMPI v1.3.3">here</a>. You can either download it from the browser and put it in the ~/Programs/src folder or you can go to the terminal and do:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre>cd ~/Programs/src</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre>wget http://www.open-mpi.org/software/ompi/v1.3/downloads/openmpi-1.3.3.tar.gz</pre></td></tr></table></div>

<p>After this just extract the contents of the archive:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>3
</pre></td><td class="code"><pre>tar xvf openmpi-1.3.3.tar.gz</pre></td></tr></table></div>

<p>Now go inside the newly created directory:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>4
</pre></td><td class="code"><pre>cd openmpi-1.3.3</pre></td></tr></table></div>

<p>Run configure with the prefix to the directory where we want to install openMPI, in this case inside ~/Programs/install/openmpi:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>5
</pre></td><td class="code"><pre>./configure --prefix=~/Programs/install/openmpi</pre></td></tr></table></div>

<p>This should configure all the compilation variables with no problem so, after all the output just start compiling:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>6
</pre></td><td class="code"><pre>make all</pre></td></tr></table></div>

<p>Then install:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>7
</pre></td><td class="code"><pre>make install</pre></td></tr></table></div>

<p>If everything went fine you should have openMPI installed properly. Now it is only necessary to update your PATH and some other environment variables. To do that you need to edit your .bash_profile file, hence to do it type:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>8
</pre></td><td class="code"><pre>emacs ~/.bash_profile</pre></td></tr></table></div>

<p>Once emacs is open with your .bash_profile file, just add the following lines to it:</p>

<div class="wp_syntax"><div class="code"><pre class="python"><span style="color: #808080; font-style: italic;"># Set up environment variables for openmpiexport PATH=/Users/gorkiana/Programs/install/openmpi/bin:${PATH}export LD_LIBRARY_PATH=/Users/gorkiana/Programs/install/openmpi/lib:${LD_LIBRARY_PATH}export LD_LIBRARY_PATH=/Users/gorkiana/Programs/install/openmpi/lib/openmpi:${LD_LIBRARY_PATH}export LD_LIBRARY_PATH=/Users/gorkiana/Programs/install/openmpi/include:${LD_LIBRARY_PATH}export LD_LIBRARY_PATH=/Users/gorkiana/Programs/install/openmpi/include/openmpi/ompi/mpi/cxx/:${LD_LIBRARY_PATH}export DYLD_LIBRARY_PATH=/Users/gorkiana/Programs/install/openmpi/lib:${DYLD_LIBRARY_PATH}export DYLD_LIBRARY_PATH=/Users/gorkiana/Programs/install/openmpi/lib/openmpi:${DYLD_LIBRARY_PATH}</span></pre></div></div>

<p>Notice that /Users/gorkiana/Programs/install&#8230; is for my own computer, my username is gorkiana, so you should put your own username instead of gorkiana. Save it with control+x+s and exit with control+x+c.Now run your updated bash_profile:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>9
</pre></td><td class="code"><pre>. ~/.bash_profile</pre></td></tr></table></div>

<p>Now you should have a properly working openMPI. To check if in fact it is, move inside the examples directory:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>10
</pre></td><td class="code"><pre>cd examples</pre></td></tr></table></div>

<p>And make all the example programs:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>11
</pre></td><td class="code"><pre> make all</pre></td></tr></table></div>

<p>Run some of the examples, for example:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>12
</pre></td><td class="code"><pre> mpirun -n 2 hello_c</pre></td></tr></table></div>

<p>You should get something like this as output:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>13
</pre></td><td class="code"><pre>Hello, world, I am 0 of 2</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>14
</pre></td><td class="code"><pre>Hello, world, I am 1 of 2</pre></td></tr></table></div>

<p>If you get this you have a well installed OpenMPI! Next step.<strong>Boost</strong>I installed version version 1.4.0. You can download it from <a href="http://downloads.sourceforge.net/project/boost/boost/1.40.0/boost_1_40_0.tar.gz?use_mirror=kent" title="Download Boost v1.4.0">here</a>. You can either download it from the browser and put it inside your ~/Programs/src folder or you can go to the terminal and type:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre>wget http://downloads.sourceforge.net/project/boost/boost/1.40.0/boost_1_40_0.tar.gz?use_mirror=kent</pre></td></tr></table></div>

<p>After that you must extract the contents of the archive, for that do:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre>tar xvf boost_1_4_0.tar.gz</pre></td></tr></table></div>

<p>Move to the extracted directory:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>3
</pre></td><td class="code"><pre>cd boost_1_4_0</pre></td></tr></table></div>

<p>Run the configuration script:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>4
</pre></td><td class="code"><pre>./bootstrap.sh --prefix=~/Programs/install/boost_1_4_0</pre></td></tr></table></div>

<p>Edit the file ./user-config.jam:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>5
</pre></td><td class="code"><pre>emacs ./user-config.jam</pre></td></tr></table></div>

<p>Add the following line: using mpiSave and exit with control+x+s and control+x+c.Build Boost and install it:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>6
</pre></td><td class="code"><pre>./bjam install</pre></td></tr></table></div>

<p>Now you just need to add some directories to the environment variables by editing your .bash_profile file. Type:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>6
</pre></td><td class="code"><pre>emacs ~/.bash_profile</pre></td></tr></table></div>

<p>And add the following lines:</p>

<div class="wp_syntax"><div class="code"><pre class="python"><span style="color: #808080; font-style: italic;"># Set up environment variable for boost_1_4_0export LD_LIBRARY_PATH=/Users/gorkiana/Programs/install/boost_1_4_0/lib:${LD_LIBRARY_PATH}export LD_LIBRARY_PATH=/Users/gorkiana/Programs/install/boost_1_4_0/boost/include:${LD_LIBRARY_PATH}export LD_LIBRARY_PATH=/Users/gorkiana/Programs/install/boost_1_4_0/boost:${LD_LIBRARY_PATH}export DYLD_LIBRARY_PATH=/Users/gorkiana/Programs/install/boost_1_4_0/lib:${DYLD_LIBRARY_PATH}</span></pre></div></div>

<p>Save and exit with: control+x+s and control+x+c.You should now have a working installation of Boost! Next step&#8230;<strong>PETSc</strong>I installed version version 2.3.3. You can download it from <a href="http://ftp.mcs.anl.gov/pub/petsc/software_old/petsc-2.3.3.tar.gz" title="Download PETSc v2.3.3">here</a>. You can either download it from the browser and put it inside your ~/Programs/src folder or you can go to the terminal and type:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre>cd ~/Programs/src</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre>wget http://ftp.mcs.anl.gov/pub/petsc/software_old/petsc-2.3.3.tar.gz</pre></td></tr></table></div>

<p>After that you must extract the contents of the archive, for that do:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre>tar xvf petsc-2.3.3.tar.gz</pre></td></tr></table></div>

<p>Move to the extracted directory:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>3
</pre></td><td class="code"><pre>cd petsc-2.3.3-p15</pre></td></tr></table></div>

<p>Now you need to set up some environment variables for PETSc:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>4
</pre></td><td class="code"><pre>export PETS_DIR=~/Programs/src/petsc-2.3.3-p15</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>5
</pre></td><td class="code"><pre>export PETS_ARCH=macosx</pre></td></tr></table></div>

<p>Run the configuration program:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>6
</pre></td><td class="code"><pre>python ./config/configure.py --prefix=~/Programs/install/petsc-2.3.3 --with-blas-lapack-lib=&quot;-framework vecLib&quot; --with-mpi-dir=~/Programs/install/openmpi/ --with-shared=1 --with-debugging=0</pre></td></tr></table></div>

<p>This says that one should use the vecLib LAPACK and BLAS libraries, the openmpi installation that we just did, generate shared libraries and don&#8217;t build debugging libraries, that is, build optimized libraries. Good for production code, faster.Now build it:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>7
</pre></td><td class="code"><pre>make all</pre></td></tr></table></div>

<p><strong>VERY IMPORTANT</strong>You should see a lot of output. When it finishes you should check if  there was any error in the end stating that it was unable to make the shared libraries. You can also check if you have any .dylib files (shared libraries) in the directory ~/Programs/src/petsc-2.3.3-p15/lib/macosx. Just type:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>8
</pre></td><td class="code"><pre>ls ~/Programs/src/petsc-2.3.3-p15/lib/macosx | grep .dylib</pre></td></tr></table></div>

<p>If you get several files, than you are ok, if not, then you need to do the following. This is very important since if you do not have this files, you are stuck in this step and you are unable to build deal.II. This was what took me a lot of time to solve. Thank you Wendy Mason from the <a href="http://www.underworldproject.org/" title="Download Boost v1.4.0">Underworld</a> project for the helpful <a href="http://www.underworldproject.org/documentation/Petsc2.html" title="Download Boost v1.4.0">solution</a>!If you do not have the dylib files you need to edit the file ~/Programs/src/petsc-2.3.3-p15/bmake/common/rules.shared.based, doing:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>9
</pre></td><td class="code"><pre>emacs ~/Programs/src/petsc-2.3.3-p15/bmake/common/rules.shared.based</pre></td></tr></table></div>

<p>Search for a line where there is something like shared_darwin8: shared_darwin7 and add the following line after that one:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>10
</pre></td><td class="code"><pre>shared_darwin9: shared_darwin7</pre></td></tr></table></div>

<p>Save the file and exit with control+x+s and control+x+c.Make the shared libraries with:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>11
</pre></td><td class="code"><pre>make PETSC_ARCH=macosx shared</pre></td></tr></table></div>

<p>Now this should work and you should have the shared libraries. Redo:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>12
</pre></td><td class="code"><pre>ls ~/Programs/src/petsc-2.3.3-p15/lib/macosx | grep .dylib</pre></td></tr></table></div>

<p>And confirm that in fact you have the .dylib files you need.Just install it:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>13
</pre></td><td class="code"><pre>make install</pre></td></tr></table></div>

<p>Now you just need to add some directories to the environment variables by editing your .bash_profile file. Type:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>14
</pre></td><td class="code"><pre>emacs ~/.bash_profile</pre></td></tr></table></div>

<p>And add the following lines:</p>

<div class="wp_syntax"><div class="code"><pre class="python"><span style="color: #808080; font-style: italic;"># Set up environment variables for pets-2.3.3export PATH=~/Programs/install/petsc-2.3.3/bin:${PATH}export LD_LIBRARY_PATH=~/Programs/install/petsc-2.3.3/lib/macosx:${LD_LIBRARY_PATH}export LD_LIBRARY_PATH=~/Programs/install/petsc-2.3.3/include:${LD_LIBRARY_PATH}export PETSC_DIR=~/Programs/install/petsc-2.3.3export PETSC_ARCH=macosx</span></pre></div></div>

<p>Save and exit with: control+x+s and control+x+c.Run you new bash_profile:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>15
</pre></td><td class="code"><pre>. ~/.bash_profile</pre></td></tr></table></div>

<p>You should now have a working installation of PETSc! Next step.<strong>deal.II</strong>I installed version version 6.2.1. You can download it from <a href="http://www.dealii.org/download/deal.nodoc-6.2.1.tar.gz" title="Download deal.II v6.2.1">here</a>. You can either download it from the browser and put it inside your ~/Programs/src folder or you can go to the terminal and type:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre>cd ~/Programs/src</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre>wget http://www.dealii.org/download/deal.nodoc-6.2.1.tar.gz</pre></td></tr></table></div>

<p>After that you must extract the contents of the archive, for that do:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>3
</pre></td><td class="code"><pre>tar xvf deal.nodoc-6.2.1.tar.gz</pre></td></tr></table></div>

<p>Move to the extracted directory:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>4
</pre></td><td class="code"><pre>cd deal.II</pre></td></tr></table></div>

<p>Run the configuration script:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>5
</pre></td><td class="code"><pre>./configure CC=mpicc CXX=mpicxx --with-boost-include=/Users/gorkiana/Programs/install/boost_1_4_0/include/boost --with-boost-lib=/Users/gorkiana/Programs/install/boost_1_4_0/lib LIBS=&quot;-framework vecLib&quot;</pre></td></tr></table></div>

<p>Notice that one has to give the MPI compilers no the default ones. If you do not do this, then you will get an error stating that it cannot find some MPI functions. Also you need to give Boost directories and LAPACK and BLAS connected to vecLib, the Apple provided optimized version of LAPACK and BLAS.The configuration process should work fine, after this you just need to build:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>6
</pre></td><td class="code"><pre>make all</pre></td></tr></table></div>

<p>You should now have a working installation of deal.II.</p>

]]></content:encoded>
			<wfw:commentRss>http://blog.palha.org/programming/installing-dealii-v621-deal-ii-on-mac-osx-v1058/feed</wfw:commentRss>
		</item>
		<item>
		<title>Installing Trilinos in Mac OSX 10.5.7</title>
		<link>http://blog.palha.org/programming/intalling-trilinos-in-mac-osx-1057</link>
		<comments>http://blog.palha.org/programming/intalling-trilinos-in-mac-osx-1057#comments</comments>
		<pubDate>Thu, 10 Sep 2009 11:12:53 +0000</pubDate>
		<dc:creator>gorkiana</dc:creator>
		
		<category><![CDATA[mac]]></category>

		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://blog.palha.org/uncategorized/intalling-trilinos-in-mac-osx-1057</guid>
		<description><![CDATA[ 	To get Trilinos to work it is necessary to get it from here and compile it.In order for the compilation to be successful it is needed a c compiler, a c++ compiler and a fortran compiler. One set of these compilers is given by the gcc bundle. If you install Xcode from Apple you will get [...]]]></description>
			<content:encoded><![CDATA[<p> 	To get Trilinos to work it is necessary to get it from <a href="http://trilinos.sandia.gov/download/trilinos-9.0.html" title="Download trilinos">here</a> and compile it.In order for the compilation to be successful it is needed a c compiler, a c++ compiler and a fortran compiler. One set of these compilers is given by the gcc bundle. If you install Xcode from Apple you will get gcc and g++ but not gfortran. To get gfortran you can use the one given by <a href="http://trac.macports.org/browser/trunk/dports/lang/gcc42/Portfile" title="gcc4.2">macports</a>. Having downloaded Trilinos, you must unpack it. Now, inside the root dir of the unpacked Trilinos tree you should create a directory for you build, even if you just plan on making one build, this is always good. I name it OSX_SINGLE, and move inside it, doing:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre>mkdir OSX_SINGLE</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre>cd OSX_SINGLE</pre></td></tr></table></div>

<p>Now inside it you should run config, but running config with no special settings gives rise to problems. Hence you should use the following:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre>../configure --cache-file=config.cache --prefix=/usr/local/trilinos-8.0.8-serial CC=/usr/bin/gcc CXX=/usr/bin/g++ F77=/usr/local/bin/gfortran --with-libs=&quot;-framework vecLib&quot; --with-ldflags=&quot;-Wl,-multiply_defined -Wl,suppress&quot; --enable-amesos --enable-epetra --enable-anasazi --enable-aztecoo --enable-examples --enable-didasko --enable-teuchos --enable-triutils --enable-galeriD</pre></td></tr></table></div>

<p>Doing this it should result in a good configuration for make.After this Trilinos is now able to be compiled. To do that you should run:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre>make everything</pre></td></tr></table></div>

<p>And then if everything was compiled correctly you should install it, with sudo:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre>sudo make install</pre></td></tr></table></div>

<p>After this you should have a working Trilinos installation.</p>

]]></content:encoded>
			<wfw:commentRss>http://blog.palha.org/programming/intalling-trilinos-in-mac-osx-1057/feed</wfw:commentRss>
		</item>
		<item>
		<title>Melhores coreografias em vídeos de música</title>
		<link>http://blog.palha.org/music/melhores-coreografias-em-videos-de-musica</link>
		<comments>http://blog.palha.org/music/melhores-coreografias-em-videos-de-musica#comments</comments>
		<pubDate>Mon, 27 Oct 2008 01:03:45 +0000</pubDate>
		<dc:creator>gorkiana</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.palha.org/music/melhores-coreografias-em-videos-de-musica</guid>
		<description><![CDATA[ 	Estava a rever este vídeo dos Moloko, Forever More, e achei que a coreografia estava bastante engraçada. Lembrei-me de mais alguns vídeos com coreografias interessantes e decidi juntá-los aqui.
Mologo: Forever More

Björk: It&#8217;s oh so quiet!

Daft Punk: Around the world

Jamiroquai: Virtual Insanity

E claro, o grande clássico dos Temptations: My girl, não podia ser excluído.
Este é [...]]]></description>
			<content:encoded><![CDATA[<p> 	Estava a rever este vídeo dos Moloko, Forever More, e achei que a coreografia estava bastante engraçada. Lembrei-me de mais alguns vídeos com coreografias interessantes e decidi juntá-los aqui.</p>
<p>Mologo: Forever More</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="480" height="360"><param name="movie" value="http://www.youtube.com/v/obe8ipLIAy8&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay=&amp;ap=%2526fmt%3D18"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/obe8ipLIAy8&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=&amp;ap=%2526fmt%3D18" type="application/x-shockwave-flash" allowfullscreen="true" width="480" height="360" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>Björk: It&#8217;s oh so quiet!</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="480" height="360"><param name="movie" value="http://www.youtube.com/v/zMbEge4BQQU&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay=&amp;ap=%2526fmt%3D18"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/zMbEge4BQQU&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=&amp;ap=%2526fmt%3D18" type="application/x-shockwave-flash" allowfullscreen="true" width="480" height="360" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>Daft Punk: Around the world</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/X0-yL1eRLVU&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay="></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/X0-yL1eRLVU&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>Jamiroquai: Virtual Insanity</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="480" height="360"><param name="movie" value="http://www.youtube.com/v/pLAKnQZddMM&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay=&amp;ap=%2526fmt%3D18"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/pLAKnQZddMM&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=&amp;ap=%2526fmt%3D18" type="application/x-shockwave-flash" allowfullscreen="true" width="480" height="360" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>E claro, o grande clássico dos Temptations: My girl, não podia ser excluído.</p>
<p>Este é o melhor, mas não dá para se embedido: <a href="http://www.youtube.com/watch?v=ltRwmgYEUr8">http://www.youtube.com/watch?v=ltRwmgYEUr8</a></p>
<p>Este também é bom, mas não tão bom.</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/8vdCLBM-RnY&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay="></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/8vdCLBM-RnY&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>Este não são coreografias propriamente ditas, mas são bastante curiosos:</p>
<p>Justice vs Simian: We are Friends (dica da Ana V. S.):</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/6zo1-XlazvY&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay="></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/6zo1-XlazvY&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>E MGMT: Time to pretend (dica da Ana V.S. e do Nuno F.):</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/XVnRzEjpUmE&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay="></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/XVnRzEjpUmE&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>

]]></content:encoded>
			<wfw:commentRss>http://blog.palha.org/music/melhores-coreografias-em-videos-de-musica/feed</wfw:commentRss>
		</item>
		<item>
		<title>Como está a robótica?</title>
		<link>http://blog.palha.org/science/como-esta-a-robotica</link>
		<comments>http://blog.palha.org/science/como-esta-a-robotica#comments</comments>
		<pubDate>Mon, 27 Oct 2008 00:54:14 +0000</pubDate>
		<dc:creator>gorkiana</dc:creator>
		
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://blog.palha.org/science/como-esta-a-robotica</guid>
		<description><![CDATA[ 	Hoje vi um artigo que comentava um dos projectos do Departamento de Defesa dos Estados Unidos da América sobre robôts. O objectivo é:
&#8220;Develop a software and sensor package to enable a team of robots to search for and detect human presence in an indoor environment.&#8221; 
Nada de mais, o mais interessante está no meio [...]]]></description>
			<content:encoded><![CDATA[<p> 	Hoje vi um artigo que comentava um dos projectos do Departamento de Defesa dos Estados Unidos da América sobre robôts. O objectivo é:</p>
<p><a href="http://www.dodsbir.net/SITIS/display_topic.asp?Bookmark=34565">&#8220;Develop a software and sensor package to enable a team of robots to search for and detect human presence in an indoor environment.&#8221; </a></p>
<p>Nada de mais, o mais interessante está no meio do texto, quando dizem:</p>
<p><em>&#8220;This topic seeks to merge these research areas and develop a software/hardware suit that would enable a multi-robot team, together with a human operator, to search for and detect a non-cooperative human subject.&#8221;</em></p>
<p>Um bocado assustador e Orwelliano, não?</p>
<p>Fiquei curioso sobre o estado da arte da robótica, por isso fui procurar no youtube alguns vídeos. Devem estar bastante desfasados do estado da arte, mas dá para extrapolar.</p>
<p>Robôts que fazem kung fu com bastante fluidez, da sony, salvo erro.</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/jZmNc-rshWw&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay="></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/jZmNc-rshWw&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>Big dog, um quadrupede com um equilíbrio incrível.</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/cHJJQ0zNNOM&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay="></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/cHJJQ0zNNOM&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>Braço prostético, controlado por impulso nervosos.</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/R0_mLumx-6Y&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay="></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/R0_mLumx-6Y&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>Um braço robótico ligado directamente ao cérebro de um macaco.</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/wxIgdOlT2cY&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay="></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/wxIgdOlT2cY&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>O robot da Honda, também com um equilíbrio incrível.</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Q3C5sc8b3xM&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay="></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/Q3C5sc8b3xM&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>
<p>Mais um humanoide.</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/828MoRnDUL4&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay="></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/828MoRnDUL4&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>

]]></content:encoded>
			<wfw:commentRss>http://blog.palha.org/science/como-esta-a-robotica/feed</wfw:commentRss>
		</item>
		<item>
		<title>O portátil Magalhães ou como se fazem escolhas enviesadas</title>
		<link>http://blog.palha.org/economics/o-portatil-magalhaes-ou-como-se-fazem-escolhas-enviesadas</link>
		<comments>http://blog.palha.org/economics/o-portatil-magalhaes-ou-como-se-fazem-escolhas-enviesadas#comments</comments>
		<pubDate>Fri, 24 Oct 2008 23:05:11 +0000</pubDate>
		<dc:creator>gorkiana</dc:creator>
		
		<category><![CDATA[economics]]></category>

		<category><![CDATA[opensource]]></category>

		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://blog.palha.org/economics/o-portatil-magalhaes-ou-como-se-fazem-escolhas-enviesadas</guid>
		<description><![CDATA[ 	Recentemente entrei em discussão com um blogger que também é repórter do Expresso, chamado Paulo Querido, tudo circulou em torno deste de um post intitulado Magalhães o sucesso público. Podem ler o post e ver melhor o que é dito lá, mas resumindo, é defendido que é algo excepcional para o desenvolvimento do país, [...]]]></description>
			<content:encoded><![CDATA[<p> 	Recentemente entrei em discussão com um blogger que também é repórter do Expresso, chamado Paulo Querido, tudo circulou em torno deste de um post intitulado <a href="http://pauloquerido.net/tecnologia/magalhaes-o-sucesso-publico/">Magalhães o sucesso público</a>. Podem ler o post e ver melhor o que é dito lá, mas resumindo, é defendido que é algo excepcional para o desenvolvimento do país, não só porque estimula as crianças, eliminando a info-exclusão, como também é um grande impulsionador do desenvolvimento tecnológico do país porque o computador é feito em Portugal.</p>
<p>Não vou entrar nos detalhes da discussão toda, vou-me centrar na parte do desenvolvimento tecnológico do país. O Magalhães é um computador portátil desenvolvido pela Intel, baseado no <a href="http://www.laptop.org">OLPC</a>, mas com uma arquitectura completamente fechada. Em Portugal iremos apenas assemblar peças que já vêem pré-feitas de outro lado qualquer. Acresce a isto o facto de não ser possível aceder aos <a href="http://en.wikipedia.org/wiki/Blueprint">blueprints</a> do computador. Resumindo, não há qualquer benefício para o país em termos de desenvolvimento tecnológico, tanto como uma fábrica da Volkswagen nos permitiu desenvolver um carro português.</p>
<p>O mais interessante é o facto de existirem alternativas completamente abertas de computadores portáteis com características técnicas semelhantes, como por exemplo o projecto da VIA, <a href="http://www.viaopenbook.com/">openbook.</a> Se esta plataforma tivesse sido escolhida parao investimento do Estado seria talvez um bom pontapé de saída para algum desenvolvimento tecnológico em Portugal. Esta sim, poderia criar a &#8220;semente do <em>hacker&#8221; (como diz o Paulo Querido).</em> Aí sim, talvez pudéssemos ver universidades a desenvolverem, a partir do que já existe, nova tecnologia. Poderíamos deixar de ser macaquinhos de imitação.</p>
<p>Era bom&#8230;</p>

]]></content:encoded>
			<wfw:commentRss>http://blog.palha.org/economics/o-portatil-magalhaes-ou-como-se-fazem-escolhas-enviesadas/feed</wfw:commentRss>
		</item>
		<item>
		<title>A explosão dos comuns?</title>
		<link>http://blog.palha.org/economics/a-explosao-dos-comuns</link>
		<comments>http://blog.palha.org/economics/a-explosao-dos-comuns#comments</comments>
		<pubDate>Fri, 24 Oct 2008 22:50:56 +0000</pubDate>
		<dc:creator>gorkiana</dc:creator>
		
		<category><![CDATA[economics]]></category>

		<category><![CDATA[opensource]]></category>

		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://blog.palha.org/economics/a-explosao-dos-comuns</guid>
		<description><![CDATA[ 	Opensource:
&#8220;is a development method for software that harnesses the power of distributed peer review and transparency of process. The promise of open source is better quality, higher reliability, more flexibility, lower cost, and an end to predatory vendor lock-in.&#8221;
opensource initialive
http://www.opensource.org
Muito se tem defendido a propriedade privada, quer de bens físicos quer intelectuais. Tem sido [...]]]></description>
			<content:encoded><![CDATA[<p> 	Opensource:</p>
<p><em>&#8220;is a development method for software that harnesses the power of distributed peer review and transparency of process. The promise of open source is better quality, higher reliability, more flexibility, lower cost, and an end to predatory vendor lock-in.&#8221;</em></p>
<p align="right">opensource initialive</p>
<p align="right">http://www.opensource.org</p>
<p align="left">Muito se tem defendido a propriedade privada, quer de bens físicos quer intelectuais. Tem sido sempre vista como um pilar imprescindível à sustentação da inovação, do desenvolvimento, do progresso. O grande argumento para a sustentação vem do facto de apenas a propriedade privada assegurar o incentivo necessário a que as pessoas criem algo novo, seja material, seja intelectual.</p>
<p align="left">É interessante ver como, cada vez, surgem projectos, bastante sólidos, que contradizem estas aparentes verdades irrefutáveis.</p>
<p align="left">Não vou entrar no software livre, já tão batido. Encontrei recentemente este <a href="http://www.wired.com/techbiz/startups/magazine/16-11/ff_openmanufacturing?currentPage=all#">artigo</a> sobre uma empresa italiana chamada <a href="http://www.arduino.cc">Arduino</a> que concebeu, desenvolveu e agora contrói e vende uma placa controladora, sim daquelas que, por exemplo, os estudantes usam para fazer projectos de sistemas de aquisição de dados. É um microprocessador, com uma linguagem de programação própria, desenvolvida pela empresa, e uma série de possibilidades de entradas e saídas. Nada de muito inovador, tirando o facto de ser bastante bem recebida pelos utilizadores e, pasmem-se, ser completamente aberta. Sim, todos os esquemáticos estão disponíveis para download e os criadores incentivam vivamente a cópia e a produção em larga escala.</p>
<p align="left"> Curioso, não é?</p>
<p align="left">1- O facto de a empresa estar funcional, emprega pessoas e continua a vender produtos.</p>
<p align="left">2- O facto de os criadores não terem como objectivo único o lucro, mas sim a satisfação das pessoas que utilizam o produto deles e o desenvolvimento do produto.</p>
<p align="left">Um bocado contrário aos valores que nos entram pelas orelhas dentro diariamente.</p>
<p align="left">No artigo é dito relativamente a um dos criadores da placa:</p>
<p align="left"><em>&#8220;describes himself as a left-leaning academic who&#8217;s less interested in making money than in inspiring creativity and having his invention used widely. If other people make copies of it, all the better; it will gain more renown.&#8221;</em></p>
<p align="left"> Felizmente parece que há outros valores pelos quais as pessoas se regem</p>
<p align="left"> -artur palha</p>

]]></content:encoded>
			<wfw:commentRss>http://blog.palha.org/economics/a-explosao-dos-comuns/feed</wfw:commentRss>
		</item>
		<item>
		<title>Documentário: Money as debt</title>
		<link>http://blog.palha.org/economics/documentario-money-as-debt</link>
		<comments>http://blog.palha.org/economics/documentario-money-as-debt#comments</comments>
		<pubDate>Fri, 24 Oct 2008 00:23:47 +0000</pubDate>
		<dc:creator>gorkiana</dc:creator>
		
		<category><![CDATA[economics]]></category>

		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://blog.palha.org/economics/documentario-money-as-debt</guid>
		<description><![CDATA[ 	O meu amigo Guillaume encontrou este vídeo e, numa troca de emails sobre o nosso sistema económico recomendou-me este vídeo. Vi-o hoje, já pela madrugada dentro. Está muito interessante. É espantoso como a questão é tão simples mas não está presente em quase ninguém. A mim esclareceu-me algumas ideias.
Uma coisa interessante que o filme [...]]]></description>
			<content:encoded><![CDATA[<p> 	O meu amigo <a href="http://webtopmania.blogspot.com/" title="webtopmania">Guillaume</a> encontrou este vídeo e, numa troca de emails sobre o nosso sistema económico recomendou-me este vídeo. Vi-o hoje, já pela madrugada dentro. Está muito interessante. É espantoso como a questão é tão simples mas não está presente em quase ninguém. A mim esclareceu-me algumas ideias.</p>
<p>Uma coisa interessante que o filme não foca, ou só muito superficialmente, é o papel do lucro na questão do dinheiro e a sua ligação com o crédito. Sim, porque não concordo que os únicos maus da fita são os banqueiros.</p>
<p>Era interessante fazer um estudo de fluxos de dinheiro e ver que numa empresa os produtos postos no mercado somam, por exemplo 1000€, dos quais 600€ vão para pagar o valor incorporado nos produtos através do trabalho e as matérias primas, os outros 400€ são o chamado lucro. A questão é que os produtos colocados à venda pela empresa e que devem ser consumidos, essencialmente pelos trabalhadores (são a maioria da população) não podem ser totalmente consumidos porque o dinheiro que receberam (600€) é menos que o valor total dos produtos postos em circulação (1000€). Gera-se aqui um problema de sobreprodução.</p>
<p>A questão que coloco é esta: até que ponto a questão do crédito não é uma questão de &#8220;que maus são os banqueiros&#8221; mas sim que peça chave são estes banqueiros para o esquema irracional deste sistema económico?</p>
<p><object type="application/x-shockwave-flash" data="http://video.google.com/googleplayer.swf?docId=-9050474362583451279" width="425" height="350" wmode="transparent"><param name="movie" value="http://video.google.com/googleplayer.swf?docId=-9050474362583451279" /></object></p>

]]></content:encoded>
			<wfw:commentRss>http://blog.palha.org/economics/documentario-money-as-debt/feed</wfw:commentRss>
		</item>
		<item>
		<title>Björk fala sobre como funciona a TV</title>
		<link>http://blog.palha.org/serendipity/bjork-fala-sobre-como-funciona-a-tv</link>
		<comments>http://blog.palha.org/serendipity/bjork-fala-sobre-como-funciona-a-tv#comments</comments>
		<pubDate>Tue, 21 Oct 2008 23:27:21 +0000</pubDate>
		<dc:creator>gorkiana</dc:creator>
		
		<category><![CDATA[Serendipity]]></category>

		<guid isPermaLink="false">http://blog.palha.org/uncategorized/bjork-fala-sobre-como-funciona-a-tv</guid>
		<description><![CDATA[ 	Encontrei este vídeo da Björk, já um pouco antigo, a explicar como funcioana a TV. É engraçado que a Björk está a encarnar a sua personagem &#8220;islandesa que vive na Islândia, um país onde só há gelo e por isso é muito ingénua&#8221;. Só depois de ter visto algumas entrevistas dela é que percebi [...]]]></description>
			<content:encoded><![CDATA[<p> 	Encontrei este vídeo da Björk, já um pouco antigo, a explicar como funcioana a TV. É engraçado que a Björk está a encarnar a sua personagem &#8220;islandesa que vive na Islândia, um país onde só há gelo e por isso é muito ingénua&#8221;. Só depois de ter visto algumas entrevistas dela é que percebi que não é mesmo assim de facto. Esta aparente ingenuidade quase de menina é uma personagem dela.</p>
<p>Voltando ao vídeo. Encontrei-o aqui:  <a href="http://hackaday.com/2008/10/20/bjork-teaches-you-about-electronics/">hackaday</a></p>
<p>Não é propriamente uma explicação do funcionamento dos raios catódicos, é sim uma visão com uma roupagem ingénua, mas muito lúcida de poder alienante da televisão e do cientifismo.</p>
<p>No entanto é estranho e parece que ela acha que esta visão de que a televisão são mentiras de poetas. Eu acho que está a ser ingénua e faz também uma crítica ao cientifismo.</p>
<p><!-- Smart Youtube --><span class="youtube"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/75WFTHpOw8Y&amp;rel=1&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=&amp;fs=1&amp;autoplay="></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/75WFTHpOw8Y&amp;amp;rel=1&amp;amp;color1=d6d6d6&amp;amp;color2=f0f0f0&amp;amp;border=&amp;amp;fs=1&amp;amp;autoplay=" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="355" ></embed><param name="wmode" value="transparent" /></object></span></p>

]]></content:encoded>
			<wfw:commentRss>http://blog.palha.org/serendipity/bjork-fala-sobre-como-funciona-a-tv/feed</wfw:commentRss>
		</item>
		<item>
		<title>Koop, Melweg e Amesterdão</title>
		<link>http://blog.palha.org/concerts/koop-melweg-e-amesterdao</link>
		<comments>http://blog.palha.org/concerts/koop-melweg-e-amesterdao#comments</comments>
		<pubDate>Sun, 09 Mar 2008 22:53:14 +0000</pubDate>
		<dc:creator>gorkiana</dc:creator>
		
		<category><![CDATA[Concerts]]></category>

		<guid isPermaLink="false">http://blog.palha.org/concerts/koop-melweg-e-amesterdao</guid>
		<description><![CDATA[ 	Dia 21 de Fevereiro fui a Amesterdão pela primeira vez. Fui ver um concerto de Koop.
Tive apenas uma visão de relance da cidade, mas foi daqueles relances que deixam a semente da curiosidade cá dentro. Ficam aqui só uns vídeos do concerto.













]]></description>
			<content:encoded><![CDATA[<p> 	Dia 21 de Fevereiro fui a Amesterdão pela primeira vez. Fui ver um concerto de Koop.</p>
<p>Tive apenas uma visão de relance da cidade, mas foi daqueles relances que deixam a semente da curiosidade cá dentro. Ficam aqui só uns vídeos do concerto.</p>
<p><object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/rvUPPEo_kdE"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/rvUPPEo_kdE" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/6ZgE1b7ilgc"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/6ZgE1b7ilgc" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/sa9wJgKTPA8"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/sa9wJgKTPA8" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/j-4rOt7U_kI"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/j-4rOt7U_kI" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>

]]></content:encoded>
			<wfw:commentRss>http://blog.palha.org/concerts/koop-melweg-e-amesterdao/feed</wfw:commentRss>
		</item>
		<item>
		<title>Photos update</title>
		<link>http://blog.palha.org/photos/photos-update</link>
		<comments>http://blog.palha.org/photos/photos-update#comments</comments>
		<pubDate>Sun, 09 Mar 2008 22:44:42 +0000</pubDate>
		<dc:creator>gorkiana</dc:creator>
		
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://blog.palha.org/photos/photos-update</guid>
		<description><![CDATA[ 	Just added the following photo galleries:

Scheveningen by Daniele
Daniele&#8217;s vision of Delft
Koop concert Amsterdam by Daniele
Daniele&#8217;s vision of Rotterdam
Daniele playing with lights and lasers at TUDelft
Dinner at Valerio&#8217;s house, with the crazy japanese guy


]]></description>
			<content:encoded><![CDATA[<p> 	Just added the following photo galleries:</p>
<ol>
<li><a href="http://blog.palha.org/lista-de-galerias/holanda/scheveningen-by-daniele">Scheveningen by Daniele</a></li>
<li><a href="http://blog.palha.org/lista-de-galerias/holanda/danieles-vision-of-delft">Daniele&#8217;s vision of Delft</a></li>
<li><a href="http://blog.palha.org/lista-de-galerias/concerts/koop-concert-melkweg-daniele">Koop concert Amsterdam by Daniele</a></li>
<li><a href="http://blog.palha.org/lista-de-galerias/holanda/danieles-vision-of-rotterdam">Daniele&#8217;s vision of Rotterdam</a></li>
<li><a href="http://blog.palha.org/lista-de-galerias/tudelft/danieles-work-at-tudelf-playing-with-lights">Daniele playing with lights and lasers at TUDelft</a></li>
<li><a href="http://blog.palha.org/lista-de-galerias/parties/valerios-dinner-by-daniele">Dinner at Valerio&#8217;s house, with the crazy japanese guy</a></li>
</ol>

]]></content:encoded>
			<wfw:commentRss>http://blog.palha.org/photos/photos-update/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
