<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tigraine &#187; Site-News</title>
	<atom:link href="http://www.tigraine.at/category/site-news/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tigraine.at</link>
	<description>Daniel Hoelbling talks about programming</description>
	<lastBuildDate>Fri, 03 Feb 2012 00:02:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Site migrated &#8211; more awesome &#8211; more root!</title>
		<link>http://www.tigraine.at/2011/09/15/site-migrated-more-awesome-more-root/</link>
		<comments>http://www.tigraine.at/2011/09/15/site-migrated-more-awesome-more-root/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 11:43:29 +0000</pubDate>
		<dc:creator>Daniel Hölbling</dc:creator>
				<category><![CDATA[Site-News]]></category>

		<guid isPermaLink="false">http://www.tigraine.at/?p=1078</guid>
		<description><![CDATA[The title actually says it all. I just finished the migration of my blog to a new server I am now administering myself (wether that&#8217;s a good thing or not still remains to be seen). Last week I noticed that I could get a full root server for the same money I am paying for [...]]]></description>
			<content:encoded><![CDATA[<p>The title actually says it all. I just finished the migration of my blog to a new server I am now administering myself (wether that&#8217;s a good thing or not still remains to be seen).</p>
<p>Last week I noticed that I could get a full root server for the same money I am paying for the 100 megs of PHP4/MySQL4 hosting at my old provider. So I jumped at the opportunity and got a nice little Debian Squeeze VM from my good friends at <a href="http://www.counity.at">CoUnity.at</a>.</p>
<p>I&#8217;ve now spent two days configuring the heck out of that machine and I must say I am impressed, so here are some notes that may help when you are migrating/setting up.</p>
<h3>Git</h3>
<p>It&#8217;s ridiculous how easy it is to install gitolite.<br />
You just follow this <a href="http://www.silassewell.com/blog/2011/01/08/setup-gitolite-on-ubuntu/">little guide here</a> and you are up and running your own private Git server in 5 minutes tops.</p>
<p>I actually just canceled my paid GitHub account since I can now host my private Git repositories on my own server now.</p>
<h3>Apache / MySql</h3>
<p>It&#8217;s almost kind of silly and feels totally outlandish to anyone who has ever gone through a IIS and SQL Server 2008 install, but getting the full stack running on Debian was once again a two liner on the shell:</p>
<blockquote>
<pre>apt-get install mysql5
apt-get install apache2</pre>
</blockquote>
<h3>Ruby</h3>
<p>One of the main reasons why I wanted my own root server was so I could run my own little rails projects I had nowhere to put before.<br />
So naturally I checked for the apt packages on ruby and found out that they are horribly outdated. Since I primarily wanted Rails3 I installed Ruby 1.9.2 through RVM.</p>
<p>Once again, so easy that any Windows Sysadmin will weep:</p>
<blockquote><pre>
bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)
#restart the prompt
rvm notes
#Read through the notes as it will tell you what packages ruby 1.9.2 requires
#and install them through apt-get
rvm install 1.9.2
rvm use 1.9.2 --default
</pre>
</blockquote>
<p>The <code>rvm install</code> will take about 10 minutes since it's actually compiling ruby 1.9.2 from source and installing it to /usr/local/rvm but that's it then.</p>
<h3>Passenger</h3>
<p>Being able to run Ruby is nice, but Apache2 didn't know anything of it's luck yet so next step was to install the <a href="http://www.modrails.com/">Passenger </a>in order to run Rack apps.</p>
<p>Now here it's a bit tricky because Passenger is available in the apt sources. So if you run <code>apt-get install libapache2-mod-passenger</code> you are screwed as apt will go ahead and pull down Ruby 1.8 and overwrite all the stuff you did with RVM before. (No big deal but not ideal either).</p>
<p>So the better way to install Passenger is to actually install it through the new RVM rubie as a Gem:</p>
<blockquote><pre>
gem install passenger
passenger-install-apache2-module</pre>
</blockquote>
<p>Again, it can't really get any easier. The installer will even tell you what libraries you are missing and tell you exactly what to type into apt-get to install them.</p>
<p>After the install is done you simply need to hack open your apache2.conf and add the module settings (they are listed in the installer), but it's better to go into your <code>/etc/apache2/mods-available</code> and put the code into a new file (conveniently called passenger-local.load). Now your local passenger install is an apache module and apache won't blow up on the next <code>apt-get upgrade</code>.</p>
<p>You then activate your module with <code>a2enmod passenger-local</code> and restart apache (<code>/etc/init.d/apache2 restart</code>).</p>
<h3>WordPress</h3>
<p>Migrating a WordPress blog was fairly easy, I just copied all the files from my old host into <code>/var/www</code> and restored the MySQL database from the mysql-dump.<br />
The thing that amazed me at this point however was <a href="http://www.sequelpro.com/">Sequel Pro</a> and SSH.<br />
The MySQL server does not allow connections from the outside for obvious security reasons so I was already thinking about either installing phpMyAdmin on the machine or figuring out how to run the 5 mb SQL insert script through the MySQL commandline client.<br />
Turns out, my Mac MySQL app Sequel Pro can connect to MySQL servers over SSH. So I connected to 127.0.0.1 over the encrypted SSH tunnel - getting a really nice management interface with no open ports whatsoever. Wow.. </p>
<p>Anyways, the WordPress install was pretty easy. I set the correct file permissions on my /var/www folder with <code>chown -R www-data:www-data /var/www</code> and changed the database connection strings in wp-config.php.<br />
I then had to fiddle a bit because mod-rewrite was not enabled and all permalinks where broken. I fixed that with <code>a2enmod rewrite</code> and setting the <code>AllowOverride</code> setting in <code>/etc/apache2/sites-available/default</code> to <code>FileInfo</code></p>
<p>In closing I have to say I am genuinely impressed by the amount of flexibility you get with SSH. Windows could really use a good command line interface and desperatly needs a way to remote into servers without having to run RDP all the time.<br />
Especially sending files around with SCP or tunneling traffic over SSH is so incredibly useful that I can't understand why there is no such thing in Windows at all. Your best bet there is PowerShell remoting but that's far away from useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigraine.at/2011/09/15/site-migrated-more-awesome-more-root/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Goodbye WordPress, Hello Jekyll!</title>
		<link>http://www.tigraine.at/2010/10/01/goodbye-wordpress-hello-jekyll/</link>
		<comments>http://www.tigraine.at/2010/10/01/goodbye-wordpress-hello-jekyll/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 21:51:45 +0000</pubDate>
		<dc:creator>Daniel Hölbling</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Site-News]]></category>

		<guid isPermaLink="false">http://www.tigraine.at/?p=958</guid>
		<description><![CDATA[The title says it all, I’ve finally moved my Blog off WordPress and replaced it by static HTML files generated by Jekyll This means: No more security updates to WordPress, no database roundtrip to display what amounts to static HTML content and best of all: I can version my posts using Git! Naturally, the code [...]]]></description>
			<content:encoded><![CDATA[<p>The title says it all, I’ve finally moved my Blog off WordPress and replaced it by static HTML files generated by <a href="http://jekyllrb.com/">Jekyll</a></p>
<p>This means: No more security updates to WordPress, no database roundtrip to display what amounts to static HTML content and best of all: I can version my posts using Git!<br />
Naturally, the code is now up on GitHub in it’s own <a href="http://github.com/tigraine/www.tigraine.at/">repository</a><br />
Another added benefit is that I can now write my posts using <a href="http://textile.thresholdstate.com/">textile</a> instead of HTML, what amounts to a much better editing experience.</p>
<p>What changed for my readers? Nothing, and that’s not really a good thing. I feel like this blog would benefit from a cosmetic overhaul, but until I can convince a designer to help me out with that it will look and feel the same it has always done (boring). I did however clean out the sidebar a bit <img src='http://www.tigraine.at/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>The migration process</h3>
<p>Oh this is where things get interesting. Migrating to Jekyll was not as easy as I thought it should be. Since my hoster does not allow for direct connections to the MySQL database using the migrator scripts within Jekyll was not an option. These require direct database access and I was not very keen on installing MySQL on my machine just for that purpose.</p>
<p>It was a journey from there, I first tried to export MSSQL compatible SQL but suffice it to say phpMyAdmin sucks. (It was also unable to generate sane YAML). I finally found the export function inside WordPress itself that will generate a RSS style XML document that contains all posts and decided to simply write a Ruby script that exports the posts from the XML into html files for use in Jekyll.</p>
<p>Writing that script was also a bit funny, since Ruby/Jekyll fails totally at reading <a href="http://github.com/mojombo/jekyll/wiki/YAML-Front-Matter">YAML Front Matter</a> in any format besides ANSI. So I had to find out how to first write a file in ANSI using ruby (it defaulted to UTF-8) and then how to htmlencode text using <a href="http://htmlentities.rubyforge.org/">htmlentities</a>. Anyway, overall I have to say writing that Ruby script was really fun and I may end up doing a bit more Ruby in the future.<br />
And btw: I finally managed to learn how to get around Vim. Did I mention that this editor totally rocks?</p>
<p>In the end, the script is still rather simplistic. It will just take a <em>wordpress.xml </em>file and extract all posts into the _posts directory, adding categories, title etc to the YAML Front Matter of each post. You can find it in my GitHub repository: <a href="http://github.com/Tigraine/www.tigraine.at/blob/master//importer.rb">Importer.rb</a></p>
<p>I’ll put up a series of blogposts about the WordPress → Jekyll migration in the near future.</p>
<p><strong>Update</strong>: Sorry to all my feed subscribers for the spam there. I changed the format of the feed to atom and now your reader may show 20 unread posts when there is really only one.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigraine.at/2010/10/01/goodbye-wordpress-hello-jekyll/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thanks Lijit!</title>
		<link>http://www.tigraine.at/2009/11/26/thanks-lijit/</link>
		<comments>http://www.tigraine.at/2009/11/26/thanks-lijit/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 14:34:11 +0000</pubDate>
		<dc:creator>Daniel Hölbling</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Site-News]]></category>

		<guid isPermaLink="false">http://www.tigraine.at/2009/11/26/thanks-lijit/</guid>
		<description><![CDATA[You may have seen that I use Lijit to power the on-site search for my blog. Since Lijit by default uses a Google custom search to power this (nothing really wrong with that) I became quite unhappy with the results (Google for some reason doesn’t like to index articles but rather indexes categories ). Since [...]]]></description>
			<content:encoded><![CDATA[<p>You may have seen that I use <a href="http://www.lijit.com/" target="_blank">Lijit</a> to power the on-site search for my blog. Since Lijit by default uses a Google custom search to power this (nothing really wrong with that) I became quite unhappy with the results (Google for some reason doesn’t like to index articles but rather indexes categories <img src='http://www.tigraine.at/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ). Since I didn’t find my own stuff through Google, getting the same bad results through Lijit was quite annoying. </p>
<p>So I tweeted this one day:</p>
<p><a href="http://www.tigraine.at/wp-content/uploads/2009/11/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.tigraine.at/wp-content/uploads/2009/11/image_thumb.png" width="244" height="106" /></a> </p>
<p>Well, took about 45 minutes to receive this:</p>
<p><a href="http://www.tigraine.at/wp-content/uploads/2009/11/image2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.tigraine.at/wp-content/uploads/2009/11/image_thumb1.png" width="244" height="120" /></a> </p>
<p>And this very nice Email alongside:</p>
<p><a href="http://www.tigraine.at/wp-content/uploads/2009/11/image3.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.tigraine.at/wp-content/uploads/2009/11/image_thumb2.png" width="684" height="235" /></a> </p>
</p>
<p>Well, that was 2 days ago. Search results that I get when using the on-site search are back to what I expect them to be and I’m once again able to find my own stuff. </p>
<p>Thanks Lijit. Great service!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigraine.at/2009/11/26/thanks-lijit/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>I&#8217;m in on the Castle blog aggregator</title>
		<link>http://www.tigraine.at/2009/08/25/castle-blog-aggregator/</link>
		<comments>http://www.tigraine.at/2009/08/25/castle-blog-aggregator/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 10:05:20 +0000</pubDate>
		<dc:creator>Daniel Hölbling</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Site-News]]></category>

		<guid isPermaLink="false">http://www.tigraine.at/2009/08/25/castle-blog-aggregator/</guid>
		<description><![CDATA[Well, I already told you about the Castle blog aggregator as a source for keeping up to date with the Castle project. Turns out the idea was taken even further and the feed has now been integrated into the www.castleproject.org under Community/Blogs. What I never anticipated was that I’d one day get this email by [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I already told you about the Castle blog aggregator as a source for <a href="http://www.tigraine.at/2009/07/25/keeping-up-with-castle/" target="_blank">keeping up to date with the Castle project</a>. Turns out the idea was taken even further and the feed has now been integrated into the <a href="http://www.castleproject.org">www.castleproject.org</a> under <a href="http://www.castleproject.org/community/blogs.aspx" target="_blank">Community/Blogs</a>.</p>
<p>What I never anticipated was that I’d one day get this email by <a href="http://bugsquash.blogspot.com/" target="_blank">Mauricio Scheffer</a>:</p>
<blockquote><p>Hi Daniel, would you be interested in being included in the <a href="http://www.castleproject.org/community/blogs.aspx">Castle blog aggregator</a>?       <br />Your posts tagged as &quot;Castle&quot; would be automatically included.</p>
<p>Cheers,      <br />Mauricio</p>
</blockquote>
<p>My immediate answer was <u>Yes</u>! I’m very happy to be able to contribute to castle in any way possible, and seeing people consider my posts interesting is very rewarding to me. Thanks Mauricio!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigraine.at/2009/08/25/castle-blog-aggregator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RSS Feed moved</title>
		<link>http://www.tigraine.at/2009/01/24/rss-feed-moved/</link>
		<comments>http://www.tigraine.at/2009/01/24/rss-feed-moved/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 09:40:41 +0000</pubDate>
		<dc:creator>Daniel Hölbling</dc:creator>
				<category><![CDATA[Site-News]]></category>

		<guid isPermaLink="false">http://www.tigraine.at/2009/01/24/rss-feed-moved/</guid>
		<description><![CDATA[So, apparently Google has decided to finally get rid of Feedburner and moved their services over to new servers.&#160; That means new feed URLs for everyone, also for me. The new Feed URL is: http://feeds2.feedburner.com/Tigraine I changed the little subscribe button to the right, and Google has also put redirects on the old URL pointing [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px; display: inline" title="logo_footer" border="0" alt="logo_footer" src="http://www.tigraine.at/wp-content/uploads/2009/01/logo-footer.gif" width="132" height="32" /> </p>
<p>So, apparently Google has decided to finally get rid of Feedburner and moved their services over to new servers.&#160; <br />That means new feed URLs for everyone, also for me.</p>
<p>The new Feed URL is: <a href="http://feeds2.feedburner.com/Tigraine">http://feeds2.feedburner.com/Tigraine</a></p>
<p>I changed the little subscribe button to the right, and Google has also put redirects on the old URL pointing to the new one. So, existing subscribers shouldn’t see any change.</p>
<p>Since I already moved (not the smartest thing), if you can read this in your reader, everything is fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigraine.at/2009/01/24/rss-feed-moved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Del.icio.us dissappears from the feed</title>
		<link>http://www.tigraine.at/2008/07/04/delicious-dissappears-from-the-feed/</link>
		<comments>http://www.tigraine.at/2008/07/04/delicious-dissappears-from-the-feed/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 22:14:34 +0000</pubDate>
		<dc:creator>Daniel Hölbling</dc:creator>
				<category><![CDATA[Site-News]]></category>

		<guid isPermaLink="false">http://www.tigraine.at/2008/07/04/delicious-dissappears-from-the-feed/</guid>
		<description><![CDATA[After some thought I finally dragged myself to make a decision on the del.icio.us links in my RSS feed: I finally decided to remove the links from the feed, most of my del.icio.us links aren&#8217;t just that relevant to my blog posts that I really need to share them with you. If you still want [...]]]></description>
			<content:encoded><![CDATA[<p>After some thought I finally dragged myself to make a decision on the <a href="http://del.icio.us/Tigraine">del.icio.us links</a> in my <a href="http://feeds.feedburner.com/Tigraine">RSS feed</a>:</p>
<p>I finally decided to remove the links from the feed, most of my del.icio.us links aren&#8217;t just that relevant to my blog posts that I really need to share them with you.    <br />If you still want to recieve my del.icio.us links you can simply subscribe to my <a href="http://feeds.delicious.com/rss/Tigraine">del.icio.us feed</a> or add me to your network in del.icio.us.     <br />Another way to stay informed on my del.icio.us (and all my other activities, wether you like it or not *gg*) would be to simply follow me on <a href="http://friendfeed.com/tigraine">friendfeed</a> (although I still haven&#8217;t really grasped the concept of the site).</p>
<p>Hope the feed just got more enjoyable for you <img src='http://www.tigraine.at/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigraine.at/2008/07/04/delicious-dissappears-from-the-feed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Major site rehaul</title>
		<link>http://www.tigraine.at/2008/06/05/major-site-rehaul/</link>
		<comments>http://www.tigraine.at/2008/06/05/major-site-rehaul/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 17:38:10 +0000</pubDate>
		<dc:creator>Daniel Hölbling</dc:creator>
				<category><![CDATA[Site-News]]></category>

		<guid isPermaLink="false">http://www.tigraine.at/2008/06/05/major-site-rehaul/</guid>
		<description><![CDATA[After doing yesterday&#8217;s post on CruiseControl.NET it bit me that I really really needed a new theme for my blog. Posting sourcecode on a constrained surface doesn&#8217;t really work, and after seeing the XML posted yesterday I decided I need to do something about it. So I went to themes.wordpress.net and found the theme you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tigraine.at/wp-content/uploads/2008/06/wordpress.jpg"><img border="0" alt="wordpress" src="http://www.tigraine.at/wp-content/uploads/2008/06/wordpress-thumb.jpg" width="186" height="52" /></a></p>
<p>After doing yesterday&#8217;s post on CruiseControl.NET it bit me that I really really needed a new theme for my blog. Posting sourcecode on a constrained surface doesn&#8217;t really work, and after seeing the XML posted yesterday I decided I need to do something about it.</p>
<p>So I went to <a href="http://themes.wordpress.net">themes.wordpress.net</a> and found the theme you are currently looking at. It&#8217;s nothing really special, but I like the clean look and it has no fixed width. The theme came with no widget support so I followed this <a href="http://www.blogherald.com/2007/05/17/enabling-sidebar-widgets-for-your-wordpress-theme/">handy guide</a> and hacked them into the theme myself. It really isn&#8217;t that hard after all, although I found this php-html mix quite disturbing.</p>
<p>After being done with the new design, I decided that source is horribly unreadable, and I&#8217;m not really happy with my previous solution of doing screenshots (not indexable, not copyable). So I found this really cool <a href="http://code.google.com/p/syntaxhighlighter/">JavaScript library</a> by Alex Gorbatchev called SyntaxHighlighter that highlights &lt;pre&gt; tags and adds some very nice formatting to your code.     <br />Here&#8217;s an example:</p>
<pre name="code" class="c-sharp">static class Program
  &#160;&#160;&#160; {
  &#160;&#160;&#160;&#160;&#160;&#160;&#160; /// &lt;summary&gt;
  &#160;&#160;&#160;&#160;&#160;&#160;&#160; /// The main entry point for the application.
  &#160;&#160;&#160;&#160;&#160;&#160;&#160; /// &lt;/summary&gt;
  &#160;&#160;&#160;&#160;&#160;&#160;&#160; [STAThread]
  &#160;&#160;&#160;&#160;&#160;&#160;&#160; static void Main()
  &#160;&#160;&#160;&#160;&#160;&#160;&#160; {
  &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Application.EnableVisualStyles();
  &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Application.SetCompatibleTextRenderingDefault(false);
  &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Application.Run(new Form1());
  &#160;&#160;&#160;&#160;&#160;&#160;&#160; }
  &#160;&#160;&#160; }</pre>
<p>
  <br />And while being at it I also updated to the most current version of WordPress. So if you encounter any oddities (especially with the feed), please tell me about it so I can fix it.</p>
<p>Oh and by the way, while being at it I installed <a href="http://iwphone.contentrobot.com/">iWPhone</a> so that any user who visits <a href="http://tigraine.at">http://tigraine.at</a> with an iPhone or iPod touch will get a stripped down site without too much clutter that&#8217;s been optimized for the iPhone resolution. Images get removed from the front-page but everything still looks cool. <img src='http://www.tigraine.at/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigraine.at/2008/06/05/major-site-rehaul/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New RSS Feed!</title>
		<link>http://www.tigraine.at/2008/01/02/new-rss-feed/</link>
		<comments>http://www.tigraine.at/2008/01/02/new-rss-feed/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 03:53:44 +0000</pubDate>
		<dc:creator>Daniel Hölbling</dc:creator>
				<category><![CDATA[Site-News]]></category>
		<category><![CDATA[FeedBurner]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://www.tigraine.at/2008/01/02/new-rss-feed/</guid>
		<description><![CDATA[One thing that was on my checklist for some months now was getting my RSS Syndication right. I was thinking about using Feedburner before, but stuck to the WordPress default Syndication, believing that the WordPress built-in Feed could do just as good. I was obviously wrong and finally corrected this mistake today and did set [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.feedburner.com"><img border="0" width="166" src="http://www.tigraine.at/wp-content/uploads/2008/01/feedburner.jpg" alt="feedburner" height="56" style="border-width: 0px" /></a></p>
<p>One thing that was on my checklist for some months now was getting my RSS Syndication right.</p>
<p>I was thinking about using Feedburner before, but stuck to the WordPress default Syndication, believing that the WordPress built-in Feed could do just as good.</p>
<p>I was obviously wrong and finally corrected this mistake today and did set up my <a href="http://feeds.feedburner.com/Tigraine">new FeedBurner feed</a>!</p>
<p>By clicking on the new Link in the sidebar you will find the new Feed that will not only syndicate this Blog and it&#8217;s posts, but also my <a href="http://www.tigraine.at/wp-admin/del.icio.us%20Links">del.icio.us Links</a>.</p>
<p>For all people who where using my old RSS Feed<strong> please update your subscription</strong> to the new URL.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigraine.at/2008/01/02/new-rss-feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changes incoming!</title>
		<link>http://www.tigraine.at/2008/01/02/changes-incoming/</link>
		<comments>http://www.tigraine.at/2008/01/02/changes-incoming/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 03:22:49 +0000</pubDate>
		<dc:creator>Daniel Hölbling</dc:creator>
				<category><![CDATA[Site-News]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://www.tigraine.at/2008/01/02/changes-incoming/</guid>
		<description><![CDATA[As some of you may have noticed, I recently started to use this blog to share some of my views on C# programming topics and wrote those posts in English. I chose English instead of German because obviously everything I am reading on those topics is kept in English (just browse my Blogroll and you&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>As some of you may have noticed, I recently started to use this blog to share some of my views on C# programming topics and wrote those posts in English.</p>
<p>I chose English instead of German because obviously everything I am reading on those topics is kept in English (just browse my Blogroll and you&#8217;ll see what I mean).<br />
Now that I recently realized that buying my technical books from Amazon.com saves me quite a penny over doing so at Amazon.de, I am literally breathing articles in English.<br />
I also had to realize that while being (somehow) perfectly fluent in English while talking and reading, my written skills seem to have deteriorated.<br />
This is something I really hope to be able to improve through this blog and work.</p>
<p>So, apparently this will be the first change: <strong>All future posts will be written in (more or less good) English.</strong></p>
<p>I am currently trying to clean up the site, meaning that I will re-think Categories and Tags to fit.</p>
<p>I am also planning to focus a bit more on software development and .NET programming. So expect more on-topic and less off-topic posts in the future.</p>
<p>This is just one of many changes I currently plan to execute over the next weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigraine.at/2008/01/02/changes-incoming/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Seiten Update</title>
		<link>http://www.tigraine.at/2007/11/20/seiten-update/</link>
		<comments>http://www.tigraine.at/2007/11/20/seiten-update/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 21:37:22 +0000</pubDate>
		<dc:creator>Daniel Hölbling</dc:creator>
				<category><![CDATA[Site-News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Tags]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.tigraine.at/2007/11/20/seiten-update/</guid>
		<description><![CDATA[Nun, auch wenn ich mit dem neuen Template für die Seite nicht weiterkomme, ein neues Plugin habe ich dann aber doch noch installieren können. Jeder Post kriegt nun Tags und diese werden auch in einer Tag-Cloud organisiert. Anhand der Tags werden auch zu jedem Post ähnliche Artikel angeboten. Der WordPress Plugin der das ganze ermöglicht [...]]]></description>
			<content:encoded><![CDATA[<p>Nun, auch wenn ich mit dem neuen Template für die Seite nicht weiterkomme, ein neues Plugin habe ich dann aber doch noch installieren können.</p>
<p>Jeder Post kriegt nun Tags und diese werden auch in einer Tag-Cloud organisiert.<br />
Anhand der Tags werden auch zu jedem Post ähnliche Artikel angeboten.</p>
<p>Der WordPress Plugin der das ganze ermöglicht heißt <a href="http://www.herewithme.fr/wordpress-plugins/simple-tags">Simple-Tags</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tigraine.at/2007/11/20/seiten-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

