<?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>Westsworld</title>
	
	<link>http://westsworld.dk</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 02 Jun 2010 11:15:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/westsworld" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="westsworld" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>WPML, what is the current language?</title>
		<link>http://westsworld.dk/blog/2010/05/wpml-what-is-the-current-language/</link>
		<comments>http://westsworld.dk/blog/2010/05/wpml-what-is-the-current-language/#comments</comments>
		<pubDate>Mon, 31 May 2010 09:23:04 +0000</pubDate>
		<dc:creator>Jimmi Westerberg</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wpml]]></category>

		<guid isPermaLink="false">http://westsworld.dk/?p=108</guid>
		<description><![CDATA[While building a wordpress theme that has multilingual support, I needed to know what the current language was for fixing some static parts of my template.
After searching a bit on the WPML site, I found a code example where you are shown howto create your own language selector menu:
http://wpml.org/documentation/getting-started-guide/language-setup/custom-language-switcher/
I then wrote this function to get [...]]]></description>
			<content:encoded><![CDATA[<p>While building a wordpress theme that has multilingual support, I needed to know what the current language was for fixing some static parts of my template.</p>
<p>After searching a bit on the WPML site, I found a code example where you are shown howto create your own language selector menu:<br />
<a href="http://wpml.org/documentation/getting-started-guide/language-setup/custom-language-switcher/">http://wpml.org/documentation/getting-started-guide/language-setup/custom-language-switcher/</a></p>
<p>I then wrote this function to get the current language of a site:</p>
<p><?php</p>
<pre><code>/**
 * Function for getting the active language of the WPML plugin
 * @return the currently active language, defaulting to 'en'
 */
function getActiveLanguage() {
  // fetches the list of languages
  $languages = icl_get_languages('skip_missing=N&#038;orderby=KEY&#038;order=DIR');

  $activeLanguage = 'en';

  // runs through the languages of the system, finding the active language
  foreach($languages as $language) {
    // tests if the language is the active one
    if($language['active'] == 1) {
      $activeLanguage = $language['language_code'];
    }
  }

  return $activeLanguage;
}
?></code></pre>
<p>Just add this code to the theme's functions.php file and you are ready to find the active language of your site!</p>
]]></content:encoded>
			<wfw:commentRss>http://westsworld.dk/blog/2010/05/wpml-what-is-the-current-language/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using link_to in rails with :confirm and :method</title>
		<link>http://westsworld.dk/blog/2010/05/using-link_to-in-rails-with-confirm-and-method/</link>
		<comments>http://westsworld.dk/blog/2010/05/using-link_to-in-rails-with-confirm-and-method/#comments</comments>
		<pubDate>Thu, 27 May 2010 09:53:12 +0000</pubDate>
		<dc:creator>Jimmi Westerberg</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ror]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://westsworld.dk/?p=93</guid>
		<description><![CDATA[Every time i&#8217;m going to use the link_to method in rails, I always seem to get a lot of errors.
The documentation states:
link_to(name, options = {}, html_options = nil)
  link_to(options = {}, html_options = nil) do
    # name
  end
URL to the rails docs: http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#M001597
And gives a list of options you can [...]]]></description>
			<content:encoded><![CDATA[<p>Every time i&#8217;m going to use the link_to method in rails, I always seem to get a lot of errors.</p>
<p>The documentation states:</p>
<blockquote><p>link_to(name, options = {}, html_options = nil)<br />
  link_to(options = {}, html_options = nil) do<br />
    # name<br />
  end</p></blockquote>
<p>URL to the rails docs: <a href="http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#M001597">http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#M001597</a></p>
<p>And gives a list of options you can set. However, I always seem to have problems remembering the correct syntax if I want to use :confirm and :method.</p>
<p>After fiddling with it a bit, I found that the proper way of using is:</p>
<pre><code><%= link_to(
  t("Delete"),
  {
    :action => "destroy",
    :id => some_id
  },
  :method => :delete,
  :confirm => t('Are you sure you want to delete it?')
) %></code></pre>
<p>My biggest problem was, that you do not need to add the controller.</p>
<p>Also, found a nice write up about this on <a href="http://ryandaigle.com/articles/2006/05/30/whats-new-in-edge-rails-restful-method-support-in-link-helpers">Ryan&#8217;s Scraps blog</a> (a bit old post, but still&#8230;)</p>
<p>Hope you can use the tip.</p>
]]></content:encoded>
			<wfw:commentRss>http://westsworld.dk/blog/2010/05/using-link_to-in-rails-with-confirm-and-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing symlinks in Mac OS 10 + built in Apache</title>
		<link>http://westsworld.dk/blog/2010/05/fixing-symlinks-in-mac-os-10-built-in-apache/</link>
		<comments>http://westsworld.dk/blog/2010/05/fixing-symlinks-in-mac-os-10-built-in-apache/#comments</comments>
		<pubDate>Mon, 03 May 2010 20:55:16 +0000</pubDate>
		<dc:creator>Jimmi Westerberg</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://westsworld.dk/?p=87</guid>
		<description><![CDATA[The other night I was fiddling about with my macbook, trying to setup a "MySQL-Apache-PHP" server on my system. Digging a bit about the system and googling a bit, it seems that the system comes with a built in apache server and php installation.

I thought to myself, why not use the built in server instead of installing a MAMP package?

Anyways, seconds went by and I found the option in the system preferences, turned on "web sharing" and excitedly headed on to localhost. It worked perfectly, now I just needed to set it up as it was on my linux desktop.

The apache's httpd.conf file is located in the folder: /private/etc/apache2/httpd.conf
(I used textmate to edit the file.)

What I wanted to do was, since I'm the only user on this laptop, I wanted my Sites folder to have a www "folder", which was a symlink to a folder in my Documents folder. The symlink would then point to the webapp I was currently coding.]]></description>
			<content:encoded><![CDATA[<p>The other night I was fiddling about with my macbook, trying to setup a &#8220;MySQL-Apache-PHP&#8221; server on my system. Digging a bit about the system and googling a bit, it seems that the system comes with a built in apache server and php installation.</p>
<p>I thought to myself, why not use the built in server instead of installing a MAMP package?</p>
<p>Anyways, seconds went by and I found the option in the system preferences, turned on &#8220;web sharing&#8221; and excitedly headed on to localhost. It worked perfectly, now I just needed to set it up as it was on my linux desktop.</p>
<p>The apache&#8217;s httpd.conf file is located in the folder: /private/etc/apache2/httpd.conf<br />
(I used textmate to edit the file.)</p>
<p>What I wanted to do was, since I&#8217;m the only user on this laptop, I wanted my Sites folder to have a www &#8220;folder&#8221;, which was a symlink to a folder in my Documents folder. The symlink would then point to the webapp I was currently coding.</p>
<p>This worked on my linux desktop, so it should also work here.</p>
<p>The first thing I did was to fix the DocumentRoot so it now points directly to my /Users/username/Sites/www folder (or actually the symlink, which we&#8217;ll create now).<br />
The I added PHP support by removing the comments from line 116, containing:</p>
<p><code>
<pre>LoadModule php5_module         libexec/apache2/libphp5.so</pre>
<p></code></p>
<p>Then I went into my Sites folder and created a symlink to a folder in the Documents folder called &#8220;current_project&#8221; (yes yes, secret stuff here). This is done using the following command:</p>
<p><code>
<pre>ln -s ~/Documents/current_project ~/Sites/www</pre>
<p></code></p>
<p>After that, just reboot you apache server (you can use the Web Sharing option in the System Preferences. Just uncheck the web sharing checkbox and recheck it again).</p>
<p>An here my problems began. I got a lot of warnings in my apache error log (/private/var/log/apache2/error_log) saying:</p>
<p><code>
<pre>Symbolic link not allowed or link target not accessible: /Users/username/Sites/www</pre>
<p></code></p>
<p>After googling for a while with no answers, I thought : &#8220;why not disable the userdir module? I&#8217;m not going to use the localhost/~username anyways&#8221;</p>
<p>This turned out to do the trick.</p>
<p>The solution was simply to disable the userdir module in apache.<br />
Comment out line 112 (LoadModule userdir_module libexec/apache2/mod_userdir.so) and line 465 (Include /private/etc/apache2/extra/httpd-userdir.conf)<br />
Restart the apache server (web sharing thingy in the System preferences interface) and you server can now access the symlink.</p>
<p>I hope this will help you on your way, when coding using a Mac.</p>
<p><strong>Small update</strong>: <em>(2010-06-02 at 13:15)</em><br />
Remember to right click the Documents folder and choose &#8220;Get Info&#8221;. Unfold &#8220;Sharing &#038; Permissions&#8221; and set &#8220;Everyone&#8221; to &#8220;Read only&#8221;, else you will get a permission denied</p>
]]></content:encoded>
			<wfw:commentRss>http://westsworld.dk/blog/2010/05/fixing-symlinks-in-mac-os-10-built-in-apache/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>(php) php-mvc-base project released</title>
		<link>http://westsworld.dk/blog/2010/04/php-php-mvc-base-project-released/</link>
		<comments>http://westsworld.dk/blog/2010/04/php-php-mvc-base-project-released/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 21:10:08 +0000</pubDate>
		<dc:creator>Jimmi Westerberg</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://westsworld.dk/?p=68</guid>
		<description><![CDATA[Whenever I create a new PHP project I use a certain base structure.
This structure allows me to have pretty URLs and have a nice way of configuring the database connections. Furthermore this structure also allows me to use a form of plugins in my system.]]></description>
			<content:encoded><![CDATA[<p>Whenever I create a new PHP project I use a certain base structure.<br />
This structure allows me to have pretty URLs and have a nice way of configuring the database connections. Furthermore this structure also allows me to use a form of plugins in my system.</p>
<p>I have even included an example when you start your server, once the base structure is installed. Go check it out on <a href="http://github.com/jimmiw/php-mvc-base">http://github.com/jimmiw/php-mvc-base</a></p>
]]></content:encoded>
			<wfw:commentRss>http://westsworld.dk/blog/2010/04/php-php-mvc-base-project-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hooking up Ctrl+S using JS+Prototypejs</title>
		<link>http://westsworld.dk/blog/2010/02/hooking-up-ctrls-using-jsprototypejs/</link>
		<comments>http://westsworld.dk/blog/2010/02/hooking-up-ctrls-using-jsprototypejs/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 07:35:39 +0000</pubDate>
		<dc:creator>Jimmi Westerberg</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[prototypejs]]></category>

		<guid isPermaLink="false">http://westsworld.dk/?p=59</guid>
		<description><![CDATA[Did you ever find yourself in a position where having Ctrl+S hooked up as an event would be great? Well I have and doing a fast search on google gave me this page <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJs.com - Keyboard shortcuts</a>.
While this page is <strong>great</strong>, I needed to have a script that was written in <a href="http://www.prototypejs.org">prototypejs</a>, since this is what we use at work (It's a left over from the early Rails days, where prototypejs was tha bomb).]]></description>
			<content:encoded><![CDATA[<p>Did you ever find yourself in a position where having Ctrl+S hooked up as an event would be great? Well I have and doing a fast search on google gave me this page <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJs.com &#8211; Keyboard shortcuts</a>.<br />
While this page is <strong>great</strong>, I needed to have a script that was written in <a href="http://www.prototypejs.org">prototypejs</a>, since this is what we use at work (It&#8217;s a left over from the early Rails days, where prototypejs was tha bomb).</p>
<p>Since this really isn&#8217;t a big thing to do in prototypejs and if you use firebug you could inspect the event object in the dom yourself, I&#8217;ll just give you the script:</p>
<p><code>
<pre>
$(document).observe('keypress', function(e) {
  if(e.charCode==115 &#038;&#038; e.ctrlKey) {
    e.stop();
    console.log('CTRL+s was called!');
  }
});
</pre>
<p><code></p>
<p>The only important thing to remember, is to call e.stop(), as this prevents the browsers "Save Page" functionality from opening.</p>
]]></content:encoded>
			<wfw:commentRss>http://westsworld.dk/blog/2010/02/hooking-up-ctrls-using-jsprototypejs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(php) flash-message plugin</title>
		<link>http://westsworld.dk/blog/2010/02/php-flash-message-plugin/</link>
		<comments>http://westsworld.dk/blog/2010/02/php-flash-message-plugin/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 10:50:48 +0000</pubDate>
		<dc:creator>Jimmi Westerberg</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://westsworld.dk/westsworld_wordpress/?p=44</guid>
		<description><![CDATA[For a long time I've wanted a way to send messages from my controller to my view, when posting data. The message could be "Your update went well" or some error.]]></description>
			<content:encoded><![CDATA[<p>For a long time I&#8217;ve wanted a way to send messages from my controller to my view, when posting data. The message could be &#8220;Your update went well&#8221; or some error.</p>
<p>In the old days, I have done it like this:</p>
<p>controller, users/update.php:</p>
<p><code>
<pre>
&lt;?php
$result = mysql_query("update users set email = '".$_POST['email']."' where id = ".$_POST['id']);

if($result) {
  header("Location: /users/index.php?message='Some long message, that might bug out'");
}
else {
  header("Location: /users/edit.php?message='ERROR because....'");
}

?&gt;</pre>
<p></code></p>
<p>view, users/index.php and users/edit.php:</p>
<p><code>
<pre>&lt;?php
echo $_GET['message'];
?&gt;</pre>
<p></code></p>
<p>However, these days are over now. With my little plugin, you can easily pass messages from the controller to the view.<br />
All you need to do, is to include the script on your pages, then call: flash(label, message) from your controller. From your view, you can call echo getFlash(label) and that is it!</p>
<p>Using the same example from before, we get the following:</p>
<p>controller, users/update.php:</p>
<p><code>
<pre>&lt;?php
$result = mysql_query("update users set email = '".$_POST['email']."'&nbsp; where id = ".$_POST['id']);

if($result) {
  // set the message
  flash('success', 'Some long message, that will NOT bug out');
  // do the redirect
  header("Location: /users/index.php");
}
else {
  // set the message
  flash('error', 'You had an error in your data.');
  // do the redirect
  header("Location: /users/edit.php");
}
?&gt;</pre>
<p></code></p>
<p>view, users/index.php:<br />
<code>
<pre>&lt;?php

echo getFlash('success');

?&gt;</pre>
<p></code></p>
<p>view, users/edit.php:</p>
<p><code>
<pre>&lt;?php

echo getFlash('error');

?&gt;</pre>
<p></code></p>
<p>Head on over to the github reposition at get it: <a href="http://github.com/jimmiw/php-flash-message">http://github.com/jimmiw/php-flash-message</a></p>
<p>I hope you enjoy it</p>
]]></content:encoded>
			<wfw:commentRss>http://westsworld.dk/blog/2010/02/php-flash-message-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Rails’ form_tag with care</title>
		<link>http://westsworld.dk/blog/2010/01/use-rails-form_tag-with-care/</link>
		<comments>http://westsworld.dk/blog/2010/01/use-rails-form_tag-with-care/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 13:25:01 +0000</pubDate>
		<dc:creator>Jimmi Westerberg</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ror]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://westsworld.dk/westsworld_wordpress/?p=42</guid>
		<description><![CDATA[Today at work I was fiddling with some forms in an admin interface. When I had to make an update form, the data didn't hit the correct controller action.

If you ever get the message <strong>ActionController::MethodNotAllowed</strong>, then you've created your form wrong!]]></description>
			<content:encoded><![CDATA[<p>Today at work I was fiddling with some forms in an admin interface. When I had to make an update form, the data didn&#8217;t hit the correct controller action.</p>
<p>If you ever get the message <strong>ActionController::MethodNotAllowed</strong>, then you&#8217;ve created your form wrong!</p>
<p>The error came when I tried doing:<br />
<code>
<pre>&lt;% form_tag :action =&gt; :update, :method =&gt; :put do %&gt;
  lots of fields here
&lt;% end %&gt;</pre>
<p></code><br />
The data was not sent correctly (it was sent as POST, not as PUT as I wanted) and the action was not found. After googling for a bit, I found out that others had a similar problem.</p>
<p>The answer was rather simple though. In the rails <a href="http://api.rubyonrails.org/classes/ActionView/Helpers/FormTagHelper.html#M001729">docs</a> you use the form_tag like this:<br />
<code>
<pre>form_tag(url_for_options = {}, options = {}, *parameters_for_url, &#038;block)</pre>
<p></code><br />
What I didn&#8217;t realize straight away was, that my :method => put was being sent in the first hash and NOT the second as it was suppose to.<br />
So if you are creating your own forms, without activerecord, do it like this:<br />
<code>
<pre>&lt;% form_tag({:action => :update}, {:method => :put}) do %&gt;
  lots of fields here
&lt;% end %&gt;</pre>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://westsworld.dk/blog/2010/01/use-rails-form_tag-with-care/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(php) Paginate component</title>
		<link>http://westsworld.dk/blog/2010/01/php-paginate-component/</link>
		<comments>http://westsworld.dk/blog/2010/01/php-paginate-component/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 00:09:03 +0000</pubDate>
		<dc:creator>Jimmi Westerberg</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[paginate]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://westsworld.dk/westsworld_wordpress/?p=40</guid>
		<description><![CDATA[After removing CakePHP from my site, I really missed having pagination on it. So I created a small PHP component I've called Paginate and I've released it over on github: <a href="http://github.com/jimmiw/php-paginate">http://github.com/jimmiw/php-paginate</a><a href="http://github.com/jimmiw/Paginate"></a>.

It's designed to be easy to use (only 3 lines of code!), and the output should be easy to style.

I hope you enjoy it]]></description>
			<content:encoded><![CDATA[<p>After removing CakePHP from my site, I really missed having pagination on it. So I created a small PHP component I&#8217;ve called Paginate and I&#8217;ve released it over on github: <a href="http://github.com/jimmiw/php-paginate">http://github.com/jimmiw/php-paginate</a><a href="http://github.com/jimmiw/Paginate"></a>.</p>
<p>It&#8217;s designed to be easy to use (only 3 lines of code!), and the output should be easy to style.</p>
<p>I hope you enjoy it</p>
]]></content:encoded>
			<wfw:commentRss>http://westsworld.dk/blog/2010/01/php-paginate-component/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You gotta design!</title>
		<link>http://westsworld.dk/blog/2010/01/you-gotta-design/</link>
		<comments>http://westsworld.dk/blog/2010/01/you-gotta-design/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 22:49:09 +0000</pubDate>
		<dc:creator>Jimmi Westerberg</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[daily365]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[smashingmag]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://westsworld.dk/westsworld_wordpress/?p=38</guid>
		<description><![CDATA[After seeing a tweet from <a href="http://twitter.com/smashingmag">@smashingmag</a> about designing a small piece of graphics everyday, I and <a href="http://twitter.com/janusclemmensen">@janusclemmensen</a> decided to try it out.

Here is my contribution for <strong>day11</strong>:
<img src="/asd/daily365/day11.png" alt="day11"/>]]></description>
			<content:encoded><![CDATA[<p><strong>Updated 2010-01-19 23:59</strong>: See new images at the bottom of the post!</p>
<p>After seeing a tweet from <a href="http://twitter.com/smashingmag">@smashingmag</a> about designing a small piece of graphics everyday, I and <a href="http://twitter.com/janusclemmensen">@janusclemmensen</a> decided to try it out.</p>
<p>Here is my contribution for <strong>day11</strong>:<br />
<img src="/asd/daily365/day11.png" alt="day11"/><br />
<small>Still learning gimp. Perhaps this is a good place to start.</small></p>
<p>Contribution for <strong>day12</strong>:<br />
<img src="/asd/daily365/day12.png" alt="day12"/></p>
<p>Gonna try to make the design in gimp for tomorrows contribution. Here&#8217;s the sketch though!<br />
Contribution for <strong>day13</strong>:<br />
<img src="/asd/daily365/day13.png" alt="day13"/></p>
<p>Got a tad stressed for time today, so i&#8217;ve just done some messing about in the gimp.<br />
Contribution for <strong>day14</strong>:<br />
<img src="/asd/daily365/day14.png" alt="day14"/></p>
<p>Weekend and just a tad stressed at work, but now i&#8217;m back!<br />
Submitting a picture of a cake i&#8217;ve baked. 2 layers of banana cake (yes, both the yellow and blueish is banana cake)<br />
Contribution for <strong>day19</strong>:<br />
<img src="/asd/daily365/day19.jpg" alt="day19"/></p>
]]></content:encoded>
			<wfw:commentRss>http://westsworld.dk/blog/2010/01/you-gotta-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax Upload component</title>
		<link>http://westsworld.dk/blog/2009/09/ajax-upload-component/</link>
		<comments>http://westsworld.dk/blog/2009/09/ajax-upload-component/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 22:39:33 +0000</pubDate>
		<dc:creator>Jimmi Westerberg</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://westsworld.dk/westsworld_wordpress/?p=36</guid>
		<description><![CDATA[Today I created a "ajax upload" component, that mimics the behaviour google has in their gmail application, when you attach files to an email. 

It's not totally complete yet and no exambles have been added yet. They will come later though!

Head over to <a href="http://github.com/jimmiw">github.com/jimmiw</a> and <a href="http://github.com/jimmiw/ajax-upload">check it out</a>]]></description>
			<content:encoded><![CDATA[<p>Today I created a &#8220;ajax upload&#8221; component, that mimics the behaviour google has in their gmail application, when you attach files to an email. </p>
<p>It&#8217;s not totally complete yet and no exambles have been added yet. They will come later though!</p>
<p>Head over to <a href="http://github.com/jimmiw">github.com/jimmiw</a> and <a href="http://github.com/jimmiw/ajax-upload">check it out</a></p>
]]></content:encoded>
			<wfw:commentRss>http://westsworld.dk/blog/2009/09/ajax-upload-component/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
