<?xml version="1.0" encoding="ISO-8859-1"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:ref="http://purl.org/rss/1.0/modules/reference/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/">
	<channel rdf:about="http://blog-martin-enders-de/rss.rdf">
		<title>Martins dies und das - blog.martin-enders.de</title>
		<link>http://blog-martin-enders-de/index.php</link>
		<description><![CDATA[Copyright (c) 2011 by Martin Enders]]></description>
		<items>
			<rdf:Seq>
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry110208-131019" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry100826-201133" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry100720-105303" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry080507-235714" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry080326-200154" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry080228-225406" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry080205-221538" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry080203-152543" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry080203-004107" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry080201-013204" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry080130-200353" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry080128-233649" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry080122-200218" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry080117-220349" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry080104-170015" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry071220-213516" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry071007-173440" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry071005-141539" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry061121-205815" />
				<rdf:li resource="http://blog-martin-enders-de/index.php?entry=entry060829-205943" />
			</rdf:Seq>
		</items>
	</channel>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry110208-131019">
		<title>Convert pixelbased images to eps</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry110208-131019</link>
		<description><![CDATA[<img src="images/PostScript.png" width="42" height="171" border="0" alt="" id="img_float_right" />I was looking for the best way to convert pixelbased images to .eps fileformat to use them in my documents created with LaTeX. The problem was that the eps-files where always very big (from 40kB jpg to 4MB eps).<br /><br />At first I found  <a href="http://www.pdflib.com/download/free-software/jpeg2ps/" target="_blank" >jpeg2ps</a> which produces eps files in eps version 2 or 3.<br /><br />Beginning with the second version of PostScript (PS) the PS-Interpreter can render jpeg-images which are contained in ps-files.<br /><br />So the easiest way I found was to use &#039;convert&#039; which should be available on the most GNU/Linux Systems.<br /><br /><pre><code>convert test.jpg eps3:test.eps</code></pre><br />note the &#039;eps3:&#039; at the beginning of the output file.<br /><br />This produces eps-files which are just minimal bigger the the original jpg-file.]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry100826-201133">
		<title>CL-JSON</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry100826-201133</link>
		<description><![CDATA[<img src="images/common-lisp.png" width="51" height="231" border="0" alt="" id="img_float_right" />I used  <a href="http://common-lisp.net/project/cl-json/" >CL-JSON</a> to implement an JSON-REST-Server (but in fact I&#039;ve stolen most of the Code from my dad - thank you very much) for the Dojo  <a href="http://docs.dojocampus.org/dojox/data/JsonRestStore" >JsonRestStore</a> and it converts the CLOS-Objects pretty good to Json-Objects and the other way round.<br /><br />IDEA: Use CL-JSON as an easy Objectpersistence Tool.]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry100720-105303">
		<title>Convert HTML input elements to text with Firefox and Firebug</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry100720-105303</link>
		<description><![CDATA[<img src="images/JavaScript.png" width="42" height="172" border="0" alt="" id="img_float_right" />I wrote this small script to convert all buttons in a HTML-table into text.<br /><br /><pre>
var inputs = $$("input");
console.log("Before: " + inputs.length)

for(i = 0; i&lt;inputs.length; i++)
{
    try{
        if(inputs<i>.getAttribute("type") == "hidden"){
            inputs<i>.parentNode.removeChild(inputs<i>);
        }
    }catch(e){
        console.log(e);
    }       
}

inputs = $$("input");
console.log("Afterwards: " + inputs.length)


for(i = 0; i&lt;inputs.length; i++)
{
    try{
        inputs<i>.parentNode.innerHTML = inputs<i>.getAttribute("value");
    }
    catch(e){
        console.log(e);
    }
}
</pre><br /><br /><br /><br /><a href="http://getfirebug.com/" target="_blank" >http://getfirebug.com/</a><br /><a href="http://getfirefox.com" target="_blank" >http://getfirefox.com</a><br /><br />EDIT:<br />I made two mistakes within the markup the &#039;&lt;&#039; was interpreted as an beginning HTML-tag, so it messed up the Javascript Code.]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry080507-235714">
		<title>Intel SpeedStep Article</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry080507-235714</link>
		<description><![CDATA[<img src="images/speedstep.png" width="42" height="435" border="0" alt="" id="img_float_right" />Today I need this article about SpeedStep with Linux from the Intel site (I mentiond it already on my NX7000 Notebook site).<br />This is an really great source:<br /><a href="http://softwarecommunity.intel.com/articles/eng/1611.htm" target="_blank" >http://softwarecommunity.intel.com/arti ... g/1611.htm</a><br /><br />I often need the commands to force my CPU to go down to 600MHz because sometimes my laptop is running without a reason with 1600MHz which makes my fan running all the time and that is really annoying.<br /><br /><hr><br />By the way, my laptop died yesterday - I&#039;m currently using my dad&#039;s laptop wich is the same model as mine so I had just switch the harddrive to bring up my system again.<br /><br />When I was in University yesterday I started my laptop and the display flared - I thought it is flaring because I made a suspend to disk before (sometimes the display shows curious output for one or two seconds if I&#039;m booting my computer after a powersave -U). So I removed the battery and restarted the machine but there happend just nothing - no display, no harddrive access ... NOTHING.<br /><br />So I gave the laptop to the repair center of electronic market and now I hope that they can repair this defect.<br /><br />Good Night (in Germany)<br />Martin]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry080326-200154">
		<title>Valid HTML and CSS on martin-enders.de</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry080326-200154</link>
		<description><![CDATA[<img src="images/martin-enders.de.png" width="42" height="270" border="0" alt="" id="img_float_right" />I validated my sites on martin-enders.de today with the W3C HTML and CSS validator. I was surprised of the amount of mistakes I made while writing HTML and CSS. There haven&#039;t been too much and if there were more then two or three mistakes they have been systematically and easy to correct.<br /><br />I have some sites which are difficult to integrate in my current layout because there would be a lot of CSS conflicts. This sites are not validated until now.<br /><br />The next step is to correct the bad HTML of this blog. For example the most styles are assigned with the ID HTML-attribute.<br /><br />]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry080228-225406">
		<title>CL-Webframework</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry080228-225406</link>
		<description><![CDATA[<img src="images/common-lisp.png" width="51" height="231" border="0" alt="" id="img_float_right" />I fetched up the idea of the CL-Webframework mentiond three postst before. I tried to implement an prototype in PHP because this server is a virtual machine and I have some problems to install SBCL.<br /><br />But the Problem was that I have to deal quite fast with technical restrictions of PHP. That means that I have to think to much about the language itself and if you are a programming-rookie like me it&#039;s not so easy to keep track of all these language restrictions. In this way for me it is easier to write in lisp.<br /><br />I have a little bit expirience with Edmund Weitz&#039; <a href="http://weitz.de/hunchentoot" target="_blank" >hunchentoot</a> HTTP-Server and I think I can do it easyer with such an setup.<br /><br />I hope I&#039;ll can work a little bit on this small project the next time.<br /><br />PS:<br />My concept of the Framework is not much more like the dispatcher of hunchentoot but I like some more functions which are more specific to web publishing which makes content-providing more flexible and easier to use.<br />I think the way I&#039;d like to go is to provide an more abstract layer for the dispatcher of hunchentoot which maps the ideas and concepts of Publishing Documents in the Web to an Server.]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry080205-221538">
		<title>Create fancy text images with convert (imagemagick)</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry080205-221538</link>
		<description><![CDATA[<img src="images/fancy-text.png" width="42" height="162" border="0" alt="" id="img_float_right" />Today I made a little shell script to create the text-logos like the &#039;fancy text&#039; image in this entry.<br /><br /><br /><code>convert -fill &#039;rgb(128,128,128)&#039; -background transparent -font FONT.TTF -pointsize 50 label:&quot;EXAMPLE TEXT&quot; -rotate 90 OUTPUT_FILE</code><br /><br /><pre>
-fill        Color in rgb notation
-background  Background color (here transparent background)
-font        ttf-file (I think you can also use a system font).
-pointsize   size of the text
-label:""    Text which appears in the image
-rotate      Rotate the image
-OUTPUT_FILE filename of the output file
             (here png because I use a transparent background)
</pre><br /><br />Source: <a href="http://imagemagick.org/script/command-line-tools.php" target="_blank" >http://imagemagick.org/script/command-line-tools.php</a>]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry080203-152543">
		<title>Entry ratings through search engine</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry080203-152543</link>
		<description><![CDATA[<img src="images/happy-bloging.png" width="42" height="264" border="0" alt="" id="img_float_right" />The most of the previous entries are rated with 3 and have 5 ratings.<br />I think thats because a search engine was crawling over this blog and opend every rating link.<br /><br />I hope that the following <a href="/robots.txt" target="_blank" >robots.txt</a> can fix this problem:<br /><br /><code>User-agent: *<br />Disallow: rate_cgi.php</code><br /><br />PS: In the first moment I was wondering if there has been somebody on my blog and rated articles  <img src="interface/emoticons/raspberry.png" alt=":-P" />.<br /><br />It seems that the robots.txt is not working. Maybe there is a conflict with the following meta-tags:<br /><code>&lt;!-- Robots --&gt;<br />&lt;meta name=&quot;robots&quot; content=&quot;ALL,INDEX,FOLLOW,ARCHIVE&quot; /&gt;<br />&lt;meta name=&quot;revisit-after&quot; content=&quot;7 days&quot; /&gt;</code><br /><br />I decided to deactivate the rating functionality.]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry080203-004107">
		<title>Idea for CL-Webframework</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry080203-004107</link>
		<description><![CDATA[<img src="images/common-lisp.png" width="51" height="231" border="0" alt="" id="img_float_right" />The idea behind this framework ist that all sites are made of any number of content blocks which belong to an URL.<br />So the content blocks are mapped to an URL<br /><code>(URL (Content-I Content-II))</code><br /><br />An Example:<br /><code>Content Block I<br />-------<br />| abc |<br />-------<br /><br />Content Block II<br />-------<br />| def |<br />-------</code><br /><br />Block I and II are bound to serverrelativ URL <code>/content</code><br /><code>(:/content (&quot;Content Block I&quot; &quot;Content Block II&quot;))</code><br />http://www.martin-enders.de/content leads to a page like this:<br /><br /><pre>
/-page----------\
&#124;               &#124;
&#124;   -------     &#124;
&#124;   &#124; abc &#124;     &#124;
&#124;   -------     &#124;
&#124;   -------     &#124;
&#124;   &#124; def &#124;     &#124;
&#124;   -------     &#124;
&#124;_ _ _ _ _ _ _ _&#124;
</pre><br /><br /><h1>Idea</h1><br />The idea behind this framework is that you can map differnt content blocks to an url.<br /><br /><h1>Problems / Questions</h1><br />How should sites be treated when you use special functionality. Is in content blocks just HTMl allowed or should it be possible to integrate lisp into the pages?<br />The content Blocks are integrated in an layout so the HTML in the content block is just a part between the &lt;body&gt; and &lt;/body&gt; tag. If you need an extra css file you have to be enabled to integrate an special tag to integrate additional information into the HTML head.<br /><br />But all these workarounds lead to inconsistencies in the framework - it seems that it&#039;s not a good design now.<br /><br /><h1>Conceptual Lisp Dispatcher:</h1><br /><pre>(defvar *dispatch*)
(setf *dispatch* &#039;(:/       ("index")
		   :/web    ("web")
		   :/css    ("css2" "css3")))

(defun get-content(content-block)
  content-block)

(defun render-content(content)
  (format t "~a" content))

(defun dispatcher(script-name)
  "This function takes a string as argument 
   and converts it into an keyword for 
   comparison with the url&#039;s in *dispatch*"
  (let* ((request (intern (string-upcase script-name) "KEYWORD"))
	 (content (getf *dispatch* request)))
    (dolist (content-block content)
      (render-content (get-content content-block)))
    request))</pre><br /><h1>Conclusion</h1><br />I&#039;d like to have a small consistent framework for publishing in the web. But the current state of this idea has to many inconsistences.]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry080201-013204">
		<title>New home for my blog</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry080201-013204</link>
		<description><![CDATA[<img src="images/martin-enders.png" width="150" height="200" border="0" alt="" id="img_float_right" />Currently I&#039;m at work to provide my site a new (better) home. The server is working so far  (apache2 and php) but e.g. mail isn&#039;t configured.<br /><br />I&#039;d like to convert the static pages of this blog to html-pages and publish them under <a href="http://www.martin-enders.de" >www.martin-enders.de</a> - because they don&#039;t need any dynamically created content so there is no reason to manage them with a blog system.<br /><br /><div style="clear: both"></div><hr><hr><b>From here to the future this blog has a new home at blog.martin-enders.de.<br />The former blog at mitglied.lycos.de/oberweissenbach/blog is no longer active.</b><hr><hr>]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry080130-200353">
		<title>New Webspace</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry080130-200353</link>
		<description><![CDATA[<img src="images/martin-enders.png" width="150" height="200" border="0" alt="" id="img_float_right" />I orderd today an virtual server from  <a href="http://www.strato.de/v-power/index.html" target="_blank" >strato</a>.<br />I have choosen an virtual server because they are not as expensive as dedicated servers. I think for my small applications even a virtual machine is oversized.<br />My new server will be reachable over the martin-enders.de domain.<br /><br />I like to set up wordpress for publishing things. One Problem is how to add this entries in a new wordpress installation. The easiest way is maybe to move this complete blog to a new home and link to it.<br /><br />Now I&#039;m really curious about this v-server.<br />I have to make some new pictures because the pictures of this and the last entry are not relating to the content of them.<br /><br />]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry080128-233649">
		<title>Structure of Content</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry080128-233649</link>
		<description><![CDATA[<img src="images/Mjoelnir.jpg" width="195" height="198" border="0" alt="" id="img_float_right" />&lt;loose thinking&gt;<br />Recently I found a new old website of me but this site by itself is a site which includes an older site of me. <br />So I&#039;m glad that the contet I produced isn&#039;t lost but now I think that all this content should be structured.<br />The Problem is I don&#039;t know how to structure it. Should I convert all text-sites into content management system, or should I use wordpress as a combination of Blog and static sites. Or should I write a System by myselef.<br />I have really no idea....<br />The main problem is maybe that I don&#039;t know what I really want to do with my web-site.<br />Sometimes I&#039;d like to provide interresting things I&#039;m working on and sometimes I&#039;d like to have a playground.<br /><br />I&#039;m going to be totally confused  <img src="interface/emoticons/raspberry.png" alt=":-P" />.<br /><br />Maybe I should smash all that old shit to bits (with Thors hammer Mjölnir (-; ) and start with a new small well designed and structured page.<br />&lt;/loose thinking&gt;]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry080122-200218">
		<title>A-Team Fanfiction - Convert people into A-Team fans</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry080122-200218</link>
		<description><![CDATA[<img src="images/ateam.gif" width="250" height="167" border="0" alt="" id="img_float_right" />I found this amazing site (<a href="http://www.ateamfanfic.org" target="_blank" >ateamfanfic.org</a>) at <a href="http://www.ateamresource.de" target="_blank" >ateamresource.de</a>.<br /><br />I have two colleagues studying with me, who didn&#039;t know THE A-TEAM at all. At first I can&#039;t belive it but now I can (ab)use them for a test (-; .<br /><br /><blockquote><b>10 ways to convert people into A-Team fans<br />by Hannurdock</b><br /><br />*Giggle* - I&#039;m tired, and this is the kind of weird thing I do when I am over-tired. Here&#039;s to the weekend !!! *Raising beer at 2.00 in the morning*<br /><br />SCENARIO: OK, so your friend is not exactly an A-Team enthusiast. She hates the team, and your job is to convert. *giggle*<br /><br />1. Hum the A-Team theme tune whenever you are around the AA Friend (Against A-Team). Eventually, whether she knows it or not she&#039;ll start humming it too. A catchy tune always catches them out.<br /><br />2. Have an evening at home playing board games. Put a few episodes of the A-Team on the box. Play the game for hours, being as boring as possible. Eventually she will turn her eyes for entertainment towards the TV, and wham, got her.<br /><br />3. Ask her opinions every minute on if she thinks Face is good looking. Show pictures, with him smiling broadly. If that doesn&#039;t work, nothing will.<br /><br />4. Infect her Furby with A-Team words - like &#039;I love it when a plan comes together&#039;, &#039;and on the jazz&#039;. The principle being simple, Furby owners love their pretend pets so much, they DO start to talk like them. (Believe me I know, I have two).<br /><br />5. Comment on every movie with an A-Team slant. Like, oh isn&#039;t Aliens a good film. Yeah, but wouldn&#039;t Hannibal be an ideal choice instead of Hicks. More leadership experience, after all.<br /><br />6. Ask her opinions on the war in Vietnam. Then spend five hours explaining how the team knocked over the Bank of Hanoi and got caught 50 clicks from Denang.<br /><br />7. Smoke cigars in her prescence. When asked to put it out, chew off the end and spit it on her shoe.<br /><br />8. Steal a straight jacket, put her in it and leave her with the television set doing a marathon of 10 ateam episodes. If nothing else, at least she&#039;ll act like Murdock when she&#039;s freed.<br /><br />9. Create an A-Team computer virus especially for her machine. Have Hannibal snickering in the background, and BA telling her to SHUT UP, FOOL! would be extremely amusing, and also send her insane.<br /><br />10. Last, but certainly not least, introduce her to the fanfic at the VA Canteen.<br /><br />Well, that&#039;s it. If your friend is not seriously insane or salivating like a mad woman once your done, you may have scored a winner !!<br /><br />Either that, or just throw her in the VA in a straight jacket !!!<br /><br />Hannurdock<br />(Smiling wickedly)  <br /></blockquote><br />Source: <a href="http://www.ateamfanfic.org/read.php?&amp;sku=103" target="_blank" >http://www.ateamfanfic.org/read.php?&amp;sku=103</a>]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry080117-220349">
		<title>THW - Tödlicher Einsatzunfall in Sachsen-Anhalt</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry080117-220349</link>
		<description><![CDATA[<img src="images/thw-logo.png" width="193" height="78" border="0" alt="" id="img_float_right" /><blockquote>„Die Angehörigen der Bundesanstalt THW im Ehren- und Hauptamt sind bestürzt. Unser Mitgefühl gilt der Familie und den Kameraden des Opfers“, sagte THW-Präsident Albrecht Broemme, als er vom tragischen Ausgang dieses Einsatzes erfuhr.<br /></blockquote><br />Quelle: <a href="http://www.thw.bund.de/cln_035/nn_244766/DE/content/meldungen/thw__im__inland/pressemitteilungen/2008/01/meldung__001__Halle.html__nnn=true" target="_blank" >Quelle: THW Pressemitteilungen</a><br /><br />Dem moechte ich mich natuerlich anschliessen.<br /><br /> ]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry080104-170015">
		<title>Dakar 2008 canelled</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry080104-170015</link>
		<description><![CDATA[<img src="images/dakar.png" width="117" height="116" border="0" alt="" id="img_float_right" /><br /><blockquote>Lisbon, Friday the 4th of January 2008<br />A.S.O. cancels the 2008 edition of the Dakar rally<br /><br />After different exchanges with the French government - in particular the Ministry for Foreign Affairs - , and based on their firm recommendations, the organisers of the Dakar have taken the decision to cancel the 2008 edition of the rally, scheduled from the 5th to the 20th of January between Lisbon and Senegal’s capital.<br /><br />Based on the current international political tension and the murder of four French tourists last 24th of December linked to a branch of Al-Qaeda in Islamic Maghreb, but also and mainly the direct threats launched directly against the race by terrorist organisations, no other decision but the cancellation of the sporting event could be taken by A.S.O.<br /><br />A.S.O.’s first responsibility is to guarantee the safety of all: that of the populations in the countries visited, of the amateur and professional competitors, of the technical assistance personnel, of the journalists, partners and rally collaborators. A.S.O. therefore reaffirms that the choice of security is not, has never been and will never be a subject of compromise at the heart of the Dakar rally.<br /><br />A.S.O. condemns the terrorist menace that annihilates a year of hard work, engagement and passion for all the participants and the different actors of the world’s biggest off-road rally. Aware of the huge frustration, especially in Portugal, Morocco, Mauritania and Senegal, and beyond the general disappointment and the huge economical consequences in terms of direct and indirect repercussions for the countries visited, A.S.O. will continue to defend the major values of great sporting events and will carry on its engagement for a durable development through the Actions Dakar, started 5 years ago in sub-Saharan Africa with SOS Sahel International.<br /><br />The Dakar is a symbol and nothing can destroy symbols. The cancellation of the 2008 edition does not endanger the future of the Dakar. To offer, for 2009 a new adventure to all the off-road rally passionate is a challenge that A.S.O. will take on in the months to come, faithful to its engagement and its passion for sports.</blockquote><br />Source:  <a href="http://www.dakar.com/indexus.html" target="_blank" >http://www.dakar.com/indexus.html</a>]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry071220-213516">
		<title>Mr. T and World of Warcraft</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry071220-213516</link>
		<description><![CDATA[Mr. T in a World of Warcraft Commercial at Youtube:<br /><br /><br /><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/LLlCfC0bu6Q&rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/LLlCfC0bu6Q&rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>
<br /><br /><br />Edit (2008-01-04): I hope still that sometimes there&#039;ll be an A-Team movie.]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry071007-173440">
		<title>Debian init scripts</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry071007-173440</link>
		<description><![CDATA[<img src="images/openlogo-nd-50.png" width="50" height="61" border="0" alt="" id="img_float_right" /> <a href="http://www.debian-administration.org/articles/28" target="_blank" >Making scripts run at boot time with Debian</a><br /><br />Good HowTo about creating Startupscripts for Debian.]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry071005-141539">
		<title>Setting up Debian on a HP-NX7000</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry071005-141539</link>
		<description><![CDATA[<img src="images/openlogo-nd-50.png" width="50" height="61" border="0" alt="" id="img_float_right" />I moved the blog entry about the Debiansetup an my Laptop to a static page in this blog.<br />See <a href="static.php?page=hp-nx7000-debian-setup" >here</a>.]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry061121-205815">
		<title>martin-enders.de unavailable</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry061121-205815</link>
		<description><![CDATA[<img src="images/martin-enders-unavailable.png" width="150" height="200" border="0" alt="" id="img_float_right" />The domain martin-enders.de inclusive the mentioned sub-domains in the old <a href="index.php?entry=entry060216-194054" >post</a> are not available longer. The provider <a href="http://www.freedoms.de" >freedoms.de</a> provides no longer cost-free domain hosting.<br /><br />I&#039;m not willing to pay for this domain because we got the enders.name domain, perhaps I&#039;ll set up something like martin.enders.name in future.]]></description>
	</item>
	<item rdf:about="http://blog-martin-enders-de/index.php?entry=entry060829-205943">
		<title>RegEx</title>
		<link>http://blog-martin-enders-de/index.php?entry=entry060829-205943</link>
		<description><![CDATA[<img src="images/RegEx.png" width="40" height="127" border="0" alt="" id="img_float_right" />I learnd some RegEx the last few days.<br />It is really cool, I used it to convert .cvs files in html-tables.<br /><br />At the first shot I used a macro in emacs to convert the comma-divided cvs in html.<br />But dad told me how I can do this with repalce-regex in emacs.<br /><br />The list:<br /><pre>foo,boo<br />boo,foo</pre><br />The Output I&#039;d like to have:<br /><pre>&lt;tr&gt;&lt;td&gt;foo&lt;/td&gt;&lt;td&gt;boo&lt;/td&gt;&lt;/tr&gt;<br />&lt;tr&gt;&lt;td&gt;boo&lt;/td&gt;&lt;td&gt;foo&lt;/td&gt;&lt;/tr&gt;</pre><br />The RegEx:<pre>Replace: ^\([^,]*\),\(.*\) with: &lt;tr&gt;&lt;td&gt;\1&lt;/td&gt;&lt;td&gt;\2&lt;/td&gt;&lt;/tr&gt;</pre><br /><br />This is my first big Regular Expression.<br /><br />I found much useful things at:  <a href="http://www.gnu.org/software/emacs/#Manuals" >http://www.gnu.org/software/emacs/#Manuals</a>]]></description>
	</item>
</rdf:RDF>
