<?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>La Miscela</title>
	<atom:link href="http://www.lamiscela.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lamiscela.net</link>
	<description>Everything joined and mixed</description>
	<lastBuildDate>Thu, 24 Dec 2009 20:06:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Windows Live Brazil custom menu</title>
		<link>http://www.lamiscela.net/2009/12/12/windows-live-brazil-custom-menu/</link>
		<comments>http://www.lamiscela.net/2009/12/12/windows-live-brazil-custom-menu/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 13:14:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.lamiscela.net/?p=409</guid>
		<description><![CDATA[Hi people, to some weeks ago the Gringo released your most recent work to Microsoft Brazil a beautiful and accessible website for Windows Live product. Gringo is most known for their amazing works using Flash technology, but this one was a big surprise for those that follow your work.
I liked many things on this website, but [...]]]></description>
			<content:encoded><![CDATA[<p>Hi people, to some weeks ago the <a href="http://www.gringo.nu">Gringo</a> released your most recent work to <a href="http://www.microsoft.com.br" target="_blank">Microsoft Brazil</a> a beautiful and accessible website for <a href="http://www.windowslive.com.br" target="_blank">Windows Live</a> product. <a href="http://www.gringo.nu/">Gringo</a> is most known for their amazing works using Flash technology, but this one was a big surprise for those that follow your work.</p>
<p>I liked many things on this website, but the &#8220;Todos Produtos&#8221; menu was who took more my attention. Inspired on it I tried build a menu like it using just <a href="http://www.jquery.com" target="_blank">jQuery</a>, html and css.<span id="more-409"></span></p>
<p>The secret is on css and html, it are who do go give all structure for jQuery work, in addition of the jQuery, i used some others plugins to achieve the result more close of original. They are <a href="http://www.jqueryui.com/" target="_blank">jQuery UI</a> and <a href="http://gsgd.co.uk/sandbox/jquery/easing/" target="_blank">jQuery Easing</a>.</p>
<p>This&#8217;s all jQuery code necessary:</p>
<pre class="brush: plain; wrap-lines: false; toolbar: true;">
$(function() {

$("#geral dl dt").addClass('open').toggle(
	function() {
		$("#geral dl").animate( { height: 160 }, { duration: 500, easing: 'easeOutQuint' } );
		$("#geral dl dt").removeClass('open').addClass('close');
	},
	function() {
		$("#geral dl").animate( { height: 34 }, { duration: 500, easing: 'easeOutQuint' } );
		$("#geral dl dt").removeClass('close').addClass('open');
	}
);

$("#geral dl").hover(null, function() {
	$(this).animate( { opacity: 1 }, 300).animate( { height: 34 }, { duration: 500, easing: 'easeOutQuint' } );
	$("#geral dl dt").removeClass('close').addClass('open');
});

$("#geral dl dd").hover(onOver, onOut);

});

function onOver () {
	$(this).animate( { backgroundColor: "#00aeef" }, 200 )
	$(this).children().animate( { color: "#ffffff", left: '5px' }, 200);
	$(this).next().animate( { opacity: 1, left: '189px' }, 200 );
}

function onOut() {
	$(this).animate( { backgroundColor: "#e7e7e7" }, 200 )
	$(this).children().animate( { color: "#333333", left: '10px' }, 200);
	$(this).next().animate( { opacity: 0, left: '-100px' }, 50 );
}
</pre>
<p>If you&#8217;re curious of how the rest of the code should be for get this menu, does download of the <a href="http://www.lamiscela.net/lab/wlive_menulike.zip" target="_self">source code</a> and look with your own eyes.</p>
<p>You still can see it in action <a href="http://www.lamiscela.net/lab/wlive_menulike/" target="_blank">here</a>. ( Tested on Safari 4.04 Firefox 3.5.5 and Camino 2.0.1  for mac )</p>
<p>Bye.</p>
<p>Note: This source code haven&#8217;t intention of support all browsers, it&#8217;s just a experiment, if you want use this code feel yourself free to download, improve it and use him. Any support not will be provide.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lamiscela.net/2009/12/12/windows-live-brazil-custom-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatic Rails Development Setup with Ubuntu 9.10 Karmic Koala</title>
		<link>http://www.lamiscela.net/2009/11/08/automatic-rails-development-setup-with-ubuntu-9-10-karmic-koala/</link>
		<comments>http://www.lamiscela.net/2009/11/08/automatic-rails-development-setup-with-ubuntu-9-10-karmic-koala/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 00:07:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://www.lamiscela.net/?p=402</guid>
		<description><![CDATA[Hi people, for those than don&#8217;t follow me on Twitter and not know yet, I wrote a script to automatize the setup of a development machine for work with Rails on Ubuntu 9.10 Karmic Koala. Check it out in my Github account, fork me or just let me know what you think about him.

[UPDATE]
* Now [...]]]></description>
			<content:encoded><![CDATA[<p>Hi people, for those than don&#8217;t follow me on <a href="http://www.twitter.com/juniovitorino" target="_blank">Twitter</a> and not know yet, I wrote a <a href="http://github.com/juniovitorino/Rails-Env-Automatic-Install" target="_blank">script</a> to automatize the setup of a development machine for work with Rails on Ubuntu 9.10 Karmic Koala. Check it out in my Github <a href="http://github.com/juniovitorino/" target="_blank">account</a>, fork me or just let me know what you think about him.</p>
<p><span id="more-402"></span></p>
<p>[UPDATE]</p>
<p>* Now the script accepts others versions of Ruby and Git for perform download, just enter with the path for the tar.gz package that the script will download, compile and install everything for you.</p>
<p>If you wish the script still can keep the default installation of Ruby 1.8.7 P72 and Git 1.2.5.2.</p>
<p>* Gmate now is installed from ppa sources. More info in http://github.com/lexrupy/gmate</p>
<p>* Removed hardcode in the installation of Passenger. Now if you wants enable Passenger in Apache you can just enter with the version installed</p>
<p>and the script does the dirty job for you, thus the Apache not crash in your restarting.</p>
<p>* Individual files to install separately some steps of this script.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lamiscela.net/2009/11/08/automatic-rails-development-setup-with-ubuntu-9-10-karmic-koala/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Ubuntu + FreeTDS = SQL Server 2005 Conectado</title>
		<link>http://www.lamiscela.net/2009/07/13/ubuntu-freetds-sql-server-2005-conectado/</link>
		<comments>http://www.lamiscela.net/2009/07/13/ubuntu-freetds-sql-server-2005-conectado/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 22:46:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FreeTDS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Português]]></category>
		<category><![CDATA[SQLServer]]></category>

		<guid isPermaLink="false">http://www.lamiscela.net/?p=396</guid>
		<description><![CDATA[Olá pessoal!
Na ultima sexta-feira tive o imenso prazer de voltar a brincar na plataforma do pinguim. (Para quem não sabe fui um feliz sysadmin rodando Debian nos servidores e Ubuntu nas estações por 4 anos, depois de 6 meses usando Win Server nos servidores e WinXP nas estações pedi demição).
Tarefa: Fazer com que uma aplicação [...]]]></description>
			<content:encoded><![CDATA[<p>Olá pessoal!</p>
<p>Na ultima sexta-feira tive o imenso prazer de voltar a brincar na plataforma do pinguim. (Para quem não sabe fui um feliz sysadmin rodando Debian nos servidores e Ubuntu nas estações por 4 anos, depois de 6 meses usando Win Server nos servidores e WinXP nas estações pedi demição).</p>
<p><em><strong>Tarefa</strong></em>: Fazer com que uma aplicação rodando sob Apache 2.2 + PHP 5 se connect em um servidor SQLServer 2005 como seu SGBD padrão. Até aí tudo bem, pensei se ambos os servidores estiverem na internet ta resolvido, a conexão vai ser via http mesmo, sem stress, ao invéz de usar mysql/mysqli uso mssql e boas, não ha muito de diferente a fazer.</p>
<p>Mas como sempre o manganal aqui se precipitiou no julgamento e descobriu que o SQL Server não estava disponível com um endereço http, como um estalo pensei &#8220;Vixe fudeu!&#8221;.</p>
<p>Bom, comecei a juntar pedaços do que eu precisava saber para fazer com que o Ubuntu se conectasse via rede diretamente em um servidor SQL Server, e nessa pesquisa descobri o FreeTDS, que deixa essa tarefa bem mais fácil.</p>
<p>Com o passar dos anos, fui deixando de mecher com linux, depois que comprei um Mac, uso muito a linha de comando com Rails, mas nem se compara as aquelas incansáveis horas que passava na frente de uma tela preta, recompilando kernel e pacote, procurando .deb etc. Ai pensei, Ubuntu mamão com açucar, dou logo um <em><strong>sudo apt-get install FreeTDS</strong></em> ele faz tudo pra mim e eu saio pro abraço, afinal era sexta-feira a noite pô.</p>
<p>Novamente estava enganado, aparentemente a instalação via apt-get não funciona e não instala o pacote FreeTDS corretamente, foi assim que tirei a poeira das teclas <em><strong>M A K E</strong></em>. Hehehe, isso mesmo, a seguir vou dar o caminho para você baixar, compilar e installar o FreeTDS &#8220;compretim&#8221; como dizem os contarrâneos.</p>
<p>Ps: Não vou me apegar aos comandos do linux, nem na configuração do SQL Server, basta saber que o SQL Server deve estar aceitando conexões remotas,  tenha um usuário e senha cadastrado (no meu caso usa a <em><strong>sa</strong></em> mesmo) e com os protocolos <em><strong>TCP/IP</strong></em> ativos e ouvindo a porta <em><strong>1433</strong></em></p>
<p>1 &#8211; Abra o terminal e no seu diretório home crie uma pasta chamada freetds.</p>
<p><em><strong>mkdir -v freetds</strong></em></p>
<p>2 &#8211; Dentro do diretorio freetds, digite o seguinte comando para obter a versão mais rescente do freetds</p>
<p><em><strong>wget http://ibiblio.org/pub/Linux/ALPHA/freetds/stable/freetds-stable.tgz</strong></em></p>
<p>3 &#8211; Em seguinda extraia o arquivo com o comando</p>
<p><em><strong>tar -zxvf freetds-stable.tgz</strong></em></p>
<p>4 &#8211; Agora dentro do diretório com os fontes do freetds rode o seguinte comando (Esse comando demora um cadim)</p>
<p><em><strong>sudo ./configure &#8211;with-tdsver=8.0</strong></em></p>
<p>Essse comando ira compilar o freetds com suporte a versão 8.0 do tdserver, que é o que precisamos para conectar nas versões do SQL Server àpartir da 2000.</p>
<p>5 &#8211; Em seguida <em><strong>sudo make install</strong></em> para que ele instale o freetds no seu linux( nesse caso ubuntu 9.04 ).</p>
<p>Bom, a instalação do freetds está completa, para verificar se tudo está OK, basta dar um <em><strong>which tsql</strong></em> se ele te retornar <em><strong>/usr/local/bin/tsql</strong> </em>seu danado foi instalado corretamente, mas ainda não esta acabado. Você precisa de outros pacotes para que o freetds funcione corretamente. Eestes não precisam ser compilados na unha como fizemos com o freetds, basta que você instale-os usando o bom e velho apt-get, eles são:</p>
<p><em><strong>apt-get install tdsodbc unixodbc unixodbc-bin</strong></em></p>
<p>Uffa, ok agora eu vou conectar naquele maldido sgbd embarcado? Nãaaaaaaao ainda não, precisamos configurar alguns scripts. (Nesse momento encontrei muita confusão no material que pesquisei na internet, sendo assim resolvi não usar nenhum deles, e criar os meus pŕoprios com base na documentação do freetds. Abaixo os arquivos necessários para a configuração, com as minhas configurações, o que for opcional vai estar com um #opcional na frente.</p>
<p><strong><em>Arquivo:</em></strong> /etc/odbcinst.ini</p>
<p><em><strong>[FreeTDS]<br />
Description     = Descrição para a configuração #opcional<br />
Driver          = /usr/lib/odbc/libtdsodbc.so<br />
Driver64        = /usr/lib<br />
Setup           = /usr/lib/odbc/libtdsS.so<br />
Setup64         = /usr/lib<br />
UsageCount      = 1</strong></em></p>
<p><strong><em>Arquivo: </em></strong>/etc/freetds/freetds.conf &#8211; Se seu arquivo não estiver vázio coloque o código abaixo após  a ultima declaração do arquivo.</p>
<p><em><strong>[SQLSERVER2005] #preste atenção nisso daqui, é importante, pode ser qualquer nome.<br />
host = IP_DO_SERVIDOR<br />
port = 1433<br />
tds version = 8.0</strong></em></p>
<p>E por fim:</p>
<p><strong><em>Arquivo: </em></strong>/etc/odbc.ini</p>
<p><em><strong>[SQLSERVER2005] #pode ser qualquer nome<br />
Description     = outra descrição da configuração #opcional<br />
Driver          = FreeTDS<br />
Servername      = SQLSERVER2005 #falei para prestar atenção, isso tem que ser igual ao que você colocou lá no freetds.conf<br />
Database        = seubanco #opcional<br />
UID             = seuusuario<br />
PWD             = suasenha<br />
Port            = 1433</strong></em></p>
<p>Agora já posso conectar no danado do SQL Server? Pode, pode, pode agora pode, hehehehe. Como?</p>
<p>Se você quer só testar para saber se esta funcionando antes de começar a codificar alguma coisa, basta digitar o comando a seguir no terminal:</p>
<p><em><strong>tsql -S IP_DO_SERVIDOR -U usuario -P senha</strong></em></p>
<p>em seguida o os comandos</p>
<p><em><strong>select @@version</strong></em>&lt;enter&gt;</p>
<p><em><strong>go</strong></em>&lt;enter&gt;</p>
<p>algo assim deve lhe ser apresentado:</p>
<p><span style="color: #ff0000;"><em>Microsoft SQL Server 2005 &#8211; 9.00.4035.00 (Intel X86)<br />
Nov 24 2008 13:01:59<br />
Copyright (c) 1988-2005 Microsoft Corporation<br />
Express Edition on Windows NT 5.1 (Build 2600: Service Pack 3)</em></span></p>
<p><span style="color: #ff0000;"><span style="color: #000000;">E assim, acaba essa confusão e tu pode começar a codificar seus sistemas para SQL Server sem problema. No meu caso Rails (tem umas outras para esse, melhor olhar <a href="http://akitaonrails.com/2009/03/01/conectando-no-ms-sql-server-2005-parte-1" target="_blank">aqui</a>) e php.</span></span><br />
Espero que ajude alguém, abraço gente.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lamiscela.net/2009/07/13/ubuntu-freetds-sql-server-2005-conectado/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Papervision3D Previewer</title>
		<link>http://www.lamiscela.net/2009/03/25/papervision3d-previewer/</link>
		<comments>http://www.lamiscela.net/2009/03/25/papervision3d-previewer/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 12:17:26 +0000</pubDate>
		<dc:creator>Junio Vitorno</dc:creator>
				<category><![CDATA[3D]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Papervision3D]]></category>

		<guid isPermaLink="false">http://www.lamiscela.net/?p=387</guid>
		<description><![CDATA[
Hello readers, i&#8217;m here for a quick tip.
If you are like me and always is looking for ways for improve your productivity, give a look for Papervision3D Previewer. Generally when is working with a 3D guy, developing some project using 3D tools and papervision, sometimes you spend much time, programming flash 3d environments just for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/p/mrdoob/wiki/pv3dpreviewer"><img class="alignnone size-full wp-image-388" title="ppv_previewer" src="http://www.lamiscela.net/wp-content/uploads/2009/03/ppv_previewer1.png" alt="" width="530" height="375" /></a></p>
<p>Hello readers, i&#8217;m here for a quick tip.</p>
<p>If you are like me and always is looking for ways for improve your productivity, give a look for <a href="http://code.google.com/p/mrdoob/wiki/pv3dpreviewer" target="_blank">Papervision3D Previewer</a>. Generally when is working with a 3D guy, developing some project using 3D tools and papervision, sometimes you spend much time, programming flash 3d environments just for test models, generated from 3D guy.</p>
<p>Thinking on this, <a href="http://mrdoob.com/">Mr. Doob</a> released a tool, than give to you a preview of your 3D model, without be necessary, programming a entire Papervision3D environment for that. The tool works basically, loading a selected mesh model, bringing it to inside flash, giving to you a preview his.</p>
<p>Visit the <a href="http://code.google.com/p/mrdoob/wiki/pv3dpreviewer" target="_blank">project page</a> and get more info about him, does download of the tool, source files and samples.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lamiscela.net/2009/03/25/papervision3d-previewer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fabulous box of Air Applications</title>
		<link>http://www.lamiscela.net/2009/02/22/sqlite-air-manager/</link>
		<comments>http://www.lamiscela.net/2009/02/22/sqlite-air-manager/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 22:00:28 +0000</pubDate>
		<dc:creator>Junio Vitorno</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Geral]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[sqlite]]></category>

		<guid isPermaLink="false">http://www.lamiscela.net/?p=370</guid>
		<description><![CDATA[We&#8217;ve coming to note a variety of nice applications, built using Adobe Air technology. In this last week i was able to know two awesome applications.
The first is De MonsterDebugger designed by De Monsters a Nederlands design studio, this incredible and  useful application coming to solve a bit the debug problems than Flash users have, [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve coming to note a variety of nice applications, built using Adobe Air technology. In this last week i was able to know two awesome applications.</p>
<p>The first is <a href="http://www.demonsterdebugger.com/" target="_blank">De MonsterDebugger</a> designed by De Monsters a Nederlands design studio, this incredible and  useful application coming to solve a bit the debug problems than Flash users have, when are developing a project using Flash authoring tool or same for those than using FDT, Flashdevelop or Eclipse/Flex Builder. This tool has shown itself much more interesting for debug your applications.</p>
<p>The second is pointed to Rails users, than thus like me has use SQLite3 on begun of a project. Rails users appreciate the terminal usage, but i think than, they feel much more pleasant with <a href="http://www.dehats.com/drupal/?q=node/58" target="_blank">Lita</a>.</p>
<p><a href="http://www.dehats.com/drupal/?q=node/58" target="_blank">Lita</a> give us a graphic interface with some features, than are useful to manage SQLite databases.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lamiscela.net/2009/02/22/sqlite-air-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Leopard Folders</title>
		<link>http://www.lamiscela.net/2009/02/05/custom-leopard-folders/</link>
		<comments>http://www.lamiscela.net/2009/02/05/custom-leopard-folders/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 01:40:04 +0000</pubDate>
		<dc:creator>Junio Vitorno</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Geral]]></category>

		<guid isPermaLink="false">http://www.lamiscela.net/?p=364</guid>
		<description><![CDATA[Hi folks!
I&#8217;m currently working with several different technologies in the day to day. The name of this blog have a link with this, because La Miscela characterize the mix of technologies than are making part of my life.
Well i&#8217;m a happy mac user, and was inspired at leopard default folder, than i solved do this [...]]]></description>
			<content:encoded><![CDATA[<p>Hi folks!</p>
<p>I&#8217;m currently working with several different technologies in the day to day. The name of this blog have a link with this, because La Miscela characterize the mix of technologies than are making part of my life.</p>
<p>Well i&#8217;m a happy mac user, and was inspired at leopard default folder, than i solved do this folders to organize my projects more easily. </p>
<p>Look the folders and more below you can download the package with this six samples.</p>
<p> </p>
<p><span style="color: #0000ee; text-decoration: underline;"><a href="http://www.lamiscela.net/wp-content/uploads/2009/02/picture-11.png"><img class="size-full wp-image-365  alignleft" title="picture-1" src="http://www.lamiscela.net/wp-content/uploads/2009/02/picture-11.png" alt="" width="500" height="343" /></a><br />
</span></p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p>Download: <a href="http://www.lamiscela.net/wp-content/uploads/2009/02/folders1.zip">folders</a></p>
<p>Ps: The AS3 Folder was built using a concept logo for actionscript suggested by a user on the web, i not remember where i saw this logo, but if you know who are, contact me for than i could give the credits for creator.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lamiscela.net/2009/02/05/custom-leopard-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desenvolva Aplicativos para Iphone, Symbiam e outros usando Rhodes e Ruby</title>
		<link>http://www.lamiscela.net/2009/01/23/desenvolva-aplicativos-para-iphone-symbiam-e-outros-usando-rhodes-e-ruby/</link>
		<comments>http://www.lamiscela.net/2009/01/23/desenvolva-aplicativos-para-iphone-symbiam-e-outros-usando-rhodes-e-ruby/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 21:04:34 +0000</pubDate>
		<dc:creator>Junio Vitorno</dc:creator>
				<category><![CDATA[Português]]></category>
		<category><![CDATA[Rhodes]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[R]]></category>

		<guid isPermaLink="false">http://www.lamiscela.net/?p=361</guid>
		<description><![CDATA[Rhodes é um framework que permite escrever aplicativos para um um leque admirável de disposítivos móveis como iPhone, Symbian e outros, utilizando um modelo de desenvolvimento semelhante os MVC. Rhodes é extremamente leve, o que permite que os aplicativos possam ser hospedados nos disposítivos.
Apesar de ainda novo, parece que já existem aplicações na AppStore desenvolvidas [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rhomobile.com/products/rhodes" target="_blank">Rhodes</a> é um framework que permite escrever aplicativos para um um leque admirável de disposítivos móveis como iPhone, Symbian e outros, utilizando um modelo de desenvolvimento semelhante os MVC. <a href="http://www.rhomobile.com/products/rhodes" target="_blank">Rhodes</a> é extremamente leve, o que permite que os aplicativos possam ser hospedados nos disposítivos.</p>
<p>Apesar de ainda novo, parece que já existem aplicações na AppStore desenvolvidas em <a href="http://www.rhomobile.com/products/rhodes" target="_blank">Rhodes</a>, mas que ainda não foram aceitas.</p>
<p>Não espere o bonde passar, confira este <a href="http://www.rhomobile.com/wiki/index.php?title=Mobilizing_Your_Application_with_Rhomobile" target="_blank">tutorial</a> que mostra como criar uma aplicação usando o <a href="http://www.rhomobile.com/products/rhodes" target="_blank">Rhodes</a>, as <a href="http://www.rhomobile.com/wiki/index.php?title=Rhodes" target="_blank">especificações</a> e a <a href="http://github.com/rhomobile/rhodes/tree/master" target="_blank">pagina do projeto</a> no Github.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lamiscela.net/2009/01/23/desenvolva-aplicativos-para-iphone-symbiam-e-outros-usando-rhodes-e-ruby/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Know Django of fun way</title>
		<link>http://www.lamiscela.net/2009/01/23/know-django-of-fun-way/</link>
		<comments>http://www.lamiscela.net/2009/01/23/know-django-of-fun-way/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 19:41:35 +0000</pubDate>
		<dc:creator>Junio Vitorno</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.lamiscela.net/?p=344</guid>
		<description><![CDATA[
Django is a great web framework than works with Python how your main language.
I knew Django chatting with a friend to some months, about the similarities between Ruby and Python and the facilities than Rails was bringing to my life, immediately my friend ask me: Do you know Django? I answer, humn!
Coming in house, i [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-328 alignleft" title="django" src="http://www.lamiscela.net/wp-content/uploads/2009/01/django1.gif" alt="" width="500" height="56" /></p>
<p><a href="http://www.djangoproject.com/" target="_blank">Django</a> is a great web framework than works with <a href="http://en.wikipedia.org/wiki/Python_(programming_language)" target="_blank">Python</a> how your main language.</p>
<p>I knew <a href="http://www.djangoproject.com/" target="_blank">Django</a> chatting with a friend to some months, about the similarities between <a href="http://en.wikipedia.org/wiki/Ruby_(programming_language)" target="_blank">Ruby</a> and <a href="http://en.wikipedia.org/wiki/Python_(programming_language)" target="_blank">Python</a> and the facilities than <a href="http://www.rubyonrails.org/" target="_blank">Rails</a> was bringing to my life, immediately my friend ask me: Do you know <a href="http://www.djangoproject.com/" target="_blank">Django</a>? I answer, humn!</p>
<p>Coming in house, i was looking for something about <a href="http://www.djangoproject.com/" target="_blank">Django</a> and i see than, thus as, <a href="http://www.rubyonrails.org/" target="_blank">Rails</a> become the most famous and utilized <a href="http://en.wikipedia.org/wiki/Ruby_(programming_language)" target="_blank">Ruby</a> framework, <a href="http://www.djangoproject.com/" target="_blank">Django</a> was the same, just it for <a href="http://en.wikipedia.org/wiki/Python_(programming_language)" target="_blank">Python</a>.</p>
<p>The railers know the <a href="http://poignantguide.net/ruby/" target="_blank">Why&#8217;s (poignant) Guide to Ruby</a>, a online book than learn <a href="http://en.wikipedia.org/wiki/Ruby_(programming_language)" target="_blank">Ruby</a> of fun way and than is being written. <a href="http://poignantguide.net/ruby/" target="_blank">Why&#8217;s (poignant) Guide to Ruby</a> have gained much collaborators, than are doing translations and images to illustrate the book.</p>
<p>Following this style,  (really i didn&#8217;t know, who followed style of who), Mario Brandão released your online book, <a href="http://www.aprendendodjango.com/" target="_self">Aprendendo Django</a>, thus as, the <a href="http://en.wikipedia.org/wiki/Ruby_(programming_language)" target="_blank">Ruby</a> book, it still is being written, but already have 29 chapters for who want read, teaching with a fun history and characters a bit about <a href="http://www.djangoproject.com/" target="_blank">Django</a> and Python.</p>
<p>If you choose <a href="http://en.wikipedia.org/wiki/Python_(programming_language)" target="_blank">Python</a> how your agile web language, check out the book, i don&#8217;t have doubts than, you&#8217;ll appreciate much.</p>
<p>Ps.: The book was originally written in Brazilian Portuguese, but i think than Google translate can be useful on this time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lamiscela.net/2009/01/23/know-django-of-fun-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conheça Django se divertindo</title>
		<link>http://www.lamiscela.net/2009/01/23/conheca-django-se-divertindo/</link>
		<comments>http://www.lamiscela.net/2009/01/23/conheca-django-se-divertindo/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 16:26:01 +0000</pubDate>
		<dc:creator>Junio Vitorno</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Português]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.lamiscela.net/?p=326</guid>
		<description><![CDATA[
Django é um excelente framework para desenvolvimento ágil para web que utiliza Python como linguagem base.
Conheci Django através de um amigo a alguns meses enquanto discutiamos as semelhanças entre Python e Ruby e as facilidades que Rails estavam trazendo para minha vida, e ele me indagou: Você conhece Django? Eu subitamente, respodi hum!.
Após uma conversa, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-328 alignleft" title="django" src="http://www.lamiscela.net/wp-content/uploads/2009/01/django1.gif" alt="" width="500" height="56" /></p>
<p><a href="http://www.djangoproject.com/" target="_blank">Django</a> é um excelente framework para desenvolvimento ágil para web que utiliza <a href="http://pt.wikipedia.org/wiki/Python" target="_blank">Python</a> como linguagem base.</p>
<p>Conheci <a href="http://www.djangoproject.com/" target="_blank">Django</a> através de um amigo a alguns meses enquanto discutiamos as semelhanças entre <a href="http://pt.wikipedia.org/wiki/Python" target="_blank">Python</a> e <a href="http://pt.wikipedia.org/wiki/Ruby_(linguagem_de_programa%C3%A7%C3%A3o)" target="_blank">Ruby</a> e as facilidades que <a href="http://rubyonrails.org/" target="_blank">Rails</a> estavam trazendo para minha vida, e ele me indagou: Você conhece Django? Eu subitamente, respodi hum!.</p>
<p>Após uma conversa, cheguei em casa e fui procurar saber mais sobre o tal do <a href="http://www.djangoproject.com/" target="_blank">Django</a>, e vi que  assim como o Rails tornou-se o mais famoso e utilizado framework para a linguagem <a href="http://pt.wikipedia.org/wiki/Ruby_(linguagem_de_programa%C3%A7%C3%A3o)" target="_blank">Ruby</a>, <a href="http://www.djangoproject.com/" target="_blank">Django</a> era o mesmo so que para <a href="http://pt.wikipedia.org/wiki/Python" target="_blank">Python</a>.</p>
<p>Quem é railer conhece o <a href="http://poignantguide.net/ruby/" target="_blank">Why&#8217;s (poignant) Guide to Ruby</a>, um livro que ensina <a href="http://pt.wikipedia.org/wiki/Ruby_(linguagem_de_programa%C3%A7%C3%A3o)" target="_blank">Ruby</a> de forma divertida e descontraída, um livro que vai esta sendo escrito e tem ganhado colaboradores, que traduzem e contribuem com imagens para o livro.</p>
<p>Foi  seguindo esse estilo (na verdade não sei quem seguiu o estilo de quem),  <strong>Marinho Brandão</strong> lançou o seu livro online também,  o <a href="http://www.aprendendodjango.com/" target="_blank">Aprendendo Django</a>, que assim como de <a href="http://pt.wikipedia.org/wiki/Ruby_(linguagem_de_programa%C3%A7%C3%A3o)" target="_blank">Ruby</a> ainda está sendo escrito, e já conta com 29 capitulos prontos para quem quiser ler, ensinando através de uma história divertidida e com vários personagens, um pouco sobre <a href="http://www.djangoproject.com/" target="_blank">Django</a> e <a href="http://pt.wikipedia.org/wiki/Python" target="_blank">Python</a>.</p>
<p>Se você está caminhando na direção do desenvolvimento ágil e escolheu <a href="http://pt.wikipedia.org/wiki/Python" target="_blank">Python</a>, não deixe de conferir este <a href="http://www.aprendendodjango.com/" target="_blank">livro</a>, a leitura é divertida e tenho certeza que você não vai se arrepender.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lamiscela.net/2009/01/23/conheca-django-se-divertindo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Attack with the Shoes</title>
		<link>http://www.lamiscela.net/2009/01/19/attack-with-the-shoes/</link>
		<comments>http://www.lamiscela.net/2009/01/19/attack-with-the-shoes/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 13:01:04 +0000</pubDate>
		<dc:creator>Junio Vitorno</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Shoes]]></category>

		<guid isPermaLink="false">http://www.lamiscela.net/?p=220</guid>
		<description><![CDATA[Than Ruby is magic we don&#8217;t have doubt, Ruby + Rails is still better. So, if you already know than Rruby is all this, why limit it only for your web projects (ruby originally wasn&#8217;t created for web)? Use the Shoes.
But if you isn&#8217;t so crazy like me and is asking yourself, What fuck this [...]]]></description>
			<content:encoded><![CDATA[<p>Than Ruby is magic we don&#8217;t have doubt, Ruby + Rails is still better. So, if you already know than Rruby is all this, why limit it only for your web projects (ruby originally wasn&#8217;t created for web)? Use the Shoes.</p>
<p>But if you isn&#8217;t so crazy like me and is asking yourself, What fuck this man is talking about? Use the Soes?. Take a coffee, i&#8217;m talking about <a href="http://shoooes.net/" target="_blank">Shoes</a> a awesome multi-platform GUI framework than allow create a GUI to your application using ruby, this isn&#8217;t amazing? (and vicing too). Check out <a href="http://shoooes.net/tutorial/" target="_blank">this</a> and <a href="http://advent2008.hackruby.com/past/2008/12/13/_guify_your_ruby_apps_with_shoes.html" target="_blank">this</a> tutorials, to get start and become a zombie like me</p>
<p>Have a nice GUI development.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lamiscela.net/2009/01/19/attack-with-the-shoes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
