<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><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:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>84degrees</title>
	
	<link>http://sixones.com</link>
	<description>the blog of adam livesley</description>
	<pubDate>Sun, 16 Nov 2008 21:46:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<geo:lat>51.470223</geo:lat><geo:long>-0.183206</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/84degrees" type="application/rss+xml" /><feedburner:emailServiceId>572048</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>simple javascript string starts with</title>
		<link>http://feeds.feedburner.com/~r/84degrees/~3/455294973/</link>
		<comments>http://sixones.com/simple-javascript-string-starts-with/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 21:46:23 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[blog]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://sixones.com/?p=193</guid>
		<description><![CDATA[been working on my php framework (scratch framework), and thought i would share 2 simple functions to implement string starts with and string ends with in javascript.

// usage: stringStartsWith('qwerty', 'qwe')
function stringStartsWith(str, startStr)
{
	return (str.substring(startStr.length, 0) == startStr);
}


// usage: stringEndsWith('qwerty', 'ty')
function stringEndsWith(str, startStr)
{
	return (str.substring(startStr.length, (str.length - startStr.length)) == startStr);
}

enjoy, soon i will move my blog over to [...]]]></description>
			<content:encoded><![CDATA[<p>been working on my php framework (scratch framework), and thought i would share 2 simple functions to implement string starts with and string ends with in javascript.</p>
<p><code><br />
// usage: stringStartsWith('qwerty', 'qwe')<br />
function stringStartsWith(str, startStr)<br />
{<br />
	return (str.substring(startStr.length, 0) == startStr);<br />
}<br />
</code><br />
<code><br />
// usage: stringEndsWith('qwerty', 'ty')<br />
function stringEndsWith(str, startStr)<br />
{<br />
	return (str.substring(startStr.length, (str.length - startStr.length)) == startStr);<br />
}<br />
</code></p>
<p><em>enjoy, soon i will move my blog over to sixones.com wont be using wordpress though! *i think*</em></p>
<img src="http://feeds.feedburner.com/~r/84degrees/~4/455294973" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sixones.com/simple-javascript-string-starts-with/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=84degrees&amp;itemurl=http%3A%2F%2Fsixones.com%2Fsimple-javascript-string-starts-with%2F</feedburner:awareness><feedburner:origLink>http://sixones.com/simple-javascript-string-starts-with/</feedburner:origLink></item>
		<item>
		<title>back to the basics - part #1</title>
		<link>http://feeds.feedburner.com/~r/84degrees/~3/455294974/</link>
		<comments>http://sixones.com/back-to-the-basics/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 23:51:30 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[code guide]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[guide]]></category>

		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://84degrees.com/?p=167</guid>
		<description><![CDATA[the idea behind this series of tutorials is to form a guide, an online book for all to see. its not all fun and games, we will be starting the right way with the theory. theres too many tutorials and books in the world that just start you off on writing code in an easy [...]]]></description>
			<content:encoded><![CDATA[<p>the idea behind this series of tutorials is to form a guide, an online book for all to see. its not all fun and games, we will be starting the right way with the theory. theres too many tutorials and books in the world that just start you off on writing code in an easy to learn language, they rush you through the basics and forget to teach you the art. this is pretty bad for you as a wannabe programmer, programming is an art / discipline that doesnt follow strict guidelines, theres no real right or wrong, once you know the art of programming any language becomes easy to learn (with the exception of binary) and all that really changes is the framework that the language may offer.</p>
<p>update: i should mention this is the first version of the text, it still needs to be changed to suit beginners but the basic outline is there.</p>
<p><span id="more-167"></span></p>
<h3>[requirements]</h3>
<p>the only thing your going to need to follow this guide is a computer connected to the internet, and access to install applications, eventually we will need a compiler (this will be covered when we get to that point).</p>
<h3>[mindset]</h3>
<p>learning to program isnt for everyone, it does require your head to look at things in a slightly different perspective to that of a normal person. by this i mean 2 things, it helps if your a curious person this helps when you face problems and you need to find a solution (this could mean hours of googling, or searching through documentation). you will also need to be able to think about things in a logical way, in programming fate and luck will not help you in order for the computer to follow your code it needs to be logical.</p>
<h3>[authors]</h3>
<p>the whole guide will be written by one of the two authors below, more authors maybe introduced at a later date. if you wish to contribute get in touch!</p>
<p>for those of you that do not know me, im a geek named adam livesley, iv been programming now for 10 years (i was 10ish when i started learning), 4 years commercial work experience in various sectors. over the years i&#8217;ve picked up a number of different languages which i consider myself skillful in; C, C++, C#, java, PHP, delphi, assembly, javascript, BASIC, pascal, ruby, F#, actionscript, objective-c and a few others. </p>
<p>the second author is steve a imperial university student studying electrical engineer. he&#8217;s been programming for roughly 11 years now, and knows a range of languages such as; C, C++, assembly, php, java, c#, delphi, javascript, BASIC, pascal, actionscript and a few more.</p>
<h3>[the art, the discipline]</h3>
<p>when it comes down to it programming is just applied mathematics so it does help if you know your algebra. i always like to think of programming as an art, something that can be a pleasure to do. some tasks can be insanely boring, but others make you think and keep you on your toes. this of course comes down to the developer, if your not trying to enjoy it it wont be very fun.</p>
<p>to put it simple, programming is the art of writing a set of instructions to make a computer preform a task that you want it too. in todays world, theres many different languages in which you can program in, just like there is many different languages in which you can tell your friend to do something. a computer only knows one language and thats binary also known as machine code, binary is not really used to write programs as its incredibly difficult. instead we write our code in a language that is more comparable to english, our code then goes through a compiler / linker / assembler to convert to byte code (or a lower level language).</p>
<h3>[generations]</h3>
<p>with programming languages there are different generations (levels of abstraction from byte code), generally the higher the generation the simpler a language is to use. first generation programming language requires no compiler, the only real 1st gen language would be machine code. a second generation programming language is assembly. the third generation of programming languages is generally the most desired, most modern languages (C, C++, java, C#) are generally considered to be from the 3rd generation of programming languages.</p>
<p>the fourth generation of languages are usually designed with a specific purpose in mind. a good example would be CSS with the specific purpose being a set of rules on how something should look or SQL with the purpose of providing a language that can be used to query data in a database. the final generation is the fifth generation these languages are based around solving problems using constraints, its generally referred to as constraint programming.</p>
<h3>[paradigms]</h3>
<p>within the world of programming there are a few paradigms (concept / abstraction of a program), the main two that we will be looking at are procedural and object oriented. there are of course many many more. different languages support different paradigms, some support multiple such as C++. its wrong to think that C++ is a purely object oriented programming since the programs source requires a main() method outside of any namespaces or class structure. the 2 different paradigms are used to structure your code, as well as allowing you to write things a certain way they can also forbid different techniques. </p>
<p>the first paradigm we will be looking at is procedural programming. procedural programming is usual considered unstructured and simple, the idea is your code follows a simple flow and calls different procedures (or functions, methods, routines, subroutines). the concept is built around the ability to reuse code at different points throughout a program without writing the code multiple times. this is where procedures come into play, procedures contain a series of instructions that should be carried out when the procedure is called.</p>
<p>the second paradigm is object oriented programming, the idea behind object oriented programming or OOP is a programming concept that is organised around objects rather than procedures and data rather than logic. this can include techniques like polymorphism, inheritance and encapsulation. within OOP there&#8217;s different patterns that can be followed such as factory, singleton, prototype, proxy, adapter, observer and many many more. these different patterns are there to over come problems in OOP, of course with each solution comes a range of problems.</p>
<p>dont worry if i&#8217;ve mentioned words or concepts you dont fully understand yet, we will come back to OOP in more detail abit later on, first you need the understanding of procedural programming.</p>
<h3>[notes]</h3>
<p><em>thank science, if this was in way helpful you can encourage me to write more by leaving comments <img src='http://sixones.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<img src="http://feeds.feedburner.com/~r/84degrees/~4/455294974" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sixones.com/back-to-the-basics/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=84degrees&amp;itemurl=http%3A%2F%2Fsixones.com%2Fback-to-the-basics%2F</feedburner:awareness><feedburner:origLink>http://sixones.com/back-to-the-basics/</feedburner:origLink></item>
		<item>
		<title>this is my time of the year</title>
		<link>http://feeds.feedburner.com/~r/84degrees/~3/455294975/</link>
		<comments>http://sixones.com/this-is-my-time-of-the-year/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 00:17:04 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[snowboarding]]></category>

		<category><![CDATA[winter]]></category>

		<guid isPermaLink="false">http://84degrees.com/?p=164</guid>
		<description><![CDATA[sat with my macbook pro looking out onto london, dark clouds stretching over the city. london looks a dark place tonight, thank fuck im inside listening to itunes on party shuffle. its strange to think that its august already, the past year is going too quick.
at least december will be with us soon, by far [...]]]></description>
			<content:encoded><![CDATA[<p>sat with my macbook pro looking out onto london, dark clouds stretching over the city. london looks a dark place tonight, thank fuck im inside listening to itunes on party shuffle. its strange to think that its august already, the past year is going too quick.</p>
<p>at least december will be with us soon, by far the best month of the year. the first layers of snow hit in the earth, and its time to gather friends to head to the mountains. this season im hoping to go to bulgaria with sam spend a week or so tearing up the slopes. then hopefully go somewhere mid-season (feb / march), i think my signal board will still be strong enough. though i need to repair the damage from last year, hit a few rocks jumping over streams and such. also need to invest in a new pair of boots, my feet seemed to of growed and my lovely thirtytwo&#8217;s are abit small for me now, which is a shame. im tempted to get the new <a href="http://thirtytwo.com/boots/exus/" target="_blank">thirtytwo&#8217;s exus boa</a> in white, boa is an awesome system means you dont have laces in your boots instead an easy turn dial that tightens the thin metal wire around the boot.</p>
<p style="text-align: center;"><a title="my snowboard - hung on the wall" rel="lightbox" href="http://farm1.static.flickr.com/54/149508879_65b2ed9bd5_o.jpg"><img class="aligncenter" src="http://farm1.static.flickr.com/54/149508879_65b2ed9bd5_m.jpg" alt="my snowboard - hung on the wall" /></a></p>
<p><em>the days keep fading into night, lost through time.</em></p>
<img src="http://feeds.feedburner.com/~r/84degrees/~4/455294975" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sixones.com/this-is-my-time-of-the-year/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=84degrees&amp;itemurl=http%3A%2F%2Fsixones.com%2Fthis-is-my-time-of-the-year%2F</feedburner:awareness><feedburner:origLink>http://sixones.com/this-is-my-time-of-the-year/</feedburner:origLink></item>
		<item>
		<title>on a different note</title>
		<link>http://feeds.feedburner.com/~r/84degrees/~3/455294976/</link>
		<comments>http://sixones.com/on-a-different-note/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 16:10:08 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[nike+]]></category>

		<guid isPermaLink="false">http://84degrees.com/?p=155</guid>
		<description><![CDATA[got my nike+ the other day, hoping it will help me improve my running since it keeps all my stats and such. the one thing that is annoying is the flash widgets, so im tempted to write a wordpress widget for displaying the data from nike+ then i can style with it with css.
was thinking [...]]]></description>
			<content:encoded><![CDATA[<p>got my nike+ the other day, hoping it will help me improve my running since it keeps all my stats and such. the one thing that is annoying is the flash widgets, so im tempted to write a wordpress widget for displaying the data from nike+ then i can style with it with css.</p>
<p>was thinking about writing up a series of programming tutorials, to turn n00bz into programmers and good ones at that. most tutorials around the net, start you off on a simple language like java, really its best to start on a more low level language like C and C++ or assembly if your feeling brave. then when you happily understand the fundamentals of programming the different languages become easier to use and all that really becomes a pain is the different framework names.</p>
<p>again completely changing subjects; shortly i should have subversion repositories for firemint and expose. for other developers that wish to contribute, or developers that prefer to update via subversion and have the bleeding edge builds.</p>
<p><em>any how, off to see dark knight</em></p>
<img src="http://feeds.feedburner.com/~r/84degrees/~4/455294976" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sixones.com/on-a-different-note/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=84degrees&amp;itemurl=http%3A%2F%2Fsixones.com%2Fon-a-different-note%2F</feedburner:awareness><feedburner:origLink>http://sixones.com/on-a-different-note/</feedburner:origLink></item>
		<item>
		<title>ready ready set go</title>
		<link>http://feeds.feedburner.com/~r/84degrees/~3/455294977/</link>
		<comments>http://sixones.com/ready-ready-set-go/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 11:31:00 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[expose]]></category>

		<category><![CDATA[firemint]]></category>

		<guid isPermaLink="false">http://84degrees.com/?p=136</guid>
		<description><![CDATA[well, its finally ready firemint v2b1 and expose v0.2, there both still in beta and lack features that will be included in the full version (firemint v2 / expose v1). at the moment quite alot of stats are missing from firemint, this will change shortly.
before you use either expose or firemint, make sure your comfortable [...]]]></description>
			<content:encoded><![CDATA[<p>well, its finally ready firemint v2b1 and expose v0.2, there both still in beta and lack features that will be included in the full version (firemint v2 / expose v1). at the moment quite alot of stats are missing from firemint, this will change shortly.</p>
<p>before you use either expose or firemint, make sure your comfortable with using beta applications. information on installing each application and download links are below;</p>
<p><a href="http://84degrees.com/firemint/" target="_self">http://84degrees.com/firemint/</a><br />
<a href="http://84degrees.com/expose/" target="_self">http://84degrees.com/expose/</a></p>
<p><em>knock yourselves out <img src='http://sixones.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </em></p>
<img src="http://feeds.feedburner.com/~r/84degrees/~4/455294977" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sixones.com/ready-ready-set-go/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=84degrees&amp;itemurl=http%3A%2F%2Fsixones.com%2Fready-ready-set-go%2F</feedburner:awareness><feedburner:origLink>http://sixones.com/ready-ready-set-go/</feedburner:origLink></item>
		<item>
		<title>a small look upgrade</title>
		<link>http://feeds.feedburner.com/~r/84degrees/~3/455294978/</link>
		<comments>http://sixones.com/a-small-look-upgrade/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 01:03:54 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[flock]]></category>

		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://84degrees.com/?p=119</guid>
		<description><![CDATA[spent the night yesterday adjusting the look and feel on my blog as well as adding in the sidebar. looks a bit better now, and it&#8217;s actually possible to navigate! though I&#8217;m still missing the post navigation, hopefully il fix it up soon. im still not so sure on the current &#8220;design&#8221; im using, wish [...]]]></description>
			<content:encoded><![CDATA[<p>spent the night yesterday adjusting the look and feel on my blog as well as adding in the sidebar. looks a bit better now, and it&#8217;s actually possible to navigate! though I&#8217;m still missing the post navigation, hopefully il fix it up soon. im still not so sure on the current &#8220;design&#8221; im using, wish my design skills were a bit better.</p>
<p>for the past few weeks, iv been using flock 2 beta as my browser. the more i use it, the more annoyed im getting with it. the UI isnt as nice as the rest of my mac apps, the top bar is insanely cluttered, the youtube media stream messages make it impossible to play a youtube video, the twitter sidebar is utter crap; it never updates and the user flow isnt the best. the idea for the browser is brilliant, i like the idea of being able to drag images from the media bar into a textarea, its nice having twitter right in your browser. the idea&#8217;s are all good, but the flocksters have implemented them poorly (yes, i know i use the beta. i should expect bugs, but i get the same problems in flock 1). the flock team seem to be pushing more new features in releases rather than bug fixes and improvements on old features, i guess this is what to expect when projects become commercialised, the dark force of money and greed take priority over a decent product. flock fail.</p>
<p><em>/rant over</em></p>
<p>btw, wrote this post from the wordpress iphone app, nice to use though not so desirable for long posts.</p>
<img src="http://feeds.feedburner.com/~r/84degrees/~4/455294978" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sixones.com/a-small-look-upgrade/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=84degrees&amp;itemurl=http%3A%2F%2Fsixones.com%2Fa-small-look-upgrade%2F</feedburner:awareness><feedburner:origLink>http://sixones.com/a-small-look-upgrade/</feedburner:origLink></item>
		<item>
		<title>alot happens in a second</title>
		<link>http://feeds.feedburner.com/~r/84degrees/~3/455294979/</link>
		<comments>http://sixones.com/alot-happens-in-a-second/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 22:42:52 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[game dev]]></category>

		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://84degrees.com/?p=110</guid>
		<description><![CDATA[these days im finding it harder and harder to write posts, can never think of what to say or what to talk about. today its the same, open flock&#8217;s post editor, just left it sat there with an empty textbox.
sometime in the future (6 hours or so) &#8230;
recently iv been changing my life around abit, [...]]]></description>
			<content:encoded><![CDATA[<p>these days im finding it harder and harder to write posts, can never think of what to say or what to talk about. today its the same, open flock&#8217;s post editor, just left it sat there with an empty textbox.</p>
<p><span style="font-style: italic;">sometime in the future (6 hours or so) &#8230;</span></p>
<p>recently iv been changing my life around abit, trying to improve myself!! iv stopped smoking cigarettes, started running, redesigned my blog, renewed some old projects like firemint, started game development and iv started studying AS / A2 advanced maths from a few textbooks. the aim is to make myself better, and to keep improving my knowledge. w00t w00t!</p>
<p>in the game development area i&#8217;ve been thinking about some ideas for iphone games. after watching my flatmate play quake (from cydia) i realised a first person shooter really doesn&#8217;t work on the iphone. instead a time crisis game style could work quite nicely, since the user doesn&#8217;t need to control the movement of the character (as in moving around a map not aiming). time crisis works by moving the user&#8217;s character to points around a map, at each point the user can crouch behind an object and fire at a group of enemies. its generally a multiplayer arcade game that uses a gun as a controller, on the iphone the accelerometers could be used to move the cross hair to shoot enemies, a touch on the screen could simply toggle the crouch mode / change weapon.</p>
<p>my second idea is a bit different, simple game where the user controls a spaceship and can move around a 3d environment to shoot down enemies. the accelerometers being used to control movement, touch on the screen controls shooting and weapons. after i told beef, he had the geeky idea to make it star wars themed, user flies an x-wing star fighter and shoots down tie fighters.</p>
<p>might start one of the ideas as an open source project, stick it in cydia or maybe app store depending on how it goes.</p>
<p>on a different note, last night i decided to add multiple mint support to firemint v2. amazingly it wasn&#8217;t too much of pain to implement, xD</p>
<p><span style="font-style: italic;">sssssssssssssssssssssssshhh</span></p>
<img src="http://feeds.feedburner.com/~r/84degrees/~4/455294979" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sixones.com/alot-happens-in-a-second/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=84degrees&amp;itemurl=http%3A%2F%2Fsixones.com%2Falot-happens-in-a-second%2F</feedburner:awareness><feedburner:origLink>http://sixones.com/alot-happens-in-a-second/</feedburner:origLink></item>
		<item>
		<title>almost there</title>
		<link>http://feeds.feedburner.com/~r/84degrees/~3/455294980/</link>
		<comments>http://sixones.com/firemint-is-almost-there/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 01:05:27 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[expose]]></category>

		<category><![CDATA[firemint]]></category>

		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://84degrees.com/?p=98</guid>
		<description><![CDATA[its almost ready, just needs a few more tweaks. so far firemint is working well in firefox 3 and flock 2 beta, its not been tested in firefox 2 yet. it should work fine though. *i hope*
expose is almost ready as well, just need to write up some documentation on how to use the api [...]]]></description>
			<content:encoded><![CDATA[<p>its almost ready, just needs a few more tweaks. so far firemint is working well in firefox 3 and flock 2 beta, its not been tested in firefox 2 yet. it should work fine though. *i hope*</p>
<p>expose is almost ready as well, just need to write up some documentation on how to use the api and add in a few more methods for querying data.</p>
<p>the install / download buttons arent working on the moment, im hoping this weekend both firemint + expose can be released.</p>
<p>until there ready enjoy my last.fm tag cloud;</p>
<p style="text-align: center;"><a title="my last.fm tag cloud" href="http://www.flickr.com/photos/71629425@N00/2710380670/"><br />
<img class="aligncenter" src="http://static.flickr.com/3047/2710380670_f21293e95d_d.jpg" border="0" alt="" /></a></p>
<img src="http://feeds.feedburner.com/~r/84degrees/~4/455294980" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sixones.com/firemint-is-almost-there/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=84degrees&amp;itemurl=http%3A%2F%2Fsixones.com%2Ffiremint-is-almost-there%2F</feedburner:awareness><feedburner:origLink>http://sixones.com/firemint-is-almost-there/</feedburner:origLink></item>
		<item>
		<title>firemint v2</title>
		<link>http://feeds.feedburner.com/~r/84degrees/~3/455294981/</link>
		<comments>http://sixones.com/firemint-v2/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 23:26:12 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[firefox]]></category>

		<category><![CDATA[firemint]]></category>

		<guid isPermaLink="false">http://84degrees.com/?p=6</guid>
		<description><![CDATA[to sort wordpress out i decided to move the firemint and expose posts to there own pages, since it makes more sense! tomorrow im going to try and sort my sidebar out, make it abit easier to navigate.
everything about firemint is now here; http://84degrees.com/firemint/
enjoy
]]></description>
			<content:encoded><![CDATA[<p>to sort wordpress out i decided to move the firemint and expose posts to there own pages, since it makes more sense! tomorrow im going to try and sort my sidebar out, make it abit easier to navigate.</p>
<p>everything about firemint is now here; <a href="http://84degrees.com/firemint/">http://84degrees.com/firemint/</a></p>
<p><em>enjoy</em></p>
<img src="http://feeds.feedburner.com/~r/84degrees/~4/455294981" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sixones.com/firemint-v2/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=84degrees&amp;itemurl=http%3A%2F%2Fsixones.com%2Ffiremint-v2%2F</feedburner:awareness><feedburner:origLink>http://sixones.com/firemint-v2/</feedburner:origLink></item>
		<item>
		<title>84degrees v3</title>
		<link>http://feeds.feedburner.com/~r/84degrees/~3/455294982/</link>
		<comments>http://sixones.com/84degrees-v3/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 00:08:21 +0000</pubDate>
		<dc:creator>adam</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[firemint]]></category>

		<guid isPermaLink="false">http://84degrees.com/?p=3</guid>
		<description><![CDATA[im back with my blog on 84degrees.com, trying to come up with a design. hopefully this time my blog will be used, hoping to release firemint v2 soon and im considering the redevelopment of zenses but as a cross platform application (rather than .net).
firemint v2, will contain extra stats but will require a special pepper [...]]]></description>
			<content:encoded><![CDATA[<p>im back with my blog on 84degrees.com, trying to come up with a design. hopefully this time my blog will be used, hoping to release firemint v2 soon and im considering the redevelopment of zenses but as a cross platform application (rather than .net).</p>
<p>firemint v2, will contain extra stats but will require a special pepper to be installed in mint. fully compatible with firefox 3, and flock 2. will post some screenshots soon.</p>
<img src="http://feeds.feedburner.com/~r/84degrees/~4/455294982" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sixones.com/84degrees-v3/feed/</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=84degrees&amp;itemurl=http%3A%2F%2Fsixones.com%2F84degrees-v3%2F</feedburner:awareness><feedburner:origLink>http://sixones.com/84degrees-v3/</feedburner:origLink></item>
	<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetFeedData?uri=84degrees</feedburner:awareness></channel>
</rss>
