<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
  <title>Notas de Rua - Home</title>
  <id>tag:tramos.railsplayground.net,2009:mephisto/</id>
  <generator uri="http://mephistoblog.com" version="0.7.3">Mephisto Noh-Varr</generator>
  <link href="http://tramos.railsplayground.net/feed/atom.xml" rel="self" type="application/atom+xml"/>
  <link href="http://tramos.railsplayground.net/" rel="alternate" type="text/html"/>
  <updated>2009-03-04T01:44:00Z</updated>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>admin</name>
    </author>
    <id>tag:tramos.railsplayground.net,2009-03-04:1726</id>
    <published>2009-03-04T00:54:00Z</published>
    <updated>2009-03-04T01:44:00Z</updated>
    <category term="svn"/>
    <link href="http://tramos.railsplayground.net/2009/3/4/instalando-servidor-svn-no-linux" rel="alternate" type="text/html"/>
    <title>Instalando servidor svn no linux</title>
<content type="html">
            &lt;h3&gt;Instale os pacotes&lt;/h3&gt;
$ sudo apt-get install subversion libapache2-svn libapache-mod-dav apache2

&lt;h3&gt;Crie um host virtual&lt;/h3&gt;
$ sudo cp /etc/apache2/sites-available/default /etc/apache2/sites-available/NOMEDOSITE

&lt;h3&gt;Altere o arquivo /etc/apache2/sites-available/NOMEDOSITE&lt;/h3&gt;

&lt;pre class=&quot;codigo&quot;&gt;
&amp;lt;location /&gt;
  DAV svn

  # Caminho do seu repositorio
  SVNPath /home/hypertraining/svn

  # Caso tenha varios repositórios defina essa variável
  #SVNParentPath (/home/hypertraining/svn)

  AuthType Basic
  AuthName &quot;Subversion Repository&quot;

  # Arquivo com usuario e senhas
  AuthUserFile /etc/apache2/dav_svn.passwd

  # Arquivo com autorizacao de pastas
  AuthzSVNAccessFile /etc/apache2/dav_svn.authz

  #&amp;lt;limitexcept&gt;
    Require valid-user
  #&amp;lt;/limitexcept&gt; 

&amp;lt;/location&gt;
&lt;/pre&gt;

&lt;h3&gt;Habilitar o site e reinicie o apache&lt;/h3&gt;
$ sudo a2ensite NOMEDOSITE&lt;br /&gt;
$ sudo /etc/init.d/apache2 restart&lt;br /&gt;
Obs: caso ocorra algum problema relacionado ao nome do servidor defina a variável &quot;ServerName NOMEDOSERVIDOR&quot; no arquivo /etc/apache2/apache2.conf

&lt;h3&gt;Crie o novo repositório e conceda as permissões&lt;/h3&gt;
sudo mkdir /var/svn&lt;br /&gt;
sudo svnadmin create /var/svn/REPOSITORIO&lt;br /&gt;
sudo chown -R www-data:www-data /var/svn/REPOSITORIO&lt;br /&gt;
sudo chmod -R g+ws /var/svn/REPOSITORIO&lt;br /&gt;

&lt;h3&gt;Crie o arquivo de configuração para cadastro de usuários e senhas&lt;/h3&gt;
$ sudo htpasswd2 -c -m /etc/apache2/dav_svn.passwd USUARIO&lt;br /&gt;

&lt;h3&gt;Criando novo usuário&lt;/h3&gt;
$ sudo htpasswd /etc/apache2/dav_svn.passwd novo.usuario

&lt;h3&gt;Definindo permissões&lt;/h3&gt;
[groups]&lt;br /&gt;
professor = tiago.ramos&lt;br /&gt;
&lt;br /&gt;
[svn:/]&lt;br /&gt;
* = r&lt;br /&gt;
&lt;br /&gt;
[svn:/professor]&lt;br /&gt;
* =&lt;br /&gt;
@professor = rw&lt;br /&gt;
&lt;br /&gt;
[svn:/aluno]&lt;br /&gt;
* = rw&lt;br /&gt;
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-09-14:93</id>
    <published>2008-09-14T23:31:00Z</published>
    <updated>2008-09-14T23:37:51Z</updated>
    <category term="Banco de Dados"/>
    <link href="http://tramos.railsplayground.net/2008/9/14/importando-dump-no-oracle" rel="alternate" type="text/html"/>
    <title>Importando dump no oracle</title>
<content type="html">
            &lt;h3&gt;Defina as variáveis ORACLE_HOME e ORACLE_SID&lt;/h3&gt;
&lt;br /&gt;[root@localhost tramos]#ORACLE_HOME=/usr/lib/oracle/.../server; export ORACLE_HOME
&lt;br /&gt;[root@localhost tramos]#ORACLE_SID=XE; export ORACLE_SID
&lt;h3&gt;Vá para o diretório bin do ORACLE_HOME e execute&lt;/h3&gt;
&lt;br /&gt;[root@localhost tramos]#./imp usuario/senha file=&quot;/usuario/home/arquivo.dmp&quot; full=y
&lt;br /&gt;
&lt;h3&gt;Existem diferentes parametros para fazer importações, como por exemplo:&lt;/h3&gt;
&lt;br /&gt;[root@localhost tramos]#./imp usuario/senha file=&quot;/usuario/home/arquivo.dmp&quot; fromUser=&quot;?&quot;
&lt;br /&gt;[root@localhost tramos]#./imp usuario/senha file=&quot;/usuario/home/arquivo.dmp&quot; fromUser=&quot;?&quot; tables=&quot;TAB1,TAB2&quot;
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-09-14:92</id>
    <published>2008-09-14T23:22:00Z</published>
    <updated>2008-09-14T23:31:11Z</updated>
    <category term="Banco de Dados"/>
    <link href="http://tramos.railsplayground.net/2008/9/14/instalando-oracle-xe-no-linux" rel="alternate" type="text/html"/>
    <title>Instalando Oracle XE no Linux</title>
<content type="html">
            &lt;h3&gt;Com permissão de root&lt;/h3&gt;
&lt;br /&gt;[tramos@localhost ~]$ su
&lt;br /&gt;Senha:
&lt;br /&gt;
&lt;br /&gt;&lt;h3&gt;Instale ou atualize o pacote bc-1.06-33.fc9.i386
&lt;br /&gt;[root@localhost tramos]# yum install bc
&lt;br /&gt;
&lt;br /&gt;&lt;h3&gt;Instale o oracle&lt;/h3&gt;
&lt;br /&gt;[root@localhost tramos]# rpm -ivh http://download-llnw.oracle.com/otn/linux/oracle10g/xe/10201/oracle-xe-10.2.0.1-1.0.i386.rpm
&lt;br /&gt;Obtendo http://download-llnw.oracle.com/otn/linux/oracle10g/xe/10201/oracle-xe-10.2.0.1-1.0.i386.rpm
&lt;br /&gt; 
&lt;br /&gt;Preparando...               ########################################### [100%]
&lt;br /&gt;   1:oracle-xe              ########################################### [100%]
&lt;br /&gt;Executing Post-install steps...
&lt;br /&gt;
&lt;br /&gt;You must run '/etc/init.d/oracle-xe configure' as the root user to
&lt;br /&gt;configure the database.
&lt;br /&gt;
&lt;br /&gt;&lt;h3&gt;Em seguida configure o oracle&lt;/h3&gt;
&lt;br /&gt;[root@localhost tramos]# /etc/init.d/oracle-xe configure
&lt;br /&gt;
&lt;br /&gt;Oracle Database 10g Express Edition Configuration
&lt;br /&gt;------------------------------------------------
&lt;br /&gt;This will configure on-boot properties of Oracle Database 10g Express
&lt;br /&gt;Edition.  The following questions will determine whether the database should
&lt;br /&gt;be starting upon system boot, the ports it will use, and the passwords that
&lt;br /&gt;will be used for database accounts.  Press &amp;lt;enter&gt; to accept the defaults.
&lt;br /&gt;Ctrl-C will abort.
&lt;br /&gt;
&lt;br /&gt;Specify the HTTP port that will be used for Oracle Application Express [8080]:8087
&lt;br /&gt;
&lt;br /&gt;Specify a port that will be used for the database listener [1521]:1521
&lt;br /&gt;
&lt;br /&gt;Specify a password to be used for database accounts.  Note that the same
&lt;br /&gt;password will be used for SYS and SYSTEM.  Oracle recommends the use of
&lt;br /&gt;different passwords for each database account.  This can be done after
&lt;br /&gt;initial configuration:
&lt;br /&gt;Confirm the password:
&lt;br /&gt;
&lt;br /&gt;Do you want Oracle Database 10g Express Edition to be started on boot (y/n) [y]:y
&lt;br /&gt;
&lt;br /&gt;Starting Oracle Net Listener...Done
&lt;br /&gt;Configuring Database...Done
&lt;br /&gt;Starting Oracle Database 10g Express Edition Instance...Done
&lt;br /&gt;Installation Completed Successfully.
&lt;br /&gt;To access the Database Home Page go to &quot;http://127.0.0.1:8087/apex&quot;
&lt;br /&gt;
&lt;br /&gt;&lt;h3&gt;Em seguida acesse o &lt;a href=&quot;http://127.0.0.1:8087/apex&quot;&gt;link&lt;/a&gt; indicado com o usuário system ou sys e com a senha definidos no monento de configuração&lt;/h3&gt;
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-09-14:91</id>
    <published>2008-09-14T23:12:00Z</published>
    <updated>2008-09-14T23:20:30Z</updated>
    <category term="VMWare"/>
    <link href="http://tramos.railsplayground.net/2008/9/14/altera-es-em-discos-virtuais-utilizando-vmware" rel="alternate" type="text/html"/>
    <title>Altera&#231;&#245;es em Discos Virtuais Utilizando VMWare</title>
<content type="html">
            &lt;h3&gt;Convertendo Disco Virtual&lt;/h3&gt;

&lt;p&gt;vmware-vdiskmanager -r dicoAtual.vmdk -t 0 novoDisco.vmdk
&lt;br /&gt;As opções para o atributo t são as seguintes:
&lt;br /&gt;0 – create a growable virtual disk contained in a single file (monolithic sparse).
&lt;br /&gt;1 – create a growable virtual disk split into 2GB files (split sparse).
&lt;br /&gt;2 – create a preallocated virtual disk contained in a single file (monolithic flat).
&lt;br /&gt;3 – create a preallocated virtual disk split into 2GB files (split flat).
&lt;br /&gt;4 – create a preallocated virtual disk compatible with ESX Server (VMFS flat).
&lt;br /&gt;5 – create a compressed disk optimized for streaming.&lt;/p&gt;

&lt;h3&gt;Aumentando tamanho do disco&lt;/h3&gt;

&lt;p&gt;vmware-vdiskmanager -x 80GB mydisk.vmdk
&lt;br /&gt;Após alterar o tamanho do disco é necessário formatar a nova partição.
&lt;br /&gt;Utilize o &lt;a href=&quot;http://gparted.sourceforge.net/&quot;&gt;Gparted&lt;/a&gt; para realizar a operação.
&lt;br /&gt;# yum install gparted
&lt;br /&gt;ou
&lt;br /&gt;#apt-get install gparted&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-06-11:86</id>
    <published>2008-06-11T15:24:00Z</published>
    <updated>2008-06-11T15:35:31Z</updated>
    <link href="http://tramos.railsplayground.net/2008/6/11/2-encontro-do-gildf" rel="alternate" type="text/html"/>
    <title>2&#186; Encontro do &#193;gilDF</title>
<content type="html">
            Vamos entrar em ação novamente!
&lt;br /&gt;
Ajude confirmamos o dia e o melhor horário do nosso próximo encontro
&lt;br /&gt;
&amp;lt;iframe src=&quot;http://polls.blogflux.com/poll.php?poll=27046&amp;amp;width=200&amp;amp;height=285&amp;amp;fontface=Verdana&amp;amp;padding=10&amp;amp;textcolor=%23000&amp;amp;bgcolor=%23ecf9ff&amp;amp;doublespace=0&amp;amp;borderwidth=1&amp;amp;linkmap=1&amp;amp;bordercolor=%23b0cfe3&amp;amp;x=192&amp;amp;y=62&quot; height=&quot;307&quot; width=&quot;222&quot;&gt;&lt;a href=&quot;http://polls.blogflux.com/poll-27046.html&quot;&gt;Take the poll&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://polls.blogflux.com/&quot;&gt;Free Poll by Blog Flux&lt;/a&gt;&amp;lt;/iframe&gt;
&lt;br /&gt;
&amp;lt;iframe src=&quot;http://polls.blogflux.com/poll.php?poll=27047&amp;amp;width=200&amp;amp;height=285&amp;amp;fontface=Verdana&amp;amp;padding=10&amp;amp;textcolor=%23000&amp;amp;bgcolor=%23fff&amp;amp;doublespace=0&amp;amp;borderwidth=1&amp;amp;linkmap=1&amp;amp;bordercolor=%23ccc&amp;amp;x=141&amp;amp;y=95&quot; height=&quot;307&quot; width=&quot;222&quot;&gt;&lt;a href=&quot;http://polls.blogflux.com/poll-27047.html&quot;&gt;Take the poll&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://polls.blogflux.com/&quot;&gt;Free Poll by Blog Flux&lt;/a&gt;&amp;lt;/iframe&gt;
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-06-09:83</id>
    <published>2008-06-09T12:40:00Z</published>
    <updated>2008-06-09T12:40:26Z</updated>
    <category term="Aulas de Java"/>
    <category term="Spring"/>
    <category term="Struts"/>
    <link href="http://tramos.railsplayground.net/2008/6/9/curso-struts-2" rel="alternate" type="text/html"/>
    <title>Curso Struts 2</title>
<content type="html">
            &lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/5/24/Plano_de_Curso_-_Struts2.pdf&quot;&gt;Ementa do Curso&lt;/a&gt;
&lt;br /&gt;
&lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/5/17/Padrao_20Projeto_20Command.pdf&quot;&gt;Padrão Command - Apostila&lt;/a&gt;
&lt;br /&gt;
&lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/5/24/Struts2_-_Aula_01.pdf&quot;&gt;Aula 01&lt;/a&gt;
&lt;br /&gt;
&lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/5/24/Struts2_-_Aula_02.pdf&quot;&gt;Aula 02&lt;/a&gt;
&lt;br /&gt;
&lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/5/24/springonline_final_050108.pdf&quot;&gt;Sobre Spring&lt;/a&gt;
&lt;br /&gt;
&lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/6/4/Struts2_-_Aula_03.pdf&quot;&gt;Aula 03&lt;/a&gt;
&lt;br /&gt;
&lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/6/9/Struts2_-_Aula_04.pdf&quot;&gt;Aula 04&lt;/a&gt;
&lt;br /&gt;
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-06-04:84</id>
    <published>2008-06-04T03:20:00Z</published>
    <updated>2008-06-04T03:22:17Z</updated>
    <category term="Aulas de Java"/>
    <category term="Eventos"/>
    <link href="http://tramos.railsplayground.net/2008/6/4/palestra-desvendando-os-segredos-da-programa-o-java" rel="alternate" type="text/html"/>
    <title>Palestra - Desvendando os Segredos da Programa&#231;&#227;o Java</title>
<content type="html">
            Palestra apresentada na Semana Acadêmica de Informática na &lt;a href=&quot;http://www.michelangelo.edu.br/&quot;&gt;Faculdade Michelangelo&lt;/a&gt;
em 03 de Julho de 2008
&lt;br /&gt;
&lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/6/4/Desvendando_os_Mistérios_da_Programação_Java.pps&quot;&gt;Apresentação PPT&lt;/a&gt;
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-05-17:81</id>
    <published>2008-05-17T01:57:00Z</published>
    <updated>2008-05-17T01:58:43Z</updated>
    <category term="Struts"/>
    <link href="http://tramos.railsplayground.net/2008/5/17/curso-struts-1-x" rel="alternate" type="text/html"/>
    <title>Curso Struts 1.x</title>
<content type="html">
            &lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/5/17/caelum-java-web-fj21.pdf&quot;&gt;Apostila da Caelum&lt;/a&gt;
&lt;br /&gt;
&lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/5/17/Struts_-_Aula_01.pdf&quot;&gt;Struts 1.x - Tutorial de Configuração&lt;/a&gt;
&lt;br /&gt;
&lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/5/17/Struts_-_Aula_01.pdf&quot;&gt;Apostila Struts 1.x - Parte I&lt;/a&gt;
&lt;br /&gt;
&lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/5/17/Struts_-_Aula_01.pdf&quot;&gt;Apostila Struts 1.x - Parte II&lt;/a&gt;
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-05-17:79</id>
    <published>2008-05-17T00:49:00Z</published>
    <updated>2008-05-17T00:50:37Z</updated>
    <category term="Aulas de Java"/>
    <link href="http://tramos.railsplayground.net/2008/5/17/apostila-de-estudo-sjcp" rel="alternate" type="text/html"/>
    <title>Apostila de estudo SJCP 1.5</title>
<content type="html">
            Apostila de estudo SJCP 1.5
&lt;br /&gt;
&lt;a href=&quot;http://tramos.railsplayground.net/assets/2008/5/17/SCJP.pdf&quot;&gt;Download Aqui&lt;/a&gt;
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-03-17:73</id>
    <published>2008-03-17T21:20:00Z</published>
    <updated>2008-03-26T21:36:30Z</updated>
    <category term="Aulas de Java"/>
    <link href="http://tramos.railsplayground.net/2008/3/17/aula-de-java" rel="alternate" type="text/html"/>
    <title>Aula de Java</title>
<content type="html">
            &amp;lt;embed src=&quot;http://www.thinkfreedocs.com/profiles/viewMyDocs.swf?usn=315756&amp;amp;v=1&amp;amp;server=www&quot; height=&quot;300&quot; width=&quot;500&quot; /&gt;
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-03-17:72</id>
    <published>2008-03-17T11:37:00Z</published>
    <updated>2008-03-17T12:01:52Z</updated>
    <category term="Eventos"/>
    <category term="RubyOnRails"/>
    <link href="http://tramos.railsplayground.net/2008/3/17/primeiro-encontro-de-rubyonrails-em-bras-lia" rel="alternate" type="text/html"/>
    <title>Primeiro Encontro de RubyOnRails em Bras&#237;lia</title>
<content type="html">
            &lt;img src=&quot;http://asset0.rubyonrails.pro.br/images/rails.png&quot; height=&quot;122&quot; width=&quot;92&quot; /&gt;Não foi uma &lt;b&gt;sexta-feira 13&lt;/b&gt; mas foi dia 14/03! Tivemos por volta de umas 12 pessoas e a conversa foi bem proveitosa. Falamos sobre como está a abertura das empresas onde estamos trabalhando, sobre projetos pessoais, ides, jruby, o objetivo/alvo de aplicações em RoR, oportunidades externas de emprego, e aquelas perguntas que ninguém cansa de perguntar: &quot;E quantos usuários posso ter simultaneamente? hehehehe&quot;
&lt;br /&gt;
&lt;br /&gt;
Deu para notar que a coisa ainda anda muito tímida aqui em Brasília, poucos são os que tem ousadia de romper o mundo coorporativo de Java. Apostar em tecnologia nova não é tão simples e fica a expectativa de que a iniciativa privada quebre o paradigma e prove mais uma vez que a inovação tem um preço e pode dar novos rumos também.
&lt;br /&gt;
&lt;br /&gt;
Abraço a todos que participaram e se envolveram!
&lt;br /&gt;
&lt;br /&gt;
Agradecemos também a cooperação da Search Tecnologia em ceder o espaço para o encontro.
&lt;br /&gt;
&lt;br /&gt;
Em breve teremos um novo encontro sobre o apoio da UNIP! Aguardem notícias!
&lt;br /&gt;
&lt;br /&gt;
Vou ficar devendo as fotos! A conversa tava tão boa que ninguém lembrou... hehehe
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-03-17:74</id>
    <published>2008-03-17T00:36:00Z</published>
    <updated>2008-03-26T21:38:13Z</updated>
    <link href="http://tramos.railsplayground.net/2008/3/17/investidores-recuam-em-rela-o-a-web-2-0" rel="alternate" type="text/html"/>
    <title>Investidores recuam em rela&#231;&#227;o a web 2.0</title>
<content type="html">
            Terça-feira, 18 de março de 2008 - 16h35 
SAN FRANCISCO - O fluxo de capital para sites de web 2.0 está começando a se reduzir. 
&lt;br /&gt;&lt;br /&gt;
Os investimentos em empresas de Web 2.0 -- que incluem grupos como Facebook, hi5 e RockYou!, uma produtora de software de apresentações para redes sociais e outros sites -- cresceu 25 por cento em 2007, ante o ano anterior, de 143 para 178 transações. 
&lt;br /&gt;&lt;br /&gt;
Em cada um dos quatro anos anteriores, o investimento do setor de capital de empreendimentos nessas empresas havia duplicado, de acordo com o relatório Dow Jones VentureSource. 
&lt;br /&gt;&lt;br /&gt;
Mas embora o capital para empreendimentos esteja em desaceleração, as redes sociais e empresas semelhantes estão recebendo mais atenção do setor estabelecido de tecnologia e mídia, bem como dos investidores institucionais. 
&lt;br /&gt;&lt;br /&gt;
As empresas iniciantes, especialmente as de tecnologia, dependem do capital para empreendimentos em seus períodos iniciais. Os grupos de capital para empreendimentos apostam no futuro das empresas e esperam se beneficiar ao vender suas participações nas companhias iniciantes a empresas ou investidores estabelecidos, ou quando o capital dos novos grupos for aberto em bolsa. 
&lt;br /&gt;&lt;br /&gt;
A divisão America Online de Internet, da Time Warner, por exemplo, recentemente adquiriu o Bebo, um dos serviços britânicos de redes sociais mais populares, por US$ 850 milhões. 
&lt;br /&gt;&lt;br /&gt;
No ano passado, o setor de capital para empreendimentos e outros investidores ofereceram 1,34 bilhão de dólares em capital a empresas iniciantes de Web 2.0, de acordo com o relatório. Mas 22 por cento desse total, ou 300 milhões de dólares, foram investidos no site de redes sociais Facebook. 
&lt;br /&gt;&lt;br /&gt;
O grupo tem 67 milhões de usuários ativos e recebeu 240 milhões de dólares da gigante do software Microsoft, em 2007, além de levantar outros 60 milhões de dólares junto a investidores individuais em todo o mundo.
&lt;br /&gt;&lt;br /&gt;
Reuters
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-03-07:64</id>
    <published>2008-03-07T20:12:00Z</published>
    <updated>2008-03-07T20:20:07Z</updated>
    <category term="Eventos"/>
    <category term="RubyOnRails"/>
    <link href="http://tramos.railsplayground.net/2008/3/7/tudo-confirmado-encontro-de-ror-em-bsb" rel="alternate" type="text/html"/>
    <title>Tudo confirmado!!! Encontro de RoR em BSB!!!</title>
<content type="html">
            &lt;div&gt;
&amp;lt;iframe title=&quot;HTML Form&quot; src=&quot;http://notasderua.wufoo.com/embed/encontro-de-ror/&quot; height=&quot;587&quot;&gt;&lt;a href=&quot;http://notasderua.wufoo.com/forms/encontro-de-ror/&quot; title=&quot;Encontro de RoR&quot;&gt;Fill out my Wufoo form!&lt;/a&gt;&amp;lt;/iframe&gt;
&lt;small&gt;&lt;a href=&quot;http://wufoo.com/&quot;&gt;Powered by Wufoo&lt;/a&gt;&lt;/small&gt;
&lt;/div&gt;
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-02-28:59</id>
    <published>2008-02-28T01:41:00Z</published>
    <updated>2008-02-28T02:34:47Z</updated>
    <category term="Eventos"/>
    <category term="RubyOnRails"/>
    <link href="http://tramos.railsplayground.net/2008/2/28/encontro-de-ror" rel="alternate" type="text/html"/>
    <title>Encontro de RubyOnRails!</title>
<content type="html">
            &lt;img src=&quot;http://asset0.rubyonrails.pro.br/images/rails.png&quot; height=&quot;122&quot; width=&quot;92&quot; /&gt;Acredito que alguns acompanharam o encontro da comunidade ÁgilDF que ocorreu mês passado. Podemos fazer um encontro de RoR no estilo que foi proposto para o ÁgilDF (simples e com um certo caos de início).
&lt;br /&gt;&lt;br /&gt;
A primeira reunião seria para conhecer a galera que esta se envolvendo com RoR, apresentarmos alguns projetos pessoais e se alguém tiver algum assunto em específico, tipo Rails 2.0. Podemos abrir um tempo para alguém falar de algo mais centrado.
&lt;br /&gt;&lt;br /&gt;
Estou postando sugestões de dias para o encontro, e vou verificar também a possibilidade de realizarmos o evento na Search Tecnologia ou na UNIP.
&lt;br /&gt;&lt;br /&gt;
Divulguem por ai e compartilhem as idéias aí no blog.
&lt;br /&gt;&lt;br /&gt;
&amp;lt;iframe src=&quot;http://polls.blogflux.com/poll.php?poll=21917&amp;amp;width=200&amp;amp;fontsize=11&amp;amp;height=200&amp;amp;fontface=Verdana&amp;amp;padding=10&amp;amp;textcolor=%23000000&amp;amp;bgcolor=%23FFFFFF&amp;amp;doublespace=0&amp;amp;borderwidth=1&amp;amp;linkmap=1&amp;amp;bordercolor=%23cccccc&quot; height=&quot;222&quot; width=&quot;222&quot;&gt;&lt;a href=&quot;http://polls.blogflux.com/poll-21917.html&quot;&gt;Take the poll&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://polls.blogflux.com/&quot;&gt;Free Poll by Blog Flux&lt;/a&gt;&amp;lt;/iframe&gt;
          </content>  </entry>
  <entry xml:base="http://tramos.railsplayground.net/">
    <author>
      <name>tramos</name>
    </author>
    <id>tag:tramos.railsplayground.net,2008-02-25:56</id>
    <published>2008-02-25T21:04:00Z</published>
    <updated>2008-02-26T11:25:44Z</updated>
    <category term="Carreira TI"/>
    <link href="http://tramos.railsplayground.net/2008/2/25/mct-far-concurso-para-338-vagas" rel="alternate" type="text/html"/>
    <title>MCT far&#225; concurso para 338 vagas</title>
<content type="html">
            &lt;a href=&quot;http://info.abril.com.br/aberto/infonews/022008/25022008-19.shl&quot; title=&quot;INFO Online&quot;&gt;MCT fará concurso para 338 vagas&lt;/a&gt;, Silvia Balieiro, da INFO - SÃO PAULO - Um concurso público selecionará profissionais com ensino médio e superior. [...]
          </content>  </entry>
</feed>
