<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/css" href="http://douglasstridsberg.com/?css=styling/xml.v.1238352484" ?>

<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="http://douglasstridsberg.com/blog/feed/" rel="self" type="application/rss+xml" />

<title>Douglas Stridsberg BLOG</title>
<link>http://douglasstridsberg.com/</link>
<description>The home of Douglas Stridsberg on the Internets. Read about me, about my friends, my rants and about international news.</description>
<lastBuildDate>Tue, 09 Mar 2010 06:20:05 +0000</lastBuildDate>
<language>en-us</language>


<item>
<title>What is a Kext?</title>
<link>http://douglasstridsberg.com/blog/entries/what-is-a-kext/</link>
<guid>http://douglasstridsberg.com/blog/entries/what-is-a-kext/</guid>
<pubDate>Mon, 07 Dec 2009 10:12:51 +0000</pubDate>
<description><![CDATA[<p>A common misconception seen on a lot of places is that a <em>.kext</em> file is some sort of driver for the Mac OS. That is not entirely true - the kext resembles a driver but does a lot more than just act as a driver!</p>

<h2>Definition</h2><p>
<em>kext</em> stands for Kernel Extension and is an extension used by special files in the Mac operating system (OS). These files are often pretty small and act as an interface between the core of the OS and hardware (such as WiFi-cards, Bluetooth-cards, trackpads, graphic cards), filesystems and other items central to the OS&#8217;s operation. They can be written and compiled in different programs, but many people use XCode because of the compability and ease of compiling. When working with osx86-installations or hackintosh-related systems, one often needs to write modified kext&#8217;s to enable the OS to recognize certain hardware - without them a &#8220;hacked&#8221; Mac OS would not be possible.</p>

<h2>Where are the kext&#8217;s located?</h2><p>
In the Mac operating system, most, if not all, kext&#8217;s are located in the same place - the <code>/System/Library/Extensions</code> folder. At boot, all the kext&#8217;s needed are cached into a file called <em>Extensions.mkext</em> prior to being loaded. To clear the extension cache after installing a new kext, simply delete this file and it will be re-created (resulting in a slightly slower boot speed). If you&#8217;re looking to start coding your own extension, you might want to check out <a href="http://developer.apple.com/mac/library/documentation/Darwin/Conceptual/KEXTConcept/KEXTConceptIntro/KEXTIntro.html">Apple&#8217;s Dev Center&#8217;s kext section</a> - it includes examples and tutorials to get you started.</p>

<h2>How do I install a kext?</h2><p>
The simplest and most straight-forward method of installing and applying a kext is to use the <a href="http://cheetha.net/">Kext Helper</a> application. Simply install it, run it, choose the kext you wish to apply and enter your password - it will do the job for you, backing up any kext&#8217;s you overwrite and even optionally showing you what it&#8217;s doing. Upon completion, restart your computer and your new kext will be applied!<br />
If you&#8217;re looking for a more advanced way of applying a kext, you can follow the following steps:
</p><blockquote><p><b>#1</b><br />
Rename the kext you will be updating - doing this will ensure you have a backup of your old kext in case any problems arise.<br />
<code>cd /System/Library/Extensions<br />
mv KextName.kext KextName.old</code></p>

<p><b>#2</b><br />
Copy the kext to the main kext-folder.<br />
<code>cd /path/to/new/kext (put your downloaded kext path here)<br />
cp -R KextName.kext /System/Library/Extensions</code></p>

<p><b>#3</b><br />
Next, you must alter the permissions of the file in order to allow the system to execute it (make it an executable).<br />
<code>cd /System/Library/Extensions<br />
chmod -R 755 KextName.kext<br />
chown -R 0:0 KextName.kext (this will set the ownership on the file to you)<br />
rm /System/Library/Extensions.mkext (removing the kext cache in order to update the kexts)</code>
</p></blockquote>

<p>Hope this cleared up some of the questions that often arise! Good luck with your modding!</p>

<p><b>Sources</b><br />
<a href="http://forums.macnn.com/79/developer-center/81624/what-is-a-kext-file/">http://forums.macnn.com/79/developer-center/81624/what-is-a-kext-file/</a><br />
<a href="http://www.ihackintosh.com/2009/02/what-is-kextwhere-is-kext-how-to-install-kext/">http://www.ihackintosh.com/2009/02/what-is-kextwhere-is-kext-how-to-install-kext/</a>
</p>]]></description>
</item>

<item>
<title>Handing out 20 Free Google Wave Invites</title>
<link>http://douglasstridsberg.com/blog/entries/handing-out-20-free-google-wave-invites/</link>
<guid>http://douglasstridsberg.com/blog/entries/handing-out-20-free-google-wave-invites/</guid>
<pubDate>Wed, 11 Nov 2009 17:07:16 +0000</pubDate>
<description><![CDATA[<p><img src="http://douglasstridsberg.com/images/uploads/Google-Wave-logo.jpg" style="border: 0;" alt="Google Wave free invites" width="251" height="245" /><br />
I&#8217;ve been lucky enough to receive 20 Google Wave invites a couple of days ago. If you haven&#8217;t heard, Google Wave is Google&#8217;s new fresh way of sending emails. It has the potential of revolutionizing the way we use emails - it&#8217;s actually really interesting. I will be using it a lot during the coming days and if I have the time, I will post a review of it here.</p>

<p>Google&#8217;s invitation system works like this - I nominate people for invites and after an unspecified amount of time they will get their invite sent from Google. Thus, you will not receive your invite immediately - I&#8217;m sorry about this but there is nothing I can do!</p>

<p>As I mentioned, I am handing out the 20 invites I have in stock. All you need to do to get an invite is to leave a comment in the post, which you can do below. Include a valid email address and I will nominate it - provided there haven&#8217;t been 20 people commenting before you!</p>

<p>Good luck, this is a first come first served situation!
</p>]]></description>
</item>

<item>
<title>Considering Switching &#45; ExpressionEngine versus WordPress</title>
<link>http://douglasstridsberg.com/blog/entries/considering-switching-expressionengine-versus-wordpress/</link>
<guid>http://douglasstridsberg.com/blog/entries/considering-switching-expressionengine-versus-wordpress/</guid>
<pubDate>Sun, 01 Nov 2009 10:16:47 +0000</pubDate>
<description><![CDATA[<p>In one of my new projects, <a href="http://xbox.douglasstridsberg.com">Thy Old XBOX</a>, I have used WordPress and had a chance to look at its numerous blogging-friendly features. That, and EllisLab&#8217;s rather horrid way of handling ExpressionEngine 2.0&#8217;s release and the fuss around it, has got me thinking. I am in all honestly wondering whether WordPress would suit me better than ExpressionEngine does. However, I still strongly believe ExpressionEngine is the way to go, and I still love it and everything about it. So what has suddenly arisen my thoughts about WordPress? I&#8217;ll try to outline a few points.</p>

<h2>Advantages with WordPress</h2>
<ul>
<li><b>Blogger-friendliness</b> - feature-wise, WordPress beats ExpressionEngine when it comes to catering bloggers. The ease of instaling plug-ins, the ability to save drafts, the simple way to add tags and categories, the robust way to incorporate images into posts - all this makes WordPress stand out.</li>
<li><b>Style and styling</b> - face it - WordPress is very sleek. Everything about it is very Web2.0, shiny, simple and stylish. That alone, and the broad range of themes available to further make it sleeker puts WordPress ahead of many platforms; especially ExpressionEngine as it has very few downloadable themes.</li>
<li><b>Price and license</b> - WordPress is free and open-source. ExpressionEngine is also free if a personal license is used, but it&#8217;s not open-source. Open-source not only usually produce great software, but it also conveys a message of trustworthiness to the users - increasing WordPress&#8217;s popularity.</li>
<li><b>Add-on functionality</b> - this is a big one. WordPress is more popular and wide-spread than ExpressionEngine and this shows; plug-ins, scripts, tutorials, articles and other material related to WordPress is much easier to find and is so vast that as a regular blogger one will never face a problem without a solution or lack of functionality.</li>
</ul>

<p>There is still <i>a lot</i> of things holding me back, though. ExpressionEngine is a wonderful engine for people who build and maintain websites for many reasons - here are a few.</p>

<h2>Advantages with ExpressionEngine</h2>
<ul>
<li><b>The Template-way of building a site</b> - the way ExpressionEngine handles templates is absolutely wonderful. It is incredibly straight-forward and requires no tutoring before-hand - the basics structure and function is so easy and logic to understand that even a novice, regular blogger might be attracted!</li>
<li><b>Control</b> - what I mean by this is the extensive control ExpressionEngine gives you when building a site. You know exactly what you display and how much resources this takes - and as you&#8217;re the one writing the code that displays you know exactly what you&#8217;re looking at. WordPress, being very simple and easy-to-use, gives you a complete and ready-to-use template and you&#8217;re never really sure how many database requests are made, how much resources are allocated and what scripts are loaded - and if you&#8217;re in need of control you&#8217;ll have to go through every bit of code by yourself. Now this doesn&#8217;t apply to most regular bloggers, which are those WordPress caters to, but it is nonetheless an issue that ExpressionEngine overcomes.</li>
<li><b>Userbase</b> - as ExpressionEngine is used by numerous professional website-agencies and consultants, its community forums is frequented by people who know what they&#8217;re talking about - people who give the right advice at the right time. Not only with coding issues but with general questions concerning websites and everything around it. WordPress has an amazing userbase too, and of course numerous web agencies use their engine too - but you&#8217;ll never get the closeness and the same warm helping hand as you get with ExpressionEngine.</li>
</ul>

<p>That covers only three advantages, yes, but they are three major advantages and do actually outweigh WordPress&#8217;s. I love the way ExpressionEngine works and it just plain suits me, that&#8217;s why I will stick with it in the future too. Here&#8217;s a little comment I wrote on Joshua Wood&#8217;s site <a href="http://www.distancetohere.com/2009/09/goodbye-expression-engine-hello-wordpress/comment-page-1/#comment-100">Distance to Here</a>.
</p><blockquote><p>
I&#8217;m considering switching to WordPress too, mainly because (as you mentioned) the blogging features outrun ExpressionEngine completely. I love ExpressionEngine too, I love everything about it - the templates system and overall the simplicity and the closeness to how one would develop a site completely in PHP&#8230;<br />
Is WordPress easy to skin? Is the template engine as straight-forward as ExpressionEngine&#8217;s?</p>

<p>Oh and I read you were talking about EE2.0 and its release coming up soon. With all due respect, EE2.0 has had a scheduled release the past 1.5 years (although it seems to have a final release-date set now, actually), and I think a lot of people (including me) have waited way too long for it and are getting tired.</p>

<p>Hopefully EE2.0 brings some blogger-friendly features along - otherwise I doubt EE can keep attracting customers other than purely developers and/or consultants. What are your ideas?
</p></blockquote>]]></description>
</item>

<item>
<title>Review of SIGMA 70&#45;300mm 4.0&#45;5.6</title>
<link>http://douglasstridsberg.com/blog/entries/review-of-sigma-70-300mm-4.0-5.6/</link>
<guid>http://douglasstridsberg.com/blog/entries/review-of-sigma-70-300mm-4.0-5.6/</guid>
<pubDate>Mon, 12 Oct 2009 07:31:46 +0000</pubDate>
<description><![CDATA[<p>When I decided to purchase a new lens a couple of months ago, I wanted a lens with zoom. It was one of those features I lacked on my D40 kitlens (which is only 18-55mm). I wanted to try new techniques within photography, and I wanted a tele-zoom lens at a cheap price. I was out of luck until I, by chance, stumbled upon a SIGMA 70-300mm lens on a trip to Japan.</p>

<h2>Appearance, feel and weight</h2><p>
The outer parts of the lens are coated in a black, rubber-ish material with a special feel to it. It has a definite touch of quality and style, and besides being rather good to look at, it comes very much in handy when zooming or focusing (as it provides good grip). The filter-size of 58mm means many lenshoods and filters will fit - many of them making the lens look very professional when viewed at a distance. Weighing around 550g it&#8217;s neither clumsy nor difficult to handle, and it feels very good when resting in one&#8217;s hand.</p>

<h2>Features and quality of image</h2><p>
As I lack different lenses to test, I can&#8217;t really comment on the quality of it. All I can say is that I am happy with the quality - it&#8217;s enough for my needs. At maximum zoom a tripod is mandatory as the lowest aperture one can shoot at it 5.6. Also, due to its lack of Vibration Reduction (VR) (Nikon&#8217;s stabilizing engine), hand-shot images can sometimes be slightly blurry if taken in low lighting-conditions. It has a built-in auto-focus engine that does its job - however if you let it work too much it will consume a lot of battery!<br />
The reason the lens is called a macro-lens is because of its ability to focus at objects at a mere 1.5 meters distance! If you select the special &#8220;macro-mode&#8221; this distance is even lower - 95cm! This means one can come very close to subjects and still get a crisp, clear image - very handy to say the least.</p>

<h2>Conclusion</h2><p>
The SIGMA 70-300mm lens is a great lens for amateur photographers looking for some serious zoom. Shooting at 300mm is fun and interesting - this lens will unlock the door to a whole new world of detailed photography. Examples of areas of use are during sports-events, wildlife photography and portrait photography. Considering its very low price, a minimum of around $200, it is an excellent addition to your collection of lenses if you&#8217;re lacking tele-zoom abilities.</p>

<ul>
<li>Pros
<ul>
<li>Price</li>
<li>Quality and feel</li>
<li>Appearance</li>
<li>Zoom capabilities</li>
</ul></li>
<li><p>Cons
</p><ul>
<li>Lack of Vibration Reduction (VR)</li>
<li>Small aperture</li>
<li>Badly optimized auto-focus engine</li>
</ul></li>
</ul>]]></description>
</item>

<item>
<title>I&#8217;m Using Woopra!</title>
<link>http://douglasstridsberg.com/blog/entries/im-using-woopra/</link>
<guid>http://douglasstridsberg.com/blog/entries/im-using-woopra/</guid>
<pubDate>Sat, 26 Sep 2009 07:53:48 +0000</pubDate>
<description><![CDATA[<p>Real-time analytics. Just to hear that word got me thinking a lot. What if I could, in real-time, track all my visitors and see what pages they went to and where they ended up. What paths they took to reach certain areas, what links they clicked, how long they read my articles. What if there was something that could do this for me in such an easy, fast and manageable way. This &#8220;something&#8221; was Woopra.</p>

<p>The first thing you see is a list of the sites you&#8217;ve added - in this case the only one is my blog, douglasstridsberg.com. Next to the site is a small box showing pageviews and visits in a neat little graph. After clicking on my site, I am taken to a sort of dashboard where I can watch all the latest statistics rolling in. I see a map, some graphs and a side-bar menu along with a lot of little information about referrers, keywords, searches and other things. Everything is neatly arranged in neat colors and in an overall very friendly user-interface.<br />
<a href="http://douglasstridsberg.com/images/uploads/woopra-dashboard.jpg" onclick="window.open('http://douglasstridsberg.com/images/uploads/woopra-dashboard.jpg','popup','width=1039,height=745,scrollbars=no,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://douglasstridsberg.com/images/uploads/woopra-dashboard_thumb.jpg" style="border: 0;" alt="image" width="300" height="213" /></a><br />
I am pleased with Woopra. As the screenshot shows, I&#8217;ve only just begun using it - and it will perhaps take a while before it truly shows its beauty. Apparent they are <a href="http://www.woopra.com/blog/2009/09/17/closing-woopra-beta-approvals-sign-up-now/">closing their beta sign-ups</a> - so you&#8217;ll have to wait before getting one!
</p>]]></description>
</item>

<item>
<title>Early Review of the Sony Ericsson XPERIA X5</title>
<link>http://douglasstridsberg.com/blog/entries/early-review-of-the-sony-ericsson-xperia-x5/</link>
<guid>http://douglasstridsberg.com/blog/entries/early-review-of-the-sony-ericsson-xperia-x5/</guid>
<pubDate>Sun, 20 Sep 2009 16:54:22 +0000</pubDate>
<description><![CDATA[<p>UPDATE: It seems the phone has finally been released, under the name of <i><a href="http://www.sonyericsson.com/cws/products/mobilephones/overview/xperiapureness">Sony Ericsson Pureness</a></i>. Looks cool!</p>

<h2>The display</h2><p>
The first thing about the new Sony Ericsson XPERIA X5 (just X5 in short) you will notice is the display. Not only does it sport the usual you&#8217;d expect from Sony Ericsson - high resolution and crisp, clear pixels - but the display itself is transparent! It&#8217;s like looking through a piece of tinted glass, except for the fact that the piece of glass can display text, images, videos and even games! The only major downside to it is the lack of colors, although I personally am not missing it too much.<br />
<a href="http://douglasstridsberg.com/images/uploads/sony-ericsson-xperia-x5.png" onclick="window.open('http://douglasstridsberg.com/images/uploads/sony-ericsson-xperia-x5.png','popup','width=767,height=515,scrollbars=no,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://douglasstridsberg.com/images/uploads/sony-ericsson-xperia-x5_thumb.png" style="border: 0;" alt="image" width="400" height="265" /></a>
</p><h2>The outside</h2><p>
The rest of the phone consists of a glossy black keypad, all in one piece except for the lines dividing the numbers and the <i>Call</i>, the center and the <i>Cancel</i> buttons. When lit up, the three mentioned buttons glow with a green, white and red light respectively. The + and - volume buttons are placed one on each side, in line with the three main buttons. On the sides there is also the power input and the SIM-card slot. On the back side of the phone the back side of the display is visible (which you of course can see through) and the small power button.</p>

<h2>Built-in battery</h2><p>
What&#8217;s interesting about the XPERIA X5, apart from the display, is the way it handles battery and storage. The X5 features a built-in media-storage module of up to 2GB&#8217;s - enough to fit more than 500 standard-sized MP3&#8217;s - and a built-in regular storage of around 100MB&#8217;s. It also has, in contrast to most other phones, a built-in battery. I suspect the reason Sony Ericsson chose to build the battery inside of the phone was to avoid the extra cost and vulnerability of a battery cover.</p>

<h2>Light-weight</h2><p>
Although the X5 lacks a camera, it&#8217;s a great mobile phone. The design of the outside, not to forget the design of the menus inside the phone (!) gives a very luxurious impression and modern impression. Most, if not all, standard features are there (such as Bluetooth, radio, synchronization, music player and fast 3G internet). Thanks to its design, the X5 is very light weight and small, it can be used by a lot of different people with different lifestyles.</p>

<h2>Conclusion</h2><p>
I love this phone. Sure, the lack of colors can be annoying at times and it sure would be fun to have a built-in GPS and WiFi internet. But for anyone, ranging from businessmen to simply every-day users, the Sony Ericsson XPERIA X5 is a great phone. Just wait until it reaches the markets, I guess!
</p>]]></description>
</item>

<item>
<title>New XBOX Blog Launched</title>
<link>http://douglasstridsberg.com/blog/entries/new-xbox-blog-launched/</link>
<guid>http://douglasstridsberg.com/blog/entries/new-xbox-blog-launched/</guid>
<pubDate>Sat, 12 Sep 2009 22:51:44 +0000</pubDate>
<description><![CDATA[<p>A couple of weeks ago I decided to start publishing XBOX-related articles on a new blog I created. For this purpose, I uploaded an installation of WordPress and started writing.</p>

<p>The XBOX is Microsoft&#8217;s old gaming console - it was good at the time and it still is. My goal is to educate people about everything there is to know in and around the XBOX. I&#8217;ve written content about <a href="http://xbox.douglasstridsberg.com/2009/how-to-connect-your-xbox-to-a-tv/">connecting the XBOX to a TV</a>, <a href="http://xbox.douglasstridsberg.com/2009/massive-guide-how-to-change-hard-drive-in-your-xbox/">changing the harddrive in the XBOX</a> and a lot more!</p>

<p>For this purpose, I&#8217;ve started <a href="http://xbox.douglasstridsberg.com/">Thy Old XBOX</a>. Please, visit the site and read some of the articles and do comment on the content if you wish!
</p>]]></description>
</item>

<item>
<title>How To Remove Spotify Ads Without Premium</title>
<link>http://douglasstridsberg.com/blog/entries/how-to-remove-spotify-ads-without-premium/</link>
<guid>http://douglasstridsberg.com/blog/entries/how-to-remove-spotify-ads-without-premium/</guid>
<pubDate>Tue, 01 Sep 2009 07:25:03 +0000</pubDate>
<description><![CDATA[<p><i>This guide, in its entirety, is taken from <a href="http://smexdesign.se">SmexDesign</a>. Credits goes to him for finding this!</i></p>

<h2>#1</h2><p>
Open Spotify and log in with your credentials. Click <i>Edit</i> in the top-hand menu and then press <i>Preferences&#8230;</i>.</p>

<h2>#2</h2><p>
Set the <i>Proxy</i> to <i>HTTPS</i> and enter these details as your host and port:<br />
<code>Host: 213.203.241.210<br />
Port: 80</code><br />
Make sure your settings look like mine:<br />
<img src="http://douglasstridsberg.com/images/uploads/spotify-proxy-settings.png" style="border: 0;" alt="spotify proxy settings https" width="653" height="139" /></p>

<p>Now, play your favorite music without ads interrupting! Comment back if this works for you!</p>

<h2>Other notes</h2><p>
A reader by the name Christoffer had an idea about how this fix works. Here&#8217;s what he said:</p>

<p><i>But I’m pretty sure that I understand why it did work before. They seem to have targeted the ads to the countries in which it was possible to register for spotify only, so if you used a proxy from a country with no ads, you wouldn’t get any at all.</i></p>

<p>Sounds like a reasonable explanation, does it not?
</p>]]></description>
</item>

<item>
<title>The New Wikipedia Beta</title>
<link>http://douglasstridsberg.com/blog/entries/the-new-wikipedia-beta/</link>
<guid>http://douglasstridsberg.com/blog/entries/the-new-wikipedia-beta/</guid>
<pubDate>Fri, 07 Aug 2009 08:14:00 +0000</pubDate>
<description><![CDATA[<p>Wikipedia launched, a couple of days ago, a Beta version of the highly popular online encyclopedia. The update focuses around enhancing usability and thus stimulate more to edit and create new content.<br />
<img src="http://upload.wikimedia.org/wikipedia/commons/2/26/UsabilityNavigation.png" alt="Wikipedia Beta usability navigation" /><br />
<img src="http://upload.wikimedia.org/wikipedia/commons/1/19/UsabilityToolbar.png" alt="Wikipedia Beta usability toolbar" /><br />
<i>Images taken from Wikipedia itself, showing off some bits of the new design.</i></p>

<p><a href="http://thecoffeedesk.com/">The Coffee Desk</a> has an <a href="http://thecoffeedesk.com/news/index.php/2009/08/06/wikipedia-beta-review/">article about the Wikipedia Beta</a>, highlighting the design, the search function, the use of AJAX and the new text-editor. As I have been unable to test this Beta myself, I leave you to read that article!
</p>]]></description>
</item>

<item>
<title>The AutoISO Feature &#45; How Does It Work?</title>
<link>http://douglasstridsberg.com/blog/entries/the-autoiso-feature-how-does-it-work/</link>
<guid>http://douglasstridsberg.com/blog/entries/the-autoiso-feature-how-does-it-work/</guid>
<pubDate>Fri, 31 Jul 2009 15:50:00 +0000</pubDate>
<description><![CDATA[<p>The AutoISO-feature, available on most modern DSLR cameras (digital system cameras), enables the camera to set its own ISO-values. The user selects a shutter speed as the &#8220;minimum speed&#8221;, telling the camera that it should attempt to keep the shutter-speed at this level or faster. Based on the amount of light in the picture, the size of the aperture (the f-stop) and the selected minimum shutter-speed, the camera carefully chooses a custom ISO-sensitivity. By &#8220;custom ISO-sensitivity&#8221; I mean a value that&#8217;s not limited to ISO200, ISO400, ISO800 or ISO1600 but a value that can be set anywhere on the scale (ISO240, ISO530, ISO670). The maximum ISO-sensitivity can also be defined to lower noise, meaning that the camera never goes past this ISO-value but instead lowers the shutter speed.</p>

<p>How does AutoISO help you then? Well, imagine you&#8217;re shooting indoors. The lighting conditions can change rapidly and you need to take well-exposed shots all the time. Keeping a firm ISO is not flexible enough whilst constantly changing the ISO-sensitivity is not time-efficient. The AutoISO-feature keeps you shooting at a fast shutter speed all the time by making much faster and more accurate changes to the ISO-sensitivity on-the-fly.</p>

<p>All-in-all the AutoISO-feature is a great tool and is well worth the time to try it out!<br />
<img src="http://douglasstridsberg.com/images/uploads/nikon-logo.gif" style="border: 0;" alt="Nikon logo" width="50" height="50" /><br />
<img src="http://douglasstridsberg.com/images/uploads/canon_logo.gif" style="border: 0;" alt="Canon logo" width="67" height="35" /><br />
<img src="http://douglasstridsberg.com/images/uploads/olympus_logo.jpg" style="border: 0;" alt="Olympus logo" width="84" height="24" /><br />
<img src="http://douglasstridsberg.com/images/uploads/sony-logo.jpg" style="border: 0;" alt="Sony logo" width="65" height="39" />
</p>]]></description>
</item>

<item>
<title>Interesting New Anti&#45;Virus Software &#45; VIPRE</title>
<link>http://douglasstridsberg.com/blog/entries/interesting-new-anti-virus-software-vipre/</link>
<guid>http://douglasstridsberg.com/blog/entries/interesting-new-anti-virus-software-vipre/</guid>
<pubDate>Sun, 05 Jul 2009 07:17:00 +0000</pubDate>
<description><![CDATA[<p>Recently, the company behind a host of security- and storage-related programs, Sunbelt Software, released its <a href="http://www.sunbeltsoftware.com/Home-Home-Office/VIPRE/">Antivirus Software</a> called <b>VIPRE</b>.<br />
The software has been designed to efficiently cure and prevent viruses, spywares, trojans, etc. But the interesting part here is that it has been built to be faster than Norton, McAffee, NOD32 and other currently popular antiviruses.</p>

<p>VIPRE Antivirus features, other than its very intuitive and sleek design, advanced anti-rootkit technology, real-time monitoring with its Active Protection™ and a unique and very resource-friendly anti-virus and spyware engine.<br />
VIPRE is highly worth a try, whether you&#8217;re satisfied with your current antivirus or not, and you can now download the <a href="http://www.sunbeltsoftware.com/Home-Home-Office/VIPRE/">free working 15-day trial</a> to do so <b>now</b>!</p>

<p><a href="http://www.sunbeltsoftware.com/Home-Home-Office/VIPRE/"><img src="http://www.software.com/images/products/Sunbelt%20VIPRE%20Antivirus_177_216.jpg"></a>
</p>]]></description>
</item>

<item>
<title>Facebook Usernames &#45; Finally!</title>
<link>http://douglasstridsberg.com/blog/entries/facebook-usernames-finally/</link>
<guid>http://douglasstridsberg.com/blog/entries/facebook-usernames-finally/</guid>
<pubDate>Sat, 13 Jun 2009 04:04:00 +0000</pubDate>
<description><![CDATA[<p><i>The clock ticks at 5:59, 6:00 and then reaches 6:01AM. What a thrill! The adrenaline pumping, the eyes flickering, the fingers rapidly pressing the keyboard trying to get that special username&#8230;</i></p>

<p>After trying <i>/douglas</i> and actually getting a message that the name was available - miliseconds later chaning status to taken - I finally rested my mind on <i><a href="http://www.facebook.com/dstridsberg">/dstridsberg</a></i>. Not too bad, but perhaps <i>/douglas.stridsberg</i> would have been better?</p>

<p>I don&#8217;t know, and I sure was way too fired up to think about anything else at the very moment&#8230;</p>

<p>I did, though, have a chat with the Douglas that received <a href="http://www.facebook.com/douglas">/douglas</a> and in his timezone (6 hours behind mine) he only just had to stay up till 12AM (which isn&#8217;t that late considering its a Friday night). Life&#8217;s unfair - isn&#8217;t it?</p>

<p>Anyway, I&#8217;m still rather happy with <a href="http://www.facebook.com/dstridsberg">my new facebook username</a>, <a href="http://www.facebook.com/dstridsberg">Douglas Stridsberg</a>! Perhaps this will in some way or another favor my Google search rankings?
</p>]]></description>
</item>

<item>
<title>My First Google Error Ever</title>
<link>http://douglasstridsberg.com/blog/entries/my-first-google-error-ever/</link>
<guid>http://douglasstridsberg.com/blog/entries/my-first-google-error-ever/</guid>
<pubDate>Sat, 13 Jun 2009 03:39:00 +0000</pubDate>
<description><![CDATA[<p>On the 1st of June 2009 at around 6PM GMT I received the following Google Server Error:<br />
<a href="http://douglasstridsberg.com/images/uploads/google-error.png" onclick="window.open('http://douglasstridsberg.com/images/uploads/google-error.png','popup','width=1273,height=287,scrollbars=no,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://douglasstridsberg.com/images/uploads/google-error_thumb.png" style="border: 0;" alt="Google Server Error" width="500" height="108" /></a><br />
I was rather tempted to mail <em><span id='eeEncEmail_wdRInX8Kso'>(JavaScript must be enabled to view this email address)</span><script type="text/javascript">
//<![CDATA[
var l=new Array();
var output = '';
l[0]='>';l[1]='a';l[2]='/';l[3]='<';l[4]=' 109';l[5]=' 111';l[6]=' 99';l[7]=' 46';l[8]=' 101';l[9]=' 108';l[10]=' 103';l[11]=' 111';l[12]=' 111';l[13]=' 103';l[14]=' 64';l[15]=' 114';l[16]=' 111';l[17]=' 114';l[18]=' 114';l[19]=' 101';l[20]='>';l[21]='\"';l[22]=' 109';l[23]=' 111';l[24]=' 99';l[25]=' 46';l[26]=' 101';l[27]=' 108';l[28]=' 103';l[29]=' 111';l[30]=' 111';l[31]=' 103';l[32]=' 64';l[33]=' 114';l[34]=' 111';l[35]=' 114';l[36]=' 114';l[37]=' 101';l[38]=':';l[39]='o';l[40]='t';l[41]='l';l[42]='i';l[43]='a';l[44]='m';l[45]='\"';l[46]='=';l[47]='f';l[48]='e';l[49]='r';l[50]='h';l[51]='a ';l[52]='<';
for (var i = l.length-1; i >= 0; i=i-1){ 
if (l[i].substring(0, 1) == ' ') output += "&#"+unescape(l[i].substring(1))+";"; 
else output += unescape(l[i]);
}
document.getElementById('eeEncEmail_wdRInX8Kso').innerHTML = output;
//]]>
</script></em>...</p>

<p>Have you ever encountered such an error on Google?
</p>]]></description>
</item>

<item>
<title>Mac MSN Messenger Loses Focus &#45; Solved!</title>
<link>http://douglasstridsberg.com/blog/entries/mac-msn-messenger-loses-focus-solved/</link>
<guid>http://douglasstridsberg.com/blog/entries/mac-msn-messenger-loses-focus-solved/</guid>
<pubDate>Thu, 04 Jun 2009 20:48:00 +0000</pubDate>
<description><![CDATA[<p>The problem with MSN losing focus after sending a message derives from the latest beta of Safari, believe it or not. Safari Beta 4 installed a version of WebKit which apparently caused the text-area inside MSN Messenger to behave erratically.<br />
Just uninstalling Safari from <i>Applications</i> does not resolve the problem, nor does an uninstall of WebKit nightly builds do the trick. What you need to do is download the Safari <i>.dmg</i> file and run the uninstaller - here&#8217;s how:</p>

<h2>#1</h2><p>
Download the Safari Beta from <a href="http://www.apple.com/safari/download/">Apple&#8217;s homepage</a> and mount it or unpack it anywhere.</p>

<h2>#2</h2><p>
<a href="http://douglasstridsberg.com/images/uploads/safari-4-mounted.png" onclick="window.open('http://douglasstridsberg.com/images/uploads/safari-4-mounted.png','popup','width=672,height=461,scrollbars=no,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://douglasstridsberg.com/images/uploads/safari-4-mounted_thumb.png" style="border: 0;" alt="Safari 4" width="250" height="169" /></a><br />
Open the <i>Safari4.0BetaUninstall.pkg</i> file and complete the steps necessary to uninstall the software. Note that after the uninstall, <b>you will not have a working web browser</b> unless you install another browser!</p>

<p>After these steps and a restart your MSN Messenger should be working fine!
</p>]]></description>
</item>

<item>
<title>Satellite TV on your PC &#45; Does It Work?</title>
<link>http://douglasstridsberg.com/blog/entries/satellite-tv-on-your-pc-does-it-work/</link>
<guid>http://douglasstridsberg.com/blog/entries/satellite-tv-on-your-pc-does-it-work/</guid>
<pubDate>Wed, 03 Jun 2009 11:03:00 +0000</pubDate>
<description><![CDATA[<p><i>This guide involves acquiring a piece of software (PCSatelliteTV) that is not free - either you buy it or you get hold of it in some other way. I will not be held liable for your choice.</i></p>

<p><img src="http://douglasstridsberg.com/images/uploads/satellite-tv-to-pc-logo.jpg" style="border: 0;" alt="Satellite TV to PC logo" width="783" height="366" />
</p><h2>Introduction</h2><p>
This guide will cover just how easy it is to play TV on your computer using nothing but software and internet. I was amazed at how well it worked, and although the quality could have been better the choice of channels makes up for it.<br />
This guide involves, as stated above, an acquisition of PCSatelliteTV and you may choose in which way you do this.</p>

<h2>Install</h2><p>
Install the program using custom or standard settings, either way works well. No crucial configuration is needed during the installation process. I found some trouble with NOD32 giving virus warnings however I found that the warnings were only issued to the temporary files that were extracted - not the final product.</p>

<h2>Scan for channels (optional)</h2><p>
Before opening the program you may want to scan for channels. This extremely slow process (can take hours) scans a directory for any channel available. I have as of now not fully completed a scan like this, so I can&#8217;t tell you whether it&#8217;s useful or not.<br />
<img src="http://douglasstridsberg.com/images/uploads/scan_channels.jpg" style="border: 0;" alt="Scan for channels" width="867" height="196" /><br />
To start the scan, open the <i>Scan Channels.exe</i> file in your installation directory (the one you specified during installation), press the <i>Scan For Available Channels</i>&nbsp; and let it sit for a long time. A progress bar will tell you how much is left.</p>

<h2>Conclusion</h2><p>
After all of this it&#8217;s time to enjoy your TV! Open up the main PCSatelliteTV application and doubleclick on any channel to start playing. The quality could be much better and some channels fail to work entirely, but at least it&#8217;s TV - and not only free channels but also paid ones.<br />
It does its job - it works, but of course it can be made much better.</p>

<h2>Screenshots</h2><p>
<a href="http://douglasstridsberg.com/images/uploads/satellite-tv-main-view.jpg" onclick="window.open('http://douglasstridsberg.com/images/uploads/satellite-tv-main-view.jpg','popup','width=975,height=647,scrollbars=no,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">ESPN Nascar</a><br />
<a href="http://douglasstridsberg.com/images/uploads/satellite-tv-main-view-arabic.jpg" onclick="window.open('http://douglasstridsberg.com/images/uploads/satellite-tv-main-view-arabic.jpg','popup','width=975,height=647,scrollbars=no,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">Al Jazeera</a>
</p>]]></description>
</item>

<item>
<title>Five Reaons Not to use Live View in a Camera</title>
<link>http://douglasstridsberg.com/blog/entries/five-reaons-not-to-use-live-view-in-a-camera/</link>
<guid>http://douglasstridsberg.com/blog/entries/five-reaons-not-to-use-live-view-in-a-camera/</guid>
<pubDate>Thu, 28 May 2009 06:05:00 +0000</pubDate>
<description><![CDATA[<h2>Battery power - why waste it?</h2><p>
Using Live View drastically shortens the time you&#8217;re able to use your camera on its batteries, unless you plug it in to a charger. As new images constantly have to be rendered on the screen - many frames per second and often a high brightness - this easily drains your batteries.</p>

<h2>Accuracy? - I don&#8217;t think so&#8230;</h2><p>
What Live View shows cannot in any way reflect what the viewfinder shows, nor how your subject really looks. A lot of times you can be lead into believing that colors, brightness and even sharpness is correctly tuned - after taking the picture you see that none of this corresponds to what was taken.</p>

<h2>Unnecessary icons and information</h2><p>
A display is usually cluttered with icons, information and lots of other things that really can disturb when taking photos. A good viewfinder has all the information placed <i>outside</i> the actual image, and only the focus is actually shown.</p>

<h2>Stability is lost</h2><p>
Imagine yourself holding your camera so that you can see the Live View. This requires most people to hold the camera away from the body and head to be able to see anything. Although you might be holding with two hands there is still a lack of stability and you will often encounter unsharp images - simply due to shaking. Looking through a viewfinder eliminates this as your head is helping to keep the camera stable.</p>

<h2>You have to look <b>cool</b> when taking photos!</h2><p>
Look at someone taking a picture using the Live View and compare it with someone who is using the viewfinder. Go figure, viewfinder is a lot cooler. End of discussion.
</p>]]></description>
</item>

<item>
<title>Selling a Newly&#45;Built Computer</title>
<link>http://douglasstridsberg.com/blog/entries/selling-a-newly-built-computer/</link>
<guid>http://douglasstridsberg.com/blog/entries/selling-a-newly-built-computer/</guid>
<pubDate>Sun, 17 May 2009 11:04:00 +0000</pubDate>
<description><![CDATA[<h2>Specifications</h2>
<ul><li>Intel Pentium 4, 3.0GHz (15 x 200) dualcore</li>
<li>MSI PT8 Neo-V (5 PCI, 1 AGP, 2 DDR DIMM, Audio, LAN)&nbsp; VIA Apollo P4X533</li>
<li>1024 MB (DDR SDRAM)</li>
<li>ATI Radeon HD 2400 Series (256 MB)</li>
<li>MAXTOR S TM3160211AS (160 GB, 7200 RPM, SATA-II)</li>
<li>DVD-RW Drive</li>
<li>FireWire-1934 Connections</li></ul>

<h2>Description</h2><p>
<a href="http://douglasstridsberg.com/images/uploads/blocket-dator-annons.jpg" onclick="window.open('http://douglasstridsberg.com/images/uploads/blocket-dator-annons.jpg','popup','width=765,height=615,scrollbars=no,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="http://douglasstridsberg.com/images/uploads/blocket-dator-annons_thumb.jpg" style="border: 0;" alt="PC Project" width="400" height="320" /></a><br />
A newly built PC with a fast Intel processor and a robust motherboard from MSI gives you all the performance you need for surfing the web, playing less intense games or watching HD-videos on large screens.<br />
The ATI GPU-card is one of the more modern and faster AGP cards and can handle high resolutions and intense action. FireWire and USB2.0 ports are added for your convenience.<br />
The Operating System installed is an original Windows Vista Ultimate with all updates and drivers pre-installed!</p>

<p>I published this computer on a buy-and-sell-site in Sweden and set the price to about €234, hoping to attract people looking for a cheap alternative to expensive powerhouses - which still can run most games and act as a great media-computer.</p>

<p><strong>And after a few weeks I finally did manage to get it sold - for €234, a very good price if you ask me!</strong></p>

<p>What do you think? Opinions? Suggestions?
</p>]]></description>
</item>

<item>
<title>Organic Chemistry &#45; Hydrocarbons</title>
<link>http://douglasstridsberg.com/blog/entries/organic-chemistry-hydrocarbons/</link>
<guid>http://douglasstridsberg.com/blog/entries/organic-chemistry-hydrocarbons/</guid>
<pubDate>Sun, 17 May 2009 07:30:00 +0000</pubDate>
<description><![CDATA[<h2>Definition</h2><p>
The study of organic chemistry is the study of the chemistry of carbon compounds. Not all carbon compounds are counted as organic, the rule excludes carbonates (<i>x</i>-CO₃), carbon monoxide (CO) and carbon dioxide (CO₂).<br />
Hydrocarbons contain hydrogen (H) and carbon only. They are divided into groups such as alkanes, alkynes, alkenes and alcohols, and are homologous series. Homologous series are, accodring to <a href="http://www.tiscali.co.uk/reference/encyclopaedia/hutchinson/m0019205.html">tiscali.co.uk</a>, &#8220;any of a number of series of organic compounds with similar chemical properties in which members can be described by a general formula and ofen differ by a constant relative molecular mass&#8221;.</p>

<h2>Alkanes</h2><p>
Alkanes are, thanks to their purely single carbon bonds (C-C), saturated. Physical properties include low melting- and boiling points considering the molar mass. They do not conduct, have low densities and do not solve in water.
</p><h3>Examples</h3>
<ul><li>Methane - CH₄</li>
<li>Ethane - C₂H₆</li>
<li>Propane - C₃H₈</li>
<li>Butane - C₄H₁₀</li>
<li>Pentane - C₅H₁₂</li>
<li>Hexane - C₆H₁₄</li></ul>

<h2>Alkenes</h2><p>
Alkenes have one double carbon bond (C=C), and as they have at least one double bond they are unsaturated. Physical properties include the appearance; ranging from colorless gas to black solids, the non-conductivity, the low melting- and boiling points, the low densities, the insolubility in water and the volatility - as alkenes react rather much due to their double bond (resulting in either combustion or addition).<br />
Examples of addition can be found when mixing an alkene (or any other unsaturated hydrocarbon) with Bromine water. When shaken, unsaturated hydrocarbons decolorize the solution.<br />
Also, ethene forms ethanol when reacted with water, essentially saturating the unsaturated hydrocarbon. This process is often used in margarine production, to state an example.
</p><h3>Examples</h3>
<ul><li>Ethene - C₂H₄</li>
<li>Propene - C₃H₆</li>
<li>Butene - C₄H₈</li></ul>

<h2>Alcohols</h2><p>
Physical properties of alcohols include liquid state at room temperature, rather high volatility (resulting in combustion), lack of color, low melting- and boiling points, low densities (compared to water) and a lack of conductivity.<br />
Among the chemical properties one finds a low reactivity. The uses for alcohols are in beverages and foods as well as in fuel and disinfectors.<br />
Alcohols are made using two different processes - fermentation of sugar and hydration of ethene.<br />
The process of fermentation is to convert glucose sugar (C₆H₁₂O₆) into alcohol (CH₃CH₂OH) and carbon dioxide (CO₂) - essentially adding yeast to sugar.<br />
The process of hydrating ethene is to add water in a gaseous form (H₂O) to ethene (C₂=C₂), also in a gaseous form. Ethene is mixed with the water steam and passed over a catalyst consisting of solid silicon dioxide coated with phosphoric(V) acid, all under a pressure of 60-70 atmospheres and a temperature of nearly 300°C.
</p><h3>Examples</h3>
<ul><li>Methanol - CH₃OH</li>
<li>Ethanol - CH₅OH (or CH₃CH₂OH)</li>
<li>Propanol - CH₇OH (or CH₃CH₂CH₂OH)</li></ul>]]></description>
</item>

<item>
<title>The European Union &#45; History and Today</title>
<link>http://douglasstridsberg.com/blog/entries/the-european-union-history-and-today/</link>
<guid>http://douglasstridsberg.com/blog/entries/the-european-union-history-and-today/</guid>
<pubDate>Mon, 11 May 2009 13:07:00 +0000</pubDate>
<description><![CDATA[<h2>Introduction</h2><p>
The European Union (EU) was founded in 1958 as the European Economic Community (ECC). In 1968 it changed name to the European Community (EC) and later to the European Union in 1993.</p>

<h2>Background</h2><p>
After the Second World War Western Europe faced two political and one economic threat;
</p><ul><li>the fear of a German retaliation and uprising (mostly a French concern),</li>
<li>the fear of the Communists and Russia (mostly an Anglosaxian concern),</li>
<li>and the fear of poverty and starvation mostly in Germany and France.</li></ul>

<p>The political answer to these threats was two organizations;
</p><ul><li>NATO (North Atlantic Trade Organization) was formed to keep Russia out of Europe, to keep Germany&#8217;s economy down and to keep America inside European affairs,</li>
<li>and the EEC (European Economic Community), to somewhat co-operate with Germany but also to hinder her from an all too great economy.</li></ul>

<h2>Objective</h2><p>
The overall objective was peace through proper handling of Germany and Russia, disabling Germany from rebuilding an army and keeping Russia out of Europe. Also, a key part of success was prosperity through economic co-operation and cultural exchange within member countries.</p>

<h2>Controversy</h2><p>
Generally speaking, there are two camps in the EU - the federalists and the confederalists, being somewhat opposites</p>

<h3>Federalists</h3>
<ul><li>More power to Brussels through EMU (European Monetary Union with its currency - the €uro), foreign policies and other co-operation.</li>
<li>The EU should be a supranational organization, i.e. an organization which stands above national governments.</li></ul>

<p>Examples of federalist countries are the Benelux, Germany, France and others.
</p><h3>Confederalists</h3>
<ul><li>Less power to Brussels, as economic co-operation suffices.</li>
<li>The EU should be an international organization, thus more power will remain on a national level.</li></ul>

<p>Examples of confederalist countries are Sweden, the United Kingdom and Denmark.</p>

<h2>Steps of Integration</h2><p>
In 1947, the Council of Europe was founded. Due to controversy, the unity became powerless. In 1948 the OEEC (the Organizations of European Economic Co-operation) was formed, mainly as a result of the Marshal Plan in the USA. Both these unions failed due to controversy between federalists and confederalists (see above).</p>

<p>In 1949, NATO (the North American Trade Organization) was formed. It brought European politicians together for the first time.</p>

<p>In 1951 the Paris Treaty (the European Coal &amp; Steel Community, ECSC) was signed to solve issues with the struggle of federalists versus confederalists. The ECSC was a common market in coal and steel, designed to aid member countries to control production, prevent wars and increase efficiency in trade and production.</p>

<p>In 1958 the Treaty of Rome (and essentially the EEC) was signed and put into action. The treaty is a consitution - it describes the objectives of the EEC and regulates how it is to be governed. The Treaty of Rome merged three organizations into one - the ECSC, EEC and the European Atomic Energy Community (EAEC or Euratom).</p>

<p>The European Free Trade Association (EFTA) was founded in 1959 as a confederalist response to the EEC. In 1962, the CAP (Common Agricultural Policy) was signed. It granted subsidies to farmers and is still in place today. In the year 1968, the Customs Union was completed, abolishing tariffs within Europe.</p>

<p>Between 1973 and 1985 the integration project did not evolve in a satisfactory way due to a recession and an oil crisis. This resulted in unemployment problems and lead to increased protectionism, which eventually lead to non-tariff barriers to trade. During these years however, there was a territorial expansion. Six new members entered the union - Denmark, the United Kingdom, Ireland, Greece, Portugal and Spain.</p>

<h2>The Single Market (1985-1992)</h2>
<h3>Definition</h3><p>
The general &#8220;single market&#8221; term refers to a customs union combined with the <i>four freedoms</i> - free movement of goods, services, labor and capital. To achieve free trade you must not only remove tariffs but also remove non-tariff barriers to trade. Decisions in the Council of Ministers (see below) at the time required unanimity to pass, thus hindering the removal of the said barriers.</p>

<h3>Background</h3><p>
In 1985 however a movement to introduce a Single Market began. The background to this was the high unemployment rates, remaining at 10-15%, and the threat from the Pacific economy (USA and its trade partners).<br />
A single market would lead to free trade which would lead to more competition - therefore lowering prices. The economic objective was that the lowered prices would lead to welfare and a more competitive Europe - the political objective was to increase integration inside Europe (again, a part of the Steps of Integration). This all made the introduction of a Single Market very important.<br />
Thanks to the Single European Act in 1987 and its ammendation of the treaties, decisions concerning trade and the economy now only required 2/3 percentual majority. An action-plan - the White Paper - was in 1985 established to remove all non-tariff barriers to trade. The &#8220;Cassis de Dijon&#8221;-principle set and example of how future cases were to be handled; if a good or service is allowed to be sold in one country, it cannot be prohibited in another EU country.</p>

<h2>Institutions of the EU</h2>
<h3>The Council of Ministers</h3><p>
The Council of Ministers is the lawmaking (legislative) body of the European Union. The decision about new laws are made in conjunction with the EU parliament. The laws (also called directives or regulations) passed in the Council are &#8220;above&#8221; the national laws passed by national parliaments. National ministers are sent from the capitols to discuss and come to agreements. Thus, this institution is the voice of the member countries.<br />
Since the said ministers are not elected by the people, there is a democratic deficit. The said deficit is also present due to the lack of openness (transparency) in the Council, hindering the media from getting instant access to protocols and other documents.
</p><h3>The European Commission</h3><p>
The European Commission is the executive body, the government if you will, of the European Union. As it initiates proposals in the law-making process, the Commission gains a lot of power when laws are to be made. It also ensures that member countries implement the EU regulations into their own, national legislations. Loyalty costs a lot - European Commissioners are generally very well paid.
</p><h3>The European Parliament</h3><p>
The European Parliament makes new laws (regulations) together with the Council of Ministers, although it&#8217;s not as powerful as the Council itself due to the limited areas in which the Parliament makes laws.
</p><h3>The Court of Justice</h3><p>
The Court of Justice settles economic disputes between not only companies but also countries. The Court also interprets the common European Union legislation.
</p><h3>The European Council</h3><p>
The European Council hosts summit meetings with presidents and prime ministers. During these meetings main policies of the European Union are discussed as well as main issues for the future.
</p>]]></description>
</item>

<item>
<title>How to Change Mouse Polling Rate in Vista</title>
<link>http://douglasstridsberg.com/blog/entries/how-to-change-mouse-polling-rate-in-vista/</link>
<guid>http://douglasstridsberg.com/blog/entries/how-to-change-mouse-polling-rate-in-vista/</guid>
<pubDate>Sat, 02 May 2009 08:50:12 +0000</pubDate>
<description><![CDATA[<p><i>This guide is, in its entirety, taken from Jim&#8217;s thread over at <a href="http://forum.overclock3d.net/showthread.php?t=8561">OverClock3d</a>.</i></p>

<p>These files will increase your USB polling frequency from the Windows Vista default of 125hz to 500hz or 1000hz making your mouse much more responsive in gaming. This file will only work on the RTM/Final version of Vista 32-Bit and 64-bit. If you want the same hack under Windows XP just search google for &#8220;XP usbport.sys 500hz&#8221;.</p>

<ol><li>Restart Vista and repeatedly press F8 to bring up the boot menu. Select <i>Safe Mode</i>.</li>
<li>Press <i>Start > Run&#8230;</i> and enter this into the box: <code>bcdedit -set loadoptions DISABLE_INTEGRITY_CHECKS</code> . This disabled the constant integrity checks that will disable you from overwriting system files. After the restart, it is set back to default.</li>
<li>Open the same window and this time enter this: <code>takeown /f &#8220;C:\Windows\System32\Drivers\usbport.sys&#8221;</code> . This commands lets you take full ownership of the <i>usbport.sys</i> file, enabling you to rename it.</li>
<li>Again, in the <i>Run&#8230;</i> box enter this: <code>cacls &#8220;C:\Windows\System32\Drivers\usbport.sys&#8221; /G <strong>username</strong>:F</code> . Replace <i><strong>username</strong></i> with the account you&#8217;re using on Windows. This further makes sure you are allowed to edit and rename the file.</li>
<li>Open <code>C:\Windows\System32\Drivers</code> and locate the existing <i>usbport.sys</i>, and rename it to <i>usbport.old</i></li>
<li>Download <a href="http://douglasstridsberg.com/images/uploads/usbport_x32+x64.zip">this file</a>, unzip it and copy the <i>usbport.sys</i> from the appropriate folder over to <code>C:Windows\System32\Drivers</code>.</li>
<li>Restart your computer, and use <a href="http://tscherwitschke.de/download.html">mouserate.exe</a> to check whether the settings have had effect.</li></ol>

<p>Hope this helped you!
</p>]]></description>
</item>

<item>
<title>How to Share a Hard Drive on a Vista Network</title>
<link>http://douglasstridsberg.com/blog/entries/how-to-share-a-hard-drive-on-a-vista-network/</link>
<guid>http://douglasstridsberg.com/blog/entries/how-to-share-a-hard-drive-on-a-vista-network/</guid>
<pubDate>Sat, 25 Apr 2009 12:07:00 +0000</pubDate>
<description><![CDATA[<h2>Background</h2><p>
This is how <a href="http://technet.microsoft.com/en-us/library/bb727037.aspx">an article at Microsoft&#8217;s TechNet</a> describes the changes in Vista&#8217;s sharing.</p>

<ul><li>The default workgroup name in Windows Vista has been changed to WORKGROUP. In Windows® XP Home Edition, the default workgroup name is MSHOME. If you upgrade a computer running Windows XP Home Edition to Windows Vista, it will keep its existing workgroup name. However, new computers with Windows Vista can have a different workgroup name than the other computers on your network. With different workgroups, it takes more time and effort to view all of the computers on the network.</li>
<li>Windows Vista uses the Public folder, rather than the Shared Documents folder in Windows XP, to simplify file sharing. With Public folder sharing enabled, the public folders and all of the folders within the Public folder are automatically shared with the name Public. You do not have to configure file sharing on separate folders. You only have to either move or copy the file or folder you want to share on the network to the Public folder.</li>
<li>Windows Vista by default does not allow simple file sharing. Access to shared folders, including the public folder (if shared), requires a user name and password. Simple file sharing is enabled by default in Windows XP Home Edition.</li></ul>

<p>Sharing hard drives was perhaps not <i>easy</i> in Windows XP, but it sure is harder on Vista. It took me a while to figure out what to do, but after a bit of messing around with security settings I finally achieved what I had intended. This guide consists of five steps, and I take no responsibility for what happens with your computer!</p>

<h2>Steps</h2><p>
<b>#1</b><br />
<img src="http://douglasstridsberg.com/images/uploads/step-1-properties.png" style="border: 0;" alt="Properties" width="301" height="375" /><br />
Right-click on the harddrive you intend to share. Click <i>Properties</i> to open a window with most changeable settings on your harddrive.</p>

<p><b>#2</b><br />
<img src="http://douglasstridsberg.com/images/uploads/step-2-security.png" style="border: 0;" alt="Security" width="377" height="530" /><br />
Select the <i>Security</i> tab. In front of you is a list of the different users that have access to your hard drive. Select <i>Everyone</i> and click <i>Edit&#8230;</i>.</p>

<p><b>#3</b><br />
<img src="http://douglasstridsberg.com/images/uploads/step-3-security-edit.png" style="border: 0;" alt="Security edit" width="377" height="456" /><br />
At this prompt you have the ability to change how much you want everyone to have access to. Customize this yourself, or use my settings, then apply the settings by OK-ing this window and the previous one.</p>

<p><b>#4</b><br />
<img src="http://douglasstridsberg.com/images/uploads/step-4-share.png" style="border: 0;" alt="Share" width="233" height="310" /><br />
Now, right-click the hard drive again but this time select <i>Share&#8230;</i>. In the prompt (which is the sharing tab in the properties-prompt) click <i>Advanced Sharing&#8230;</i> and authenticate yourself if needed.</p>

<p><b>#5</b><br />
<img src="http://douglasstridsberg.com/images/uploads/step-5-advanced-sharing.png" style="border: 0;" alt="Advanced sharing" width="731" height="538" /><br />
In the window in front of you, check the <i>Share this folder</i> checkbox and enter a name for the share. If you need to specifcy the amount of simultaneous users, do so, but for most home networks this is not needed. To enable everyone to access the share, click <i>Premissions</i> and use either my settings or your own.</p>

<h2>Conclusion</h2><p>
There are of course security implications associated with sharing an entire hard drive. You should avoid sharing the drive you&#8217;re booting from and/or using Windows on, also you should also generally be careful of how much you&#8217;re letting people do with the drive.
</p>]]></description>
</item>

<item>
<title>How to Install uTorrent Skins</title>
<link>http://douglasstridsberg.com/blog/entries/how-to-install-utorrent-skins/</link>
<guid>http://douglasstridsberg.com/blog/entries/how-to-install-utorrent-skins/</guid>
<pubDate>Mon, 20 Apr 2009 19:02:00 +0000</pubDate>
<description><![CDATA[<p>This is something that should be so easy as downloading the skins themselves is easy as pie. I have found a very simple method of completing this.</p>

<p>First of all you need the skin itself. It can be found on several places, but most notably on the <a href="http://www.utorrent.com/skins">uTorrent site itself</a>. Go there and find yourself a nice looking skin, and make sure it&#8217;s called <i>toolbar.bmp</i> when downloaded!</p>

<p>Open up an Explorer window (or simply open up My Documents or any other folder) and type <i>%AppData%\uTorrent</i> in the adress bar. Paste the <i>toolbar.bmp</i> file here!<br />
The only thing you need to do is restart (or open) uTorrent and voila! Your new skin is there!</p>

<p>Have fun, and comment if you find any good skins out there!
</p>]]></description>
</item>

<item>
<title>New Design, Finally</title>
<link>http://douglasstridsberg.com/blog/entries/new-design-finally/</link>
<guid>http://douglasstridsberg.com/blog/entries/new-design-finally/</guid>
<pubDate>Fri, 17 Apr 2009 18:34:00 +0000</pubDate>
<description><![CDATA[<p>After weeks and weeks of editing localhost copies, troubleshooting CSS and other rendering problems, accidently removing a database (which I had a backup of, but anyway), pure coding, browser testing (and not so much frustration over IE-rendering) and a lot of researching and inspiration&#8230; I finally present to you a design which I for once am happy with - my new blog design.
</p><h2>Features</h2><p>
What does this new release bring to you?
</p><ul>
<li>A brand new and refurbished front-end design with focus on usability and simplicity - new fonts add to the Web2.0 impression.</li>
<li>A print- and handheld stylesheet designed for simplicity and readability - clear fonts, less graphics and a more fluid design.</li>
<li>Nintendo Wii-inspired buttons put in place for usability and simplicity.</li>
<li>A little more intelligent backend with less load-times and better compression.</li>
<li>jQuery integration for simple effects and the main content-slider at the front-page.</li>
<li>Google-powered search.</li>
<li>Clean code, clean CSS and clean RSS-feeds - one feed for every category adds simplicity and readability.</li>
</ul>

<h2>Conclusion</h2><p>
This has all been a lot of work for me, but I feel this is the first time I have actually had an idea all the way through. One idea being applied all through the process of the design. I&#8217;ve read e-books and gathered inspiration from interesting sources. And all this has resulted in something which I am very proud of showing you today.</p>

<p>I hope you like it almost as much as I do!
</p>]]></description>
</item>

<item>
<title>What&#8217;s Going On?</title>
<link>http://douglasstridsberg.com/blog/entries/whats-going-on/</link>
<guid>http://douglasstridsberg.com/blog/entries/whats-going-on/</guid>
<pubDate>Thu, 26 Mar 2009 08:19:00 +0000</pubDate>
<description><![CDATA[<p>I&#8217;ve wanted to let you know about what I&#8217;m doing for a long time, but I just haven&#8217;t come around to doing it.<br />
Currently I am developing the <a href="http://douglasstridsberg.com/new">new design for the site</a> which really will include everything you&#8217;d ever dream of.<br />
I will introduce every kind of <i>link rel=&#8221;&#8220;</i> available to suit as many browsers and engines as possible. I will launch a mobile version of the site with less graphics but the same content.<br />
I have plans for various small features such as <i>change font-size</i>, <i>print this article</i> and a cleaner and all more useful commenting system.</p>

<p>A sketch or two are available at <a href="http://douglasstridsberg.com/new">the new page</a>, go have a look!<br />
I will hopefully bring you more news as time goes by, stay tuned!
</p>]]></description>
</item>

<item>
<title>The Rise of Adolf Hitler</title>
<link>http://douglasstridsberg.com/blog/entries/the-rise-of-adolf-hitler/</link>
<guid>http://douglasstridsberg.com/blog/entries/the-rise-of-adolf-hitler/</guid>
<pubDate>Tue, 10 Mar 2009 00:28:00 +0000</pubDate>
<description><![CDATA[<p>The Beerhall Putsch of 1923, Hitler&#8217;s first attempt to take power, had failed, and Hitler was sentenced to 5 years in prison. While in prison he wrote &#8220;Mein Kampf&#8221; (My Struggle) which was to become the Bible of the Nazi movement.<br />
It is symptomatic that Hitler had been allowed to make a grand speed at the trial. This shows the sympathetic attitude of the court system towards his ideas. The personnel of the courts were no strong supporters of the new Weimar Republic.<br />
The speech was published all over Germany and made Hitler known as a strong nationalist leader. He only served nine months at the Landsberg prison whereafter he was released on probation.<br />
When released, Hitler found a Nazi party (NSDAP) in disarray. The groups of Berlin, lead by the Strasser brothers, were pulling in one direction whilst the Munich Nazis were more anti-semitic and nationalistic in their ideas. Furthermore, Streseman had solved the crisis of 1923 and Germany had experienced progress. Therefore, the Nazi had very little support in the Reichstag.</p>

<h2>The NSDAP after Hitler&#8217;s freeing</h2><p>
Hitler did not mind that the Nazi party was weak and split when he was release. Now he could take control and shape the party. At the 1926 Party Congress in Bamberg, Hitler did just this.<br />
The Strasser group had on its side a strong PR expert, Dr. Joseph Göbbels, who intended to &#8220;defeat&#8221; Hitler at the said meeting. Instead however, Göbbels was impressed by Hitler and actually joined his camp.<br />
Furthermore, Hitler managed to introduce some key principles into the party ground rules; the &#8220;Führer Prinzip&#8221; (i.e. Hitler would from now on be the leader and he alone would make important decisions to be obeyed) and he also decided that power was now to be reached not through violent coup d&#8217;état but rather by working within the democratic system and winning elections for the Reichstag.<br />
After Bamberg in 1926 the main problem for Hitler remained the lack of Nazi support in the Reichstag. During the booming German economy a party of the discontented like the NSDAP had hard times winning popular support.</p>

<h2>The NSDAP gains votes (1929->)</h2><p>
By 1927 the situation of German farmers was deteriorating. The Nazis reacted on this and started to go out in the countryside offering help and support to the peasants. In the elections from 1930 and onwards it became apparent that a large majority of Germany&#8217;s farmers voted Nazi.<br />
In 1930, the last SPD Chancellor, Müller, resigned. The economic crisis was causing a massive growth of unemployment and the government couldn&#8217;t find majority support in the Reichstag for its policies.<br />
In May 1930, Heinrich Brüning (Catholic Centre Party) was appointed Chancellor by President Hindenburg. Brüning was reluctant to increase government spending on subsidies  for companies and support for the unemployed - as he had the 1923 hyperinflation in fresh memory.<br />
At no cost did he want to risk the occurrence of a new inflation. For this, Brüning earned the nickname &#8220;The Hunger Chancellor&#8221;. He was Chancellor until 1932, running a minority coalition.<br />
Therefore, the government was completely dependent upon the presidential emergency decree (Article 48), which was used at an increasing rate.</p>

<h2>The Backstairs Intrigue</h2><p>
Brüning tried to create support for his government in 1930 by asking for new elections. However, the situation in the Reichstag just deteriorated.<br />
The extremist parties won more seats (the NSDAP won 107 seats, the KPD 77 seats) which was quite the opposite of what he had hoped. Now he became even more dependent on the presidential decree.<br />
The Nazi paramilitary organization, Sturmabteilung (SA), became very active, creating violence in the streets and picking fights with the communist bands.<br />
The SA had by the early 1930&#8217;s grown into an organization of 2.5 million men, lead by Ernst Röhm. In order to try to restore calm in the cities, Brüning imposed a ban on the SA in 1930.<br />
They were no longer allowed to parade the streets in uniform. With the dysfunctional situation in the Reichstag, influence over President Hindenburg instead became the key factor for political power.<br />
He was during 1930-1933 very much listening to the advice of General Kurt von Schleicher.</p>

<h2>The Intrigue evolves</h2><p>
von Schleicher had suggested the choice of Brüning as Chancellor. By 1932 however, von Schleicher had begun to disagree with Bru¨ning&#8217;s anti-Nazi attitude.<br />
In May 1932, at von Schleicher&#8217;s advice, Hindenburg withdrew his support for Brüning and dismissed him. Franz von Paper was appointed and formed a government which was named the &#8220;Government of Barons&#8221; due to all of it&#8217;s ministers being noble.<br />
Hoping for support in the Reichstag, von Papen asked for new elections. The result was more than 50% of the seats in favor of the extremists, and the Nazis had now the biggest party with 37% of the seats.<br />
In order to please Hitler, von Papen lifted the ban on the SA. Furthermore, Hitler is offered a port in Papen&#8217;s new government, but he refuses to accept anything but the Chancellorship.<br />
Thus, von Papen&#8217;s new government is left completely dependent upon Article 48. By November, the economic depression and political violence had plunged German society even deeper into chaos.<br />
Now, von Schleicher asked the President to dismiss Papen. He had a plan.
</p>]]></description>
</item>

<item>
<title>Skype: Display Bandwidth Info during Calls</title>
<link>http://douglasstridsberg.com/blog/entries/skype-display-bandwidth-info-during-calls/</link>
<guid>http://douglasstridsberg.com/blog/entries/skype-display-bandwidth-info-during-calls/</guid>
<pubDate>Sun, 01 Mar 2009 22:01:00 +0000</pubDate>
<description><![CDATA[<p><img src="http://c.skype.com/i/images/logos/skype_logo.png" /><br />
Skype, the modern free Voice Over IP calling software, is a great way of calling your friends and family and staying in touch. But for us who&#8217;d like something a little more advanced and technical, Skype lacks a lot of settings and options.<br />
However, if you&#8217;re on the lookout for some pretty advanced statistics such as what codec and quality is being used, what pings you are getting and how much bandwidth you are using, there is a way!</p>

<h2>Steps</h2><p>
Click <i>Tools</i> in the top menu then <i>Options</i> to open the Option-menu. In the left-hand part of the window, click <i>Advanced</i> and then <i>Connection</i> in the options that pop down under Advanced.<br />
Check the box that says <i>Display technical info during calls</i> and call someone! Hover your mouse on the same part of the window where the <i>Call</i> and <i>End Call</i> buttons are and you should see a windows popping up telling you about what&#8217;s going on behind the scenes!
</p>]]></description>
</item>

<item>
<title>Back from Holiday in Zermatt</title>
<link>http://douglasstridsberg.com/blog/entries/back-from-holiday-in-zermatt/</link>
<guid>http://douglasstridsberg.com/blog/entries/back-from-holiday-in-zermatt/</guid>
<pubDate>Sun, 22 Feb 2009 19:33:00 +0000</pubDate>
<description><![CDATA[<p>After a wonderful week, both regarding the weather and the happenings, in Zermatt I am finally back home.<br />
Zermatt is a well-known skiing area in the southern parts of Switzerland, just close to the Italian border. The ski-system consists of 313km snow-covered pistes including a snow-park, a beginners area and pistes on a glacier (the Theodul Glacier).<br />
Amongst other things I brought my camera, a Kodak Z812 IS, which resulted in a lot of imagery (and a lot of thought about whether to buy a new camera or not), most of it being fairly dull photos of the scenery.<br />
Nonetheless I have had time to edit and perfect a dozen or so images (not only from Zermatt) which I have uploaded to the <a href="http://douglasstridsberg.com/gallery/flash_gallery">Gallery</a>.</p>

<p>On the return from Zermatt I paid a visit to the <b>Café de Paris</b> in Geneva. As you may know they only serve one dish, the <i>Entrecôte Café de Paris</i> with the famous Café de Paris sauce and the French Fries. Let me just say this - it tasted amazing. Nothing short of amazing.</p>

<p>I do hope you enjoy watching the newly uploaded photos as well as further reading my blog!
</p>]]></description>
</item>

<item>
<title>Dalai Lama is on Twitter!</title>
<link>http://douglasstridsberg.com/blog/entries/dalai-lama-is-on-twitter/</link>
<guid>http://douglasstridsberg.com/blog/entries/dalai-lama-is-on-twitter/</guid>
<pubDate>Sun, 08 Feb 2009 20:52:01 +0000</pubDate>
<description><![CDATA[<p>Just stumbled upon <a href="http://twitter.com/OHHDL">His Holiness Dalai Lama&#8217;s Twitter account</a>. Apparently he has joined the ranks of worldwide leaders, such as Barack Obama, posting their daily happenings on the Web.<br />
Looking forward to reading about his daily life, not that I care much but HEY it&#8217;s Dalai Lama!
</p>]]></description>
</item>

<item>
<title>Counter&#45;Strike: Source &#45; How To Open the Console</title>
<link>http://douglasstridsberg.com/blog/entries/counter-strike-source-how-to-open-the-console/</link>
<guid>http://douglasstridsberg.com/blog/entries/counter-strike-source-how-to-open-the-console/</guid>
<pubDate>Sat, 07 Feb 2009 23:32:00 +0000</pubDate>
<description><![CDATA[<p>Perhaps you&#8217;ve somewhere read console commands and you&#8217;ve wondered where on earth to enter them. I&#8217;ve put together this fairly straight-forward guide to help you.</p>

<h2>Steps</h2><p>
<b>#1</b><br />
Open up your list of games inside Steam. Right click on Counter-Strike: Source, choose Properties and click the button that says <i>Set launch options&#8230;</i>.</p>

<p><b>#2</b><br />
Enter <i>-console</i> without spaces or anything else, to make the window look like this:<br />
<img src="http://douglasstridsberg.com/images/uploads/launch-options.gif" style="border: 0;" alt="Launch options" width="373" height="177" /><br />
Press OK to close the window and save the setting. It will now open a console every time you launch the game.</p>

<p><b>#3</b><br />
Open the game up and you should see a fairly big window opened inside the game, the console. You could stop here and just press Espace every time you&#8217;d like to type in a command, but unless that&#8217;s what you want there is an easier way of opening it.</p>

<p><b>#4</b><br />
Inside the console, type <i>bind &lt;key&gt; toggleconsole</i> and replace <i>&lt;key&gt;</i> with whatever key you would like to bind the console to. I, for one, use <i>bind F12 toggleconsole</i> as I find that to be useful.</p>

<p>I hope you&#8217;ve found this short guide useful, this trick will work in all Half-Life 1 and Half-Life 2-based games as far as I am concerned. Good luck!
</p>]]></description>
</item>

<item>
<title>GMail in Google Apps &#45; ReSkinned!</title>
<link>http://douglasstridsberg.com/blog/entries/gmail-in-google-apps-reskinned/</link>
<guid>http://douglasstridsberg.com/blog/entries/gmail-in-google-apps-reskinned/</guid>
<pubDate>Fri, 30 Jan 2009 07:50:00 +0000</pubDate>
<description><![CDATA[<p>Suddenly noticed the old GMail interface on my Google Apps setup had changed, from the old pale and square colors and boxes to a modern set of rounded corners and vivid colors. Just like the regular GMail service Google provides!</p>

<p><img src="http://www.google.com/a/help/intl/en/images/150x55.gif" /></p>

<p>Perhaps this is a step in the direction where GMail in Google Apps finally will receive the ability to change and edit themes? That would be wonderful, currently the only thing Google mentions on this is that themes are <a href="http://www.google.com/support/a/bin/static.py?page=known_issues.cs&amp;issue=114855&amp;bucket=15722">coming soon</a>!</p>

]]></description>
</item>

<item>
<title>The Weimar Republic</title>
<link>http://douglasstridsberg.com/blog/entries/the-weimar-republic/</link>
<guid>http://douglasstridsberg.com/blog/entries/the-weimar-republic/</guid>
<pubDate>Thu, 29 Jan 2009 03:59:00 +0000</pubDate>
<description><![CDATA[<p><img src="http://douglasstridsberg.com/images/uploads/weimar.jpg" style="border: 0;" alt="Weimar Republic" width="143" height="95" /><br />
The Weimar Republic was the constitutional system, the state, that ruled Germany between 1919 and 1933. Because of the insecurity in Berlin after the war where both left- and right-wing extremists tried to take power, the new democratic government was set up in Weimar, judged to be a safe place.<br />
As Germany had been forced to disarm her huge army, the country was now filled with unemployed ex-soldiers, bitter and filled with strong nationalism.<br />
These, together with the right-wing extremists, formed bands of Freikorps whom did not accept the Versailles Treaty, the loss of the war and the Weimar Republic.</p>

<h2>The Troubled Start</h2><p>
At the end of the First World War different political extremist groups tried to take power. Amongst them were a Socialist republic under Kurt Eisner, the Spartakist Uprising (which leaders were brutally murdered (Kurt Liebkniecht and Rosa Luxemburg)), right-wing extremists under Wolfgang Kapp.<br />
Out of the above, the army spared only the latter which in fact was crushed by the Weimar Republic itself&#8230;</p>

<p><b>The Weimar Republic and Adolf Hitler</b><br />
Due to the early troubles, the Weimar Republic inherited a weakness already; the Germany army could perhaps not be trusted to defend the existence and power of the Republic.<br />
In the cases of left-wing attempts to overthrow the state however, the army commander were keen to defend the government.<br />
What in the end killed the right-wing attempt to overtake power was a general strike issued by President Ebert, which forced Wolfgang Kapp to leave his power after 3 days.<br />
In 1993 in Munich, Adolf Hitler and the local right-wing party, the Nazional Sozialistiche Deutsche Arbeiter Party (NSDAP), tried to carry out a coup. The attempt was supposed to create a massive following as Hitler wanted to make a march to Berlin. It was however stopped by the Munich police who shot at the marchers, killing some.<br />
Hitler fled but was arrested and sentenced to 6 years in prison in 1924.</p>

<h2>More weakness</h2><p>
Weimar politicians were blamed for the 1918 armistice, nationalists claimed it was a &#8220;Stab in the Back&#8221; of the victorious Germany army.<br />
These politicians were also blamed for signing the Treaty of Versailles.<br />
The republic had an election system which was proportional. This was 100% democratic. There was however no threshold to how small the parties of the Reichstag could be (only needing about 60&#8217;000 votes).<br />
Therefore several small parties sat in the Reichstag which in turn created political instability. On average, the republic changed government every six months, and it was difficult to create stable majority support for the government.<br />
Instead, the governments were weak coalitions with the SPD (Sozialistiche Partei Deutschlands) depending on the Catholics or Liberals for support.<br />
In 14 years, the Republic had 21 different governments, only eight of them had majority support.<br />
The political parties of Germany had never under Bismarck or Wilhelm really carried the responsibility of governing the country. Thus, they had not understood the importance of compromise and pragmatism.<br />
Some parties even went as far as organizing troops against each other. This added to the weakness of the parliamentary system under Weimar. According to the constitution, in case of the parliament failing, the president had the possibility of governing through emergency decree.</p>

<h2>Important events</h2><p>
In 1921 the reparation payments for Germany to pay were fixed at £6&#8217;600 million. This was seen as a burden too heavy to bear, and France agreed that it could be payed in goods instead of currency.<br />
But the Germans asked for postponement in 1921, 1922 and 1923&#8230; The French lost their patience as they needed the money not only for reparations but also to pay their debts to the USA. As a result, French troops invaded the Ruhr area in 1923 to physically make Germany pay.<br />
Berlin ordered a strike and France sent over their own workers to run the factories. The invasion was called the Ruhr Crisis.<br />
Economically, the Ruhr Crisis was a major disaster for Germany as they lost 95% of the level of production in the area.<br />
Following this event, Germany also started over-printing money to pay the striking workers. It seems that Germany wanted to demonstrate to the world how unfair the reparations were.<br />
Germany was struck by hyper-inflation, some big change in German policies had to happen!</p>

<h2>The Second Crisis of Weimar</h2><p>
In 1929 a financial crisis started in the American countryside which by October hit the stock market at Wall Street. The Wall Street Crash caused US banks to urgently ask the debts to be paid.<br />
For Germany this was disastrous. Investment funds for German industry dried up and factories laid off workers. Within two years, six million people lost their job. Consequences of this were that extreme parties gained voters causing an impossibility to create a majority government. This undermined the Republic and opened the door to the Nazis.
</p>]]></description>
</item>

<item>
<title>The Safari Web Inspector and it&#8217;s Console</title>
<link>http://douglasstridsberg.com/blog/entries/the-safari-web-inspector-and-its-console/</link>
<guid>http://douglasstridsberg.com/blog/entries/the-safari-web-inspector-and-its-console/</guid>
<pubDate>Sun, 18 Jan 2009 19:18:00 +0000</pubDate>
<description><![CDATA[<p>I have never really explored Apple&#8217;s Safari&#8217;s web inspector, nor have I ever found or wished there to be any use in it. I use my own source-files to debug and check my sites, and I also happen to use the built-in code-editors in some of the PHP software I use.<br />
Due to my sheer ignorance of this perhaps marvelous feature of Safari I have never (with emphasis on <i>never</i>) touched the Console and Network buttons! Until today, when I practically stumbled upon them both by mistake.</p>

<h2>The Console feature</h2><p>
Pressing this button/tab takes you to a console with one line of code-input. What this thing enables you to is to run specific JavaScript commands to test and debug various features you may have. I have personally yet to find use for it, however I can definitely see large websites with a lot of JS making use of it!<br />
I will further try this out, perhaps even inputting some jQuery code and seeing if something happens!</p>

<h2>The Network tab</h2><p>
<img src="http://douglasstridsberg.com/images/uploads/web-inspector-network.png" style="border: 0;" alt="Web Inspector network tab" width="557" height="473" /><br />
Let me start off by saying the following. The Network feature is <b>awesome</b>. As the picture depicts, it is all about load-time. What objects load? When does an object load? Where does it load? How long time does it take to load it? Is there anything I can do to improve this? The graph to the right of <i>Transfer Time</i> takes you back to the intuitive interface of iTunes and it&#8217;s graph of the layout of your iPod harddrive&#8230; All this is something I have found use for (and which I can&#8217;t see how anyone wouldn&#8217;t!) and which I will be using in the future!
</p>]]></description>
</item>

<item>
<title>Installing Windows 7 &#45; What Works and What Doesn&#8217;t?</title>
<link>http://douglasstridsberg.com/blog/entries/installing-windows-7-what-works-and-what-doesnt/</link>
<guid>http://douglasstridsberg.com/blog/entries/installing-windows-7-what-works-and-what-doesnt/</guid>
<pubDate>Mon, 12 Jan 2009 02:01:00 +0000</pubDate>
<description><![CDATA[<p>Currently I am in the process of installing Windows 7 Beta 1 - the new operating system shipped out by Microsoft. After acquiring the disc needed to install the Beta 1 version of the operating system I went through the fairly simple and Vista-like installation process and booted up.<br />
Right now I am installing drivers and programs and testing whether these work or not. I will keep this post updated with my progress.</p>

<p><img src="http://www.websonic.nl/nieuws/012008/images/windows7logo.jpg" /></p>

<h2>What doesn&#8217;t work?</h2>
<ul>
<li><b>SPTD</b> (SCSI Pass Through Direct) does not seem to be installing properly. This prevents mounting software such as <b>Daemon Tools</b> from working.</li>
<li>The sidebar in <b>XFire</b> (social gaming client) is empty, and the sound notification doesn&#8217;t work.</li>
<li><b>Ventrilo</b> (Voice-Over-IP software) seems to have problems with minimizing and opening other program while transmitting.</li>
</ul>

<p><b>What works?</b>
</p><ul>
<li><b>Steam</b> (games provider) seems to work flawlessly. I am testing the games within Steam at this moment.</li>
<li><b>PowerISO</b> (ISO-manager software) works well except from some issues with installation and registration.</li>
<li><b>Google Chrome</b> (browser) doesn&#8217;t register as the default browser. Opening it with administrator rights fixes the problem.</li>
<li><b>WinRAR</b> (archiving software) appears to work well, and extraction is actually fairly fast compared to XP and Vista.</li>
<li><b>Spotify</b> (music streaming service) works fine.</li>
<li><b>uTorrent</b> (torrent client) works well, giving just as fast speeds as in any other operating system.</li>
</ul>]]></description>
</item>

<item>
<title>&#8220;iykwim&#8221; &#45; the Story of the Lost Abbreviation</title>
<link>http://douglasstridsberg.com/blog/entries/iykwim-the-story-of-the-lost-abbreviation/</link>
<guid>http://douglasstridsberg.com/blog/entries/iykwim-the-story-of-the-lost-abbreviation/</guid>
<pubDate>Tue, 30 Dec 2008 20:27:00 +0000</pubDate>
<description><![CDATA[<p>&#8220;iykwim&#8221;. &#8220;iykwim&#8221;. &#8220;iykwim&#8221;. My bet is that none of those abbreviations (ha ha, they&#8217;re all the same) mean anything at all to you. At most it might look like a cryptographic sequence of letters that allegedly mean something cool.<br />
Want to know what it means? It&#8217;s a lot simpler than you thought, it simply means &#8220;<b>if you know what I mean</b>&#8221;. I have used this one on so many people, and I have yet to find someone who can decipher what it stands for.</p>

<p>Now you know, thanks to me. I&#8217;ll take the signing of autographs later!
</p>]]></description>
</item>

<item>
<title>ExpressionEngine 2.0 &#45; When?</title>
<link>http://douglasstridsberg.com/blog/entries/expressionengine-20-when/</link>
<guid>http://douglasstridsberg.com/blog/entries/expressionengine-20-when/</guid>
<pubDate>Tue, 30 Dec 2008 20:09:00 +0000</pubDate>
<description><![CDATA[<p>I just can not wait anymore. The long-awaited release of version 2 of the popular content-management-system software, ExpressionEngine, has been delayed, re-delayed and delayed again.<br />
The first few notices said we were to expect a release during the summer of 2008. It is soon 2009 and nothing has been seen yet. Yes of course there have been rumors, previews and pictures of the sought-after release, but nothing concrete to satisfy the community.<br />
I am not putting any blame, or any form of anger, on the EllisLabs team. They must do what they must do to get this out, and of course it can take longer time than expected&#8230; Very much longer time than expected.<br />
<img src="http://asvin.files.wordpress.com/2007/11/ee_logo2.gif" />
</p>]]></description>
</item>

<item>
<title>Enhancing Colors in Photos using Lab Color in Photoshop</title>
<link>http://douglasstridsberg.com/blog/entries/enhancing-colors-in-photos-using-lab-color-in-photoshop/</link>
<guid>http://douglasstridsberg.com/blog/entries/enhancing-colors-in-photos-using-lab-color-in-photoshop/</guid>
<pubDate>Wed, 24 Dec 2008 20:48:00 +0000</pubDate>
<description><![CDATA[<p>Have you ever taken pictures you just wished were a lot more colorful? Ever felt the need to cram that extra little bit of color out of a seemingly perfect picture? Thanks to a tutorial and some personal research I have come up with a very simple and effective method that will highlight and increase the colors in a photo. Let&#8217;s get going!</p>

<p>This is the image we will come up with, in comparison with the old one.<br />
<img src="http://douglasstridsberg.com/images/uploads/before-after.jpg" alt="Before and After" width="600" height="400" style="border: 1px solid black;" /></p>

<h2>Steps</h2><p>
<b>#1</b><br />
Change the color mode to &#8220;Lab Color&#8221; inside <i>Image > Mode > Lab Color</i>. This is the main start-off point and plays a key role in this tutorial.<br />
<img src="http://douglasstridsberg.com/images/uploads/1-change-to-lab-color.jpg" style="border: 0;" alt="Change to LAB color" width="401" height="396" /></p>

<p><b>#2</b><br />
Select Curves in the <i>Image > Adjustments > Curves</i>. Using this tool we will now edit the colors to perfection!<br />
<img src="http://douglasstridsberg.com/images/uploads/2-select-curves.jpg" style="border: 0;" alt="Select curves" width="440" height="548" /></p>

<p><b>#3</b><br />
In the Channel drop-down, select <i>a</i> and <i>b</i> respectively and change the curves to something that resembles this.<br />
<a href="http://douglasstridsberg.com/images/uploads/3-set-a-curves.png" onclick="window.open('http://douglasstridsberg.com/images/uploads/3-set-a-curves.png','popup','width=548,height=532,scrollbars=no,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">a-curves</a><br />
<a href="http://douglasstridsberg.com/images/uploads/4-set-b-curves.png" onclick="window.open('http://douglasstridsberg.com/images/uploads/4-set-b-curves.png','popup','width=548,height=532,scrollbars=no,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">b-curves</a></p>

<p><b>#4</b><br />
Revert back to RGB color mode, otherwise this can create problems when further editing the picture!<br />
<img src="http://douglasstridsberg.com/images/uploads/5-revert-to-rgb.jpg" style="border: 0;" alt="Revert to RGB color" width="386" height="380" /></p>

<p>Good job, you&#8217;ve now gotten yourself a lot more color! Is it a bit too much? Fiddle around with the Saturation settings until you get what you like!<br />
Did you like this or have any questions? Comment!
</p>]]></description>
</item>

<item>
<title>I hate Power&#45;Outages</title>
<link>http://douglasstridsberg.com/blog/entries/i-hate-power-outages/</link>
<guid>http://douglasstridsberg.com/blog/entries/i-hate-power-outages/</guid>
<pubDate>Thu, 18 Dec 2008 02:06:00 +0000</pubDate>
<description><![CDATA[<p>Power-outages&#8230; Don&#8217;t we hate them all. My server computer goes offline, killing the ten-twenty concurrent connections currently on the servers I own.<br />
Why is there an outage? Because our electricity provider&#8217;s power stations suddenly decided to kill themselves in an attempt to annoy the whole town. Wonderful.</p>

<p><a href="http://sydsvenskan.se/malmo/limhamn/article399614/Stromavbrott-i-Hyllie-och-Limhamn.html">http://sydsvenskan.se/malmo/limhamn/article399614/Stromavbrott-i-Hyllie-och-Limhamn.html</a>
</p>]]></description>
</item>

<item>
<title>Left 4 Dead Hamachi LAN gaming without Steam</title>
<link>http://douglasstridsberg.com/blog/entries/left-4-dead-hamachi-lan-gaming-without-steam/</link>
<guid>http://douglasstridsberg.com/blog/entries/left-4-dead-hamachi-lan-gaming-without-steam/</guid>
<pubDate>Fri, 12 Dec 2008 05:29:00 +0000</pubDate>
<description><![CDATA[<p>Another article in the series about doing LAN-gaming with Hamachi! This time I am covering Left 4 Dead, the much talked-about and highly anticipated new game based on the Source engine.<br />
This guide only corresponds to the pirated version of the game!</p>

<h2>Step</h2><p>
<b>#1</b><br />
Download, using a torrent client, <a href="http://thepiratebay.org/torrent/4535565/Left_4_Dead_Offline_NonSteam_Lan_Fix">this file</a> and follow the instructions in the ReadMe. They should be fairly straightforward and only involve overwriting two or three files and editing an <i>.ini</i> file.</p>

<p><b>#2</b><br />
Make sure Hamachi is the primary network on your computer. This is generally, whenever using Hamachi, a good idea! If you run XP this is how you do it (courtesy of <a href="http://saikit.wordpress.com/">Random Repository</a>):
</p><blockquote><p>
Reconfigure your XP’s Network connections to make it detect Hamachi first. Go to All Programs > Accessories > Communications > Network Connections. Go to the menu > Advanced > Advanced Settings. Put Hamachi on top of the list.<br />
<img src="http://saikit.files.wordpress.com/2008/12/advanced-settings.jpg?w=266&amp;h=300" />
</p></blockquote>

<p><b>#3</b><br />
For all players involved, please make sure you are opening the game with the extra <i>-console</i> startup parameter! Your parameters can be found in the <i>.bat</i>-file you&#8217;re using to start the game.</p>

<p><b>#4</b>
</p><ul>
<li>For the Hoster
<ul>
<li>In the console, type in <i>sv_allow_lobby_connect_only 0</i> and <i>ip (the IP your computer has from Hamachi)</i>. This is to open your computer up to connection attempts at the default ports by only other Hamachi users.</li>
<li>Now type <i>map</i> and select in the drop-down list which map you&#8217;d like to start.</i>
<i>When all this is done, all you have to do is type <i>net_start</i> and you&#8217;re on your way!</i>
</ul></li>
<li><p>For the Players
</p><ul>
<li>Copy the hoster&#8217;s IP address and type <i>connect (the IP address)</i> inside the console!</li>
</ul>
</li>
</ul>

<p><br />
Hopefully it should work as good for you as it worked for me! Let me know (by comment) if it worked or not!
</p>]]></description>
</item>

<item>
<title>Buying a Dist&#45;Pedal for the Guitar</title>
<link>http://douglasstridsberg.com/blog/entries/buying-a-dist-pedal-for-the-guitar/</link>
<guid>http://douglasstridsberg.com/blog/entries/buying-a-dist-pedal-for-the-guitar/</guid>
<pubDate>Sat, 06 Dec 2008 00:58:00 +0000</pubDate>
<description><![CDATA[<p>The past day or so I have been actively browsing my favorite music-apparel shops in search for a dist- and overdrive-pedal for my guitar.<br />
I currently own a Peavey BANDIT 112 amp at 80W, a wonderful amp with a lot of customization and an unbeatable sound quality. But, but, but&#8230; It lacks the kind of distortion I am looking for&#8230; The roaring kind of dist, lifting the whole room when you strike that power chord&#8230;</p>

<h2>The amp</h2><p>
The BANDIT 112 in all glory - it is truly a fantastic amp - but it has a pretty dull and compressed distortion. That particular type is suitable for some songs, but I want more!<br />
So therefore I am, as stated, looking for distortion pedals in the range of -$60 USD. That might sound as very little, but as I am selling my old effect-box for about that amount.</p>

<p>I have mainly been looking at the Behringer HD300 Heavy Distortion pedal. It looks amazing, I just hope it sounds as amazing!
</p>]]></description>
</item>

<item>
<title>HLTV.org is Covering Dream&#45;Hack Winter 2008</title>
<link>http://douglasstridsberg.com/blog/entries/hltvorg-is-covering-dream-hack-winter-2008/</link>
<guid>http://douglasstridsberg.com/blog/entries/hltvorg-is-covering-dream-hack-winter-2008/</guid>
<pubDate>Sat, 29 Nov 2008 09:06:00 +0000</pubDate>
<description><![CDATA[<p><a href="http://hltv.org">HLTV.org</a>, most likely the worlds biggest site launched to promote HLTV (Half-Life TV) broadcasting of matches and tournaments is covering the Dream-Hack Winter 2008 event, held in Jönköping, Sweden.<br />
For us Counter-Strike 1.6 fanboys and all you other gamers out there HLTV.org features broadcasts with high bandwidth (good speed and little lag) for free. I am right now watching the match between <i>mousesports</i> and <i>Made in Brazil</i>, two highly respected teams battling off each other in Counter-Strike.</p>

<p>Head over to <a href="http://hltv.org">HLTV.org</a> and check out the Dream-Hack coverage!
</p>]]></description>
</item>

<item>
<title>Google SearchWiki</title>
<link>http://douglasstridsberg.com/blog/entries/google-searchwiki/</link>
<guid>http://douglasstridsberg.com/blog/entries/google-searchwiki/</guid>
<pubDate>Sat, 22 Nov 2008 01:14:00 +0000</pubDate>
<description><![CDATA[<p>Was surprised to see that there suddenly were two buttons alongside my Google results - &#8220;Promote&#8221; and &#8220;Remove&#8221;.<br />
Did some research about it, and this is what I found: <a href="http://googleblog.blogspot.com/2008/11/searchwiki-make-search-your-own.html">Google SearchWiki on Blogspot</a>.</p>

<p>Sounds interesting, does it not?
</p>]]></description>
</item>

<item>
<title>Tourist or Traveller &#45; an Essay on Modern Tourism</title>
<link>http://douglasstridsberg.com/blog/entries/tourist-or-traveller-an-essay-on-modern-tourism/</link>
<guid>http://douglasstridsberg.com/blog/entries/tourist-or-traveller-an-essay-on-modern-tourism/</guid>
<pubDate>Wed, 19 Nov 2008 22:30:00 +0000</pubDate>
<description><![CDATA[<p><b>“The tourist takes his culture with him, the traveller leaves his behind.”</b></p>

<p>The quote above, taken from a paper lying in front of me, describes the relationship between tourists and travellers. It describes the impact they cause on the country they visit as well as their general attitude towards another country, culture or other people. What exactly does it mean, though?</p>

<p>I believe it means tourists are unwilling to spend time and effort to try and adapt to the country they visit or to the cultural habits they are facing. Tourists see themselves as by-passers, trying to enforce the “watch but don’t touch”-idea at all times. They do not foresee how much impact their own actions do, meaning that they generally negatively impinge on the surrounding area and environment.<br />
The quote describes travellers as people whom whole-heartedly attempt adapting to the culture and the ways of the country they visit. They are very aware of how to behave, what to not do and why, thus by also “leaving their culture behind” they take in a lot more knowledge and positive impressions from the visit.</p>

<p>It’s not the first time we’ve heard about the dangers of tourism, and it surely is not the last either. Often the environment has been victim of littering and other harmful behaviour, resulting in a lot of attention from the press and environmental organizations. Tourism can of course be a negative thing, and it probably mostly is, however it does have some bright sides to it. Tourism is to many countries the foremost source of money and fame, and in some rare cases big areas live solely on the profits from tourism. Although perhaps this looks like a symbiotic relationship, wealthy tourists visit the area and receive great service whilst the people obtain money to build schools and hospitals, it is absolutely reliant upon tourism. There is no “partnership” in this case, consequently if tourism dies then so do all the funds. Not vice-versa.</p>

<p>In comparison, travellers are tourists with an open mind and a conscious way of living. They do practically no damage to the environment, they interact in a helpful way with the people and their culture, they live on what is available more than trying to acquire what isn’t there.<br />
 
Personally, I consider the main difference between tourism and travelling boils down to be the attitude. With an open mind and a positive attitude towards other cultures and ways of living I think humanity can come far, not only solving problems with tourism but also solving major environmental crises. I believe the cause for most problems on the Earth is attitudes and the way they affect how we act and think. Seeing the key role advertising plays in how we consume I assume it’s the best way to combat habits that affect the environment negatively, as consumption is closely linked to how much we influence our surroundings.</p>

<p>Which type of visitor I would rather be? That’s a difficult question! In most cases I do not wish to endeavour the lengthy process of becoming part of a culture nor do I wish to live by its rules even though I may deeply respect them. I am more of something in between; I avoid both affecting nature but also the affecting the culture, a moral I live by and which works for me. Admittedly none of us can be perfect, but I say let us overcome our differences and unite to save the Earth from what awaits it!
</p>]]></description>
</item>

<item>
<title>What is Protectionism?</title>
<link>http://douglasstridsberg.com/blog/entries/what-is-protectionism/</link>
<guid>http://douglasstridsberg.com/blog/entries/what-is-protectionism/</guid>
<pubDate>Tue, 18 Nov 2008 00:27:01 +0000</pubDate>
<description><![CDATA[<p>There has been a lot of buzz lately about the soon-to-become President of the USA, Barack Obama, and his views on &#8220;protectionism&#8221;. Protectionism has been by the republicans labeled as &#8216;dangerous&#8217;, and most people believe this has a negative effect on developing countries. I decided to do some research on the subject and this is the small amount of information I came up with!</p>

<p>Protectionism is a political set of measures put in place to protect one&#8217;s countries companies and farmers from competition. It is also a general view on how trade with developing countries work and how it affects domestic economy. That&#8217;s a shortened and pretty basic explanation, but it is generally what protectionism is about.<br />
Why would one want to limit export from other countries? Developing countries can cheaply produce food and commodities, therefore exporting it at a highly competitive price. This can prove lethal to domestic factories and farmers whom rely on being able to sell their products at a higher price.<br />
Take the European farmers as an example. They are subsidized by the European Union (EU) to produce meat and dairy products. They overproduce, sell it to European countries at extreme prices, earning a lot of money. The surplus products are sold at dumped prices to the developing countries, again resulting in great profits to Europe.<br />
Protectionism claims that if we introduced competition into the European market it would drain the farmers, eventually killing them all (not literarily speaking). So by setting up trade barriers (often in the form of tariffs) and limiting developing countries possibilities to export to us, we keep farming (and extreme pricing) alive.</p>

<p>This is what a lot of people are worried about when it comes to Barack Obama&#8217;s, as well as the Democrats, politics. I hope this short article gave you a slight insight into the matter, as it definitely gave me a lot to research about it!
</p>]]></description>
</item>

<item>
<title>Call of Duty (5): World at War Fix for the No Profile Error</title>
<link>http://douglasstridsberg.com/blog/entries/call-of-duty-5-world-at-war-fix-for-the-no-profile-error/</link>
<guid>http://douglasstridsberg.com/blog/entries/call-of-duty-5-world-at-war-fix-for-the-no-profile-error/</guid>
<pubDate>Sat, 15 Nov 2008 21:51:25 +0000</pubDate>
<description><![CDATA[<p>Have you been trying to start the game, only to see that there are no profiles for you to choose? Does nothing happen when you try to start a new game? Are you unable to save your controls and graphics settings?</p>

<p>You&#8217;ve most likely been a victim of a recent bug with some Call of Duty: World at War installations - no singleplayer/co-op profile is created upon installation. There is an easy fix for this, however!</p>

<h2>Steps for Windows XP</h2><p>
Go into <code>C:\Documents and Settings\YourProfile\Application Data (a hidden folder, you may need to type it manually into the address bar)\Activision\players\profiles</code>.<br />
Create a folder and name it whatever you want. Now create (still in <code>\profiles</code>) a .txt document and name it <i>active.txt</i>. Inside that document, type the exact name of the folder you just created.</p>

<h2>Steps for Windows Vista</h2><p>
Go into <code>C:\Users\YourProfile\Local Settings\Application Data (a hidden folder, you may need to type it manually into the address bar)\Activision\players\profiles</code>.<br />
Create a folder and name it whatever you want. Now create (still in <code>\profiles</code>) a .txt document and name it <i>active.txt</i>. Inside that document, type the exact name of the folder you just created.<br />
Make sure you&#8217;re doing this with administrator rights, as otherwise Vista likes to be annoying and hide some files from you, essentially making you overwrite files that &#8220;do not&#8221; exist.
</p>]]></description>
</item>

<item>
<title>Call of Duty (5): World at War LAN Hamachi Co&#45;Op Fix</title>
<link>http://douglasstridsberg.com/blog/entries/call-of-duty-5-world-at-war-lan-hamachi-co-op-fix/</link>
<guid>http://douglasstridsberg.com/blog/entries/call-of-duty-5-world-at-war-lan-hamachi-co-op-fix/</guid>
<pubDate>Sat, 15 Nov 2008 19:03:12 +0000</pubDate>
<description><![CDATA[<p>Here is a short guide, put together with help of some but mainly myself, on how to be able to play Co-Op with your friends over Hamachi.<br />
You <b>do not</b> need any dirty settings, you <b>do not</b> need to disable your firewall, you <b>do not</b> even need to be able to ping your friends over the Hamachi network! Here&#8217;s how:</p>

<h2>#1</h2><p>
Download an older version of Hamachi, preferably version <b>1.0.1.5</b>. It can be found at <a href="http://www.filehippo.com/download_hamachi/2114/">FileHippo</a>. Install it, and do not bother with the license notifications and all that. Make sure you have the new Hamachi executable in your firewall exception list (if you&#8217;ve had it there before, it should still be there)!<br />
Connect to your regular network and meet up with your friends.</p>

<h2>#2</h2><p>
Go to <a href="http://www.gamecopyworld.com">GameCopyWorld (GCW)</a>, select a mirror, search for <i>world at war</i> and find it, and in the list of patches and fixes, download the <b>LAN fix #1</b>. Use the downloaded patch to patch your current .exe file, and make sure it creates a backup of it (the option is a checkbox).</p>

<h2>#3</h2><p>
Open up the newly patched .exe (not the <i>[...]mp.exe</i> file), and host a co-operative game. Please, make sure PunkBuster is turned <b>OFF</b>, both in your <i>Options > Game Options</i> and your Game Setup (inside the Lobby).<br />
Tell your friends to search for the server and make sure they have <i>Source</i> set to LAN. Connect, play, and have fun!</p>

<h2>Footnotes</h2><p>
If you can not get this working, try fiddling with your Firewall settings (maybe even try disabling it) and try playing with the in-game menu. Also the Hamachi settings might be of interest.<br />
If nothing works, try letting the hoster host <b>without</b> the patched <i>.exe</i> and all the others connect with the patched <i>.exe</i>.</p>

<p>Also, according to a commenter, Ratza, it is important that the hoster runs his game as an Administrator by right-clicking on the shortcut and pressing <i>Run as administrator</i>!
</p>]]></description>
</item>

<item>
<title>Tried Call of Duty (5): Word at War</title>
<link>http://douglasstridsberg.com/blog/entries/tried-call-of-duty-5-word-at-war/</link>
<guid>http://douglasstridsberg.com/blog/entries/tried-call-of-duty-5-word-at-war/</guid>
<pubDate>Wed, 12 Nov 2008 06:34:05 +0000</pubDate>
<description><![CDATA[<p>Yet another game I tested today, Call of Duty: World at War. It&#8217;s the fifth installment in the Call of Duty series, a very well known and popular series of games, renowned for their great realism.<br />
I completely the fifth installment, World at War, in a few hours of straight playing. The story plays out during the second World War (WWII) and the main characters are an American and Russian private.<br />
After completing it, I found it very hard to describe the feelings the game gave me, the screaming of the dead and the shouting of the alive, the spirit of the fighting soldiers, it all added in an immense way to the whole experience.<br />
For the first time in any game, really, I felt like I truly was a part of the story and not only a spectator. It&#8217;s short of a miracle, and the game is nothing less.</p>

<p>Thanks for a great gaming experience, Activision!
</p>]]></description>
</item>

<item>
<title>Left 4 Dead Demo</title>
<link>http://douglasstridsberg.com/blog/entries/left-4-dead-demo/</link>
<guid>http://douglasstridsberg.com/blog/entries/left-4-dead-demo/</guid>
<pubDate>Sun, 09 Nov 2008 20:59:00 +0000</pubDate>
<description><![CDATA[<p>Tried the <b>Left 4 Dead</b> Demo out last night, found it to be some good fun. The graphics are not bad, the animations are perfect and the gameplay suits the name (and game) very well.<br />
Left 4 Dead is a FPS (first person shooter) where one chooses from four different characters in a squad with a mission - to survive a brutal infection that has plagued a city. At your disposal are several different kinds of weapons suited for different environments.</p>

<p>It exceeded my expectations, although as a demo it was too short =) . I am longing for the real game, I must say!</p>

<p><img src="http://quicksave.ru/uploads/posts/1208012583_img_3442_left4dead_450x360.jpg" />
</p>]]></description>
</item>

<item>
<title>Social Studies: Demography and Colonialism (and Imperialism)</title>
<link>http://douglasstridsberg.com/blog/entries/social-studies-demography-and-colonialism-and-imperialism/</link>
<guid>http://douglasstridsberg.com/blog/entries/social-studies-demography-and-colonialism-and-imperialism/</guid>
<pubDate>Fri, 07 Nov 2008 02:46:00 +0000</pubDate>
<description><![CDATA[<h2>Demography</h2><p>
Demography is the study of population changes. I will describe two general views, the Neo-Malthusian and the Modernization view, on the matter, starting with the former.</p>

<p>Thomas Malthus, a late demographer and economist, believed that food production would increase over time but not as fast as population growth.<br />
In his studies, he assumed that love (sex) and food was necessary.<br />
The Neo-Malthusians believe that population growth is the main problem, not only because it will outrun food production but also since it is a threat towards the environment and therefore the base of survival.<br />
The remedy, according to the Neo-Malthusians, is to reduce population and population growth (family planning).</p>

<p>The Modernization theory says that the main problem is economic and social backwardness, thus making population growth occur. If there is economic development the population growth will decrease instantly.<br />
The remedy is therefore is economic and social reforms.</p>

<h2>Colonialism</h2><p>
<i>What does history explain?</i><br />
Colonisation took place in the 16th century and onwards. Trade posts were established along the coasts. Europe started a globalized trade (such as the Triangular Trade) which sent profits back to Europe.<br />
This led to industrialization in Europe in the 19<sup>th</sup> century. A dependency upon export in the Americas and in Africa was developed since the industrialization in the colonies was prohibited.<br />
The slave trade in Africa created wars and destroyed the already existent local trade. Since slaves often were young and productive women and men a drainage of young workers was created.</p>

<h2>Imperialism (<i>1870 - 1914</i>)</h2><p>
During the so called second phase exploatation was intensified, the interior of the continents were penetrated. European industry needed cheap raw materials such as copper, rubber, cotton and food.<br />
Capital profits from industry in Europe needed new investment projects which were found in the colonies.
</p>]]></description>
</item>

<item>
<title>Coolest&#45;looking Lamp Around?</title>
<link>http://douglasstridsberg.com/blog/entries/coolest-looking-lamp-around/</link>
<guid>http://douglasstridsberg.com/blog/entries/coolest-looking-lamp-around/</guid>
<pubDate>Thu, 06 Nov 2008 08:26:00 +0000</pubDate>
<description><![CDATA[<p><a href="http://lsgc.com/products/lamps/r38/"><img src="http://lsgc.com/images/products/r38_3.jpg" /></a></p>

<p>Introducing you to the SoL R38. It&#8217;s a highly efficient modern LED lamp with power-saving in mind as well as long life of operation, performance (the light itself is crisp and white) and heat emissions.<br />
And best of all, it&#8217;s coolest on the block. Buy a few of these and you can turn any dull room into something well worth the stay, more or less! The outer shell, the housing, is made of anodized silver, looking a bit like a heatsink.</p>

<p><a href="http://bits.blogs.nytimes.com/2008/11/04/would-you-buy-this-funny-looking-bulb/">Thanks to NYTimes!</a>
</p>]]></description>
</item>

<item>
<title>Should we give Legacy Users less Features?</title>
<link>http://douglasstridsberg.com/blog/entries/should-we-give-legacy-users-less-features/</link>
<guid>http://douglasstridsberg.com/blog/entries/should-we-give-legacy-users-less-features/</guid>
<pubDate>Mon, 03 Nov 2008 17:30:00 +0000</pubDate>
<description><![CDATA[<p>Found this interesting read over at <a href="http://expressionengine.com">ExpressionEngine.com</a> and their forums. It&#8217;s about legacy browsers and how to compensate for the time it takes to develop sites for them.</p>

<p><a href="http://expressionengine.com/forums/viewthread/95537/">Working with Legacy Browsers and Reduced Functionality</a></p>

<p>I also had my own little say in the argument.</p>

<blockquote><p>I don&#8217;t fully agree with you, after reading the whole post (a very interesting read, nonetheless). Giving legacy users less functionality just because they are using an old browser (which could be due to lower privileges) just does not sound right in my ears. If there was such a thing as &#8220;browser racism&#8221; I believe it would fall into that category.</p>

<p>Fixing IE-bugs is annoying, but in the end it does almost always pay off. The perfect site is a site where you (as a developer) avoid building two different sites (one legacy and one regular). The perfect site is a site where all features are available to all users, regardless of browser or operating system.</p>

<p>In my opinion, of course =) !</p></blockquote>

<p>After some more argumenting:</p>

<blockquote><p>I think the difference between “less features for old browsers” and “more features for newer browsers” is very much the same thing. It all narrows down to not giving older browsers better goods because of either laziness or lack of time. Most often, also, removing the bells and whistles is the same as removing a good reason to like a certain site.</p>

<p>I just want to say that I would rather develop a site thoroughly and add features that risk bugging out in a step-by-step manner, making sure everything works in the end. It is a lot of work, but it is rewarding!</p></blockquote>

<blockquote><p>Agreed, but when developing smart features for say, an e-shop website, and not sharing these with IE users will leave them frustrated.</p></blockquote>]]></description>
</item>

<item>
<title>Best way of Cleaning a G15 Keyboard</title>
<link>http://douglasstridsberg.com/blog/entries/best-way-of-cleaning-a-g15-keyboard/</link>
<guid>http://douglasstridsberg.com/blog/entries/best-way-of-cleaning-a-g15-keyboard/</guid>
<pubDate>Sun, 02 Nov 2008 08:58:00 +0000</pubDate>
<description><![CDATA[<p>I recently tried this technique. It was easy, painless and rather fun, actually! Enjoy, and thanks to the original poster, &#8220;wo0t&#8221;!</p>

<p><a href="http://forums.facepunchstudios.com/showthread.php?p=8865797">How to clean your G15 keyboard easily and safely!</a>
</p>]]></description>
</item>

<item>
<title>Windows 7 &#45; why redesign Paint?</title>
<link>http://douglasstridsberg.com/blog/entries/windows-7-why-redesign-paint/</link>
<guid>http://douglasstridsberg.com/blog/entries/windows-7-why-redesign-paint/</guid>
<pubDate>Fri, 31 Oct 2008 22:15:00 +0000</pubDate>
<description><![CDATA[<p>Welcome to another one of my rants. This time it&#8217;s about <b>Windows 7</b> and it&#8217;s about the redesign of applications like <b>Paint</b> and <b>Wordpad</b>.</p>

<p>Have a look at these two pictures: <a href="http://en.wikipedia.org/wiki/Image:Win7paint.png">http://en.wikipedia.org/wiki/Image:Win7paint.png</a> and <a href="http://en.wikipedia.org/wiki/Image:Win7wordpad.png">http://en.wikipedia.org/wiki/Image:Win7wordpad.png</a>.</p>

<p>Isn&#8217;t that just the most annoying thing you&#8217;ve ever seen? Microsoft has decided to use the same horrible interface and GUI from Office 2007 inside Paint and Wordpad. Seeing who these two rather useless but oldschool programs are being raped by Microsoft&#8217;s design architects is outright sad! Paint has looked the same way since the birth of Windows 95 and so has Wordpad.</p>

<p>The Office 2007-look they&#8217;re about to get will decrease efficiency, usability (finding features is a pain), and overall popularity. Paint will lose it&#8217;s &#8220;oldschool&#8221;-status and Wordpad&#8230; Well Wordpad will still be the useless replacement for Word, but it won&#8217;t be just as cool!</p>

<p>I can imagine people already now taking copies of their <i>mspaint.exe</i>&#8216;s to be sure to not lose them. I know I am, at least!
</p>]]></description>
</item>

<item>
<title>The Tunguska Event</title>
<link>http://douglasstridsberg.com/blog/entries/the-tunguska-event/</link>
<guid>http://douglasstridsberg.com/blog/entries/the-tunguska-event/</guid>
<pubDate>Wed, 29 Oct 2008 07:48:00 +0000</pubDate>
<description><![CDATA[<p>Recently I did some further research on this fairly creepy subject, the so-called <b>Tunguska Event</b>, finding a lot of information, pictures and accounts on what happened on that June morning of 1908.<br />
To summarize somewhat, an explosion occurred in the skies over Siberia. It was caused by the impact and breakup of a large meteorite, at an altitude of roughly six kilometers, in the atmosphere.</p>

<p>What is it about this that intrigues me? The mystery, the pictures, the descriptions, the theories&#8230; Everything!<br />
Just like I love reading about things like the Bermuda Triangle and the <a href="http://en.wikipedia.org/wiki/Silverpilen">&#8220;Silverpilen&#8221;</a>, I loved reading about this rather unusual happening. The fact that the meteorite (or asteroid) knocked a good 2,150 square kilometres (830 square miles) of trees down and that the power of the impact measured to be a thousand times that of the Hiroshima bomb, adds to the immensity of the thing that came towards earth at a speed of 10-12km/s one morning.</p>

<p><img src="http://upload.wikimedia.org/wikipedia/commons/a/ad/Tunguska.png" /></p>

<p>I&#8217;ve gathered some links you might find useful, if you&#8217;re even half as interested as I am (and if you&#8217;re still reading).
</p><ul>
<li><i>Wikipedia</i> - <a href="http://en.wikipedia.org/wiki/Tunguska_event">http://en.wikipedia.org/wiki/Tunguska_event</a> <a href="http://en.wikipedia.org/wiki/Leonid_Kulik">http://en.wikipedia.org/wiki/Leonid_Kulik</a></li>
<li><i>William K. Hartmann</i> - <a href="http://www.psi.edu/projects/siberia/siberia.html">http://www.psi.edu/projects/siberia/siberia.html</a></li>
</ul>]]></description>
</item>

<item>
<title>Installing the Huawei E220 on a Mac</title>
<link>http://douglasstridsberg.com/blog/entries/installing-the-huawei-e220-on-a-mac/</link>
<guid>http://douglasstridsberg.com/blog/entries/installing-the-huawei-e220-on-a-mac/</guid>
<pubDate>Fri, 24 Oct 2008 22:19:00 +0000</pubDate>
<description><![CDATA[<p>So. You have a Mac OSX and you&#8217;re a Telia user, or using any other ISP, and you buy this wonderful wireless 3G internet package. You receive a parcel with the little egg-looking modem (the Huawei E220) and the shiny USB-cable. All the documentation is for Windows and the only thing people have used it for are PCs. Now what?</p>

<p>First thing you should try is to use the built-in drivers available on the modem itself. See, the little egg works like both a storage device <i>and</i> a modem, and on the storage part are included drivers for both Windows and Mac.<br />
As a Mac user, you will only see the Mac drivers, and as a Windows user it&#8217;s vice versa, so you do not have to worry about choosing the wrong drivers. Open Finder and click on the newly appeared device in the left-hand bar, and proceed by double-clicking the Mobile Connect.app. However, the installer is very buggy and for some it just does not work.</p>

<p>If all goes well and you do manage to install it, just run the application and use the internet! If you&#8217;re unlucky, it will, as I mentioned, briefly open and then close itself. You need to get a driver from the <a href="http://www.huawei.com">Huawei homepage</a>. Fortunately I&#8217;ve fetched up the drivers for you (it was kind of hard to find one&#8217;s way around, I can tell you that), you can directly download the driver from <a href="http://www.huawei.com/mobileweb/en/file/download.do?f=19957&amp;ctype=1">over here</a>.</p>

<p>The file being downloaded on your harddrive is called just plain &#8220;E220&#8221; without any extension. You won&#8217;t be able to do much with it in it&#8217;s current state, so to proceed you must rename it to &#8220;E220<b>.dmg</b>&#8221;. Now just double-click it, let it mount and run the installer - it should take you through the installation process and configure everything for you!</p>

<p>Congratulations on getting fairly good 3G internet anywhere in the world (depending on coverage, of course)!
</p>]]></description>
</item>

<item>
<title>The Causes of the WWI</title>
<link>http://douglasstridsberg.com/blog/entries/the-causes-of-the-wwi/</link>
<guid>http://douglasstridsberg.com/blog/entries/the-causes-of-the-wwi/</guid>
<pubDate>Wed, 22 Oct 2008 01:59:00 +0000</pubDate>
<description><![CDATA[<p>The Balance of Power in Europe was disrupted by Germany, and by Turkey in the Balkans. The alliances played a roll in making the Balkans the powder keg it became, but they weren&#8217;t binding. No state went to war without a self-interest, without something to gain on it themselves.</p>

<p><b>Was Germany guilty?</b><br />
The growth of Germany&#8217;s industry led to the growth of the scialist movement. Wilhelm&#8217;s &#8220;Weltpolitik&#8221; seems to have been motivated by a desire to rally the growing number of industrial workers behind the emperor. This in order for them not to support the SPD (Sozialistische Partei Deutschlands) and the Trade Union.<br />
All this can be seen as a way to try to neutralize the socialist threat to the domination position that the Junkers held in German politics.<br />
According to the Fischer Thesis, this domestic motive only continues into war. Germany wanted a war also a way for Wilhelm and the Junkers to stay in control. Thus the war is only an extension of the Weltpolitik.</p>

<p><b>Was France guilty?</b><br />
France was the architect behind the encirclement of Germany using the alliance with Russia, and she would never accept the loss of Alsace-Lorraine. By 1914, president Poincarré changed attitude towards Russia. All of a sudden, Paris would now support the Tsar instead of stopping him when he wanted to act against the Austrians.</p>

<p><b>Was Russia guilty?</b><br />
The Tsar had domestic problems; a growing wave of strikes and protests against his government would have motivated him to have the population focus on a foreign foe. In essence the Tsar wanted to go to war in order to rally the people behind him.<br />
The Russians mobilization plan caused German reactions, and the support Russia gave to Serbia made the bold enough not to fully accept Austria&#8217;s ultimatum.</p>

<p><b>Was Austria-Hungary guilty?</b><br />
Austria-Hungary&#8217;s ultimatum was most likely designed to create a war with Serbia. Because of the blank cheque Germany had given her, she went ahead and attacked Serbia regardless of the consequences.<br />
She clearly wanted a war, as her position as a Great Power was weakening.</p>

<p><b>Was Serbia guilty?</b><br />
Serbia was proud, bold and consciously provoked Austria-Hungary with her attacks.
</p>]]></description>
</item>

<item>
<title>Broadcasting a Video with XFire (exclusively on this blog!)</title>
<link>http://douglasstridsberg.com/blog/entries/broadcasting-a-video-with-xfire-exclusively-on-this-blog/</link>
<guid>http://douglasstridsberg.com/blog/entries/broadcasting-a-video-with-xfire-exclusively-on-this-blog/</guid>
<pubDate>Tue, 21 Oct 2008 03:05:09 +0000</pubDate>
<description><![CDATA[<p>You most likely have not seen this in action yet. If you have, then you&#8217;re probably really eager on how to do it, and if you haven&#8217;t you probably want to see how it is done anyway. I was at least, and I am perfectly normal!</p>

<h2>What is all this about?</h2><p>
XFire introduced <a href="http://www.xfire.com/live_video">Live Video</a> back a few months ago. Live Video is a tool for gamers to broadcast what they see to the masses. It&#8217;s quick and easy, requires only a few configuration steps and the XFire client itself. You can only broadcast a current game in progress (i.e. you can&#8217;t (regularly) broadcast anything else but a full-screen DirectX game), and only some games are supported.<br />
Now what I&#8217;ve managed to find out is how to broadcast pretty much any video player (though I&#8217;ve only tested it on a certain player it should theoretically work in any environment) by doing some fairly straight-forward editing of files. Enough talking, let&#8217;s get to the actual guide.</p>

<h2>Steps</h2>

<p><b>#1</b><br />
Download <a href="http://sourceforge.net/projects/guliverkli/">Media Player Classic</a> from <a href="http://downloads.sourceforge.net/guliverkli/mpc2kxp6490.zip?modtime=1142869788&amp;big_mirror=0">here (direct SF link)</a>. Extract the file (mplayerc.exe) to a location of your choice (I put mine in <code>C:\Program Files\MPC</code>) and open it. You will be greeted with an empty window. Click on <i>View</i> and then <i>Options</i>. In the left-hand menu navigate to <i>Output</i>, and choose the following settings:<br />
<img src="http://douglasstridsberg.com/images/uploads/output_1.gif" style="border: 0;" alt="Output" width="620" height="427" /><br />
Press OK, close the program and remember the path to where you extracted it.</p>

<p><b>#2</b><br />
Close XFire and then navigate to the folder where it XFire is located (usually <code>C:\Program Files\Xfire</code>) and open the file <i>xfire_games.ini</i> in Notepad or any other text-editor (no, I&#8217;m not saying you can use Word). Scroll down to the bottom and paste this a few lines under the last row:
</p><blockquote><p><code>[9999]<br />
LongName=MPC<br />
ShortName=mpcplayer<br />
LauncherDirKey=C:\Program Files\MPC<br />
LauncherExe=mplayerc.exe<br />
Launch=%UA_LAUNCHER_EXE_PATH% %UA_LAUNCHER_EXTRA_ARGS% %UA_LAUNCHER_NETWORK_ARGS%<br />
InGameRenderer=D3D9<br />
;InGameFlags=USE_PRESENT|ENABLE_MOUSE|USE_DINPUT_MOUSE</code></p></blockquote><p>
Change the path after <code>LauncherDirKey=</code> to wherever you extracted Media Player Classic. Otherwise make sure everything else is as it looks.</p>

<p><b>#3</b><br />
Open XFire again, let it log-in and then press <i>Tools</i> and then <i>Options</i>. In the top bar select <i>Games</i> and let it detect any newly installed games. Double-click <i>Not Installed</i>, scroll down and click on MPC (the games are in alphabetical order). Select <i>Manually Setup</i> and Browse to the location of where you extracted Media Player Classic (same path as in the <i>xfire_games.ini</i> file, yes I know) and press OK.<br />
<img src="http://douglasstridsberg.com/images/uploads/manual_2.gif" style="border: 0;" alt="Manual" width="432" height="516" /><br />
Now go <i>Tools</i> again, this time hovering over <i>Launch</i> and then clicking MPC. When it&#8217;s been launched, select <i>File</i> and <i>Open File</i>, browse to the file you want to open, press OK and <b>press ScrollLock + B to start the broadcast!</b> If nothing happens, make sure you&#8217;ve enable Live Broadcast (<i>Options</i>, <i>Broadcast (ALPHA)</i>, check <i>Enable Broadcast</i>).</p>

<p>
</p><h2>Conclusion</h2><p>
As far as I know, there are no legal implications as to the modifying of core files, and it&#8217;s really nothing that can destroy your installation of XFire (if it does, just re-install).<br />
I am aware of the fact that it doesn&#8217;t display the broadcast in the XFire status window. The solution to this is for the viewers to go to <code>http://www.xfire.com/live_video/<i>username</i></code> directly.</p>

<p>Have fun, and let me know how it goes!
</p>]]></description>
</item>

<item>
<title>New Design (again?)</title>
<link>http://douglasstridsberg.com/blog/entries/new-design-again/</link>
<guid>http://douglasstridsberg.com/blog/entries/new-design-again/</guid>
<pubDate>Mon, 20 Oct 2008 00:17:00 +0000</pubDate>
<description><![CDATA[<p>What a relief! Just finished off the new design, added all the tidbits and copied it over from localhost.<br />
This baby had me working for days, and I&#8217;m still not a 100% satisfied. But hey, at least it&#8217;s better than the old one? As you can see from the bottom menu, I&#8217;ve used some jQuery to get the slide-effect in place.<br />
I&#8217;m still working on adding the RSS feed and creating the contact-form. I&#8217;ve also decided to skip the whole ability to post comments, as for now at least.</p>

<p>Soon you will be able to comment again, by contacting me =) !
</p>]]></description>
</item>

<item>
<title>History: Summer of 1914 (Outbreak of WWI) and the Schlieffen Plan</title>
<link>http://douglasstridsberg.com/blog/entries/history-summer-of-1914-outbreak-of-wwi-and-the-schlieffen-plan/</link>
<guid>http://douglasstridsberg.com/blog/entries/history-summer-of-1914-outbreak-of-wwi-and-the-schlieffen-plan/</guid>
<pubDate>Wed, 15 Oct 2008 00:47:00 +0000</pubDate>
<description><![CDATA[<h2>Outbreak of WWI</h2><p>
An Austrian envoy, Count Hoyos, brings a letter from Franz Joseph to Kaiser Wilhelm. The letter says that Austria-Hungary will crush Serbia militarily on the condition that she would receive German support.<br />
Wilhelm virtually gives Austria a blank cheque, in essence support for whatever actions they wish to take. Berlin thought that this would be just another small Balkan War.<br />
On the 23rd of July, Vienna hands over a nearly impossible ultimatum to Serbia. On the 25th, Russia mobilizes against Austria-Hungary whilst Grey, the British Foreign Minister, desperately tries to get a conference to be held.<br />
His efforts are rejected by Austria-Hungary and Germany.</p>

<p>Historians disagree about the general causes for war, but one can clearly say that all parties more or less wanted war at the time.</p>

<h2>The Schlieffen Plan</h2><p>
The German Schlieffen Plan (named after Count Alfred von Schlieffen), drawn up in the 1890&#8217;s, said that Germany could defeat France and then later defeat Russia, thereby fighting two one-front wars.<br />
It basically said that Germany could win wars against both France and Russia by first moving through Belgium, capturing Paris and then returning to the Russian border.<br />
The follow description is a key part in Frederick Taylor&#8217;s work and theory, &#8220;War by Time-Table&#8221;, which says that the planning was very important for the outbreak of the WWI.<br />
On the 28th of June Russia was going to mobilize her army. The Tsar&#8217;s first order was for a full mobilization (along both the Austrian-Hungarian and German border).<br />
Soon after the first order however, the Tsar tried changing the order to only invoke a partial mobilization, towards Austria. This was to avoid provoking Germany.<br />
The Tsar was adviced by his staff not to call off the complete mobilization, for it would then render Russia defenseless against a German attack.<br />
The elaborate mobilization plan involving hundreds of thousand men had to be followed once it was put in motion, or else an irreversible disruption of troop transport would follow.</p>

<p>On the 25th of June Russia started to mobilize along the German frontier. Normally this would only be seen as a &#8220;flexing of muscles&#8221;, a political way of displaying one&#8217;s power.<br />
But for Germany, who needed to quickly defeat France, this essentially meant an immediate mobilization and movement through Belgium. She had to act.
</p>]]></description>
</item>

<item>
<title>HD Videos from Klagshamn (and Blekinge)</title>
<link>http://douglasstridsberg.com/blog/entries/hd-videos-from-klagshamn/</link>
<guid>http://douglasstridsberg.com/blog/entries/hd-videos-from-klagshamn/</guid>
<pubDate>Mon, 13 Oct 2008 04:48:11 +0000</pubDate>
<description><![CDATA[<p>Recorded a few HD-clips with my Kodak Z812IS today. The videos were recorded around Klagshamn, a port near my home-town. Enjoy!</p>

<object width="400" height="300">	<param name="allowfullscreen" value="true" />	<param name="allowscriptaccess" value="always" />	<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=1945984&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" />	<embed src="http://vimeo.com/moogaloop.swf?clip_id=1945984&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object><p><br /><a href="http://vimeo.com/1945984?pg=embed&amp;sec=1945984">Klagshamn Hamn #1</a> from <a href="http://vimeo.com/doggie52?pg=embed&amp;sec=1945984">Douglas S</a> on <a href="http://vimeo.com?pg=embed&amp;sec=1945984">Vimeo</a>.</p>

<object width="400" height="300">	<param name="allowfullscreen" value="true" />	<param name="allowscriptaccess" value="always" />	<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=1946023&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" />	<embed src="http://vimeo.com/moogaloop.swf?clip_id=1946023&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object><p><br /><a href="http://vimeo.com/1946023?pg=embed&amp;sec=1946023">Klagshamn Hamn #2</a> from <a href="http://vimeo.com/doggie52?pg=embed&amp;sec=1946023">Douglas S</a> on <a href="http://vimeo.com?pg=embed&amp;sec=1946023">Vimeo</a>.</p>

<object width="400" height="300">	<param name="allowfullscreen" value="true" />	<param name="allowscriptaccess" value="always" />	<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=1946060&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" />	<embed src="http://vimeo.com/moogaloop.swf?clip_id=1946060&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object><p><br /><a href="http://vimeo.com/1946060?pg=embed&amp;sec=1946060">Klagshamn Hamn #3</a> from <a href="http://vimeo.com/doggie52?pg=embed&amp;sec=1946060">Douglas S</a> on <a href="http://vimeo.com?pg=embed&amp;sec=1946060">Vimeo</a>.</p>

<p>Did some more recording during the weekend, this time in Blekinge.</p>

<object width="400" height="300">	<param name="allowfullscreen" value="true" />	<param name="allowscriptaccess" value="always" />	<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=2091895&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" />	<embed src="http://vimeo.com/moogaloop.swf?clip_id=2091895&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object><p><br /><a href="http://vimeo.com/2091895?pg=embed&amp;sec=2091895">Various shots of Blekinge</a> from <a href="http://vimeo.com/doggie52?pg=embed&amp;sec=2091895">Douglas S</a> on <a href="http://vimeo.com?pg=embed&amp;sec=2091895">Vimeo</a>.</p>

]]></description>
</item>

<item>
<title>New Domain Name!</title>
<link>http://douglasstridsberg.com/blog/entries/new-domain-name/</link>
<guid>http://douglasstridsberg.com/blog/entries/new-domain-name/</guid>
<pubDate>Mon, 13 Oct 2008 02:49:00 +0000</pubDate>
<description><![CDATA[<p>All this happened very quickly - this morning I decided to buy myself a new domain name - douglasstridsberg.com. I&#8217;m just going to keep this short - the feeling of having an own domain name is nothing short of wonderful.<br />
I am already loving it. My pagerank will take some time to update - but when it does it will be there, forever! I am thinking of keeping this domain name for a long time.
</p>]]></description>
</item>

<item>
<title>History: Post&#45;Bosnian Crisis Times in Europe and the Balkan Wars (1908&#45;1913)</title>
<link>http://douglasstridsberg.com/blog/entries/history-post-bosnian-crisis-times-in-europe-and-the-balkan-wars-1908-19131/</link>
<guid>http://douglasstridsberg.com/blog/entries/history-post-bosnian-crisis-times-in-europe-and-the-balkan-wars-1908-19131/</guid>
<pubDate>Tue, 07 Oct 2008 16:05:00 +0000</pubDate>
<description><![CDATA[<p><i>...the Austrians went ahead and proclaimed their annexation of Bosnia. [...] Meanwhile it seemed unlikely that London or Paris would accept a conference to facilitate Russia&#8217;s access to the Mediterranean&#8230;</i>
</p><h2>1908</h2><p>
Russia and Serbia were forced to accept the annexation of Bosnia as Kaiser Wilhelm II sent the Tsar Nicholas II: &#8220;If you get involved we will support Austria-Hungary&#8221;.<br />
Serbia was embittered and from now on slav and serb terrorism would become an increasing problem for the Austrians.</p>

<h2>1911</h2><p>
In 1911 Italy attacks Tripoli in Libya and manages to push the Ottomans away. This inspires Serbia, Romania, Bulgaria and Greece to form the Balkan League.</p>

<h2>1912 and the First and Second Balkan Wars</h2><p>
In 1912 Turkey&#8217;s European territories are attacked by the said Balkan League on both north and south flanks and are swiftly defeated.<br />
The four states of the League acted independently of the instructions from the Great Powers (&#8220;do not start a war!&#8221;).<br />
Even though Turkey was driven out of Europe, the situation in the Balkans was not stabilized, and the area remained the &#8220;powder keg of Europe&#8221;.<br />
One result of the war seemed to be that Serbia would get a coastline on the Adriatic Sea. However, a conference with the Great Powers was called, where Austria-Hungary&#8217;s and Italy&#8217;s urge to stop Serb access was supported by Great Britain, France and Germany.<br />
So, Serbia had to evacuate and instead the new state of Albania was created. The Serbs were bitter and decided to bring up an old disagreement with Bulgaria over the division of Macedonia. As a result of this quarrel Bulgaria attacked Serbia, but was easily defeated when Serbia was joined by Greece, Romania and Turkey (the Second Balkan War).<br />
After this attack Serbia, with a boosted self-confidence, yet again tries to take Albania but is forced to evacuate because of a subsequent conference where Austria insists upon it.<br />
Serbia has to bitterly give in and leave Albania.</p>

<h2>Conclusion</h2><p>
During these two wars, tensions between the big powers rose. Especially between Russia, who was supporting Serbia, and Germany, supporter of Austria-Hungary.<br />
Russia was unable to support Serbia&#8217;s party of the wars due to Kaiser Wilhelm threatening the Tsar Nicholas II and at the same time giving Austria-Hungary full diplomatic support.
</p>]]></description>
</item>

<item>
<title>Playing Counter&#45;Strike 1.6 without Steam (free non&#45;Steam)</title>
<link>http://douglasstridsberg.com/blog/entries/playing-counter-strike-16-without-steam-free-non-steam/</link>
<guid>http://douglasstridsberg.com/blog/entries/playing-counter-strike-16-without-steam-free-non-steam/</guid>
<pubDate>Mon, 06 Oct 2008 06:52:00 +0000</pubDate>
<description><![CDATA[<p>What?! Is that possible? Yes, it is, I found out the other day. I&#8217;ll try to put together some kind of short guide, and see if I can get the facts straight.</p>

<p>First of all, visit the <a href="http://www.fragbase.ca/">FragBase</a> homepage and download the <b>Non Steam CS 1.6 GAME</b> and the <b>Non Steam CS 1.6 PATCH</b>. After downloading and extracting, run the .exe file, running the GAME first and then the PATCH. During the installation you might be prompted with Retry, Cancel or Ignore messages, make sure you just ignore them. Also, if you&#8217;re running a non-English version of your OS some text might be shown as question marks.</p>

<p>After installing it and running for the first time you might want to change options such as your name and your spray-tag. When you&#8217;re ready to play, you&#8217;ve got a job ahead of you - finding servers. Naturally you could try clicking <i>Find Server</i> and try joining, however you will not be able to play since you will be kicked for an <i>Invalid CD-key</i>. Finding non-Steam dedicated servers can be a hassle, but Google is there for you, as well as the FragBase homepage. The latter has three dedicated servers running (208.122.49.51:27015, 208.122.49.24:27015 and 208.122.52.254:27015) which you are free to connect to and have fun with.</p>

<p>Remember, this is most likely classed as illegal, and all of this is done <b>at your own risk!</b> Other than that, there&#8217;s not much more for me to say. Good luck and have fun!
</p>]]></description>
</item>

<item>
<title>History: The Bosnian Crisis in 1908</title>
<link>http://douglasstridsberg.com/blog/entries/history-the-bosnian-crisis-in-1908/</link>
<guid>http://douglasstridsberg.com/blog/entries/history-the-bosnian-crisis-in-1908/</guid>
<pubDate>Tue, 30 Sep 2008 16:32:01 +0000</pubDate>
<description><![CDATA[<p>In 1908 the status of Bosnia was somewhat uncertain, administered by Austria-Hungary but formally still part of the Ottoman Empire. Inhabited by slavs, Bosnia was part of the slav nationalist dream of a South Slav Kingdom (Yugoslavia).<br />
The so-called Pan-Slav movement wanted all slav people to unite, and the most aggressive proponent of this movement was Serbia. The Pan-Slav movement was sponsored by Russia; the <a href="http://stridsberg.eu/douglas/blog/comments/2008/08/27/social-studies-balance-of-power/">Great Power</a> which also was a slav country. But St. Petersburg did this also for strategic reasons: if Serbia could grow stronger in the Balkans, possibly at the expense of Turkey, Russia might finally win free access and control of the Straits of Constantinople (also known as the Straits of Istanbul, or the Dardanelles).</p>

<p>The foreign ministers of Russia and Austria-Hungary, Alexander Izvolsky respectively Alois Lexa von Aehrenthal, negotiated in secrecy an agreement: Russia would accept an Austrian annexation of Bosnia and Austria would support Russia&#8217;s desire to get free access through the Dardanelles. The would be done at an international conference at a later date (not set at the time).<br />
However, before Great Britain and France gave their approval for such a conference, the Austrians went ahead and proclaimed their annexation of Bosnia. This caused an outrage in St. Petersburg, in Belgrade and in other slav quarters. Meanwhile it seemed unlikely that London or Paris would accept a conference to facilitate Russia&#8217;s access to the Mediterranean&#8230;
</p>]]></description>
</item>

<item>
<title>Gmail Findings: Download Mail from External Account</title>
<link>http://douglasstridsberg.com/blog/entries/gmail-findings-download-mail-from-external-account/</link>
<guid>http://douglasstridsberg.com/blog/entries/gmail-findings-download-mail-from-external-account/</guid>
<pubDate>Sat, 27 Sep 2008 12:00:00 +0000</pubDate>
<description><![CDATA[<p>So you have several different mail accounts? Having trouble reading them all at the same time? Like the GMail user interface and would prefer to have all your emails routed through it? Look no further for Gmail can do all this for you!</p>

<p>To add other email accounts to your Gmail account (i.e. pairing them together) is easy and painless and can improve your efficiency by loads. Imagine having all your emails right in your Gmail inbox, ready to be read and archived inside your other around 8GB&#8217;s of space! This is all possible and pretty easy to set up. Let&#8217;s do this!</p>

<p>Log-in to your GMail account and have the credentials for your other accounts ready to be typed. Click on Settings at the top of the screen and choose the Accounts tab. Click on <i>Add another mail account</i> and follow the on-screen instructions, and you&#8217;ll have the account paired up with Gmail in no time! To later change the settings you do not need to re-add the account, you only need to press <i>edit info</i> on the right-hand side of the account-name and change whatever you need to change.</p>

<p>Remember, if you want to <b>move</b> your emails from the other account when receiving them, leave the <i>Leave a copy of retrieved message on the server</i> checkbox unchecked. If you wish to leave a copy of the mails you&#8217;re receiving then tick the box.
</p>]]></description>
</item>

<item>
<title>Gmail Findings: Filter by Labels</title>
<link>http://douglasstridsberg.com/blog/entries/gmail-findings-filter-by-labels/</link>
<guid>http://douglasstridsberg.com/blog/entries/gmail-findings-filter-by-labels/</guid>
<pubDate>Sat, 27 Sep 2008 09:19:00 +0000</pubDate>
<description><![CDATA[<p>This really sounds as if it&#8217;s something obvious, something one really can not miss. But it&#8217;s not, it took me a good five minutes or so to find how to filter the mail in Gmail by labels.</p>

<p>Labels, for those of you who do not know, is like putting mail into different folders or categories without moving them into other folders (i.e. keeping them in the Inbox). If you download mail from an external mail account, for example, you can choose to have it labeled automatically. It will then receive the label corresponding to the email address of the mail account you are downloading from.</p>

<p>One can also, of course, create own labels and apply them to different mail. This can be achieved by going into Settings and choosing Labels and pressing Create. But the main question here is <b>how to filter by labels and how to search them!</b> Labels are useless if you can&#8217;t actually filter the mail to exclusively show them!</p>

<p>The key lies, as so many other times, in the Gmail searchbar. This Google-powered wonderful little input-bar of rejoice let&#8217;s you do numerous things inside Gmail relating to filtering and searching. As with the regular Google searchbar you can apply certain rules to the search by adding parameters infront of the query such as <i>define:</i> and <i>related:</i> .</p>

<p><b>Solution</b><br />
To search for (and essentially filter out) certain labels you only need to add <i>label:</i> in the searchbar and type parts of the, or the whole, name of the label you&#8217;re looking for. Gmail quickly and easily grabs all mail with the corresponding label(s) and displays it in a green box. One can also open an email with the label one&#8217;s looking for and just click the label itself. Either way labels are a very handy way of organizing mail.
</p>]]></description>
</item>

<item>
<title>A Side Project: Zippo Lighters Forum</title>
<link>http://douglasstridsberg.com/blog/entries/a-side-project-zippo-lighters-forum/</link>
<guid>http://douglasstridsberg.com/blog/entries/a-side-project-zippo-lighters-forum/</guid>
<pubDate>Tue, 16 Sep 2008 16:36:00 +0000</pubDate>
<description><![CDATA[<p>Just want to quickly shout out a little something to my current side-project, a so called <a href="http://zippolighters.pcriot.com/" title="Zippo Lighters Forum">Zippo-lighters forum</a>.<br />
You can, based on the name, guess what it&#8217;s about (if you can&#8217;t guess, it&#8217;s all about lighters, more specifically Zippo ones), but there is so much more to it than just that.</p>

<p>It includes a <a href="http://zippolighters.pcriot.com/trade-and-request-f12.html">trade and request section</a>, where you can get your lighter sold or just request that very special lighters you&#8217;ve been searching for for ages.<br />
In the <a href="http://zippolighters.pcriot.com/show-off-your-zippo-f4.html">show-off section</a> you can show the world you&#8217;re very own lighter(s) (for you collectors there is a <a href="http://zippolighters.pcriot.com/collectors-area-f6.html">collectors area</a>) and get them rated and commented on.<br />
Use the <a href="http://zippolighters.pcriot.com/zippo-troubleshooting-f5.html">troubleshooting section</a> to get fast and qualified help with your lighter, there aren&#8217;t any problems that can&#8217;t be solved!</p>

<p>The big goodie here is the ability to <a href="http://zippolighters.pcriot.com/index.php?autocom=gallery">upload images of your lighters and collections to the Gallery</a>. You get a few MB&#8217;s freely for you to use for attachments in posts and uploads to the Gallery, isn&#8217;t that just awesome?</p>

<p><a href="http://zippolighters.pcriot.com/" title="Zippo Lighters Forum">Zippo Lighters Community board</a> is built on the latest bulletin-technology from Invision with SEO-friendly URLs and handy javascript and AJAX features, which makes it one of the most modern and easily useable places to discuss lighters. Give it a try today and be one of the first members of this potentially popular community!</p>

<p>Register at <a href="http://zippolighters.pcriot.com/">the community forum</a> today and reap the many benefits you get access to!
</p>]]></description>
</item>

<item>
<title>Social Studies: Main Political Ideologies</title>
<link>http://douglasstridsberg.com/blog/entries/social-studies-main-political-ideologies/</link>
<guid>http://douglasstridsberg.com/blog/entries/social-studies-main-political-ideologies/</guid>
<pubDate>Fri, 12 Sep 2008 05:58:00 +0000</pubDate>
<description><![CDATA[<p><i>What is a Political Ideology?</i><br />
An ideology is a system of opinions and values about society and the way it should be organized and governed. These ideas are shared by a group of people &#8220;belonging&#8221; to the ideology.</p>

<p><b>Liberalism</b><br />
Liberalism appeared in the late 18th century, paving the way to an industrial society during the said period by allowing new groups to gain political power. It appealed to the middle class in the growing cities.<br />
It&#8217;s main philosophers were Locke, Smith and Voltaire.<br />
Liberalism believes in mankind; you are rational, you are capable, you can make sensible decisions about your own life, you are developable. Since you are able to make sensible decisions, your property and income should not be stolen or taken over by the state.<br />
You should also have various freedoms such as freedom of speech, freedom of religion, freedom from coercion, economic freedom, et cetera.<br />
Mainly this means the state can not interfere in your affairs, and in extreme liberal cases the state should not be allowed to take taxes, as this is regarded as stealing from your property.<br />
Liberalism believes in democracy without a king where one man gets one vote and the power is focused around the parliament.</p>

<p><b>Conservatism</b><br />
Conservatism appeared after the French Revolution, when the philosopher Burke wrote a book on the subject, criticizing the rapid changes to society which the said revolution had brought.<br />
This ideology spread, mostly appealing to the aristocracy and clergy.<br />
Conservatism believes society should undergo development, but in a very slow pace. They like to compare society with a human body, growing all the time but very slowly. A revolution could mean chopping an arm off, and it should therefore be avoided.<br />
It also makes use of hierarchy whenever possible. God is on the top, followed by the king, the noble, et cetera. In the family this hierarchy is also applied thus making the father the one in charge.<br />
Conservatism believes that the way to maintain stability in society is by avoiding so-called &#8220;social mobility&#8221;, the ability to move between groups in society (e.g. earning enough money to move a class up from farmers).</p>

<p><b>Socialism</b><br />
The acting people behind Socialism were Karl Marx, Engels and Vladimir Lenin (I had no idea until recently his first name was Vladimir).<br />
Socialism was based on several different points, one being &#8220;historical materialism&#8221;, i.e. Karl Marx&#8217;s interpretation of history. He wrote several books about Socialism which still are a foundation for modern Socialism.<br />
He pictured society as an evolving entity with four different stages. Slave society, Feudalism, Capitalism, and lastly Communism. He believed all societies would eventually evolve into Communism, as it was the last stage in the evolution.<br />
Marx description of the different stages included the well-known so-called &#8220;class struggles&#8221;, i.e. the struggle between the poor and the rich.<br />
During the slave society the struggled lied between the slave-owners and the slaves themselves.<br />
Feudalism brought struggles between the clergy and aristocracy and the peasants. The landlords owned the land and the peasants farmed it in exchange for protection from the lords.<br />
According to Marx, Capitalism brings on struggles between the employers and the employees. Marx&#8217;s image of Communism was a struggle-less society.<br />
To achieve communism Marx believed that society had to, inevitably, go through a bloody revolution with certain period of dictatorship following. The last few remains of capitalism had to be cleaned out, and for that society needed a firm hand, i.e. a dictator.</p>

<p><b>Nationalism</b><br />
Nationalism is a vague concept, not really an ideology but still a host of ideas that play important roles in modern politics. As I noted in the post <a href="http://stridsberg.eu/douglas/blog/comments/2008/08/28/social-studies-basic-political-concepts/">Basic Political Concepts</a>, &#8220;a nation is a group of people that share common characteristics of culture, language and historical experience&#8221;. Hence, Nationalism is about the love for ones country and the common identity the inhabitants share.<br />
Generally there are two kinds of nationalism, citizenship nationalism and ethno-nationalism. Citizenship nationalism emphasizes kinship and solidarity towards the own state. It derives from the French revolution and the enlightenment.<br />
Ethno-nationalism emphasizes kinship and solidarity towards the people. The objective is to have one state with one nation. It derives from the German romanticism.<br />
To summarize this two-sided coin one can say that Nationalism is a gnome keeping states together, but also a seed of war.</p>

<p><i>There will be more to come!</i>
</p>]]></description>
</item>

<item>
<title>Trying out Leopard!</title>
<link>http://douglasstridsberg.com/blog/entries/trying-out-leopard/</link>
<guid>http://douglasstridsberg.com/blog/entries/trying-out-leopard/</guid>
<pubDate>Thu, 11 Sep 2008 06:32:00 +0000</pubDate>
<description><![CDATA[<p>The past week or two has been spent on learning and getting used to Mac OS X 10.5.4, also known as Leopard. This is the major upgrade from Tiger, introducing a big load of new features, improvements and updates. Our family had an old PowerBook G4 lying around, and I thought it would be great to use it for my malicious experiment (bear in mind, it is not Intel but not too old! I believe it is one of the fastest PowerPC&#8217;s Mac ever made, laptop-wise).</p>

<p>I tried installing it by copying down the image onto an iPod and using it as a boot device, but hopelessly. The Mac wouldn&#8217;t recognize it as bootable, therefore eliminating all chances of ever booting from it (obviously).</p>

<p>However, I still knew I could use Dual Layer DVD&#8217;s (I just wanted to avoid mal-burning one of them and having to replace it), and that&#8217;s what I did. I burned the image onto one of the 25 duallayered DVD&#8217;s I was forced to buy and let it boot up.</p>

<p>The installation screen was familiar to me (as I&#8217;ve tried installing Leopard on PC&#8217;s several times) and I jumped through a dozen or so screens and finally started installing.<br />
The install itself took perhaps an hour or so, and was fairly painless.</p>

<p>Now, before I go on writing about how Leopard behaves I must gather more intel, do more research and prepare myself. So, until then, stay tuned!</p>

<p><img src="http://iphonews.com/blog/wp-content/uploads/2007/10/mac-osx-leopard.jpg" />
</p>]]></description>
</item>

<item>
<title>Test post from Windows Live Writer</title>
<link>http://douglasstridsberg.com/blog/entries/test-post-from-windows-live-writer/</link>
<guid>http://douglasstridsberg.com/blog/entries/test-post-from-windows-live-writer/</guid>
<pubDate>Sat, 30 Aug 2008 12:17:00 +0000</pubDate>
<description><![CDATA[<p>Just testing whether I am able to post from Windows Live Writer. If this is showing and I therefore am able to post it might increase my productivity a lot.</p>

<h2>Conclusion</h2><p>
<i>After testing this out I came to the conclusion that setting categories is tough and that adding custom keywords might be difficult. I will continue using the normal web-based publishing until something better comes my way!</i>
</p>]]></description>
</item>

<item>
<title>Social Studies: Basic Political Concepts</title>
<link>http://douglasstridsberg.com/blog/entries/social-studies-basic-political-concepts/</link>
<guid>http://douglasstridsberg.com/blog/entries/social-studies-basic-political-concepts/</guid>
<pubDate>Thu, 28 Aug 2008 19:37:00 +0000</pubDate>
<description><![CDATA[<p>I want to take a brief moment to explain some basic political concepts I&#8217;ve learnt during the past few days.</p>

<p><b>A Nation</b><br />
A nation is a human group sharing common characteristics of culture, language, historical experiences etc.<br />
There are about 200 states whilst there are about 2000 nations.</p>

<p><b>A Centralized State</b><br />
This name is used when talking about states which are governed from the capital. Most states are centralized.</p>

<p><b>A Federal State (a union)</b><br />
When power has been decentralized from the capital to different provinces the state has become federal. Examples include the USA.</p>

<p><b>A Government</b><br />
The ruling party of a country including a set of institutions (ruling the country).<br />
The government has power over the military and police, amongst other things.</p>

<p><b>A Parliament</b><br />
This is the lawmaking body of a state.</p>

<p><b>The Head of Government</b><br />
Also known as the prime minister, bundeskansler or statsminister (in German resp. Swedish).</p>

<p><b>The Head of State</b><br />
The head of state can be a king or a president. Often this post only has a symbolic value, becoming more powerful during times of war.</p>

<p><b>A Constitution</b><br />
A constitution is a set of fundamental laws about how to rule a country and fundamental laws about important values in society, e.g. human rights and freedom of speech.</p>

<p><b>Democracy</b>
</p><ul><li><b>Direct democracy:</b> everyone is allowed to vote. Referendums are held.</li><li><b>Indirect democracy:</b> when representatives (to a parliament) are elected to make decisions.</li></ul>]]></description>
</item>

<item>
<title>Social Studies: What makes a State?</title>
<link>http://douglasstridsberg.com/blog/entries/social-studies-what-makes-a-state/</link>
<guid>http://douglasstridsberg.com/blog/entries/social-studies-what-makes-a-state/</guid>
<pubDate>Wed, 27 Aug 2008 15:55:00 +0000</pubDate>
<description><![CDATA[What makes a state? How do you define a country? I will try to define, simplify and explain the main definitions below.

What do you need to call yourself a country?
<ul>
<li>A territory with clearly defined borders.</li>
<li>A population, preferably with a strong sense of cohesion. I.e a population who believe they actually are part of your country.</li>
<li>Law and order with a strong basis, such as a constitution.</li>
<li>A government with a monopoly of coercive power. I.e a government with the unhindered power to rule your country.</li>
<li>Sovereignty. I.e no other state is allowed to violate your borders.</li>
<li>Last but absolutely not least: you need recognition from your neighbors. I.e you can not just take a piece of land and call it your country, the surrounding states (as well as the superpowers) need to accept you.</li>
</ul>]]></description>
</item>

<item>
<title>History: Origins of WWI</title>
<link>http://douglasstridsberg.com/blog/entries/social-studies-origins-of-wwi/</link>
<guid>http://douglasstridsberg.com/blog/entries/social-studies-origins-of-wwi/</guid>
<pubDate>Wed, 27 Aug 2008 15:45:00 +0000</pubDate>
<description><![CDATA[The incident that "started" the first World War, as you may know, was the assassination of the Austrian crown prince, Franz Ferdinand.<br />
But the real causes were many. Below I have stated some.<br />
Some great powers grew weak, whilst some grew strong. This put the "<a href="http://stridsberg.eu/douglas/blog/comments/2008/08/27/social-studies-balance-of-power/">Balance of Power</a>" out of balance, essentially disrupting the European king's reign.<br />
The Balance of Power was disrupted in 1914 by the development of European politics, the main issues highlighted here:<br />
<ul><li>The emergence of Germany (unified in 1871) as a Great Power on the continent.</li><li>The gradual weakening of the Ottoman Empire, which started when Greece became independent in 1830 and Serbia, Romania and Bulgaria in 1878. The term <i>the sick man of Europe</i> for the Ottoman Empire derived from this decay.</li></ul><br />
Also, socialist movements and their growth was a threat to the ruling elites of Germany. The aristocracy including Wilhelm II wanted to keep the growing number of industrial workers from supporting the socialist movement.<br />
Instead, they wanted to rally the workers behind the emperor for the nationalist cause: by launching Wilhelm's so-called "Weltpolitik" it was hoped that nationalist enthusiasm would keep the workers loyal to king and country.<br />
<i>Next article in the series: What makes a State?</i>]]></description>
</item>

<item>
<title>History: Balance of Power</title>
<link>http://douglasstridsberg.com/blog/entries/social-studies-balance-of-power/</link>
<guid>http://douglasstridsberg.com/blog/entries/social-studies-balance-of-power/</guid>
<pubDate>Wed, 27 Aug 2008 15:36:00 +0000</pubDate>
<description><![CDATA[<p>In Vienna year 1815 the leaders of Europe met and organized a system to avoid wars and keep power between each other.<br />
Whenever a nation needed help to suffocate a revolution or an other form of disturbing movement, they received assistance from nearby countries. Whenever two kings were arguing they decided to have a conference to discuss the issue. This way the countries could avoid wars and revolutions, thereby keeping a firm grip on the power over Europe.<br />
These ideas from Vienna were for instance used when Great Britain and France raced to conquer Africa between 1885 and 1895. They decided beforehand on so called &#8220;rules&#8221; which kept the two Great Powers aside and avoiding a war.</p>

<p><i>Next article in the series: Origins of WWI.</i>
</p>]]></description>
</item>

<item>
<title>Serious Work on the Gallery has begun</title>
<link>http://douglasstridsberg.com/blog/entries/serious-work-on-the-gallery-has-begun/</link>
<guid>http://douglasstridsberg.com/blog/entries/serious-work-on-the-gallery-has-begun/</guid>
<pubDate>Mon, 25 Aug 2008 06:55:00 +0000</pubDate>
<description><![CDATA[<p>I shall from now on spend more time on designing, and updating the gallery than I have before. You will soon see a much smoother interface and a big load of new photos.<br />
I shall also hoover the Interwebs for design inspiration for the gallery as well as the blog itself. You might happen to see a new UI in the coming few weeks, although school is taking most of my time at the moment.<br />
Anyhow, stay tuned, as I like to say!
</p>]]></description>
</item>

<item>
<title>Battlefield 2 Movie Released!</title>
<link>http://douglasstridsberg.com/blog/entries/battlefield-2-movie-released/</link>
<guid>http://douglasstridsberg.com/blog/entries/battlefield-2-movie-released/</guid>
<pubDate>Wed, 20 Aug 2008 16:43:00 +0000</pubDate>
<description><![CDATA[<p>Released my Battlefield 2 jet movie the other day. It can be <a href="http://vimeo.com/1550161">viewed at Vimeo</a>.</p>

<p>Here are some previews of what you&#8217;re about to see. The movie was recorded with WeGame, intro:ed in After Effects and edited + rendered in Sony Vegas.</p>

<p><br />
<img src="http://douglasstridsberg.com/images/uploads/snapshot20080818143909.jpg" style="border: 0;" alt="BF2 Jet Movie image #1" width="512" height="320" /><img src="http://douglasstridsberg.com/images/uploads/snapshot20080818144137.jpg" style="border: 0;" alt="BF2 Jet Movie image #2" width="512" height="320" /></p>

]]></description>
</item>

<item>
<title>Rendering a Movie</title>
<link>http://douglasstridsberg.com/blog/entries/rendering-a-movie/</link>
<guid>http://douglasstridsberg.com/blog/entries/rendering-a-movie/</guid>
<pubDate>Mon, 18 Aug 2008 13:32:00 +0000</pubDate>
<description><![CDATA[Rendering has got to be the most annoying part of the video-creating process. I have a few tips I'd like to share with you, however.

First of all, whatever codec you use, make sure the input ratio in the codec settings is set to match the clips you're editing. If you don't, the ratio will bork up and you might end up with a non-WS copy of WS clips (WS being widescreen). Also, if you're intending to make a WS movie, make sure the output settings match the input settings as closely as possible.
Second of all, unless you know what you're doing (or you're converting from/to WS on purpose) don't touch the pixel aspect ratio. Keep it at 1.0 whenever possible. I tried messing with it and I regretted it.

A few mentionable codecs (low filesize and good quality):
<ul>
<li>DivX</li>
<li>XviD</li>
</ul>

Good editing programs (both easy to use and advanced):
<ul>
<li>Sony Vegas</li>
<li>Adobe Premiere</li>
<li>Adobe After Effects (this is mainly used for intros)</li>
</ul>

Mentionable recording software (for recording from a computer):
<ul>
<li>WeGame</li>
<li>XFire</li>
<li>Fraps</li>
</ul>


I hope you put these tips to good use, if I had known this before I started <b>editing that BF2 movie of mine</b> I would have saved time : ) .]]></description>
</item>

<item>
<title>reCAPTCHA?</title>
<link>http://douglasstridsberg.com/blog/entries/recaptcha/</link>
<guid>http://douglasstridsberg.com/blog/entries/recaptcha/</guid>
<pubDate>Sun, 10 Aug 2008 10:42:00 +0000</pubDate>
<description><![CDATA[<p>I have, during the past few minutes, been installing and fine-tuning a reCAPTCHA engine on this blog.</p>

<p>When I first saw these new captchas, a year ago or so, I had no idea what the point of them was. But, as time went by, my interest of this thing grew, and today I started reading up on what it did.</p>

<p>A quote from the <a href="http://recaptcha.net/" title="reCAPTCHA site">reCAPTCHA site</a>:
</p><blockquote cite="http://recaptcha.net/"><p>To archive human knowledge and to make information more accessible to the world, multiple projects are currently digitizing physical books that were written before the computer age. The book pages are being photographically scanned, and then transformed into text using &#8220;Optical Character Recognition&#8221; (OCR). The transformation into text is useful because scanning a book produces images, which are difficult to store on small devices, expensive to download, and cannot be searched. The problem is that OCR is not perfect.<br />
reCAPTCHA improves the process of digitizing books by sending words that cannot be read by computers to the Web in the form of CAPTCHAs for humans to decipher. More specifically, each word that cannot be read correctly by OCR is placed on an image and used as a CAPTCHA. This is possible because most OCR programs alert you when a word cannot be read correctly.</p></blockquote>

<p>You might be wondering how reCAPTCHA can know if you&#8217;re spelling the word right or wrong? It assumes that if you spell the first word right, you&#8217;re spelling the next word correct as well. Does it work? Yes, I think it does, and therefore I have added it to the comment- and contactform. Have fun digitalizing books!</p>

<p>&nbsp;</p>]]></description>
</item>

<item>
<title>Waterskiing. I love it.</title>
<link>http://douglasstridsberg.com/blog/entries/waterskiing-i-love-it/</link>
<guid>http://douglasstridsberg.com/blog/entries/waterskiing-i-love-it/</guid>
<pubDate>Thu, 07 Aug 2008 19:19:00 +0000</pubDate>
<description><![CDATA[<p>During my two weeks stay at my summerhouse in the southern archipelago of Sweden I have been doing many fun things.<br />
I&#8217;ve been working some on my motocross bike, an old Yamaha DT-50 65cc with loads of customized parts. It accelerates at an AMAZING speed and sounds wonderful.</p>

<p>When the weather is windy enough I do windsurfing, and when it&#8217;s calm I do waterskiing. The latter is something I do at very rare occasions, but something I am enthusiastic about.<br />
During very calm period it feels like plowing through a big piece of butter with the skis, just an unbelievable feeling to say the least.<br />
Those of you who have me as a Facebook friend know where to look for pictures, I might upload some here as well.</p>

<p>Do you do any watersports? Comment!
</p>]]></description>
</item>

<item>
<title>Working on a PHP Poll</title>
<link>http://douglasstridsberg.com/blog/entries/working-on-a-php-poll/</link>
<guid>http://douglasstridsberg.com/blog/entries/working-on-a-php-poll/</guid>
<pubDate>Tue, 05 Aug 2008 10:06:00 +0000</pubDate>
<description><![CDATA[<p>The past few days I&#8217;ve begun working on a homebrew poll application written in PHP.<br />
It utilizes the latest PHP features such as custom classes, objects and functions, <b>working hand-in-hand with AJAX scripts</b> giving it the best performance and functionality available.</p>

<p>I&#8217;ve only yet started on it, and I have still a dozen or so features left to code, but it&#8217;s starting to take shape very nicely.<br />
I&#8217;ll keep you posted on the progress!
</p>]]></description>
</item>

<item>
<title>Awesome Layer style in Photoshop</title>
<link>http://douglasstridsberg.com/blog/entries/awesome-layer-style-in-photoshop/</link>
<guid>http://douglasstridsberg.com/blog/entries/awesome-layer-style-in-photoshop/</guid>
<pubDate>Sat, 02 Aug 2008 12:08:00 +0000</pubDate>
<description><![CDATA[<p>Sat a few minutes experimenting with layer styles and came up with this pretty wonderful style.</p>

<p><img src="http://douglasstridsberg.com/images/uploads/DS_style_test.png" style="border: 0;" alt="DS style test" width="450" height="300" /></p>

<p>The picture I used to show it just does not bring out the true beauty of it. I&#8217;ll see if I can get a better preview of it in a near future.</p>

<p>What are your thoughts?
</p>]]></description>
</item>

<item>
<title>New RAM on the Laptop! Easy!</title>
<link>http://douglasstridsberg.com/blog/entries/new-ram-on-the-laptop-easy/</link>
<guid>http://douglasstridsberg.com/blog/entries/new-ram-on-the-laptop-easy/</guid>
<pubDate>Fri, 01 Aug 2008 16:00:00 +0000</pubDate>
<description><![CDATA[<p>Finished installing a new stick of RAM in my Lenovo laptop today, and I must say it was the easiest thing I have ever done!</p>

<p>The laptop itself is of the brand Lenovo and is called 3000 N200. It has an old dual-core processor (1.46GhZ per core?) and comes with two sticks of 512MB SO-DIMM DDR2 PC5300 RAM.<br />
As I have been running Vista on it for a long time now, I felt that it absolutely needed a boost in the memory as Vista takes incredible amounts of memory while idling. So I took a bike-ride to a nearby computer store and bought myself a stick of the same specifications but with 2GB of memory.</p>

<p>I have never touched the insides of a laptop, neither have I ever needed to. After taking a quick look at the three different panels underneath, I immediately saw a little imprint of a chip beside the screw on one of them.<br />
That must be the RAM, I thought, and after unscrewing 1 (one) screw I was ready to open the panel and have a look. So far so good, the sight of two sticks (one being pushed forward for viewing purposes) met my eyes and I was pleased.</p>

<p>This is too easy, I thought to myself. There&#8217;s gotta be some catch to it all. But there really was not. After releasing the overlying stick from it&#8217;s metal holders it flipped up at about 45° and was easy to remove.<br />
The &#8220;art of inserting the stick of RAM&#8221; was basically just inserting it into the pins and applying pressure to the top, eventually clipping it back into the metal holders on the sides.</p>

<p>That was all I had to do and after putting the panel back in place I now enjoy 2,5GB&#8217;s of memory!
</p>]]></description>
</item>

<item>
<title>Sitemaps? Why?</title>
<link>http://douglasstridsberg.com/blog/entries/sitemaps-why/</link>
<guid>http://douglasstridsberg.com/blog/entries/sitemaps-why/</guid>
<pubDate>Wed, 30 Jul 2008 10:42:00 +0000</pubDate>
<description><![CDATA[<p>Why would you want to keep an ugly XML file with references to all your links? How is that necessary in any way? How do you generate it?<br />
I&#8217;ll try and answer those questions in an orderly manner, but first I will give you a brief introduction on XML.</p>

<p>Basically, XML (Extensive Markup Language) is a code-language designed to be as easy as possible to read and interpret, for both browsers and search-engine spiders. It uses easy to read tags which, unlike HTML, can be named after anything. &lt;quiz&gt;, &lt;game&gt;, &lt;lol&gt;, etc.<br />
XML files are known to have a very clean structure and they are optimal to use when interacting with search-engines, as they only look at your code and nothing else.</p>

<p>A sitemap is an one-page XML directory consisting of all the various pages within a site. Within each &lt;url&gt; tag is information about the URL of the page, the last modified date, the priority and a host of other things.<br />
How does this help the search engine, then? If you&#8217;re coding your homepage in fancy AJAX Javascript, or in other ways have links to pages that aren&#8217;t easy for the spider to find, a sitemap is an easy way of getting those pages indexed as well.</p>

<p>Now, writing a sitemap yourself can be a pain, especially if you have hundreds of pages to keep track of. Nowadays, most CMS&#8217;s (Content Management Systems) have sitemap-generation included in some form, whether it&#8217;s built in or can be added through a modification. If you&#8217;re using your own CMS, or you&#8217;re manually coding every page by itself you might want to consider checking out Sitemap-generators (search on Google for that). Information on how a sitemap is supposed to look can be found <a href="http://www.sitemaps.org/protocol.php">here</a>.</p>

<p>I hope you&#8217;ve gotten a clearer picture of what a sitemap is. If you have any more questions feel free to either comment here or contact me.
</p>]]></description>
</item>

<item>
<title>Google Maps and Streetview</title>
<link>http://douglasstridsberg.com/blog/entries/google-maps-and-streetview/</link>
<guid>http://douglasstridsberg.com/blog/entries/google-maps-and-streetview/</guid>
<pubDate>Tue, 29 Jul 2008 10:59:00 +0000</pubDate>
<description><![CDATA[<p>Google Maps. Streetview. One very well-known name. One slightly less known name. Two names with a great potential and with jaw-dropping features!</p>

<p>Google Maps has been around for a long time now. It&#8217;s just like Google Earth only it has slightly less features and is browser-based. It&#8217;s the good old zoom-in-on-any-place concept which so many other companies have taken over.<br />
A few months ago, however, Google launched their new eye-candy - the Streetview. This is basically a vast database of imagery taken from a car driving around the States, with pictures from nearly every big city and road.<br />
When in the Streetview-view you can pan the camera around 360° as well as zoom in on the current view. Whenever you want to go down/up the street you just click on the conveniently placed markers on either side of the screen.</p>

<p>You should have a go at it, trust me you will be pleased!<br />
<img src="http://maps.google.com/help/maps/streetview/images/flying_man.png" alt="Streetview Man" />
</p>]]></description>
</item>

<item>
<title>Nissan GTR. WOAH!</title>
<link>http://douglasstridsberg.com/blog/entries/nissan-gtr-woah/</link>
<guid>http://douglasstridsberg.com/blog/entries/nissan-gtr-woah/</guid>
<pubDate>Mon, 28 Jul 2008 09:32:00 +0000</pubDate>
<description><![CDATA[<p>I recently saw a movie on YouTube about the Nissan GTR, and was I amazed? I was effing STUNNED! This car just rocks my socks, it goes from 0-100 km/h in 3.2 seconds and has a massive top speed and immense handling.<br />
Yet this car weighs a lot! It has four seats and isn&#8217;t really primarily built to be a racing car, which makes the whole concept a notch cooler!</p>

<p><img src="http://www.best-trade-car.com/blogpics/nissan-gtr.jpg" alt="Nissan GTR" /></p>

<p>I wish I had one of those, but according to Top Gear every engine is built by hand and that drives the price up sky-high =( .
</p>]]></description>
</item>

<item>
<title>Battlefield 2 Movie?</title>
<link>http://douglasstridsberg.com/blog/entries/battlefield-2-movie/</link>
<guid>http://douglasstridsberg.com/blog/entries/battlefield-2-movie/</guid>
<pubDate>Sun, 27 Jul 2008 11:09:02 +0000</pubDate>
<description><![CDATA[<p>I have been thinking about making my own gaming movie in the coming few weeks. But if I am to fulfill my dreams I need to get starting on advanced learning in After Effects and Premiere.<br />
I know the basics like the back of my hand, but really the only thing I need now are some slightly more advanced skills and <b>creativity</b>. The latter being something I may and may not receive depending on my mood and/or the time of day.<br />
Just like I need creativity to continue developing this blog I need creativity to be able to make a movie / intro. And that annoys me.
</p>]]></description>
</item>


</channel>
</rss>