<?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>laplace&#039;s demon</title>
	<atom:link href="http://www.laplacesdemon.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.laplacesdemon.com</link>
	<description>Süleyman Melikoğlu</description>
	<lastBuildDate>Tue, 01 May 2012 13:57:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Django mediagenerator dynamic compressed js</title>
		<link>http://www.laplacesdemon.com/2012/05/01/django-mediagenerator-dynamic-compressed-js/</link>
		<comments>http://www.laplacesdemon.com/2012/05/01/django-mediagenerator-dynamic-compressed-js/#comments</comments>
		<pubDate>Tue, 01 May 2012 13:57:28 +0000</pubDate>
		<dc:creator>solomon</dc:creator>
				<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.laplacesdemon.com/?p=450</guid>
		<description><![CDATA[django-mediagenerator app adds version number to each file and you have to use their template tag in your js files. That means you need to put some django template code in your js files. in order to do that, just add a filter to root media filters entry ROOT_MEDIA_FILTERS = { 'js': ('mediagenerator.filters.template.Template', 'mediagenerator.filters.yuicompressor.YUICompressor',), 'css': [...]]]></description>
			<content:encoded><![CDATA[<p>django-mediagenerator app adds version number to each file and you have to use their template tag in your js files. That means you need to put some django template code in your js files. in order to do that, just add a filter to root media filters entry</p>
<pre class="brush:python">
ROOT_MEDIA_FILTERS = {
    'js': ('mediagenerator.filters.template.Template', 'mediagenerator.filters.yuicompressor.YUICompressor',),
    'css': 'mediagenerator.filters.yuicompressor.YUICompressor',
}
</pre>
<p>and now in your js file you can do the following:</p>
<pre class="brush:js">
{% load media %}
$(".myClass").html("<img src='{% media_url "images/ajax-loader-small.gif" %}' alt="Loading" />");
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.laplacesdemon.com/2012/05/01/django-mediagenerator-dynamic-compressed-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lessons Learned: Use django-mediagenerator as Django Asset Manager</title>
		<link>http://www.laplacesdemon.com/2012/05/01/lessons-learned-use-django-mediagenerator-as-django-asset-manager/</link>
		<comments>http://www.laplacesdemon.com/2012/05/01/lessons-learned-use-django-mediagenerator-as-django-asset-manager/#comments</comments>
		<pubDate>Tue, 01 May 2012 12:25:44 +0000</pubDate>
		<dc:creator>solomon</dc:creator>
				<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.laplacesdemon.com/?p=442</guid>
		<description><![CDATA[I&#8217;ve been developing a web application using Django Framework in Python language. I develop most of the project with standard asset manager named &#8220;django staticfiles&#8221; which does the job. I was managing the combining and compressing of my js and css files. Recently I came across an amazing Django app called django-mediagenerator which does all necessary [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been developing a web application using <a href="https://www.djangoproject.com/">Django Framework</a> in <a href="http://www.python.org/">Python</a> language. I develop most of the project with standard asset manager named &#8220;django staticfiles&#8221; which does the job. I was managing the combining and compressing of my js and css files. Recently I came across an amazing Django app called <a href="https://github.com/potatolondon/django-mediagenerator">django-mediagenerator</a> which does all necessary job for your assets.</p>
<p>You can just go and read their manual. The reason of the post is mentioning a problem that I faced while I was integrating mediagenerator app to my project. I was linking my static files in templates like following:</p>
<pre class="brush:html">
<img src="{{ STATIC_FILES }}image/sample.png" alt="sample image" />
</pre>
<p>But after switching to the mediagenerator, I had to change those something like this</p>
<pre class="brush:html">
<img src="{% media_url 'image/sample.png' %}" alt="sample image" />
</pre>
<p>Well it seemed that the only way to do that is to use regular expressions, since there are more than a hundred of these in my project. I am using the wonderful ide <a href="http://www.activestate.com/komodo-edit">Komodo Edit</a>. In Komodo Edit, you can use regex in &#8220;Find in Files&#8221; option. So the regex I used is the following:</p>
<pre class="brush:html">
search: "{{ STATIC_URL }}([a-zA-Z\/\.]+)"
replace: "{% media_url "\1" %}"
</pre>
<p>Now I am enjoying this cool app.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.laplacesdemon.com/2012/05/01/lessons-learned-use-django-mediagenerator-as-django-asset-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac media player problem is solved, bye bye itunes, hail tomahawk</title>
		<link>http://www.laplacesdemon.com/2012/04/17/mac-media-player-problem-is-solved-bye-bye-itunes-hail-tomahawk/</link>
		<comments>http://www.laplacesdemon.com/2012/04/17/mac-media-player-problem-is-solved-bye-bye-itunes-hail-tomahawk/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 17:54:20 +0000</pubDate>
		<dc:creator>solomon</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.laplacesdemon.com/?p=439</guid>
		<description><![CDATA[The media player problem on mac is really annoying, especially iTunes makes my life really hard. Since I switched to unix then mac, everything goes smooth except this crappy-media-players. I am sorry to say that the best media player on earth is windows-only called FooBar2000. Look at the title, Foo Bar 2000, looks like the [...]]]></description>
			<content:encoded><![CDATA[<p>The media player problem on mac is really annoying, especially iTunes makes my life really hard. Since I switched to unix then mac, everything goes smooth except this crappy-media-players.</p>
<p>I am sorry to say that the best media player on earth is windows-only called <a href="http://www.foobar2000.org/">FooBar2000</a>. Look at the title, Foo Bar 2000, looks like the creator of the software is a hardcore programmer and has no clue about marketing stuff. In programming, if we want to illustrate a random variable, we usually named it &#8220;Foo&#8221;. Then, most likely, we assign it to &#8220;Bar&#8221;. Well I bet he developed it in the year 2000 <img src='http://www.laplacesdemon.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Despite the title, it is really lightning-fast media player. It almost plays everything, ogg, ape, you name it. And has really powerful id3 tagger. You can use patterns to rename files. It can display files on your file system as-it-is. So if you like to organize files by yourself, this is a great option that each media player (except songbird via a plugin) lacks. And queuing songs up is another amazing feature. You just clicking on a song and add it to queue, just like a dynamical playlist. With Foobar2000 you can also just click and highlight the song that you want to play next. woa.</p>
<p>I&#8217;ve tried <a href="http://getsongbird.com/">songbird</a>, <a href="http://sbooth.org/Play/">play</a>, <a href="http://www.clementine-player.org/">clementine</a> and all other sorts of players but no luck. Songbird is the best one, but it&#8217;s damn slow and has lots of features such as integrated browser that i don&#8217;t want. I gave up and I went back to freaking itunes which does everything but playing music properly. But now, at last, I found the player that I am looking for. <a href="http://www.tomahawk-player.org/">Tomahawk</a>.</p>
<p>Tomahawk is Qt based, open-source music player that embraces social features. The most important feature for me is to be able to queue songs for playing next. This feature was enough for me to switch from iTunes. As I was using it, I discover its cool features. It has &#8220;Stations&#8221;, works similar to iTunes Genius, you select a song and tomahawk suggest similar songs that you might like. the innovative side is, if you don&#8217;t have the suggested song in your collection, it searches sources on internet (they call it resolvers) and play it for you. Isn&#8217;t it cool? You can add additional sources. I&#8217;ve added Youtube and last.fm, which seems enough for me.</p>
<p>Yeah, this is it, and I am happy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.laplacesdemon.com/2012/04/17/mac-media-player-problem-is-solved-bye-bye-itunes-hail-tomahawk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NSString isNumeric</title>
		<link>http://www.laplacesdemon.com/2012/02/17/nsstring-isnumeric/</link>
		<comments>http://www.laplacesdemon.com/2012/02/17/nsstring-isnumeric/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 23:06:33 +0000</pubDate>
		<dc:creator>solomon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.laplacesdemon.com/?p=430</guid>
		<description><![CDATA[I wanted to know if the string object has only numeric values in it (only integers in my case). Although there is intValue message in the NSString object, it will only give the int conversion of the object. So I come up with the following category implementation: @interface NSString (Numeric) - (BOOL)isNumeric; @end @implementation NSString [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to know if the string object has only numeric values in it (only integers in my case). Although there is intValue message in the NSString object, it will only give the int conversion of the object. So I come up with the following category implementation:</p>
<pre class="brush:c">
@interface NSString (Numeric)

- (BOOL)isNumeric;

@end

@implementation NSString (Numeric)

- (BOOL)isNumeric
{
    if (self == 0)
        return YES;

    NSNumberFormatter* formatter = [[NSNumberFormatter alloc] init];
    [formatter setLocale:[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]];

    // set YES if you want to use floats as numeric
    [formatter setAllowsFloats:NO];

    NSNumber* number = [formatter numberFromString:self];

    return (number) ? YES : NO;
}

@end
</pre>
<p>And following is the test cases for it.</p>
<pre class="brush:c">
#import "NSStringNumericTest.h"
#import "NSString+Numeric.h"

@implementation NSStringNumericTest

// All code under test must be linked into the Unit Test bundle
- (void)testIsNumeric
{
    NSString* numeric = @"21";
    STAssertTrue([numeric isNumeric], @"number is numeric");

    NSString* numeric2 = @"0";
    STAssertTrue([numeric2 isNumeric], @"number is numeric");

    NSString* numeric3 = @"21,21";
    STAssertFalse([numeric3 isNumeric], @"number is not numeric");

    NSString* numeric4 = @"asdasd";
    STAssertFalse([numeric4 isNumeric], @"number is not numeric");
}

@end
</pre>
<p>In my case, I don&#8217;t want to allow floats as numeric. You can always modify the class implementation according to your needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.laplacesdemon.com/2012/02/17/nsstring-isnumeric/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;ve moved my server to Tilaa</title>
		<link>http://www.laplacesdemon.com/2012/01/26/ive-moved-my-server-to-tilaa/</link>
		<comments>http://www.laplacesdemon.com/2012/01/26/ive-moved-my-server-to-tilaa/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 10:19:39 +0000</pubDate>
		<dc:creator>solomon</dc:creator>
				<category><![CDATA[Dear diary]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.laplacesdemon.com/?p=424</guid>
		<description><![CDATA[I&#8217;ve been using SliceHost, a virtual private server, for a year. It was great first, cheaper and efficient. But after RackSpace bought them, the quality decreased a lot, and I guess they changed many things and it effect my product. I didn&#8217;t have time to deal with them, all I need is a server there [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using <a href="http://www.slicehost.com/" title="slice host">SliceHost</a>, a virtual private server, for a year. It was great first, cheaper and efficient. But after RackSpace bought them, the quality decreased a lot, and I guess they changed many things and it effect my product. I didn&#8217;t have time to deal with them, all I need is a server there where I pay each month and focus on my projects, not the server&#8217;s problems. </p>
<p>The other problem with it that it become REALLY slow. The datahouse is in US and I locate in Istanbul. And Turkey&#8217;s internet providers suck. </p>
<p>So I decided to go for a Europian company. In fact, my 1st consideration was an american company, <a href="http://www.linode.com/">Linode</a>, who has very good critics and considerable price range. But still, after slicehost experience, I didn&#8217;t want to go for a similar company. </p>
<p>Then I found <a href="http://www.tilaa.nl/">Tilaa</a> who has good options for VPS. They&#8217;re Netherlands based company and their datahouse locates in there. They aren&#8217;t a big company but I guess they have good approach. </p>
<p>So far I don&#8217;t have serious problems with them. The 1st thing that I noticed that they billed me 12.26 euros rather than 9.95, soon after I send an email about it, I find out that they charge you from a particular day of the month to another. I subscribed on 23th of January, They&#8217;ve charged me from 23th to 25th of January and 25th jan to 25th feb, which is fine for me. I only think that their explanations in their website is lacking, if they improve it they become better.</p>
<p>And hopefully the website you&#8217;re seeing now is fast enough because it&#8217;s already on Tilaa.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.laplacesdemon.com/2012/01/26/ive-moved-my-server-to-tilaa/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Zend Framework 2 Sample Application</title>
		<link>http://www.laplacesdemon.com/2012/01/24/zend-framework-2-sample-application/</link>
		<comments>http://www.laplacesdemon.com/2012/01/24/zend-framework-2-sample-application/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 09:55:50 +0000</pubDate>
		<dc:creator>solomon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.laplacesdemon.com/?p=422</guid>
		<description><![CDATA[I am planning to use ZF2 on my future projects and porting my ZF1 library to it. Just to see how it&#8217;s like, I created a sample project. Hope that it helps someone who try to do it as well. https://github.com/laplacesdemon/ZendFramework2-Sample-Application]]></description>
			<content:encoded><![CDATA[<p>I am planning to use ZF2 on my future projects and porting my ZF1 library to it. Just to see how it&#8217;s like, I created a sample project. Hope that it helps someone who try to do it as well.</p>
<p><a href="https://github.com/laplacesdemon/ZendFramework2-Sample-Application">https://github.com/laplacesdemon/ZendFramework2-Sample-Application</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.laplacesdemon.com/2012/01/24/zend-framework-2-sample-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework 2 comparison</title>
		<link>http://www.laplacesdemon.com/2012/01/19/zend-framework-2-comparison/</link>
		<comments>http://www.laplacesdemon.com/2012/01/19/zend-framework-2-comparison/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 13:36:31 +0000</pubDate>
		<dc:creator>solomon</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://www.laplacesdemon.com/?p=416</guid>
		<description><![CDATA[I&#8217;ve been using Zend Framework 1.x for quite a long time. It is a stable framework with a lot of features. But I always have some performance issues in terms of memory/cpu usage and page load time. I have looked at the new version of Zend Framework which is under active development. As my first [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Zend Framework 1.x for quite a long time. It is a stable framework with a lot of features. But I always have some performance issues in terms of memory/cpu usage and page load time. I have looked at the new version of Zend Framework which is under active <a href="https://github.com/zendframework/zf2" title="Zend Framework Source code" target="_blank">development</a>. As my first impressions, I have astonished by their new design. Removing require_once statements, using namespaces and lazy loading of components should boost the performance drastically. In addition, the new module system will be very flexible especially for 3rd party component developers. </p>
<p>To see it in action, I have decided to do a quick benchmark. I have used the <a href="https://github.com/zendframework/ZendSkeletonApplication" title="zend framework 2 skeleton application" target="_blank">zf2 skeleton application</a>, and my current zend framework 1.11 setting which I use in any of my PHP projects. The comparison is totally subjective and the aim is to have an overall impression. </p>
<p>I have used the apache benchmarking tool. The number of requests are 100 and the concurrency level is 5.<br />
<code>ab -c 5 -n 100 http://myUrl</code> </p>
<p>Here are the results</p>
<p>Zend Framework 2<br />
<code><br />
Server Software:        Apache/2.2.20<br />
Server Hostname:        localhost<br />
Server Port:            80</p>
<p>Document Path:          /zf2-sample/public<br />
Document Length:        351 bytes</p>
<p>Concurrency Level:      5<br />
Time taken for tests:   0.214 seconds<br />
Complete requests:      100<br />
Failed requests:        0<br />
Write errors:           0<br />
Non-2xx responses:      100<br />
Total transferred:      61900 bytes<br />
HTML transferred:       35100 bytes<br />
Requests per second:    466.58 [#/sec] (mean)<br />
Time per request:       10.716 [ms] (mean)<br />
Time per request:       2.143 [ms] (mean, across all concurrent requests)<br />
Transfer rate:          282.04 [Kbytes/sec] received</p>
<p>Connection Times (ms)<br />
              min  mean[+/-sd] median   max<br />
Connect:        0   10   6.3     11      33<br />
Processing:     0    1   2.6      0      15<br />
Waiting:        0    0   2.6      0      15<br />
Total:          1   11   6.1     11      33</p>
<p>Percentage of the requests served within a certain time (ms)<br />
  50%     11<br />
  66%     12<br />
  75%     13<br />
  80%     14<br />
  90%     16<br />
  95%     23<br />
  98%     32<br />
  99%     33<br />
 100%     33 (longest request)<br />
</code></p>
<p>Zend Framework 1.11</p>
<p><code><br />
Server Software:        Apache/2.2.20<br />
Server Hostname:        localhost<br />
Server Port:            80</p>
<p>Document Path:          /ad<br />
Document Length:        336 bytes</p>
<p>Concurrency Level:      5<br />
Time taken for tests:   0.410 seconds<br />
Complete requests:      100<br />
Failed requests:        0<br />
Write errors:           0<br />
Non-2xx responses:      100<br />
Total transferred:      58900 bytes<br />
HTML transferred:       33600 bytes<br />
Requests per second:    243.98 [#/sec] (mean)<br />
Time per request:       20.494 [ms] (mean)<br />
Time per request:       4.099 [ms] (mean, across all concurrent requests)<br />
Transfer rate:          140.33 [Kbytes/sec] received</p>
<p>Connection Times (ms)<br />
              min  mean[+/-sd] median   max<br />
Connect:        0   20  14.7     16      53<br />
Processing:     0    1   3.6      0      28<br />
Waiting:        0    1   3.5      0      28<br />
Total:          1   20  14.4     17      53</p>
<p>Percentage of the requests served within a certain time (ms)<br />
  50%     17<br />
  66%     29<br />
  75%     33<br />
  80%     34<br />
  90%     40<br />
  95%     46<br />
  98%     51<br />
  99%     53<br />
 100%     53 (longest request)<br />
</code></p>
<p>Conclusion: New version of Zend Framework is nearly double times faster that the current version.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.laplacesdemon.com/2012/01/19/zend-framework-2-comparison/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove require_once statements in Zend Framework on Mac</title>
		<link>http://www.laplacesdemon.com/2012/01/13/how-to-remove-require_once-statements-in-zend-framework-on-mac/</link>
		<comments>http://www.laplacesdemon.com/2012/01/13/how-to-remove-require_once-statements-in-zend-framework-on-mac/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 16:07:30 +0000</pubDate>
		<dc:creator>solomon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.laplacesdemon.com/?p=413</guid>
		<description><![CDATA[Since autoload does the work, no need to keep the backward compatibility mode of Z]]></description>
			<content:encoded><![CDATA[<p>Since autoload does the work, no need to keep the backward compatibility mode of Z</p>
]]></content:encoded>
			<wfw:commentRss>http://www.laplacesdemon.com/2012/01/13/how-to-remove-require_once-statements-in-zend-framework-on-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stupid windows drives me crazy</title>
		<link>http://www.laplacesdemon.com/2012/01/10/stupid-windows-drives-me-crazy/</link>
		<comments>http://www.laplacesdemon.com/2012/01/10/stupid-windows-drives-me-crazy/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 21:58:33 +0000</pubDate>
		<dc:creator>solomon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.laplacesdemon.com/?p=409</guid>
		<description><![CDATA[My father has just called me and complained that he couldn&#8217;t connect to the wireless network at home. Since I&#8217;ve solved the problem before, I started to explain. The wireless network name in my house and theirs is the same, but obviously passwords are different, and windows isn&#8217;t clever enough to ask it again when [...]]]></description>
			<content:encoded><![CDATA[<p>My father has just called me and complained that he couldn&#8217;t connect to the wireless network at home. Since I&#8217;ve solved the problem before, I started to explain. The wireless network name in my house and theirs is the same, but obviously passwords are different, and windows isn&#8217;t clever enough to ask it again when changing the location. I don&#8217;t mind windows has some bugs but this should not be a big deal.</p>
<p>At the end, I&#8217;ve spend like 30 mins on the phone trying to figure out windows menus (I don&#8217;t have windows, so I need to stick with him). While I was talking with him I&#8217;ve researched about the problem and saw that there is actually a screen called &#8220;Manage wireless networks&#8221;. I directed him to that menu but apparently it wasn&#8217;t there. Then he searched for the menu, nope, won&#8217;t help. Then he somehow found the </p>
]]></content:encoded>
			<wfw:commentRss>http://www.laplacesdemon.com/2012/01/10/stupid-windows-drives-me-crazy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t buy from slicehost if you&#8217;re in Turkey</title>
		<link>http://www.laplacesdemon.com/2012/01/10/dont-buy-from-slicehost-if-youre-in-turkey/</link>
		<comments>http://www.laplacesdemon.com/2012/01/10/dont-buy-from-slicehost-if-youre-in-turkey/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 21:49:18 +0000</pubDate>
		<dc:creator>solomon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.laplacesdemon.com/?p=410</guid>
		<description><![CDATA[Basically it is cheap&#8217;n shitty. this blog is served on a server on their system. As you see it is bloody slow. I even struggle to write this post and there is always a possibilty to request timeout while posting it, thankfully wordpress saves the posts as drafts so I loose no data. I am [...]]]></description>
			<content:encoded><![CDATA[<p>Basically it is cheap&#8217;n shitty. this blog is served on a server on their system. As you see it is bloody slow. I even struggle to write this post and there is always a possibilty to request timeout while posting it, thankfully wordpress saves the posts as drafts so I loose no data.</p>
<p>I am looking for a new server</p>
<p>I recovered this post from my drafts, dammit, I can&#8217;t even submit my posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.laplacesdemon.com/2012/01/10/dont-buy-from-slicehost-if-youre-in-turkey/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.laplacesdemon.com/feed/ ) in 0.21619 seconds, on May 20th, 2012 at 9:05 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 20th, 2012 at 10:05 am UTC -->
