<?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>autumnrayne.dot.net</title>
	<atom:link href="http://autumnrayne.net/feed" rel="self" type="application/rss+xml" />
	<link>http://autumnrayne.net</link>
	<description>the breadlike food, usually containing flour, sugar, baking powder or soda, eggs, and liquid flavoring is a false statement made with deliberate intent to deceive.</description>
	<lastBuildDate>Fri, 30 Apr 2010 20:12:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>months, days, stars&#8230; ugh.</title>
		<link>http://autumnrayne.net/archives/322</link>
		<comments>http://autumnrayne.net/archives/322#comments</comments>
		<pubDate>Fri, 30 Apr 2010 20:12:14 +0000</pubDate>
		<dc:creator>Autumnn</dc:creator>
				<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://autumnrayne.net/?p=322</guid>
		<description><![CDATA[I&#8217;m putting this here for two reasons: 1. This is the second time I&#8217;ve needed to have data about how many days preceded each month.  (e.g. there are 304 days before Oct. 1) and 2. I&#8217;m curious if there&#8217;s an easier way to do something like this.  When I was working on a countdown clock [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m putting this here for two reasons: 1. This is the second time I&#8217;ve needed to have data about how many days preceded each month.  (e.g. there are 304 days before Oct. 1) and 2. I&#8217;m curious if there&#8217;s an easier way to do something like this.  When I was working on a countdown clock there was a lot of modulo operators and the results were much cleaner than below.  Since the number of days in a month varies (unlike the number of minutes in an hour) I couldn&#8217;t think of a way.</p>
<p>Basically, there&#8217;s a slider (mySlider) that is controlling the rotation of a <a href="http://en.wikipedia.org/wiki/Planisphere">planisphere</a>. (dial_mc) We want to give users information (mymonth, myday) about what night sky they&#8217;re looking at since the planisphere is almost impossible to read. (it was made in 1780&#8230;)  You can adjust the planisphere for different times of day, but we&#8217;re only interesting in giving the user midnight.  myday and mymonth get displayed in dynamic text boxes.</p>
<p style="padding-left: 30px;">onClipEvent(enterFrame){<br />
this._rotation = ((_root.mySlider.ratio)*-1);  //dial_mc (this) needs to spin CCW</p>
<p style="padding-left: 30px;">var mymonth;<br />
var myday = 0;</p>
<p style="padding-left: 30px;">if (_root.mySlider.ratio &lt;= 31){<br />
_root.mymonth = &#8220;Jan&#8221;;<br />
_root.myday = Math.round(_root.mySlider.ratio);<br />
//since the slider will start at 0 we want to make that 1<br />
if ((Math.round(_root.mySlider.ratio)) == 0){<br />
_root.myday = 1;<br />
}<br />
}</p>
<p style="padding-left: 30px;">else if (_root.mySlider.ratio &lt;= 59 &amp;&amp; _root.mySlider.ratio &gt;= 31){<br />
_root.mymonth = &#8220;Feb&#8221;;<br />
_root.myday = (Math.round(_root.mySlider.ratio) &#8211; 31);<br />
}</p>
<p style="padding-left: 30px;">else if (_root.mySlider.ratio &lt;= 90 &amp;&amp; _root.mySlider.ratio&gt;=59){<br />
_root.mymonth = &#8220;March&#8221;;<br />
_root.myday = (Math.round(_root.mySlider.ratio) &#8211; 59);<br />
}</p>
<p style="padding-left: 30px;">else if (_root.mySlider.ratio &lt;= 120 &amp;&amp; _root.mySlider.ratio&gt;=90){<br />
_root.mymonth = &#8220;April&#8221;;<br />
_root.myday = (Math.round(_root.mySlider.ratio) &#8211; 90);<br />
}</p>
<p style="padding-left: 30px;">else if (_root.mySlider.ratio &lt;= 151 &amp;&amp; _root.mySlider.ratio&gt;=120){<br />
_root.mymonth = &#8220;May&#8221;;<br />
_root.myday = (Math.round(_root.mySlider.ratio) &#8211; 120);<br />
}</p>
<p style="padding-left: 30px;">else if (_root.mySlider.ratio &lt;= 181 &amp;&amp; _root.mySlider.ratio&gt;=151){<br />
_root.mymonth = &#8220;June&#8221;;<br />
_root.myday = (Math.round(_root.mySlider.ratio) &#8211; 151);<br />
}</p>
<p style="padding-left: 30px;">else if (_root.mySlider.ratio &lt;= 212 &amp;&amp; _root.mySlider.ratio&gt;=181){<br />
_root.mymonth = &#8220;July&#8221;;<br />
_root.myday = (Math.round(_root.mySlider.ratio) &#8211; 181);<br />
}</p>
<p style="padding-left: 30px;">else if (_root.mySlider.ratio &lt;= 243 &amp;&amp; _root.mySlider.ratio&gt;=212){<br />
_root.mymonth = &#8220;Aug&#8221;;<br />
_root.myday = (Math.round(_root.mySlider.ratio) &#8211; 212);<br />
}</p>
<p style="padding-left: 30px;">else if (_root.mySlider.ratio &lt;= 273 &amp;&amp; _root.mySlider.ratio&gt;=243){<br />
_root.mymonth = &#8220;Sep&#8221;;<br />
_root.myday = (Math.round(_root.mySlider.ratio) &#8211; 243);<br />
}</p>
<p style="padding-left: 30px;">else if (_root.mySlider.ratio &lt;= 304 &amp;&amp; _root.mySlider.ratio&gt;=273){<br />
_root.mymonth = &#8220;Oct&#8221;;<br />
_root.myday = (Math.round(_root.mySlider.ratio) &#8211; 273);<br />
}</p>
<p style="padding-left: 30px;">else if (_root.mySlider.ratio &lt;= 334 &amp;&amp; _root.mySlider.ratio&gt;=304){<br />
_root.mymonth = &#8220;Nov&#8221;;<br />
_root.myday = (Math.round(_root.mySlider.ratio) &#8211; 304);<br />
}</p>
<p style="padding-left: 30px;">else if (_root.mySlider.ratio &lt;= 365 &amp;&amp; _root.mySlider.ratio&gt;=334){<br />
_root.mymonth = &#8220;Dec&#8221;;<br />
_root.myday = (Math.round(_root.mySlider.ratio) &#8211; 334);<br />
}</p>
<p style="padding-left: 30px;">}</p>
<p><strong>month data:</strong></p>
<p>Jan: 31<br />
Feb: 59<br />
Mar: 90<br />
Apr: 120<br />
May: 151<br />
June: 181<br />
July: 212<br />
Aug: 243<br />
Sep: 273<br />
Oct: 304<br />
Nov: 334<br />
Dec: 365</p>
<p>When the product of all this is approved and goes live, I&#8217;ll add a link here.</p>
]]></content:encoded>
			<wfw:commentRss>http://autumnrayne.net/archives/322/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hangar 18</title>
		<link>http://autumnrayne.net/archives/319</link>
		<comments>http://autumnrayne.net/archives/319#comments</comments>
		<pubDate>Sat, 17 Apr 2010 00:46:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EVE/Game]]></category>

		<guid isPermaLink="false">http://autumnrayne.net/?p=319</guid>
		<description><![CDATA[I&#8217;m down with the EVE blogging memes&#8230; so here&#8217;s what&#8217;s in my hangar: Jaguar x2 &#8211; &#8220;afdho&#8221; and un-named. I got into Wolves and Jags when I returned to EVE after my last hiatus. I have yet to find a real use for these, but that&#8217;s probably due to the fact Ushra&#8217;Khan hasn&#8217;t done anything [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m down with the EVE blogging memes&#8230; so here&#8217;s what&#8217;s in my hangar:</p>
<p>Jaguar x2 &#8211; &#8220;afdho&#8221; and un-named.  I got into Wolves and Jags when I returned to EVE after my last hiatus.  I have yet to find a real use for these, but that&#8217;s probably due to the fact Ushra&#8217;Khan hasn&#8217;t done anything but sov warfare for the last few months.</p>
<p>Wolf x2 &#8220;TOAST&#8221; and un-named.  See above.</p>
<p>Hurricane x3 &#8220;audhjsaiodf&#8221; &#8220;autumnn&#8217;s hurricane&#8221; &#8220;squeal&#8221;  I got into the hurricane quickly after deciding to change to minmatar ships, but have only recently started to take advantage of the flexibility this ship offers.  &#8220;squeal&#8221; is set up for ratting.</p>
<p>Tempest x2 &#8220;Flat Stanley&#8221; and &#8220;Xious&#8217; Avatar&#8221;  two fleet fit sniper battleships.  &#8220;Flat Stanley&#8221; saw service in several campaigns during the providence cleansing.  I switched from Rokhs to Tempests late in the campaign because of the price.</p>
<p>Buzzard x1 &#8220;stinkfist&#8221; When I started EVE I named all my ships after TOOL songs.  Stinkfist is one of the few left and still has large rigs in it because it&#8217;s from before the rig changes.</p>
<p>Badger x1 &#8220;Autumnn&#8217;s Badger&#8221; yeah&#8230; moving.</p>
<p>Claw x3 &#8220;aoufhd,&#8221; &#8220;FLyT,&#8221; and un-named.  Still trying to get a feel for flying interceptors.</p>
<p>Crow x2 &#8220;cambria&#8221;, un-named.</p>
<p>Manticore x3 merkaba III, IV, V I love stealth bombers.  period.  I&#8217;m still working on figuring out how to be effective in one, but I absolutely love these ships.  Ever since my days in Dirt Nap Squad, I&#8217;ve been keeping at least two of these in the hangar.</p>
<p>Rifter x6 un-named.  I use these to jump into stupid situations for intel, or just to get my blood pumping.  I like rifters, but mostly because they&#8217;re stupid-cheap.</p>
<p>Drake x1 &#8220;bobsled&#8221; Named such because of a &#8220;Thirty Rock&#8221; episode and because I think Drake&#8217;s just look like sleds&#8230; sort of.  This is a ratting ship.</p>
<p>Mostly I&#8217;ve given up trying to keep a cohesive naming scheme&#8230; I tend to just roll my hand over the keyboard. So, what&#8217;s in your hangar?</p>
]]></content:encoded>
			<wfw:commentRss>http://autumnrayne.net/archives/319/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>this is a test post</title>
		<link>http://autumnrayne.net/archives/317</link>
		<comments>http://autumnrayne.net/archives/317#comments</comments>
		<pubDate>Fri, 16 Apr 2010 11:45:10 +0000</pubDate>
		<dc:creator>Autumnn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://autumnrayne.net/?p=317</guid>
		<description><![CDATA[please ignore. A link outside the site a link inside the site]]></description>
			<content:encoded><![CDATA[<p>please ignore.</p>
<p><a href="http://google.com">A link outside the site</a><br />
<a href="http://autumnrayne.net/?page_id=2">a link inside the site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://autumnrayne.net/archives/317/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sometimes I get it&#8230;</title>
		<link>http://autumnrayne.net/archives/306</link>
		<comments>http://autumnrayne.net/archives/306#comments</comments>
		<pubDate>Thu, 15 Apr 2010 20:49:55 +0000</pubDate>
		<dc:creator>Autumnn</dc:creator>
				<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://autumnrayne.net/?p=306</guid>
		<description><![CDATA[So I&#8217;ve been working on figuring out jQuery and have been poking around with a few prebuilt scripts (aka plugins) but was working my way through a guide on constructing selectors and put something of my own together: $("a").not("[href*=&#38;lt;?php bloginfo('url'); ?&#38;gt;]").css("color", "red"); which changes the text color of all links leading away from your wordpress [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been working on figuring out jQuery and have been poking around with a few prebuilt scripts (aka plugins) but was working my way through a guide on constructing selectors and put something of my own together:</p>
<p><code>$("a").not("[href*=&amp;lt;?php bloginfo('url'); ?&amp;gt;]").css("color", "red");</code></p>
<p>which changes the text color of all links leading away from your wordpress site to red.  Some sites highlight these links with a little icon, which would be easy enough to modify this snippet to accomplish.</p>
<p>For a few seconds I was concerned about putting the php inside the javascript, but quickly realized it would be replaced with the blog URL server-side, long before the browser would run the script.</p>
<p>Like I said&#8230; sometimes I get it. Maybe I&#8217;ll take this a step further and make a little wordpress plugin where you can upload your own icon or something.</p>
<p><strong>Update:</strong></p>
<p>I decided to go ahead and use the little wikipedia icon to links that take you to places outside of autumnrayne.net.  I changed the script a bit to add a class rather than creating the CSS since that&#8217;s more in line with the concept of CSS controlling all of your appearances:</p>
<p><code>$("#content a").not("[href^=&amp;lt;?php bloginfo('url'); ?&amp;gt;],[href*=javascript:],.liked ").addClass("external_link");</code></p>
<p>The additional things in the .not() bit are to exclude the &#8220;like this post&#8221; links which are javascript or empty &lt;a class=&#8221;liked&#8221;&gt; tags that the thumbs-up image hook into.  I&#8217;ve also narrowed the scope of the script to just the #content div so that the twitter links and anything else I decide to put in the side bar aren&#8217;t included. I changed the selector for the blog url to anything that starts with (http^=&#8230;) autumnrayne.net otherwise things like the facebook sharing links get included. (or should I say excluded?)</p>
]]></content:encoded>
			<wfw:commentRss>http://autumnrayne.net/archives/306/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pressed Magnolia Studio</title>
		<link>http://autumnrayne.net/archives/300</link>
		<comments>http://autumnrayne.net/archives/300#comments</comments>
		<pubDate>Tue, 13 Apr 2010 01:29:05 +0000</pubDate>
		<dc:creator>Autumnn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://autumnrayne.net/?p=300</guid>
		<description><![CDATA[After months of nagging my wife finally badgered me into finishing the new branding for her photography business, Pressed Magnolia Studio.  She had been using a doodle of mine as a makeshift logo, but wanted something a little more formal.  We&#8217;re still formulating a plan to get some beautiful letterpressed business cards, but you can [...]]]></description>
			<content:encoded><![CDATA[<p>After months of nagging my wife finally badgered me into finishing the new branding for her photography business, <a href="http://pressedmagnoliastudio.com">Pressed Magnolia Studio</a>.  She had been using a doodle of mine as a makeshift logo, but wanted something a little more formal.  We&#8217;re still formulating a plan to get some beautiful letterpressed business cards, but you can view the logo and DVD/CD packaging below.</p>
<p><a href="http://autumnrayne.net/wp-content/uploads/2010/04/PM_web.jpg"><img class="aligncenter size-full wp-image-303" title="Pressed Magnolia Studios Logo" src="http://autumnrayne.net/wp-content/uploads/2010/04/PM_web.jpg" alt="" width="500" height="188" /></a><br />
DVD/CD packaging:<br />
<a href="http://autumnrayne.net/wp-content/uploads/2010/04/IMG_0722.jpg"><img class="aligncenter size-full wp-image-301" title="DVD/CD packaging" src="http://autumnrayne.net/wp-content/uploads/2010/04/IMG_0722.jpg" alt="" width="500" height="667" /></a></p>
<p>Just for comparison, here&#8217;s the old DVD covers she was using:</p>
<p><a href="http://autumnrayne.net/wp-content/uploads/2010/04/IMG_0723.jpg"><img class="aligncenter size-full wp-image-302" title="Old DVD insert" src="http://autumnrayne.net/wp-content/uploads/2010/04/IMG_0723.jpg" alt="" width="500" height="667" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://autumnrayne.net/archives/300/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
