<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<?xml-stylesheet href="http://jsfromhell.com/css/atom.css" type="text/css"?>

<feed xmlns="http://www.w3.org/2005/Atom">
    <title>JSFromHell.com</title>
    <link href="http://jsfromhell.com/" rel="alternate" type="application/xhtml+xml" />
    <link href="http://jsfromhell.com/pt/feed/atom.xml" rel="self" type="application/atom+xml" />
    <updated>2008-09-16T05:25:10Z</updated>
    <id>http://jsfromhell.com/</id>
    <icon>http://jsfromhell.com/icon.gif</icon>
    <rights>Você é livre para usar todos os códigos no site, apenas mantenha o nome do autor.</rights>
    <author>
        <name>Carlos R. L. Rodrigues</name>
	<uri>http://jsfromhell.com/user/carlosrl</uri>
        <email>rodrigolr@uol.com.br</email>
    </author>
    <author>
        <name>Jonas Raoni Soares Silva</name>
	<uri>http://jsfromhell.com/user/jonasraoni</uri>
        <email>jonasraoni@gmail.com</email>
    </author>
    <entry>
        <title>Big Number [rev. #4]</title>
        <link href="http://jsfromhell.com/classes/bignumber" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/classes/bignumber</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2006-05-03T00:23:40Z</published>
        <category term="/classes" scheme="http://jsfromhell.com/" label="classes" />
        <updated>2009-07-16T19:15:30Z</updated>
        <summary type="text">
	Método subtract consertado.
	</summary>
    </entry>
    <entry>
        <title>Capitalize [rev. #2]</title>
        <link href="http://jsfromhell.com/string/capitalize" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/string/capitalize</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2005-11-20T19:34:06Z</published>
        <category term="/string" scheme="http://jsfromhell.com/" label="string" />
        <updated>2009-02-06T15:20:13Z</updated>
        <summary type="text">
	Izmael da [http://www.mabkil.com], achou um simples erro que eu não tinha percebido. Como a função estava usando "\w" como "matcher", frases com caracteres fora dessa faixa estavam sendo ignorados.
	Eu alterei para "\S" :)
	</summary>
    </entry>
    <entry>
        <title>Big Number [rev. #3]</title>
        <link href="http://jsfromhell.com/classes/bignumber" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/classes/bignumber</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2006-05-03T00:23:40Z</published>
        <category term="/classes" scheme="http://jsfromhell.com/" label="classes" />
        <updated>2008-09-16T05:25:10Z</updated>
        <summary type="text">
	Finalmente encontrei um tempo livre e corrigi alguns bugs antigos, também melhorei a velocidade do método de divisão.
	</summary>
    </entry>
    <entry>
        <title>Manipulador De Eventos [rev. #6]</title>
        <link href="http://jsfromhell.com/geral/event-listener" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/geral/event-listener</id>
        <author>
            <name>Carlos R. L. Rodrigues</name>
            <uri>http://jsfromhell.com/user/carlosrl</uri>
        </author>
        <published>2008-09-06T02:25:10Z</published>
        <category term="/geral" scheme="http://jsfromhell.com/" label="geral" />
        <updated>2008-09-06T02:25:10Z</updated>
        <summary type="text">
	O tamanho do código foi reduzido e agora é possível enviar arguments ilimitados para "eventos personalizados".
	var o = {};
	addEvent(o, "click", function(a, b, c){alert(a + b + c);});
	alert(o.onclick(1,2,3));
	</summary>
    </entry>
    <entry>
        <title>TimeLine v1.0</title>
        <link href="http://jsfromhell.com/classes/timeline" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/classes/timeline</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2008-03-14T03:22:15Z</published>
        <category term="/classes" scheme="http://jsfromhell.com/" label="classes" />
        <updated>2008-03-14T03:22:15Z</updated>
        <summary type="text">Simula a linha de tempo do Flash. Você define a quantidade de frames, velocidade em fps (frames por segundo) e, a cada passagem de frame é chamado um evento, útil para animações.</summary>
    </entry>
    <entry>
        <title>Ponto Dentro do Polígono v1.0</title>
        <link href="http://jsfromhell.com/math/is-point-in-poly" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/math/is-point-in-poly</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2008-03-14T01:40:56Z</published>
        <category term="/math" scheme="http://jsfromhell.com/" label="math" />
        <updated>2008-03-14T01:40:56Z</updated>
        <summary type="text">Verifica se um ponto está dentro de um polígono. Adaptado de: [http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html].</summary>
    </entry>
    <entry>
        <title>Gradiente v1.0</title>
        <link href="http://jsfromhell.com/classes/gradient" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/classes/gradient</id>
        <author>
            <name>Carlos R. L. Rodrigues</name>
            <uri>http://jsfromhell.com/user/carlosrl</uri>
        </author>
        <published>2008-03-14T00:17:22Z</published>
        <category term="/classes" scheme="http://jsfromhell.com/" label="classes" />
        <updated>2008-03-14T00:17:22Z</updated>
        <summary type="text">Dada as cores inicial e final e a quantidade de passos em que deverá ser feito o efeito gradiente, a classe permite retornar a cor que deve ser usada em cada passo.</summary>
    </entry>
    <entry>
        <title>Número Mais Próximo v1.0</title>
        <link href="http://jsfromhell.com/array/nearest-number" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/array/nearest-number</id>
        <author>
            <name>Carlos R. L. Rodrigues</name>
            <uri>http://jsfromhell.com/user/carlosrl</uri>
        </author>
        <published>2008-03-14T23:09:01Z</published>
        <category term="/array" scheme="http://jsfromhell.com/" label="array" />
        <updated>2008-03-14T23:09:01Z</updated>
        <summary type="text">Dado um array numérico ordenado e um número "X", retorna o índice do número mais próximo de "X".</summary>
    </entry>
    <entry>
        <title>Formata Dinheiro v1.2</title>
        <link href="http://jsfromhell.com/forms/format-currency" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/forms/format-currency</id>
        <author>
            <name>Carlos R. L. Rodrigues</name>
            <uri>http://jsfromhell.com/user/carlosrl</uri>
        </author>
        <published>2007-12-26T02:33:36Z</published>
        <category term="/forms" scheme="http://jsfromhell.com/" label="forms" />
        <updated>2007-12-26T02:33:36Z</updated>
        <summary type="text">Adicionado suporte para números negativos</summary>
    </entry>
    <entry>
        <title>Formata Dinheiro v1.1</title>
        <link href="http://jsfromhell.com/number/fmt-money" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/number/fmt-money</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2007-12-22T17:31:04Z</published>
        <category term="/number" scheme="http://jsfromhell.com/" label="number" />
        <updated>2007-12-22T17:31:04Z</updated>
        <summary type="text">Corrigido bug relacionado a números negativos.</summary>
    </entry>
    <entry>
        <title>Big Number v1.1</title>
        <link href="http://jsfromhell.com/classes/bignumber" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/classes/bignumber</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2007-12-21T02:45:38Z</published>
        <category term="/classes" scheme="http://jsfromhell.com/" label="classes" />
        <updated>2007-12-21T02:45:38Z</updated>
        <summary type="text">Corrigido erro na função multiply, 0.01 * 1 resultava em 0.1</summary>
    </entry>
    <entry>
        <title>Tabulação Automática v1.2</title>
        <link href="http://jsfromhell.com/forms/auto-tab" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/forms/auto-tab</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2007-10-07T22:44:33Z</published>
        <category term="/forms" scheme="http://jsfromhell.com/" label="forms" />
        <updated>2007-10-07T22:44:33Z</updated>
        <summary type="text">Adicionado a possibilidade de escolher o formulário que receberá esse adicional.</summary>
    </entry>
    <entry>
        <title>Enter como TAB v1.1</title>
        <link href="http://jsfromhell.com/forms/enter-as-tab" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/forms/enter-as-tab</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2007-10-07T22:33:16Z</published>
        <category term="/forms" scheme="http://jsfromhell.com/" label="forms" />
        <updated>2007-10-07T22:33:16Z</updated>
        <summary type="text">Este código acho estranho, mas resolvi atualizar ele também. Inseri a opção de informar o formulário a ser usado.</summary>
    </entry>
    <entry>
        <title>Conversor UTF-8</title>
        <link href="http://jsfromhell.com/geral/utf-8" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/geral/utf-8</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2007-10-07T14:02:38Z</published>
        <category term="/geral" scheme="http://jsfromhell.com/" label="geral" />
        <updated>2007-10-07T14:02:38Z</updated>
        <summary type="text">Converte sequência de caracteres ANSI para UTF-8 e vice-versa.</summary>
    </entry>
    <entry>
        <title>Quebra Palavras v1.1</title>
        <link href="http://jsfromhell.com/string/wordwrap" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/string/wordwrap</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2007-10-07T01:21:58Z</published>
        <category term="/string" scheme="http://jsfromhell.com/" label="string" />
        <updated>2007-10-07T01:21:58Z</updated>
        <summary type="text">Consertei um erro e adicionei uma nova opção para quebrar.</summary>
    </entry>
    <entry>
        <title>Formata Dinheiro v1.0</title>
        <link href="http://jsfromhell.com/number/fmt-money" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/number/fmt-money</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2007-10-02T20:05:46Z</published>
        <category term="/number" scheme="http://jsfromhell.com/" label="number" />
        <updated>2007-10-02T20:05:46Z</updated>
        <summary type="text">Uuuuuu, encontrei tempo e paciência para corrigir um dos inúmeros códigos :]
Remove coisas inúteis e corrigi um erro ao formatar &quot;1.99&quot; para exibir sem nenhuma casa decimal, que resultava em &quot;1&quot;, mas deveria ser &quot;2&quot;.</summary>
    </entry>
    <entry>
        <title>Sobrecarregador de Função v1.1</title>
        <link href="http://jsfromhell.com/classes/overloader" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/classes/overloader</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2006-11-29T04:48:42Z</published>
        <category term="/classes" scheme="http://jsfromhell.com/" label="classes" />
        <updated>2006-11-29T04:48:42Z</updated>
        <summary type="text">Erro ao enviar valores null/undefined foi encontrado e corrigido.</summary>
    </entry>
    <entry>
        <title>Hit Test v1.1</title>
        <link href="http://jsfromhell.com/geral/hittest" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/geral/hittest</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2006-11-23T01:38:52Z</published>
        <category term="/geral" scheme="http://jsfromhell.com/" label="geral" />
        <updated>2006-11-23T01:38:52Z</updated>
        <summary type="text">Dois métodos adicionados: hitTest(x, y, object) e hitTest(x, y, width, height, object)</summary>
    </entry>
    <entry>
        <title>Selection v1.0</title>
        <link href="http://jsfromhell.com/forms/selection" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/forms/selection</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2006-11-05T23:18:32Z</published>
        <category term="/forms" scheme="http://jsfromhell.com/" label="forms" />
        <updated>2006-11-05T23:18:32Z</updated>
        <summary type="text">Retorna e seta a posição do cursor, bem como o texto selecionado em inputs de texto e textareas. Depois de pesquisar, vi que é o único que retorna informações corretas em textareas no Internet Explorer (graças a um bug na implementação).</summary>
    </entry>
    <entry>
        <title>Tag Editor v1.0</title>
        <link href="http://jsfromhell.com/dhtml/tag-editor" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/dhtml/tag-editor</id>
        <author>
            <name>Carlos R. L. Rodrigues</name>
            <uri>http://jsfromhell.com/user/carlosrl</uri>
        </author>
        <published>2006-11-05T19:01:48Z</published>
        <category term="/dhtml" scheme="http://jsfromhell.com/" label="dhtml" />
        <updated>2006-11-05T19:01:48Z</updated>
        <summary type="text">Permite editar o conteúdo de um elemento, o chamado &quot;edit in place&quot;.</summary>
    </entry>
</feed>