﻿<?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>Waveweb - Criamos Aplicações Web desde 1999 &#187; development</title>
	<atom:link href="http://waveweb2.com/category/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://waveweb2.com</link>
	<description>Criamos Aplicações Web desde 1999</description>
	<lastBuildDate>Tue, 26 Jul 2011 15:21:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Installing git on Ubuntu Hardy</title>
		<link>http://waveweb2.com/installing-git-on-ubuntu-hardy/</link>
		<comments>http://waveweb2.com/installing-git-on-ubuntu-hardy/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 15:32:58 +0000</pubDate>
		<dc:creator>Antonio Rosado</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[slicehost]]></category>
		<category><![CDATA[ubuntu hardy]]></category>

		<guid isPermaLink="false">http://waveweb2.com/?p=55</guid>
		<description><![CDATA[We should first remove git if you have installed it from repositories: sudo apt-get remove git git-svn Create a temporary directory on your local folder where you&#8217;ll download git. mkdir ~/sources cd sources/ Go to http://git.or.cz/ and download their latest stable version. Currently it&#8217;s v1.6.3. wget http://kernel.org/pub/software/scm/git/git-1.6.3.tar.gz Issue the apt-get command to get dependencies, sudo [...]]]></description>
			<content:encoded><![CDATA[<p>We should first remove git if you have installed it from repositories:</p>
<pre>sudo apt-get remove git git-svn</pre>
<p>Create a temporary directory on your local folder where you&#8217;ll download git.</p>
<pre>mkdir ~/sources
cd sources/</pre>
<p>Go to http://git.or.cz/ and download their latest stable version. Currently it&#8217;s v1.6.3.</p>
<pre>wget http://kernel.org/pub/software/scm/git/git-1.6.3.tar.gz</pre>
<p>Issue the apt-get command to get dependencies,</p>
<pre>sudo apt-get build-dep git-core</pre>
<p>extract the git source,</p>
<pre>tar xzvf git-1.6.3.tar.gz</pre>
<p>get inside the extracted git directory,</p>
<pre>cd git-1.6.3
./configure
make
sudo make install</pre>
<p>and to see if git is installed,</p>
<pre>git --version
$ git version 1.6.3</pre>
<p>Mclovin!!!</p>
<p>Hope all works for you, and let me know your comments.</p>
<div id="postmeta_translations"><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://waveweb2.com/installing-git-on-ubuntu-hardy/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to install Subversion 1.5.0 on Ubuntu 8.04</title>
		<link>http://waveweb2.com/how-to-install-subversion-150-on-ubuntu/</link>
		<comments>http://waveweb2.com/how-to-install-subversion-150-on-ubuntu/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 00:54:37 +0000</pubDate>
		<dc:creator>Antonio Rosado</dc:creator>
				<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://waveweb2.com/?p=53</guid>
		<description><![CDATA[Firsts things first and you&#8217;ll need to log on to your server and enter super user mode. you@yourserver:~$ su Change directory to /usr/local/src/ Now, you&#8217;ll need to download the Subversion packages and some dependencies. These packages will depend on the kind of server you have. Enter the commands one after the other. Assuming your server [...]]]></description>
			<content:encoded><![CDATA[<p>Firsts things first and you&#8217;ll need to log on to your server and enter super user mode.</p>
<pre>you@yourserver:~$ su</pre>
<p>Change directory to /usr/local/src/</p>
<p>Now, you&#8217;ll need to download the Subversion packages and some dependencies. These packages will depend on the kind of server you have. Enter the commands one after the other.</p>
<p>Assuming your server is an AMD</p>
<pre>root@yourserver:# wget http://darkstar.ist.utl.pt/ubuntu/archive/pool/main/s/subversion/subversion_1.5.1dfsg1-1ubuntu2_amd64.debroot@yourserver:# wget http://darkstar.ist.utl.pt/ubuntu/archive/pool/main/s/subversion/libsvn1_1.5.0dfsg1-4ubuntu2_amd64.deb
root@yourserver:# wget http://darkstar.ist.utl.pt/ubuntu/archive/pool/main/n/neon27/libneon27-gnutls_0.28.2-2_amd64.deb
root@yourserver:# dpkg -i subversion_1.5.1dfsg1-1ubuntu2_amd64.deb
root@yourserver:# dpkg -i libsvn1_1.5.0dfsg1-4ubuntu2_amd64.deb
root@yourserver:# dpkg -i libneon27-gnutls_0.28.2-2_amd64.deb</pre>
<p>If your server is an i386, follow these steps</p>
<pre>root@yourserver:# wget http://darkstar.ist.utl.pt/ubuntu/archive/pool/main/s/subversion/subversion_1.5.1dfsg1-1ubuntu2_i386.deb
root@yourserver:# wget http://darkstar.ist.utl.pt/ubuntu/archive/pool/main/s/subversion/libsvn1_1.5.0dfsg1-4ubuntu2_i386.deb
root@yourserver:# wget http://darkstar.ist.utl.pt/ubuntu/archive/pool/main/n/neon27/libneon27-gnutls_0.28.2-2_i386.deb
root@yourserver:# dpkg -i subversion_1.5.1dfsg1-1ubuntu2_i386.deb
root@yourserver:# dpkg -i libsvn1_1.5.0dfsg1-4ubuntu2_i386.deb
root@yourserver:# dpkg -i libneon27-gnutls_0.28.2-2_i386.deb</pre>
<p>Afterward, enter the final command:</p>
<pre>root@yourserver:~# apt-get -f install</pre>
<p>Now we need to find out if we got it right.</p>
<pre>you@yourserver:~$ svn --version --quiet
1.5.0</pre>
<p>That&#8217;s it. It&#8217;s done.</p>
<p>For more information on Subversion you can check out the book <a title="svnbook" href="http://svnbook.red-bean.com/">here</a>. It&#8217;s free too.</p>
<p>I would really love to hear your thoughts.</p>
<p>Thank you!</p>
<div id="postmeta_translations"><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://waveweb2.com/how-to-install-subversion-150-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails Training</title>
		<link>http://waveweb2.com/ruby-on-rails-training/</link>
		<comments>http://waveweb2.com/ruby-on-rails-training/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 11:24:34 +0000</pubDate>
		<dc:creator>Antonio Rosado</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://waveweb2.com/ruby-on-rails-training</guid>
		<description><![CDATA[A WeBreakStuff vai dar uma formação em Ruby on Rails que decorrerá nos próximos dias 19, 20 e 21 de Maio em Coimbra e está dividida em dois módulos: Ruby e Rails: as bases (1º e 2º dias) e tópicos avançados (3º dia). Estes dois módulos podem ser adquiridos separadamente, embora o &#8220;best value&#8221; esteja [...]]]></description>
			<content:encoded><![CDATA[<p>A <a title="webreakstuff.com" href="http://webreakstuff.com/">WeBreakStuff</a> vai dar uma formação em Ruby on Rails que decorrerá nos próximos dias 19, 20 e 21 de Maio em Coimbra e está dividida em dois módulos: Ruby e Rails: as bases (1º e 2º dias) e tópicos avançados (3º dia).</p>
<p>Estes dois módulos podem ser adquiridos separadamente, embora o &#8220;best value&#8221; esteja em realizar o curso na totalidade.</p>
<p>A formação já contempla a nova versão desta framework e foram adicionados conteúdos que reflectem os mais recentes avanços no desenvolvimento, configuração e deployment de aplicações web usando o Rails.</p>
<p>Vá a <a title="training.webreakstuff.com" href="http://training.webreakstuff.com">training.webreakstuff.com</a> onde podem ver mais detalhes deste evento.</p>
<p>PS: This is no bullshit training. Esta formação foi pensada para ser &#8220;hands on&#8221;, e para além da vasta experiência que estes senhores têm em planeamento, desenvolvimento e escalabilidade de aplicações Ruby on Rails com clientes como o Totspot, PT Inovação, Techcrunch, MTV ou Bell Canada, estão assegurados o contacto humano, informal e divertido.</p>
<div id="postmeta_translations"><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://waveweb2.com/ruby-on-rails-training/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

