<?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>Henrik Poulsen&#039;s Website</title>
	<atom:link href="http://dragonspawn.se/feed/" rel="self" type="application/rss+xml" />
	<link>http://dragonspawn.se</link>
	<description>The aspirations of a Game Programmer</description>
	<lastBuildDate>Sun, 25 Apr 2010 19:15:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Compiling a run-time generated DirectX 11 shader</title>
		<link>http://dragonspawn.se/2010/04/compiling-a-run-time-generated-directx-11-shader/</link>
		<comments>http://dragonspawn.se/2010/04/compiling-a-run-time-generated-directx-11-shader/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 13:16:47 +0000</pubDate>
		<dc:creator>Henrik</dc:creator>
				<category><![CDATA[3D Programming]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[3D Engine]]></category>
		<category><![CDATA[Bad excuse for not blogging more often]]></category>
		<category><![CDATA[char*]]></category>
		<category><![CDATA[D3DCompile]]></category>
		<category><![CDATA[DirectX]]></category>
		<category><![CDATA[DirectX 10]]></category>
		<category><![CDATA[DirectX 11]]></category>
		<category><![CDATA[DirectX 9]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[Game Programming]]></category>
		<category><![CDATA[generate]]></category>
		<category><![CDATA[generate shader]]></category>
		<category><![CDATA[generation]]></category>
		<category><![CDATA[HLSL]]></category>
		<category><![CDATA[mesh]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[pixel]]></category>
		<category><![CDATA[pixel shader]]></category>
		<category><![CDATA[procedural]]></category>
		<category><![CDATA[procedural shader]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[shader]]></category>
		<category><![CDATA[shader generation]]></category>
		<category><![CDATA[shader generator]]></category>
		<category><![CDATA[stringstream]]></category>
		<category><![CDATA[vertex]]></category>
		<category><![CDATA[vertex shader]]></category>

		<guid isPermaLink="false">http://dragonspawn.se/?p=80</guid>
		<description><![CDATA[I recently got the idea to try to create a procedural shader system for DirectX 11. This basically entails that one simply throws a mesh at the shader generator and it generates a customized shader for this mesh that suits it perfectly.
I knew it is being done in high-end game engines but I had no [...]]]></description>
			<content:encoded><![CDATA[<p>I recently got the idea to try to create a procedural shader system for DirectX 11. This basically entails that one simply throws a mesh at the shader generator and it generates a customized shader for this mesh that suits it perfectly.<br />
I knew it is being done in high-end game engines but I had no idea how one actually does it. I spent quite a lot of time on google trying to find this, but it basically looks like some universal secret even though it actually is quite simple. So I played around with it a bit and I managed to get it to work in the end. So the follow code snippet is the procedure I used for getting it to work, probably a whole load of other ones out there.<br />
Just hope this saves other people the same frustrations I had for a while.</p>
<pre>void GenerateShader()
{
        ostringstream shader;

        // Basic Vertex Shader
	shader &lt;&lt; "float4 BasicVS( float4 Pos : POSITION ) : SV_POSITION" &lt;&lt; endl;
	shader &lt;&lt; "{" &lt;&lt; endl;
	shader &lt;&lt; "	return Pos;" &lt;&lt; endl;
	shader &lt;&lt; "}" &lt;&lt; endl;

        // Basic Pixel Shader
	shader &lt;&lt; "float4 BasicPS( float4 Pos : SV_POSITION ) : SV_Target" &lt;&lt; endl;
	shader &lt;&lt;"{" &lt;&lt; endl;
	shader &lt;&lt;"	return float4( 1.0f, 1.0f, 1.0f, 1.0f );" &lt;&lt; endl;
	shader &lt;&lt;"}" &lt;&lt; endl;

        // A standard DirectX 10 technique
	shader &lt;&lt; "technique10 DefaultTechnique" &lt;&lt; endl;
	shader &lt;&lt; "{" &lt;&lt; endl;
	shader &lt;&lt; "	pass p0" &lt;&lt; endl;
	shader &lt;&lt; "	{" &lt;&lt; endl;
	shader &lt;&lt; "		SetGeometryShader(NULL);" &lt;&lt; endl;
	shader &lt;&lt; "		SetVertexShader(CompileShader(vs_4_0, BasicVS()));" &lt;&lt; endl;
	shader &lt;&lt; "		SetPixelShader(CompileShader(ps_4_0, BasicPS()));" &lt;&lt; endl;
	shader &lt;&lt; "	}" &lt;&lt; endl;
	shader &lt;&lt; "}" &lt;&lt; endl;         

        // This is where the "magic" is at. Grab the char* from your stringstream
        // and feed it into D3DCompile() along with whatever other parameters you usually send it.
        ID3DBlob* errorBlob;
        unsigned int shaderSize = shader.str().size() * sizeof(char);
        HRESULT hr = D3DCompile(shader.str().c_str(), shaderSize, "none", 0, 0, "DefaultTechnique",
                                          "fx_4_0", D3D10_SHADER_ENABLE_STRICTNESS, 0, &amp;blob_, &amp;errorBlob);
	if( FAILED(hr) )
        {
                OutputDebugStringA( (char*)errorBlob-&gt;GetBufferPointer() );
	}
	SAFE_RELEASE( errorBlob );
}</pre>
<p>So now all that is left is 99.9% of the work to actually switch case together a shader that supports all the things your different meshes might need.<br />
Maybe I will post something on that later when I manage to make a dent in that daunting task :p</p>
]]></content:encoded>
			<wfw:commentRss>http://dragonspawn.se/2010/04/compiling-a-run-time-generated-directx-11-shader/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Relief &amp; Parallax Mapping</title>
		<link>http://dragonspawn.se/2010/02/relief-parallax-mapping/</link>
		<comments>http://dragonspawn.se/2010/02/relief-parallax-mapping/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 11:28:38 +0000</pubDate>
		<dc:creator>Henrik</dc:creator>
				<category><![CDATA[3D Programming]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[DirectX]]></category>
		<category><![CDATA[DX10]]></category>
		<category><![CDATA[Game Programming]]></category>
		<category><![CDATA[HLSL]]></category>
		<category><![CDATA[normal mapping]]></category>
		<category><![CDATA[Parallax]]></category>
		<category><![CDATA[parallax mapping]]></category>
		<category><![CDATA[Relief]]></category>
		<category><![CDATA[relief mapping]]></category>

		<guid isPermaLink="false">http://dragonspawn.se/?p=73</guid>
		<description><![CDATA[
I implemented this during a weekend, mostly because relief mapping has always interested me. Decided to toss in parallax mapping as well when I was &#8220;in the neighborhood&#8221;, and a little normal mapping for good measure as well. This is the basic implementation of both techniques with no optimizations or artifact corrections.
Here is a small [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/gWB81IGpz9k&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/gWB81IGpz9k&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I implemented this during a weekend, mostly because relief mapping has always interested me. Decided to toss in parallax mapping as well when I was &#8220;in the neighborhood&#8221;, and a little normal mapping for good measure as well. This is the basic implementation of both techniques with no optimizations or artifact corrections.</p>
<p>Here is a small code snippet. Nothing special, just don&#8217;t like to not show code.</p>
<pre>
float ray_intersect_relief(in float2 orig, in float2 dir)
{
    const float max_num_linear_steps = 20;
    const float max_num_binary_steps = 5;
    float depth = 0.0f;
    float size = 1.0f / max_num_linear_steps;</pre>
<pre>// Attempt to find the first intersection against the relief map with a linear search.
    // This is because binary search can easily miss topography.
    for(int i = 0; i &lt; max_num_linear_steps - 1; i++)
    {
        float4 t = gTexRelief.Sample(textureSampler, orig + dir * depth);
        if(depth &lt; t.r)
            depth += size;
    }
</pre>
<pre>     // A binary search to try and find the "edge" of the closest intersection point
    for(int j = 0; j &lt; max_num_binary_steps; j++)
    {
        size *= 0.5f;
        float4 t = gTexRelief.Sample(textureSampler, orig + dir * depth);
        if(depth &lt; t.r)
            depth += 2*size;
        depth -= size;
    }
    return depth;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://dragonspawn.se/2010/02/relief-parallax-mapping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>100 days later (give or take a few)</title>
		<link>http://dragonspawn.se/2010/01/100-days-later-give-or-take-a-few/</link>
		<comments>http://dragonspawn.se/2010/01/100-days-later-give-or-take-a-few/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 12:04:56 +0000</pubDate>
		<dc:creator>Henrik</dc:creator>
				<category><![CDATA[3D Programming]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Bad excuse for not blogging more often]]></category>
		<category><![CDATA[deferred]]></category>
		<category><![CDATA[deferred rendering]]></category>
		<category><![CDATA[deferred shading]]></category>
		<category><![CDATA[Game Programming]]></category>
		<category><![CDATA[parallax map]]></category>
		<category><![CDATA[parallax mapping]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[relief map]]></category>
		<category><![CDATA[relief mapping]]></category>
		<category><![CDATA[Screen space ambient occlusion]]></category>
		<category><![CDATA[SSAO]]></category>

		<guid isPermaLink="false">http://dragonspawn.se/?p=71</guid>
		<description><![CDATA[So&#8230; It&#8217;s been a while.
Life is good, excluding the torment of a dying molar, and not a whole lot has happened in this time of silence. Work has been good, but has not really been related to what I wanted to write about in this blog so I opted to stay quiet for a while.
Lately [...]]]></description>
			<content:encoded><![CDATA[<p>So&#8230; It&#8217;s been a while.</p>
<p>Life is good, excluding the torment of a dying molar, and not a whole lot has happened in this time of silence. Work has been good, but has not really been related to what I wanted to write about in this blog so I opted to stay quiet for a while.</p>
<p>Lately I started looking at available positions in various game companies and it was somewhat upsetting to notice that you are not really suited for filling any position other than as a junior. So I basically decided that I really needed to do something about my portfolio. It was a while back that I decided this, but there was Christmas and stuff in the way so I haven&#8217;t really started doing stuff until now. Now it has begun though.</p>
<p>The general idea is that I will simply implement all the various things I have always wanted to try and then post the results in the portfolio section (hopefully with some binaries as well). The types of thing I will be implementing will mostly be 3D graphics related, since this is the area I always seem to find myself drooling over. But there will also be some other stuff like resource management and so on.</p>
<p>I have already implemented the first thing I will be putting on the portfolio (relief mapping) and it will be going up there shortly (probably not today though). Other things to be expected, in the very near future, are things like, just to name a few: Parallax mapping, Screen Space Ambient Occlusion, Deferred rendering.</p>
<p>If one refuses to work for any other industry one can only blame themselves for not doing everything in their power to be worthy of working there.</p>
]]></content:encoded>
			<wfw:commentRss>http://dragonspawn.se/2010/01/100-days-later-give-or-take-a-few/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lots of changes</title>
		<link>http://dragonspawn.se/2009/09/lots-of-changes/</link>
		<comments>http://dragonspawn.se/2009/09/lots-of-changes/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 08:23:38 +0000</pubDate>
		<dc:creator>Henrik</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Blekinge]]></category>
		<category><![CDATA[BTH]]></category>
		<category><![CDATA[College]]></category>
		<category><![CDATA[fresh prince lyrics]]></category>
		<category><![CDATA[Game Programming]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[Högskola]]></category>
		<category><![CDATA[I got an effin' job!]]></category>
		<category><![CDATA[Leave of Absence]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Quantum Studios]]></category>
		<category><![CDATA[xDelia]]></category>

		<guid isPermaLink="false">http://dragonspawn.se/?p=41</guid>
		<description><![CDATA[Yeah so I went to the job meeting. 15 minutes into the meeting I got the job! So I am now a full time employee ( for 6 months at least ) at the xDelia project as a game programmer.
I start tomorrow already, so it is going a million miles an hour at the moment. [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah so I went to the job meeting. 15 minutes into the meeting I got the job! So I am now a full time employee ( for 6 months at least ) at the <a title="xDelia Project" href="http://www.xdelia.org/" target="_blank">xDelia project</a> as a game programmer.</p>
<p>I start tomorrow already, so it is going a million miles an hour at the moment. I am headed over to Germany, Tuesday &#8211; Thursday, next week for some work related workshop as well. So lots of things happening indeed.</p>
<p>So now there&#8217;s lots to do. I need to fill out some papers for the educational part of school and report that I am taking a leave of absence. Then of course there is also contract signing and all matter of other stuff I need to fix with the job (have to hunt down a computer for my room, and then of course have someone tell me where my room is). Not to mention having to report to CSN my leave of absence as well so they&#8217;ll stop sending me money, but for some reason you need to know how much you will earn, which I don&#8217;t know yet, before you are allowed to report a leave of absence. Seems kind of silly to me.</p>
<blockquote><p>Now this is the story all about how<br />
My life got flipped, turned upside down</p></blockquote>
<p>Kinda how it feels. This will pretty much change everything I was doing. No more school for a while of course and iPhone coding will be put on the back-burner again. It is, however, all good. I get what I value most. Experience. With the economy as it is there is no way in Helsinki that any game company would hire someone that has no prior work experience. So this job will be worth a lot for my CV. Hopefully it will be for at least a year. Generally looks better in the resumé than 6 months, I say anyway.</p>
<p>So who&#8217;s turn is it next now then from Quantum Studios?</p>
]]></content:encoded>
			<wfw:commentRss>http://dragonspawn.se/2009/09/lots-of-changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Full speed ahead&#8230; into nothing?</title>
		<link>http://dragonspawn.se/2009/09/full-speed-ahead-into-nothing/</link>
		<comments>http://dragonspawn.se/2009/09/full-speed-ahead-into-nothing/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 13:18:17 +0000</pubDate>
		<dc:creator>Henrik</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://dragonspawn.se/?p=38</guid>
		<description><![CDATA[Yeah so I&#8217;m still full up with all the school assignments. My little web server is slowly getting somewhere, if it will be done within a reasonable amount of time is yet unknown.
I recieved what could seem to be a job offer the other day. I don&#8217;t really know what terms are involved yet (pay, [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah so I&#8217;m still full up with all the school assignments. My little web server is slowly getting somewhere, if it will be done within a reasonable amount of time is yet unknown.</p>
<p>I recieved what could seem to be a job offer the other day. I don&#8217;t really know what terms are involved yet (pay, hours, duration, etc) so trying to not get my hopes up. Going to meet up with the person that contacted me on tuesday and discuss it. Hopefully it will be something worthwhile. I really want an excuse to cut down on college for a while.</p>
<p>I really hope it will lead somewhere, but no point in obsessing about it until tuesday.</p>
<p>Back to C and continue with the web server a while longer.</p>
]]></content:encoded>
			<wfw:commentRss>http://dragonspawn.se/2009/09/full-speed-ahead-into-nothing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web server</title>
		<link>http://dragonspawn.se/2009/09/web-server/</link>
		<comments>http://dragonspawn.se/2009/09/web-server/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 09:23:29 +0000</pubDate>
		<dc:creator>Henrik</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Assignment]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Carmack]]></category>
		<category><![CDATA[Game Programming]]></category>
		<category><![CDATA[Job]]></category>
		<category><![CDATA[Keendra]]></category>

		<guid isPermaLink="false">http://dragonspawn.se/?p=36</guid>
		<description><![CDATA[So I started on the web server assignment. I can tell already that this is gonna take plenty of hours to finish. So the plan is to continue working on that today. Hopefully I will learn something from this that I will actually need some day.
Also got rejected from the job I applied to the [...]]]></description>
			<content:encoded><![CDATA[<p>So I started on the web server assignment. I can tell already that this is gonna take plenty of hours to finish. So the plan is to continue working on that today. Hopefully I will learn something from this that I will actually need some day.</p>
<p>Also got rejected from the job I applied to the other day. Kinda silly that companies won&#8217;t even consider people with no prior job experience, where will the next Carmack come from then? ( did <a href="http://www.keendra.com"target="_blank"title="Johanna Landgren\\\'s Website" >keendra</a> smile now? ) :p</p>
<p>There should be a law on companies having to offer junior positions if their corporation is larger than x people =P As long as there is senior staff there it shouldn&#8217;t matter all that much if some of the positions gets filled by post-grads.</p>
]]></content:encoded>
			<wfw:commentRss>http://dragonspawn.se/2009/09/web-server/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>No news is good news?</title>
		<link>http://dragonspawn.se/2009/09/no-news-is-good-news/</link>
		<comments>http://dragonspawn.se/2009/09/no-news-is-good-news/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 11:35:16 +0000</pubDate>
		<dc:creator>Henrik</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Assignment]]></category>
		<category><![CDATA[Bad excuse for not blogging more often]]></category>
		<category><![CDATA[BTH]]></category>
		<category><![CDATA[Job]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://dragonspawn.se/?p=34</guid>
		<description><![CDATA[Yeah so I haven&#8217;t written in a while. Been busy with school so there hasn&#8217;t been much progress with the &#8220;furthering of my career&#8221; aspect of my life.
One of the courses I am taking is assignment oriented, so there is no exam, which makes the assignments very time consuming. So I have been working alot [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah so I haven&#8217;t written in a while. Been busy with school so there hasn&#8217;t been much progress with the &#8220;furthering of my career&#8221; aspect of my life.</p>
<p>One of the courses I am taking is assignment oriented, so there is no exam, which makes the assignments very time consuming. So I have been working alot at that.</p>
<p>After these few weeks of being back to school I have convinced myself that I really need to try harder to find a job. School is nice and stuff, but I feel ready to make a name for myself and gain proper work experience.</p>
<p>So I updated my portfolio a bit today (just added info about my Bachelor&#8217;s thesis) and found a job I am going to apply for as well. So the rest of the day will be dedicated to three tasks.</p>
<ol>
<li>Write a cover letter and apply for the job.</li>
<li>Start looking at the next assignment.</li>
<li>Go to Amiralen (a local shopping center) and do some grocery shopping (Dragons need food apparently).</li>
</ol>
<p>So yeah, thats about it.</p>
<p>Give me a job!</p>
]]></content:encoded>
			<wfw:commentRss>http://dragonspawn.se/2009/09/no-news-is-good-news/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Networking Done</title>
		<link>http://dragonspawn.se/2009/08/networking-done/</link>
		<comments>http://dragonspawn.se/2009/08/networking-done/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 10:53:52 +0000</pubDate>
		<dc:creator>Henrik</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[BTH]]></category>
		<category><![CDATA[freevo]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[UDP]]></category>

		<guid isPermaLink="false">http://dragonspawn.se/2009/08/networking-done/</guid>
		<description><![CDATA[The UDP networking is now done for my Freevo remote app, tested it with my Freevo server earlier and it works perfectly. Just have to finish up the Settings tab, which will most likely be done today, so that one can specify what host and port it should connect to and stuff like that. Then [...]]]></description>
			<content:encoded><![CDATA[<p>The UDP networking is now done for my Freevo remote app, tested it with my Freevo server earlier and it works perfectly. Just have to finish up the Settings tab, which will most likely be done today, so that one can specify what host and port it should connect to and stuff like that. Then it’s just the final icons and intensive bug testing and tweaking left to do. Making this app has been a great help in putting the stuff I have learned in the book into practice. </p>
<p>So school starts again tomorrow. Or well not really. I’m just going to talk to someone about what courses I decided on for my master’s education (since you get to pick 90% of the curriculum yourself). The courses don’t actually start until Tuesday. Will be nice to start meeting other people again, rather than sitting here cooped up in Karlskrona with nobody we know.</p>
]]></content:encoded>
			<wfw:commentRss>http://dragonspawn.se/2009/08/networking-done/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Results of The Day</title>
		<link>http://dragonspawn.se/2009/08/the-results-of-the-day/</link>
		<comments>http://dragonspawn.se/2009/08/the-results-of-the-day/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 19:50:14 +0000</pubDate>
		<dc:creator>Henrik</dc:creator>
				<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[freevo]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[remote]]></category>

		<guid isPermaLink="false">http://dragonspawn.se/2009/08/the-results-of-the-day/</guid>
		<description><![CDATA[Two posts in one day? What the hamburger?!
Who knows? It sure is strange.
However! I just wanted to show the progress I have made today. Worked most of the day on this thing, or well not just the app. The thing is that I needed a Tab Bar for the app, so of course I had [...]]]></description>
			<content:encoded><![CDATA[<p>Two posts in one day? What the hamburger?!</p>
<p>Who knows? It sure is strange.</p>
<p>However! I just wanted to show the progress I have made today. Worked most of the day on this thing, or well not just the app. The thing is that I needed a Tab Bar for the app, so of course I had to actually learn how to make Tab Bars. So that’s where half the time went.</p>
<p>Anywho, I have the general layout pegged down now. So now I just have to get the actual networking part working again, since I had to refactor the code quite a bit which resulted in nothing working anymore, but that is tomorrow’s project.</p>
<p>Before I end this I just want to show some screenshots of the app. It doesn’t look like much, because it isn’t much. At least it is something though, progress.</p>
<p><a href="http://dragonspawn.se/wp-content/uploads/IMG_0085.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="IMG_0085" src="http://dragonspawn.se/wp-content/uploads/IMG_0085_thumb.png" border="0" alt="IMG_0085" width="164" height="244" /></a> <a href="http://dragonspawn.se/wp-content/uploads/IMG_0086.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="IMG_0086" src="http://dragonspawn.se/wp-content/uploads/IMG_0086_thumb.png" border="0" alt="IMG_0086" width="164" height="244" /></a> <a href="http://dragonspawn.se/wp-content/uploads/IMG_0087.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="IMG_0087" src="http://dragonspawn.se/wp-content/uploads/IMG_0087_thumb.png" border="0" alt="IMG_0087" width="164" height="244" /></a> <a href="http://dragonspawn.se/wp-content/uploads/IMG_0088.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="IMG_0088" src="http://dragonspawn.se/wp-content/uploads/IMG_0088_thumb.png" border="0" alt="IMG_0088" width="164" height="244" /></a> .</p>
<p>The “Settings” tab doesn’t show much you might say. I, however, claim that it says “POTENTIAL”!</p>
]]></content:encoded>
			<wfw:commentRss>http://dragonspawn.se/2009/08/the-results-of-the-day/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Art update</title>
		<link>http://dragonspawn.se/2009/08/art-update/</link>
		<comments>http://dragonspawn.se/2009/08/art-update/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 06:29:37 +0000</pubDate>
		<dc:creator>Henrik</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Andreas Nilsson]]></category>
		<category><![CDATA[BTH]]></category>
		<category><![CDATA[freevo]]></category>
		<category><![CDATA[frezorer]]></category>
		<category><![CDATA[hugeanticpeanut]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rasmus Welin]]></category>
		<category><![CDATA[RPG]]></category>

		<guid isPermaLink="false">http://dragonspawn.se/2009/08/art-update/</guid>
		<description><![CDATA[So I found some artists to help me out with my apps. Andreas Nilsson is making some icons for the Freevo remote app. Rasmus Welin is learning how to make sprite characters for the usage in the JRPG I mentioned previously. So now I just have to get out of procrastination mode and continue work [...]]]></description>
			<content:encoded><![CDATA[<p>So I found some artists to help me out with my apps. <a title="Andrea's Deviant page" href="http://frezorer.deviantart.com" target="_blank">Andreas Nilsson</a> is making some icons for the Freevo remote app. <a title="Rasmus' Deviant page" href="http://hugeanticpeanut.deviantart.com" target="_blank">Rasmus Welin</a> is learning how to make sprite characters for the usage in the JRPG I mentioned previously. So now I just have to get out of procrastination mode and continue work on the apps.<br />
Starting the Masters education on Monday at <a href="http://www.bth.se"target="_blank"title="BTH Website" >BTH</a>, so I don&#8217;t know how much time there will be for programming on these things during the week, but there&#8217;s always the weekends.</p>
]]></content:encoded>
			<wfw:commentRss>http://dragonspawn.se/2009/08/art-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
