<?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/en/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>You're free to use all the codes in the site, just keep the author's name.</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. #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">
	I finally got some free time and fixed some old bugs, also improved the speed of the divide method.
	</summary>
    </entry>
    <entry>
        <title>Event Listener [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">
	The code size was reduced and now it's possible to send unlimited arguments to "personalized events".
	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">Simulates the Flash timeline. You define the amount of frames, the speed in fps (frames per second) and, at each frame passage an event is called, useful for animations.</summary>
    </entry>
    <entry>
        <title>Point Inside a Polygon 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">Checks whether a point is inside a polygon. Adapted from: [http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html].</summary>
    </entry>
    <entry>
        <title>Gradient 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">Given the initial and final colors and the amount of steps that the gradient effect will take, the class is able to retrieve the color that should be used on each step.</summary>
    </entry>
    <entry>
        <title>Nearest Number 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">Given an ordered numeric array and a number "X", retrieves the index of the nearest number to "X".</summary>
    </entry>
    <entry>
        <title>Format Currency 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:37Z</published>
        <category term="/forms" scheme="http://jsfromhell.com/" label="forms" />
        <updated>2007-12-26T02:33:37Z</updated>
        <summary type="text">Added support to negative numbers</summary>
    </entry>
    <entry>
        <title>Format Money 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">Fixed bug related with negative numbers.</summary>
    </entry>
    <entry>
        <title>Automatic Tabulation 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">Added the possibility to choose the form that will receive the feature.</summary>
    </entry>
    <entry>
        <title>Enter as 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:17Z</published>
        <category term="/forms" scheme="http://jsfromhell.com/" label="forms" />
        <updated>2007-10-07T22:33:17Z</updated>
        <summary type="text">I think this code is strange, but I decided to update it too. I added the option of choosing which form should be used.</summary>
    </entry>
    <entry>
        <title>UTF-8 Converter</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">Converts a sequence of ANSI characters to UTF-8 and vice-versa.</summary>
    </entry>
    <entry>
        <title>Word Wrap 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">I fixed a mistake and added a new option to break.</summary>
    </entry>
    <entry>
        <title>Format Money 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, I found time and patience to correct one of the numerous codes :]
I removed some unuseful things and corrected a mistake when formatting &quot;1.99&quot; without decimal places, which resulted in &quot;1&quot; but should be &quot;2&quot;.</summary>
    </entry>
    <entry>
        <title>Function Overloader 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:43Z</published>
        <category term="/classes" scheme="http://jsfromhell.com/" label="classes" />
        <updated>2006-11-29T04:48:43Z</updated>
        <summary type="text">An error while sending null/undefined values was found and corrected.</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:53Z</published>
        <category term="/geral" scheme="http://jsfromhell.com/" label="geral" />
        <updated>2006-11-23T01:38:53Z</updated>
        <summary type="text">Added two new methods: hitTest(x, y, object) and hitTest(x, y, width, height, object)</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>2006-11-11T18:59:47Z</published>
        <category term="/classes" scheme="http://jsfromhell.com/" label="classes" />
        <updated>2006-11-11T18:59:47Z</updated>
        <summary type="text">Error on the multiply method reported by Shivdeep Krishnan was corrected.</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">Retrieves and sets the cursor position, as well the selected text of inputs and textareas. After searching, I saw it&apos;s the only code which retrieves right information in textareas under Internet Explorer (due to a bug on the implementation).&apos;</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">Allows editing the content of an element, the so called &quot;edit in place&quot;.</summary>
    </entry>
    <entry>
        <title>HTTP Request v1.0</title>
        <link href="http://jsfromhell.com/classes/http-request" rel="alternate" type="application/xhtml+xml" />
        <id>http://jsfromhell.com/classes/http-request</id>
        <author>
            <name>Jonas Raoni Soares Silva</name>
            <uri>http://jsfromhell.com/user/jonasraoni</uri>
        </author>
        <published>2006-08-19T05:25:31Z</published>
        <category term="/geral" scheme="http://jsfromhell.com/" label="geral" />
        <updated>2006-08-19T05:25:31Z</updated>
        <summary type="text">Class to make remote requests, which can be used on the popular &quot;AJAX&quot;.</summary>
    </entry>
</feed>