<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Lazy Lady Blog</title>
	
	<link>http://www.lazylady.se/blog</link>
	<description />
	<lastBuildDate>Thu, 15 Sep 2011 16:03:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/LazyLady" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="lazylady" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Shorthand Vector</title>
		<link>http://www.lazylady.se/blog/2011/09/shorthand-vector/</link>
		<comments>http://www.lazylady.se/blog/2011/09/shorthand-vector/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 15:59:48 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[errors]]></category>

		<guid isPermaLink="false">http://www.lazylady.se/blog/2011/09/shorthand-vector/</guid>
		<description><![CDATA[Short tip for fellow devs, it seems that old Flash CS4 has a problem compiling one of it's own language features. There's this cool shorthand for writing a Vector However this yields error Either stay away from compiling with Flash &#8230; <a href="http://www.lazylady.se/blog/2011/09/shorthand-vector/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[Short tip for fellow devs, it seems that old Flash CS4 has a problem compiling one of it's own language features. There's this cool shorthand for writing a Vector
<pre class="brush: as3; title: ; notranslate">
var v:Vector.&lt;int&gt; = new &lt;int&gt;[];
</pre>

However this yields error
<pre class="brush: plain; title: ; notranslate">
invalid xml name
</pre>

Either stay away from compiling with Flash IDE at all (which would make you a happier human), or compile with Flash CS5 and onwards.]]></content:encoded>
			<wfw:commentRss>http://www.lazylady.se/blog/2011/09/shorthand-vector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server POST request magically transformed to GET</title>
		<link>http://www.lazylady.se/blog/2011/08/server-post-request-magically-transformed-to-get/</link>
		<comments>http://www.lazylady.se/blog/2011/08/server-post-request-magically-transformed-to-get/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 07:50:02 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Server-side]]></category>

		<guid isPermaLink="false">http://www.lazylady.se/blog/?p=333</guid>
		<description><![CDATA[Spent quite some time trying to figure out why all my POST requests ended up as GET requests on the server. Luckily I found the answer at Stackoverflow. which reminded me of the dumb rewrite rule i had set on &#8230; <a href="http://www.lazylady.se/blog/2011/08/server-post-request-magically-transformed-to-get/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[Spent quite some time trying to figure out why all my POST requests ended up as GET requests on the server.
<pre class="brush: php; title: ; notranslate">
&lt;?php
	echo &quot;REQ Method : &quot; . $_SERVER['REQUEST_METHOD'];
?&gt;
</pre>

Luckily I found the answer at <a href="http://stackoverflow.com/">Stackoverflow</a>. which reminded me of the dumb rewrite rule i had set on my server. 

<pre class="brush: plain; title: ; notranslate">
RewriteEngine On
RewriteCond %{HTTP_HOST} ^lazylady.se
RewriteRule (.*) http://www.lazylady.se/$1 [R=301,L]
</pre>

This effectively rewrites all "lazylady.se" requests to "www.lazylady.se". To remedy the problem remove the rewrite rule from the server's root .htaccess.]]></content:encoded>
			<wfw:commentRss>http://www.lazylady.se/blog/2011/08/server-post-request-magically-transformed-to-get/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Little Unrar Helper</title>
		<link>http://www.lazylady.se/blog/2011/08/the-little-unrar-helper/</link>
		<comments>http://www.lazylady.se/blog/2011/08/the-little-unrar-helper/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 06:21:25 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.lazylady.se/blog/2011/08/the-little-unrar-helper/</guid>
		<description><![CDATA[I&#8217;ve made a little Mac utility application that helps out with the daunting work of handling large chunks of rar files when unpacking stuff such as a full season of a TV series. Check it out here: Little Unrar Helper]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve made a little Mac utility application that helps out with the daunting work of handling large chunks of rar files when unpacking stuff such as a full season of a TV series.<br />
Check it out here: <a href="http://lazylady.se/blog/mac-apps/little-unrar-helper">Little Unrar Helper</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazylady.se/blog/2011/08/the-little-unrar-helper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design update</title>
		<link>http://www.lazylady.se/blog/2011/08/design-update/</link>
		<comments>http://www.lazylady.se/blog/2011/08/design-update/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 17:03:47 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.lazylady.se/blog/?p=264</guid>
		<description><![CDATA[Just updated the look of this not-well-managed blog. However my intention is to change that so let me know if anything out of the ordinary shows up.]]></description>
			<content:encoded><![CDATA[Just updated the look of this not-well-managed blog. However my intention is to change that so let me know if anything out of the ordinary shows up.]]></content:encoded>
			<wfw:commentRss>http://www.lazylady.se/blog/2011/08/design-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cranking HTML</title>
		<link>http://www.lazylady.se/blog/2011/03/cranking-html/</link>
		<comments>http://www.lazylady.se/blog/2011/03/cranking-html/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 10:56:37 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Checkboxes]]></category>
		<category><![CDATA[Radiobuttons]]></category>

		<guid isPermaLink="false">http://www.lazylady.se/blog/?p=207</guid>
		<description />
			<content:encoded><![CDATA[<p>
<script src="http://www.lazylady.se/js/blog/CrankingHTML.js" type="text/javascript" charset="utf-8"></script>
<div id="crankingHTML" style="width:570px; height:300px;"></div>
<script type="text/javascript" charset="utf-8">
var app = new CrankingHTML();
app.init("crankingHTML");
</script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazylady.se/blog/2011/03/cranking-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Particle Swarm</title>
		<link>http://www.lazylady.se/blog/2011/03/particle-swarm/</link>
		<comments>http://www.lazylady.se/blog/2011/03/particle-swarm/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 12:40:19 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Particles]]></category>

		<guid isPermaLink="false">http://www.lazylady.se/blog/?p=155</guid>
		<description><![CDATA[Oooh, it&#8217;s unbelievable a new post on the blog. Happy, happy, joy, joy! And just to celebrate I&#8217;ll explore HTML5 pixel pushing instead of Flash, far out!]]></description>
			<content:encoded><![CDATA[<p>Oooh, it&#8217;s unbelievable a new post on the blog. Happy, happy, joy, joy! And just to celebrate I&#8217;ll explore HTML5 pixel pushing instead of Flash, far out!</p>
<p>
<script src="http://www.lazylady.se/js/blog/ParticleSwarm.js" type="text/javascript" charset="utf-8"></script>
<div id="particleSwarm" style="width:570px; height:300px;"></div>
		<script type="text/javascript" charset="utf-8">
		
			function init()
			{
				var a = new ParticleSwarm();
				a.init("particleSwarm");
			}
init();
		</script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazylady.se/blog/2011/03/particle-swarm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Confetti Two</title>
		<link>http://www.lazylady.se/blog/2010/06/confetti-two/</link>
		<comments>http://www.lazylady.se/blog/2010/06/confetti-two/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 22:48:23 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Particles]]></category>

		<guid isPermaLink="false">http://www.lazylady.se/blog/2010/06/confetti-two/</guid>
		<description><![CDATA[Your Flash player seems to be outdated.]]></description>
			<content:encoded><![CDATA[<div id="confettiTwo">
<h1>Your Flash player seems to be outdated.</h1>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
<p><script type="text/javascript" charset="utf-8">
	var attributes = {};
	var flashvars = {};
	var params = {};
	params.scale =  "noscale";
	params.bgcolor = "#000000";
	params.allowScriptAccess = "sameDomain";
	swfobject.embedSWF("http://www.lazylady.se/blog/wp-content/2010/06/confetti_two.swf", "confettiTwo", "570", "300", "10.1.0","", flashvars, params, attributes);
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazylady.se/blog/2010/06/confetti-two/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Confetti One</title>
		<link>http://www.lazylady.se/blog/2010/06/confetti-one/</link>
		<comments>http://www.lazylady.se/blog/2010/06/confetti-one/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 19:42:28 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Particles]]></category>

		<guid isPermaLink="false">http://www.lazylady.se/blog/2010/06/confetti-one/</guid>
		<description />
			<content:encoded><![CDATA[<div id="confettiOne"></div>
<p><script type="text/javascript" charset="utf-8">
	var attributes = {};
	var flashvars = {};
	var params = {};
	params.scale =  "noscale";
	params.bgcolor = "#000000";
	params.allowScriptAccess = "sameDomain";
	swfobject.embedSWF("http://www.lazylady.se/blog/wp-content/2010/06/confetti_one.swf", "confettiOne", "570", "300", "10.0.0","", flashvars, params, attributes);
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazylady.se/blog/2010/06/confetti-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Additive Waves</title>
		<link>http://www.lazylady.se/blog/2010/03/additive-waves/</link>
		<comments>http://www.lazylady.se/blog/2010/03/additive-waves/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 12:58:33 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Waves]]></category>

		<guid isPermaLink="false">http://www.lazylady.se/blog/2010/03/additive-waves/</guid>
		<description><![CDATA[Look it&#8217;s alive!]]></description>
			<content:encoded><![CDATA[<p>Look it&#8217;s alive!</p>
<div id="flashContent"></div>
<p><script type="text/javascript" charset="utf-8">
	var attributes = {};
	var flashvars = {};
	var params = {};
	params.scale =  "noscale";
	params.bgcolor = "#000000";
	params.allowScriptAccess = "sameDomain";
	swfobject.embedSWF("http://www.lazylady.se/blog/wp-content/2010/03/additive_waves.swf", "flashContent", "570", "400", "9.0.0","", flashvars, params, attributes);
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazylady.se/blog/2010/03/additive-waves/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Archimedes Particles</title>
		<link>http://www.lazylady.se/blog/2009/11/archimedes-particles/</link>
		<comments>http://www.lazylady.se/blog/2009/11/archimedes-particles/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 23:22:10 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Particles]]></category>

		<guid isPermaLink="false">http://www.lazylady.se/blog/?p=107</guid>
		<description><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_ArchimedesParticles_683621557"
			class="lazyladyflash"
			width="400"
			height="400">
	<param name="movie" value="http://www.lazylady.se/blog/wp-content/2009/11/ArchimedesParticles.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.lazylady.se/blog/wp-content/2009/11/ArchimedesParticles.swf"
			name="fm_ArchimedesParticles_683621557"
			width="400"
			height="400">
	<!--<![endif]-->
		 Archimedes Particles flash experiment. 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>]]></description>
			<content:encoded><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_ArchimedesParticles_2035435631"
			class="lazyladyflash"
			width="400"
			height="400">
	<param name="movie" value="http://www.lazylady.se/blog/wp-content/2009/11/ArchimedesParticles.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.lazylady.se/blog/wp-content/2009/11/ArchimedesParticles.swf"
			name="fm_ArchimedesParticles_2035435631"
			width="400"
			height="400">
	<!--<![endif]-->
		
<p>Archimedes Particles flash experiment.</p>
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.lazylady.se/blog/wp-content/2009/01/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
]]></content:encoded>
			<wfw:commentRss>http://www.lazylady.se/blog/2009/11/archimedes-particles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

