<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:georss="http://www.georss.org/georss" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" version="2.0">
  <channel>
    <title>Pixelplastic</title>
    <link>http://pixelplastic.de/</link>
    <description>The blog of Marcel Hoyer</description>
    <image>
      <url>http://www.pixelplastic.de/images/_ChannelImage.jpg</url>
      <title>Pixelplastic</title>
      <link>http://pixelplastic.de/</link>
    </image>
    <language>en-us</language>
    <copyright>Marcel Hoyer</copyright>
    <lastBuildDate>Sun, 29 Aug 2010 11:11:54 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.3.9074.18820</generator>
    <managingEditor>mhoyer@pixelplastic.de</managingEditor>
    <webMaster>mhoyer@pixelplastic.de</webMaster>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=81116875-f0f9-4a7b-9912-5c5683bf5a6b</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,81116875-f0f9-4a7b-9912-5c5683bf5a6b.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,81116875-f0f9-4a7b-9912-5c5683bf5a6b.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=81116875-f0f9-4a7b-9912-5c5683bf5a6b</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <strong>Update:</strong>
          <i>
            <a href="http://therightstuff.de">Alex</a> remembered
the add-in I ment: <a href="http://home.in.tum.de/%7Ejain/software/outlook-quotefix/">QuoteFix</a>.
Due to incompatibility issues with nowadays Outlook versions the guys published a
VBA script doing mostly the same as the older add-in. Alex did some fine tuning on
their script and applied parts of my snippet. Try his <a href="http://gist.github.com/559184">gist</a> to
get the best of both (mine and QuoteFix). Works like a charm for me.</i>
        </p>
        <p>
When using Outlook to send/receive emails you usually press the reply (or reply all,
forward) button to send back an answer. This works like a charm if the email you want
to reply to was sent in plain text and you have the "line indention with prefix" option
enabled in the Outlook settings.
</p>
        <p>
          <a href="http://pixelplastic.de/content/binary/WindowsLiveWriter/OutlookReplytoHTMLemailswithplaintext_ACD2/20100829-11-52-21_2.png" rel="lightbox[20100829]">
            <img style="border-width: 0px;" alt="20100829-11-52-21" src="http://pixelplastic.de/content/binary/WindowsLiveWriter/OutlookReplytoHTMLemailswithplaintext_ACD2/20100829-11-52-21_thumb.png" border="0" height="350" width="500" />
          </a>
        </p>
        <p>
Thus commenting the received email is pretty easy. Obviously there is no option to
configure Outlook to reply to a HTML/RichText message with a plain text email too.
So replying to such formatted mails with the "line indention with prefix" option enabled
looks like this:
</p>
        <p>
          <a href="http://pixelplastic.de/content/binary/WindowsLiveWriter/OutlookReplytoHTMLemailswithplaintext_ACD2/20100829-12-03-00_2.png" rel="lightbox[20100829]">
            <img style="border-width: 0px;" alt="20100829-12-03-00" src="http://pixelplastic.de/content/binary/WindowsLiveWriter/OutlookReplytoHTMLemailswithplaintext_ACD2/20100829-12-03-00_thumb.png" border="0" height="350" width="500" />
          </a>
        </p>
        <p>
If you now try to write inline comments it is IMHO really hard for the recipient to
find those in your reply. One might say: you can convert the reply message to plain
text. Yes you can! But this won't convert the silly blue line into '&gt;' prefixes.
So I was looking for an add-in to solve this problem. I thought there was one I used
in earlier Outlook versions, but couldn't find it anymore. After boongleing for an
hour I decided to implement this using VBA. This is the result:
</p>
        <pre class="brush: vb">
Enum AnswerType
    Forward = 0
    Reply = 1
    ReplyAll = 3
End Enum

Function DisplayPlainTextMessage(msg As MailItem, addPrefix As Boolean)
  Dim prefix As String
  If addPrefix = True Then prefix = "&gt; "
  
  msg.BodyFormat = olFormatPlain
  
  Dim lines() As String
  lines = Strings.Split(msg.body, vbCrLf)
  
  Dim newBody As String
  For i = 0 To UBound(lines)
    If Trim(lines(i)) = "--" Then GoTo Break
    newBody = newBody &amp; prefix &amp; Trim(lines(i)) &amp; vbCrLf
  Next
  
Break:
  msg.body = newBody
  msg.Display
End Function

Function SendAsPlainText(how As AnswerType)
  On Error GoTo ErrorHandler

  Dim msg As Outlook.MailItem
  Set msg = GetMailItem

  If msg Is Nothing Then
    MsgBox ("No message selected.")
    GoTo ProgramExit
  End If
  
  Select Case how
    Case AnswerType.Forward
      Call DisplayPlainTextMessage(msg.Forward, msg.BodyFormat &lt;&gt; olFormatPlain)
    Case AnswerType.Reply
      Call DisplayPlainTextMessage(msg.Reply, msg.BodyFormat &lt;&gt; olFormatPlain)
    Case AnswerType.ReplyAll
      Call DisplayPlainTextMessage(msg.ReplyAll, msg.BodyFormat &lt;&gt; olFormatPlain)
  End Select

ProgramExit:
  Exit Function
ErrorHandler:
  MsgBox Err.Number &amp; " - " &amp; Err.Description
  Resume ProgramExit
End Function

Sub ForwardAsPlainText()
  Call SendAsPlainText(AnswerType.Forward)
End Sub

Sub ReplyAsPlainText()
  Call SendAsPlainText(AnswerType.Reply)
End Sub

Sub ReplyAllAsPlainText()
  Call SendAsPlainText(AnswerType.ReplyAll)
End Sub

Function GetMailItem() As Outlook.MailItem

  On Error Resume Next

  Select Case TypeName(Application.ActiveWindow)
    Case "Explorer"

      If TypeName(ActiveExplorer.Selection.Item(1)) = "MailItem" Then
        Set GetMailItem = ActiveExplorer.Selection.Item(1)
      End If

    Case "Inspector"

      If TypeName(ActiveInspector.CurrentItem) = "MailItem" Then
        Set GetMailItem = ActiveInspector.CurrentItem
      End If
  End Select
  On Error GoTo 0
End Function</pre>
        <p>
You can now modify your ribbon bar to add new buttons to the three subs ReplyAsPlainText,
ReplyAllAsPlainText, ForwardAsPlainText: 
</p>
        <p>
          <a href="http://pixelplastic.de/content/binary/WindowsLiveWriter/OutlookReplytoHTMLemailswithplaintext_ACD2/20100829-11-54-50_2.png" rel="lightbox[20100829]">
            <img style="border-width: 0px;" alt="20100829-11-54-50" src="http://pixelplastic.de/content/binary/WindowsLiveWriter/OutlookReplytoHTMLemailswithplaintext_ACD2/20100829-11-54-50_thumb.png" border="0" height="229" width="557" />
          </a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=81116875-f0f9-4a7b-9912-5c5683bf5a6b" />
      </body>
      <title>Outlook: Reply to HTML emails with plain text</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,81116875-f0f9-4a7b-9912-5c5683bf5a6b.aspx</guid>
      <link>http://pixelplastic.de/2010/08/29/OutlookReplyToHTMLEmailsWithPlainText.aspx</link>
      <pubDate>Sun, 29 Aug 2010 11:11:54 GMT</pubDate>
      <description>&lt;p&gt;
&lt;strong&gt;Update:&lt;/strong&gt; &lt;i&gt;&lt;a href="http://therightstuff.de"&gt;Alex&lt;/a&gt; remembered
the add-in I ment: &lt;a href="http://home.in.tum.de/%7Ejain/software/outlook-quotefix/"&gt;QuoteFix&lt;/a&gt;.
Due to incompatibility issues with nowadays Outlook versions the guys published a
VBA script doing mostly the same as the older add-in. Alex did some fine tuning on
their script and applied parts of my snippet. Try his &lt;a href="http://gist.github.com/559184"&gt;gist&lt;/a&gt; to
get the best of both (mine and QuoteFix). Works like a charm for me.&lt;/i&gt;
&lt;/p&gt;
&lt;p&gt;
When using Outlook to send/receive emails you usually press the reply (or reply all,
forward) button to send back an answer. This works like a charm if the email you want
to reply to was sent in plain text and you have the "line indention with prefix" option
enabled in the Outlook settings.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://pixelplastic.de/content/binary/WindowsLiveWriter/OutlookReplytoHTMLemailswithplaintext_ACD2/20100829-11-52-21_2.png" rel="lightbox[20100829]"&gt;&lt;img style="border-width: 0px;" alt="20100829-11-52-21" src="http://pixelplastic.de/content/binary/WindowsLiveWriter/OutlookReplytoHTMLemailswithplaintext_ACD2/20100829-11-52-21_thumb.png" border="0" height="350" width="500"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Thus commenting the received email is pretty easy. Obviously there is no option to
configure Outlook to reply to a HTML/RichText message with a plain text email too.
So replying to such formatted mails with the "line indention with prefix" option enabled
looks like this:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://pixelplastic.de/content/binary/WindowsLiveWriter/OutlookReplytoHTMLemailswithplaintext_ACD2/20100829-12-03-00_2.png" rel="lightbox[20100829]"&gt;&lt;img style="border-width: 0px;" alt="20100829-12-03-00" src="http://pixelplastic.de/content/binary/WindowsLiveWriter/OutlookReplytoHTMLemailswithplaintext_ACD2/20100829-12-03-00_thumb.png" border="0" height="350" width="500"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
If you now try to write inline comments it is IMHO really hard for the recipient to
find those in your reply. One might say: you can convert the reply message to plain
text. Yes you can! But this won't convert the silly blue line into '&amp;gt;' prefixes.
So I was looking for an add-in to solve this problem. I thought there was one I used
in earlier Outlook versions, but couldn't find it anymore. After boongleing for an
hour I decided to implement this using VBA. This is the result:
&lt;/p&gt;
&lt;pre class="brush: vb"&gt;
Enum AnswerType
    Forward = 0
    Reply = 1
    ReplyAll = 3
End Enum

Function DisplayPlainTextMessage(msg As MailItem, addPrefix As Boolean)
  Dim prefix As String
  If addPrefix = True Then prefix = "&amp;gt; "
  
  msg.BodyFormat = olFormatPlain
  
  Dim lines() As String
  lines = Strings.Split(msg.body, vbCrLf)
  
  Dim newBody As String
  For i = 0 To UBound(lines)
    If Trim(lines(i)) = "--" Then GoTo Break
    newBody = newBody &amp;amp; prefix &amp;amp; Trim(lines(i)) &amp;amp; vbCrLf
  Next
  
Break:
  msg.body = newBody
  msg.Display
End Function

Function SendAsPlainText(how As AnswerType)
  On Error GoTo ErrorHandler

  Dim msg As Outlook.MailItem
  Set msg = GetMailItem

  If msg Is Nothing Then
    MsgBox ("No message selected.")
    GoTo ProgramExit
  End If
  
  Select Case how
    Case AnswerType.Forward
      Call DisplayPlainTextMessage(msg.Forward, msg.BodyFormat &amp;lt;&amp;gt; olFormatPlain)
    Case AnswerType.Reply
      Call DisplayPlainTextMessage(msg.Reply, msg.BodyFormat &amp;lt;&amp;gt; olFormatPlain)
    Case AnswerType.ReplyAll
      Call DisplayPlainTextMessage(msg.ReplyAll, msg.BodyFormat &amp;lt;&amp;gt; olFormatPlain)
  End Select

ProgramExit:
  Exit Function
ErrorHandler:
  MsgBox Err.Number &amp;amp; " - " &amp;amp; Err.Description
  Resume ProgramExit
End Function

Sub ForwardAsPlainText()
  Call SendAsPlainText(AnswerType.Forward)
End Sub

Sub ReplyAsPlainText()
  Call SendAsPlainText(AnswerType.Reply)
End Sub

Sub ReplyAllAsPlainText()
  Call SendAsPlainText(AnswerType.ReplyAll)
End Sub

Function GetMailItem() As Outlook.MailItem

  On Error Resume Next

  Select Case TypeName(Application.ActiveWindow)
    Case "Explorer"

      If TypeName(ActiveExplorer.Selection.Item(1)) = "MailItem" Then
        Set GetMailItem = ActiveExplorer.Selection.Item(1)
      End If

    Case "Inspector"

      If TypeName(ActiveInspector.CurrentItem) = "MailItem" Then
        Set GetMailItem = ActiveInspector.CurrentItem
      End If
  End Select
  On Error GoTo 0
End Function&lt;/pre&gt;
&lt;p&gt;
You can now modify your ribbon bar to add new buttons to the three subs ReplyAsPlainText,
ReplyAllAsPlainText, ForwardAsPlainText: 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://pixelplastic.de/content/binary/WindowsLiveWriter/OutlookReplytoHTMLemailswithplaintext_ACD2/20100829-11-54-50_2.png" rel="lightbox[20100829]"&gt;&lt;img style="border-width: 0px;" alt="20100829-11-54-50" src="http://pixelplastic.de/content/binary/WindowsLiveWriter/OutlookReplytoHTMLemailswithplaintext_ACD2/20100829-11-54-50_thumb.png" border="0" height="229" width="557"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=81116875-f0f9-4a7b-9912-5c5683bf5a6b" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,81116875-f0f9-4a7b-9912-5c5683bf5a6b.aspx</comments>
      <category>development</category>
      <category>microsoft</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=c9a6d570-d0ed-4160-aaf0-b867f9405130</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,c9a6d570-d0ed-4160-aaf0-b867f9405130.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,c9a6d570-d0ed-4160-aaf0-b867f9405130.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=c9a6d570-d0ed-4160-aaf0-b867f9405130</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Back in the early days of computer gaming one may remember the <a href="http://en.wikipedia.org/wiki/Comanche_series">Comanche
flight simulator</a>. The simple 3D engine used for this and other games is based
on a so called <a href="http://en.wikipedia.org/wiki/Voxel">voxel</a> rendering engine.
Searching the Internet for this technique I found <a href="http://www.flipcode.com/voxtut/">this
nice article from Alex Champandard</a> and <a href="http://www.codermind.com/articles/Voxel-terrain-engine-building-the-terrain.html">this
one from Codermind</a>. Putting two and two together, again I paid attention to the <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.writeablebitmap%28VS.95%29.aspx">WriteableBitmap</a> class
that is part of <a href="http://silverlight.net/">Silverlight 3</a>.
</p>
        <p>
To emphasize the <a href="http://netopenspace.de/">.NET Open Space 2009</a> that is
starting tomorrow here in Leipzig, I used a special background texture for the sky.
Just press the start button and use W-A-S-D of your keyboard to fly around the terrain.
I will clean up the sources after the upcoming and put it here on my blog. So stay
tuned.
</p>
        <div style="background: rgb(0, 0, 0) url(/content/binary/Silverlight/Voxel/screenshot.jpg) no-repeat scroll 0% 0%; width: 500px; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; height: 200px;">
          <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" height="100%" width="100%">
            <param name="source" value="/content/binary/Silverlight/Voxel/Voxel.xap" />
            <param name="onError" value="onSilverlightError" />
            <param name="background" value="white" />
            <param name="minRuntimeVersion" value="3.0.40624.0" />
            <param name="autoUpgrade" value="true" />
            <a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=3.0.40624.0" style="text-decoration: none;">
              <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none;" />
            </a>
          </object>
          <iframe id="_sl_historyFrame" style="border: 0px none ; visibility: hidden; height: 0px; width: 0px;">
          </iframe>
        </div>
        <img src="/content/binary/Silverlight/Voxel/WASD-keys.jpg" alt="WASD" />
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c9a6d570-d0ed-4160-aaf0-b867f9405130" />
      </body>
      <title>Voxel engine in Silverlight 3 - Homage to .NET Open Space 2009</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,c9a6d570-d0ed-4160-aaf0-b867f9405130.aspx</guid>
      <link>http://pixelplastic.de/2009/10/15/VoxelEngineInSilverlight3HomageToNETOpenSpace2009.aspx</link>
      <pubDate>Thu, 15 Oct 2009 22:48:42 GMT</pubDate>
      <description>&lt;p&gt;
Back in the early days of computer gaming one may remember the &lt;a href="http://en.wikipedia.org/wiki/Comanche_series"&gt;Comanche
flight simulator&lt;/a&gt;. The simple 3D engine used for this and other games is based
on a so called &lt;a href="http://en.wikipedia.org/wiki/Voxel"&gt;voxel&lt;/a&gt; rendering engine.
Searching the Internet for this technique I found &lt;a href="http://www.flipcode.com/voxtut/"&gt;this
nice article from Alex Champandard&lt;/a&gt; and &lt;a href="http://www.codermind.com/articles/Voxel-terrain-engine-building-the-terrain.html"&gt;this
one from Codermind&lt;/a&gt;. Putting two and two together, again I paid attention to the &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.writeablebitmap%28VS.95%29.aspx"&gt;WriteableBitmap&lt;/a&gt; class
that is part of &lt;a href="http://silverlight.net/"&gt;Silverlight 3&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
To emphasize the &lt;a href="http://netopenspace.de/"&gt;.NET Open Space 2009&lt;/a&gt; that is
starting tomorrow here in Leipzig, I used a special background texture for the sky.
Just press the start button and use W-A-S-D of your keyboard to fly around the terrain.
I will clean up the sources after the upcoming and put it here on my blog. So stay
tuned.
&lt;/p&gt;
&lt;div style="background: rgb(0, 0, 0) url(/content/binary/Silverlight/Voxel/screenshot.jpg) no-repeat scroll 0% 0%; width: 500px; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; height: 200px;"&gt;
&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" height="100%" width="100%"&gt;
&lt;param name="source" value="/content/binary/Silverlight/Voxel/Voxel.xap"&gt;
&lt;param name="onError" value="onSilverlightError"&gt;
&lt;param name="background" value="white"&gt;
&lt;param name="minRuntimeVersion" value="3.0.40624.0"&gt;
&lt;param name="autoUpgrade" value="true"&gt;
&lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;amp;v=3.0.40624.0" style="text-decoration: none;"&gt; &lt;img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none;"&gt; &lt;/a&gt; 
&lt;/object&gt;
&lt;iframe id="_sl_historyFrame" style="border: 0px none ; visibility: hidden; height: 0px; width: 0px;"&gt;
&lt;/iframe&gt;
&lt;/div&gt;
&lt;img src="/content/binary/Silverlight/Voxel/WASD-keys.jpg" alt="WASD"&gt; &lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c9a6d570-d0ed-4160-aaf0-b867f9405130" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,c9a6d570-d0ed-4160-aaf0-b867f9405130.aspx</comments>
      <category>development</category>
      <category>fun</category>
      <category>geek stuff</category>
      <category>silverlight</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=ec7b9f86-3f7f-42a0-b037-cee6c11b46a6</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,ec7b9f86-3f7f-42a0-b037-cee6c11b46a6.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,ec7b9f86-3f7f-42a0-b037-cee6c11b46a6.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=ec7b9f86-3f7f-42a0-b037-cee6c11b46a6</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Playing around with the new <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.writeablebitmap%28VS.95%29.aspx">WriteableBitmap</a> class
in <a href="http://silverlight.net/">Silverlight 3</a> I remembered the time I started
with VGA programming in assembler. After a quick research I found <a href="http://freespace.virgin.net/hugo.elias/models/m_fire.htm">this
simple algorithm</a> to visualize the effect. I added the interactivity via mouse
click and keyboard input to create new fire initiators.
</p>
        <div style="background: url(/content/binary/Silverlight/FireEffect/screenshot.png) #000000 no-repeat; width: 500px; height: 500px">
          <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
            <param name="source" value="/content/binary/Silverlight/FireEffect/FireEffect.xap" />
            <param name="onError" value="onSilverlightError" />
            <param name="background" value="white" />
            <param name="minRuntimeVersion" value="3.0.40624.0" />
            <param name="autoUpgrade" value="true" />
            <a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=3.0.40624.0" style="text-decoration:none">
              <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style:none" />
            </a>
          </object>
          <iframe style="border-right-width: 0px; width: 0px; border-top-width: 0px; border-bottom-width: 0px; height: 0px; visibility: hidden; border-left-width: 0px" id="_sl_historyFrame">
          </iframe>
        </div>
        <p>
The source is available for free: <a href="/content/binary/Silverlight/FireEffect/FireEffect.zip">FireEffect.zip
(12 kB)</a></p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ec7b9f86-3f7f-42a0-b037-cee6c11b46a6" />
      </body>
      <title>Fire with WriteableBitmap</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,ec7b9f86-3f7f-42a0-b037-cee6c11b46a6.aspx</guid>
      <link>http://pixelplastic.de/2009/08/04/FireWithWriteableBitmap.aspx</link>
      <pubDate>Tue, 04 Aug 2009 16:49:39 GMT</pubDate>
      <description>&lt;p&gt;
Playing around with the new &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.writeablebitmap%28VS.95%29.aspx"&gt;WriteableBitmap&lt;/a&gt; class
in &lt;a href="http://silverlight.net/"&gt;Silverlight 3&lt;/a&gt; I remembered the time I started
with VGA programming in assembler. After a quick research I found &lt;a href="http://freespace.virgin.net/hugo.elias/models/m_fire.htm"&gt;this
simple algorithm&lt;/a&gt; to visualize the effect. I added the interactivity via mouse
click and keyboard input to create new fire initiators.
&lt;/p&gt;
&lt;div style="background: url(/content/binary/Silverlight/FireEffect/screenshot.png) #000000 no-repeat; width: 500px; height: 500px"&gt;
&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%"&gt;
&lt;param name="source" value="/content/binary/Silverlight/FireEffect/FireEffect.xap" /&gt;
&lt;param name="onError" value="onSilverlightError" /&gt;
&lt;param name="background" value="white" /&gt;
&lt;param name="minRuntimeVersion" value="3.0.40624.0" /&gt;
&lt;param name="autoUpgrade" value="true" /&gt;
&lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;amp;v=3.0.40624.0" style="text-decoration:none"&gt; &lt;img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style:none" /&gt; &lt;/a&gt; 
&lt;/object&gt;
&lt;iframe style="border-right-width: 0px; width: 0px; border-top-width: 0px; border-bottom-width: 0px; height: 0px; visibility: hidden; border-left-width: 0px" id="_sl_historyFrame"&gt;
&lt;/iframe&gt;
&lt;/div&gt;
&lt;p&gt;
The source is available for free: &lt;a href="/content/binary/Silverlight/FireEffect/FireEffect.zip"&gt;FireEffect.zip
(12 kB)&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ec7b9f86-3f7f-42a0-b037-cee6c11b46a6" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,ec7b9f86-3f7f-42a0-b037-cee6c11b46a6.aspx</comments>
      <category>art</category>
      <category>development</category>
      <category>silverlight</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=1678f37e-63fc-4284-b2c2-5f2913496954</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,1678f37e-63fc-4284-b2c2-5f2913496954.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,1678f37e-63fc-4284-b2c2-5f2913496954.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=1678f37e-63fc-4284-b2c2-5f2913496954</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Another small sample using dynamic generated animations in Silverlight.
</p>
        <div style="background: #000000 url(/content/binary/Silverlight/TunnelAnimation/screenshot.png) no-repeat; height: 500px; width: 500px;">
          <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
            <param name="source" value="/content/binary/Silverlight/TunnelAnimation/Pixelplastic.Silverlight.TunnelAnimation.xap" />
            <param name="background" value="black" />
            <param name="minRuntimeVersion" value="2.0.31005.0" />
            <param name="autoUpgrade" value="true" />
            <a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;">
              <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" />
            </a>
          </object>
        </div>
        <p>
The source are available for free: <a href="/content/binary/Silverlight/TunnelAnimation/TunnelAnimation.zip">TunnelAnimation.zip
(7 kB)</a></p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=1678f37e-63fc-4284-b2c2-5f2913496954" />
      </body>
      <title>Tunnel Effect with Silverlight</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,1678f37e-63fc-4284-b2c2-5f2913496954.aspx</guid>
      <link>http://pixelplastic.de/2009/06/28/TunnelEffectWithSilverlight.aspx</link>
      <pubDate>Sun, 28 Jun 2009 13:52:39 GMT</pubDate>
      <description>&lt;p&gt;
Another small sample using dynamic generated animations in Silverlight.
&lt;/p&gt;
&lt;div style="background: #000000 url(/content/binary/Silverlight/TunnelAnimation/screenshot.png) no-repeat; height: 500px; width: 500px;"&gt;
&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%"&gt;
&lt;param name="source" value="/content/binary/Silverlight/TunnelAnimation/Pixelplastic.Silverlight.TunnelAnimation.xap" /&gt;
&lt;param name="background" value="black" /&gt;
&lt;param name="minRuntimeVersion" value="2.0.31005.0" /&gt;
&lt;param name="autoUpgrade" value="true" /&gt;
&lt;a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;"&gt; &lt;img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" /&gt; &lt;/a&gt; 
&lt;/object&gt;
&lt;/div&gt;
&lt;p&gt;
The source are available for free: &lt;a href="/content/binary/Silverlight/TunnelAnimation/TunnelAnimation.zip"&gt;TunnelAnimation.zip
(7 kB)&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=1678f37e-63fc-4284-b2c2-5f2913496954" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,1678f37e-63fc-4284-b2c2-5f2913496954.aspx</comments>
      <category>art</category>
      <category>development</category>
      <category>fun</category>
      <category>silverlight</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=702c858c-5da6-495f-a4b1-e5b9a1c05033</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,702c858c-5da6-495f-a4b1-e5b9a1c05033.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,702c858c-5da6-495f-a4b1-e5b9a1c05033.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=702c858c-5da6-495f-a4b1-e5b9a1c05033</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Some more photos to be used as wallpaper:
</p>
        <div style="height: 80px; padding-bottom: 2em;">
          <a style="float: left; margin-right: 1em;" title="Bee" rel="lightbox[wallpaper]" href="http://pixelplastic.de/specials/wallpapers/Bee.jpg">
            <img alt="Bee.jpg" src="specials/wallpapers/thumbs/Bee.jpg" />
          </a>
          <a title="Download as 1600x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1600x1200/Bee.jpg">Bee.jpg
(1600x1200)</a>
          <br />
          <a title="Download as 1920x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1920x1200/Bee.jpg">Bee.jpg
(1920x1200)</a>
          <br />
          <a title="Download as 2560x1600 jpg" href="http://pixelplastic.de/specials/wallpapers/2560x1600/Bee.jpg">Bee.jpg
(2560x1600)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em;">
          <a style="float: left; margin-right: 1em;" title="Country-Side" rel="lightbox[wallpaper]" href="http://pixelplastic.de/specials/wallpapers/Country-Side.jpg">
            <img alt="Country-Side.jpg" src="specials/wallpapers/thumbs/Country-Side.jpg" />
          </a>
          <a title="Download as 1600x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1600x1200/Country-Side.jpg">Country-Side.jpg
(1600x1200)</a>
          <br />
          <a title="Download as 1920x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1920x1200/Country-Side.jpg">Country-Side.jpg
(1920x1200)</a>
          <br />
          <a title="Download as 2560x1600 jpg" href="http://pixelplastic.de/specials/wallpapers/2560x1600/Country-Side.jpg">Country-Side.jpg
(2560x1600)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em;">
          <a style="float: left; margin-right: 1em;" title="Flower-Sky" rel="lightbox[wallpaper]" href="http://pixelplastic.de/specials/wallpapers/Flower-Sky.jpg">
            <img alt="Flower-Sky.jpg" src="specials/wallpapers/thumbs/Flower-Sky.jpg" />
          </a>
          <a title="Download as 1600x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1600x1200/Flower-Sky.jpg">Flower-Sky.jpg
(1600x1200)</a>
          <br />
          <a title="Download as 1920x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1920x1200/Flower-Sky.jpg">Flower-Sky.jpg
(1920x1200)</a>
          <br />
          <a title="Download as 2560x1600 jpg" href="http://pixelplastic.de/specials/wallpapers/2560x1600/Flower-Sky.jpg">Flower-Sky.jpg
(2560x1600)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em;">
          <a style="float: left; margin-right: 1em;" title="Allium-Giganteum" rel="lightbox[wallpaper]" href="http://pixelplastic.de/specials/wallpapers/Allium-Giganteum.jpg">
            <img alt="Allium-Giganteum.jpg" src="specials/wallpapers/thumbs/Allium-Giganteum.jpg" />
          </a>
          <a title="Download as 1600x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1600x1200/Allium-Giganteum.jpg">Allium-Giganteum.jpg
(1600x1200)</a>
          <br />
          <a title="Download as 1920x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1920x1200/Allium-Giganteum.jpg">Allium-Giganteum.jpg
(1920x1200)</a>
          <br />
          <a title="Download as 2560x1600 jpg" href="http://pixelplastic.de/specials/wallpapers/2560x1600/Allium-Giganteum.jpg">Allium-Giganteum.jpg
(2560x1600)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em;">
          <a style="float: left; margin-right: 1em;" title="Sparkling-Fire" rel="lightbox[wallpaper]" href="http://pixelplastic.de/specials/wallpapers/Sparkling-Fire.jpg">
            <img alt="Sparkling-Fire.jpg" src="specials/wallpapers/thumbs/Sparkling-Fire.jpg" />
          </a>
          <a title="Download as 1600x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1600x1200/Sparkling-Fire.jpg">Sparkling-Fire.jpg
(1600x1200)</a>
          <br />
          <a title="Download as 1920x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1920x1200/Sparkling-Fire.jpg">Sparkling-Fire.jpg
(1920x1200)</a>
          <br />
          <a title="Download as 2560x1600 jpg" href="http://pixelplastic.de/specials/wallpapers/2560x1600/Sparkling-Fire.jpg">Sparkling-Fire.jpg
(2560x1600)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em;">
          <a style="float: left; margin-right: 1em;" title="Tree-Light" rel="lightbox[wallpaper]" href="http://pixelplastic.de/specials/wallpapers/Tree-Light.jpg">
            <img alt="Tree-Light.jpg" src="specials/wallpapers/thumbs/Tree-Light.jpg" />
          </a>
          <a title="Download as 1600x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1600x1200/Tree-Light.jpg">Tree-Light.jpg
(1600x1200)</a>
          <br />
          <a title="Download as 1920x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1920x1200/Tree-Light.jpg">Tree-Light.jpg
(1920x1200)</a>
          <br />
          <a title="Download as 2560x1600 jpg" href="http://pixelplastic.de/specials/wallpapers/2560x1600/Tree-Light.jpg">Tree-Light.jpg
(2560x1600)</a>
        </div>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=702c858c-5da6-495f-a4b1-e5b9a1c05033" />
      </body>
      <title>Free Wallpapers - Part II</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,702c858c-5da6-495f-a4b1-e5b9a1c05033.aspx</guid>
      <link>http://pixelplastic.de/2009/06/23/FreeWallpapersPartII.aspx</link>
      <pubDate>Tue, 23 Jun 2009 15:17:49 GMT</pubDate>
      <description>&lt;p&gt;
Some more photos to be used as wallpaper:
&lt;/p&gt;
&lt;div style="height: 80px; padding-bottom: 2em;"&gt;
&lt;a style="float: left; margin-right: 1em;" title="Bee" rel="lightbox[wallpaper]" href="http://pixelplastic.de/specials/wallpapers/Bee.jpg"&gt; &lt;img alt="Bee.jpg" src="specials/wallpapers/thumbs/Bee.jpg"&gt;&lt;/a&gt; &lt;a title="Download as 1600x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1600x1200/Bee.jpg"&gt;Bee.jpg
(1600x1200)&lt;/a&gt;
&lt;br&gt;
&lt;a title="Download as 1920x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1920x1200/Bee.jpg"&gt;Bee.jpg
(1920x1200)&lt;/a&gt;
&lt;br&gt;
&lt;a title="Download as 2560x1600 jpg" href="http://pixelplastic.de/specials/wallpapers/2560x1600/Bee.jpg"&gt;Bee.jpg
(2560x1600)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em;"&gt;
&lt;a style="float: left; margin-right: 1em;" title="Country-Side" rel="lightbox[wallpaper]" href="http://pixelplastic.de/specials/wallpapers/Country-Side.jpg"&gt; &lt;img alt="Country-Side.jpg" src="specials/wallpapers/thumbs/Country-Side.jpg"&gt;&lt;/a&gt; &lt;a title="Download as 1600x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1600x1200/Country-Side.jpg"&gt;Country-Side.jpg
(1600x1200)&lt;/a&gt;
&lt;br&gt;
&lt;a title="Download as 1920x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1920x1200/Country-Side.jpg"&gt;Country-Side.jpg
(1920x1200)&lt;/a&gt;
&lt;br&gt;
&lt;a title="Download as 2560x1600 jpg" href="http://pixelplastic.de/specials/wallpapers/2560x1600/Country-Side.jpg"&gt;Country-Side.jpg
(2560x1600)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em;"&gt;
&lt;a style="float: left; margin-right: 1em;" title="Flower-Sky" rel="lightbox[wallpaper]" href="http://pixelplastic.de/specials/wallpapers/Flower-Sky.jpg"&gt; &lt;img alt="Flower-Sky.jpg" src="specials/wallpapers/thumbs/Flower-Sky.jpg"&gt;&lt;/a&gt; &lt;a title="Download as 1600x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1600x1200/Flower-Sky.jpg"&gt;Flower-Sky.jpg
(1600x1200)&lt;/a&gt;
&lt;br&gt;
&lt;a title="Download as 1920x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1920x1200/Flower-Sky.jpg"&gt;Flower-Sky.jpg
(1920x1200)&lt;/a&gt;
&lt;br&gt;
&lt;a title="Download as 2560x1600 jpg" href="http://pixelplastic.de/specials/wallpapers/2560x1600/Flower-Sky.jpg"&gt;Flower-Sky.jpg
(2560x1600)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em;"&gt;
&lt;a style="float: left; margin-right: 1em;" title="Allium-Giganteum" rel="lightbox[wallpaper]" href="http://pixelplastic.de/specials/wallpapers/Allium-Giganteum.jpg"&gt; &lt;img alt="Allium-Giganteum.jpg" src="specials/wallpapers/thumbs/Allium-Giganteum.jpg"&gt;&lt;/a&gt; &lt;a title="Download as 1600x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1600x1200/Allium-Giganteum.jpg"&gt;Allium-Giganteum.jpg
(1600x1200)&lt;/a&gt;
&lt;br&gt;
&lt;a title="Download as 1920x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1920x1200/Allium-Giganteum.jpg"&gt;Allium-Giganteum.jpg
(1920x1200)&lt;/a&gt;
&lt;br&gt;
&lt;a title="Download as 2560x1600 jpg" href="http://pixelplastic.de/specials/wallpapers/2560x1600/Allium-Giganteum.jpg"&gt;Allium-Giganteum.jpg
(2560x1600)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em;"&gt;
&lt;a style="float: left; margin-right: 1em;" title="Sparkling-Fire" rel="lightbox[wallpaper]" href="http://pixelplastic.de/specials/wallpapers/Sparkling-Fire.jpg"&gt; &lt;img alt="Sparkling-Fire.jpg" src="specials/wallpapers/thumbs/Sparkling-Fire.jpg"&gt;&lt;/a&gt; &lt;a title="Download as 1600x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1600x1200/Sparkling-Fire.jpg"&gt;Sparkling-Fire.jpg
(1600x1200)&lt;/a&gt;
&lt;br&gt;
&lt;a title="Download as 1920x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1920x1200/Sparkling-Fire.jpg"&gt;Sparkling-Fire.jpg
(1920x1200)&lt;/a&gt;
&lt;br&gt;
&lt;a title="Download as 2560x1600 jpg" href="http://pixelplastic.de/specials/wallpapers/2560x1600/Sparkling-Fire.jpg"&gt;Sparkling-Fire.jpg
(2560x1600)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em;"&gt;
&lt;a style="float: left; margin-right: 1em;" title="Tree-Light" rel="lightbox[wallpaper]" href="http://pixelplastic.de/specials/wallpapers/Tree-Light.jpg"&gt; &lt;img alt="Tree-Light.jpg" src="specials/wallpapers/thumbs/Tree-Light.jpg"&gt;&lt;/a&gt; &lt;a title="Download as 1600x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1600x1200/Tree-Light.jpg"&gt;Tree-Light.jpg
(1600x1200)&lt;/a&gt;
&lt;br&gt;
&lt;a title="Download as 1920x1200 jpg" href="http://pixelplastic.de/specials/wallpapers/1920x1200/Tree-Light.jpg"&gt;Tree-Light.jpg
(1920x1200)&lt;/a&gt;
&lt;br&gt;
&lt;a title="Download as 2560x1600 jpg" href="http://pixelplastic.de/specials/wallpapers/2560x1600/Tree-Light.jpg"&gt;Tree-Light.jpg
(2560x1600)&lt;/a&gt; 
&lt;/div&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=702c858c-5da6-495f-a4b1-e5b9a1c05033" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,702c858c-5da6-495f-a4b1-e5b9a1c05033.aspx</comments>
      <category>art</category>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=f963228d-ffcf-43df-9e72-746f12d2f224</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,f963228d-ffcf-43df-9e72-746f12d2f224.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,f963228d-ffcf-43df-9e72-746f12d2f224.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=f963228d-ffcf-43df-9e72-746f12d2f224</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="image" src="http://pixelplastic.de/content/binary/WindowsLiveWriter/ReleaseofSilverlightWhiteboard_A949/image_3.png" width="515" height="387" />
        </p>
        <p>
After a long run on a bumpy road our Trian.Whiteboard finally found it's way to the <a href="http://code.msdn.microsoft.com/">MSDN
Code Gallery</a>. Even if <a href="http://silverlight.net/getstarted/silverlight3/default.aspx">Microsoft
Silverlight 3</a> is knocking on our doors this smart sample is a good start to get
in touch with this technology. It shows how to use XAML to create a Rich Internet
Application that communicates with a Windows Communication Foundation service in the
background.
</p>
        <p>
Check it out: <a title="Trian.Whiteboard at MSDN Code Gallery" href="http://code.msdn.microsoft.com/whiteboard">http://code.msdn.microsoft.com/whiteboard</a><br />
Play with it: <a href="http://playground.pixelplastic.de">http://playground.pixelplastic.de</a></p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f963228d-ffcf-43df-9e72-746f12d2f224" />
      </body>
      <title>Release of Silverlight Whiteboard</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,f963228d-ffcf-43df-9e72-746f12d2f224.aspx</guid>
      <link>http://pixelplastic.de/2009/05/15/ReleaseOfSilverlightWhiteboard.aspx</link>
      <pubDate>Fri, 15 May 2009 10:01:21 GMT</pubDate>
      <description>&lt;p&gt;
&lt;img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" border="0" alt="image" src="http://pixelplastic.de/content/binary/WindowsLiveWriter/ReleaseofSilverlightWhiteboard_A949/image_3.png" width="515" height="387"&gt; 
&lt;/p&gt;
&lt;p&gt;
After a long run on a bumpy road our Trian.Whiteboard finally found it's way to the &lt;a href="http://code.msdn.microsoft.com/"&gt;MSDN
Code Gallery&lt;/a&gt;. Even if &lt;a href="http://silverlight.net/getstarted/silverlight3/default.aspx"&gt;Microsoft
Silverlight 3&lt;/a&gt; is knocking on our doors this smart sample is a good start to get
in touch with this technology. It shows how to use XAML to create a Rich Internet
Application that communicates with a Windows Communication Foundation service in the
background.
&lt;/p&gt;
&lt;p&gt;
Check it out: &lt;a title="Trian.Whiteboard at MSDN Code Gallery" href="http://code.msdn.microsoft.com/whiteboard"&gt;http://code.msdn.microsoft.com/whiteboard&lt;/a&gt;
&lt;br&gt;
Play with it: &lt;a href="http://playground.pixelplastic.de"&gt;http://playground.pixelplastic.de&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f963228d-ffcf-43df-9e72-746f12d2f224" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,f963228d-ffcf-43df-9e72-746f12d2f224.aspx</comments>
      <category>development</category>
      <category>microsoft</category>
      <category>silverlight</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=fc2eff68-b8dc-457b-a5ba-0c50fc8c8b7e</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,fc2eff68-b8dc-457b-a5ba-0c50fc8c8b7e.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,fc2eff68-b8dc-457b-a5ba-0c50fc8c8b7e.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=fc2eff68-b8dc-457b-a5ba-0c50fc8c8b7e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The results of a short trip through the dark park.
</p>
        <p>
          <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3452_4.jpg" rel="lightbox[nightWalk]" title="Brockhausstraße">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG_3452" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3452_thumb_1.jpg" width="500" height="333" />
          </a>
          <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3453-2_4.jpg" rel="lightbox[nightWalk]" title="Near the Mexican restaurant">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG_3453-2" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3453-2_thumb_1.jpg" width="500" height="333" />
          </a>
          <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3457_4.jpg" rel="lightbox[nightWalk]" title="Bicycles">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG_3457" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3457_thumb_1.jpg" width="500" height="333" />
          </a>
          <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3464_2.jpg" rel="lightbox[nightWalk]" title="Hanging around">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG_3464" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3464_thumb.jpg" width="500" height="333" />
          </a>
          <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3467_2.jpg" rel="lightbox[nightWalk]" title="Fractal">
            <img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG_3467" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3467_thumb.jpg" width="500" height="330" />
          </a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=fc2eff68-b8dc-457b-a5ba-0c50fc8c8b7e" />
      </body>
      <title>Night walk</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,fc2eff68-b8dc-457b-a5ba-0c50fc8c8b7e.aspx</guid>
      <link>http://pixelplastic.de/2009/04/03/NightWalk.aspx</link>
      <pubDate>Fri, 03 Apr 2009 21:12:22 GMT</pubDate>
      <description>&lt;p&gt;
The results of a short trip through the dark park.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3452_4.jpg" rel="lightbox[nightWalk]" title="Brockhausstraße"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG_3452" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3452_thumb_1.jpg" width="500" height="333"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3453-2_4.jpg" rel="lightbox[nightWalk]" title="Near the Mexican restaurant"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG_3453-2" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3453-2_thumb_1.jpg" width="500" height="333"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3457_4.jpg" rel="lightbox[nightWalk]" title="Bicycles"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG_3457" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3457_thumb_1.jpg" width="500" height="333"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3464_2.jpg" rel="lightbox[nightWalk]" title="Hanging around"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG_3464" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3464_thumb.jpg" width="500" height="333"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3467_2.jpg" rel="lightbox[nightWalk]" title="Fractal"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="IMG_3467" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Nightwalk_1428/IMG_3467_thumb.jpg" width="500" height="330"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=fc2eff68-b8dc-457b-a5ba-0c50fc8c8b7e" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,fc2eff68-b8dc-457b-a5ba-0c50fc8c8b7e.aspx</comments>
      <category>art</category>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=af9dd3bf-7aaa-440f-8f77-b98316fbfa6f</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,af9dd3bf-7aaa-440f-8f77-b98316fbfa6f.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,af9dd3bf-7aaa-440f-8f77-b98316fbfa6f.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=af9dd3bf-7aaa-440f-8f77-b98316fbfa6f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
As I saw the following short film (due to a tweet of <a href="http://twitter.com/zumpe">zumpe</a>)
I remembered the TiltShift style photographs I <a href="http://www.pixelplastic.de/SearchView.aspx?q=david">wrote
about months ago</a>. And now I'm thinking of buying such a lens. I like it.
</p>
        <object width="400" height="225">
          <param name="allowfullscreen" value="true" />
          <param name="allowscriptaccess" value="always" />
          <param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3156959&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" />
          <embed src="http://vimeo.com/moogaloop.swf?clip_id=3156959&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225">
          </embed>
        </object>
        <br />
        <a href="http://vimeo.com/3156959">Bathtub IV</a> from <a href="http://vimeo.com/keithloutit">Keith
Loutit</a> on <a href="http://vimeo.com">Vimeo</a>.<img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=af9dd3bf-7aaa-440f-8f77-b98316fbfa6f" /></body>
      <title>Its time for a TiltShift lens</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,af9dd3bf-7aaa-440f-8f77-b98316fbfa6f.aspx</guid>
      <link>http://pixelplastic.de/2009/03/13/ItsTimeForATiltShiftLens.aspx</link>
      <pubDate>Fri, 13 Mar 2009 09:16:22 GMT</pubDate>
      <description>&lt;p&gt;
As I saw the following short film (due to a tweet of &lt;a href="http://twitter.com/zumpe"&gt;zumpe&lt;/a&gt;)
I remembered the TiltShift style photographs I &lt;a href="http://www.pixelplastic.de/SearchView.aspx?q=david"&gt;wrote
about months ago&lt;/a&gt;. And now I'm thinking of buying such a lens. I like it.
&lt;/p&gt;
&lt;object width="400" height="225"&gt;
&lt;param name="allowfullscreen" value="true" /&gt;
&lt;param name="allowscriptaccess" value="always" /&gt;
&lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3156959&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=ffffff&amp;amp;fullscreen=1" /&gt;&lt;embed src="http://vimeo.com/moogaloop.swf?clip_id=3156959&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=ffffff&amp;amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"&gt;&lt;/embed&gt;
&lt;/object&gt;
&lt;br /&gt;
&lt;a href="http://vimeo.com/3156959"&gt;Bathtub IV&lt;/a&gt; from &lt;a href="http://vimeo.com/keithloutit"&gt;Keith
Loutit&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=af9dd3bf-7aaa-440f-8f77-b98316fbfa6f" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,af9dd3bf-7aaa-440f-8f77-b98316fbfa6f.aspx</comments>
      <category>art</category>
      <category>photos</category>
      <category>videos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=bdd78b2f-ba58-43c9-a75c-9482a30910e3</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,bdd78b2f-ba58-43c9-a75c-9482a30910e3.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,bdd78b2f-ba58-43c9-a75c-9482a30910e3.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=bdd78b2f-ba58-43c9-a75c-9482a30910e3</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Are those the first signs of spring?
</p>
        <p>
          <a title="First signs of spring?" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Hazelnut_150B/IMG_3428_4.jpg" rel="lightbox">
            <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="333" alt="IMG_3428" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Hazelnut_150B/IMG_3428_thumb_1.jpg" width="500" border="0" />
          </a>
        </p>
        <p>
Shot last week, walking around in the park.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=bdd78b2f-ba58-43c9-a75c-9482a30910e3" />
      </body>
      <title>Hazelnut</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,bdd78b2f-ba58-43c9-a75c-9482a30910e3.aspx</guid>
      <link>http://pixelplastic.de/2009/02/26/Hazelnut.aspx</link>
      <pubDate>Thu, 26 Feb 2009 00:30:00 GMT</pubDate>
      <description>&lt;p&gt;
Are those the first signs of spring?
&lt;/p&gt;
&lt;p&gt;
&lt;a title="First signs of spring?" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Hazelnut_150B/IMG_3428_4.jpg" rel="lightbox"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="333" alt="IMG_3428" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Hazelnut_150B/IMG_3428_thumb_1.jpg" width="500" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Shot last week, walking around in the park.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=bdd78b2f-ba58-43c9-a75c-9482a30910e3" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,bdd78b2f-ba58-43c9-a75c-9482a30910e3.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=d9078c23-1d54-402a-81dc-41fd622572c5</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,d9078c23-1d54-402a-81dc-41fd622572c5.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,d9078c23-1d54-402a-81dc-41fd622572c5.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=d9078c23-1d54-402a-81dc-41fd622572c5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Just found in my photo archive.
</p>
        <p>
          <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/NewYearlights_14271/IMG_3343_4.jpg" rel="lightbox" title="New Year lights">
            <img style="border: none" height="333" alt="New Year lights" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/NewYearlights_14271/IMG_3343_thumb_1.jpg" width="500" border="0" />
          </a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d9078c23-1d54-402a-81dc-41fd622572c5" />
      </body>
      <title>New Year lights</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,d9078c23-1d54-402a-81dc-41fd622572c5.aspx</guid>
      <link>http://pixelplastic.de/2009/02/18/NewYearLights.aspx</link>
      <pubDate>Wed, 18 Feb 2009 21:55:55 GMT</pubDate>
      <description>&lt;p&gt;
Just found in my photo archive.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/NewYearlights_14271/IMG_3343_4.jpg" rel="lightbox" title="New Year lights"&gt;&lt;img style="border: none" height="333" alt="New Year lights" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/NewYearlights_14271/IMG_3343_thumb_1.jpg" width="500" border="0"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d9078c23-1d54-402a-81dc-41fd622572c5" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,d9078c23-1d54-402a-81dc-41fd622572c5.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=5b99f204-4edd-4e1e-9085-0aae871d7a0c</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,5b99f204-4edd-4e1e-9085-0aae871d7a0c.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,5b99f204-4edd-4e1e-9085-0aae871d7a0c.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=5b99f204-4edd-4e1e-9085-0aae871d7a0c</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Am 20. März 2009 wird unter meiner Regie das dritte .NET Bootcamp der <a href="http://dotnet-leipzig.de/">.NET
User Group Leipzig</a> stattfinden. Wie sollte es anders sein, geht es dabei um Microsoft
Silverlight und die WPF. Die <a href="http://dotnet-leipzig.de/anmeldung/?eventId=82">Registrierung</a> ist
ab heute aktiviert. Die Plätze sind limitiert, daher schnell anmelden. Falls ihr nicht
wisst, was hinter den Bootcamps steckt und wie diese ablaufen, kann ich <a href="http://blogs.compactframework.de/Torsten.Weber/2008/11/26/NET+Bootcamps+Und+Die+QuotDrogequot+LdL.aspx">diesen
Artikel von Torsten</a> empfehlen.
</p>
        <p>
          <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="333" alt="IMG_3361" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/17f8433c9.NETBootcampzuSilverlightundWPF_BFB2/IMG_3361_3.jpg" width="500" border="0" />
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5b99f204-4edd-4e1e-9085-0aae871d7a0c" />
      </body>
      <title>.NET Bootcamp zu Silverlight und WPF</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,5b99f204-4edd-4e1e-9085-0aae871d7a0c.aspx</guid>
      <link>http://pixelplastic.de/2009/02/14/NETBootcampZuSilverlightUndWPF.aspx</link>
      <pubDate>Sat, 14 Feb 2009 12:38:04 GMT</pubDate>
      <description>&lt;p&gt;
Am 20. März 2009 wird unter meiner Regie das dritte .NET Bootcamp der &lt;a href="http://dotnet-leipzig.de/"&gt;.NET
User Group Leipzig&lt;/a&gt; stattfinden. Wie sollte es anders sein, geht es dabei um Microsoft
Silverlight und die WPF. Die &lt;a href="http://dotnet-leipzig.de/anmeldung/?eventId=82"&gt;Registrierung&lt;/a&gt; ist
ab heute aktiviert. Die Plätze sind limitiert, daher schnell anmelden. Falls ihr nicht
wisst, was hinter den Bootcamps steckt und wie diese ablaufen, kann ich &lt;a href="http://blogs.compactframework.de/Torsten.Weber/2008/11/26/NET+Bootcamps+Und+Die+QuotDrogequot+LdL.aspx"&gt;diesen
Artikel von Torsten&lt;/a&gt; empfehlen.
&lt;/p&gt;
&lt;p&gt;
&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="333" alt="IMG_3361" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/17f8433c9.NETBootcampzuSilverlightundWPF_BFB2/IMG_3361_3.jpg" width="500" border="0"&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5b99f204-4edd-4e1e-9085-0aae871d7a0c" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,5b99f204-4edd-4e1e-9085-0aae871d7a0c.aspx</comments>
      <category>development</category>
      <category>event</category>
      <category>microsoft</category>
      <category>silverlight</category>
      <category>wpf</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=7bd9034c-f3b7-471d-80a3-49c4faa2ea60</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,7bd9034c-f3b7-471d-80a3-49c4faa2ea60.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,7bd9034c-f3b7-471d-80a3-49c4faa2ea60.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=7bd9034c-f3b7-471d-80a3-49c4faa2ea60</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Already published on youtube many moons ago, but never posted on my blog:
</p>
        <object width="550" height="445">
          <param name="movie" value="http://www.youtube.com/v/y5Uiv1_4AOA&amp;hl=de&amp;fs=1" />
          <param name="allowFullScreen" value="true" />
          <param name="allowscriptaccess" value="always" />
          <embed src="http://www.youtube.com/v/y5Uiv1_4AOA&amp;hl=de&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="445">
          </embed>
        </object>
        <p>
For sure: we will continue our launch program this year to reach higher altitudes.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7bd9034c-f3b7-471d-80a3-49c4faa2ea60" />
      </body>
      <title>Water rocket at night (with launch failure)</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,7bd9034c-f3b7-471d-80a3-49c4faa2ea60.aspx</guid>
      <link>http://pixelplastic.de/2009/01/29/WaterRocketAtNightWithLaunchFailure.aspx</link>
      <pubDate>Thu, 29 Jan 2009 01:09:49 GMT</pubDate>
      <description>&lt;p&gt;
Already published on youtube many moons ago, but never posted on my blog:
&lt;/p&gt;
&lt;object width="550" height="445"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/y5Uiv1_4AOA&amp;amp;hl=de&amp;amp;fs=1"&gt;
&lt;param name="allowFullScreen" value="true"&gt;
&lt;param name="allowscriptaccess" value="always"&gt;
&lt;embed src="http://www.youtube.com/v/y5Uiv1_4AOA&amp;amp;hl=de&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="550" height="445"&gt; 
&lt;/object&gt;
&lt;p&gt;
For sure: we will continue our launch program this year to reach higher altitudes.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7bd9034c-f3b7-471d-80a3-49c4faa2ea60" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,7bd9034c-f3b7-471d-80a3-49c4faa2ea60.aspx</comments>
      <category>fun</category>
      <category>videos</category>
      <category>water rocket</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=e8f7c23c-1570-4c33-b577-8b9082d8bb4f</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,e8f7c23c-1570-4c33-b577-8b9082d8bb4f.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,e8f7c23c-1570-4c33-b577-8b9082d8bb4f.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=e8f7c23c-1570-4c33-b577-8b9082d8bb4f</wfw:commentRss>
      <slash:comments>4</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/NeulichaufdemFrhstckstisch_BCFF/IMG_3354_4.jpg" rel="lightbox" title="Dampfendes Ei">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="334" alt="IMG_3354" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/NeulichaufdemFrhstckstisch_BCFF/IMG_3354_thumb_1.jpg" width="500" border="0" />
          </a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e8f7c23c-1570-4c33-b577-8b9082d8bb4f" />
      </body>
      <title>Neulich auf dem Fr&amp;uuml;hst&amp;uuml;ckstisch</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,e8f7c23c-1570-4c33-b577-8b9082d8bb4f.aspx</guid>
      <link>http://pixelplastic.de/2009/01/19/NeulichAufDemFruumlhstuumlckstisch.aspx</link>
      <pubDate>Mon, 19 Jan 2009 12:26:36 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/NeulichaufdemFrhstckstisch_BCFF/IMG_3354_4.jpg" rel="lightbox" title="Dampfendes Ei"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="334" alt="IMG_3354" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/NeulichaufdemFrhstckstisch_BCFF/IMG_3354_thumb_1.jpg" width="500" border="0"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e8f7c23c-1570-4c33-b577-8b9082d8bb4f" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,e8f7c23c-1570-4c33-b577-8b9082d8bb4f.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=215029c5-c78a-4b72-a367-995611f889d2</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,215029c5-c78a-4b72-a367-995611f889d2.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,215029c5-c78a-4b72-a367-995611f889d2.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=215029c5-c78a-4b72-a367-995611f889d2</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
You may know about the good old Windows screen safer <i>Mystify</i>. Thinking about
my last post about the BezierCurve element I tried to rebuild this waving stroke animation.
And here is the result:
</p>
        <div style="background: #000000 url(/content/binary/Silverlight/BezierAnimation/screenshot.png) no-repeat; height: 500px; width: 500px;">
          <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
            <param name="source" value="/content/binary/Silverlight/BezierAnimation/Pixelplastic.Silverlight.BezierAnimation.xap" />
            <param name="background" value="black" />
            <param name="minRuntimeVersion" value="2.0.31005.0" />
            <param name="autoUpgrade" value="true" />
            <a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;">
              <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" />
            </a>
          </object>
        </div>
        <p>
Once again: feel free to <a href="/content/binary/Silverlight/BezierAnimation/BezierAnimation.zip">download
the sources</a>.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=215029c5-c78a-4b72-a367-995611f889d2" />
      </body>
      <title>A new sample about BezierSegment usage in Silverlight</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,215029c5-c78a-4b72-a367-995611f889d2.aspx</guid>
      <link>http://pixelplastic.de/2009/01/14/ANewSampleAboutBezierSegmentUsageInSilverlight.aspx</link>
      <pubDate>Wed, 14 Jan 2009 23:41:50 GMT</pubDate>
      <description>&lt;p&gt;
You may know about the good old Windows screen safer &lt;i&gt;Mystify&lt;/i&gt;. Thinking about
my last post about the BezierCurve element I tried to rebuild this waving stroke animation.
And here is the result:
&lt;/p&gt;
&lt;div style="background: #000000 url(/content/binary/Silverlight/BezierAnimation/screenshot.png) no-repeat; height: 500px; width: 500px;"&gt;
&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%"&gt;
&lt;param name="source" value="/content/binary/Silverlight/BezierAnimation/Pixelplastic.Silverlight.BezierAnimation.xap" /&gt;
&lt;param name="background" value="black" /&gt;
&lt;param name="minRuntimeVersion" value="2.0.31005.0" /&gt;
&lt;param name="autoUpgrade" value="true" /&gt;
&lt;a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;"&gt; &lt;img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" /&gt; &lt;/a&gt; 
&lt;/object&gt;
&lt;/div&gt;
&lt;p&gt;
Once again: feel free to &lt;a href="/content/binary/Silverlight/BezierAnimation/BezierAnimation.zip"&gt;download
the sources&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=215029c5-c78a-4b72-a367-995611f889d2" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,215029c5-c78a-4b72-a367-995611f889d2.aspx</comments>
      <category>art</category>
      <category>development</category>
      <category>silverlight</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=33aa8eaf-02db-41bb-a3e2-474c5642168a</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,33aa8eaf-02db-41bb-a3e2-474c5642168a.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,33aa8eaf-02db-41bb-a3e2-474c5642168a.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=33aa8eaf-02db-41bb-a3e2-474c5642168a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">Die neu gegründete Arbeitsgruppe <a href="http://www.topicmapslab.de/">Topic
Maps Lab</a> der <a href="http://www.uni-leipzig.de/">Universität Leipzig</a> sucht
dringen wissenschaftliche Mitarbeiter. Wer sich also mit Topic Maps auskennt, kann <a href="http://www.asv.informatik.uni-leipzig.de/jobs/show/11">hier
weitere Details zur Stelle erfahren</a>.<img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=33aa8eaf-02db-41bb-a3e2-474c5642168a" /></body>
      <title>Stellenausschreibung am Topic Maps Lab</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,33aa8eaf-02db-41bb-a3e2-474c5642168a.aspx</guid>
      <link>http://pixelplastic.de/2009/01/13/StellenausschreibungAmTopicMapsLab.aspx</link>
      <pubDate>Tue, 13 Jan 2009 14:49:16 GMT</pubDate>
      <description>Die neu gegründete Arbeitsgruppe &lt;a href="http://www.topicmapslab.de/"&gt;Topic Maps
Lab&lt;/a&gt; der &lt;a href="http://www.uni-leipzig.de/"&gt;Universität Leipzig&lt;/a&gt; sucht dringen
wissenschaftliche Mitarbeiter. Wer sich also mit Topic Maps auskennt, kann &lt;a href="http://www.asv.informatik.uni-leipzig.de/jobs/show/11"&gt;hier
weitere Details zur Stelle erfahren&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=33aa8eaf-02db-41bb-a3e2-474c5642168a" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,33aa8eaf-02db-41bb-a3e2-474c5642168a.aspx</comments>
      <category>topicmaps</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=cf30d5fe-a2bc-4eb5-b347-cace7036fc99</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,cf30d5fe-a2bc-4eb5-b347-cace7036fc99.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,cf30d5fe-a2bc-4eb5-b347-cace7036fc99.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=cf30d5fe-a2bc-4eb5-b347-cace7036fc99</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Commenting your source is recommended and pretty helpful. But while implementing (e.g. <a href="http://sharptm.de/">SharpTM</a>)
most time it is annoying to scroll through all the big comment blocks. To get an overview
of all class members it would be great to have the opportunity to collapse all comment
blocks above all methods, properties, etc. That's why I tried to find a macro to do
this - without success. So I wrote it by my own <a href="http://www.kynosarges.de/RegionTools.html">based
on a region collapse macro I found here</a>. And this is the modified function to
do the job:
</p>
        <div class="wlWriterSmartContent" id="scid:57F11A72-B0E5-49c7-9094-E3A15BD5B5E6:77bbcf9d-d47c-4cf3-8165-b12e251a47d0" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">
          <pre style="background-color:White;;overflow: auto;">
            <div>
              <!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
              <span style="color: #0000FF;">Public</span>
              <span style="color: #000000;"> IsSummaryCommentsOutlineCollapsed </span>
              <span style="color: #0000FF;">As</span>
              <span style="color: #000000;"> Dictionary(</span>
              <span style="color: #0000FF;">Of</span>
              <span style="color: #000000;"> Document, </span>
              <span style="color: #0000FF;">Boolean</span>
              <span style="color: #000000;">) </span>
              <span style="color: #008000;">'</span>
              <span style="color: #008000;">'</span>
              <span style="color: #008000;"> '</span>
              <span style="color: #008000;">'
Toggling all &lt;summary&gt; comment blocks from collapsed to expanded outline.</span>
              <span style="color: #008000;"> '</span>
              <span style="color: #008000;">'
Please add [Imports System.Collections.Generic] on top of this module.</span>
              <span style="color: #008000;"> '</span>
              <span style="color: #008000;">'</span>
              <span style="color: #008000;">
              </span>
              <span style="color: #0000FF;">Sub</span>
              <span style="color: #000000;"> ToggleSummaryCommentsOutlineExpansion() </span>
              <span style="color: #0000FF;">If</span>
              <span style="color: #000000;"> (DTE.ActiveDocument </span>
              <span style="color: #0000FF;">Is</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">Nothing</span>
              <span style="color: #000000;">) </span>
              <span style="color: #0000FF;">Then</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">Exit
Sub</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">End</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">If</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">If</span>
              <span style="color: #000000;"> (DTE.UndoContext.IsOpen) </span>
              <span style="color: #0000FF;">Then</span>
              <span style="color: #000000;"> DTE.UndoContext.Close() </span>
              <span style="color: #0000FF;">End</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">If</span>
              <span style="color: #000000;"> DTE.SuppressUI </span>
              <span style="color: #000000;">=</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">True</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">Try</span>
              <span style="color: #000000;"> DTE.UndoContext.Open(</span>
              <span style="color: #800000;">"</span>
              <span style="color: #800000;">ToggleSummaryCommentsOutline</span>
              <span style="color: #800000;">"</span>
              <span style="color: #000000;">) </span>
              <span style="color: #0000FF;">Catch</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">End</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">Try</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">If</span>
              <span style="color: #000000;"> (IsSummaryCommentsOutlineCollapsed </span>
              <span style="color: #0000FF;">Is</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">Nothing</span>
              <span style="color: #000000;">) </span>
              <span style="color: #0000FF;">Then</span>
              <span style="color: #000000;"> IsSummaryCommentsOutlineCollapsed </span>
              <span style="color: #000000;">=</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">New</span>
              <span style="color: #000000;"> Dictionary(</span>
              <span style="color: #0000FF;">Of</span>
              <span style="color: #000000;"> Document, </span>
              <span style="color: #0000FF;">Boolean</span>
              <span style="color: #000000;">) </span>
              <span style="color: #0000FF;">End</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">If</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">If</span>
              <span style="color: #000000;"> (</span>
              <span style="color: #0000FF;">Not</span>
              <span style="color: #000000;"> IsSummaryCommentsOutlineCollapsed.ContainsKey(DTE.ActiveDocument)) </span>
              <span style="color: #0000FF;">Then</span>
              <span style="color: #000000;"> IsSummaryCommentsOutlineCollapsed.Add(DTE.ActiveDocument, </span>
              <span style="color: #0000FF;">False</span>
              <span style="color: #000000;">) </span>
              <span style="color: #0000FF;">End</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">If</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">Dim</span>
              <span style="color: #000000;"> objSelection </span>
              <span style="color: #0000FF;">As</span>
              <span style="color: #000000;"> TextSelection </span>
              <span style="color: #000000;">=</span>
              <span style="color: #000000;"> DTE.ActiveDocument.Selection </span>
              <span style="color: #0000FF;">Dim</span>
              <span style="color: #000000;"> line </span>
              <span style="color: #0000FF;">As</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">Integer</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #000000;">=</span>
              <span style="color: #000000;"> objSelection.CurrentLine
objSelection.StartOfDocument() </span>
              <span style="color: #008000;">'</span>
              <span style="color: #008000;"> find
all &lt;summary&gt; blocks</span>
              <span style="color: #008000;">
              </span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">While</span>
              <span style="color: #000000;"> objSelection.FindText(</span>
              <span style="color: #800000;">"</span>
              <span style="color: #800000;">^:b*///:b*\&lt;summary\&gt;.*$</span>
              <span style="color: #800000;">"</span>
              <span style="color: #000000;">,
vsFindOptions.vsFindOptionsRegularExpression </span>
              <span style="color: #0000FF;">Or</span>
              <span style="color: #000000;"> vsFindOptions.vsFindOptionsMatchInHiddenText) </span>
              <span style="color: #0000FF;">If</span>
              <span style="color: #000000;"> (</span>
              <span style="color: #0000FF;">Not</span>
              <span style="color: #000000;"> IsSummaryCommentsOutlineCollapsed.Item(DTE.ActiveDocument)) </span>
              <span style="color: #0000FF;">Then</span>
              <span style="color: #000000;"> DTE.ExecuteCommand(</span>
              <span style="color: #800000;">"</span>
              <span style="color: #800000;">Edit.ToggleOutliningExpansion</span>
              <span style="color: #800000;">"</span>
              <span style="color: #000000;">) </span>
              <span style="color: #0000FF;">End</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">If</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">End</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">While</span>
              <span style="color: #000000;"> IsSummaryCommentsOutlineCollapsed.Item(DTE.ActiveDocument) </span>
              <span style="color: #000000;">=</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">Not</span>
              <span style="color: #000000;"> IsSummaryCommentsOutlineCollapsed.Item(DTE.ActiveDocument)
objSelection.StartOfDocument() objSelection.GotoLine(line) DTE.UndoContext.Close()
DTE.SuppressUI </span>
              <span style="color: #000000;">=</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">False</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">End
Sub</span>
            </div>
          </pre>
          <!-- Code inserted with Steve Dunn's Windows Live Writer Code Formatter Plugin.  http://dunnhq.com -->
        </div>
        <p>
In addition I just assigned a shortcut (Ctrl-M, C) to this macro to provide quick
access while editing my sources.
</p>
        <p>
          <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="319" alt="Assign shortcut to Visual Studio macro" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/VisualStudiomacrotocollapseallSummarycom_BFF8/image_5.png" width="550" border="0" />
        </p>
        <p>
          <strong>Update</strong>: Due to a comment of <a href="http://blogs.compactframework.de/Torsten.Weber/">Torsten</a> to
add an undo option I implemented the support for toggling between collapsed and expanded
mode and the undo functionality. Now running the ToggleSummaryCommentsOutlineExpansion
function will collapse the first time for each document and toggles between expanded
and collapsed mode each time you trigger this method.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=cf30d5fe-a2bc-4eb5-b347-cace7036fc99" />
      </body>
      <title>Visual Studio macro to collapse all &amp;lt;Summary&amp;gt; comment blocks</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,cf30d5fe-a2bc-4eb5-b347-cace7036fc99.aspx</guid>
      <link>http://pixelplastic.de/2008/12/30/VisualStudioMacroToCollapseAllLtSummarygtCommentBlocks.aspx</link>
      <pubDate>Tue, 30 Dec 2008 12:39:16 GMT</pubDate>
      <description>&lt;p&gt;
Commenting your source is recommended and pretty helpful. But while implementing (e.g. &lt;a href="http://sharptm.de/"&gt;SharpTM&lt;/a&gt;)
most time it is annoying to scroll through all the big comment blocks. To get an overview
of all class members it would be great to have the opportunity to collapse all comment
blocks above all methods, properties, etc. That's why I tried to find a macro to do
this - without success. So I wrote it by my own &lt;a href="http://www.kynosarges.de/RegionTools.html"&gt;based
on a region collapse macro I found here&lt;/a&gt;. And this is the modified function to
do the job:
&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:57F11A72-B0E5-49c7-9094-E3A15BD5B5E6:77bbcf9d-d47c-4cf3-8165-b12e251a47d0" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;&lt;pre style="background-color:White;;overflow: auto;"&gt;
&lt;div&gt;
&lt;!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt;&lt;span style="color: #0000FF;"&gt;Public&lt;/span&gt;&lt;span style="color: #000000;"&gt; IsSummaryCommentsOutlineCollapsed &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; Dictionary(&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Of&lt;/span&gt;&lt;span style="color: #000000;"&gt; Document, &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Boolean&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; '&lt;/span&gt;&lt;span style="color: #008000;"&gt;'
Toggling all &amp;lt;summary&amp;gt; comment blocks from collapsed to expanded outline.&lt;/span&gt;&lt;span style="color: #008000;"&gt; '&lt;/span&gt;&lt;span style="color: #008000;"&gt;'
Please add [Imports System.Collections.Generic] on top of this module.&lt;/span&gt;&lt;span style="color: #008000;"&gt; '&lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Sub&lt;/span&gt;&lt;span style="color: #000000;"&gt; ToggleSummaryCommentsOutlineExpansion() &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; (DTE.ActiveDocument &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Is&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Nothing&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Exit
Sub&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; (DTE.UndoContext.IsOpen) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; DTE.UndoContext.Close() &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; DTE.SuppressUI &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;True&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Try&lt;/span&gt;&lt;span style="color: #000000;"&gt; DTE.UndoContext.Open(&lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #800000;"&gt;ToggleSummaryCommentsOutline&lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Catch&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Try&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; (IsSummaryCommentsOutlineCollapsed &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Is&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Nothing&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; IsSummaryCommentsOutlineCollapsed &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;New&lt;/span&gt;&lt;span style="color: #000000;"&gt; Dictionary(&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Of&lt;/span&gt;&lt;span style="color: #000000;"&gt; Document, &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Boolean&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; (&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Not&lt;/span&gt;&lt;span style="color: #000000;"&gt; IsSummaryCommentsOutlineCollapsed.ContainsKey(DTE.ActiveDocument)) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; IsSummaryCommentsOutlineCollapsed.Add(DTE.ActiveDocument, &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;False&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; objSelection &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; TextSelection &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; DTE.ActiveDocument.Selection &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; line &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Integer&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; objSelection.CurrentLine
objSelection.StartOfDocument() &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; find
all &amp;lt;summary&amp;gt; blocks&lt;/span&gt;&lt;span style="color: #008000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;While&lt;/span&gt;&lt;span style="color: #000000;"&gt; objSelection.FindText(&lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #800000;"&gt;^:b*///:b*\&amp;lt;summary\&amp;gt;.*$&lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;,
vsFindOptions.vsFindOptionsRegularExpression &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Or&lt;/span&gt;&lt;span style="color: #000000;"&gt; vsFindOptions.vsFindOptionsMatchInHiddenText) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; (&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Not&lt;/span&gt;&lt;span style="color: #000000;"&gt; IsSummaryCommentsOutlineCollapsed.Item(DTE.ActiveDocument)) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; DTE.ExecuteCommand(&lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #800000;"&gt;Edit.ToggleOutliningExpansion&lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;While&lt;/span&gt;&lt;span style="color: #000000;"&gt; IsSummaryCommentsOutlineCollapsed.Item(DTE.ActiveDocument) &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Not&lt;/span&gt;&lt;span style="color: #000000;"&gt; IsSummaryCommentsOutlineCollapsed.Item(DTE.ActiveDocument)
objSelection.StartOfDocument() objSelection.GotoLine(line) DTE.UndoContext.Close()
DTE.SuppressUI &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;False&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End
Sub&lt;/span&gt;
&lt;/div&gt;
&lt;/pre&gt;
&lt;!-- Code inserted with Steve Dunn's Windows Live Writer Code Formatter Plugin.  http://dunnhq.com --&gt;
&lt;/div&gt;
&lt;p&gt;
In addition I just assigned a shortcut (Ctrl-M, C) to this macro to provide quick
access while editing my sources.
&lt;/p&gt;
&lt;p&gt;
&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="319" alt="Assign shortcut to Visual Studio macro" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/VisualStudiomacrotocollapseallSummarycom_BFF8/image_5.png" width="550" border="0"&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Update&lt;/strong&gt;: Due to a comment of &lt;a href="http://blogs.compactframework.de/Torsten.Weber/"&gt;Torsten&lt;/a&gt; to
add an undo option I implemented the support for toggling between collapsed and expanded
mode and the undo functionality. Now running the ToggleSummaryCommentsOutlineExpansion
function will collapse the first time for each document and toggles between expanded
and collapsed mode each time you trigger this method.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=cf30d5fe-a2bc-4eb5-b347-cace7036fc99" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,cf30d5fe-a2bc-4eb5-b347-cace7036fc99.aspx</comments>
      <category>development</category>
      <category>microsoft</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=7d1441a1-69a2-4f7c-9927-1d18567e3e32</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,7d1441a1-69a2-4f7c-9927-1d18567e3e32.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,7d1441a1-69a2-4f7c-9927-1d18567e3e32.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=7d1441a1-69a2-4f7c-9927-1d18567e3e32</wfw:commentRss>
      <slash:comments>4</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <img src="http://www.pixelplastic.de/content/binary/SharpTM-Logo-256x256.png" border="0" align="right" style="text-align: right; margin: 10px" />
        <p>
After I announced the SharpTM project on the discussion list of the <a href="http://sourceforge.net/projects/tmapi/">TMAPI
project</a> in late October 2008 I now present a first alpha release of this .NET
implementation of a Topic Maps engine. The current version 1.0.91 alpha 1 is just
a library to be used in other projects. Hosting components like a console application,
im- and export functionality and persistence solutions will be released soon. At all
there are some more big issues like optimization to be solved. This first release
was just an attempt to get a working implementation of a Topic Maps implementation
in .NET that passes the TMAPI test cases from the <a href="http://sourceforge.net/projects/tmapinet/">TMAPI.Net
project</a>.
</p>
        <p>
Feel free to check out the sources on the <a href="http://code.google.com/p/sharptm/">project
homepage</a>. Feedback is very welcome. If you want to support this project please
contact me.
</p>
        <p>
To get in touch with topic maps there are several articles to be found on the web: 
</p>
        <ul>
          <li>
            <a href="http://en.wikipedia.org/wiki/Topic_Maps">Topic Maps on Wikipedia</a>
          </li>
          <li>
            <a href="http://msdn.microsoft.com/en-us/library/aa480048.aspx">"An Introduction to
Topic Maps" on MSDN</a>
          </li>
          <li>
            <a href="http://www.ontopia.net/topicmaps/materials/tao.html">The TAO of Topic Maps</a>
          </li>
        </ul>
        <p>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7d1441a1-69a2-4f7c-9927-1d18567e3e32" />
      </body>
      <title>First release of SharpTM</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,7d1441a1-69a2-4f7c-9927-1d18567e3e32.aspx</guid>
      <link>http://pixelplastic.de/2008/12/16/FirstReleaseOfSharpTM.aspx</link>
      <pubDate>Tue, 16 Dec 2008 10:47:06 GMT</pubDate>
      <description>&lt;img src="http://www.pixelplastic.de/content/binary/SharpTM-Logo-256x256.png" border="0" align="right" style="text-align: right; margin: 10px"&gt; 
&lt;p&gt;
After I announced the SharpTM project on the discussion list of the &lt;a href="http://sourceforge.net/projects/tmapi/"&gt;TMAPI
project&lt;/a&gt; in late October 2008 I now present a first alpha release of this .NET
implementation of a Topic Maps engine. The current version 1.0.91 alpha 1 is just
a library to be used in other projects. Hosting components like a console application,
im- and export functionality and persistence solutions will be released soon. At all
there are some more big issues like optimization to be solved. This first release
was just an attempt to get a working implementation of a Topic Maps implementation
in .NET that passes the TMAPI test cases from the &lt;a href="http://sourceforge.net/projects/tmapinet/"&gt;TMAPI.Net
project&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
Feel free to check out the sources on the &lt;a href="http://code.google.com/p/sharptm/"&gt;project
homepage&lt;/a&gt;. Feedback is very welcome. If you want to support this project please
contact me.
&lt;/p&gt;
&lt;p&gt;
To get in touch with topic maps there are several articles to be found on the web: 
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://en.wikipedia.org/wiki/Topic_Maps"&gt;Topic Maps on Wikipedia&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://msdn.microsoft.com/en-us/library/aa480048.aspx"&gt;"An Introduction to
Topic Maps" on MSDN&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://www.ontopia.net/topicmaps/materials/tao.html"&gt;The TAO of Topic Maps&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7d1441a1-69a2-4f7c-9927-1d18567e3e32" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,7d1441a1-69a2-4f7c-9927-1d18567e3e32.aspx</comments>
      <category>development</category>
      <category>topicmaps</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=bded2f84-30e5-4bc7-bc17-ce6a9d62f5fa</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,bded2f84-30e5-4bc7-bc17-ce6a9d62f5fa.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,bded2f84-30e5-4bc7-bc17-ce6a9d62f5fa.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=bded2f84-30e5-4bc7-bc17-ce6a9d62f5fa</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2405.JPG" rel="lightbox[cambodia]" title="Feuershow auf Koh Maak">
          <img title="Feuershow auf Koh Maak" src="http://www.pixelplastic.de/content/binary/IMG_2405.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2501.JPG" rel="lightbox[cambodia]" title="Blauer Kuchen in Trat">
          <img title="Blauer Kuchen in Trat" src="http://www.pixelplastic.de/content/binary/IMG_2501.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2567.JPG" rel="lightbox[cambodia]" title="Angkor Wat">
          <img title="Angkor Wat" src="http://www.pixelplastic.de/content/binary/IMG_2567.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2592.JPG" rel="lightbox[cambodia]" title="Angkor Wat">
          <img title="Angkor Wat" src="http://www.pixelplastic.de/content/binary/IMG_2592.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2716.JPG" rel="lightbox[cambodia]" title="Tuol Sleng in Phnom Penh">
          <img title="Tuol Sleng in Phnom Penh" src="http://www.pixelplastic.de/content/binary/IMG_2716.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2746.JPG" rel="lightbox[cambodia]" title="Fleischmarkt in Phnom Penh">
          <img title="Fleischmarkt in Phnom Penh" src="http://www.pixelplastic.de/content/binary/IMG_2746.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2758.JPG" rel="lightbox[cambodia]" title="Tuk Tuk Fahrt in Phnom Penh">
          <img title="Tuk Tuk Fahrt in Phnom Penh" src="http://www.pixelplastic.de/content/binary/IMG_2758.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2765.JPG" rel="lightbox[cambodia]" title="Fahrt nach Rabbit Island">
          <img title="Fahrt nach Rabbit Island" src="http://www.pixelplastic.de/content/binary/IMG_2765.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2799.JPG" rel="lightbox[cambodia]" title="Kissing Tree on Rabbit Island">
          <img title="Kissing Tree on Rabbit Island" src="http://www.pixelplastic.de/content/binary/IMG_2799.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2839.JPG" rel="lightbox[cambodia]" title="Kinder in Kambodscha">
          <img title="Kinder in Kambodscha" src="http://www.pixelplastic.de/content/binary/IMG_2839.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2850.JPG" rel="lightbox[cambodia]" title="Hundertfüßler">
          <img title="Hundertfüßler" src="http://www.pixelplastic.de/content/binary/IMG_2850.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2898.JPG" rel="lightbox[cambodia]" title="Sonnenuntergang auf Rabbit Island">
          <img title="Sonnenuntergang auf Rabbit Island" src="http://www.pixelplastic.de/content/binary/IMG_2898.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2922.JPG" rel="lightbox[cambodia]" title="Kinder in Kambodscha">
          <img title="Kinder in Kambodscha" src="http://www.pixelplastic.de/content/binary/IMG_2922.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2947.JPG" rel="lightbox[cambodia]" title="Nikolaustag">
          <img title="Nikolaustag" src="http://www.pixelplastic.de/content/binary/IMG_2947.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_2988.JPG" rel="lightbox[cambodia]" title="Zelten im Khao Yai">
          <img title="Zelten im Khao Yai" src="http://www.pixelplastic.de/content/binary/IMG_2988.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_3095.JPG" rel="lightbox[cambodia]" title="Trekking im Khao Yai">
          <img title="Trekking im Khao Yai" src="http://www.pixelplastic.de/content/binary/IMG_3095.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_3178.JPG" rel="lightbox[cambodia]" title="Gähnender Affe im Khao Yai">
          <img title="Gähnender Affe im Khao Yai" src="http://www.pixelplastic.de/content/binary/IMG_3178.JPG" border="0" />
        </a>
        <a href="http://www.pixelplastic.de/content/binary/big_IMG_3203.JPG" rel="lightbox[cambodia]" title="Transportmöglichkeiten in Thailand">
          <img title="Transportmöglichkeiten in Thailand" src="http://www.pixelplastic.de/content/binary/IMG_3203.JPG" border="0" />
        </a>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=bded2f84-30e5-4bc7-bc17-ce6a9d62f5fa" />
      </body>
      <title>Weitere Bilder unserer Reise</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,bded2f84-30e5-4bc7-bc17-ce6a9d62f5fa.aspx</guid>
      <link>http://pixelplastic.de/2008/12/09/WeitereBilderUnsererReise.aspx</link>
      <pubDate>Tue, 09 Dec 2008 18:45:05 GMT</pubDate>
      <description>&lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2405.JPG" rel="lightbox[cambodia]" title="Feuershow auf Koh Maak"&gt;&lt;img title="Feuershow auf Koh Maak" src="http://www.pixelplastic.de/content/binary/IMG_2405.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2501.JPG" rel="lightbox[cambodia]" title="Blauer Kuchen in Trat"&gt;&lt;img title="Blauer Kuchen in Trat" src="http://www.pixelplastic.de/content/binary/IMG_2501.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2567.JPG" rel="lightbox[cambodia]" title="Angkor Wat"&gt;&lt;img title="Angkor Wat" src="http://www.pixelplastic.de/content/binary/IMG_2567.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2592.JPG" rel="lightbox[cambodia]" title="Angkor Wat"&gt;&lt;img title="Angkor Wat" src="http://www.pixelplastic.de/content/binary/IMG_2592.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2716.JPG" rel="lightbox[cambodia]" title="Tuol Sleng in Phnom Penh"&gt;&lt;img title="Tuol Sleng in Phnom Penh" src="http://www.pixelplastic.de/content/binary/IMG_2716.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2746.JPG" rel="lightbox[cambodia]" title="Fleischmarkt in Phnom Penh"&gt;&lt;img title="Fleischmarkt in Phnom Penh" src="http://www.pixelplastic.de/content/binary/IMG_2746.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2758.JPG" rel="lightbox[cambodia]" title="Tuk Tuk Fahrt in Phnom Penh"&gt;&lt;img title="Tuk Tuk Fahrt in Phnom Penh" src="http://www.pixelplastic.de/content/binary/IMG_2758.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2765.JPG" rel="lightbox[cambodia]" title="Fahrt nach Rabbit Island"&gt;&lt;img title="Fahrt nach Rabbit Island" src="http://www.pixelplastic.de/content/binary/IMG_2765.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2799.JPG" rel="lightbox[cambodia]" title="Kissing Tree on Rabbit Island"&gt;&lt;img title="Kissing Tree on Rabbit Island" src="http://www.pixelplastic.de/content/binary/IMG_2799.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2839.JPG" rel="lightbox[cambodia]" title="Kinder in Kambodscha"&gt;&lt;img title="Kinder in Kambodscha" src="http://www.pixelplastic.de/content/binary/IMG_2839.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2850.JPG" rel="lightbox[cambodia]" title="Hundertfüßler"&gt;&lt;img title="Hundertfüßler" src="http://www.pixelplastic.de/content/binary/IMG_2850.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2898.JPG" rel="lightbox[cambodia]" title="Sonnenuntergang auf Rabbit Island"&gt;&lt;img title="Sonnenuntergang auf Rabbit Island" src="http://www.pixelplastic.de/content/binary/IMG_2898.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2922.JPG" rel="lightbox[cambodia]" title="Kinder in Kambodscha"&gt;&lt;img title="Kinder in Kambodscha" src="http://www.pixelplastic.de/content/binary/IMG_2922.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2947.JPG" rel="lightbox[cambodia]" title="Nikolaustag"&gt;&lt;img title="Nikolaustag" src="http://www.pixelplastic.de/content/binary/IMG_2947.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_2988.JPG" rel="lightbox[cambodia]" title="Zelten im Khao Yai"&gt;&lt;img title="Zelten im Khao Yai" src="http://www.pixelplastic.de/content/binary/IMG_2988.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_3095.JPG" rel="lightbox[cambodia]" title="Trekking im Khao Yai"&gt;&lt;img title="Trekking im Khao Yai" src="http://www.pixelplastic.de/content/binary/IMG_3095.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_3178.JPG" rel="lightbox[cambodia]" title="Gähnender Affe im Khao Yai"&gt;&lt;img title="Gähnender Affe im Khao Yai" src="http://www.pixelplastic.de/content/binary/IMG_3178.JPG" border="0"&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/big_IMG_3203.JPG" rel="lightbox[cambodia]" title="Transportmöglichkeiten in Thailand"&gt;&lt;img title="Transportmöglichkeiten in Thailand" src="http://www.pixelplastic.de/content/binary/IMG_3203.JPG" border="0"&gt;&lt;/a&gt; &lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=bded2f84-30e5-4bc7-bc17-ce6a9d62f5fa" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,bded2f84-30e5-4bc7-bc17-ce6a9d62f5fa.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=6a2e2938-2c20-461e-b59a-5796824a1b41</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,6a2e2938-2c20-461e-b59a-5796824a1b41.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,6a2e2938-2c20-461e-b59a-5796824a1b41.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=6a2e2938-2c20-461e-b59a-5796824a1b41</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Auch Alex' Bauch meldete sich mit leichten Krämpfen. Hoffentlich hat er sich nichts
von mir weggeholt. Zur Sicherheit kommen die frei erhältlichen Antibiotika auch bei
ihm zum Einsatz.
</p>
        <p>
Per Bus ging es ziemlich abrupt (kaum am Terminal angekommen fuhr er ab) von Korat
nach Pak Chong, um dort direkt in einen Lokalbus zu springen, der uns zum Eingang
des Nationalparks fuhr. Auffällig waren die Massen von Autos und die vielen großen,
luxuriösen Ressorts auf der 26 km langen Fahrt dort hin. Vor den Toren dann das große
Chaos. Und wie kommen wir hier zu Fuß zum 14 km entfernten Visitors Center im Herzen
des Parks? Hitchhiking war die scheinbar gängige Lösung. Und keine 5 min später hat,
ohne überhaupt etwas dafür getan zu haben ein Pickup angehalten und uns mitgenommen.
Dann die schon vermutete Enttäuschung: alle Unterkünfte ausgebucht - today: full;
tomorrow: full; day after tomorrow: full. Also mussten wir uns ein Zelt ausleihen,
wenn wir hier bleiben wollten. Als einzige Farangs unter all denn geschätzten 200
jugendlichen Thais suchten wir uns einen kleinen Fleck auf dem Campingplatz und schlugen
unser Nachtlager auf. Kaum waren wir fertig, wurden wir von der benachbarten Teeniegruppe
angesprochen, ob wir nicht mit zum Wasserfall kommen wollen? Klar! Also ging es gleich
weiter mit deren Pickup.
</p>
        <p>
Schon erstaunlich, mit welchem Ansatz die Thais in einen Nationalpark fahren. Eigentlich
nur, um die per Auto erreichbaren Highlights abzufahren und dann den Abend in geselliger
Runde zu begießen. Wildlife - nie gehört und uninteressant. Wir erlebten dieses Spektakel,
da wir zum wahrscheinlich ungünstigsten Zeitpunkt anreisten: am Samstag eines langen
Wochenendes (Der König hatte am Freitag Geburtstag). Die erste Nacht war also bitterkalt,
laut und knochenhart. Unsere Laune somit eher auf abfallendem Niveau.
</p>
        <p>
Für den kommenden Morgen, an dem bereits einige Zelte verschwunden waren oder abgebaut
wurden, hatten wir eine dreistündige Trekkingtour geplant. Unser Guide Jen war geschätzte
60, aber topfit und lustig. Aus den drei Stunden wurde aufgrund unserer Neugier nach
Tieren am Ende fast fünf. Wie damals auf Borneo mit Angai war es wieder erstaunlich,
zu sehen, mit welcher Gabe die Parkranger das Getier im dichten Regenwald entdecken.
Leider haben wir keine Gibbons oder andere Säugetiere entdeckt. Dafür verschiedenste
Vogelarten. Gunnar hätte seine wahre Freude daran gehabt. Es ging also aufwärts.
</p>
        <p>
Nach unserer Wanderung haben wir noch einmal einen Versuch im Visitor Center bezüglich
einer besseren Unterkunft unternommen. Und siehe da: es gab freie Bungalows. Nach
dem Mittagessen (was hier im Park nicht wirklich gut war) ging es zurück zum Campingplatz,
wo uns fast die Kinnlade runterfiel. Wo tags zuvor noch Partystimmung mit dutzenden
Zelten herrschte war nun nichts mehr. Nur unser kleines grünes Igluzelt stand mitten
auf weiter Flur in dieser etwas kargen Landschaft. Sehr abenteurlicher Anblick. Nach
dem Abbau unserer Leihunterkunft ging es vollgepackt durch die heiße Nachmittagssonne
zu unserer kleinen Bungalowsiedlung. Auch hier war es erstaunlich ruhig. Okay des
späteren Abends kam das benachbarte Thaipärchen an und versüßte unsere Nachtruhe mit
rhytmisch, animalischen Geräuschen. Schon das zweite Mal, dass Alex und ich diesem
Naturschauspiel beiwohnen können: so auch drei Tage zuvor in Trat, als am Abend meines
fiebrigen Dämmerzustandes eine ca. 40 jährige, hippieske Französin mit einem Thai
intim wurde - direkt auf der Terrasse vor unserem Zimmer. Nicht sehr appetitlich.
</p>
        <p>
Nach dieser nur leicht verbesserten Nacht wurden wir von Gibbonrufen geweckt und konnten
an diesem sonnigen Morgen direkt (ca. 100 m) hinter unseren Bungalowreihen einen springenden
Gibbon für einen kurzen Moment beobachten. Für diesen Tag war eine weitere Trekkingtour
auf eigene Faust geplant. Da nun kaum noch Besucher im Park waren, wurde es schwierig
per Daumenexpress zum zweiten großen 6 km entfernten Campingplatz zu gelangen, wo
der ca. 3 km lange Pfad entlang eines Flusses beginnen sollte. Mit zwei Mitfahrten
klappte es dann aber doch recht einfach. Neben vielen Vögeln (z. B. Kingfisher), Schmetterlingen
und einem Rieseneichhörnchen haben wir sogar ein Krokodil schlummernd am gegenüber
liegenden Ufer entdeckt. Mit dem heutigen Tag hat sich die anfängliche eher negative
Meinung über den Park doch komplett ins Positive verwandelt. Am Abend, also gestern,
haben wir noch die letzten Postkarten fertig geschrieben. Der Leipziger Freundeskreis
kann sich schon mal auf was gefaßt machen. Überraschung im Anmarsch.
</p>
        <p>
Momentan sitzen wir im Expresszug nach Bangkok: dritte Klasse, ohne Aircon, dafür
mit Frisur zerstörendem Fahrtwind. Noch drei Tage, die wir zumindest für die Abendstunden
schon verplant haben. Wir werden uns noch mal mit Agnes und den Mädels, sowie mit
Antonie treffen. Sonst läßt sich die Zeit sicher schnell mit Shoppen und Massieren
lassen verbringen.
</p>
        <p>
PS: Für die letzten drei Blogeinträge versuche ich morgen mal noch Bilder hochzuladen.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6a2e2938-2c20-461e-b59a-5796824a1b41" />
      </body>
      <title>Mich laust der Affe</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,6a2e2938-2c20-461e-b59a-5796824a1b41.aspx</guid>
      <link>http://pixelplastic.de/2008/12/09/MichLaustDerAffe.aspx</link>
      <pubDate>Tue, 09 Dec 2008 14:20:26 GMT</pubDate>
      <description>&lt;p&gt;
Auch Alex' Bauch meldete sich mit leichten Krämpfen. Hoffentlich hat er sich nichts
von mir weggeholt. Zur Sicherheit kommen die frei erhältlichen Antibiotika auch bei
ihm zum Einsatz.
&lt;/p&gt;
&lt;p&gt;
Per Bus ging es ziemlich abrupt (kaum am Terminal angekommen fuhr er ab) von Korat
nach Pak Chong, um dort direkt in einen Lokalbus zu springen, der uns zum Eingang
des Nationalparks fuhr. Auffällig waren die Massen von Autos und die vielen großen,
luxuriösen Ressorts auf der 26 km langen Fahrt dort hin. Vor den Toren dann das große
Chaos. Und wie kommen wir hier zu Fuß zum 14 km entfernten Visitors Center im Herzen
des Parks? Hitchhiking war die scheinbar gängige Lösung. Und keine 5 min später hat,
ohne überhaupt etwas dafür getan zu haben ein Pickup angehalten und uns mitgenommen.
Dann die schon vermutete Enttäuschung: alle Unterkünfte ausgebucht - today: full;
tomorrow: full; day after tomorrow: full. Also mussten wir uns ein Zelt ausleihen,
wenn wir hier bleiben wollten. Als einzige Farangs unter all denn geschätzten 200
jugendlichen Thais suchten wir uns einen kleinen Fleck auf dem Campingplatz und schlugen
unser Nachtlager auf. Kaum waren wir fertig, wurden wir von der benachbarten Teeniegruppe
angesprochen, ob wir nicht mit zum Wasserfall kommen wollen? Klar! Also ging es gleich
weiter mit deren Pickup.
&lt;/p&gt;
&lt;p&gt;
Schon erstaunlich, mit welchem Ansatz die Thais in einen Nationalpark fahren. Eigentlich
nur, um die per Auto erreichbaren Highlights abzufahren und dann den Abend in geselliger
Runde zu begießen. Wildlife - nie gehört und uninteressant. Wir erlebten dieses Spektakel,
da wir zum wahrscheinlich ungünstigsten Zeitpunkt anreisten: am Samstag eines langen
Wochenendes (Der König hatte am Freitag Geburtstag). Die erste Nacht war also bitterkalt,
laut und knochenhart. Unsere Laune somit eher auf abfallendem Niveau.
&lt;/p&gt;
&lt;p&gt;
Für den kommenden Morgen, an dem bereits einige Zelte verschwunden waren oder abgebaut
wurden, hatten wir eine dreistündige Trekkingtour geplant. Unser Guide Jen war geschätzte
60, aber topfit und lustig. Aus den drei Stunden wurde aufgrund unserer Neugier nach
Tieren am Ende fast fünf. Wie damals auf Borneo mit Angai war es wieder erstaunlich,
zu sehen, mit welcher Gabe die Parkranger das Getier im dichten Regenwald entdecken.
Leider haben wir keine Gibbons oder andere Säugetiere entdeckt. Dafür verschiedenste
Vogelarten. Gunnar hätte seine wahre Freude daran gehabt. Es ging also aufwärts.
&lt;/p&gt;
&lt;p&gt;
Nach unserer Wanderung haben wir noch einmal einen Versuch im Visitor Center bezüglich
einer besseren Unterkunft unternommen. Und siehe da: es gab freie Bungalows. Nach
dem Mittagessen (was hier im Park nicht wirklich gut war) ging es zurück zum Campingplatz,
wo uns fast die Kinnlade runterfiel. Wo tags zuvor noch Partystimmung mit dutzenden
Zelten herrschte war nun nichts mehr. Nur unser kleines grünes Igluzelt stand mitten
auf weiter Flur in dieser etwas kargen Landschaft. Sehr abenteurlicher Anblick. Nach
dem Abbau unserer Leihunterkunft ging es vollgepackt durch die heiße Nachmittagssonne
zu unserer kleinen Bungalowsiedlung. Auch hier war es erstaunlich ruhig. Okay des
späteren Abends kam das benachbarte Thaipärchen an und versüßte unsere Nachtruhe mit
rhytmisch, animalischen Geräuschen. Schon das zweite Mal, dass Alex und ich diesem
Naturschauspiel beiwohnen können: so auch drei Tage zuvor in Trat, als am Abend meines
fiebrigen Dämmerzustandes eine ca. 40 jährige, hippieske Französin mit einem Thai
intim wurde - direkt auf der Terrasse vor unserem Zimmer. Nicht sehr appetitlich.
&lt;/p&gt;
&lt;p&gt;
Nach dieser nur leicht verbesserten Nacht wurden wir von Gibbonrufen geweckt und konnten
an diesem sonnigen Morgen direkt (ca. 100 m) hinter unseren Bungalowreihen einen springenden
Gibbon für einen kurzen Moment beobachten. Für diesen Tag war eine weitere Trekkingtour
auf eigene Faust geplant. Da nun kaum noch Besucher im Park waren, wurde es schwierig
per Daumenexpress zum zweiten großen 6 km entfernten Campingplatz zu gelangen, wo
der ca. 3 km lange Pfad entlang eines Flusses beginnen sollte. Mit zwei Mitfahrten
klappte es dann aber doch recht einfach. Neben vielen Vögeln (z. B. Kingfisher), Schmetterlingen
und einem Rieseneichhörnchen haben wir sogar ein Krokodil schlummernd am gegenüber
liegenden Ufer entdeckt. Mit dem heutigen Tag hat sich die anfängliche eher negative
Meinung über den Park doch komplett ins Positive verwandelt. Am Abend, also gestern,
haben wir noch die letzten Postkarten fertig geschrieben. Der Leipziger Freundeskreis
kann sich schon mal auf was gefaßt machen. Überraschung im Anmarsch.
&lt;/p&gt;
&lt;p&gt;
Momentan sitzen wir im Expresszug nach Bangkok: dritte Klasse, ohne Aircon, dafür
mit Frisur zerstörendem Fahrtwind. Noch drei Tage, die wir zumindest für die Abendstunden
schon verplant haben. Wir werden uns noch mal mit Agnes und den Mädels, sowie mit
Antonie treffen. Sonst läßt sich die Zeit sicher schnell mit Shoppen und Massieren
lassen verbringen.
&lt;/p&gt;
&lt;p&gt;
PS: Für die letzten drei Blogeinträge versuche ich morgen mal noch Bilder hochzuladen.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6a2e2938-2c20-461e-b59a-5796824a1b41" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,6a2e2938-2c20-461e-b59a-5796824a1b41.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=1516a537-6019-4e9a-8eaa-ccdd72f917b3</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,1516a537-6019-4e9a-8eaa-ccdd72f917b3.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,1516a537-6019-4e9a-8eaa-ccdd72f917b3.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=1516a537-6019-4e9a-8eaa-ccdd72f917b3</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Korat: Mein erster Nikolaustag bei 30 Grad Außentemperatur im "Tokio Hotel". In Alex'
Tevas stecken eine Wasserflasche und eine Schachtel LM Blue. Meinem Bauch geht's derweil
wieder besser und das Fieber der letzten Tage ist auch weg. Also auf in den Khao Yai
Nationalpark.
</p>
        <p>
Was bisher geschah: Die letzten drei Tage in Trat kamen mir wie ein einziger vor.
Grund dafür waren plötzliche Durchfallprobleme und leichte Benommenheit beim Schlendern
durch dieses langsam laufende Städtchen, an dem wir vor knapp 10 Tagen schon einmal
waren. Dazu kamen Tag nach der Ankunft noch Bauchkrämpfe und zum Abend hin Fieber
bis 38,1°. Also wurde der darauf folgende Tag auf Paracetamol, im Bett und auf dem
Klo erlebt. Nach dem abendlichen Besuch im lokalen Hospital wurde dann auf zusätzliche
Antibiotika gesetzt. Also war der Pillencocktail komplett: Antibiotika, Malarone,
Paracetamol und Tannacomp. Lecker! Das Fieber war am darauf folgenden Tag allerdings
weg und somit konnten Alex und ich mit zwei Tagen Verspätung Trat per Bus in Richtung
Norden verlassen.
</p>
        <p>
Leider kamen wir erst nach 21 Uhr in Korat an, so dass ein direkter Durchmarsch in
den Nationalpark an diesem Tag nicht mehr durchzuführen war. Also Unterkunft suchen.
Dabei zeigten sich mal wieder die thailändischen (asiatischen) Charakterzüge: wenn
man was nicht genau weiß, dann wird irgendetwas gezeigt oder erzählt. So kam es, dass
der Taxifahrer am Busterminal nach unserer Frage, wo wir eigentlich momentan genau
wären, uns auf unserer Lonley Planet Karte das falsche Terminal zeigte. Wir waren
schon etwas verblüfft, dass er uns zu Fuss von Dannen ziehen lies und freudiger Erwartung
wirklich gleich in der Haltestellen-nahen Unterkunft namens "Tokio Hotel" (was wird
uns dort wohl erwarten?) anzukommen. Nach 10 min Fußmarsch durch die warme Nacht,
entlang einer Hauptstraße, hat sich per GPS und Karte kein wirklich stimmiges Bild
ergeben - eigentlich wären es gerade mal 200m laut LP gewesen. Die Zwischenfrage in
einem kleinen Internetcafé, welches wie üblich (auch zu dieser Uhrzeit) nur von jungen
Teenies zum Internetballern benutzt wird, brachte neue Erkentnisse: richtiger Weg,
aber noch weitere 10 min der Straße folgen, am Big C links rum und dann seid ihr da.
Nix da. Immer noch falsch, mitten im Nirgendwo. Aber dann hat's doch klick gemacht:
Wir waren doch am Busterminal 1 angekommen und nicht, wie fälschlich vom Taxifahrer
erfahren, am BT2. Blöd, wenn man einen falschen Ausgangspunkt hat. Mit diesen neuen
Infos erreichten wir nach weiteren 5 Minuten durchgeschwitzt unser Ziel. Mit der Band
Tokio Hotel hatte diese Unterkunft zum Glück nichts am Hut.
</p>
        <p>
Drei Dinge bleiben also zu bemerken:
</p>
        <ol>
          <li>
Der langersehnte Durchfall kam doch noch. Man muss nur ganz feste dran glauben.</li>
          <li>
Meine Pillendosis war quantitativ höher, wenn auch farblich nicht so nett daher kommend
als Jan's Partypackage.</li>
          <li>
Nikolaustag im Warmen ist irgendwie ernüchternd. Wo ist mein Weihnachtskalender? Ich
will Türchen öffnen.</li>
        </ol>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=1516a537-6019-4e9a-8eaa-ccdd72f917b3" />
      </body>
      <title>Was haben Durchfall, Nikolaus und Tokio Hotel mit uns zu tun?</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,1516a537-6019-4e9a-8eaa-ccdd72f917b3.aspx</guid>
      <link>http://pixelplastic.de/2008/12/06/WasHabenDurchfallNikolausUndTokioHotelMitUnsZuTun.aspx</link>
      <pubDate>Sat, 06 Dec 2008 14:17:33 GMT</pubDate>
      <description>&lt;p&gt;
Korat: Mein erster Nikolaustag bei 30 Grad Außentemperatur im "Tokio Hotel". In Alex'
Tevas stecken eine Wasserflasche und eine Schachtel LM Blue. Meinem Bauch geht's derweil
wieder besser und das Fieber der letzten Tage ist auch weg. Also auf in den Khao Yai
Nationalpark.
&lt;/p&gt;
&lt;p&gt;
Was bisher geschah: Die letzten drei Tage in Trat kamen mir wie ein einziger vor.
Grund dafür waren plötzliche Durchfallprobleme und leichte Benommenheit beim Schlendern
durch dieses langsam laufende Städtchen, an dem wir vor knapp 10 Tagen schon einmal
waren. Dazu kamen Tag nach der Ankunft noch Bauchkrämpfe und zum Abend hin Fieber
bis 38,1°. Also wurde der darauf folgende Tag auf Paracetamol, im Bett und auf dem
Klo erlebt. Nach dem abendlichen Besuch im lokalen Hospital wurde dann auf zusätzliche
Antibiotika gesetzt. Also war der Pillencocktail komplett: Antibiotika, Malarone,
Paracetamol und Tannacomp. Lecker! Das Fieber war am darauf folgenden Tag allerdings
weg und somit konnten Alex und ich mit zwei Tagen Verspätung Trat per Bus in Richtung
Norden verlassen.
&lt;/p&gt;
&lt;p&gt;
Leider kamen wir erst nach 21 Uhr in Korat an, so dass ein direkter Durchmarsch in
den Nationalpark an diesem Tag nicht mehr durchzuführen war. Also Unterkunft suchen.
Dabei zeigten sich mal wieder die thailändischen (asiatischen) Charakterzüge: wenn
man was nicht genau weiß, dann wird irgendetwas gezeigt oder erzählt. So kam es, dass
der Taxifahrer am Busterminal nach unserer Frage, wo wir eigentlich momentan genau
wären, uns auf unserer Lonley Planet Karte das falsche Terminal zeigte. Wir waren
schon etwas verblüfft, dass er uns zu Fuss von Dannen ziehen lies und freudiger Erwartung
wirklich gleich in der Haltestellen-nahen Unterkunft namens "Tokio Hotel" (was wird
uns dort wohl erwarten?) anzukommen. Nach 10 min Fußmarsch durch die warme Nacht,
entlang einer Hauptstraße, hat sich per GPS und Karte kein wirklich stimmiges Bild
ergeben - eigentlich wären es gerade mal 200m laut LP gewesen. Die Zwischenfrage in
einem kleinen Internetcafé, welches wie üblich (auch zu dieser Uhrzeit) nur von jungen
Teenies zum Internetballern benutzt wird, brachte neue Erkentnisse: richtiger Weg,
aber noch weitere 10 min der Straße folgen, am Big C links rum und dann seid ihr da.
Nix da. Immer noch falsch, mitten im Nirgendwo. Aber dann hat's doch klick gemacht:
Wir waren doch am Busterminal 1 angekommen und nicht, wie fälschlich vom Taxifahrer
erfahren, am BT2. Blöd, wenn man einen falschen Ausgangspunkt hat. Mit diesen neuen
Infos erreichten wir nach weiteren 5 Minuten durchgeschwitzt unser Ziel. Mit der Band
Tokio Hotel hatte diese Unterkunft zum Glück nichts am Hut.
&lt;/p&gt;
&lt;p&gt;
Drei Dinge bleiben also zu bemerken:
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
Der langersehnte Durchfall kam doch noch. Man muss nur ganz feste dran glauben.&lt;/li&gt;
&lt;li&gt;
Meine Pillendosis war quantitativ höher, wenn auch farblich nicht so nett daher kommend
als Jan's Partypackage.&lt;/li&gt;
&lt;li&gt;
Nikolaustag im Warmen ist irgendwie ernüchternd. Wo ist mein Weihnachtskalender? Ich
will Türchen öffnen.&lt;/li&gt;
&lt;/ol&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=1516a537-6019-4e9a-8eaa-ccdd72f917b3" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,1516a537-6019-4e9a-8eaa-ccdd72f917b3.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=9a98c7ff-5582-4730-a754-71725763fd25</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,9a98c7ff-5582-4730-a754-71725763fd25.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,9a98c7ff-5582-4730-a754-71725763fd25.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=9a98c7ff-5582-4730-a754-71725763fd25</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nachdem wir den ersten Abend auf der Haseninsel doch recht üppig im Gespräch mit den
benachbarten Engländerinnen begossen hatten, war das schlussfolgernde Motto am darauf
folgenden Tag: abhängen, Meeresrauschen auf sich wirken lassen und nicht vergessen
sich einzucremen. Kurzum: nichts tun. Vielleicht mal eine Kokusnuss vom lokalen Pesonal
knacken lassen, um an das erfrischende Innere per Strohhalm zu gelangen. Abends wieder
Sterne gucken und Musik hören bei Kerzenschein.
</p>
        <p>
Am zweiten Tag haben wir es dann doch geschafft die von der "German Family" empfohlene
Inselumrundung zu absolvieren. Das Wetter war auf Grund leichter Bewölkung und einer
milden Briese vom Meer ganz passend. Über kleine Felsufer, vorbei an einsamen Stränden
mit Kuh, Palme, Hund und Schwein folgten wir der Grenze zwischen Meer und Land und
waren nach ca. 2 Stunden wieder an unserer Hütte angekommen. Erst mal eine tropfnasse,
kalte Cola.
</p>
        <p>
Am Abend wollten wir eigentlich einen, dem 1. Advent huldigenden MP3-Player-Jukebox-Contest,
wie letztes Jahr mit Claudi und Pipe im Hotel Ocean in Lopuk Antu veranstalten. Allerdings
initiierte die deutsche Familie ein Lagerfeuer am Strand, wo wir in geselliger Runde
(die vier Gefährten aus Leipzig/Berlin, die "German Family", Anja und Saskia aus Göttingen,
sowie andere Traveller) nach Sternschnuppen Ausschau hielten und dem Knistern verbrennender
Palmwedel lauschten. Das hatte, obgleich der höhren Menschenansammlung, schon Vergleichbares
mit dem Ko Maak Abenteuer von vor drei Jahren mit Gunnar, Antje und Simon.
</p>
        <p>
Am dritten und letzten Inseltag war eigentlich eine Besteigung des zentralen Inselbergs
beschlossen. Doch die Trägheit des Inselkollers lies uns auf unserem Bambuspodest
(Pipe würde erblassen vor Neid) vor dem Nachtlager zu nichts bewegen. So verbrachten
wir auch die letzten Stunden an diesem, man könnte fast sagen, magischen Ort mit Buch
lesen, Rotwein aus der Tüte trinken und Musik über Jan's Miniboxen hören. Am Abend
wurden wir, im Sand sitzend, mit dem besten Sonnenuntergang des Urlaubs belohnt und
konnten bei erneutem Lagerfeuer mit den beiden Mädels aus Göttingen noch mehr Sterne
am Himmel zählen - dafür weniger Sternschnuppen (BTW: Sternschnuppe = Shootingstar
im Englischen, wie wir am ersten Abend von den Engländerinnen erfuhren). Um sich für
die Nacht noch einmal abzukühlen sind Robert und ich noch einmal ins Meer gesprungen
(splitterfaser, so wie der liebe Gott uns schuff) und konnten erneut dieses fantastische
Spektakel der grün-blau leuchtenden Algen erleben. Es ist einfach unbeschreiblich,
wie einem bei jeder Bewegung im Wasser eine schimmernde Aura umgibt. Jeder, der die
Möglichkeit dazu hat in diesen Gewässern zu planschen sollte das unbedingt ausprobieren
- ein unvergessliches Erlebnis.
</p>
        <p>
Am nächsten Morgen ging es sehr früh raus, da unser Boot bereits um 7 Uhr direkt vom
Strand aus losfahren sollte. Das am festländischen Pier wartende Tuk Tuk fuhr uns
dann mit Sack und Pack nach Kampot, wo sich die Wege der Gefährten der letzten 16
Tage trennen sollten. Während Alex und ich die südliche Route entlang des Meeres zur
thailändischen Grenze suchten, sind Jan und Robert von dort aus per Taxi nach Peng
Peng aufgebrochen, um ihre Rückreise nach Deutschland auf Grund der Bangkokproteste
besser koordinieren zu können.
</p>
        <p>
Abgesehen von der leichten Abzocke für die Mopedtaxis (15km; 70 km/h mit Kraxe, Fahrer,
mir/Alex und Handgepäck auf dem Rücken; jeweils 200 Baht) sind wir nach diesem Höllentrip
im Minibus mit reizvoller Landschaft doch noch im Windys in Trat angekommen. Den Abend
verbachten wir mit dem lustigen, leicht verpeilten Engländer Andres bei einigen Chang
und Thaifood vom Nachtmarkt. Dabei endeten wir natürlich wieder in der Bar, wo wir
vor 10 Tagen schon waren und die deutschen Zahlen lehrten. Der Thai mit dem ich diesen
Intensivkurs durchführte war anwesend, hat mich sofort erkannt und gleich wiederholt,
was ich ihm damals beigebracht hatte. Lektion für diesen Abend: die Zahlen 11 bis
20. Später schliefen wir ein.
</p>
        <p>
Was bleibt für diesen Reisebericht zu bemerken? Wahnsinn, was man über drei Tage Nichtstun
alles schreiben kann.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=9a98c7ff-5582-4730-a754-71725763fd25" />
      </body>
      <title>Die vier Häschen sind wieder auf einer Insel</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,9a98c7ff-5582-4730-a754-71725763fd25.aspx</guid>
      <link>http://pixelplastic.de/2008/12/02/DieVierH%c3%a4schenSindWiederAufEinerInsel.aspx</link>
      <pubDate>Tue, 02 Dec 2008 14:13:59 GMT</pubDate>
      <description>&lt;p&gt;
Nachdem wir den ersten Abend auf der Haseninsel doch recht üppig im Gespräch mit den
benachbarten Engländerinnen begossen hatten, war das schlussfolgernde Motto am darauf
folgenden Tag: abhängen, Meeresrauschen auf sich wirken lassen und nicht vergessen
sich einzucremen. Kurzum: nichts tun. Vielleicht mal eine Kokusnuss vom lokalen Pesonal
knacken lassen, um an das erfrischende Innere per Strohhalm zu gelangen. Abends wieder
Sterne gucken und Musik hören bei Kerzenschein.
&lt;/p&gt;
&lt;p&gt;
Am zweiten Tag haben wir es dann doch geschafft die von der "German Family" empfohlene
Inselumrundung zu absolvieren. Das Wetter war auf Grund leichter Bewölkung und einer
milden Briese vom Meer ganz passend. Über kleine Felsufer, vorbei an einsamen Stränden
mit Kuh, Palme, Hund und Schwein folgten wir der Grenze zwischen Meer und Land und
waren nach ca. 2 Stunden wieder an unserer Hütte angekommen. Erst mal eine tropfnasse,
kalte Cola.
&lt;/p&gt;
&lt;p&gt;
Am Abend wollten wir eigentlich einen, dem 1. Advent huldigenden MP3-Player-Jukebox-Contest,
wie letztes Jahr mit Claudi und Pipe im Hotel Ocean in Lopuk Antu veranstalten. Allerdings
initiierte die deutsche Familie ein Lagerfeuer am Strand, wo wir in geselliger Runde
(die vier Gefährten aus Leipzig/Berlin, die "German Family", Anja und Saskia aus Göttingen,
sowie andere Traveller) nach Sternschnuppen Ausschau hielten und dem Knistern verbrennender
Palmwedel lauschten. Das hatte, obgleich der höhren Menschenansammlung, schon Vergleichbares
mit dem Ko Maak Abenteuer von vor drei Jahren mit Gunnar, Antje und Simon.
&lt;/p&gt;
&lt;p&gt;
Am dritten und letzten Inseltag war eigentlich eine Besteigung des zentralen Inselbergs
beschlossen. Doch die Trägheit des Inselkollers lies uns auf unserem Bambuspodest
(Pipe würde erblassen vor Neid) vor dem Nachtlager zu nichts bewegen. So verbrachten
wir auch die letzten Stunden an diesem, man könnte fast sagen, magischen Ort mit Buch
lesen, Rotwein aus der Tüte trinken und Musik über Jan's Miniboxen hören. Am Abend
wurden wir, im Sand sitzend, mit dem besten Sonnenuntergang des Urlaubs belohnt und
konnten bei erneutem Lagerfeuer mit den beiden Mädels aus Göttingen noch mehr Sterne
am Himmel zählen - dafür weniger Sternschnuppen (BTW: Sternschnuppe = Shootingstar
im Englischen, wie wir am ersten Abend von den Engländerinnen erfuhren). Um sich für
die Nacht noch einmal abzukühlen sind Robert und ich noch einmal ins Meer gesprungen
(splitterfaser, so wie der liebe Gott uns schuff) und konnten erneut dieses fantastische
Spektakel der grün-blau leuchtenden Algen erleben. Es ist einfach unbeschreiblich,
wie einem bei jeder Bewegung im Wasser eine schimmernde Aura umgibt. Jeder, der die
Möglichkeit dazu hat in diesen Gewässern zu planschen sollte das unbedingt ausprobieren
- ein unvergessliches Erlebnis.
&lt;/p&gt;
&lt;p&gt;
Am nächsten Morgen ging es sehr früh raus, da unser Boot bereits um 7 Uhr direkt vom
Strand aus losfahren sollte. Das am festländischen Pier wartende Tuk Tuk fuhr uns
dann mit Sack und Pack nach Kampot, wo sich die Wege der Gefährten der letzten 16
Tage trennen sollten. Während Alex und ich die südliche Route entlang des Meeres zur
thailändischen Grenze suchten, sind Jan und Robert von dort aus per Taxi nach Peng
Peng aufgebrochen, um ihre Rückreise nach Deutschland auf Grund der Bangkokproteste
besser koordinieren zu können.
&lt;/p&gt;
&lt;p&gt;
Abgesehen von der leichten Abzocke für die Mopedtaxis (15km; 70 km/h mit Kraxe, Fahrer,
mir/Alex und Handgepäck auf dem Rücken; jeweils 200 Baht) sind wir nach diesem Höllentrip
im Minibus mit reizvoller Landschaft doch noch im Windys in Trat angekommen. Den Abend
verbachten wir mit dem lustigen, leicht verpeilten Engländer Andres bei einigen Chang
und Thaifood vom Nachtmarkt. Dabei endeten wir natürlich wieder in der Bar, wo wir
vor 10 Tagen schon waren und die deutschen Zahlen lehrten. Der Thai mit dem ich diesen
Intensivkurs durchführte war anwesend, hat mich sofort erkannt und gleich wiederholt,
was ich ihm damals beigebracht hatte. Lektion für diesen Abend: die Zahlen 11 bis
20. Später schliefen wir ein.
&lt;/p&gt;
&lt;p&gt;
Was bleibt für diesen Reisebericht zu bemerken? Wahnsinn, was man über drei Tage Nichtstun
alles schreiben kann.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=9a98c7ff-5582-4730-a754-71725763fd25" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,9a98c7ff-5582-4730-a754-71725763fd25.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=f437a7bf-6e20-4640-a4b4-68b087d3b49b</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,f437a7bf-6e20-4640-a4b4-68b087d3b49b.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,f437a7bf-6e20-4640-a4b4-68b087d3b49b.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=f437a7bf-6e20-4640-a4b4-68b087d3b49b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nachdem mein letzter Beitrag auf Grund der miesen Qualität des Internetcafés in Siem
Reap leider nicht online ging (erst heute) und auch sonst kaum Möglichkeiten existierten,
der Umwelt unsere Erlebnisse mitzuteilen, soll nun ein wenig über die restlichen Tage
berichtet werden. Nachdem wir die ach so mystischen Steine rund um Angkor Wat gesehen
hatten, ging es dann doch auf dem schnelleren und günstigeren Weg per Bus (und nicht
mit dem Boot) nach Phnom Penh. Dort angekommen wurden wir wie Frischfleisch im Piranhabecken
von sogenannten Touts umlagert. Diese wollten uns mit ihren Tuk Tuks in verschiedenste
Unterkünfte chauffieren. Nur Sam machte auf Grund seiner guten Englischkenntnisse
einen vertrauenswürdigen Eindruck. Für 3 Dollars ging es also mit ihm zum Tattoo Guest
House, wo wir zwei Nächte geblieben sind. Während Alex sich abends Zeit im Zimmer
nahm um seinen aufkommenden Schnupfen zu bekämpfen waren Robert, Jan und ich noch
am um die Häuser ziehen. Sehr merkwürdig, dass in Peng Peng (als auch in Siep Reap)
bereits um Mitternacht alle Bürgersteige hochgeklappt sind und die Bars schließen.
Aber Spaß hatten wir dennoch.
</p>
        <p>
Am nachfolgenden Tag haben wir uns einen kleinen Kulturplan auferlegt. Zuerst ging
es ins Tuol Sleng Museum. Dem ehemaligen Gefängnis S21 während der Diktatur der Roten
Khmer. Ziemlich heftige Kost, die interessant war aber auch nachdenklich machte. Nach
diesem eher traurigen Erlebnis ging es weiter zum Royal Palace und der Silver Pagoda,
die erste Tempelanlage für Robert und Jan. Dort wurden wir von einem Mönch angesprochen,
der mein Äußeres beeindrucken fand. Ich war an diesem Tag mit roter Fischermannhose
und orangefarbenem T-Shirt unterwegs, so dass ich von weitem ein wenig in den Farben
der Mönche unterwegs war. Zusätzlich fand er meinen Bart ganz witzig. Nach ein wenig
Small Talk kam plötzlich die Bitte um Geld, damit er sich auch so einen tollen Reiseführer,
wie wir ihn in der Hand hielten, kaufen zu können. Irgendwie hat mich dieses Situation
dann doch etwas verwirrt, so dass ich mir (so auch die anderen Jungs) nicht mehr sicher
war, ob dieser Mönch echt ist. Sei es drum, wir gaben ihm die drei Dollars in der
Hoffnung, dass sie wirklich in ein Buch investiert würden.
</p>
        <p>
Beim abschliessenden Versuch einen Happen zum Essen zu finden, sind wir über einen
lokalen Markt gelaufen, der nicht wirklich einlandend aussah. Mit Fliegen besetztes
Fleisch und fischiger Geruch in der Luft veranlaßten uns dann doch per Tuk Tuk zurück
in die Straße unseres Hostels zu fahren, um dort wie gewohnt 3$-Mahlzeiten zu uns
zu nehmen.
</p>
        <p>
Neben dieser scheinbaren 3$-Regel, die in obigem Text mehrfach auftauchen erscheint
und Kambodscha im Vergleich zu Thailand doch recht teuer. Klar ist es immer noch günstig.
Aber in Kombination mit dieser Doppelwährung fühlt man sich permanent über den Tisch
gezogen zu werden, da alles immer mindestens 1$ kostet - von der Cola bis zur Zigarettenpackung.
Einzig die Unterkünfte und das Reisen scheint angemessen bepreist. Aber was soll's,
wir sind im Urlaub.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f437a7bf-6e20-4640-a4b4-68b087d3b49b" />
      </body>
      <title>Auf nach Phnom Penh</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,f437a7bf-6e20-4640-a4b4-68b087d3b49b.aspx</guid>
      <link>http://pixelplastic.de/2008/11/27/AufNachPhnomPenh.aspx</link>
      <pubDate>Thu, 27 Nov 2008 05:12:40 GMT</pubDate>
      <description>&lt;p&gt;
Nachdem mein letzter Beitrag auf Grund der miesen Qualität des Internetcafés in Siem
Reap leider nicht online ging (erst heute) und auch sonst kaum Möglichkeiten existierten,
der Umwelt unsere Erlebnisse mitzuteilen, soll nun ein wenig über die restlichen Tage
berichtet werden. Nachdem wir die ach so mystischen Steine rund um Angkor Wat gesehen
hatten, ging es dann doch auf dem schnelleren und günstigeren Weg per Bus (und nicht
mit dem Boot) nach Phnom Penh. Dort angekommen wurden wir wie Frischfleisch im Piranhabecken
von sogenannten Touts umlagert. Diese wollten uns mit ihren Tuk Tuks in verschiedenste
Unterkünfte chauffieren. Nur Sam machte auf Grund seiner guten Englischkenntnisse
einen vertrauenswürdigen Eindruck. Für 3 Dollars ging es also mit ihm zum Tattoo Guest
House, wo wir zwei Nächte geblieben sind. Während Alex sich abends Zeit im Zimmer
nahm um seinen aufkommenden Schnupfen zu bekämpfen waren Robert, Jan und ich noch
am um die Häuser ziehen. Sehr merkwürdig, dass in Peng Peng (als auch in Siep Reap)
bereits um Mitternacht alle Bürgersteige hochgeklappt sind und die Bars schließen.
Aber Spaß hatten wir dennoch.
&lt;/p&gt;
&lt;p&gt;
Am nachfolgenden Tag haben wir uns einen kleinen Kulturplan auferlegt. Zuerst ging
es ins Tuol Sleng Museum. Dem ehemaligen Gefängnis S21 während der Diktatur der Roten
Khmer. Ziemlich heftige Kost, die interessant war aber auch nachdenklich machte. Nach
diesem eher traurigen Erlebnis ging es weiter zum Royal Palace und der Silver Pagoda,
die erste Tempelanlage für Robert und Jan. Dort wurden wir von einem Mönch angesprochen,
der mein Äußeres beeindrucken fand. Ich war an diesem Tag mit roter Fischermannhose
und orangefarbenem T-Shirt unterwegs, so dass ich von weitem ein wenig in den Farben
der Mönche unterwegs war. Zusätzlich fand er meinen Bart ganz witzig. Nach ein wenig
Small Talk kam plötzlich die Bitte um Geld, damit er sich auch so einen tollen Reiseführer,
wie wir ihn in der Hand hielten, kaufen zu können. Irgendwie hat mich dieses Situation
dann doch etwas verwirrt, so dass ich mir (so auch die anderen Jungs) nicht mehr sicher
war, ob dieser Mönch echt ist. Sei es drum, wir gaben ihm die drei Dollars in der
Hoffnung, dass sie wirklich in ein Buch investiert würden.
&lt;/p&gt;
&lt;p&gt;
Beim abschliessenden Versuch einen Happen zum Essen zu finden, sind wir über einen
lokalen Markt gelaufen, der nicht wirklich einlandend aussah. Mit Fliegen besetztes
Fleisch und fischiger Geruch in der Luft veranlaßten uns dann doch per Tuk Tuk zurück
in die Straße unseres Hostels zu fahren, um dort wie gewohnt 3$-Mahlzeiten zu uns
zu nehmen.
&lt;/p&gt;
&lt;p&gt;
Neben dieser scheinbaren 3$-Regel, die in obigem Text mehrfach auftauchen erscheint
und Kambodscha im Vergleich zu Thailand doch recht teuer. Klar ist es immer noch günstig.
Aber in Kombination mit dieser Doppelwährung fühlt man sich permanent über den Tisch
gezogen zu werden, da alles immer mindestens 1$ kostet - von der Cola bis zur Zigarettenpackung.
Einzig die Unterkünfte und das Reisen scheint angemessen bepreist. Aber was soll's,
wir sind im Urlaub.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f437a7bf-6e20-4640-a4b4-68b087d3b49b" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,f437a7bf-6e20-4640-a4b4-68b087d3b49b.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=3d9f755d-37f3-4a2f-b982-60fa43f0340f</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,3d9f755d-37f3-4a2f-b982-60fa43f0340f.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,3d9f755d-37f3-4a2f-b982-60fa43f0340f.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=3d9f755d-37f3-4a2f-b982-60fa43f0340f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Noch sind wir stark irritiert von dem, was wir hier erleben. Alles, was uns zuvor
berichtet wurde oder wir gelesen hatten trifft so nicht ganz zu: Die Abzockfalle hat
noch nicht zugeschlagen, das Essen ist bisweilen sehr gut und Siem Reap erscheint
in neumodisch westlichem Glanz. Außerdem ist Angkor Wat in meinen Augen nicht wirklich
dieser heilige, mystische Ort, von dem alle reden. Klar war es fantastisch diese Tempelanlagen
zu sehen. Doch stören die vielen Touristen und vor allem der Preis in Kombination
mit den vielen kambodschanischen Händler (oft Kinder), die einem permanent am Zipfel
hängen um Essen, Postkarten oder raubkopierte Bücher zu verkaufen.
</p>
        <p>
Auch Siep Reap entspricht nicht ganz den Erwartungen: während der Großteil der Stadt
ohne Straßenbeleuchtung auskommt und somit ein wenig die vorhandene Armut wiederspiegelt
ist der Bereich um Psar Char mit bunten Lichtern der vielen Bars und Restaurants durchflutet.
Hier treffen sich so ziemlich alle Touristen, die tagsüber die Tempelanlagen um Angkor
Wat besuchten und abends zum Essen ausgehen. Ein sehr komischer Eindruck, der sich
auf Grund dieser beiden Extreme bei mir einbrennt.
</p>
        <p>
Nachdem wir heute Angkor Wat, Angkor Thom und Bayon gesehen haben, sind wir einheitlich
zu dem Schluss gekommen, die Steine Steine sein zu lassen und schon morgen weiter
nach Phnom Penh zu reisen. Genug Kultur. Auch bezüglich der Reise nach Peng Peng (wie
wir gern sagen) haben sich die Pläne ein wenig geändert. Die Fahrt per Boot über den
Tonle Sap haben wir nach Auskunft unseres lokalen Buttlers geknickt, da wohl auf der
vier stündigen Fahrt per Speedboot kaum etwas zu sehen sei und mit 35 $ doch recht
happig zugelangt wird. Also wird es morgen per Bus weiter gehen. Somit haben wir auch
den einen Tag wieder gut gemacht, den wir in Trat für Jan geopfert hatten. Ihm geht's
momentan auch wieder etwas besser. Die Schmerzen sind jetzt in Richtung Schulterblätter
gewandert.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3d9f755d-37f3-4a2f-b982-60fa43f0340f" />
      </body>
      <title>Alles super im Nachbarland</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,3d9f755d-37f3-4a2f-b982-60fa43f0340f.aspx</guid>
      <link>http://pixelplastic.de/2008/11/24/AllesSuperImNachbarland.aspx</link>
      <pubDate>Mon, 24 Nov 2008 05:05:54 GMT</pubDate>
      <description>&lt;p&gt;
Noch sind wir stark irritiert von dem, was wir hier erleben. Alles, was uns zuvor
berichtet wurde oder wir gelesen hatten trifft so nicht ganz zu: Die Abzockfalle hat
noch nicht zugeschlagen, das Essen ist bisweilen sehr gut und Siem Reap erscheint
in neumodisch westlichem Glanz. Außerdem ist Angkor Wat in meinen Augen nicht wirklich
dieser heilige, mystische Ort, von dem alle reden. Klar war es fantastisch diese Tempelanlagen
zu sehen. Doch stören die vielen Touristen und vor allem der Preis in Kombination
mit den vielen kambodschanischen Händler (oft Kinder), die einem permanent am Zipfel
hängen um Essen, Postkarten oder raubkopierte Bücher zu verkaufen.
&lt;/p&gt;
&lt;p&gt;
Auch Siep Reap entspricht nicht ganz den Erwartungen: während der Großteil der Stadt
ohne Straßenbeleuchtung auskommt und somit ein wenig die vorhandene Armut wiederspiegelt
ist der Bereich um Psar Char mit bunten Lichtern der vielen Bars und Restaurants durchflutet.
Hier treffen sich so ziemlich alle Touristen, die tagsüber die Tempelanlagen um Angkor
Wat besuchten und abends zum Essen ausgehen. Ein sehr komischer Eindruck, der sich
auf Grund dieser beiden Extreme bei mir einbrennt.
&lt;/p&gt;
&lt;p&gt;
Nachdem wir heute Angkor Wat, Angkor Thom und Bayon gesehen haben, sind wir einheitlich
zu dem Schluss gekommen, die Steine Steine sein zu lassen und schon morgen weiter
nach Phnom Penh zu reisen. Genug Kultur. Auch bezüglich der Reise nach Peng Peng (wie
wir gern sagen) haben sich die Pläne ein wenig geändert. Die Fahrt per Boot über den
Tonle Sap haben wir nach Auskunft unseres lokalen Buttlers geknickt, da wohl auf der
vier stündigen Fahrt per Speedboot kaum etwas zu sehen sei und mit 35 $ doch recht
happig zugelangt wird. Also wird es morgen per Bus weiter gehen. Somit haben wir auch
den einen Tag wieder gut gemacht, den wir in Trat für Jan geopfert hatten. Ihm geht's
momentan auch wieder etwas besser. Die Schmerzen sind jetzt in Richtung Schulterblätter
gewandert.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3d9f755d-37f3-4a2f-b982-60fa43f0340f" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,3d9f755d-37f3-4a2f-b982-60fa43f0340f.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=ccc06308-cb95-44c2-85b5-3ec92253ada5</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,ccc06308-cb95-44c2-85b5-3ec92253ada5.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,ccc06308-cb95-44c2-85b5-3ec92253ada5.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=ccc06308-cb95-44c2-85b5-3ec92253ada5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Die vier Tage auf Ko Maak haben wirklich gut getan - einfach mal die Seele baumeln
lassen und bei Affenhitze nichts tun. Neben einer kleinen Inselerkundung per Moped
haben wir noch die beiden lustigen Thais Yuu und Pone kennengelernt. Beide sind 25,
kommen aus Bangkok und haben sich auf der Insel ein kleines Holzhaus mit der Cocktailbar
Neverland aufgebaut, um unabhängig vom hektischen Leben in Bangkok zu werden. Letzte
Nacht hatten wir eine wirklich lustige und unterhaltsame Runde, so dass wir die Insel
doch etwas wehmütig verließen.
</p>
        <p>
Allerdings hat es Jan gesundheitlich etwas erwischt, wodurch sein Aufenthalt auf dem
Eiland etwas getrübt war. Er hat während unserer Busfahrt von Bangkok bis hier nach
Trat an der südöstlichen Küste einen steifen Hals bekommen. Leider ist es bis jetzt
noch nicht besser geworden, so dass wir heute hier in Trat im Hospital waren. Auch
die drei verschiedenartigen bunten Pillen konnten bis jetzt noch keine Besserung hervorrufen.
Nun hoffen wir, dass die morgige holpernde Fahrt im Minibus nach Osten über die schlechten
Straßen Kambodschas nicht ganz so schlimm für ihn wird.
</p>
        <p>
Bei all den Horrorgeschichten, haben wir schon ein wenig Bammel vor Kambodscha. Aber
raus gekommen sind ja bisher alle. Unser aktueller Plan: Angkor Wat, mit dem Boot
den Tonle Sap bis nach Phnom Penh und dann weiter nach Kep in den Süden, um auf die
Rabbit Islands zu kommen. Mal sehen, ob das alles so klappt.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ccc06308-cb95-44c2-85b5-3ec92253ada5" />
      </body>
      <title>Schluss mit lustig - morgen geht's nach Kambodscha</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,ccc06308-cb95-44c2-85b5-3ec92253ada5.aspx</guid>
      <link>http://pixelplastic.de/2008/11/23/SchlussMitLustigMorgenGehtsNachKambodscha.aspx</link>
      <pubDate>Sun, 23 Nov 2008 13:30:32 GMT</pubDate>
      <description>&lt;p&gt;
Die vier Tage auf Ko Maak haben wirklich gut getan - einfach mal die Seele baumeln
lassen und bei Affenhitze nichts tun. Neben einer kleinen Inselerkundung per Moped
haben wir noch die beiden lustigen Thais Yuu und Pone kennengelernt. Beide sind 25,
kommen aus Bangkok und haben sich auf der Insel ein kleines Holzhaus mit der Cocktailbar
Neverland aufgebaut, um unabhängig vom hektischen Leben in Bangkok zu werden. Letzte
Nacht hatten wir eine wirklich lustige und unterhaltsame Runde, so dass wir die Insel
doch etwas wehmütig verließen.
&lt;/p&gt;
&lt;p&gt;
Allerdings hat es Jan gesundheitlich etwas erwischt, wodurch sein Aufenthalt auf dem
Eiland etwas getrübt war. Er hat während unserer Busfahrt von Bangkok bis hier nach
Trat an der südöstlichen Küste einen steifen Hals bekommen. Leider ist es bis jetzt
noch nicht besser geworden, so dass wir heute hier in Trat im Hospital waren. Auch
die drei verschiedenartigen bunten Pillen konnten bis jetzt noch keine Besserung hervorrufen.
Nun hoffen wir, dass die morgige holpernde Fahrt im Minibus nach Osten über die schlechten
Straßen Kambodschas nicht ganz so schlimm für ihn wird.
&lt;/p&gt;
&lt;p&gt;
Bei all den Horrorgeschichten, haben wir schon ein wenig Bammel vor Kambodscha. Aber
raus gekommen sind ja bisher alle. Unser aktueller Plan: Angkor Wat, mit dem Boot
den Tonle Sap bis nach Phnom Penh und dann weiter nach Kep in den Süden, um auf die
Rabbit Islands zu kommen. Mal sehen, ob das alles so klappt.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ccc06308-cb95-44c2-85b5-3ec92253ada5" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,ccc06308-cb95-44c2-85b5-3ec92253ada5.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=6e40fae2-b437-4edf-9bff-a45a269e3843</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,6e40fae2-b437-4edf-9bff-a45a269e3843.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,6e40fae2-b437-4edf-9bff-a45a269e3843.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=6e40fae2-b437-4edf-9bff-a45a269e3843</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nach drei Jahren bin ich <a href="&#xA;http://www.pixelplastic.de/2005/09/19/dieLetzteWoche.aspx">wieder
auf Ko Maak</a>. Allein die Anreise mit dem Speedboot hat sich in Hinsicht auf die
Anreisegeschwindigkeit unterschieden. Doch was sich hier auf der Insel verändert hat
ist unbeschreiblich. Neben der komplett neuen Anlegestelle an unserem damaligen Strand
sind in dieser Zeit neue Unterkünfte in Form von Resorts (samt Golfrasen bis zum Meer)
entstanden. Selbst der Bungalow in dem ich damals mit Gunnar, Antje und Simon nächtigte
ist verschwunden. Dennoch existiert TK Huts und sieht ansatzweise so aus wie vorher,
allerdings mit neu gebauten Häuschen und etwas veränderte Strandführung, so dass es
heute nicht mehr möglich wäre ein Lagerfeuer zu machen.
</p>
        <p>
Prinzipiell ist es hier aber immer noch sehr entspannt und absolut relaxend. Vor allem
diesmal mit ordentlich Sonne. In unserer Unterkunft 'Monkey Island' gibt es für 1100
Baht dem Preis entsprechende Hütten in den hinteren Reihen. Gestern abend gab es auf
dem Barpodest (Pipe würden die Augen rausfallen) sitzend/liegend nach dem BarBQ bei
einigen Dosen kühlen Chang Bier Livemusik vom lokalen Rastamann. Nach erholsamer Nacht
unterm Moskitonetz haben wir vier heute Vormittag erst einmal einen kleinen Strandspaziergang
unternommen, um anschliessend in dem kleinen Restaurant an der Inselstraße einen kleinen
Mittagshappen (Pad Thai) einzunehmen. Auch hier war ich vor drei Jahren mit meinen
damaligen Reisebegleitern, da es der einzige geöffnete Laden war, sowohl für Nahrungs-
als auch Bieraufnahme. Doch auch dieses Lokal hat sich mittlerweile vergrößert. Gleich
werde ich mal mit Taucherbrille und Schnorchel bestückt das Meer erobern.
</p>
        <p>
Auch gut zu wissen, dass die Eltern gerade auf dem nicht weit entfernten (30 min per
Boot) Ko Chang residieren.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6e40fae2-b437-4edf-9bff-a45a269e3843" />
      </body>
      <title>Endlich relaxen</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,6e40fae2-b437-4edf-9bff-a45a269e3843.aspx</guid>
      <link>http://pixelplastic.de/2008/11/20/EndlichRelaxen.aspx</link>
      <pubDate>Thu, 20 Nov 2008 08:13:23 GMT</pubDate>
      <description>&lt;p&gt;
Nach drei Jahren bin ich &lt;a href="
http://www.pixelplastic.de/2005/09/19/dieLetzteWoche.aspx"&gt;wieder
auf Ko Maak&lt;/a&gt;. Allein die Anreise mit dem Speedboot hat sich in Hinsicht auf die
Anreisegeschwindigkeit unterschieden. Doch was sich hier auf der Insel verändert hat
ist unbeschreiblich. Neben der komplett neuen Anlegestelle an unserem damaligen Strand
sind in dieser Zeit neue Unterkünfte in Form von Resorts (samt Golfrasen bis zum Meer)
entstanden. Selbst der Bungalow in dem ich damals mit Gunnar, Antje und Simon nächtigte
ist verschwunden. Dennoch existiert TK Huts und sieht ansatzweise so aus wie vorher,
allerdings mit neu gebauten Häuschen und etwas veränderte Strandführung, so dass es
heute nicht mehr möglich wäre ein Lagerfeuer zu machen.
&lt;/p&gt;
&lt;p&gt;
Prinzipiell ist es hier aber immer noch sehr entspannt und absolut relaxend. Vor allem
diesmal mit ordentlich Sonne. In unserer Unterkunft 'Monkey Island' gibt es für 1100
Baht dem Preis entsprechende Hütten in den hinteren Reihen. Gestern abend gab es auf
dem Barpodest (Pipe würden die Augen rausfallen) sitzend/liegend nach dem BarBQ bei
einigen Dosen kühlen Chang Bier Livemusik vom lokalen Rastamann. Nach erholsamer Nacht
unterm Moskitonetz haben wir vier heute Vormittag erst einmal einen kleinen Strandspaziergang
unternommen, um anschliessend in dem kleinen Restaurant an der Inselstraße einen kleinen
Mittagshappen (Pad Thai) einzunehmen. Auch hier war ich vor drei Jahren mit meinen
damaligen Reisebegleitern, da es der einzige geöffnete Laden war, sowohl für Nahrungs-
als auch Bieraufnahme. Doch auch dieses Lokal hat sich mittlerweile vergrößert. Gleich
werde ich mal mit Taucherbrille und Schnorchel bestückt das Meer erobern.
&lt;/p&gt;
&lt;p&gt;
Auch gut zu wissen, dass die Eltern gerade auf dem nicht weit entfernten (30 min per
Boot) Ko Chang residieren.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6e40fae2-b437-4edf-9bff-a45a269e3843" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,6e40fae2-b437-4edf-9bff-a45a269e3843.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=0cadd703-91a7-43b3-bf82-adb588b6c837</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,0cadd703-91a7-43b3-bf82-adb588b6c837.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,0cadd703-91a7-43b3-bf82-adb588b6c837.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=0cadd703-91a7-43b3-bf82-adb588b6c837</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Bedingt durch die Zeitverschiebung und eine etwas längere Nacht am Tag zuvor sind
wir erst relativ spät zum Chatuchak aufgebrochen. Die drei Stunden haben aber dennoch
gereicht, um einen ordentlichen Vorrat an T-Shirts zu ergattern. Für den Abend haben
wir uns mit Nadine verabredet. Nach einer freudigen Umarmung an der Phaya Thai Skytrain
Station ging es auch unmittelbar zum Chinesen um die Ecke, um unsere hungrigen Bäuche
zu beruhigen. Beim Essen und während der anschliessenden Drinks in einer Bar wurden
alle Neuigkeiten ausgetauscht. Natürlich rief während unserer Gespräche auch Deo bei
Nadine an, so dass ich auch mit ihm einige Worte wechseln konnte. Hoffentlich klappt
es, dass er über Weihnachten nach Deutschland kommen kann. Ich will ihm unbedingt
mal Schnee zeigen.
</p>
        <p>
Nachdem wir uns von Nadine verabschiedet hatten ging es per knallendem Taxi zurück
in die Khao San, wo wir erneut in der Khao San Road versackten. Dieser bis nach 6
Uhr andauernde Fehler äußerte sich dann am anschliessenden Morgen... oder besser Nachmittag.
</p>
        <p>
Den halben Tag verpennt, haben wir die restlichen drei Stunden Tageslicht genutzt,
um auf dem <a href="http://de.wikipedia.org/wiki/Chao_Phraya">Chao Phraya</a> eine
kleine Bootsrundfahrt zu machen. Genau zum Sonnenuntergang kamen wir an der letzten
Anlegestelle Central an. Per Skytrain ging es von dort aus weiter zum Lumpini Park,
um dort den sich sportlich betätigenden Thais zuzuschauen. Zu Fuss und per BTS ging's
dann weiter zum Siam Square, um im dortigen MBK Alex' Simkarte aufladen zu lassen.
Nach einer kurzen Erfrischungsrunde haben wir uns mit Antony getroffen, den Alex bereits
in Deutschland per Internet kennengelernt hatte. Mit ihm fuhren wir dann, so wie schon
mit Nadine tags zuvor, zu fünft in einem Taxi nach China Town. Sah bestimmt lustig
aus, wie vier Kerle zusammengequetscht und übereinander sitzend auf der Rückbank transportiert
werden. Ziel der Fahrt war das langersehnte Seafood-Restaurant an einer Straßenecke
mitten in China Town, wo Alex und ich bereits vor sechs Jahren mit Daniela waren.
Selbst der schon neun Jahre in Bangkok lebende Antony kannte diesen Laden noch nicht. 
</p>
        <p>
Zum abendlichen Abschluss fuhr Antony mit uns dann noch in die Soi Cowboy. Ja, wir
wissen, was es dort gibt. Zum Glück waren wir mit Antony dort, der fliessend Thai
sprechen kann, so dass wir nicht zu arg beim Biertrinken belästigt wurden. Dennoch
war uns dieser Ort nicht sehr angenehm. Heute stehen Golden Mountain und eine Klongfahrt
an.
</p>
        <a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2161.JPG">
          <img src="http://www.pixelplastic.de/content/binary/IMG_21611.JPG" border="0" />
        </a>
        <a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2165.JPG">
          <img src="http://www.pixelplastic.de/content/binary/IMG_21651.JPG" border="0" />
        </a>
        <a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2174.JPG">
          <img src="http://www.pixelplastic.de/content/binary/IMG_21741.JPG" border="0" />
        </a>
        <a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2194.JPG">
          <img src="http://www.pixelplastic.de/content/binary/IMG_21941.JPG" border="0" />
        </a>
        <a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2251.JPG">
          <img src="http://www.pixelplastic.de/content/binary/IMG_22511.JPG" border="0" />
        </a>
        <a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2234.JPG">
          <img src="http://www.pixelplastic.de/content/binary/IMG_22341.JPG" border="0" />
        </a>
        <a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2258.JPG">
          <img src="http://www.pixelplastic.de/content/binary/IMG_22581.JPG" border="0" />
        </a>
        <a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2256.JPG">
          <img src="http://www.pixelplastic.de/content/binary/IMG_22561.JPG" border="0" />
        </a>
        <br />
        <a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2206.JPG">
          <img src="http://www.pixelplastic.de/content/binary/IMG_22061.JPG" border="0" />
        </a>
        <a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2189.JPG">
          <img src="http://www.pixelplastic.de/content/binary/IMG_21891.JPG" border="0" />
        </a>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0cadd703-91a7-43b3-bf82-adb588b6c837" />
      </body>
      <title>Menschen treffen</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,0cadd703-91a7-43b3-bf82-adb588b6c837.aspx</guid>
      <link>http://pixelplastic.de/2008/11/18/MenschenTreffen.aspx</link>
      <pubDate>Tue, 18 Nov 2008 03:32:03 GMT</pubDate>
      <description>&lt;p&gt;
Bedingt durch die Zeitverschiebung und eine etwas längere Nacht am Tag zuvor sind
wir erst relativ spät zum Chatuchak aufgebrochen. Die drei Stunden haben aber dennoch
gereicht, um einen ordentlichen Vorrat an T-Shirts zu ergattern. Für den Abend haben
wir uns mit Nadine verabredet. Nach einer freudigen Umarmung an der Phaya Thai Skytrain
Station ging es auch unmittelbar zum Chinesen um die Ecke, um unsere hungrigen Bäuche
zu beruhigen. Beim Essen und während der anschliessenden Drinks in einer Bar wurden
alle Neuigkeiten ausgetauscht. Natürlich rief während unserer Gespräche auch Deo bei
Nadine an, so dass ich auch mit ihm einige Worte wechseln konnte. Hoffentlich klappt
es, dass er über Weihnachten nach Deutschland kommen kann. Ich will ihm unbedingt
mal Schnee zeigen.
&lt;/p&gt;
&lt;p&gt;
Nachdem wir uns von Nadine verabschiedet hatten ging es per knallendem Taxi zurück
in die Khao San, wo wir erneut in der Khao San Road versackten. Dieser bis nach 6
Uhr andauernde Fehler äußerte sich dann am anschliessenden Morgen... oder besser Nachmittag.
&lt;/p&gt;
&lt;p&gt;
Den halben Tag verpennt, haben wir die restlichen drei Stunden Tageslicht genutzt,
um auf dem &lt;a href="http://de.wikipedia.org/wiki/Chao_Phraya"&gt;Chao Phraya&lt;/a&gt; eine
kleine Bootsrundfahrt zu machen. Genau zum Sonnenuntergang kamen wir an der letzten
Anlegestelle Central an. Per Skytrain ging es von dort aus weiter zum Lumpini Park,
um dort den sich sportlich betätigenden Thais zuzuschauen. Zu Fuss und per BTS ging's
dann weiter zum Siam Square, um im dortigen MBK Alex' Simkarte aufladen zu lassen.
Nach einer kurzen Erfrischungsrunde haben wir uns mit Antony getroffen, den Alex bereits
in Deutschland per Internet kennengelernt hatte. Mit ihm fuhren wir dann, so wie schon
mit Nadine tags zuvor, zu fünft in einem Taxi nach China Town. Sah bestimmt lustig
aus, wie vier Kerle zusammengequetscht und übereinander sitzend auf der Rückbank transportiert
werden. Ziel der Fahrt war das langersehnte Seafood-Restaurant an einer Straßenecke
mitten in China Town, wo Alex und ich bereits vor sechs Jahren mit Daniela waren.
Selbst der schon neun Jahre in Bangkok lebende Antony kannte diesen Laden noch nicht. 
&lt;/p&gt;
&lt;p&gt;
Zum abendlichen Abschluss fuhr Antony mit uns dann noch in die Soi Cowboy. Ja, wir
wissen, was es dort gibt. Zum Glück waren wir mit Antony dort, der fliessend Thai
sprechen kann, so dass wir nicht zu arg beim Biertrinken belästigt wurden. Dennoch
war uns dieser Ort nicht sehr angenehm. Heute stehen Golden Mountain und eine Klongfahrt
an.
&lt;/p&gt;
&lt;a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2161.JPG"&gt;&lt;img src="http://www.pixelplastic.de/content/binary/IMG_21611.JPG" border="0"&gt;&lt;/a&gt; &lt;a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2165.JPG"&gt; &lt;img src="http://www.pixelplastic.de/content/binary/IMG_21651.JPG" border="0"&gt;&lt;/a&gt; &lt;a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2174.JPG"&gt; &lt;img src="http://www.pixelplastic.de/content/binary/IMG_21741.JPG" border="0"&gt;&lt;/a&gt; &lt;a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2194.JPG"&gt; &lt;img src="http://www.pixelplastic.de/content/binary/IMG_21941.JPG" border="0"&gt;&lt;/a&gt; &lt;a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2251.JPG"&gt; &lt;img src="http://www.pixelplastic.de/content/binary/IMG_22511.JPG" border="0"&gt;&lt;/a&gt; &lt;a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2234.JPG"&gt; &lt;img src="http://www.pixelplastic.de/content/binary/IMG_22341.JPG" border="0"&gt;&lt;/a&gt; &lt;a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2258.JPG"&gt; &lt;img src="http://www.pixelplastic.de/content/binary/IMG_22581.JPG" border="0"&gt;&lt;/a&gt; &lt;a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2256.JPG"&gt; &lt;img src="http://www.pixelplastic.de/content/binary/IMG_22561.JPG" border="0"&gt;&lt;/a&gt; 
&lt;br&gt;
&lt;a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2206.JPG"&gt; &lt;img src="http://www.pixelplastic.de/content/binary/IMG_22061.JPG" border="0"&gt;&lt;/a&gt; &lt;a rel="lightbox[bangkok]" href="http://www.pixelplastic.de/content/binary/IMG_2189.JPG"&gt; &lt;img src="http://www.pixelplastic.de/content/binary/IMG_21891.JPG" border="0"&gt;&lt;/a&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0cadd703-91a7-43b3-bf82-adb588b6c837" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,0cadd703-91a7-43b3-bf82-adb588b6c837.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=bce9f400-698f-47ac-b1d2-fbe4b9ce0cbb</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,bce9f400-698f-47ac-b1d2-fbe4b9ce0cbb.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,bce9f400-698f-47ac-b1d2-fbe4b9ce0cbb.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=bce9f400-698f-47ac-b1d2-fbe4b9ce0cbb</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Teil zwei der Anreise. Nachdem wir in München mit etwas Verspätung angekommen sind,
ergab sich gleich das nächste Problem. Es war nicht möglich Sitzplätze im Flieger
nebeneinander zu bekommen. Auch für den Weiterflug ab Dubai wurden wir vertröstet.
Also einchecken und warten. Und dann der nächste Schlag: aus technischen Gründen verzögert
sich der Abflug um fast anderthalb Stunden. Scheint aber noch im Bereich des Möglichen,
um den Anschlussflug in Dubai locker zu erreichen. Nur Schade, dass Jan dort auf uns
wartet. So muss er die knapp 10h am Ende doch alleine dort verbringen.
</p>
        <p>
Nachdem das Problem unter der Flugzeugnase behoben wurde konnten wir auch einsteigen
und sind sicher nach Dubai geflogen. Dort schnell noch die Bordingpässe für Robert
und Alex organisiert, kurz frisch gemacht und Jan in die Arme geschlossen. Und weiter
ging die Reise in der letzten Sitzreihe einer 777-300 mit wunderbarem morgendlichen
Anblick der immer größer werdenden Metropolen Dubai während des Abflugs.
</p>
        <p>
Und Boom - Touchdown - Landung in Bangkok. Endlich wieder hier. Auch wenn wir jetzt
hier im warmen Süden sind, war es bei unserer Ankunft um 18:40 lokaler Zeit bereits
dunkel. Nach der Ewigkeiten dauernden Passkontrolle wurde Jan am Gepäckband herb enttäuscht,
als dass seine Kraxe nicht aufzufinden war. Also muss er die nächsten Stunden erst
einmal mit aus unseren Koffern leben. Jetzt aber erst mal Geld tauschen und auf dem
Flughafengebäude orientieren. Nachdem die Daheimgebliebenen kurz über die glückliche
Ankunft informiert wurden, ging es zum Taxistand, um von dort aus mit einem lustigen
Thai zu viert mit all unserem Gepäck im typischen Bangkoker Yellow Cab (Toyota) in
die Khao San zu fahren. Leider war auf Grund des Todes der königlichen Schwester das
Viertel rund um die Khao San fast hermetisch abgesperrt, so dass wir ca. 1km vom Ziel
entfernt aus dem Taxi gekippt wurden. Also ging es vollbepackt die letzten Meter zu
Fuss. Trotz leichter Desorientierung haben wir schlussendlich doch noch zu unserer
ersten Unterkunft gefunden. Schnell frisch gemacht und dann auf in das abendliche
Khao San Leben. Essen, Essen, Essen. Oh wie haben wir das vermisst. Nachdem die Bäuche
vollgeschlagen wurden ging es für einen kleinen Nachtisch (Banana Pancake) noch einmal
über die Khao San um letztendlich wie ein Stein ins Bett zu fallen.
</p>
        <p>
Nachdem wir heute morgen in ein besseres Hostel gewechselt sind, stehen gleich, neben
einigen organisatorischen Dingen (Sim-Karte, Jans Rucksack) und dem Besuch des Chatuchat
Marktes, das freudige Wiedersehen mit Nadine an. Und natürlich essen - heute abend
vorzugsweise mal in China Town.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=bce9f400-698f-47ac-b1d2-fbe4b9ce0cbb" />
      </body>
      <title>Ankunft in Bangkok</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,bce9f400-698f-47ac-b1d2-fbe4b9ce0cbb.aspx</guid>
      <link>http://pixelplastic.de/2008/11/16/AnkunftInBangkok.aspx</link>
      <pubDate>Sun, 16 Nov 2008 06:14:33 GMT</pubDate>
      <description>&lt;p&gt;
Teil zwei der Anreise. Nachdem wir in München mit etwas Verspätung angekommen sind,
ergab sich gleich das nächste Problem. Es war nicht möglich Sitzplätze im Flieger
nebeneinander zu bekommen. Auch für den Weiterflug ab Dubai wurden wir vertröstet.
Also einchecken und warten. Und dann der nächste Schlag: aus technischen Gründen verzögert
sich der Abflug um fast anderthalb Stunden. Scheint aber noch im Bereich des Möglichen,
um den Anschlussflug in Dubai locker zu erreichen. Nur Schade, dass Jan dort auf uns
wartet. So muss er die knapp 10h am Ende doch alleine dort verbringen.
&lt;/p&gt;
&lt;p&gt;
Nachdem das Problem unter der Flugzeugnase behoben wurde konnten wir auch einsteigen
und sind sicher nach Dubai geflogen. Dort schnell noch die Bordingpässe für Robert
und Alex organisiert, kurz frisch gemacht und Jan in die Arme geschlossen. Und weiter
ging die Reise in der letzten Sitzreihe einer 777-300 mit wunderbarem morgendlichen
Anblick der immer größer werdenden Metropolen Dubai während des Abflugs.
&lt;/p&gt;
&lt;p&gt;
Und Boom - Touchdown - Landung in Bangkok. Endlich wieder hier. Auch wenn wir jetzt
hier im warmen Süden sind, war es bei unserer Ankunft um 18:40 lokaler Zeit bereits
dunkel. Nach der Ewigkeiten dauernden Passkontrolle wurde Jan am Gepäckband herb enttäuscht,
als dass seine Kraxe nicht aufzufinden war. Also muss er die nächsten Stunden erst
einmal mit aus unseren Koffern leben. Jetzt aber erst mal Geld tauschen und auf dem
Flughafengebäude orientieren. Nachdem die Daheimgebliebenen kurz über die glückliche
Ankunft informiert wurden, ging es zum Taxistand, um von dort aus mit einem lustigen
Thai zu viert mit all unserem Gepäck im typischen Bangkoker Yellow Cab (Toyota) in
die Khao San zu fahren. Leider war auf Grund des Todes der königlichen Schwester das
Viertel rund um die Khao San fast hermetisch abgesperrt, so dass wir ca. 1km vom Ziel
entfernt aus dem Taxi gekippt wurden. Also ging es vollbepackt die letzten Meter zu
Fuss. Trotz leichter Desorientierung haben wir schlussendlich doch noch zu unserer
ersten Unterkunft gefunden. Schnell frisch gemacht und dann auf in das abendliche
Khao San Leben. Essen, Essen, Essen. Oh wie haben wir das vermisst. Nachdem die Bäuche
vollgeschlagen wurden ging es für einen kleinen Nachtisch (Banana Pancake) noch einmal
über die Khao San um letztendlich wie ein Stein ins Bett zu fallen.
&lt;/p&gt;
&lt;p&gt;
Nachdem wir heute morgen in ein besseres Hostel gewechselt sind, stehen gleich, neben
einigen organisatorischen Dingen (Sim-Karte, Jans Rucksack) und dem Besuch des Chatuchat
Marktes, das freudige Wiedersehen mit Nadine an. Und natürlich essen - heute abend
vorzugsweise mal in China Town.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=bce9f400-698f-47ac-b1d2-fbe4b9ce0cbb" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,bce9f400-698f-47ac-b1d2-fbe4b9ce0cbb.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=b059caf0-8266-403f-be35-39a9ddecd2e4</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,b059caf0-8266-403f-be35-39a9ddecd2e4.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,b059caf0-8266-403f-be35-39a9ddecd2e4.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=b059caf0-8266-403f-be35-39a9ddecd2e4</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
17:41 Noch sitzen wir (Alex, Robert und ich) im Zug, wieder mal mit mehr als einer
halben Stunde Verspätung. Danke Deutsche Bahn! Zum Glück haben wir ausreichend zeitlichen
Puffer, um nicht zu sehr in Hektik zu verfallen. Also vertrödeln wir die Zeit mit
dem Wurstquartett und fragen uns, was die unterschiedlichen Farben der Baretts der
mitfahrenden Bundeswehrsoldaten zu bedeuten haben. So langsam verfliegen die Gedanken,
ob man alles eingepackt hat, ob noch irgendwo offene Projekte sind. Der Urlaub rückt
also schon jetzt ein wenig in das Bewußtsein. 
</p>
        <p>
Ich bin gespannt, ob Jan, der schon längst in der Luft ist, es vor seinem Abflug in
Hamburg noch hin bekommen hat, uns ab Dubai vier zusammenhängende Sitzplätze im gemeinsamen
Anschlussflieger nach Bangkok zu organisieren. Um 3:30 deutscher Zeit setzen wir in
Dubai auf und werden von Jan empfangen. Knapp 3 Stunden später geht's dann weiter
nach Big BKK, wo Nadine auf uns wartet. Doch jetzt heißt es erst einmal: was wird
Emirates im Unterhaltungssektor für uns vorbereitet haben?
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b059caf0-8266-403f-be35-39a9ddecd2e4" />
      </body>
      <title>Im Anflug auf Bangkok</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,b059caf0-8266-403f-be35-39a9ddecd2e4.aspx</guid>
      <link>http://pixelplastic.de/2008/11/14/ImAnflugAufBangkok.aspx</link>
      <pubDate>Fri, 14 Nov 2008 17:33:58 GMT</pubDate>
      <description>&lt;p&gt;
17:41 Noch sitzen wir (Alex, Robert und ich) im Zug, wieder mal mit mehr als einer
halben Stunde Verspätung. Danke Deutsche Bahn! Zum Glück haben wir ausreichend zeitlichen
Puffer, um nicht zu sehr in Hektik zu verfallen. Also vertrödeln wir die Zeit mit
dem Wurstquartett und fragen uns, was die unterschiedlichen Farben der Baretts der
mitfahrenden Bundeswehrsoldaten zu bedeuten haben. So langsam verfliegen die Gedanken,
ob man alles eingepackt hat, ob noch irgendwo offene Projekte sind. Der Urlaub rückt
also schon jetzt ein wenig in das Bewußtsein. 
&lt;/p&gt;
&lt;p&gt;
Ich bin gespannt, ob Jan, der schon längst in der Luft ist, es vor seinem Abflug in
Hamburg noch hin bekommen hat, uns ab Dubai vier zusammenhängende Sitzplätze im gemeinsamen
Anschlussflieger nach Bangkok zu organisieren. Um 3:30 deutscher Zeit setzen wir in
Dubai auf und werden von Jan empfangen. Knapp 3 Stunden später geht's dann weiter
nach Big BKK, wo Nadine auf uns wartet. Doch jetzt heißt es erst einmal: was wird
Emirates im Unterhaltungssektor für uns vorbereitet haben?
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b059caf0-8266-403f-be35-39a9ddecd2e4" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,b059caf0-8266-403f-be35-39a9ddecd2e4.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=909d25a7-49fe-49d2-aa7d-8f02d548b5d6</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,909d25a7-49fe-49d2-aa7d-8f02d548b5d6.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,909d25a7-49fe-49d2-aa7d-8f02d548b5d6.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=909d25a7-49fe-49d2-aa7d-8f02d548b5d6</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
For a long time I was looking for an elegant way to present my tons of pictures to
friends and visitors of my blog. I played around with Silverlight to implement my
own picture viewer, but wasn't happy with all my attempts. Last week I gave Deep Zoom
a chance and now think that I found the right solution for my problem. You may have
seen those fancy samples about the Deep Zoom technology like the <a href="http://memorabilia.hardrock.com/">Hard
Rock Memorabilia</a>. If you just don't know what Deep Zoom is I can recommend this <a href="http://www.ted.com/index.php/speakers/blaise_aguera_y_arcas.html">presentation
of Blaise Aguera y Arcas at TED</a>.
</p>
        <p>
          <a rel="lightbox[SparseImageSceneGenerator]" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_2.png" title="Deep Zoom Composer - compose mode">
            <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 10px 10px; border-right-width: 0px" height="195" alt="Deep Zoom Composer - compose mode" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_thumb.png" width="240" align="right" border="0" />
          </a>
          <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=457B17B7-52BF-4BDA-87A3-FA8A4673F8BF&amp;displaylang=en">Deep
Zoom Composer</a> is a nice and handy tool to generate the tile patterns for each
zoom level of a big image collection and to build up the so called <em>sparse image
scene graph</em> with visual support. This graph contains the layout information (origin
and scaling) of each image that is part of a Deep Zoom scene. Running the export process
(3rd and last step) an XML file named SparseImageSceneGraph.xml will be produced.
This is the source for the sparse image generation process that will create the tiles
tree containing all the small image assets and an Deep Zoom Collection XML file (dzc_output.xml).
The dzc_output.xml file in turn can be interpreted by a Silverlight application using
the <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.multiscaleimage(VS.95).aspx">MultiScaleImage</a> element
to get access to all image tiles in the tree structure. That's the way Deep Zoom Composer
works.
</p>
        <h4>The problem and its solution
</h4>
        <p>
This process has a small problem for me. Looking at the large amount of pictures I've
shoot since 2001 (around 30.000) it would be a hassle to manually arrange those (collection
by collection) using the Deep Zoom Composer, where you have to drag &amp; drop and
scale each image on the surface. Okay there is the "Arrange in a Grid" feature
that (in my opinion) does not result in a very eye-catching layout. That's why I came
to the conclusion of writing a small .NET console application that will manage this
issue for me in an automatic way. <strong>SparseImageSceneGenerator</strong> was born. 
</p>
        <p>
Compared to the process of Deep Zoom Composer this tool will help you to automate
the composing process to generate the SparseImageSceneGraph.xml. The command line
application only needs at least two arguments: a path to the location of your images
and an output path to the resulting SparseImageSceneGraph.xml file. SparseImageSceneGenerator
reads and analysis the properties of all images to create a nearly square shaped layout
for all images. Before going into detail here is the result:
</p>
        <div id="silverlightControlHost">
          <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="400" height="400">
            <param name="source" value="/content/binary/Silverlight/DeepZoom/SparseImageSceneGeneratorSample/Pixelplastic.Silverlight.DeepZoom.Viewer.xap" />
            <param name="background" value="black" />
            <param name="minRuntimeVersion" value="2.0.31005.0" />
            <param name="autoUpgrade" value="true" />
            <param name="initParams" value="DeepZoomImageTileSource=Sample/sample.dzc.xml,DeepZoomImageMetaDataSource=Sample/sample.metadata.xml" />
            <a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;">
              <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" />
            </a>
          </object>
          <iframe style="visibility:hidden;height:0;width:0;border:0px">
          </iframe>
        </div>
        <h4>How it works in detail
</h4>
        <p>
          <a rel="lightbox[SparseImageSceneGenerator]" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_4.png" title="Calculate the sum of aspect ratio of each image">
            <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="114" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_thumb_1.png" width="421" border="0" />
          </a>
        </p>
        <p>
(1) After reading all properties (size and metadata) of all pictures the sum and the
square root of this sum for all aspect ratios will be calculated.
</p>
        <p>
          <a rel="lightbox[SparseImageSceneGenerator]" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_6.png" title="Build the picture grid">
            <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="274" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_thumb_2.png" width="212" border="0" />
          </a>
        </p>
        <p>
(2) The square root now limits the width of a rectangle where each image will be aligned
row by row (including a cell padding between each image). In the figure above the
sum of the aspect ratios of the two portrait images results in 1.333 (plus padding).
The 3rd landscape image (AR = 1.5) does not fit into the row, because it will overflow
the limit of 1.87 (plus padding). So it wraps to the next row. This generated grid
now contains the final layout of all images.
</p>
        <p>
          <a rel="lightbox[SparseImageSceneGenerator]" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_8.png" title="Adjust each row to fit to row width of 1.0">
            <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="284" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_thumb_3.png" width="334" border="0" />
          </a>
        </p>
        <p>
(3) In a final step we have to adjust each rows width to be 1.0. This means scaling
the width and origin of each image and row. That's it.
</p>
        <p>
As you can see in the above sample the result is not a perfect square. It depends
on the number of images. The more, the better (as you can see in the sample above).
In addition SparseImageSceneGenerator supports the SparseImageTool that is part of
the DZC installation to merge smoothly into the whole generation process. SparseImageTool
is the command line version of the export process of DZC to create the final result
based on the SparseImageSceneGraph.xml. The result is (as we know from the DZC export
process) the dzc_output.xml file and the tree of tiles.
</p>
        <h4>Download
</h4>
        <p>
Feel free to download the current version and please give me feedback on this tool: 
</p>
        <ul>
          <li>
            <a href="/content/binary/Silverlight/DeepZoom/SparseImageSceneGenerator-1.1.0.394-binary.zip">SparseImageSceneGenerator-1.1.0.394-binary.zip</a>
          </li>
          <li>
            <a href="/content/binary/Silverlight/DeepZoom/SparseImageSceneGenerator-1.1.0.394-source.zip">SparseImageSceneGenerator-1.1.0.394-source.zip</a>
          </li>
        </ul>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=909d25a7-49fe-49d2-aa7d-8f02d548b5d6" />
      </body>
      <title>Deep Zoom Extension - Sparse Image Scene Generator</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,909d25a7-49fe-49d2-aa7d-8f02d548b5d6.aspx</guid>
      <link>http://pixelplastic.de/2008/10/27/DeepZoomExtensionSparseImageSceneGenerator.aspx</link>
      <pubDate>Mon, 27 Oct 2008 14:04:04 GMT</pubDate>
      <description>&lt;p&gt;
For a long time I was looking for an elegant way to present my tons of pictures to
friends and visitors of my blog. I played around with Silverlight to implement my
own picture viewer, but wasn't happy with all my attempts. Last week I gave Deep Zoom
a chance and now think that I found the right solution for my problem. You may have
seen those fancy samples about the Deep Zoom technology like the &lt;a href="http://memorabilia.hardrock.com/"&gt;Hard
Rock Memorabilia&lt;/a&gt;. If you just don't know what Deep Zoom is I can recommend this &lt;a href="http://www.ted.com/index.php/speakers/blaise_aguera_y_arcas.html"&gt;presentation
of Blaise Aguera y Arcas at TED&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
&lt;a rel="lightbox[SparseImageSceneGenerator]" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_2.png" title="Deep Zoom Composer - compose mode"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 10px 10px; border-right-width: 0px" height="195" alt="Deep Zoom Composer - compose mode" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_thumb.png" width="240" align="right" border="0" /&gt;&lt;/a&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=457B17B7-52BF-4BDA-87A3-FA8A4673F8BF&amp;amp;displaylang=en"&gt;Deep
Zoom Composer&lt;/a&gt; is a nice and handy tool to generate the tile patterns for each
zoom level of a big image collection and to build up the so called &lt;em&gt;sparse image
scene graph&lt;/em&gt; with visual support. This graph contains the layout information (origin
and scaling) of each image that is part of a Deep Zoom scene. Running the export process
(3rd and last step) an XML file named SparseImageSceneGraph.xml will be produced.
This is the source for the sparse image generation process that will create the tiles
tree containing all the small image assets and an Deep Zoom Collection XML file (dzc_output.xml).
The dzc_output.xml file in turn can be interpreted by a Silverlight application using
the &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.multiscaleimage(VS.95).aspx"&gt;MultiScaleImage&lt;/a&gt; element
to get access to all image tiles in the tree structure. That's the way Deep Zoom Composer
works.
&lt;/p&gt;
&lt;h4&gt;The problem and its solution
&lt;/h4&gt;
&lt;p&gt;
This process has a small problem for me. Looking at the large amount of pictures I've
shoot since 2001 (around 30.000) it would be a hassle to manually arrange those (collection
by collection) using the Deep Zoom Composer, where you have to drag &amp;amp; drop and
scale each image on the surface. Okay there is the &amp;quot;Arrange in a Grid&amp;quot; feature
that (in my opinion) does not result in a very eye-catching layout. That's why I came
to the conclusion of writing a small .NET console application that will manage this
issue for me in an automatic way. &lt;strong&gt;SparseImageSceneGenerator&lt;/strong&gt; was born. 
&lt;/p&gt;
&lt;p&gt;
Compared to the process of Deep Zoom Composer this tool will help you to automate
the composing process to generate the SparseImageSceneGraph.xml. The command line
application only needs at least two arguments: a path to the location of your images
and an output path to the resulting SparseImageSceneGraph.xml file. SparseImageSceneGenerator
reads and analysis the properties of all images to create a nearly square shaped layout
for all images. Before going into detail here is the result:
&lt;/p&gt;
&lt;div id="silverlightControlHost"&gt;
&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="400" height="400"&gt;
&lt;param name="source" value="/content/binary/Silverlight/DeepZoom/SparseImageSceneGeneratorSample/Pixelplastic.Silverlight.DeepZoom.Viewer.xap" /&gt;
&lt;param name="background" value="black" /&gt;
&lt;param name="minRuntimeVersion" value="2.0.31005.0" /&gt;
&lt;param name="autoUpgrade" value="true" /&gt;
&lt;param name="initParams" value="DeepZoomImageTileSource=Sample/sample.dzc.xml,DeepZoomImageMetaDataSource=Sample/sample.metadata.xml" /&gt;
&lt;a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;"&gt; &lt;img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" /&gt; &lt;/a&gt; 
&lt;/object&gt;
&lt;iframe style='visibility:hidden;height:0;width:0;border:0px'&gt;
&lt;/iframe&gt;
&lt;/div&gt;
&lt;h4&gt;How it works in detail
&lt;/h4&gt;
&lt;p&gt;
&lt;a rel="lightbox[SparseImageSceneGenerator]" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_4.png" title="Calculate the sum of aspect ratio of each image"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="114" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_thumb_1.png" width="421" border="0" /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
(1) After reading all properties (size and metadata) of all pictures the sum and the
square root of this sum for all aspect ratios will be calculated.
&lt;/p&gt;
&lt;p&gt;
&lt;a rel="lightbox[SparseImageSceneGenerator]" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_6.png" title="Build the picture grid"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="274" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_thumb_2.png" width="212" border="0" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
(2) The square root now limits the width of a rectangle where each image will be aligned
row by row (including a cell padding between each image). In the figure above the
sum of the aspect ratios of the two portrait images results in 1.333 (plus padding).
The 3rd landscape image (AR = 1.5) does not fit into the row, because it will overflow
the limit of 1.87 (plus padding). So it wraps to the next row. This generated grid
now contains the final layout of all images.
&lt;/p&gt;
&lt;p&gt;
&lt;a rel="lightbox[SparseImageSceneGenerator]" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_8.png" title="Adjust each row to fit to row width of 1.0"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="284" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/DeepZoomExtensionSparseImageSceneGenerat_D3C4/image_thumb_3.png" width="334" border="0" /&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
(3) In a final step we have to adjust each rows width to be 1.0. This means scaling
the width and origin of each image and row. That's it.
&lt;/p&gt;
&lt;p&gt;
As you can see in the above sample the result is not a perfect square. It depends
on the number of images. The more, the better (as you can see in the sample above).
In addition SparseImageSceneGenerator supports the SparseImageTool that is part of
the DZC installation to merge smoothly into the whole generation process. SparseImageTool
is the command line version of the export process of DZC to create the final result
based on the SparseImageSceneGraph.xml. The result is (as we know from the DZC export
process) the dzc_output.xml file and the tree of tiles.
&lt;/p&gt;
&lt;h4&gt;Download
&lt;/h4&gt;
&lt;p&gt;
Feel free to download the current version and please give me feedback on this tool: 
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href="/content/binary/Silverlight/DeepZoom/SparseImageSceneGenerator-1.1.0.394-binary.zip"&gt;SparseImageSceneGenerator-1.1.0.394-binary.zip&lt;/a&gt; 
&lt;/li&gt;
&lt;li&gt;
&lt;a href="/content/binary/Silverlight/DeepZoom/SparseImageSceneGenerator-1.1.0.394-source.zip"&gt;SparseImageSceneGenerator-1.1.0.394-source.zip&lt;/a&gt; 
&lt;/li&gt;
&lt;/ul&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=909d25a7-49fe-49d2-aa7d-8f02d548b5d6" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,909d25a7-49fe-49d2-aa7d-8f02d548b5d6.aspx</comments>
      <category>development</category>
      <category>microsoft</category>
      <category>photos</category>
      <category>silverlight</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=185260f7-7ed8-4e05-a105-e6a256470f3d</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,185260f7-7ed8-4e05-a105-e6a256470f3d.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,185260f7-7ed8-4e05-a105-e6a256470f3d.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=185260f7-7ed8-4e05-a105-e6a256470f3d</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
After Microsoft <a href="http://weblogs.asp.net/scottgu/archive/2008/10/14/silverlight-2-released.aspx">released
the final version of Silverlight 2.0 last week</a> I decided to update some of my
samples I published before. Converting the Silverlight 2.0 Beta 2 based samples (<a href="http://www.pixelplastic.de/2008/08/08/VerySimpleSilverlightPhysicsDemo.aspx">physics
attractor</a> and the <a href="http://www.pixelplastic.de/2008/10/03/HandlingTheBezierSegmentAsPathInSilverlight.aspx">bending
bezier curve</a>) was straight forward without any problems. Instead the Silverlight
2.0 alpha based <a href="http://www.pixelplastic.de/2008/01/12/ZoomableUltraHighResolutionSilverlightClock.aspx">clock
sample</a> made some more work. That's why I decided to setup a new solution and start
from scratch by rewriting the code behind files.
</p>
        <div id="silverlightControlHost-clock" style="border-right: gray 1px solid; border-top: gray 1px solid; background-image: url(/content/binary/Silverlight/Clock/screenshot.png); border-left: gray 1px solid; width: 500px; border-bottom: gray 1px solid; background-repeat: no-repeat; height: 300px">
          <object data="data:application/x-silverlight," type="application/x-silverlight-2" width="100%" height="100%">
            <param name="source" value="/content/binary/Silverlight/Clock/Pixelplastic.Silverlight.Clock.xap" />
            <param name="onerror" value="onSilverlightError" />
            <param name="background" value="white" />
            <param name="minRuntimeVersion" value="2.0.31005.0" />
            <param name="autoUpgrade" value="true" />
            <a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;">
              <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" />
            </a>
          </object>
          <iframe style="visibility:hidden;height:0;width:0;border:0px">
          </iframe>
        </div>
        <p>
Feel free to download the source files:
</p>
        <p>
          <a href="/content/binary/Silverlight/Clock/Clock-2.0.zip">Clock-2.0.zip</a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=185260f7-7ed8-4e05-a105-e6a256470f3d" />
      </body>
      <title>Updated Silverlight demos - Clock, Attractor, Bezier</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,185260f7-7ed8-4e05-a105-e6a256470f3d.aspx</guid>
      <link>http://pixelplastic.de/2008/10/20/UpdatedSilverlightDemosClockAttractorBezier.aspx</link>
      <pubDate>Mon, 20 Oct 2008 18:00:04 GMT</pubDate>
      <description>&lt;p&gt;
After Microsoft &lt;a href="http://weblogs.asp.net/scottgu/archive/2008/10/14/silverlight-2-released.aspx"&gt;released
the final version of Silverlight 2.0 last week&lt;/a&gt; I decided to update some of my
samples I published before. Converting the Silverlight 2.0 Beta 2 based samples (&lt;a href="http://www.pixelplastic.de/2008/08/08/VerySimpleSilverlightPhysicsDemo.aspx"&gt;physics
attractor&lt;/a&gt; and the &lt;a href="http://www.pixelplastic.de/2008/10/03/HandlingTheBezierSegmentAsPathInSilverlight.aspx"&gt;bending
bezier curve&lt;/a&gt;) was straight forward without any problems. Instead the Silverlight
2.0 alpha based &lt;a href="http://www.pixelplastic.de/2008/01/12/ZoomableUltraHighResolutionSilverlightClock.aspx"&gt;clock
sample&lt;/a&gt; made some more work. That's why I decided to setup a new solution and start
from scratch by rewriting the code behind files.
&lt;/p&gt;
&lt;div id="silverlightControlHost-clock" style="border-right: gray 1px solid; border-top: gray 1px solid; background-image: url(/content/binary/Silverlight/Clock/screenshot.png); border-left: gray 1px solid; width: 500px; border-bottom: gray 1px solid; background-repeat: no-repeat; height: 300px"&gt;
&lt;object data="data:application/x-silverlight," type="application/x-silverlight-2" width="100%" height="100%"&gt;
&lt;param name="source" value="/content/binary/Silverlight/Clock/Pixelplastic.Silverlight.Clock.xap" /&gt;
&lt;param name="onerror" value="onSilverlightError" /&gt;
&lt;param name="background" value="white" /&gt;
&lt;param name="minRuntimeVersion" value="2.0.31005.0" /&gt;
&lt;param name="autoUpgrade" value="true" /&gt;
&lt;a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;"&gt; &lt;img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" /&gt; &lt;/a&gt; 
&lt;/object&gt;
&lt;iframe style='visibility:hidden;height:0;width:0;border:0px'&gt;
&lt;/iframe&gt;
&lt;/div&gt;
&lt;p&gt;
Feel free to download the source files:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="/content/binary/Silverlight/Clock/Clock-2.0.zip"&gt;Clock-2.0.zip&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=185260f7-7ed8-4e05-a105-e6a256470f3d" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,185260f7-7ed8-4e05-a105-e6a256470f3d.aspx</comments>
      <category>development</category>
      <category>microsoft</category>
      <category>silverlight</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=a95fc6df-da3f-475c-8b63-6df9d1064832</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,a95fc6df-da3f-475c-8b63-6df9d1064832.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,a95fc6df-da3f-475c-8b63-6df9d1064832.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=a95fc6df-da3f-475c-8b63-6df9d1064832</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Gerade sind wir (<a href="http://therightstuff.de/">Alex</a> und ich) wieder daheim
angekommen und haben die letzten Kisten mit all den Resten der letzten beiden Tage
irgendwo in unserer WG untergebracht. Lecker Kuchen von der <a href="http://www.baeckerei-goebecke.de/">Bäckerei
Göbecke</a> stehen auch noch in Hülle und Fülle auf dem Küchentisch.
Neben dem vielen ausnahmslos positivem Feedback der Teilnehmer haben die Organisatoren <a href="http://blogs.compactframework.de/torsten.weber/">Torsten</a>, <a href="http://lieser-online.de/">Stefan</a>,
Alex (und ich irgendwie) mit dauerhaftem Grinsen den <a href="http://www.mediencampus-villa-ida.de/">Mediencampus
Villa Ida in Leipzig</a> verlassen. Es war ein anstrengendes jedoch sehr gewinnbringendes
Wochenende - für alle.
</p>
        <p>
          <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="265" alt="logo" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ZweiwundervolleTag.NETOpenSpaceinLeipzig_13E52/logo_6.png" width="400" border="0" />
        </p>
        <p>
Ich selbst war anfangs skeptisch, ob wir, die Teilnehmer, es schaffen die Veranstaltung
so zu gestalten und zu beleben wie vorgesehen. Also dass sich alle am Geschehen beteiligen,
die Beiträge spontan durch die Teilnehmer erstellt werden und der <a href="http://netopenspace.de/">.NET
Open Space</a> zu dem wurde, was er werden sollte.
</p>
        <p>
Solch eine "Unkonferenz" wie sie hier organisiert wurde füllt für
mich (und alle anderen) genau diese Lücken, die auf gewöhnlichen Konferenzen
entstehen. Die fehlende Kommunikation mit und unter den Teilnehmern wurde auf dem
.NET Open Space durch das zugrunde liegende Konzept ausgebügelt.
</p>
        <p>
Ein dickes Dankeschön an alle <a href="http://netopenspace.de/Teilnehmer.ashx">Teilnehmer</a>,
Sponsoren und vor allem den helfenden Händen (Antje, Jule, Katrin, Steffi, Susi,
Maik der Hausmeister, Matthias und Yvonne), die dieses Ereignis ermöglicht haben.
Ich hoffe wir sehen uns alle spätestens nächstes Jahr wieder - zum .NET
Open Space 2009.
</p>
        <p>
3x Thumbs up. Ein echt cooles Wochenende.
</p>
        <p>
          <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ZweiwundervolleTag.NETOpenSpaceinLeipzig_13E52/IMG_2039_1.jpg" rel="lightbox">
            <img title="Geschafft!" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="300" alt="Geschafft!" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ZweiwundervolleTag.NETOpenSpaceinLeipzig_13E52/IMG_2039_thumb_1.jpg" width="450" border="0" />
          </a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=a95fc6df-da3f-475c-8b63-6df9d1064832" />
      </body>
      <title>Zwei wundervolle Tage - .NET Open Space in Leipzig</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,a95fc6df-da3f-475c-8b63-6df9d1064832.aspx</guid>
      <link>http://pixelplastic.de/2008/10/19/ZweiWundervolleTageNETOpenSpaceInLeipzig.aspx</link>
      <pubDate>Sun, 19 Oct 2008 20:38:41 GMT</pubDate>
      <description>&lt;p&gt;
Gerade sind wir (&lt;a href="http://therightstuff.de/"&gt;Alex&lt;/a&gt; und ich) wieder daheim
angekommen und haben die letzten Kisten mit all den Resten der letzten beiden Tage
irgendwo in unserer WG untergebracht. Lecker Kuchen von der &lt;a href="http://www.baeckerei-goebecke.de/"&gt;B&amp;#228;ckerei
G&amp;#246;becke&lt;/a&gt; stehen auch noch in H&amp;#252;lle und F&amp;#252;lle auf dem K&amp;#252;chentisch.
Neben dem vielen ausnahmslos positivem Feedback der Teilnehmer haben die Organisatoren &lt;a href="http://blogs.compactframework.de/torsten.weber/"&gt;Torsten&lt;/a&gt;, &lt;a href="http://lieser-online.de/"&gt;Stefan&lt;/a&gt;,
Alex (und ich irgendwie) mit dauerhaftem Grinsen den &lt;a href="http://www.mediencampus-villa-ida.de/"&gt;Mediencampus
Villa Ida in Leipzig&lt;/a&gt; verlassen. Es war ein anstrengendes jedoch sehr gewinnbringendes
Wochenende - f&amp;#252;r alle.
&lt;/p&gt;
&lt;p&gt;
&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="265" alt="logo" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ZweiwundervolleTag.NETOpenSpaceinLeipzig_13E52/logo_6.png" width="400" border="0" /&gt; 
&lt;/p&gt;
&lt;p&gt;
Ich selbst war anfangs skeptisch, ob wir, die Teilnehmer, es schaffen die Veranstaltung
so zu gestalten und zu beleben wie vorgesehen. Also dass sich alle am Geschehen beteiligen,
die Beitr&amp;#228;ge spontan durch die Teilnehmer erstellt werden und der &lt;a href="http://netopenspace.de/"&gt;.NET
Open Space&lt;/a&gt; zu dem wurde, was er werden sollte.
&lt;/p&gt;
&lt;p&gt;
Solch eine &amp;quot;Unkonferenz&amp;quot; wie sie hier organisiert wurde f&amp;#252;llt f&amp;#252;r
mich (und alle anderen) genau diese L&amp;#252;cken, die auf gew&amp;#246;hnlichen Konferenzen
entstehen. Die fehlende Kommunikation mit und unter den Teilnehmern wurde auf dem
.NET Open Space durch das zugrunde liegende Konzept ausgeb&amp;#252;gelt.
&lt;/p&gt;
&lt;p&gt;
Ein dickes Dankesch&amp;#246;n an alle &lt;a href="http://netopenspace.de/Teilnehmer.ashx"&gt;Teilnehmer&lt;/a&gt;,
Sponsoren und vor allem den helfenden H&amp;#228;nden (Antje, Jule, Katrin, Steffi, Susi,
Maik der Hausmeister, Matthias und Yvonne), die dieses Ereignis erm&amp;#246;glicht haben.
Ich hoffe wir sehen uns alle sp&amp;#228;testens n&amp;#228;chstes Jahr wieder - zum .NET
Open Space 2009.
&lt;/p&gt;
&lt;p&gt;
3x Thumbs up. Ein echt cooles Wochenende.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ZweiwundervolleTag.NETOpenSpaceinLeipzig_13E52/IMG_2039_1.jpg" rel="lightbox"&gt;&lt;img title="Geschafft!" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="300" alt="Geschafft!" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ZweiwundervolleTag.NETOpenSpaceinLeipzig_13E52/IMG_2039_thumb_1.jpg" width="450" border="0" /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=a95fc6df-da3f-475c-8b63-6df9d1064832" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,a95fc6df-da3f-475c-8b63-6df9d1064832.aspx</comments>
      <category>event</category>
      <category>microsoft</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=3488d2d9-e2a3-4df6-b929-e1a95f41907f</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,3488d2d9-e2a3-4df6-b929-e1a95f41907f.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,3488d2d9-e2a3-4df6-b929-e1a95f41907f.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=3488d2d9-e2a3-4df6-b929-e1a95f41907f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Lustig, wie sie sich mal wieder zwischen mir und meiner Tastatur platziert, um dem
Mauszeiger auf meinen Monitoren zu folgen. Und da soll man arbeiten.
</p>
        <object width="425" height="344">
          <param name="movie" value="http://www.youtube.com/v/5F5BJOw9TNE&amp;hl=de&amp;fs=1" />
          <param name="allowFullScreen" value="true" />
          <embed src="http://www.youtube.com/v/5F5BJOw9TNE&amp;hl=de&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344">
          </embed>
        </object>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3488d2d9-e2a3-4df6-b929-e1a95f41907f" />
      </body>
      <title>Unsere WG-Katze</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,3488d2d9-e2a3-4df6-b929-e1a95f41907f.aspx</guid>
      <link>http://pixelplastic.de/2008/10/06/UnsereWGKatze.aspx</link>
      <pubDate>Mon, 06 Oct 2008 22:28:27 GMT</pubDate>
      <description>&lt;p&gt;
Lustig, wie sie sich mal wieder zwischen mir und meiner Tastatur platziert, um dem
Mauszeiger auf meinen Monitoren zu folgen. Und da soll man arbeiten.
&lt;/p&gt;
&lt;object width="425" height="344"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/5F5BJOw9TNE&amp;amp;hl=de&amp;amp;fs=1"&gt;&gt;
&lt;param name="allowFullScreen" value="true"&gt;&gt;&lt;embed src="http://www.youtube.com/v/5F5BJOw9TNE&amp;amp;hl=de&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;
&lt;/object&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3488d2d9-e2a3-4df6-b929-e1a95f41907f" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,3488d2d9-e2a3-4df6-b929-e1a95f41907f.aspx</comments>
      <category>fun</category>
      <category>videos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=8a7625ee-b97a-40da-b567-2b4be97fb6ec</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,8a7625ee-b97a-40da-b567-2b4be97fb6ec.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,8a7625ee-b97a-40da-b567-2b4be97fb6ec.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=8a7625ee-b97a-40da-b567-2b4be97fb6ec</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
This small sample will show you the possibilities of Silverlights (and WPFs) BezierSegment
class. To draw a bezier curve you have to encapsulate the BezierSegment as part of
a Path element as shown in the following lines of code:
</p>
        <div class="wlWriterSmartContent" id="scid:57F11A72-B0E5-49c7-9094-E3A15BD5B5E6:3ed73a69-282b-4ba6-aaa0-9caccd46514f" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">
          <pre style="background-color:White;;overflow: auto;;font-family:Consolas;font-size:8,25">
            <div>
              <!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
              <span style="color: #008080;"> 1</span>
              <span style="color: #0000FF;">&lt;</span>
              <span style="color: #800000;">Path </span>
              <span style="color: #FF0000;">x:Name</span>
              <span style="color: #0000FF;">="Curve"</span>
              <span style="color: #FF0000;"> Stroke</span>
              <span style="color: #0000FF;">="#FFFFFFFF"</span>
              <span style="color: #FF0000;"> StrokeThickness</span>
              <span style="color: #0000FF;">="2"</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;"> 2</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;</span>
              <span style="color: #800000;">Path.Data</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;"> 3</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;</span>
              <span style="color: #800000;">PathGeometry</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;"> 4</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;</span>
              <span style="color: #800000;">PathGeometry.Figures</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;"> 5</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;</span>
              <span style="color: #800000;">PathFigureCollection</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;"> 6</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;</span>
              <span style="color: #800000;">PathFigure </span>
              <span style="color: #FF0000;">x:Name</span>
              <span style="color: #0000FF;">="Figure"</span>
              <span style="color: #FF0000;"> StartPoint</span>
              <span style="color: #0000FF;">="27,56"</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;"> 7</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;</span>
              <span style="color: #800000;">PathFigure.Segments</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;"> 8</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;</span>
              <span style="color: #800000;">PathSegmentCollection</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;"> 9</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;</span>
              <span style="color: #800000;">BezierSegment </span>
              <span style="color: #FF0000;">x:Name</span>
              <span style="color: #0000FF;">="Bezier"</span>
              <span style="color: #FF0000;"> Point1</span>
              <span style="color: #0000FF;">="227,156"</span>
              <span style="color: #FF0000;"> Point2</span>
              <span style="color: #0000FF;">="267,36"</span>
              <span style="color: #FF0000;"> Point3</span>
              <span style="color: #0000FF;">="380,30"</span>
              <span style="color: #FF0000;">
              </span>
              <span style="color: #0000FF;">/&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;">10</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;/</span>
              <span style="color: #800000;">PathSegmentCollection</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;">11</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;/</span>
              <span style="color: #800000;">PathFigure.Segments</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;">12</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;/</span>
              <span style="color: #800000;">PathFigure</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;">13</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;/</span>
              <span style="color: #800000;">PathFigureCollection</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;">14</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;/</span>
              <span style="color: #800000;">PathGeometry.Figures</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;">15</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;/</span>
              <span style="color: #800000;">PathGeometry</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;">16</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;/</span>
              <span style="color: #800000;">Path.Data</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;">17</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #0000FF;">&lt;/</span>
              <span style="color: #800000;">Path</span>
              <span style="color: #0000FF;">&gt;</span>
              <span style="color: #000000;">
              </span>
              <span style="color: #008080;">18</span>
              <span style="color: #000000;">
              </span>
            </div>
          </pre>
          <!-- Code inserted with Steve Dunn's Windows Live Writer Code Formatter Plugin.  http://dunnhq.com -->
        </div>
        <p>
The curve itself is rendered using four points: the StartPoint attribute of the PathFigure
element and the three points Point1, Point2 and Point3 of the BezierSegment. Try to
play around with this sample and feel free to <a href="/content/binary/Silverlight/BendingBezier/BendingBezier.zip">have
a look into the sources</a>.
</p>
        <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="500" height="400">
          <param name="source" value="/content/binary/Silverlight/BendingBezier/Pixelplastic.Silverlight.BendingBezier.xap" />
          <param name="background" value="black" />
          <param name="minRuntimeVersion" value="2.0.30923.0" />
          <param name="autoUpgrade" value="true" />
          <a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;">
            <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" />
          </a>
        </object>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=8a7625ee-b97a-40da-b567-2b4be97fb6ec" />
      </body>
      <title>Handling the BezierSegment as path in Silverlight</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,8a7625ee-b97a-40da-b567-2b4be97fb6ec.aspx</guid>
      <link>http://pixelplastic.de/2008/10/03/HandlingTheBezierSegmentAsPathInSilverlight.aspx</link>
      <pubDate>Fri, 03 Oct 2008 15:21:42 GMT</pubDate>
      <description>&lt;p&gt;
This small sample will show you the possibilities of Silverlights (and WPFs) BezierSegment
class. To draw a bezier curve you have to encapsulate the BezierSegment as part of
a Path element as shown in the following lines of code:
&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="scid:57F11A72-B0E5-49c7-9094-E3A15BD5B5E6:3ed73a69-282b-4ba6-aaa0-9caccd46514f" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;&lt;pre style="background-color:White;;overflow: auto;;font-family:Consolas;font-size:8,25"&gt;
&lt;div&gt;
&lt;!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt;&lt;span style="color: #008080;"&gt; 1&lt;/span&gt; &lt;span style="color: #0000FF;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000;"&gt;Path &lt;/span&gt;&lt;span style="color: #FF0000;"&gt;x:Name&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;=&amp;quot;Curve&amp;quot;&lt;/span&gt;&lt;span style="color: #FF0000;"&gt; Stroke&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;=&amp;quot;#FFFFFFFF&amp;quot;&lt;/span&gt;&lt;span style="color: #FF0000;"&gt; StrokeThickness&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;=&amp;quot;2&amp;quot;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt; 2&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000;"&gt;Path.Data&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt; 3&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000;"&gt;PathGeometry&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt; 4&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000;"&gt;PathGeometry.Figures&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt; 5&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000;"&gt;PathFigureCollection&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt; 6&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000;"&gt;PathFigure &lt;/span&gt;&lt;span style="color: #FF0000;"&gt;x:Name&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;=&amp;quot;Figure&amp;quot;&lt;/span&gt;&lt;span style="color: #FF0000;"&gt; StartPoint&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;=&amp;quot;27,56&amp;quot;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt; 7&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000;"&gt;PathFigure.Segments&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt; 8&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000;"&gt;PathSegmentCollection&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt; 9&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #800000;"&gt;BezierSegment &lt;/span&gt;&lt;span style="color: #FF0000;"&gt;x:Name&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;=&amp;quot;Bezier&amp;quot;&lt;/span&gt;&lt;span style="color: #FF0000;"&gt; Point1&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;=&amp;quot;227,156&amp;quot;&lt;/span&gt;&lt;span style="color: #FF0000;"&gt; Point2&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;=&amp;quot;267,36&amp;quot;&lt;/span&gt;&lt;span style="color: #FF0000;"&gt; Point3&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;=&amp;quot;380,30&amp;quot;&lt;/span&gt;&lt;span style="color: #FF0000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;/&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt;10&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000;"&gt;PathSegmentCollection&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt;11&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000;"&gt;PathFigure.Segments&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt;12&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000;"&gt;PathFigure&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt;13&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000;"&gt;PathFigureCollection&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt;14&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000;"&gt;PathGeometry.Figures&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt;15&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000;"&gt;PathGeometry&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt;16&lt;/span&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000;"&gt;Path.Data&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt;17&lt;/span&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #800000;"&gt;Path&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008080;"&gt;18&lt;/span&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;/pre&gt;
&lt;!-- Code inserted with Steve Dunn's Windows Live Writer Code Formatter Plugin.  http://dunnhq.com --&gt;
&lt;/div&gt;
&lt;p&gt;
The curve itself is rendered using four points: the StartPoint attribute of the PathFigure
element and the three points Point1, Point2 and Point3 of the BezierSegment. Try to
play around with this sample and feel free to &lt;a href="/content/binary/Silverlight/BendingBezier/BendingBezier.zip"&gt;have
a look into the sources&lt;/a&gt;.
&lt;/p&gt;
&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="500" height="400"&gt;
&lt;param name="source" value="/content/binary/Silverlight/BendingBezier/Pixelplastic.Silverlight.BendingBezier.xap" /&gt;
&lt;param name="background" value="black" /&gt;
&lt;param name="minRuntimeVersion" value="2.0.30923.0" /&gt;
&lt;param name="autoUpgrade" value="true" /&gt;
&lt;a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;"&gt; &lt;img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" /&gt; &lt;/a&gt; 
&lt;/object&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=8a7625ee-b97a-40da-b567-2b4be97fb6ec" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,8a7625ee-b97a-40da-b567-2b4be97fb6ec.aspx</comments>
      <category>development</category>
      <category>silverlight</category>
      <category>wpf</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=683c771d-a5d4-48cd-86d6-e95a5d8e5110</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,683c771d-a5d4-48cd-86d6-e95a5d8e5110.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,683c771d-a5d4-48cd-86d6-e95a5d8e5110.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=683c771d-a5d4-48cd-86d6-e95a5d8e5110</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
After I switched my Vista logon background with <a href="http://www.stardock.com/products/logonstudio/">LogonStudio</a> to
the cloudy sky (DanumValley-BlueSky) I decided to publish some of my wallpapers. These
are all shot with my Canon EOS 20D.
</p>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Brandenburg-Butterfly.jpg" rel="lightbox[wallpaper]" title="Brandenburg-Butterfly.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Brandenburg-Butterfly.jpg" alt="Brandenburg-Butterfly.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Brandenburg-Butterfly.jpg" title="Download as 1600x1200 jpg">Brandenburg-Butterfly.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Brandenburg-Butterfly.jpg" title="Download as 1920x1200 jpg">Brandenburg-Butterfly.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Brandenburg-Gras.jpg" rel="lightbox[wallpaper]" title="Brandenburg-Gras.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Brandenburg-Gras.jpg" alt="Brandenburg-Gras.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Brandenburg-Gras.jpg" title="Download as 1600x1200 jpg">Brandenburg-Gras.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Brandenburg-Gras.jpg" title="Download as 1920x1200 jpg">Brandenburg-Gras.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Brandenburg-Reed.jpg" rel="lightbox[wallpaper]" title="Brandenburg-Reed.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Brandenburg-Reed.jpg" alt="Brandenburg-Reed.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Brandenburg-Reed.jpg" title="Download as 1600x1200 jpg">Brandenburg-Reed.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Brandenburg-Reed.jpg" title="Download as 1920x1200 jpg">Brandenburg-Reed.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Brandenburg-SeaGulls.jpg" rel="lightbox[wallpaper]" title="Brandenburg-SeaGulls.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Brandenburg-SeaGulls.jpg" alt="Brandenburg-SeaGulls.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Brandenburg-SeaGulls.jpg" title="Download as 1600x1200 jpg">Brandenburg-SeaGulls.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Brandenburg-SeaGulls.jpg" title="Download as 1920x1200 jpg">Brandenburg-SeaGulls.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Brockhausstrasse-Herbs.jpg" rel="lightbox[wallpaper]" title="Brockhausstrasse-Herbs.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Brockhausstrasse-Herbs.jpg" alt="Brockhausstrasse-Herbs.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Brockhausstrasse-Herbs.jpg" title="Download as 1600x1200 jpg">Brockhausstrasse-Herbs.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Brockhausstrasse-Herbs.jpg" title="Download as 1920x1200 jpg">Brockhausstrasse-Herbs.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Danmark-Construction.jpg" rel="lightbox[wallpaper]" title="Danmark-Construction.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Danmark-Construction.jpg" alt="Danmark-Construction.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Danmark-Construction.jpg" title="Download as 1600x1200 jpg">Danmark-Construction.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Danmark-Construction.jpg" title="Download as 1920x1200 jpg">Danmark-Construction.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Danmark-Kiosk.jpg" rel="lightbox[wallpaper]" title="Danmark-Kiosk.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Danmark-Kiosk.jpg" alt="Danmark-Kiosk.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Danmark-Kiosk.jpg" title="Download as 1600x1200 jpg">Danmark-Kiosk.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Danmark-Kiosk.jpg" title="Download as 1920x1200 jpg">Danmark-Kiosk.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Danmark-Sunset.jpg" rel="lightbox[wallpaper]" title="Danmark-Sunset.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Danmark-Sunset.jpg" alt="Danmark-Sunset.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Danmark-Sunset.jpg" title="Download as 1600x1200 jpg">Danmark-Sunset.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Danmark-Sunset.jpg" title="Download as 1920x1200 jpg">Danmark-Sunset.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Danmark-TrafficSign.jpg" rel="lightbox[wallpaper]" title="Danmark-TrafficSign.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Danmark-TrafficSign.jpg" alt="Danmark-TrafficSign.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Danmark-TrafficSign.jpg" title="Download as 1600x1200 jpg">Danmark-TrafficSign.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Danmark-TrafficSign.jpg" title="Download as 1920x1200 jpg">Danmark-TrafficSign.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/DanumValley-BlueSky.jpg" rel="lightbox[wallpaper]" title="DanumValley-BlueSky.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/DanumValley-BlueSky.jpg" alt="DanumValley-BlueSky.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/DanumValley-BlueSky.jpg" title="Download as 1600x1200 jpg">DanumValley-BlueSky.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/DanumValley-BlueSky.jpg" title="Download as 1920x1200 jpg">DanumValley-BlueSky.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/DanumValley-Bugs.jpg" rel="lightbox[wallpaper]" title="DanumValley-Bugs.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/DanumValley-Bugs.jpg" alt="DanumValley-Bugs.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/DanumValley-Bugs.jpg" title="Download as 1600x1200 jpg">DanumValley-Bugs.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/DanumValley-Bugs.jpg" title="Download as 1920x1200 jpg">DanumValley-Bugs.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/DanumValley-Butterfly.jpg" rel="lightbox[wallpaper]" title="DanumValley-Butterfly.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/DanumValley-Butterfly.jpg" alt="DanumValley-Butterfly.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/DanumValley-Butterfly.jpg" title="Download as 1600x1200 jpg">DanumValley-Butterfly.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/DanumValley-Butterfly.jpg" title="Download as 1920x1200 jpg">DanumValley-Butterfly.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/DanumValley-DuskyJungle.jpg" rel="lightbox[wallpaper]" title="DanumValley-DuskyJungle.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/DanumValley-DuskyJungle.jpg" alt="DanumValley-DuskyJungle.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/DanumValley-DuskyJungle.jpg" title="Download as 1600x1200 jpg">DanumValley-DuskyJungle.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/DanumValley-DuskyJungle.jpg" title="Download as 1920x1200 jpg">DanumValley-DuskyJungle.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/DanumValley-Night.jpg" rel="lightbox[wallpaper]" title="DanumValley-Night.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/DanumValley-Night.jpg" alt="DanumValley-Night.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/DanumValley-Night.jpg" title="Download as 1600x1200 jpg">DanumValley-Night.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/DanumValley-Night.jpg" title="Download as 1920x1200 jpg">DanumValley-Night.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/DanumValley-Sunrise.jpg" rel="lightbox[wallpaper]" title="DanumValley-Sunrise.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/DanumValley-Sunrise.jpg" alt="DanumValley-Sunrise.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/DanumValley-Sunrise.jpg" title="Download as 1600x1200 jpg">DanumValley-Sunrise.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/DanumValley-Sunrise.jpg" title="Download as 1920x1200 jpg">DanumValley-Sunrise.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Food-MoldyBellPepper.jpg" rel="lightbox[wallpaper]" title="Food-MoldyBellPepper.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Food-MoldyBellPepper.jpg" alt="Food-MoldyBellPepper.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Food-MoldyBellPepper.jpg" title="Download as 1600x1200 jpg">Food-MoldyBellPepper.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Food-MoldyBellPepper.jpg" title="Download as 1920x1200 jpg">Food-MoldyBellPepper.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Mandalay-CeilingFan.jpg" rel="lightbox[wallpaper]" title="Mandalay-CeilingFan.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Mandalay-CeilingFan.jpg" alt="Mandalay-CeilingFan.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Mandalay-CeilingFan.jpg" title="Download as 1600x1200 jpg">Mandalay-CeilingFan.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Mandalay-CeilingFan.jpg" title="Download as 1920x1200 jpg">Mandalay-CeilingFan.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Obergeissendorf-Fire.jpg" rel="lightbox[wallpaper]" title="Obergeissendorf-Fire.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Obergeissendorf-Fire.jpg" alt="Obergeissendorf-Fire.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Obergeissendorf-Fire.jpg" title="Download as 1600x1200 jpg">Obergeissendorf-Fire.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Obergeissendorf-Fire.jpg" title="Download as 1920x1200 jpg">Obergeissendorf-Fire.jpg
(1920x1200)</a>
        </div>
        <div style="height: 80px; padding-bottom: 2em">
          <a href="specials/wallpapers/Obergeissendorf-SparklingFire.jpg" rel="lightbox[wallpaper]" title="Obergeissendorf-SparklingFire.jpg" style="float: left; margin-right: 1em">
            <img src="specials/wallpapers/thumbs/Obergeissendorf-SparklingFire.jpg" alt="Obergeissendorf-SparklingFire.jpg" title="" />
          </a>
          <a href="specials/wallpapers/1600x1200/Obergeissendorf-SparklingFire.jpg" title="Download as 1600x1200 jpg">Obergeissendorf-SparklingFire.jpg
(1600x1200)</a>
          <br />
          <a href="specials/wallpapers/1920x1200/Obergeissendorf-SparklingFire.jpg" title="Download as 1920x1200 jpg">Obergeissendorf-SparklingFire.jpg
(1920x1200)</a>
        </div>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=683c771d-a5d4-48cd-86d6-e95a5d8e5110" />
      </body>
      <title>Wallpapers for free</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,683c771d-a5d4-48cd-86d6-e95a5d8e5110.aspx</guid>
      <link>http://pixelplastic.de/2008/09/12/WallpapersForFree.aspx</link>
      <pubDate>Fri, 12 Sep 2008 13:44:56 GMT</pubDate>
      <description>&lt;p&gt;
After I switched my Vista logon background with &lt;a href="http://www.stardock.com/products/logonstudio/"&gt;LogonStudio&lt;/a&gt; to
the cloudy sky (DanumValley-BlueSky) I decided to publish some of my wallpapers. These
are all shot with my Canon EOS 20D.
&lt;/p&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Brandenburg-Butterfly.jpg" rel="lightbox[wallpaper]" title="Brandenburg-Butterfly.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Brandenburg-Butterfly.jpg" alt="Brandenburg-Butterfly.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Brandenburg-Butterfly.jpg" title="Download as 1600x1200 jpg"&gt;Brandenburg-Butterfly.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Brandenburg-Butterfly.jpg" title="Download as 1920x1200 jpg"&gt;Brandenburg-Butterfly.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Brandenburg-Gras.jpg" rel="lightbox[wallpaper]" title="Brandenburg-Gras.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Brandenburg-Gras.jpg" alt="Brandenburg-Gras.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Brandenburg-Gras.jpg" title="Download as 1600x1200 jpg"&gt;Brandenburg-Gras.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Brandenburg-Gras.jpg" title="Download as 1920x1200 jpg"&gt;Brandenburg-Gras.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Brandenburg-Reed.jpg" rel="lightbox[wallpaper]" title="Brandenburg-Reed.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Brandenburg-Reed.jpg" alt="Brandenburg-Reed.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Brandenburg-Reed.jpg" title="Download as 1600x1200 jpg"&gt;Brandenburg-Reed.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Brandenburg-Reed.jpg" title="Download as 1920x1200 jpg"&gt;Brandenburg-Reed.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Brandenburg-SeaGulls.jpg" rel="lightbox[wallpaper]" title="Brandenburg-SeaGulls.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Brandenburg-SeaGulls.jpg" alt="Brandenburg-SeaGulls.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Brandenburg-SeaGulls.jpg" title="Download as 1600x1200 jpg"&gt;Brandenburg-SeaGulls.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Brandenburg-SeaGulls.jpg" title="Download as 1920x1200 jpg"&gt;Brandenburg-SeaGulls.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Brockhausstrasse-Herbs.jpg" rel="lightbox[wallpaper]" title="Brockhausstrasse-Herbs.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Brockhausstrasse-Herbs.jpg" alt="Brockhausstrasse-Herbs.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Brockhausstrasse-Herbs.jpg" title="Download as 1600x1200 jpg"&gt;Brockhausstrasse-Herbs.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Brockhausstrasse-Herbs.jpg" title="Download as 1920x1200 jpg"&gt;Brockhausstrasse-Herbs.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Danmark-Construction.jpg" rel="lightbox[wallpaper]" title="Danmark-Construction.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Danmark-Construction.jpg" alt="Danmark-Construction.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Danmark-Construction.jpg" title="Download as 1600x1200 jpg"&gt;Danmark-Construction.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Danmark-Construction.jpg" title="Download as 1920x1200 jpg"&gt;Danmark-Construction.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Danmark-Kiosk.jpg" rel="lightbox[wallpaper]" title="Danmark-Kiosk.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Danmark-Kiosk.jpg" alt="Danmark-Kiosk.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Danmark-Kiosk.jpg" title="Download as 1600x1200 jpg"&gt;Danmark-Kiosk.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Danmark-Kiosk.jpg" title="Download as 1920x1200 jpg"&gt;Danmark-Kiosk.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Danmark-Sunset.jpg" rel="lightbox[wallpaper]" title="Danmark-Sunset.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Danmark-Sunset.jpg" alt="Danmark-Sunset.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Danmark-Sunset.jpg" title="Download as 1600x1200 jpg"&gt;Danmark-Sunset.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Danmark-Sunset.jpg" title="Download as 1920x1200 jpg"&gt;Danmark-Sunset.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Danmark-TrafficSign.jpg" rel="lightbox[wallpaper]" title="Danmark-TrafficSign.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Danmark-TrafficSign.jpg" alt="Danmark-TrafficSign.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Danmark-TrafficSign.jpg" title="Download as 1600x1200 jpg"&gt;Danmark-TrafficSign.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Danmark-TrafficSign.jpg" title="Download as 1920x1200 jpg"&gt;Danmark-TrafficSign.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/DanumValley-BlueSky.jpg" rel="lightbox[wallpaper]" title="DanumValley-BlueSky.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/DanumValley-BlueSky.jpg" alt="DanumValley-BlueSky.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/DanumValley-BlueSky.jpg" title="Download as 1600x1200 jpg"&gt;DanumValley-BlueSky.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/DanumValley-BlueSky.jpg" title="Download as 1920x1200 jpg"&gt;DanumValley-BlueSky.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/DanumValley-Bugs.jpg" rel="lightbox[wallpaper]" title="DanumValley-Bugs.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/DanumValley-Bugs.jpg" alt="DanumValley-Bugs.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/DanumValley-Bugs.jpg" title="Download as 1600x1200 jpg"&gt;DanumValley-Bugs.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/DanumValley-Bugs.jpg" title="Download as 1920x1200 jpg"&gt;DanumValley-Bugs.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/DanumValley-Butterfly.jpg" rel="lightbox[wallpaper]" title="DanumValley-Butterfly.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/DanumValley-Butterfly.jpg" alt="DanumValley-Butterfly.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/DanumValley-Butterfly.jpg" title="Download as 1600x1200 jpg"&gt;DanumValley-Butterfly.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/DanumValley-Butterfly.jpg" title="Download as 1920x1200 jpg"&gt;DanumValley-Butterfly.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/DanumValley-DuskyJungle.jpg" rel="lightbox[wallpaper]" title="DanumValley-DuskyJungle.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/DanumValley-DuskyJungle.jpg" alt="DanumValley-DuskyJungle.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/DanumValley-DuskyJungle.jpg" title="Download as 1600x1200 jpg"&gt;DanumValley-DuskyJungle.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/DanumValley-DuskyJungle.jpg" title="Download as 1920x1200 jpg"&gt;DanumValley-DuskyJungle.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/DanumValley-Night.jpg" rel="lightbox[wallpaper]" title="DanumValley-Night.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/DanumValley-Night.jpg" alt="DanumValley-Night.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/DanumValley-Night.jpg" title="Download as 1600x1200 jpg"&gt;DanumValley-Night.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/DanumValley-Night.jpg" title="Download as 1920x1200 jpg"&gt;DanumValley-Night.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/DanumValley-Sunrise.jpg" rel="lightbox[wallpaper]" title="DanumValley-Sunrise.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/DanumValley-Sunrise.jpg" alt="DanumValley-Sunrise.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/DanumValley-Sunrise.jpg" title="Download as 1600x1200 jpg"&gt;DanumValley-Sunrise.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/DanumValley-Sunrise.jpg" title="Download as 1920x1200 jpg"&gt;DanumValley-Sunrise.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Food-MoldyBellPepper.jpg" rel="lightbox[wallpaper]" title="Food-MoldyBellPepper.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Food-MoldyBellPepper.jpg" alt="Food-MoldyBellPepper.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Food-MoldyBellPepper.jpg" title="Download as 1600x1200 jpg"&gt;Food-MoldyBellPepper.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Food-MoldyBellPepper.jpg" title="Download as 1920x1200 jpg"&gt;Food-MoldyBellPepper.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Mandalay-CeilingFan.jpg" rel="lightbox[wallpaper]" title="Mandalay-CeilingFan.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Mandalay-CeilingFan.jpg" alt="Mandalay-CeilingFan.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Mandalay-CeilingFan.jpg" title="Download as 1600x1200 jpg"&gt;Mandalay-CeilingFan.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Mandalay-CeilingFan.jpg" title="Download as 1920x1200 jpg"&gt;Mandalay-CeilingFan.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Obergeissendorf-Fire.jpg" rel="lightbox[wallpaper]" title="Obergeissendorf-Fire.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Obergeissendorf-Fire.jpg" alt="Obergeissendorf-Fire.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Obergeissendorf-Fire.jpg" title="Download as 1600x1200 jpg"&gt;Obergeissendorf-Fire.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Obergeissendorf-Fire.jpg" title="Download as 1920x1200 jpg"&gt;Obergeissendorf-Fire.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;div style="height: 80px; padding-bottom: 2em"&gt;
&lt;a href="specials/wallpapers/Obergeissendorf-SparklingFire.jpg" rel="lightbox[wallpaper]" title="Obergeissendorf-SparklingFire.jpg" style="float: left; margin-right: 1em"&gt;&lt;img src="specials/wallpapers/thumbs/Obergeissendorf-SparklingFire.jpg" alt="Obergeissendorf-SparklingFire.jpg" title="" /&gt;&lt;/a&gt; &lt;a href="specials/wallpapers/1600x1200/Obergeissendorf-SparklingFire.jpg" title="Download as 1600x1200 jpg"&gt;Obergeissendorf-SparklingFire.jpg
(1600x1200)&lt;/a&gt;
&lt;br /&gt;
&lt;a href="specials/wallpapers/1920x1200/Obergeissendorf-SparklingFire.jpg" title="Download as 1920x1200 jpg"&gt;Obergeissendorf-SparklingFire.jpg
(1920x1200)&lt;/a&gt; 
&lt;/div&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=683c771d-a5d4-48cd-86d6-e95a5d8e5110" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,683c771d-a5d4-48cd-86d6-e95a5d8e5110.aspx</comments>
      <category>art</category>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=69e68857-7ef9-4cf3-93be-0ee85e2824eb</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,69e68857-7ef9-4cf3-93be-0ee85e2824eb.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,69e68857-7ef9-4cf3-93be-0ee85e2824eb.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=69e68857-7ef9-4cf3-93be-0ee85e2824eb</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div id="silverlightControlHost" style="background: url(/content/binary/Silverlight/Attractor/screenshot.png) no-repeat; height: 500px; width: 500px;">
          <object data="data:application/x-silverlight," type="application/x-silverlight-2" width="500" height="500">
            <param name="source" value="/content/binary/Silverlight/Attractor/Pixelplastic.Silverlight.Attractor.xap" />
            <param name="background" value="black" />
            <param name="minRuntimeVersion" value="2.0.30923.0" />
            <param name="autoUpgrade" value="true" />
            <a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;">
              <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" />
            </a>
          </object>
          <iframe style="visibility:hidden;height:0;width:0;border:0px">
          </iframe>
        </div>
        <p>
This is the result of a 3h implementation of a simple physical sample. Each dot is
attracted by the mouse cursor. So just move your mouse over the field to see the effect.
The sources of this very small sample can be <a href="/content/binary/Silverlight/Attractor/Attractor.zip">downloaded
here</a>.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=69e68857-7ef9-4cf3-93be-0ee85e2824eb" />
      </body>
      <title>Very simple Silverlight physics demo</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,69e68857-7ef9-4cf3-93be-0ee85e2824eb.aspx</guid>
      <link>http://pixelplastic.de/2008/08/08/VerySimpleSilverlightPhysicsDemo.aspx</link>
      <pubDate>Fri, 08 Aug 2008 14:22:00 GMT</pubDate>
      <description>&lt;div id="silverlightControlHost" style="background: url(/content/binary/Silverlight/Attractor/screenshot.png) no-repeat; height: 500px; width: 500px;"&gt;
&lt;object data="data:application/x-silverlight," type="application/x-silverlight-2" width="500" height="500"&gt;
&lt;param name="source" value="/content/binary/Silverlight/Attractor/Pixelplastic.Silverlight.Attractor.xap" /&gt;
&lt;param name="background" value="black" /&gt;
&lt;param name="minRuntimeVersion" value="2.0.30923.0" /&gt;
&lt;param name="autoUpgrade" value="true" /&gt;
&lt;a href="http://go.microsoft.com/fwlink/?LinkID=124807" style="text-decoration: none;"&gt; &lt;img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style: none" /&gt; &lt;/a&gt; 
&lt;/object&gt;
&lt;iframe style='visibility:hidden;height:0;width:0;border:0px'&gt;
&lt;/iframe&gt;
&lt;/div&gt;
&lt;p&gt;
This is the result of a 3h implementation of a simple physical sample. Each dot is
attracted by the mouse cursor. So just move your mouse over the field to see the effect.
The sources of this very small sample can be &lt;a href="/content/binary/Silverlight/Attractor/Attractor.zip"&gt;downloaded
here&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=69e68857-7ef9-4cf3-93be-0ee85e2824eb" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,69e68857-7ef9-4cf3-93be-0ee85e2824eb.aspx</comments>
      <category>development</category>
      <category>fun</category>
      <category>microsoft</category>
      <category>silverlight</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=cc379101-6736-4ffe-b95e-6d4c6ba9d622</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,cc379101-6736-4ffe-b95e-6d4c6ba9d622.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,cc379101-6736-4ffe-b95e-6d4c6ba9d622.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=cc379101-6736-4ffe-b95e-6d4c6ba9d622</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Wieder mal was witziges von <a href="http://www.youtube.com">youtube</a>. Diesmal
aber eher unbewusst durch einen automatischen Zeilenumbruch:
</p>
        <p>
          <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="129" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Sauftakt_EECB/image_3.png" width="91" border="0" />
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=cc379101-6736-4ffe-b95e-6d4c6ba9d622" />
      </body>
      <title>Sauftakt</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,cc379101-6736-4ffe-b95e-6d4c6ba9d622.aspx</guid>
      <link>http://pixelplastic.de/2008/07/14/Sauftakt.aspx</link>
      <pubDate>Mon, 14 Jul 2008 14:58:50 GMT</pubDate>
      <description>&lt;p&gt;
Wieder mal was witziges von &lt;a href="http://www.youtube.com"&gt;youtube&lt;/a&gt;. Diesmal
aber eher unbewusst durch einen automatischen Zeilenumbruch:
&lt;/p&gt;
&lt;p&gt;
&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="129" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Sauftakt_EECB/image_3.png" width="91" border="0" /&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=cc379101-6736-4ffe-b95e-6d4c6ba9d622" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,cc379101-6736-4ffe-b95e-6d4c6ba9d622.aspx</comments>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=0ef88f08-3fc6-4dd5-8a64-8f3b752d1f13</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,0ef88f08-3fc6-4dd5-8a64-8f3b752d1f13.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,0ef88f08-3fc6-4dd5-8a64-8f3b752d1f13.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=0ef88f08-3fc6-4dd5-8a64-8f3b752d1f13</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Funny to see my name displayed on the big TFT screen in the lobby of tegos, where
I presented my first Windows Presentation Foundation instruction last week.
</p>
        <p>
          <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="258" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/WPFWorkshoptegos_F33D/image_8.png" width="484" border="0" />
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0ef88f08-3fc6-4dd5-8a64-8f3b752d1f13" />
      </body>
      <title>WPF Workshop @ tegos</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,0ef88f08-3fc6-4dd5-8a64-8f3b752d1f13.aspx</guid>
      <link>http://pixelplastic.de/2008/06/21/WPFWorkshopTegos.aspx</link>
      <pubDate>Sat, 21 Jun 2008 15:17:45 GMT</pubDate>
      <description>&lt;p&gt;
Funny to see my name displayed on the big TFT screen in the lobby of tegos, where
I presented my first Windows Presentation Foundation instruction last week.
&lt;/p&gt;
&lt;p&gt;
&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="258" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/WPFWorkshoptegos_F33D/image_8.png" width="484" border="0" /&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0ef88f08-3fc6-4dd5-8a64-8f3b752d1f13" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,0ef88f08-3fc6-4dd5-8a64-8f3b752d1f13.aspx</comments>
      <category>photos</category>
      <category>wpf</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=e103fe6d-d43e-415d-b9fa-15d0f0a3f848</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,e103fe6d-d43e-415d-b9fa-15d0f0a3f848.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,e103fe6d-d43e-415d-b9fa-15d0f0a3f848.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=e103fe6d-d43e-415d-b9fa-15d0f0a3f848</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9765_2.jpg" rel="lightbox">
            <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="240" alt="_MG_9765" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9765_thumb.jpg" width="160" border="0" />
          </a> <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9768_2.jpg" rel="lightbox"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="240" alt="_MG_9768" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9768_thumb.jpg" width="160" border="0" /></a><a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9776_2.jpg" rel="lightbox"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="160" alt="_MG_9776" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9776_thumb.jpg" width="240" border="0" /></a><a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9782_2.jpg" rel="lightbox"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="160" alt="_MG_9782" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9782_thumb.jpg" width="240" border="0" /></a><a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9785_2.jpg" rel="lightbox"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="240" alt="_MG_9785" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9785_thumb.jpg" width="160" border="0" /></a><a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9789_2.jpg" rel="lightbox"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="240" alt="_MG_9789" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9789_thumb.jpg" width="160" border="0" /></a></p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e103fe6d-d43e-415d-b9fa-15d0f0a3f848" />
      </body>
      <title>Impressionen vom Berlin-Ausflug</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,e103fe6d-d43e-415d-b9fa-15d0f0a3f848.aspx</guid>
      <link>http://pixelplastic.de/2008/05/19/ImpressionenVomBerlinAusflug.aspx</link>
      <pubDate>Mon, 19 May 2008 22:45:30 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9765_2.jpg" rel="lightbox"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="240" alt="_MG_9765" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9765_thumb.jpg" width="160" border="0" /&gt;&lt;/a&gt;&amp;#160;&lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9768_2.jpg" rel="lightbox"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="240" alt="_MG_9768" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9768_thumb.jpg" width="160" border="0" /&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9776_2.jpg" rel="lightbox"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="160" alt="_MG_9776" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9776_thumb.jpg" width="240" border="0" /&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9782_2.jpg" rel="lightbox"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="160" alt="_MG_9782" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9782_thumb.jpg" width="240" border="0" /&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9785_2.jpg" rel="lightbox"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="240" alt="_MG_9785" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9785_thumb.jpg" width="160" border="0" /&gt;&lt;/a&gt; &lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9789_2.jpg" rel="lightbox"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="240" alt="_MG_9789" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ImpressionenvomBerlinAusflug_A8E/_MG_9789_thumb.jpg" width="160" border="0" /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e103fe6d-d43e-415d-b9fa-15d0f0a3f848" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,e103fe6d-d43e-415d-b9fa-15d0f0a3f848.aspx</comments>
      <category>photos</category>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=549e37ae-35fc-4e65-964b-ac8aa74b9b17</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,549e37ae-35fc-4e65-964b-ac8aa74b9b17.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,549e37ae-35fc-4e65-964b-ac8aa74b9b17.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=549e37ae-35fc-4e65-964b-ac8aa74b9b17</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Benutzerfreundlichkeit ist zunehmend ein wichtiger Bestandteil heutiger Softwareentwicklungsprozesse.
Sowohl für Desktop-Anwendungen als auch im Bereich des Web ist es notwendig den
Endbenutzern eine intuitive Oberfläche zur Verfügung zu stellen, um effektiv
und benutzerfreundlich mit dem Produkt arbeiten zu können. Dies spiegelt sich
in einer höheren Produktivität beim Umgang mit der Anwendung wieder. 
</p>
        <p>
          <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/UsabilityThementagam18.AprilinLeipzig_B081/image_2.png" rel="lightbox">
            <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 10px 10px 10px 0px; border-right-width: 0px" height="86" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/UsabilityThementagam18.AprilinLeipzig_B081/image_thumb.png" width="240" align="left" border="0" />
          </a>Neben
technologieorientierten Lösungsansätzen, wird im ersten von drei Vorträgen
im Allgemeinen auf Benutzerfreundlichkeit im alltäglichen Leben eingegangen.
Weiter geht es mit Usability-Aspekten im Bereich des Web, gefolgt von einem Vortrag
zu technischen Möglichkeiten mit der <a href="http://de.wikipedia.org/wiki/Windows_Presentation_Foundation">Windows
Presentation Foundation (WPF)</a> und <a href="http://de.wikipedia.org/wiki/Silverlight">Silverlight</a>.
Abgerundet wird dieser Tag mit einem 90minütigen Workshop, wo die gelernten WPF-Kenntnisse
in einer kleinen Demo-Anwendung direkt am Rechner umgesetzt werden können. 
</p>
        <p>
Die Anmeldung erfolgt über eine E-Mail an <a href="mailto:anmeldung AT dotnet-leipzig DOT de?subject=Usability">anmeldung
AT dotnet-leipzig DOT de</a> mit Vorname, Nachnahme und dem Betreff "Usability".
Die Teilnehmerzahl ist bzgl. des Workshops begrenzt. Gibt es mehr Anmeldungen als
Plätze, entscheidet die Warteliste.
</p>
        <p>
          <strong>18.04.2008, 9:00 – 17:00 Uhr, Universität Leipzig (WiFa), Marschnerstraße
31, Raum 240.</strong>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=549e37ae-35fc-4e65-964b-ac8aa74b9b17" />
      </body>
      <title>Usability Thementag am 18. April in Leipzig</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,549e37ae-35fc-4e65-964b-ac8aa74b9b17.aspx</guid>
      <link>http://pixelplastic.de/2008/04/13/UsabilityThementagAm18AprilInLeipzig.aspx</link>
      <pubDate>Sun, 13 Apr 2008 10:33:26 GMT</pubDate>
      <description>&lt;p&gt;
Benutzerfreundlichkeit ist zunehmend ein wichtiger Bestandteil heutiger Softwareentwicklungsprozesse.
Sowohl f&amp;#252;r Desktop-Anwendungen als auch im Bereich des Web ist es notwendig den
Endbenutzern eine intuitive Oberfl&amp;#228;che zur Verf&amp;#252;gung zu stellen, um effektiv
und benutzerfreundlich mit dem Produkt arbeiten zu k&amp;#246;nnen. Dies spiegelt sich
in einer h&amp;#246;heren Produktivit&amp;#228;t beim Umgang mit der Anwendung wieder. 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/UsabilityThementagam18.AprilinLeipzig_B081/image_2.png" rel="lightbox"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 10px 10px 10px 0px; border-right-width: 0px" height="86" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/UsabilityThementagam18.AprilinLeipzig_B081/image_thumb.png" width="240" align="left" border="0" /&gt;&lt;/a&gt;Neben
technologieorientierten L&amp;#246;sungsans&amp;#228;tzen, wird im ersten von drei Vortr&amp;#228;gen
im Allgemeinen auf Benutzerfreundlichkeit im allt&amp;#228;glichen Leben eingegangen.
Weiter geht es mit Usability-Aspekten im Bereich des Web, gefolgt von einem Vortrag
zu technischen M&amp;#246;glichkeiten mit der &lt;a href="http://de.wikipedia.org/wiki/Windows_Presentation_Foundation"&gt;Windows
Presentation Foundation (WPF)&lt;/a&gt; und &lt;a href="http://de.wikipedia.org/wiki/Silverlight"&gt;Silverlight&lt;/a&gt;.
Abgerundet wird dieser Tag mit einem 90min&amp;#252;tigen Workshop, wo die gelernten WPF-Kenntnisse
in einer kleinen Demo-Anwendung direkt am Rechner umgesetzt werden k&amp;#246;nnen. 
&lt;/p&gt;
&lt;p&gt;
Die Anmeldung erfolgt &amp;#252;ber eine E-Mail an &lt;a href="mailto:anmeldung AT dotnet-leipzig DOT de?subject=Usability"&gt;anmeldung
AT dotnet-leipzig DOT de&lt;/a&gt; mit Vorname, Nachnahme und dem Betreff &amp;quot;Usability&amp;quot;.
Die Teilnehmerzahl ist bzgl. des Workshops begrenzt. Gibt es mehr Anmeldungen als
Pl&amp;#228;tze, entscheidet die Warteliste.
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;18.04.2008, 9:00 &amp;#8211; 17:00 Uhr, Universit&amp;#228;t Leipzig (WiFa), Marschnerstra&amp;#223;e
31, Raum 240.&lt;/strong&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=549e37ae-35fc-4e65-964b-ac8aa74b9b17" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,549e37ae-35fc-4e65-964b-ac8aa74b9b17.aspx</comments>
      <category>development</category>
      <category>event</category>
      <category>microsoft</category>
      <category>wpf</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=973f258b-ee9f-40dd-a9b9-7d4b69bf478c</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,973f258b-ee9f-40dd-a9b9-7d4b69bf478c.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,973f258b-ee9f-40dd-a9b9-7d4b69bf478c.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=973f258b-ee9f-40dd-a9b9-7d4b69bf478c</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Sometimes I just don't know what to say when looking on something like this on my
large 1920x1200 screen. What happened to this application window? But funny anyway.
</p>
        <p>
          <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="111" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ThesmallestWindowonEarth_8D18/image_3.png" width="201" border="0" />
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=973f258b-ee9f-40dd-a9b9-7d4b69bf478c" />
      </body>
      <title>The smallest Window on Earth</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,973f258b-ee9f-40dd-a9b9-7d4b69bf478c.aspx</guid>
      <link>http://pixelplastic.de/2008/04/10/TheSmallestWindowOnEarth.aspx</link>
      <pubDate>Thu, 10 Apr 2008 08:02:00 GMT</pubDate>
      <description>&lt;p&gt;
Sometimes I just don't know what to say when looking on something like this on my
large 1920x1200 screen. What happened to this application window? But funny anyway.
&lt;/p&gt;
&lt;p&gt;
&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="111" alt="image" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/ThesmallestWindowonEarth_8D18/image_3.png" width="201" border="0" /&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=973f258b-ee9f-40dd-a9b9-7d4b69bf478c" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,973f258b-ee9f-40dd-a9b9-7d4b69bf478c.aspx</comments>
      <category>fun</category>
      <category>geek stuff</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=5f809af9-0e28-48dc-b957-3d4fcd2026f4</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,5f809af9-0e28-48dc-b957-3d4fcd2026f4.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,5f809af9-0e28-48dc-b957-3d4fcd2026f4.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=5f809af9-0e28-48dc-b957-3d4fcd2026f4</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" alt="stc2008" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/StudentTechnologyConference2008_81F4/stc2008_3.png" border="0" />
        <p>
          <img style="padding-left: 1em; padding-bottom: 1em; border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="107" alt="location02" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/StudentTechnologyConference2008_81F4/location02_3.jpg" width="326" align="right" border="0" />Am
15. Mai 2008 ist es wieder soweit. Die alljährliche Konferenz für Studenten
wird diesmal leider nur an einem Tag in Berlin stattfinden. Dafür aber kostenlos,
wie ich dem <a href="https://www.event-team.com/events/STC2008/Anmeldung.aspx">Registrierungsformular</a> entnehmen
konnte. Die Teilnehmer können wie immer interessante Vorträge für IT
Pros und .NET Entwickler erwarten.  Auch die angekündigte Location "<a href="http://www.kalkscheune.de/">Kalkscheune</a>"
macht einen netten Eindruck. Weitere Infos findet ihr unter <a title="http://www.studentconference.de/" href="http://www.studentconference.de">www.studentconference.de</a>.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5f809af9-0e28-48dc-b957-3d4fcd2026f4" />
      </body>
      <title>Student Technology Conference 2008</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,5f809af9-0e28-48dc-b957-3d4fcd2026f4.aspx</guid>
      <link>http://pixelplastic.de/2008/03/22/StudentTechnologyConference2008.aspx</link>
      <pubDate>Sat, 22 Mar 2008 08:14:33 GMT</pubDate>
      <description>&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" alt="stc2008" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/StudentTechnologyConference2008_81F4/stc2008_3.png" border="0" /&gt; 
&lt;p&gt;
&lt;img style="padding-left: 1em; padding-bottom: 1em; border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="107" alt="location02" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/StudentTechnologyConference2008_81F4/location02_3.jpg" width="326" align="right" border="0" /&gt;Am
15. Mai 2008 ist es wieder soweit. Die allj&amp;#228;hrliche Konferenz f&amp;#252;r Studenten
wird diesmal leider nur an einem Tag in Berlin stattfinden. Daf&amp;#252;r aber kostenlos,
wie ich dem &lt;a href="https://www.event-team.com/events/STC2008/Anmeldung.aspx"&gt;Registrierungsformular&lt;/a&gt; entnehmen
konnte. Die Teilnehmer k&amp;#246;nnen wie immer interessante Vortr&amp;#228;ge f&amp;#252;r IT
Pros und .NET Entwickler erwarten.&amp;#160; Auch die angek&amp;#252;ndigte Location &amp;quot;&lt;a href="http://www.kalkscheune.de/"&gt;Kalkscheune&lt;/a&gt;&amp;quot;
macht einen netten Eindruck. Weitere Infos findet ihr unter &lt;a title="http://www.studentconference.de/" href="http://www.studentconference.de"&gt;www.studentconference.de&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5f809af9-0e28-48dc-b957-3d4fcd2026f4" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,5f809af9-0e28-48dc-b957-3d4fcd2026f4.aspx</comments>
      <category>development</category>
      <category>event</category>
      <category>microsoft</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=ffc6efbf-79d5-456c-9e2b-696899aaaa2f</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,ffc6efbf-79d5-456c-9e2b-696899aaaa2f.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,ffc6efbf-79d5-456c-9e2b-696899aaaa2f.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=ffc6efbf-79d5-456c-9e2b-696899aaaa2f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Naja. Mehr oder weniger im Fernsehen. Eigentlich "nur" im Internetfernsehen. Während
meines dreitägigen Besuchs der Frankfurter Messe zur <a href="http://www.microsoft.com/germany/aktionen/ready-for-take-off/">Microsoft
Launch Tour 2008</a> letzte Woche wurde ich zusammen mit Grischa und <a href="http://blogs.compactframework.de/Torsten.Weber/">Torsten</a> von <a href="http://www.on10.net/blogs/lorigros/">Lori</a> interviewt.
Dabei ging es um das kommende Referenzprojekt zu <a href="http://msdn2.microsoft.com/vs2008/">Visual
Studio 2008</a> und .NET 3.5. Momentan arbeiten wir unter dem Codenamen <em>Trian</em> weiter
an den Beispielen, die in naher Zukunft hoffentlich vielen Entwicklern zur Verfügung
stehen werden. Aber seht und hört selbst, worum es dabei grob geht:
</p>
        <iframe src="http://on10.net/blogs/lorigros/21264/player/" frameborder="0" width="320" scrolling="no" height="325">
        </iframe>
        <br />
        <a href="http://on10.net/blogs/lorigros/21264/" rel="preview">Tic Tac TRIAN</a>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ffc6efbf-79d5-456c-9e2b-696899aaaa2f" />
      </body>
      <title>Ich bin im Fernsehen</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,ffc6efbf-79d5-456c-9e2b-696899aaaa2f.aspx</guid>
      <link>http://pixelplastic.de/2008/02/26/IchBinImFernsehen.aspx</link>
      <pubDate>Tue, 26 Feb 2008 20:23:25 GMT</pubDate>
      <description>&lt;p&gt;
Naja. Mehr oder weniger im Fernsehen. Eigentlich "nur" im Internetfernsehen. Während
meines dreitägigen Besuchs der Frankfurter Messe zur &lt;a href="http://www.microsoft.com/germany/aktionen/ready-for-take-off/"&gt;Microsoft
Launch Tour 2008&lt;/a&gt; letzte Woche wurde ich zusammen mit Grischa und &lt;a href="http://blogs.compactframework.de/Torsten.Weber/"&gt;Torsten&lt;/a&gt; von &lt;a href="http://www.on10.net/blogs/lorigros/"&gt;Lori&lt;/a&gt; interviewt.
Dabei ging es um das kommende Referenzprojekt zu &lt;a href="http://msdn2.microsoft.com/vs2008/"&gt;Visual
Studio 2008&lt;/a&gt; und .NET 3.5. Momentan arbeiten wir unter dem Codenamen &lt;em&gt;Trian&lt;/em&gt; weiter
an den Beispielen, die in naher Zukunft hoffentlich vielen Entwicklern zur Verfügung
stehen werden. Aber seht und hört selbst, worum es dabei grob geht:
&lt;/p&gt;
&lt;iframe src="http://on10.net/blogs/lorigros/21264/player/" frameborder="0" width="320" scrolling="no" height="325"&gt;
&lt;/iframe&gt;
&lt;br&gt;
&lt;a href="http://on10.net/blogs/lorigros/21264/" rel="preview"&gt;Tic Tac TRIAN&lt;/a&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ffc6efbf-79d5-456c-9e2b-696899aaaa2f" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,ffc6efbf-79d5-456c-9e2b-696899aaaa2f.aspx</comments>
      <category>development</category>
      <category>videos</category>
      <category>wpf</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=3f74be7c-41ab-40f0-ab53-11de16723dbc</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,3f74be7c-41ab-40f0-ab53-11de16723dbc.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,3f74be7c-41ab-40f0-ab53-11de16723dbc.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=3f74be7c-41ab-40f0-ab53-11de16723dbc</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Wehlan_CA0F/_MG_8552_2.jpg" rel="lightbox">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="391" alt="_MG_8552" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Wehlan_CA0F/_MG_8552_thumb.jpg" width="267" border="0" />
          </a>
        </p>
        <p>
More and more wireless networks (WEHLANs) are coming up around my neighborhood. (For
English speaking folks: in German we say [veːlˈaːn] for wireless LAN.)
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3f74be7c-41ab-40f0-ab53-11de16723dbc" />
      </body>
      <title>Wehlan</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,3f74be7c-41ab-40f0-ab53-11de16723dbc.aspx</guid>
      <link>http://pixelplastic.de/2008/02/26/Wehlan.aspx</link>
      <pubDate>Tue, 26 Feb 2008 13:22:20 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Wehlan_CA0F/_MG_8552_2.jpg" rel="lightbox"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="391" alt="_MG_8552" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Wehlan_CA0F/_MG_8552_thumb.jpg" width="267" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
More and more wireless networks (WEHLANs) are coming up around my neighborhood. (For
English speaking folks: in German we say [veːlˈaːn] for wireless LAN.)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3f74be7c-41ab-40f0-ab53-11de16723dbc" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,3f74be7c-41ab-40f0-ab53-11de16723dbc.aspx</comments>
      <category>fun</category>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=5573c574-8ea1-40c0-84a0-73a91f4a46f7</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,5573c574-8ea1-40c0-84a0-73a91f4a46f7.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,5573c574-8ea1-40c0-84a0-73a91f4a46f7.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=5573c574-8ea1-40c0-84a0-73a91f4a46f7</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Walking home after a yummy Sunday brunch I took this picture.
</p>
        <p>
          <a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Almostspring_CB18/_MG_8554_2.jpg" rel="lightbox">
            <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="340" alt="_MG_8554" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Almostspring_CB18/_MG_8554_thumb.jpg" width="500" border="0" />
          </a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5573c574-8ea1-40c0-84a0-73a91f4a46f7" />
      </body>
      <title>Almost spring</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,5573c574-8ea1-40c0-84a0-73a91f4a46f7.aspx</guid>
      <link>http://pixelplastic.de/2008/02/17/AlmostSpring.aspx</link>
      <pubDate>Sun, 17 Feb 2008 12:26:25 GMT</pubDate>
      <description>&lt;p&gt;
Walking home after a yummy Sunday brunch I took this picture.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Almostspring_CB18/_MG_8554_2.jpg" rel="lightbox"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="340" alt="_MG_8554" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Almostspring_CB18/_MG_8554_thumb.jpg" width="500" border="0"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5573c574-8ea1-40c0-84a0-73a91f4a46f7" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,5573c574-8ea1-40c0-84a0-73a91f4a46f7.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=4117a9cf-1a86-4a70-a258-c95a1ad2db86</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,4117a9cf-1a86-4a70-a258-c95a1ad2db86.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,4117a9cf-1a86-4a70-a258-c95a1ad2db86.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=4117a9cf-1a86-4a70-a258-c95a1ad2db86</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Looking for a book with the Internet Explorer 7 I was wondering why there was a phone
number that can be called using Skype. I think there is more semantic analysis necessary
to prevent such false interpretation. Anyway: it's funny, even that I'm not sure who
will answer, if I press the call button.
</p>
        <p>
          <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="174" alt="image_3" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Skypewanttocallbooks_C0B0/image_3_3.png" width="432" border="0" />
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=4117a9cf-1a86-4a70-a258-c95a1ad2db86" />
      </body>
      <title>Skype want to call books</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,4117a9cf-1a86-4a70-a258-c95a1ad2db86.aspx</guid>
      <link>http://pixelplastic.de/2008/01/16/SkypeWantToCallBooks.aspx</link>
      <pubDate>Wed, 16 Jan 2008 12:42:04 GMT</pubDate>
      <description>&lt;p&gt;
Looking for a book with the Internet Explorer 7 I was wondering why there was a phone
number that can be called using Skype. I think there is more semantic analysis necessary
to prevent such false interpretation. Anyway: it's funny, even that I'm not sure who
will answer, if I press the call button.
&lt;/p&gt;
&lt;p&gt;
&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="174" alt="image_3" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Skypewanttocallbooks_C0B0/image_3_3.png" width="432" border="0" /&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=4117a9cf-1a86-4a70-a258-c95a1ad2db86" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,4117a9cf-1a86-4a70-a258-c95a1ad2db86.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=9b2acfcc-1976-4d2a-8bb6-a5852238d528</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,9b2acfcc-1976-4d2a-8bb6-a5852238d528.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,9b2acfcc-1976-4d2a-8bb6-a5852238d528.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=9b2acfcc-1976-4d2a-8bb6-a5852238d528</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I like this nifty vector based scaling feature of Silverlight. That's why I was not
often seen the last day and today. I developed a nice little clock based on one theme
of the Clock Gadget of Windows Vista. Using <a href="http://www.microsoft.com/Expression/products/download.aspx?key=blend2preview">Microsoft
Expression Blend 2 December Preview</a> and <a href="http://msdn2.microsoft.com/en-us/vstudio/products/default.aspx">Visual
Studio 2008</a> made it easy to get to the results.
</p>
        <p>
But how to play with this toy: You can <strong>move the clock with a simple mouse
drag and drop</strong>. For showing this cool effect of resizing I added the little
white button on the top left of the clock. It's also just a <strong>drag and drop
action on this button, to do the scaling</strong> of the clock. By <strong>pressing
the Shift button</strong> while doing the resize movements you'll fix the aspect ratio
of the clocks height and width. It's also possible to switch to full screen mode and
back again by <strong>double clicking the background</strong> of this canvas.
</p>
        <script src="/content/binary/Silverlight/Clock/Host.js" type="text/javascript">
        </script>
        <script src="/content/binary/Silverlight/Clock/Silverlight.js" type="text/javascript">
        </script>
        <div id="silverlightControlHost" style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; width: 550px; border-bottom: gray 1px solid; height: 300px; background-image: url(http://www.pixelplastic.de/content/binary/Silverlight/Clock/screenshot.png); background-repeat: no-repeat;">
          <script type="text/javascript">
		createSilverlight("/content/binary/Silverlight/Clock/BlogClock.xaml");
	</script>
        </div>
        <div id="errorLocation" style="font-size: small">
        </div>
        <p style="margin-top: 1em">
The Visual Studio 2008 source of this smart application can be found here.
</p>
        <p>
Download: <a href="http://www.pixelplastic.de/content/binary/Silverlight/Clock/Clock.zip">Clock.zip</a></p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=9b2acfcc-1976-4d2a-8bb6-a5852238d528" />
      </body>
      <title>Zoomable ultra high resolution Silverlight clock</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,9b2acfcc-1976-4d2a-8bb6-a5852238d528.aspx</guid>
      <link>http://pixelplastic.de/2008/01/12/ZoomableUltraHighResolutionSilverlightClock.aspx</link>
      <pubDate>Sat, 12 Jan 2008 16:24:45 GMT</pubDate>
      <description>&lt;p&gt;
I like this nifty vector based scaling feature of Silverlight. That's why I was not
often seen the last day and today. I developed a nice little clock based on one theme
of the Clock Gadget of Windows Vista. Using &lt;a href="http://www.microsoft.com/Expression/products/download.aspx?key=blend2preview"&gt;Microsoft
Expression Blend 2 December Preview&lt;/a&gt; and &lt;a href="http://msdn2.microsoft.com/en-us/vstudio/products/default.aspx"&gt;Visual
Studio 2008&lt;/a&gt; made it easy to get to the results.
&lt;/p&gt;
&lt;p&gt;
But how to play with this toy: You can &lt;strong&gt;move the clock with a simple mouse
drag and drop&lt;/strong&gt;. For showing this cool effect of resizing I added the little
white button on the top left of the clock. It's also just a &lt;strong&gt;drag and drop
action on this button, to do the scaling&lt;/strong&gt; of the clock. By &lt;strong&gt;pressing
the Shift button&lt;/strong&gt; while doing the resize movements you'll fix the aspect ratio
of the clocks height and width. It's also possible to switch to full screen mode and
back again by &lt;strong&gt;double clicking the background&lt;/strong&gt; of this canvas.
&lt;/p&gt;
&lt;script src="/content/binary/Silverlight/Clock/Host.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;script src="/content/binary/Silverlight/Clock/Silverlight.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;div id="silverlightControlHost" style="border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; width: 550px; border-bottom: gray 1px solid; height: 300px; background-image: url(http://www.pixelplastic.de/content/binary/Silverlight/Clock/screenshot.png); background-repeat: no-repeat;"&gt;
&lt;script type="text/javascript"&gt;
		createSilverlight("/content/binary/Silverlight/Clock/BlogClock.xaml");
	&lt;/script&gt;
&lt;/div&gt;
&lt;div id="errorLocation" style="font-size: small"&gt;
&lt;/div&gt;
&lt;p style="margin-top: 1em"&gt;
The Visual Studio 2008 source of this smart application can be found here.
&lt;/p&gt;
&lt;p&gt;
Download: &lt;a href="http://www.pixelplastic.de/content/binary/Silverlight/Clock/Clock.zip"&gt;Clock.zip&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=9b2acfcc-1976-4d2a-8bb6-a5852238d528" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,9b2acfcc-1976-4d2a-8bb6-a5852238d528.aspx</comments>
      <category>art</category>
      <category>development</category>
      <category>wpf</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=b9192f45-17bb-45f0-8d6c-5c6a27e118cd</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,b9192f45-17bb-45f0-8d6c-5c6a27e118cd.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,b9192f45-17bb-45f0-8d6c-5c6a27e118cd.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=b9192f45-17bb-45f0-8d6c-5c6a27e118cd</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a rel="lightbox" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Lazywalkingafterheavyxmaslunch_10A2B/_MG_8270_2.jpg">
            <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="500" alt="Posterstein - more snow please" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Lazywalkingafterheavyxmaslunch_10A2B/_MG_8270_thumb.jpg" width="340" border="0" />
          </a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b9192f45-17bb-45f0-8d6c-5c6a27e118cd" />
      </body>
      <title>Lazy walk after heavy xmas lunch</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,b9192f45-17bb-45f0-8d6c-5c6a27e118cd.aspx</guid>
      <link>http://pixelplastic.de/2008/01/04/LazyWalkAfterHeavyXmasLunch.aspx</link>
      <pubDate>Fri, 04 Jan 2008 17:55:46 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a rel="lightbox" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Lazywalkingafterheavyxmaslunch_10A2B/_MG_8270_2.jpg"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="500" alt="Posterstein - more snow please" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/Lazywalkingafterheavyxmaslunch_10A2B/_MG_8270_thumb.jpg" width="340" border="0" /&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b9192f45-17bb-45f0-8d6c-5c6a27e118cd" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,b9192f45-17bb-45f0-8d6c-5c6a27e118cd.aspx</comments>
      <category>art</category>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=92d5a538-04bf-410c-9d79-a2027080229b</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,92d5a538-04bf-410c-9d79-a2027080229b.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,92d5a538-04bf-410c-9d79-a2027080229b.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=92d5a538-04bf-410c-9d79-a2027080229b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a rel="lightbox" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/KoLipealsMakro_14F80/ko-lipe_2.jpg">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="500" alt="ko-lipe" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/KoLipealsMakro_14F80/ko-lipe_thumb.jpg" width="500" border="0" />
          </a>
        </p>
        <p>
Im Zentrum die vier Dresdner: Peggy &amp; Thomas, Susi &amp; David.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=92d5a538-04bf-410c-9d79-a2027080229b" />
      </body>
      <title>Ko Lipe als Makro</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,92d5a538-04bf-410c-9d79-a2027080229b.aspx</guid>
      <link>http://pixelplastic.de/2007/11/07/KoLipeAlsMakro.aspx</link>
      <pubDate>Wed, 07 Nov 2007 22:51:33 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a rel="lightbox" href="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/KoLipealsMakro_14F80/ko-lipe_2.jpg"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="500" alt="ko-lipe" src="http://www.pixelplastic.de/content/binary/WindowsLiveWriter/KoLipealsMakro_14F80/ko-lipe_thumb.jpg" width="500" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Im Zentrum die vier Dresdner: Peggy &amp;amp; Thomas, Susi &amp;amp; David.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=92d5a538-04bf-410c-9d79-a2027080229b" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,92d5a538-04bf-410c-9d79-a2027080229b.aspx</comments>
      <category>art</category>
      <category>photos</category>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=59f8a907-bc3f-4b80-a129-c47de2525a8a</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,59f8a907-bc3f-4b80-a129-c47de2525a8a.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <georss:point>0 0</georss:point>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,59f8a907-bc3f-4b80-a129-c47de2525a8a.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=59f8a907-bc3f-4b80-a129-c47de2525a8a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Also wenn ich Angst vor langen Wörtern hätte, dann wäre mir Hippopotomonstrosesquippedaliophobie
sehr gruselig. Warum in aller Welt wird dieses Wort dann eben genau für die Phobie
vor langen Wörten benutzt?
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=59f8a907-bc3f-4b80-a129-c47de2525a8a" />
      </body>
      <title>Hippopotomonstrosesquippedaliophobie</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,59f8a907-bc3f-4b80-a129-c47de2525a8a.aspx</guid>
      <link>http://pixelplastic.de/2007/10/30/Hippopotomonstrosesquippedaliophobie.aspx</link>
      <pubDate>Tue, 30 Oct 2007 00:48:19 GMT</pubDate>
      <description>&lt;p&gt;
Also wenn ich Angst vor langen Wörtern hätte, dann wäre mir Hippopotomonstrosesquippedaliophobie
sehr gruselig. Warum in aller Welt wird dieses Wort dann eben genau für die Phobie
vor langen Wörten benutzt?
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=59f8a907-bc3f-4b80-a129-c47de2525a8a" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,59f8a907-bc3f-4b80-a129-c47de2525a8a.aspx</comments>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=217fee63-5573-49c0-beb6-8099b5446984</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,217fee63-5573-49c0-beb6-8099b5446984.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,217fee63-5573-49c0-beb6-8099b5446984.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=217fee63-5573-49c0-beb6-8099b5446984</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Wie <a href="http://www.therightstuff.de/2007/09/06/Geocaching+Robert+Und+Marci+Auf+Mephisto+976.aspx">bereits
von Alex berichtet</a> gab es kurz vor meiner <a href="http://blog.pixelplastic.de/2007/08/30/ImBumsbomberNachThailand.aspx">Abreise
nach Südostasien</a> ein Interview mit Robert und mir zum Thema <a href="http://de.wikipedia.org/wiki/Geocaching">Geocaching</a>.
Schon irgendwie lustig, sich selber zu hören. Den <a href="http://mephisto976.uni-leipzig.de/modules.php?name=News&amp;file=article&amp;sid=23129">Artikel</a> inklusive <a href="http://mephisto976.uni-leipzig.de/mp3/bme/050907f3.mp3">Download
des Beitrags</a> kann man auf der Webseite des Leipzig Lokalradios <a href="http://mephisto976.uni-leipzig.de/">mephisto
97.6</a> beziehen.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=217fee63-5573-49c0-beb6-8099b5446984" />
      </body>
      <title>Ich bin im Radio</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,217fee63-5573-49c0-beb6-8099b5446984.aspx</guid>
      <link>http://pixelplastic.de/2007/10/24/IchBinImRadio.aspx</link>
      <pubDate>Wed, 24 Oct 2007 05:02:23 GMT</pubDate>
      <description>&lt;p&gt;
Wie &lt;a href="http://www.therightstuff.de/2007/09/06/Geocaching+Robert+Und+Marci+Auf+Mephisto+976.aspx"&gt;bereits
von Alex berichtet&lt;/a&gt; gab es kurz vor meiner &lt;a href="http://blog.pixelplastic.de/2007/08/30/ImBumsbomberNachThailand.aspx"&gt;Abreise
nach Südostasien&lt;/a&gt; ein Interview mit Robert und mir zum Thema &lt;a href="http://de.wikipedia.org/wiki/Geocaching"&gt;Geocaching&lt;/a&gt;.
Schon irgendwie lustig, sich selber zu hören. Den &lt;a href="http://mephisto976.uni-leipzig.de/modules.php?name=News&amp;amp;file=article&amp;amp;sid=23129"&gt;Artikel&lt;/a&gt; inklusive &lt;a href="http://mephisto976.uni-leipzig.de/mp3/bme/050907f3.mp3"&gt;Download
des Beitrags&lt;/a&gt; kann man auf der Webseite des Leipzig Lokalradios &lt;a href="http://mephisto976.uni-leipzig.de/"&gt;mephisto
97.6&lt;/a&gt;&amp;nbsp;beziehen.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=217fee63-5573-49c0-beb6-8099b5446984" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,217fee63-5573-49c0-beb6-8099b5446984.aspx</comments>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=01f11baf-fdec-4a0f-88f8-ae3448e366c5</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,01f11baf-fdec-4a0f-88f8-ae3448e366c5.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,01f11baf-fdec-4a0f-88f8-ae3448e366c5.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=01f11baf-fdec-4a0f-88f8-ae3448e366c5</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nach den teils erholsamen, aber auch anstrengenden Tagen auf den schicken Inseln im
Osten Borneos hieß es nun wieder: ab in den Dschungel zum Tieregucken. Nächstes Ziel
unserer fünf "lustigen Vier" sollte das Danum Valley Field Center
sein. Mit einem der besten Regenwälder hatten wir entsprechend hohe Erwartungen
an die kommenden Tage. Leider war unsere Ankunft aus Semporna in Lahad Datu auf einen
Sonntag gefallen. Dies hatte zur Folge, dass der Besuch des Danum Valley
Büros vor geschlossenen Türen endete. Also ging es erst einmal mit Sack und Pack die
2km nach Lahad Datu Downtown, um dort eine passende Unterkunft zu finden. Im Hotel
Ocean waren die Preise angenehm und Zimmerkomfort entsprechend. Beim Schlendern über
den großen Markt haben wir uns an vielen kleinen Ständen leckere Happen besorgt um
diese anschliessend in Hafennähe zu verspeisen.
</p>
        <p>
Während Gunnar und Antje recht schnell ins Traumland flüchteten hieß es für Markus,
Claudi und mich noch ordentlich Party machen. Mit den kleinen Boxen von
Markus haben wir abwechselnd mit unseren jeweiligen MP3-Playern versucht einen passenden
Musikmix auf die Beine zu stellen. Die zunehmende Hitze in unserem bescheidenen kleinen
Zimmer veranlasste uns für Abkühlung zu sorgen. So haben wir uns gegenseitig bewedelt
oder mit feuchten Hemden besprenkelt. Markus hatte es dann vorgezogen sich den
Ledersessel ins Bad zu stellen und dort das Wasser direkt über seinen Körper laufen
zu lassen. Herrliches Bild. Zu Partykrachern wie YMCA ließen wir die Wände wackeln
und tanzten auf den Betten. ;-)
</p>
        <p>
Am nächsten Tag war es dann endlich so weit. Auf zum Danum Valley Office. Alles klappt
super - sogar der Studentenrabatt wird uns genehmigt (obwohl wir nicht mehr alle
Studenten sind bzw. der Studiausweis noch in Bangkok liegt). Mit einem gecharterten
4x4 geht's zusammengequestscht die ca. 50km in den Dschungel. Atemberaubend und gleichzeitig
sehr ernüchternd. Der Wald wird immer dichter, die alten Bäume immer höher. Doch gleichzeitig
springen einem die vielen entgegenkommenden Holztransporter ins Auge - diese Trucks
sind randvoll mit diesem wunderbaren Bäumen.
</p>
        <p>
Doch endlich kommen wir im Danum Valley Field Center an. Hier beginnt eine Conservation
Area, wo weder abgeholzt, noch gejagt werden darf. Wir (vor allem Gunnar) sind bis
jetzt absolut begeister von der Landschaft, in die es uns hier verschlagen hat. Die
kommenden Tage werden sicher richtig super.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=01f11baf-fdec-4a0f-88f8-ae3448e366c5" />
      </body>
      <title>Auf dem Weg zum Danum Valley</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,01f11baf-fdec-4a0f-88f8-ae3448e366c5.aspx</guid>
      <link>http://pixelplastic.de/2007/10/01/AufDemWegZumDanumValley.aspx</link>
      <pubDate>Mon, 01 Oct 2007 04:37:03 GMT</pubDate>
      <description>&lt;p&gt;
Nach den teils erholsamen, aber auch anstrengenden Tagen auf den schicken Inseln im
Osten Borneos hieß es nun wieder: ab in den Dschungel zum Tieregucken. Nächstes Ziel
unserer&amp;nbsp;fünf "lustigen&amp;nbsp;Vier"&amp;nbsp;sollte das&amp;nbsp;Danum Valley Field Center
sein. Mit einem der besten Regenwälder hatten wir entsprechend hohe&amp;nbsp;Erwartungen
an die kommenden Tage. Leider war unsere Ankunft aus Semporna in Lahad Datu auf einen
Sonntag gefallen. Dies&amp;nbsp;hatte zur Folge, dass&amp;nbsp;der Besuch des Danum Valley
Büros vor geschlossenen Türen endete. Also ging es erst einmal mit Sack und Pack die
2km nach Lahad Datu Downtown, um dort eine passende Unterkunft zu finden. Im Hotel
Ocean waren die Preise angenehm und Zimmerkomfort entsprechend. Beim Schlendern über
den großen Markt haben wir uns an vielen kleinen Ständen leckere Happen besorgt um
diese anschliessend in Hafennähe zu verspeisen.
&lt;/p&gt;
&lt;p&gt;
Während Gunnar und Antje recht schnell ins Traumland flüchteten hieß es für Markus,
Claudi und mich noch ordentlich Party machen.&amp;nbsp;Mit den&amp;nbsp;kleinen Boxen von
Markus haben wir abwechselnd mit unseren jeweiligen MP3-Playern versucht einen&amp;nbsp;passenden
Musikmix auf die Beine zu stellen. Die zunehmende Hitze in unserem bescheidenen kleinen
Zimmer veranlasste uns für Abkühlung zu sorgen. So haben wir uns gegenseitig bewedelt
oder mit feuchten Hemden besprenkelt. Markus hatte es dann vorgezogen sich&amp;nbsp;den
Ledersessel ins Bad zu stellen und dort das Wasser direkt über seinen Körper laufen
zu lassen. Herrliches Bild. Zu Partykrachern wie YMCA ließen wir die Wände wackeln
und tanzten auf den Betten. ;-)
&lt;/p&gt;
&lt;p&gt;
Am nächsten Tag war es dann endlich so weit. Auf zum Danum Valley Office. Alles klappt
super -&amp;nbsp;sogar der Studentenrabatt wird uns genehmigt (obwohl wir nicht mehr alle
Studenten sind bzw. der Studiausweis noch in Bangkok liegt). Mit einem gecharterten
4x4 geht's zusammengequestscht die ca. 50km in den Dschungel. Atemberaubend und gleichzeitig
sehr ernüchternd. Der Wald wird immer dichter, die alten Bäume immer höher. Doch gleichzeitig
springen einem die vielen entgegenkommenden Holztransporter ins Auge - diese Trucks
sind randvoll mit diesem wunderbaren Bäumen.
&lt;/p&gt;
&lt;p&gt;
Doch endlich kommen wir im Danum Valley Field Center an. Hier beginnt eine Conservation
Area, wo weder abgeholzt, noch gejagt werden darf. Wir (vor allem Gunnar) sind bis
jetzt absolut begeister von der Landschaft, in die es uns hier verschlagen hat. Die
kommenden Tage werden sicher richtig super.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=01f11baf-fdec-4a0f-88f8-ae3448e366c5" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,01f11baf-fdec-4a0f-88f8-ae3448e366c5.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=2d8a44a4-7dd7-46bb-97b6-ed15bf35955a</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,2d8a44a4-7dd7-46bb-97b6-ed15bf35955a.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,2d8a44a4-7dd7-46bb-97b6-ed15bf35955a.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=2d8a44a4-7dd7-46bb-97b6-ed15bf35955a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Wow war das genial. Mein erster Hai in echt - und das gleich unter Wasser. Da ging
mir schon ein bisschen die Muffe. Und dann die vielen Schildkroeten und Barracudas
und... Einfach herrlich. Jetzt hab ich mir aber ein Bier verdient.
</p>
        <p>
Meine Sipadan Tauchgaenge waren am vorletzten Tag unseres Inselausflugs. Somit wurde
der letzte Abend gebuehrend befeiert. Dafuer erhielten wir sogar Besuch vom originalen
Uncle Chang. Es gab eine Party auf der "Speiseterrasse" unserer Mabulunterkunft. Die
Belegschaft hat wie schon Tage zuvor ihr Bestes auf Gitarre, Bass und Schlagzeug gegeben,
um uns mit Popklassikern zu unterhalten. Uncle Chang lies derweil einige Bier springen,
bis es zu spaeterer Stunde sogar geschmuggelten Rum gab. Bis in die fruehen Morgenstunden
haben wir zu den Freigetraenken unsere mitgebrachte MP3-Musik ueber Markus' Miniboxen
angehoert. Was fuer ein Spass.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=2d8a44a4-7dd7-46bb-97b6-ed15bf35955a" />
      </body>
      <title>Haie und anderes Fischgut</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,2d8a44a4-7dd7-46bb-97b6-ed15bf35955a.aspx</guid>
      <link>http://pixelplastic.de/2007/09/28/HaieUndAnderesFischgut.aspx</link>
      <pubDate>Fri, 28 Sep 2007 12:34:33 GMT</pubDate>
      <description>&lt;p&gt;
Wow war das genial. Mein erster Hai in echt - und das gleich unter Wasser. Da ging
mir schon ein bisschen die Muffe. Und dann die vielen Schildkroeten und Barracudas
und... Einfach herrlich. Jetzt hab ich mir aber ein Bier verdient.
&lt;/p&gt;
&lt;p&gt;
Meine Sipadan Tauchgaenge waren am vorletzten Tag unseres Inselausflugs. Somit wurde
der letzte Abend gebuehrend befeiert. Dafuer erhielten wir sogar Besuch vom originalen
Uncle Chang. Es gab eine Party auf der "Speiseterrasse" unserer Mabulunterkunft. Die
Belegschaft hat wie schon Tage zuvor ihr Bestes auf Gitarre, Bass und Schlagzeug gegeben,
um uns mit Popklassikern zu unterhalten. Uncle Chang lies derweil einige Bier springen,
bis es zu spaeterer Stunde sogar geschmuggelten Rum gab. Bis in die fruehen Morgenstunden
haben wir zu den Freigetraenken unsere mitgebrachte MP3-Musik ueber Markus' Miniboxen
angehoert. Was fuer ein Spass.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=2d8a44a4-7dd7-46bb-97b6-ed15bf35955a" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,2d8a44a4-7dd7-46bb-97b6-ed15bf35955a.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=03f03c41-b4e0-43c5-8caf-7e510068db75</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,03f03c41-b4e0-43c5-8caf-7e510068db75.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,03f03c41-b4e0-43c5-8caf-7e510068db75.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=03f03c41-b4e0-43c5-8caf-7e510068db75</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Trotz der kleinen Probe mit Schnorchel und Maske am gestrigen Abend war es der kleinen
Antje heute irgendwie nicht moeglich mit mir unter Wasser zu gehen. Kopfsache und
einfach alles zu schnell fuer sie. Das Problem ist einfach, dass Chris nur 2 1/2 Tage
Zeit fuer uns hat, um den Kurs durchzufuehren. Normalerweise sind mind. 3 1/2 bis
4 Tage angesetzt. Daher muss die Gute aufgeben. Aber zumindest hat sie mit mir gleich
beim ersten Tauchgang die Rueckwaertsrolle vom Boot ins Wasser incl. Taucherequipment
gemeistert.
</p>
        <p>
Fuer mich ging es nun also allein weiter. Aber Chris war ziemlich cool, so dass es
echt Spass gemacht hat mit ihm die Tauchkniffe zu lernen. Die ersten Tauchgaeng enthielten
all den Kram, den man im normalen Taucherleben hoffentlich selten oder nie umsetzten
muss: Maske unter Wasser abnehmen und ausblasen, CESA Notfallauftauchen, Mundstueck
rausnehmen und hinter einen werfen und wiederfinden, ohne Maske im Kreis tauchen,...
</p>
        <p>
Nach besagten 2 1/2 Tagen war es endlich soweit. Der finale vierte Tauchgang und der
Abschlusstest. Hat alles geklappt - ich bin jetzt PADI Open Water Diver. Juhu. Dann
kann es ja morgen gleich mit den anderen dreien nach Sipadan gehen zu den "richtigen"
Fischen. :-)
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=03f03c41-b4e0-43c5-8caf-7e510068db75" />
      </body>
      <title>Tauchen lernen macht Spass</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,03f03c41-b4e0-43c5-8caf-7e510068db75.aspx</guid>
      <link>http://pixelplastic.de/2007/09/27/TauchenLernenMachtSpass.aspx</link>
      <pubDate>Thu, 27 Sep 2007 12:30:08 GMT</pubDate>
      <description>&lt;p&gt;
Trotz der kleinen Probe mit Schnorchel und Maske am gestrigen Abend war es der kleinen
Antje heute irgendwie nicht moeglich mit mir unter Wasser zu gehen. Kopfsache und
einfach alles zu schnell fuer sie. Das Problem ist einfach, dass Chris nur 2 1/2 Tage
Zeit fuer uns hat, um den Kurs durchzufuehren. Normalerweise sind mind. 3 1/2 bis
4 Tage angesetzt. Daher muss die Gute aufgeben. Aber zumindest hat sie mit mir gleich
beim ersten Tauchgang die Rueckwaertsrolle vom Boot ins Wasser incl. Taucherequipment
gemeistert.
&lt;/p&gt;
&lt;p&gt;
Fuer mich ging es nun also allein weiter. Aber Chris war ziemlich cool, so dass es
echt Spass gemacht hat mit ihm die Tauchkniffe zu lernen. Die ersten Tauchgaeng enthielten
all den Kram, den man im normalen Taucherleben hoffentlich selten oder nie umsetzten
muss: Maske unter Wasser abnehmen und ausblasen, CESA Notfallauftauchen, Mundstueck
rausnehmen und hinter einen werfen und wiederfinden, ohne Maske im Kreis tauchen,...
&lt;/p&gt;
&lt;p&gt;
Nach besagten 2 1/2 Tagen war es endlich soweit. Der finale vierte Tauchgang und der
Abschlusstest. Hat alles geklappt - ich bin jetzt PADI Open Water Diver. Juhu. Dann
kann es ja morgen gleich mit den anderen dreien nach Sipadan gehen zu den "richtigen"
Fischen. :-)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=03f03c41-b4e0-43c5-8caf-7e510068db75" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,03f03c41-b4e0-43c5-8caf-7e510068db75.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=687fcb58-af49-4f04-84c6-f1aba423e608</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,687fcb58-af49-4f04-84c6-f1aba423e608.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,687fcb58-af49-4f04-84c6-f1aba423e608.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=687fcb58-af49-4f04-84c6-f1aba423e608</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nach der erholsamen Nacht im auf Stelzen gebauten Dragon Inn in Semporna ging es am
naechsten Morgen wieder mal recht frueh raus. Seit wir mit Claudi und Pipe unterwegs
sind, ist der Zeitplan recht straff, was sich in diesen unchristlichen Aufstehzeiten
zu frueher Morgenstunde bereits mehrfach gezeigt hat. Aber schliesslich soll es ja
auf die Insel Mabul gehen. Also checken wir nach einem spaerlichen Fruestueck gleich
mal das nahe gelegene Buero von Uncle Chang. Dort wird die von Claudi arangierte Reservierung
bestaetigt und wir (Antje und ich) lernen bereits unseren Tauchlehrer Chris kennen.
Mit der Aufgabe, die Kapitel 1-3 des PADI-Lehrbuches zu studieren starten wir mit
etwas Verspaetung (Guntje und Annar mal wieder) in Richtung Mabul Island.
</p>
        <p>
Mit Pauken und Trompeten werden wir von der witzigen Crew unserer kommenden Mabulunterkunft
empfangen. Scheinbar haben die nicht viel zu tun, wenn man bedenkt, dass da vor uns
auf einem selbst gebauten Schlagzeug aus Eimern und Toepfen der Sipadan-Song fuer
uns gespielt wird.
</p>
        <p>
Waehrend Claudi, Gunnar und Markus die ersten beiden Tauchgaenge auf Mabul absolvieren
bueffeln Antje und ich fleissig die PADI-Lektuere. Morgen soll es dann mit dem ersten
Tauchgang losgehen.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=687fcb58-af49-4f04-84c6-f1aba423e608" />
      </body>
      <title>Verrueckte Belegschaft auf Mabul</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,687fcb58-af49-4f04-84c6-f1aba423e608.aspx</guid>
      <link>http://pixelplastic.de/2007/09/23/VerrueckteBelegschaftAufMabul.aspx</link>
      <pubDate>Sun, 23 Sep 2007 12:15:09 GMT</pubDate>
      <description>&lt;p&gt;
Nach der erholsamen Nacht im auf Stelzen gebauten Dragon Inn in Semporna ging es am
naechsten Morgen wieder mal recht frueh raus. Seit wir mit Claudi und Pipe unterwegs
sind, ist der Zeitplan recht straff, was sich in diesen unchristlichen Aufstehzeiten
zu frueher Morgenstunde bereits mehrfach gezeigt hat. Aber schliesslich soll es ja
auf die Insel Mabul gehen. Also checken wir nach einem spaerlichen Fruestueck gleich
mal das nahe gelegene Buero von Uncle Chang. Dort wird die von Claudi arangierte Reservierung
bestaetigt und wir (Antje und ich) lernen bereits unseren Tauchlehrer Chris kennen.
Mit der Aufgabe, die Kapitel 1-3 des PADI-Lehrbuches zu studieren starten wir mit
etwas Verspaetung (Guntje und Annar mal wieder) in Richtung Mabul Island.
&lt;/p&gt;
&lt;p&gt;
Mit Pauken und Trompeten werden wir von der witzigen Crew unserer kommenden Mabulunterkunft
empfangen. Scheinbar haben die nicht viel zu tun, wenn man bedenkt, dass da vor uns
auf einem selbst gebauten Schlagzeug aus Eimern und Toepfen der Sipadan-Song fuer
uns gespielt wird.
&lt;/p&gt;
&lt;p&gt;
Waehrend Claudi, Gunnar und Markus die ersten beiden Tauchgaenge auf Mabul absolvieren
bueffeln Antje und ich fleissig die PADI-Lektuere. Morgen soll es dann mit dem ersten
Tauchgang losgehen.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=687fcb58-af49-4f04-84c6-f1aba423e608" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,687fcb58-af49-4f04-84c6-f1aba423e608.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=8fb1a8d8-2e70-42fa-9ad7-cabc9e343bc7</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,8fb1a8d8-2e70-42fa-9ad7-cabc9e343bc7.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,8fb1a8d8-2e70-42fa-9ad7-cabc9e343bc7.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=8fb1a8d8-2e70-42fa-9ad7-cabc9e343bc7</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nachdem ich gestern mit einer alten Focker knappe vier Stunden vor meinen Mitreisenden
in Miri gelandet war hiess es fuer mich warten, warte, warten. Um 15 Uhr irgedwas
sollte deren Maschiene nachkommen und uns wieder vereinen. Doch das blanke Starren
auf das Arrivaldisplay liess mich von Minute zu Minute immer mehr zweifeln. Nachdem
die zuletzt angezeigte Maschiene 16:20 landen sollte, bin ich dann doch mal zur Information
gelaufen um nachzufragen, was mit Flug AK5135 los ist. Kurzes blaetter in der Flugliste
... es gibt heute nur einen Flug von Mulu nach Miri - mein Mittagsflug. Und nun? Ich
steh' alleine ohne meinen lustigen Freunde und kann sie nicht erreichen. Plan B: Ich
fahre in die Stadt, nehme mir eine Unterkunft und versuche den dreien per Email zu
schreiben, wo ich dann in Lahad Datu auf sie warten werde. Also auf zum Bus - doch
da macht's noch mal klick. Moment mal, wenn es hier solche Probleme mit Air Asia gibt,
dann frag ich doch lieber noch mal nach, wie das mit meinen beiden morgigen Fluegen
von Miri nach Kota Kinabalu und von Kota Kinabalu nach Lahad Datu aussieht. Kurzes
blaettern im Flugplan. Alles klaro - die Fluege gehen fast wie geplant. Nur der Anschlussflug
von Kota Kinabalu hat so knappe 3 Stunden verspaetung. Aber das ist ja nicht weiter
schlimm. Ploetzlich tippt mir eine bekopftuchte junge Malayin auf die Schulter: "Mr.
Marcel?". "Yes, that's me.". "I got call of your friends from Mulu. Their flight was
canceled." Na das hab ich auch schon rausgefunden. Und jetzt? Ich darf ihr in ihr
Mulu Resort Buero am Flughafen folgen und bekomme sogar die Moeglichkeit kurz mit
Gunnar zu sprechen. So richtig wissen die vier noch nicht, wie es bei ihnen weiter
geht. Daher sage ich Gunnar, das ich per Email schreiben werde, wo ich in Lahad Datu
auf sie warten werde. Mensch, Mensch.
</p>
        <p>
Per Taxi ohne knueppelnden Taxifahrer ging es diesmal in ein besseres, wenn auch teureres
Hotel in Miri. Nach einem guenstigen indischen Abendessen ging es zur einsamen Nachtruhe
- ohne die vier lustigen Fuenf.
</p>
        <p>
Heute frueh dann zeitig raus, um den Flug nach Kota Kinabalu zu erwischen. Hat auch
alles geklappt. Nur standen mir nach der dortigen Landung ganze sechs lange Stunden
Warterei auf dem Airport bevor. Doch mit einem Buch verging die Zeit dann noch recht
angenehm.
</p>
        <p>
Endlich Checkin. Jetzt nur noch auf's Boarding warten. Schoene grosse Schaufenster
haben die hier in der Wartehalle. Man kann direkt auf die Landebahn und die Parkingslots
der Flugzeuge schauen und beobachten, wie Passagiere ein- und aussteigen (Air Asia
hat keine direkten Gates zum Flugzeug, man laeuft hier direkt in die Arrival-Halle).
Doch was ist das? Aus der gerade gelandeten Maschiene kommen als erstes vier europaeisch
aussehende, junge Leute gestuermt. Das sind meine Freunde. Juchhuuu. Schnell die Kamera
ausgepackt und Fotos geschossen. Erst nach einigen Sekunden merke ich, dass mich die
ganzen wartenden Asiaten um mich herrum verwirrt anschauen. Die koennen sich ja schliesslich
nicht vorstellen, wer da gerade vor unserem Schaufenster steht.
</p>
        <p>
Die vier (oder besser die beiden Maedels mit ihrem Charme) haben es irgendwie geschafft
Air Asia noch dazu zu bringen, sie am heutigen Tage von Mulu, ueber Miri hier nach
Kota Kinabalu zu befoerdern. Und gleich geht unsere Maschiene weiter nach Lahad Datu.
Aber zuvor umarmen wir uns noch uebergluecklich in der Wartehalle. Wow. Was fuer ein
Erlebniss und was fuer ein Timing.
</p>
        <p>
In Lahad Datu angekommen schaffen wir es uns noch vor der Dunkelheit einen Jeep zu
organisieren, der uns die knappen 150km in Richtung Sueden nach Semporna bringen soll.
Von dieser Hafenstadt aus soll es morgen endlich auf die Insel gehen, wo mein Tauschein
auf mich wartet. Ich bin gespannt und schlafe gemuetlich ein. (vorher gab's noch leckere
Beef Burger und Riesepoette frisch gepresste Fruchtsaefte)
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=8fb1a8d8-2e70-42fa-9ad7-cabc9e343bc7" />
      </body>
      <title>Verlust der Freunde</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,8fb1a8d8-2e70-42fa-9ad7-cabc9e343bc7.aspx</guid>
      <link>http://pixelplastic.de/2007/09/23/VerlustDerFreunde.aspx</link>
      <pubDate>Sun, 23 Sep 2007 05:02:14 GMT</pubDate>
      <description>&lt;p&gt;
Nachdem ich gestern mit einer alten Focker knappe vier Stunden vor meinen Mitreisenden
in Miri gelandet war hiess es fuer mich warten, warte, warten. Um 15 Uhr irgedwas
sollte deren Maschiene nachkommen und uns wieder vereinen. Doch das blanke Starren
auf das Arrivaldisplay liess mich von Minute zu Minute immer mehr zweifeln. Nachdem
die zuletzt angezeigte Maschiene 16:20 landen sollte, bin ich dann doch mal zur Information
gelaufen um nachzufragen, was mit Flug AK5135 los ist. Kurzes blaetter in der Flugliste
... es gibt heute nur einen Flug von Mulu nach Miri - mein Mittagsflug. Und nun? Ich
steh' alleine ohne meinen lustigen Freunde und kann sie nicht erreichen. Plan B: Ich
fahre in die Stadt, nehme mir eine Unterkunft und versuche den dreien per Email zu
schreiben, wo ich dann in Lahad Datu auf sie warten werde. Also auf zum Bus - doch
da macht's noch mal klick. Moment mal, wenn es hier solche Probleme mit Air Asia gibt,
dann frag ich doch lieber noch mal nach, wie das mit meinen beiden morgigen Fluegen
von Miri nach Kota Kinabalu und von Kota Kinabalu nach Lahad Datu aussieht. Kurzes
blaettern im Flugplan. Alles klaro - die Fluege gehen fast wie geplant. Nur der Anschlussflug
von Kota Kinabalu hat so knappe 3 Stunden verspaetung. Aber das ist ja nicht weiter
schlimm. Ploetzlich tippt mir eine bekopftuchte junge Malayin auf die Schulter: "Mr.
Marcel?". "Yes, that's me.". "I got call of your friends from Mulu. Their flight was
canceled." Na das hab ich auch schon rausgefunden. Und jetzt? Ich darf ihr in ihr
Mulu Resort Buero am Flughafen folgen und bekomme sogar die Moeglichkeit kurz mit
Gunnar zu sprechen. So richtig wissen die vier noch nicht, wie es bei ihnen weiter
geht. Daher sage ich Gunnar, das ich per Email schreiben werde, wo ich in Lahad Datu
auf sie warten werde. Mensch, Mensch.
&lt;/p&gt;
&lt;p&gt;
Per Taxi ohne knueppelnden Taxifahrer ging es diesmal in ein besseres, wenn auch teureres
Hotel in Miri. Nach einem guenstigen indischen Abendessen ging es zur einsamen Nachtruhe
- ohne die vier lustigen Fuenf.
&lt;/p&gt;
&lt;p&gt;
Heute frueh dann zeitig raus, um den Flug nach Kota Kinabalu zu erwischen. Hat auch
alles geklappt. Nur standen mir nach der dortigen Landung ganze sechs lange Stunden
Warterei auf dem Airport bevor. Doch mit einem Buch verging die Zeit dann noch recht
angenehm.
&lt;/p&gt;
&lt;p&gt;
Endlich Checkin. Jetzt nur noch auf's Boarding warten. Schoene grosse Schaufenster
haben die hier in der Wartehalle. Man kann direkt auf die Landebahn und die Parkingslots
der Flugzeuge schauen und beobachten, wie Passagiere ein- und aussteigen (Air Asia
hat keine direkten Gates zum Flugzeug, man laeuft hier direkt in die Arrival-Halle).
Doch was ist das? Aus der gerade gelandeten Maschiene kommen als erstes vier europaeisch
aussehende, junge Leute gestuermt. Das sind meine Freunde. Juchhuuu. Schnell die Kamera
ausgepackt und Fotos geschossen. Erst nach einigen Sekunden merke ich, dass mich die
ganzen wartenden Asiaten um mich herrum verwirrt anschauen. Die koennen sich ja schliesslich
nicht vorstellen, wer da gerade vor unserem Schaufenster steht.
&lt;/p&gt;
&lt;p&gt;
Die vier (oder besser die beiden Maedels mit ihrem Charme) haben es irgendwie geschafft
Air Asia noch dazu zu bringen, sie am heutigen Tage von Mulu, ueber Miri hier nach
Kota Kinabalu zu befoerdern. Und gleich geht unsere Maschiene weiter nach Lahad Datu.
Aber zuvor umarmen wir uns noch uebergluecklich in der Wartehalle. Wow. Was fuer ein
Erlebniss und was fuer ein Timing.
&lt;/p&gt;
&lt;p&gt;
In Lahad Datu angekommen schaffen wir es uns noch vor der Dunkelheit einen Jeep zu
organisieren, der uns die knappen 150km in Richtung Sueden nach Semporna bringen soll.
Von dieser Hafenstadt aus soll es morgen endlich auf die Insel gehen, wo mein Tauschein
auf mich wartet. Ich bin gespannt und schlafe gemuetlich ein. (vorher gab's noch leckere
Beef Burger und Riesepoette frisch gepresste Fruchtsaefte)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=8fb1a8d8-2e70-42fa-9ad7-cabc9e343bc7" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,8fb1a8d8-2e70-42fa-9ad7-cabc9e343bc7.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=e143f2f3-5a95-41ca-aef7-82f02f5db9a0</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,e143f2f3-5a95-41ca-aef7-82f02f5db9a0.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,e143f2f3-5a95-41ca-aef7-82f02f5db9a0.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=e143f2f3-5a95-41ca-aef7-82f02f5db9a0</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nach dem wunderbaren Erlebnis in den Deer Caves ging es am kommenden Morgen gleich
frueh miteinem Longboat vom Mulu Headquater weiter in den National Park hinein. Der
Fluss wurde immer flacher, so dass wir mehrmals allemann aussteigen mussten, um das
Boot mit voller Beinkraft ueber die recht rutschigen runden Steine anzuschieben. Zwischendurch
noch ein kurzer Stop an der Wind- und Clearwatercave, wo es ein erfrischendes Bad
in super klarem Wasser gab. Ausserdem durften wir noch einmal an Land, um Handicrafts
zu kaufen. Was auch immer ich mit dem Krempel auf einer Trekkingtour anfangen soll.
Also waren wir ziemlich schnell wieder im Boot und sind weiter stromaufwaerts in Richtung
Camp 5 gefahren.
</p>
        <p>
Irgendwann ging es dann wirklich nicht mehr mit dem Boot weiter, so dass wir die letzten
8.8km zu Fuss quer durch den Regenwald laufen mussten. Nach knappen 2.5 Stunden und
zwei Haengebruecken waren wir endlich am Ziel und ganz schoen erschoepft. Wie soll
das erst am kommenden Tag werden, wenn wir hinauf zu den Pinnacles laufen muessen?
Diesen Gedanken haben wir versucht mit einem leckeren selbst gekochten Abendmahl und
einem erfrischenden Bad im kuehlen Fluss verschwinden zu lassen. Ja wir mussten unser
Essen fuer die drei Tage im Camp 5 selber mitbringen.
</p>
        <p>
Nach einer etwas verregneten Nacht ging es am naechsten Morgen um 6 Uhr raus, um sich
fuer die Tour fit zu machen. Frisch gestaerkt starteten wir und mussten nach 5 Minuten
feststellen, dass es wirklich nur bergauf geht. Und bergauf heisst in diesem Fall:
Treppensteigen. Nur dass es keine Treppen waren - eher Baumwurzeln und hauptsaechlich
Geroell und die spitzen Steine Felsen des Kalkgesteins. Die ersten zwei Wanderkilometer
waren nach ca. 2 Stunden geschafft - aber noch nicht das Ziel. Die restlichen 400m
waren mehr oder weniger durch Klettern und dem erklimmen von Leitern gepraegt, was
mehr als eine weitere Stunde in Anspruch nahm. Der Abstieg dauerte komischerweise
zwei Stunden laenger. Lag wohl daran, dass wir aufgrund der Steilheit teilweise rueckwaerts
hinabsteigen mussten. Sichtlich erschoepft kamen wir aber dennoch unbeschadet im Camp
5 an. Daher ging es auch ziemlich schell zu Bett. Zudem mussten wir am naechsten Tag
schon wieder ziemlich frueh raus. Da am kommenden Tag mein Flieger zurueck nach Miri
schon mittags abheben sollte, hatten wir nicht viel Zeit fuer die ca. 9km Fussmarsch
durch den Wald und die Bootsfahrt zurueck zum Headquarter.
</p>
        <p>
Der Rueckweg durch den Dschungel ging erstaunlich schnell (schneller als hinwaerts)
und auch die Bootsfahrt verlief ohne Probleme. So hatten wir im Headwuarter noch Zeit
fuer ein kleines Fruehstueck, bevor ich mich von meinen Freunden verabschieden musste.
Wir sollten uns dann in knappen vier Stunden in Miri wieder vereinen, um zusammen
nach Lahad Datu weiterzufliegen.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e143f2f3-5a95-41ca-aef7-82f02f5db9a0" />
      </body>
      <title>Auf 1200m zu den Pinnacles</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,e143f2f3-5a95-41ca-aef7-82f02f5db9a0.aspx</guid>
      <link>http://pixelplastic.de/2007/09/20/Auf1200mZuDenPinnacles.aspx</link>
      <pubDate>Thu, 20 Sep 2007 12:01:15 GMT</pubDate>
      <description>&lt;p&gt;
Nach dem wunderbaren Erlebnis in den Deer Caves ging es am kommenden Morgen gleich
frueh miteinem Longboat vom Mulu Headquater weiter in den National Park hinein. Der
Fluss wurde immer flacher, so dass wir mehrmals allemann aussteigen mussten, um das
Boot mit voller Beinkraft ueber die recht rutschigen runden Steine anzuschieben. Zwischendurch
noch ein kurzer Stop an der Wind- und Clearwatercave, wo es ein erfrischendes Bad
in super klarem Wasser gab. Ausserdem durften wir noch einmal an Land, um Handicrafts
zu kaufen. Was auch immer ich mit dem Krempel auf einer Trekkingtour anfangen soll.
Also waren wir ziemlich schnell wieder im Boot und sind weiter stromaufwaerts in Richtung
Camp 5 gefahren.
&lt;/p&gt;
&lt;p&gt;
Irgendwann ging es dann wirklich nicht mehr mit dem Boot weiter, so dass wir die letzten
8.8km zu Fuss quer durch den Regenwald laufen mussten. Nach knappen 2.5 Stunden und
zwei Haengebruecken waren wir endlich am Ziel und ganz schoen erschoepft. Wie soll
das erst am kommenden Tag werden, wenn wir hinauf zu den Pinnacles laufen muessen?
Diesen Gedanken haben wir versucht mit einem leckeren selbst gekochten Abendmahl und
einem erfrischenden Bad im kuehlen Fluss verschwinden zu lassen. Ja wir mussten unser
Essen fuer die drei Tage im Camp 5 selber mitbringen.
&lt;/p&gt;
&lt;p&gt;
Nach einer etwas verregneten Nacht ging es am naechsten Morgen um 6 Uhr raus, um sich
fuer die Tour fit zu machen. Frisch gestaerkt starteten wir und mussten nach 5 Minuten
feststellen, dass es wirklich nur bergauf geht. Und bergauf heisst in diesem Fall:
Treppensteigen. Nur dass es keine Treppen waren - eher Baumwurzeln und hauptsaechlich
Geroell und die spitzen Steine Felsen des Kalkgesteins. Die ersten zwei Wanderkilometer
waren nach ca. 2 Stunden geschafft - aber noch nicht das Ziel. Die restlichen 400m
waren mehr oder weniger durch Klettern und dem erklimmen von Leitern gepraegt, was
mehr als eine weitere Stunde in Anspruch nahm. Der Abstieg dauerte komischerweise
zwei Stunden laenger. Lag wohl daran, dass wir aufgrund der Steilheit teilweise rueckwaerts
hinabsteigen mussten. Sichtlich erschoepft kamen wir aber dennoch unbeschadet im Camp
5 an. Daher ging es auch ziemlich schell zu Bett. Zudem mussten wir am naechsten Tag
schon wieder ziemlich frueh raus. Da am kommenden Tag mein Flieger zurueck nach Miri
schon mittags abheben sollte, hatten wir nicht viel Zeit fuer die ca. 9km Fussmarsch
durch den Wald und die Bootsfahrt zurueck zum Headquarter.
&lt;/p&gt;
&lt;p&gt;
Der Rueckweg durch den Dschungel ging erstaunlich schnell (schneller als hinwaerts)
und auch die Bootsfahrt verlief ohne Probleme. So hatten wir im Headwuarter noch Zeit
fuer ein kleines Fruehstueck, bevor ich mich von meinen Freunden verabschieden musste.
Wir sollten uns dann in knappen vier Stunden in Miri wieder vereinen, um zusammen
nach Lahad Datu weiterzufliegen.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e143f2f3-5a95-41ca-aef7-82f02f5db9a0" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,e143f2f3-5a95-41ca-aef7-82f02f5db9a0.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=b2389b05-8ae0-4638-b910-1fa4937f9b9c</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,b2389b05-8ae0-4638-b910-1fa4937f9b9c.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,b2389b05-8ae0-4638-b910-1fa4937f9b9c.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=b2389b05-8ae0-4638-b910-1fa4937f9b9c</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Ein Muss fuer jeden Besucher des Mulu National Parks sind die Hoehlen. Durch Erosion
bildeten sich im laufe der Jahrtausende entsprechende Hoehlen im Kalkstein. Die beeindruckenste
ist die Deer Cave und gilt als die groesste Hoehle der Welt. Ein Jumbojet koennte
problemlos darin Platz finden. Wer die BBC Reportagen "Blue Planet" kennt, hat sicher
auch die Folge ueber Hoehlen gesehen, wo es unter anderem auch um diese Deer Cave
geht.
</p>
        <p>
Doch zunaechst sollte es fuer uns auf eine kleine Exkursion durch den dortigen Regenwald
gehen. Dafuer wurde fuer die Besucher ein Pfad auf 20m Hoehe zwischen den Bauemen
angelegt. Auf diesem sogenannten Canope Walk liefen wir auf mehreren schmalen Haengebruecken
und konnten den Dschungel mal aus einer anderen Perspektive erleben. Mit knappem Zeitplan
ging es gleich danach bei brennender Hitze zum 15min entfernten Flugplatz, um dort
Claudi und Markus abzuholen. Leider hatten wir irgendwas mit den Zeiten verwechselt,
so dass wir leider erst knapp eine Stunde nach deren Ankunft vor Ort waren. Also hiess
es: aklimatisieren (eiskalte Coke fuer jeden) und den heissen Asphaltweg (direkte
Sonneneinstrahlung zur Mittagszeit) zurueck laufen. Juhu und dort haben wir sie endlich
in den Arm nehmen koennen. Was fuer ein Spass. Gleich wurden bei kuehler Coke alle
News und Erlebnisse der letzten Tage erzaehlt, so dass wir dann doch etwas hektisch
wurden, als es zur Deer Cave gehen sollte.
</p>
        <p>
Unser irgendwie merkwuerdiger Ranger konnte nicht so recht auf uns warten und ist
vom Headquarter aus schon mal ohne uns losgelaufen, obwohl wir 2 Minuten vorher am
vereinbarten Ort waren. Naja so konnten wir wenigstens allein durch den Regenwald
zur gigantischen Hoehle laufen (der Weg war allerdings ein angelegter Pfad). Und wow:
endlich erhebt sich unter dem dichten Regenwald durchschauend die riesige Kalksteinwand,
wo schon Ansaetze der Hoehle zu sehen sind. Nachdem wir unseren Ranger wieder gefunden
hatte, ging es zunaechst in eine kleinere Hoehle und anschliessend in das unglaublich
grosse Loch im Fels. Holla die Waldfee. Da passt wirklich ne Menge rein. Und vor allem
Fledermaeuse. Diese konnte man naemlich nach dem kleinen Rundgang in der Hoehle von
drausen herausfliegen sehen. So kamen die kleinen Flattertiere binnen einer knappen
Stunde in einem ununterbrochenen Strom aus der Hoehle und flogen ueber unsere Koepfe
der Sonne entgegen. Sehr spektakulaer.
</p>
        <p>
Morgen werden wir den Trip zum Camp 5 antreten um die Pinnacles zu erklimmen. Ein
nur 2.4km langer Wanderpfad, der aber auf 1200m Hoehe fuehrt. Puuh ich denke das wird
anstrengend.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b2389b05-8ae0-4638-b910-1fa4937f9b9c" />
      </body>
      <title>Hoehlenabenteuer im Mulu - Endlich zu fuenft</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,b2389b05-8ae0-4638-b910-1fa4937f9b9c.aspx</guid>
      <link>http://pixelplastic.de/2007/09/19/HoehlenabenteuerImMuluEndlichZuFuenft.aspx</link>
      <pubDate>Wed, 19 Sep 2007 13:31:33 GMT</pubDate>
      <description>&lt;p&gt;
Ein Muss fuer jeden Besucher des Mulu National Parks sind die Hoehlen. Durch Erosion
bildeten sich im laufe der Jahrtausende entsprechende Hoehlen im Kalkstein. Die beeindruckenste
ist die Deer Cave und gilt als die groesste Hoehle der Welt. Ein Jumbojet koennte
problemlos darin Platz finden. Wer die BBC Reportagen "Blue Planet" kennt, hat sicher
auch die Folge ueber Hoehlen gesehen, wo es unter anderem auch um diese Deer Cave
geht.
&lt;/p&gt;
&lt;p&gt;
Doch zunaechst sollte es fuer uns auf eine kleine Exkursion durch den dortigen Regenwald
gehen. Dafuer wurde fuer die Besucher ein Pfad auf 20m Hoehe zwischen den Bauemen
angelegt. Auf diesem sogenannten Canope Walk liefen wir auf mehreren schmalen Haengebruecken
und konnten den Dschungel mal aus einer anderen Perspektive erleben. Mit knappem Zeitplan
ging es gleich danach bei brennender Hitze zum 15min entfernten Flugplatz, um dort
Claudi und Markus abzuholen. Leider hatten wir irgendwas mit den Zeiten verwechselt,
so dass wir leider erst knapp eine Stunde nach deren Ankunft vor Ort waren. Also hiess
es: aklimatisieren (eiskalte Coke fuer jeden) und den heissen Asphaltweg (direkte
Sonneneinstrahlung zur Mittagszeit) zurueck laufen. Juhu und dort haben wir sie endlich
in den Arm nehmen koennen. Was fuer ein Spass. Gleich wurden bei kuehler Coke alle
News und Erlebnisse der letzten Tage erzaehlt, so dass wir dann doch etwas hektisch
wurden, als es zur Deer Cave gehen sollte.
&lt;/p&gt;
&lt;p&gt;
Unser irgendwie merkwuerdiger Ranger konnte nicht so recht auf uns warten und ist
vom Headquarter aus schon mal ohne uns losgelaufen, obwohl wir 2 Minuten vorher am
vereinbarten Ort waren. Naja so konnten wir wenigstens allein durch den Regenwald
zur gigantischen Hoehle laufen (der Weg war allerdings ein angelegter Pfad). Und wow:
endlich erhebt sich unter dem dichten Regenwald durchschauend die riesige Kalksteinwand,
wo schon Ansaetze der Hoehle zu sehen sind. Nachdem wir unseren Ranger wieder gefunden
hatte, ging es zunaechst in eine kleinere Hoehle und anschliessend in das unglaublich
grosse Loch im Fels. Holla die Waldfee. Da passt wirklich ne Menge rein. Und vor allem
Fledermaeuse. Diese konnte man naemlich nach dem kleinen Rundgang in der Hoehle von
drausen herausfliegen sehen. So kamen die kleinen Flattertiere binnen einer knappen
Stunde in einem ununterbrochenen Strom aus der Hoehle und flogen ueber unsere Koepfe
der Sonne entgegen. Sehr spektakulaer.
&lt;/p&gt;
&lt;p&gt;
Morgen werden wir den Trip zum Camp 5 antreten um die Pinnacles zu erklimmen. Ein
nur 2.4km langer Wanderpfad, der aber auf 1200m Hoehe fuehrt. Puuh ich denke das wird
anstrengend.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b2389b05-8ae0-4638-b910-1fa4937f9b9c" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,b2389b05-8ae0-4638-b910-1fa4937f9b9c.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=d5986c74-6681-4da3-9af9-e64fe2b9d489</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,d5986c74-6681-4da3-9af9-e64fe2b9d489.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,d5986c74-6681-4da3-9af9-e64fe2b9d489.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=d5986c74-6681-4da3-9af9-e64fe2b9d489</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nachdem es gestern Abend endlich wieder Beefburger zu spaeter Stunde gab, ging es
nach entspannender Nacht heute frueh mit dem Ekspress Boot weiter in Richtung Mulu
National Park. Zwischendurch mussten wir allerdings aufgrund der geringer werdenden
Flusstiefe das Ekspress Boot gegen ein Longboot eintauschen. Etwas geschockt ueber
den Preis ging es von Long Terawan aus in schmalem Boot durch die gruene Landschaft.
Wir haben Long Terawan gegen 16 Uhr verlassen und wollten nach Auskunft unseres Bootsmannes
in anderthalb Stunden am Mulu Headquarter sein. Soweit der Plan - leider muckte nach
einer Stunde der Motor auf und erlaubte es dem Bootsmann nicht uns den restlichen
Weg stromaufwaerts weiter zu fahren. Wir liessen uns also wieder stromabwaerts treiben,
waehrend es zunehmends dunkler wurde. Ein wenig komisch wurde uns schon, als es schliesslich
wirklich dunkel war und wir noch immer nicht das Hausboot erreichten, wo der Motor
gewechselt werden sollte. Letzendlich kamen wir dort aber doch noch an und durften
den restlichen Weg nun bei voller Dunkelheit erleben. Dabei wurde mit zwei Taschenlampen
der Weg gesucht und nach Tieren am Ufer ausschau gehalten. Hier und da aufblitzende
Gluehwuermchen machten die Reise etwas angenehmer. Mit ordentlich Verspaetung kamen
wir gegen 21:30 im Headquater an und konnten uns gleich im von Claudia reservierten
Zimmer einquartieren. Wir sind da. Der Flug haette 30 Minuten gedauert. Wir waren
ganze zwei Tage unterwegs. Aber wir hatten ja Zeit. Morgen treffen wir dann endlich
Claudi und Markus. Das wird ein Fest. Mal sehen, ob wir den deutschen Traditionstanz
mit unseren Schlafsackinlethuellen vorfuehren. ;-)
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d5986c74-6681-4da3-9af9-e64fe2b9d489" />
      </body>
      <title>Bootsfahrt zum Mulu National Park</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,d5986c74-6681-4da3-9af9-e64fe2b9d489.aspx</guid>
      <link>http://pixelplastic.de/2007/09/18/BootsfahrtZumMuluNationalPark.aspx</link>
      <pubDate>Tue, 18 Sep 2007 13:15:46 GMT</pubDate>
      <description>&lt;p&gt;
Nachdem es gestern Abend endlich wieder Beefburger zu spaeter Stunde gab, ging es
nach entspannender Nacht heute frueh mit dem Ekspress Boot weiter in Richtung Mulu
National Park. Zwischendurch mussten wir allerdings aufgrund der geringer werdenden
Flusstiefe das Ekspress Boot gegen ein Longboot eintauschen. Etwas geschockt ueber
den Preis ging es von Long Terawan aus in schmalem Boot durch die gruene Landschaft.
Wir haben Long Terawan gegen 16 Uhr verlassen und wollten nach Auskunft unseres Bootsmannes
in anderthalb Stunden am Mulu Headquarter sein. Soweit der Plan - leider muckte nach
einer Stunde der Motor auf und erlaubte es dem Bootsmann nicht uns den restlichen
Weg stromaufwaerts weiter zu fahren. Wir liessen uns also wieder stromabwaerts treiben,
waehrend es zunehmends dunkler wurde. Ein wenig komisch wurde uns schon, als es schliesslich
wirklich dunkel war und wir noch immer nicht das Hausboot erreichten, wo der Motor
gewechselt werden sollte. Letzendlich kamen wir dort aber doch noch an und durften
den restlichen Weg nun bei voller Dunkelheit erleben. Dabei wurde mit zwei Taschenlampen
der Weg gesucht und nach Tieren am Ufer ausschau gehalten. Hier und da aufblitzende
Gluehwuermchen machten die Reise etwas angenehmer. Mit ordentlich Verspaetung kamen
wir gegen 21:30 im Headquater an und konnten uns gleich im von Claudia reservierten
Zimmer einquartieren. Wir sind da. Der Flug haette 30 Minuten gedauert. Wir waren
ganze zwei Tage unterwegs. Aber wir hatten ja Zeit. Morgen treffen wir dann endlich
Claudi und Markus. Das wird ein Fest. Mal sehen, ob wir den deutschen Traditionstanz
mit unseren Schlafsackinlethuellen vorfuehren. ;-)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d5986c74-6681-4da3-9af9-e64fe2b9d489" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,d5986c74-6681-4da3-9af9-e64fe2b9d489.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=63773640-d4f8-4f41-8576-53ba28d349d5</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,63773640-d4f8-4f41-8576-53ba28d349d5.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,63773640-d4f8-4f41-8576-53ba28d349d5.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=63773640-d4f8-4f41-8576-53ba28d349d5</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://blog.pixelplastic.de/content/binary/_MG_1886.jpg">
            <img alt="Batang Ai National Park" style="margin: 10px;" src="http://blog.pixelplastic.de/content/binary/_MG_1886.jpg" align="left" border="0" />
          </a>Die
gruenen Tage im Dschungel waren wunderbar. Das Beste, was ich je bei meinen Reisen
erlebt habe. Am Tag unserer Ankunft ging es nach dem Ablegen unseres Gepaecks erst
einmal zum Flussschwimmen und Abendessen noch zwei-drei Flussbiegungen weiter stromaufwaerts
zu einer kleinen "Sandbank". Mit im Bambusrohr gegarten Fischen und leckerem Reis
beendeten wir diesen Tag.
</p>
        <p>
Nach der ersten Nacht sollte sich der erste Tag als unglaublich anstrengend entpuppen.
Wir wurden vormittags erneut per Longboat stromaufwaerts gefahren, um von <a href="http://blog.pixelplastic.de/content/binary/_MG_1999_full.jpg"><img alt="Kleine Eidechse" style="margin: 10px;" src="http://blog.pixelplastic.de/content/binary/_MG_1999.jpg" align="right" border="0" /></a> dort
aus unsere erste Wandertour zu starten. Dieser Trail wurde im Batang Ai Prospekt als
"easy" deklariert. Allerdings ging es die ersten beiden Stunden permanent bergauf.
Wir ungeuebten Traveller waren hinter unserem Ranger und dem Traeger nur am Schnauben
und Schwitzen, waehrend die beiden kleinen Asiaten keine einzige Schweissperle auf
der Stirn trugen. Auf der Bergspitze (geschaetzte 400m) angekommen ging es dann allerdings
nur noch bergab zurueck zum Rangeroffice. Was fuer ein Trip. Und wir wollen die kommenden
Tage noch weitere Trecks machen? Der Abend wurde mit einem Besuch per Fuss im nahegelegenen <a href="http://de.wikipedia.org/wiki/Iban">Iban</a> Longhouse
beendet. Bei Kaffee und Palmensekt lernten wir dort Angais Onkel kennen.
</p>
        <p>
Komischerweise gab es trotz der nicht eingelaufenen neuen Wanderschuhe bei mir wiedererwartend
keine Blasen an den Fuessen. Da hab ich dann scheinbar doch was Gutes gekauft.
</p>
        <p>
Die folgenden beiden Tage wurden wir beim Trekken immer besser, so dass wir am dritten
Tag schon ganze 12km geschafft hatten. Neben vielen Orang Utan Nestern gab es hier
und da kleines Insektengetier, grosse Eichhoernchen und viele bunte, kleine und grosse
Voegel zu sehen. An dieser Stelle moechte ich aber auf Gunnars Blog verweisen, der
sicherlich genauer dokumentiert, was wir alles entdeckt hatten.
</p>
        <p>
Ein Insekt moechte ich an dieser Stelle aber dennoch nennen: die gefaehrliche Dschungelbiene.
Zuerst wurde ich ins rechte Schulterblatt gestochen. Ganz instinktiv und aufjauchzend
bin ich in die schuetzende Hockstellung gegangen und versuchte Blickkontakt zu dem
vor mir laufenden Angai zu bekommen, um zu erfahren, was ich machen soll. Er wollte
natuerlich wissen, wieso ich mich ploetzlich so kruemmte. Als klar war, dass hier
irgendwas mit Bienen am Start war, rief er nur: Run! Run! Puuuuh. Eine wild gewordene
Summsi ist mir beim Wegrennen noch gegen die Stirn geknallt. <a href="http://blog.pixelplastic.de/content/binary/_MG_2126_full.jpg"><img alt="Gruppenbild mit unserem Ranger und den Traegern" style="margin: 10px;" src="http://blog.pixelplastic.de/content/binary/_MG_2126.jpg" align="left" border="0" /></a> Gunnar
durfte hinter mir laufend auch noch einen Stachel einstecken. Auch er jauchzte wie
"angestochen" und schrie Antje nur zu: "Antje, renn! Renn!". Antje: "Wieso? Was ist
denn los? Sind da Bienen?" Gunnar: "Frag' nicht. Renn einfach!" Allerdings folgte
Antje unserem Schlusslicht, dem Gepaecktraeger durch's Unterholz, um die gefaehrliche
Stelle zu umgehen. War das aufregend. Die Stiche waren aber nicht so schlimm, wie
es hier vielleicht klingen mag. Im Endeffekt war es aber eine wirklich lustige Geschichte,
ueber die wir drei zusammen mit Angai immer wieder lachen mussten.
</p>
        <p>
Eigentlich wollten wir noch eine vierte Wanderung (ev. sogar eine Nachtwanderung)
machen. Allerdings wurden wir auf Grund der herrlich entspannenden Natur dann so faul,
dass wir lieber die Seele baumeln liessen. Waehrend der Zeit im gruenen Dschungel
besuchten wir noch ein weiteres Mal den alten Onkel von Angai und wurden mit weiteren
Iban zum Umtrunk aufgefordert. Dazu wurde leckeres selbstgeschossenes Wildschwein,
Palmensekt und Reiswein kredenzt. Am Ende war es eine wirklich lustige Runde, auch
wenn nur Angai mehr oder weniger gut mit uns auf Englisch kommunizieren konnte. Ganz
spannend wurde auch meine Taschenlampe mit Kurbel bestaunt. Da drausen, weit entfernt
von Funkmasten, Fernsehen und Strom waehre das sicher ein interessantes Hilfsmittel.
Nebenbei wurde natuerlich auch unsere Bienengeschichte erzaehlt, die fuer viel Spass
bei den Anwesenden sorgte.
</p>
        <p>
          <a href="http://blog.pixelplastic.de/content/binary/_MG_2179_full.jpg">
            <img alt="Umtrunk bei Angai" style="margin: 10px;" src="http://blog.pixelplastic.de/content/binary/_MG_2179.jpg" align="right" border="0" />
          </a>Nach
den beiden Abhaengtagen ging es zurueck zum Staudamm. Auf Einladung durften wir bei
Angai fuer eine Nacht in sein Heim bei seiner Familie uebernachten. Am Longhaus angekommen
wurden wir von den dort lebenden Iban herzlichst empfangen und gleich von vorn bis
hinten begutachtet. Und prompt stand schon wieder eine Kanne Palmensekt auf dem Boden
vor uns. Nach einem super leckerem Dinner ging der Abend in illustrer Runde einem
sehr feucht froehlichen Ende zu. Angefangen bei Angai musste jeder in der Runde mit
lautem "HOHA!" ein Glaeschen Reiswein hinter die Binde kippen. Ein Glueck das der
Wecker gestellt war. Denn am naechsten Morgen ging es um 9 Uhr von Lubok Antu weiter
nach Miri. Eine elfstuendige Reise mit dem Ekspress Bas ueber mehr oder weniger holprige
Landstrassen.
</p>
        <p>
          <a href="http://maps.google.com/maps?f=q&amp;hl=de&amp;geocode=&amp;q=miri,+malaysia&amp;sll=37.0625,-95.677068&amp;sspn=32.748002,59.238281&amp;ie=UTF8&amp;ll=4.395706,113.980408&amp;spn=0.160887,0.2314&amp;t=h&amp;z=12&amp;iwloc=addr&amp;om=1">Miri</a> war
nicht so prickelnd, zumal wir bei unserer spaeten Ankunft am Busterminal einen ziemlich
agressiven Taksifahrer erwischten, der am Ende mit dem Knueppel drohte, um seine fehlenden
5 RM zu bekommen. Und die Nacht im Thai Foh Inn wuerde ich am liebsten auch aus meinem
Reisetagebuch streichen. Die bisher schlechteste Unterkunft. Und dafuer gar nicht
so preiswert.
</p>
        <p>
Zum Glueck ging es heute Morgen gleich mit dem Ekspress Boot weiter nach <a href="http://maps.google.com/maps?f=q&amp;hl=de&amp;geocode=&amp;q=marudi,+malaysia&amp;sll=4.395706,113.924103&amp;sspn=0.160887,0.344009&amp;ie=UTF8&amp;ll=4.187894,114.319954&amp;spn=0.160931,0.2314&amp;t=h&amp;z=12&amp;iwloc=addr&amp;om=1">Marudi</a>,
wo es schon viel angenehmer ist. Neben dem Hotel macht auch hat kleine Staedtchen
viel mehr Charme als das laute Miri. Morgen geht's dann aber auch von hier aus schon
wieder weiter in Richtung Mulu National Park. Dort treffen wir dann Claudi und Markus.
Ich denke wir werden ihnen einen lustigen Empfang am Flughafen bereiten.
</p>
        <p>
Da ich nun also wieder fuer einige Tage im dichten Borneodschungel unterwegs bin wird
es wohl wieder eine Weile dauern, bis der Blog gefuettert wird. Fuer Notfaelle bin
ich aber (falls Netz vorhanden) hier in Malaysia unter folgender Mobilnummer erreichbar:
Vorwahl Malaysia + (0)198746081.
</p>
        <p>
Und was hat es nun mit dem "Trompez" auf sich? Keine Ahnung, was Gunnar da wieder
vom Stapel gelassen hat. Beim erklaeren der Form (ich glaube eines Tieres) ist ihm
diese neumodische, geometrische Figur rausgerutscht. Ich denke es soll irgendwas zwischen
Rhombus und Trapetz darstellen.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=63773640-d4f8-4f41-8576-53ba28d349d5" />
      </body>
      <title>Trompetzfoermige Tiere, stechende Wildbienen und Umtrunk mit dem Ranger</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,63773640-d4f8-4f41-8576-53ba28d349d5.aspx</guid>
      <link>http://pixelplastic.de/2007/09/17/TrompetzfoermigeTiereStechendeWildbienenUndUmtrunkMitDemRanger.aspx</link>
      <pubDate>Mon, 17 Sep 2007 13:14:49 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/_MG_1886.jpg"&gt;&lt;img alt="Batang Ai National Park" style="margin: 10px;" src="http://blog.pixelplastic.de/content/binary/_MG_1886.jpg" align="left" border="0"&gt;&lt;/a&gt;Die
gruenen Tage im Dschungel waren wunderbar. Das Beste, was ich je bei meinen Reisen
erlebt habe. Am Tag unserer Ankunft ging es nach dem Ablegen unseres Gepaecks erst
einmal zum Flussschwimmen und Abendessen noch zwei-drei Flussbiegungen weiter stromaufwaerts
zu einer kleinen "Sandbank". Mit im Bambusrohr gegarten Fischen und leckerem Reis
beendeten wir diesen Tag.
&lt;/p&gt;
&lt;p&gt;
Nach der ersten Nacht sollte sich der erste Tag als unglaublich anstrengend entpuppen.
Wir wurden vormittags erneut per Longboat stromaufwaerts gefahren, um von &lt;a href="http://blog.pixelplastic.de/content/binary/_MG_1999_full.jpg"&gt;&lt;img alt="Kleine Eidechse" style="margin: 10px;" src="http://blog.pixelplastic.de/content/binary/_MG_1999.jpg" align="right" border="0"&gt;&lt;/a&gt; dort
aus unsere erste Wandertour zu starten. Dieser Trail wurde im Batang Ai Prospekt als
"easy" deklariert. Allerdings ging es die ersten beiden Stunden permanent bergauf.
Wir ungeuebten Traveller waren hinter unserem Ranger und dem Traeger nur am Schnauben
und Schwitzen, waehrend die beiden kleinen Asiaten keine einzige Schweissperle auf
der Stirn trugen. Auf der Bergspitze (geschaetzte 400m) angekommen ging es dann allerdings
nur noch bergab zurueck zum Rangeroffice. Was fuer ein Trip. Und wir wollen die kommenden
Tage noch weitere Trecks machen? Der Abend wurde mit einem Besuch per Fuss im nahegelegenen &lt;a href="http://de.wikipedia.org/wiki/Iban"&gt;Iban&lt;/a&gt; Longhouse
beendet. Bei Kaffee und Palmensekt lernten wir dort Angais Onkel kennen.
&lt;/p&gt;
&lt;p&gt;
Komischerweise gab es trotz der nicht eingelaufenen neuen Wanderschuhe bei mir wiedererwartend
keine Blasen an den Fuessen. Da hab ich dann scheinbar doch was Gutes gekauft.
&lt;/p&gt;
&lt;p&gt;
Die folgenden beiden Tage wurden wir beim Trekken immer besser, so dass wir am dritten
Tag schon ganze 12km geschafft hatten. Neben vielen Orang Utan Nestern gab es hier
und da kleines Insektengetier, grosse Eichhoernchen und viele bunte, kleine und grosse
Voegel zu sehen. An dieser Stelle moechte ich aber auf Gunnars Blog verweisen, der
sicherlich genauer dokumentiert, was wir alles entdeckt hatten.
&lt;/p&gt;
&lt;p&gt;
Ein Insekt moechte ich an dieser Stelle aber dennoch nennen: die gefaehrliche Dschungelbiene.
Zuerst wurde ich ins rechte Schulterblatt gestochen. Ganz instinktiv und aufjauchzend
bin ich in die schuetzende Hockstellung gegangen und versuchte Blickkontakt zu dem
vor mir laufenden Angai zu bekommen, um zu erfahren, was ich machen soll. Er wollte
natuerlich wissen, wieso ich mich ploetzlich so kruemmte. Als klar war, dass hier
irgendwas mit Bienen am Start war, rief er nur: Run! Run! Puuuuh. Eine wild gewordene
Summsi ist mir beim Wegrennen noch gegen die Stirn geknallt. &lt;a href="http://blog.pixelplastic.de/content/binary/_MG_2126_full.jpg"&gt;&lt;img alt="Gruppenbild mit unserem Ranger und den Traegern" style="margin: 10px;" src="http://blog.pixelplastic.de/content/binary/_MG_2126.jpg" align="left" border="0"&gt;&lt;/a&gt; Gunnar
durfte hinter mir laufend auch noch einen Stachel einstecken. Auch er jauchzte wie
"angestochen" und schrie Antje nur zu: "Antje, renn! Renn!". Antje: "Wieso? Was ist
denn los? Sind da Bienen?" Gunnar: "Frag' nicht. Renn einfach!" Allerdings folgte
Antje unserem Schlusslicht, dem Gepaecktraeger durch's Unterholz, um die gefaehrliche
Stelle zu umgehen. War das aufregend. Die Stiche waren aber nicht so schlimm, wie
es hier vielleicht klingen mag. Im Endeffekt war es aber eine wirklich lustige Geschichte,
ueber die wir drei zusammen mit Angai immer wieder lachen mussten.
&lt;/p&gt;
&lt;p&gt;
Eigentlich wollten wir noch eine vierte Wanderung (ev. sogar eine Nachtwanderung)
machen. Allerdings wurden wir auf Grund der herrlich entspannenden Natur dann so faul,
dass wir lieber die Seele baumeln liessen. Waehrend der Zeit im gruenen Dschungel
besuchten wir noch ein weiteres Mal den alten Onkel von Angai und wurden mit weiteren
Iban zum Umtrunk aufgefordert. Dazu wurde leckeres selbstgeschossenes Wildschwein,
Palmensekt und Reiswein kredenzt. Am Ende war es eine wirklich lustige Runde, auch
wenn nur Angai mehr oder weniger gut mit uns auf Englisch kommunizieren konnte. Ganz
spannend wurde auch meine Taschenlampe mit Kurbel bestaunt. Da drausen, weit entfernt
von Funkmasten, Fernsehen und Strom waehre das sicher ein interessantes Hilfsmittel.
Nebenbei wurde natuerlich auch unsere Bienengeschichte erzaehlt, die fuer viel Spass
bei den Anwesenden sorgte.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/_MG_2179_full.jpg"&gt;&lt;img alt="Umtrunk bei Angai" style="margin: 10px;" src="http://blog.pixelplastic.de/content/binary/_MG_2179.jpg" align="right" border="0"&gt;&lt;/a&gt;Nach
den beiden Abhaengtagen ging es zurueck zum Staudamm. Auf Einladung durften wir bei
Angai fuer eine Nacht in sein Heim bei seiner Familie uebernachten. Am Longhaus angekommen
wurden wir von den dort lebenden Iban herzlichst empfangen und gleich von vorn bis
hinten begutachtet. Und prompt stand schon wieder eine Kanne Palmensekt auf dem Boden
vor uns. Nach einem super leckerem Dinner ging der Abend in illustrer Runde einem
sehr feucht froehlichen Ende zu. Angefangen bei Angai musste jeder in der Runde mit
lautem "HOHA!" ein Glaeschen Reiswein hinter die Binde kippen. Ein Glueck das der
Wecker gestellt war. Denn am naechsten Morgen ging es um 9 Uhr von Lubok Antu weiter
nach Miri. Eine elfstuendige Reise mit dem Ekspress Bas ueber mehr oder weniger holprige
Landstrassen.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://maps.google.com/maps?f=q&amp;amp;hl=de&amp;amp;geocode=&amp;amp;q=miri,+malaysia&amp;amp;sll=37.0625,-95.677068&amp;amp;sspn=32.748002,59.238281&amp;amp;ie=UTF8&amp;amp;ll=4.395706,113.980408&amp;amp;spn=0.160887,0.2314&amp;amp;t=h&amp;amp;z=12&amp;amp;iwloc=addr&amp;amp;om=1"&gt;Miri&lt;/a&gt; war
nicht so prickelnd, zumal wir bei unserer spaeten Ankunft am Busterminal einen ziemlich
agressiven Taksifahrer erwischten, der am Ende mit dem Knueppel drohte, um seine fehlenden
5 RM zu bekommen. Und die Nacht im Thai Foh Inn wuerde ich am liebsten auch aus meinem
Reisetagebuch streichen. Die bisher schlechteste Unterkunft. Und dafuer gar nicht
so preiswert.
&lt;/p&gt;
&lt;p&gt;
Zum Glueck ging es heute Morgen gleich mit dem Ekspress Boot weiter nach &lt;a href="http://maps.google.com/maps?f=q&amp;amp;hl=de&amp;amp;geocode=&amp;amp;q=marudi,+malaysia&amp;amp;sll=4.395706,113.924103&amp;amp;sspn=0.160887,0.344009&amp;amp;ie=UTF8&amp;amp;ll=4.187894,114.319954&amp;amp;spn=0.160931,0.2314&amp;amp;t=h&amp;amp;z=12&amp;amp;iwloc=addr&amp;amp;om=1"&gt;Marudi&lt;/a&gt;,
wo es schon viel angenehmer ist. Neben dem Hotel macht auch hat kleine Staedtchen
viel mehr Charme als das laute Miri. Morgen geht's dann aber auch von hier aus schon
wieder weiter in Richtung Mulu National Park. Dort treffen wir dann Claudi und Markus.
Ich denke wir werden ihnen einen lustigen Empfang am Flughafen bereiten.
&lt;/p&gt;
&lt;p&gt;
Da ich nun also wieder fuer einige Tage im dichten Borneodschungel unterwegs bin wird
es wohl wieder eine Weile dauern, bis der Blog gefuettert wird. Fuer Notfaelle bin
ich aber (falls Netz vorhanden) hier in Malaysia unter folgender Mobilnummer erreichbar:
Vorwahl Malaysia + (0)198746081.
&lt;/p&gt;
&lt;p&gt;
Und was hat es nun mit dem "Trompez" auf sich? Keine Ahnung, was Gunnar da wieder
vom Stapel gelassen hat. Beim erklaeren der Form (ich glaube eines Tieres) ist ihm
diese neumodische, geometrische Figur rausgerutscht. Ich denke es soll irgendwas zwischen
Rhombus und Trapetz darstellen.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=63773640-d4f8-4f41-8576-53ba28d349d5" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,63773640-d4f8-4f41-8576-53ba28d349d5.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=fb2138de-9860-4d7a-88ee-f610d7bf5af8</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,fb2138de-9860-4d7a-88ee-f610d7bf5af8.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,fb2138de-9860-4d7a-88ee-f610d7bf5af8.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=fb2138de-9860-4d7a-88ee-f610d7bf5af8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://blog.pixelplastic.de/content/binary/_MG_1791_full.jpg">
            <img src="http://blog.pixelplastic.de/content/binary/_MG_1791.jpg" style="margin: 10px;" alt="marci im Boot auf dem Batang Ai" align="right" border="0" />
          </a>Gunnar
und Antje hatten auf ihrer Tour durch den Bako National Park den Guide Ralf getroffen,
der ihnen Tukik als Ansprechpartner in Lubok Antu empfahl. Durch ihn sollten wir erfahren,
wie wir in den <a href="http://maps.google.com/maps?f=q&amp;hl=de&amp;geocode=&amp;sll=51.325339,12.342725&amp;sspn=0.006302,0.014462&amp;ie=UTF8&amp;ll=1.187812,111.927338&amp;spn=0.161327,0.344009&amp;t=h&amp;z=12&amp;om=1">National
Park Batang Ai</a> kommen. Nachdem wir gestern mit meinem Telefon und Raymons SIM
Karte Tukik anrufen konnten, war auch geklaert, wie wir dieses Vorhaben umsetzen koennen.
</p>
        <p>
Am Morgen kamen also Tukik und Angai, unser Ranger fuer die kommenden Tage. Per Van
wurden wir zum nahegelegenen Staudamm des Batang Ai Reservoirs gefahren, von wo aus
es per Longboat ueber den riesigen See und immer enger und flacher werdende Fluesse
direkt in den National Park ging. Gerade die letzten Flussbiegungen hatten es wahrlich
in sich, da die zunehmende Stroemung immer oeffter ordentliche Wellen ins Boot schwappen
lies. Und das bei all unserem Kameraequipment. Wir sind aber heile am Buero des Rangers
Angai angekommen. Dort sollten wir die kommenden fuenf Tage den herrlichen Dschungel
erleben.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=fb2138de-9860-4d7a-88ee-f610d7bf5af8" />
      </body>
      <title>Die Fahrt in den Dschungel</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,fb2138de-9860-4d7a-88ee-f610d7bf5af8.aspx</guid>
      <link>http://pixelplastic.de/2007/09/10/DieFahrtInDenDschungel.aspx</link>
      <pubDate>Mon, 10 Sep 2007 13:10:03 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/_MG_1791_full.jpg"&gt;&lt;img src="http://blog.pixelplastic.de/content/binary/_MG_1791.jpg" style="margin: 10px;" alt="marci im Boot auf dem Batang Ai" align="right" border="0"&gt;&lt;/a&gt;Gunnar
und Antje hatten auf ihrer Tour durch den Bako National Park den Guide Ralf getroffen,
der ihnen Tukik als Ansprechpartner in Lubok Antu empfahl. Durch ihn sollten wir erfahren,
wie wir in den &lt;a href="http://maps.google.com/maps?f=q&amp;amp;hl=de&amp;amp;geocode=&amp;amp;sll=51.325339,12.342725&amp;amp;sspn=0.006302,0.014462&amp;amp;ie=UTF8&amp;amp;ll=1.187812,111.927338&amp;amp;spn=0.161327,0.344009&amp;amp;t=h&amp;amp;z=12&amp;amp;om=1"&gt;National
Park Batang Ai&lt;/a&gt; kommen. Nachdem wir gestern mit meinem Telefon und Raymons SIM
Karte Tukik anrufen konnten, war auch geklaert, wie wir dieses Vorhaben umsetzen koennen.
&lt;/p&gt;
&lt;p&gt;
Am Morgen kamen also Tukik und Angai, unser Ranger fuer die kommenden Tage. Per Van
wurden wir zum nahegelegenen Staudamm des Batang Ai Reservoirs gefahren, von wo aus
es per Longboat ueber den riesigen See und immer enger und flacher werdende Fluesse
direkt in den National Park ging. Gerade die letzten Flussbiegungen hatten es wahrlich
in sich, da die zunehmende Stroemung immer oeffter ordentliche Wellen ins Boot schwappen
lies. Und das bei all unserem Kameraequipment. Wir sind aber heile am Buero des Rangers
Angai angekommen. Dort sollten wir die kommenden fuenf Tage den herrlichen Dschungel
erleben.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=fb2138de-9860-4d7a-88ee-f610d7bf5af8" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,fb2138de-9860-4d7a-88ee-f610d7bf5af8.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=c7181e98-5fbf-43ff-b0dd-4eaf426a65cf</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,c7181e98-5fbf-43ff-b0dd-4eaf426a65cf.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,c7181e98-5fbf-43ff-b0dd-4eaf426a65cf.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=c7181e98-5fbf-43ff-b0dd-4eaf426a65cf</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://blog.pixelplastic.de/content/binary/_MG_1724_full.jpg">
            <img style="margin: 10px;" alt="Kuching" src="http://blog.pixelplastic.de/content/binary/_MG_1724.jpg" align="left" border="0" />
          </a>Nachdem
ich Gunnar und Antje freudig in Kuching empfangen hatte ging es fuer uns am naechsten
Tag gleich mit dem Bus weiter nach <a href="http://maps.google.com/maps?f=q&amp;hl=de&amp;q=Lubok+Antu,+Sarawak+Malaysia&amp;sll=4.187894,114.319954&amp;sspn=0.160931,0.2314&amp;ie=UTF8&amp;cd=1&amp;geocode=0,1.022404,111.774200&amp;ll=1.025107,111.774216&amp;spn=0.161336,0.2314&amp;t=h&amp;z=12&amp;iwloc=addr&amp;om=1">Lubok
Antu</a>. <a href="http://blog.pixelplastic.de/content/binary/_MG_1754_full.jpg"><img style="margin: 10px;" src="http://blog.pixelplastic.de/content/binary/_MG_1754.jpg" alt="Gunnar im Bus" align="right" border="0" /></a>Leider
hatten uns trotz mehrfachen Nachfragens weder der Busfahrer noch die Ticketverkaeuferin
informiert, dass der Bus nicht direkt bis dorthin faehrt. Also wurden wir kurzerhand
nach vier Stunden Busfahrt auf einer Kreuzung 40km vor unserem Ziel abgesetzt - und
es war schon 17Uhr, was hier bedeutet, dass die Dunkelheit schon im Anmarsch ist.
Die "freundlichen" Leute am Kreuzungsimbiss wollten uns fuer 100 RM die letzten Kilometer
fahren. Allerdings waehre das fast der doppelte Preis unserer gerade beendeten Busfahrt
gewesen. Also haben wir es mit Trampen probiert und wurden prompt beim ersten Versuch
mit einem Grossraumtaxi mitgenommen.
</p>
        <p>
Unsere Reisefuehrer hatten leider gar keine einzige Seite zu Lubok Antu. Wir standen
also bei Regen im dunklen Nirgendwo, nahe der indoneschen Grenze. Allerdings kam uns
Raymon entgegen, der uns sein "Mega Inn" anbot. Wo er das Hotel-Schild her hatte,
wissen wir bis heute nicht - Mega war es aber keines Falls. ;-) Fuer 10 RM pro Person
und Nacht allerdings mehr als ausreichend. Leicht aufschneiderisch erzaehlte uns Raymon
(oder auch Uncle Bob genannt) allerhand Dinge von seiner Familie und Gaesten, die
ihn besuchten. Die beiden Naechte in dem verschlafenen Staedtchen waren ganz entspannend.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c7181e98-5fbf-43ff-b0dd-4eaf426a65cf" />
      </body>
      <title>Reise ins Nichts</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,c7181e98-5fbf-43ff-b0dd-4eaf426a65cf.aspx</guid>
      <link>http://pixelplastic.de/2007/09/08/ReiseInsNichts.aspx</link>
      <pubDate>Sat, 08 Sep 2007 13:07:52 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/_MG_1724_full.jpg"&gt;&lt;img style="margin: 10px;" alt="Kuching" src="http://blog.pixelplastic.de/content/binary/_MG_1724.jpg" align="left" border="0"&gt;&lt;/a&gt;Nachdem
ich Gunnar und Antje freudig in Kuching empfangen hatte ging es fuer uns am naechsten
Tag gleich mit dem Bus weiter nach &lt;a href="http://maps.google.com/maps?f=q&amp;amp;hl=de&amp;amp;q=Lubok+Antu,+Sarawak+Malaysia&amp;amp;sll=4.187894,114.319954&amp;amp;sspn=0.160931,0.2314&amp;amp;ie=UTF8&amp;amp;cd=1&amp;amp;geocode=0,1.022404,111.774200&amp;amp;ll=1.025107,111.774216&amp;amp;spn=0.161336,0.2314&amp;amp;t=h&amp;amp;z=12&amp;amp;iwloc=addr&amp;amp;om=1"&gt;Lubok
Antu&lt;/a&gt;. &lt;a href="http://blog.pixelplastic.de/content/binary/_MG_1754_full.jpg"&gt;&lt;img style="margin: 10px;" src="http://blog.pixelplastic.de/content/binary/_MG_1754.jpg" alt="Gunnar im Bus" align="right" border="0"&gt;&lt;/a&gt;Leider
hatten uns trotz mehrfachen Nachfragens weder der Busfahrer noch die Ticketverkaeuferin
informiert, dass der Bus nicht direkt bis dorthin faehrt. Also wurden wir kurzerhand
nach vier Stunden Busfahrt auf einer Kreuzung 40km vor unserem Ziel abgesetzt - und
es war schon 17Uhr, was hier bedeutet, dass die Dunkelheit schon im Anmarsch ist.
Die "freundlichen" Leute am Kreuzungsimbiss wollten uns fuer 100 RM die letzten Kilometer
fahren. Allerdings waehre das fast der doppelte Preis unserer gerade beendeten Busfahrt
gewesen. Also haben wir es mit Trampen probiert und wurden prompt beim ersten Versuch
mit einem Grossraumtaxi mitgenommen.
&lt;/p&gt;
&lt;p&gt;
Unsere Reisefuehrer hatten leider gar keine einzige Seite zu Lubok Antu. Wir standen
also bei Regen im dunklen Nirgendwo, nahe der indoneschen Grenze. Allerdings kam uns
Raymon entgegen, der uns sein "Mega Inn" anbot. Wo er das Hotel-Schild her hatte,
wissen wir bis heute nicht - Mega war es aber keines Falls. ;-) Fuer 10 RM pro Person
und Nacht allerdings mehr als ausreichend. Leicht aufschneiderisch erzaehlte uns Raymon
(oder auch Uncle Bob genannt) allerhand Dinge von seiner Familie und Gaesten, die
ihn besuchten. Die beiden Naechte in dem verschlafenen Staedtchen waren ganz entspannend.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c7181e98-5fbf-43ff-b0dd-4eaf426a65cf" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,c7181e98-5fbf-43ff-b0dd-4eaf426a65cf.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=b07fb917-7ed5-499d-81f5-14df92a6c0b4</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,b07fb917-7ed5-499d-81f5-14df92a6c0b4.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,b07fb917-7ed5-499d-81f5-14df92a6c0b4.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=b07fb917-7ed5-499d-81f5-14df92a6c0b4</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nachdem ich in Bangkok einige lustige Tage mit Nadine und Deo verbracht hatte ging
es per Flieger weiter in die nächste Großstadt: Kuala Lumpur. <a href="http://blog.pixelplastic.de/content/binary/_MG_1617_full.jpg"><img alt="Petronas Towers bei Nacht" src="http://blog.pixelplastic.de/content/binary/_MG_1617.jpg" style="margin: 10px;" align="right" border="0" /></a>Ganz
gespannt auf die <a href="http://www.petronastwintowers.com.my/">Petronas Twin Towers</a> konnte
ich es mir nicht nehmen lassen, gleich nach dem Checkin im Hostel dorthin aufzubrechen.
Also schnell noch den Abendimbiss in Chinatown zu mir genommen und per S-Bahn zum
KLCC aufgebrochen. Und wow: was für ein Anblick. Unglaublich massiv stehen die strahlend
beleuchteten Doppelhochäuser vor mir. Also hab ich gleich einige Fotos geschossen.
</p>
        <p>
Bei all der Begeisterung schritt leider auch die Zeit voran, so dass ich gar nicht
bemerkte, dass es schon nach Mitternacht war. Da fuhr dann leider auch keine S-Bahn
oder Bus. Klar ich hätte mir auch ein Taxi nehmen können, aber da wir schon mal hier
sind: wer kann schon von sich behaupten, nachts allein durch Kuala Lumpur gewandert
zu sein? Keine Angst. Es ist nichts passiert und ich war kurz vor zwei wieder in Chinatown
am Hostel. Nach einer kurzen Nacht hieß es früh aufstehen, da ich die gigantischen
Twins nun auch von innen anschauen wollte. Also stand ich gegen 7:30 schon wieder
auf der Matte und machte mich erneut auf den Weg zum KLCC. Auch bei Tageslicht geben
die beiden eine gute Figur ab. Die kostenlose Führung (incl. 3D Kino) bis hinauf in
die 41. Etage zur Skybridge waren ganz in Ordnung, jetzt aber auch nicht so spektakulär.
</p>
        <p>
          <a href="http://blog.pixelplastic.de/content/binary/_MG_1660_full.jpg">
            <img alt="Fernsehturm in Kuala Lumpur" src="http://blog.pixelplastic.de/content/binary/_MG_1660.jpg" style="margin: 10px;" align="left" border="0" />
          </a>Wieder
auf der Erde und schon passierte es. Komisches Klickern beim Belichtungsmessen an
meiner Kamera. What´s up? Und da schon wieder. Und dann immer ERR99 im Display. Höä?
Irgendwas ist da faul und wird immer fauliger. Schliesslich geht gar nix mehr. Ich
muss sogar den Akku rausnehmen. Kommt die gute alte EOS 20D mit dem Klima nicht mehr
mit? Hier musste noch was passieren, bevor es weiter nach Kuching ging. <a href="http://blog.pixelplastic.de/content/binary/_MG_1739_full.jpg"><img alt="Sonnenuntergang in Kuching" src="http://blog.pixelplastic.de/content/binary/_MG_1739.jpg" style="margin: 10px;" align="right" border="0" /></a>Dafür
hatte ich jetzt noch genau 5 Stunden Zeit. Also erst mal zurück zum Hostel, Backpack
gepackt und ausgecheckt und gleich weiter per S-Bahn zum nächsten Shoppingcenter.
Nach kurzer Suche fand ich einen kleinen Stand, wo Equipment angboten wurde. Schnell
war klar, dass die Kamera in Ordnung war. Das Objektiv hatte sich verabschiedet. Den
nette Verkäufer führte mich dann in den richtigen Laden, wo ich mir <a href="http://www.canon.de/For_Home/Product_Finder/Cameras/EF_Lenses/Zoom_Lenses/EF_28105mm_f3545_USM/">ein
neues Objektiv</a> aussuchen durfte. So und jetzt heißt es sparen, sparen, sparen.
Die 260,- EUR müssen ja irgendwo wieder rein kommen. ;-)
</p>
        <p>
Jetzt konnte ich also entspannt zum Flughafen fahren und dort auf meinen mit drei
Stunden Verspätung startenden Flieger warten. Irgendwie war das gestern nicht so mein
Tag. Im Hostel in Kuala Lumpur wurde mein USB-Stick bei der Nutzung des dortigen Internet-Rechners
ordentlich mit Viren vollgepumnpt wurde, so dass heute nix mehr drauf ist. Argghhh.
Außerdem war noch unklar, wo denn meine Bauchweg-Gürteltasche (inkl. Kredit-, EC-
und KV-Karte) abgeblieben war. Gerade hab ich aber von Nadine erfahren, dass deren
Putzfrau mal wieder zu sehr für Ordnung gesorgt hatte. Also ist wieder alles gut und
ich kann entspannt auf Gunnar und Antje warten - <a href="http://local.live.com/default.aspx?v=2&amp;cp=1.549398%7E110.344448&amp;style=h&amp;lvl=12&amp;alt=-1000">hier
in Kuching</a>.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b07fb917-7ed5-499d-81f5-14df92a6c0b4" />
      </body>
      <title>Cityhopping - Bangkok / Kuala Lumpur / Kuching</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,b07fb917-7ed5-499d-81f5-14df92a6c0b4.aspx</guid>
      <link>http://pixelplastic.de/2007/09/07/CityhoppingBangkokKualaLumpurKuching.aspx</link>
      <pubDate>Fri, 07 Sep 2007 07:08:24 GMT</pubDate>
      <description>&lt;p&gt;
Nachdem ich in Bangkok einige lustige Tage mit Nadine und Deo verbracht hatte ging
es per Flieger weiter in die nächste Großstadt: Kuala Lumpur. &lt;a href="http://blog.pixelplastic.de/content/binary/_MG_1617_full.jpg"&gt;&lt;img alt="Petronas Towers bei Nacht" src="http://blog.pixelplastic.de/content/binary/_MG_1617.jpg" style="margin: 10px;" align="right" border="0"&gt;&lt;/a&gt;Ganz
gespannt auf die &lt;a href="http://www.petronastwintowers.com.my/"&gt;Petronas Twin Towers&lt;/a&gt; konnte
ich es mir nicht nehmen lassen, gleich nach dem Checkin im Hostel dorthin aufzubrechen.
Also schnell noch den Abendimbiss in Chinatown zu mir genommen und per S-Bahn zum
KLCC aufgebrochen. Und wow: was für ein Anblick. Unglaublich massiv stehen die strahlend
beleuchteten Doppelhochäuser vor mir. Also hab ich gleich einige Fotos geschossen.
&lt;/p&gt;
&lt;p&gt;
Bei all der Begeisterung schritt leider auch die Zeit voran, so dass ich gar nicht
bemerkte, dass es schon nach Mitternacht war. Da fuhr dann leider auch keine S-Bahn
oder Bus. Klar ich hätte mir auch ein Taxi nehmen können, aber da wir schon mal hier
sind: wer kann schon von sich behaupten, nachts allein durch Kuala Lumpur gewandert
zu sein? Keine Angst. Es ist nichts passiert und ich war kurz vor zwei wieder in Chinatown
am Hostel. Nach einer kurzen Nacht hieß es früh aufstehen, da ich die gigantischen
Twins nun auch von innen anschauen wollte. Also stand ich gegen 7:30 schon wieder
auf der Matte und machte mich erneut auf den Weg zum KLCC. Auch bei Tageslicht geben
die beiden eine gute Figur ab. Die kostenlose Führung (incl. 3D Kino) bis hinauf in
die 41. Etage zur Skybridge waren ganz in Ordnung, jetzt aber auch nicht so spektakulär.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/_MG_1660_full.jpg"&gt;&lt;img alt="Fernsehturm in Kuala Lumpur" src="http://blog.pixelplastic.de/content/binary/_MG_1660.jpg" style="margin: 10px;" align="left" border="0"&gt;&lt;/a&gt;Wieder
auf der Erde und schon passierte es. Komisches Klickern beim Belichtungsmessen an
meiner Kamera. What´s up? Und da schon wieder. Und dann immer ERR99 im Display. Höä?
Irgendwas ist da faul und wird immer fauliger. Schliesslich geht gar nix mehr. Ich
muss sogar den Akku rausnehmen. Kommt die gute alte EOS 20D mit dem Klima nicht mehr
mit? Hier musste noch was passieren, bevor es weiter nach Kuching ging. &lt;a href="http://blog.pixelplastic.de/content/binary/_MG_1739_full.jpg"&gt;&lt;img alt="Sonnenuntergang in Kuching" src="http://blog.pixelplastic.de/content/binary/_MG_1739.jpg" style="margin: 10px;" align="right" border="0"&gt;&lt;/a&gt;Dafür
hatte ich jetzt noch genau 5 Stunden Zeit. Also erst mal zurück zum Hostel, Backpack
gepackt und ausgecheckt und gleich weiter per S-Bahn zum nächsten Shoppingcenter.
Nach kurzer Suche fand ich einen kleinen Stand, wo Equipment angboten wurde. Schnell
war klar, dass die Kamera in Ordnung war. Das Objektiv hatte sich verabschiedet. Den
nette Verkäufer führte mich dann in den richtigen Laden, wo ich mir &lt;a href="http://www.canon.de/For_Home/Product_Finder/Cameras/EF_Lenses/Zoom_Lenses/EF_28105mm_f3545_USM/"&gt;ein
neues Objektiv&lt;/a&gt; aussuchen durfte. So und jetzt heißt es sparen, sparen, sparen.
Die 260,- EUR müssen ja irgendwo wieder rein kommen. ;-)
&lt;/p&gt;
&lt;p&gt;
Jetzt konnte ich also entspannt zum Flughafen fahren und dort auf meinen mit drei
Stunden Verspätung startenden Flieger warten. Irgendwie war das gestern nicht so mein
Tag. Im Hostel in Kuala Lumpur wurde mein USB-Stick bei der Nutzung des dortigen Internet-Rechners
ordentlich mit Viren vollgepumnpt wurde, so dass heute nix mehr drauf ist. Argghhh.
Außerdem war noch unklar, wo denn meine Bauchweg-Gürteltasche (inkl. Kredit-, EC-
und KV-Karte) abgeblieben war. Gerade hab ich aber von Nadine erfahren, dass deren
Putzfrau mal wieder zu sehr für Ordnung gesorgt hatte. Also ist wieder alles gut und
ich kann entspannt auf Gunnar und Antje warten - &lt;a href="http://local.live.com/default.aspx?v=2&amp;amp;cp=1.549398%7E110.344448&amp;amp;style=h&amp;amp;lvl=12&amp;amp;alt=-1000"&gt;hier
in Kuching&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b07fb917-7ed5-499d-81f5-14df92a6c0b4" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,b07fb917-7ed5-499d-81f5-14df92a6c0b4.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=078b7237-8d58-4ab5-a523-06908303c912</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,078b7237-8d58-4ab5-a523-06908303c912.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,078b7237-8d58-4ab5-a523-06908303c912.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=078b7237-8d58-4ab5-a523-06908303c912</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Am Sonntag waren Sabine und Jens aus Deutschland hier in der königlichen Residenz
zum Brunch eingeladen. Entsprechend haben wir einiges vorbereitet. <a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/BrunchmitZupfkuchenBowlingundITCrowdFast_FE33/_MG_1503.jpg" atomicselection="true"><img style="border-right: 0px; border-top: 0px; margin: 10px 0px 0px 10px; border-left: 0px; border-bottom: 0px" height="240" alt="_MG_1503" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/BrunchmitZupfkuchenBowlingundITCrowdFast_FE33/_MG_1503_thumb.jpg" width="160" align="right" border="0" /></a> Während
Nadine sich um selbstgemachte Pancakes kümmerte hatte ich mir vorgenommen, mit den
Tags zuvor gekauften Zutaten einen <a href="http://blog.pixelplastic.de/2007/08/05/RussischerZupfkuchen.aspx">russischen
Zupfkuchen</a> zu produzieren. Mit all diesen Leckereien, einer Runde Badminton und
Klavierübungen entwickelte sich der Nachmittag zu einem lustigen kleinen Sonntagsklatsch.
Zu guter Letzt besuchten wir die Bowlingbahn im neuen Siam Shoppingcenter. Mit
etlichen Strikes und Spares war Jens eindeutig der Beste von uns.
</p>
        <p>
Gestern und heute widmete ich mich erneut der Megastadt <a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/BrunchmitZupfkuchenBowlingundITCrowdFast_FE33/_MG_1526.jpg" atomicselection="true"><img style="border-right: 0px; border-top: 0px; margin: 5px 10px 0px 0px; border-left: 0px; border-bottom: 0px" height="240" alt="_MG_1526" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/BrunchmitZupfkuchenBowlingundITCrowdFast_FE33/_MG_1526_thumb.jpg" width="160" align="left" border="0" /></a> und
versuchte viele Ecken per Fuß zu erreichen. Gestern ging's über den Lumpini Park
durch China Town bis zur Khao San Road und mit dem Boot quer über den Chao Phaya
zum Skytrain. Heute wollte ich in's neue <a href="http://www.siamoceanworld.co.th/">Ocean
World Aquarium</a>. Für umgerechnet 10 EUR war mir das aber zu happig - zumal ich
ja bald so richtig mit den Fischen tauchen gehen darf. Also schlenderte ich über
den Campus der Bangkoker Uni und war erstaunt, wie groß und grün dieser ist. Gleich
werd ich mich mit Nadine im Lumpini Park treffen und den sportlichen Tätigkeiten der
Thais zuschauen. Danach geht's wie immer lecker essen. Diesmal vielleicht laotisch
oder ägyptisch - das steht noch nicht fest. Zum Tagesabschluss wird es dann in gemütlicher
Runde vorm Sofa noch eine Folge <a href="http://de.wikipedia.org/wiki/The_IT_Crowd">IT
Crowd</a> geben.
</p>
        <p>
Und morgen ist es endlich soweit. Die Reise geht endlich weiter nach Kuala Lumpur.
Bin schon sehr gespannt, was mich in dieser Stadt erwarten wird. Ich werde <a href="http://maps.google.de/maps?f=q&amp;q=petronas+towers,+kuala+lumpur&amp;t=k&amp;z=18&amp;ll=3.14644,101.710503">voraussichtlich
hier unterkommen</a>.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=078b7237-8d58-4ab5-a523-06908303c912" />
      </body>
      <title>Brunch mit Zupfkuchen, Bowling und IT Crowd - Fast wie zu Hause</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,078b7237-8d58-4ab5-a523-06908303c912.aspx</guid>
      <link>http://pixelplastic.de/2007/09/04/BrunchMitZupfkuchenBowlingUndITCrowdFastWieZuHause.aspx</link>
      <pubDate>Tue, 04 Sep 2007 11:05:17 GMT</pubDate>
      <description>&lt;p&gt;
Am&amp;nbsp;Sonntag waren Sabine und Jens aus Deutschland hier in der königlichen Residenz
zum Brunch eingeladen. Entsprechend haben wir einiges vorbereitet. &lt;a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/BrunchmitZupfkuchenBowlingundITCrowdFast_FE33/_MG_1503.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; margin: 10px 0px 0px 10px; border-left: 0px; border-bottom: 0px" height="240" alt="_MG_1503" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/BrunchmitZupfkuchenBowlingundITCrowdFast_FE33/_MG_1503_thumb.jpg" width="160" align="right" border="0"&gt;&lt;/a&gt; Während
Nadine sich um selbstgemachte Pancakes kümmerte hatte ich mir vorgenommen, mit den
Tags zuvor gekauften Zutaten einen &lt;a href="http://blog.pixelplastic.de/2007/08/05/RussischerZupfkuchen.aspx"&gt;russischen
Zupfkuchen&lt;/a&gt; zu produzieren. Mit all diesen Leckereien, einer Runde Badminton und
Klavierübungen&amp;nbsp;entwickelte sich der Nachmittag zu einem lustigen kleinen Sonntagsklatsch.
Zu guter Letzt besuchten wir&amp;nbsp;die Bowlingbahn im neuen Siam Shoppingcenter. Mit
etlichen Strikes und Spares&amp;nbsp;war Jens eindeutig der Beste von uns.
&lt;/p&gt;
&lt;p&gt;
Gestern und heute widmete ich&amp;nbsp;mich erneut der Megastadt &lt;a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/BrunchmitZupfkuchenBowlingundITCrowdFast_FE33/_MG_1526.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; margin: 5px 10px 0px 0px; border-left: 0px; border-bottom: 0px" height="240" alt="_MG_1526" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/BrunchmitZupfkuchenBowlingundITCrowdFast_FE33/_MG_1526_thumb.jpg" width="160" align="left" border="0"&gt;&lt;/a&gt; und
versuchte viele Ecken&amp;nbsp;per Fuß zu erreichen. Gestern ging's über den Lumpini Park
durch China Town bis zur Khao San Road und&amp;nbsp;mit dem Boot quer über den Chao Phaya
zum Skytrain. Heute wollte ich in's neue &lt;a href="http://www.siamoceanworld.co.th/"&gt;Ocean
World Aquarium&lt;/a&gt;. Für umgerechnet 10 EUR war mir das aber zu happig - zumal ich
ja bald so richtig&amp;nbsp;mit den Fischen tauchen gehen darf. Also schlenderte ich über
den Campus der Bangkoker Uni und war erstaunt, wie groß und grün dieser ist. Gleich
werd ich mich mit Nadine im Lumpini Park treffen und den sportlichen Tätigkeiten der
Thais zuschauen. Danach geht's wie immer lecker essen. Diesmal vielleicht laotisch
oder ägyptisch - das steht noch nicht fest. Zum Tagesabschluss wird es dann in gemütlicher
Runde vorm Sofa noch eine Folge &lt;a href="http://de.wikipedia.org/wiki/The_IT_Crowd"&gt;IT
Crowd&lt;/a&gt; geben.
&lt;/p&gt;
&lt;p&gt;
Und morgen ist es endlich soweit. Die Reise geht endlich weiter nach Kuala Lumpur.
Bin schon sehr gespannt, was mich&amp;nbsp;in dieser Stadt erwarten wird. Ich werde &lt;a href="http://maps.google.de/maps?f=q&amp;amp;q=petronas+towers,+kuala+lumpur&amp;amp;t=k&amp;amp;z=18&amp;amp;ll=3.14644,101.710503"&gt;voraussichtlich
hier unterkommen&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=078b7237-8d58-4ab5-a523-06908303c912" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,078b7237-8d58-4ab5-a523-06908303c912.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=1f5d3a64-f787-4a34-ac49-e68eb531c946</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,1f5d3a64-f787-4a34-ac49-e68eb531c946.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,1f5d3a64-f787-4a34-ac49-e68eb531c946.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=1f5d3a64-f787-4a34-ac49-e68eb531c946</wfw:commentRss>
      <title>Party &amp;uuml;ber den D&amp;auml;chern der Stadt</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,1f5d3a64-f787-4a34-ac49-e68eb531c946.aspx</guid>
      <link>http://pixelplastic.de/2007/09/01/PartyUumlberDenDaumlchernDerStadt.aspx</link>
      <pubDate>Sat, 01 Sep 2007 12:34:55 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/PartyberdenDchernderStadt_1131E/_MG_1233.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; margin: 0px 0px 0px 15px; border-left: 0px; border-bottom: 0px" height="160" alt="Deo und Nadine" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/PartyberdenDchernderStadt_1131E/_MG_1233_thumb.jpg" width="240" align="right" border="0"&gt;&lt;/a&gt; Nach
drei Telefonaten und wildem Herumirren&amp;nbsp;hatte es&amp;nbsp;mit dem Treffen von Deo
vor zwei Tagen dann doch noch geklappt.&amp;nbsp;Er führte mich dann direkt ins heimische
Reich. Und was soll ich sagen: die beiden leben hier wie Könige - zumindest im Vergleich
zu dem kleinen Einzimmerapartment, in dem Nadine vor zwei Jahren noch wohnte. Und
das Beste: ich hab hier mein eigenes Zimmer mit großem Doppelbett. Was will man mehr?
Nach einer angenehmen Dusche und neuen Klamotten ging's dann auch zum&amp;nbsp;ausgemachten
Dinnermeeting mit Nadine. Was für ein herzliches Wiedersehen. 
&lt;/p&gt;
&lt;p&gt;
Gestern waren Deo und ich im Pantip Plaza, dem großen Technik-einkaufszentrum hier
in Bangkok.&amp;nbsp;Während ich nach einem&amp;nbsp;musikalischen mp3-Begleiter für die nächsten
Wochen Ausschau hielt, hatte Deo das Ziel&amp;nbsp;neue Software für seinen PhD zu erwerben.
Diese gibt es&amp;nbsp;dort&amp;nbsp;besonders günstig. Man sucht sich aus, was man gern hätte,
bezahlt die 3-4 EUR und darf dann in 15min wieder kommen. Dann ist die DVD/CD fertig
gebra... äähm aus dem Lager herausgesucht worden.&amp;nbsp;;-)
&lt;/p&gt;
&lt;p&gt;
Nachmittags hatte ich noch ein wenig mit dem Jet-lag zu kämpfen. Konnte mich aber
dennoch aufrappeln und bin Richtung Golden Mountain aufgebrochen. Ich bin nur bis
zur Haltestelle Siam gefahren, &lt;a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/PartyberdenDchernderStadt_1131E/_MG_1283.jpg" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; margin: 0px 10px 0px 0px; border-left: 0px; border-bottom: 0px" height="240" alt="Essen auf der Stra&amp;szlig;e" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/PartyberdenDchernderStadt_1131E/_MG_1283_thumb.jpg" width="160" align="left" border="0"&gt;&lt;/a&gt;um
im MBK Center eine Prepaid Karte für mein Telefon zu kaufen.&amp;nbsp;Von dort aus ging
es nun per Fuss weiter. Leider bin ich irgendwie am Ziel vorbei gelaufen.&amp;nbsp; Zumindest
kam ich nicht am altenbekannten Golden Mountain an. Dennoch war es sehr interessant
mal wieder ohne Touristen das einfache Leben der Thais zu sehen und zu erleben.
&lt;/p&gt;
&lt;p&gt;
Abends auf dem Weg zum Pad Thai Dinner trafen wir an der Skytrainstation noch Simon,
den deutsch-dänischen Nachbarn von Nadine und Deo. Spontan begleitete er uns und lud
uns auf eine Party ein. Diese fand auf dem Dach eines 15-stöckigen Apartmenthauses
statt. War etwas ruhiger als bekannte Leipziger Feten. Dafür gab's eine Schwimmingpool
unter freiem Bangkoker Himmel und einen wunderbaren Blick über Bangkok. Und das bei
sanften 32° Wärme.
&lt;/p&gt;
&lt;p&gt;
Als wir zurück in Nadines Appartmentkomplex kamen, war die nächste Feier am Laufen.
Auch hier versackten wir noch kurz und schnatterten mit den vielen Farangs, die hier
die Nachbarn von Nadine bilden. Und wie klein die Welt doch wieder ist, zeigte&amp;nbsp;sich
durch das Kennenlernen von Lothar, dem hier ansäßigen Leipziger, der sich&amp;nbsp;wie
wild auf meine mitgebrachten Knusperflocken freut.
&lt;/p&gt;
&lt;p&gt;
Heute ging's noch kurz über den Chatuchak T-Shirts kaufen. Jetzt bin ich bereit für
den nächsten Schritt der Reise.
&lt;/p&gt;
&lt;p&gt;
Ach und hier noch kurz, wo ich mich zur Zeit befinde:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://maps.google.de/?ie=UTF8&amp;amp;ll=13.755778,100.534939&amp;amp;spn=0.00445,0.010815&amp;amp;t=h&amp;amp;z=17&amp;amp;om=1" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="300" alt="Nadines Home" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/PartyberdenDchernderStadt_1131E/Nadines%20Home_1.jpg" width="320" border="0"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=1f5d3a64-f787-4a34-ac49-e68eb531c946" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,1f5d3a64-f787-4a34-ac49-e68eb531c946.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=489b7bf2-8b24-475c-88f7-754fb8f1d9c8</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,489b7bf2-8b24-475c-88f7-754fb8f1d9c8.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,489b7bf2-8b24-475c-88f7-754fb8f1d9c8.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=489b7bf2-8b24-475c-88f7-754fb8f1d9c8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/ImBumsbombernachThailand_A8E6/_MG_1209.jpg" atomicselection="true">
            <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 10px 15px; border-right-width: 0px" height="300" alt="Hamburg Flughafen" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/ImBumsbombernachThailand_A8E6/_MG_1209_thumb.jpg" width="200" align="right" border="0" />
          </a> Endlich
wieder in der <a href="http://blog.pixelplastic.de/2005/08/15/ankunftDerGerueche.aspx">Stadt
der wilden Gerüche</a>. Flugtechnisch hat alles geklappt. Auch die Immigation verlief
problemlos. Von Hamburg nach Dubai saß ich neben Lars, dem Energiemechaniker, der
spontan für schlappe 400,- EUR mit Emirates für vier Wochen nach Thailand flog. Und
das Ticket hat er wohl erst drei Tage vor Abflug gekauft. Respekt.
</p>
        <p>
Leider, leider haben sich in Dubai unsere Wege getrennt, da er mit acht Stunden Aufenthalt
fast fünf Stunden länger in Dubai verharren musste als ich. "Leider" ist hier aber
leicht sarkastisch gemeint, da er mir die drei Stunden in Dubai mit Erzählungen seiner
langjährigen Pattaya-Erfahrung versüßte. Die Stadt durfte ich ja <a href="http://blog.pixelplastic.de/2005/09/19/dieLetzteWoche.aspx">vor
zwei Jahren schon mal mit Simon erleben</a>. Die eine Nacht dort hatte mir gereicht.
Auch sonst hat man im Flieger schon rein durch's Äußere erkannt, wer sich in Thailand
in welchen Regionen aufhalten wird und "dieses eine Ziel" verfolgt. Zum Glück gehöre
ich nicht dazu.
</p>
        <p>
          <a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/ImBumsbombernachThailand_A8E6/_MG_1215.jpg" atomicselection="true">
            <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 10px 0px 0px; border-right-width: 0px" height="160" alt="Dubai Flughafen" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/ImBumsbombernachThailand_A8E6/_MG_1215_thumb.jpg" width="240" align="left" border="0" />
          </a> Momentan
sitze ich noch im Airport Express Bus, der mich für 150 Baht zum Skytrain transportiert
(Besser als das 700 Baht Taxi von Guntje und Annar). Laptop sei dank, kann ich also
auch hier in der Fremde an meinen Blogeinträgen schreiben. Leider nur noch bis nächste
Woche Mittwoch, weil es ja dann nach Kula Lumpur weiter geht. Das Notebook wird hier
in Bangkok bei Naddin bleiben. Bei ihr werde ich auch in den nächsten Tagen unterkommen.
Deo, ihr Lebensabschnittsgefährte erwartet mich dann gleich an der Skytrainstation
Payathai. Zusammen werden wir dann im Apartment auf Naddin warten - aber erst mal
duschen.
</p>
        <p>
@<a href="http://www.boldhaus.info/">Guntje und Annar</a>: Ich bleib euch auf den
Fersen. ;-)
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=489b7bf2-8b24-475c-88f7-754fb8f1d9c8" />
      </body>
      <title>Im Bumsbomber nach Thailand</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,489b7bf2-8b24-475c-88f7-754fb8f1d9c8.aspx</guid>
      <link>http://pixelplastic.de/2007/08/30/ImBumsbomberNachThailand.aspx</link>
      <pubDate>Thu, 30 Aug 2007 10:01:38 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/ImBumsbombernachThailand_A8E6/_MG_1209.jpg" atomicselection="true"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 10px 15px; border-right-width: 0px" height="300" alt="Hamburg Flughafen" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/ImBumsbombernachThailand_A8E6/_MG_1209_thumb.jpg" width="200" align="right" border="0"&gt;&lt;/a&gt; Endlich
wieder in der &lt;a href="http://blog.pixelplastic.de/2005/08/15/ankunftDerGerueche.aspx"&gt;Stadt
der wilden Gerüche&lt;/a&gt;. Flugtechnisch hat alles geklappt. Auch die Immigation verlief
problemlos. Von Hamburg nach Dubai saß ich neben Lars, dem Energiemechaniker, der
spontan für schlappe 400,- EUR mit Emirates für vier Wochen nach Thailand flog. Und
das Ticket hat er wohl erst drei Tage vor Abflug gekauft. Respekt.
&lt;/p&gt;
&lt;p&gt;
Leider, leider haben sich in Dubai unsere Wege getrennt, da er mit acht Stunden Aufenthalt
fast fünf Stunden länger in Dubai verharren musste als ich. "Leider" ist hier aber
leicht sarkastisch gemeint, da er mir die drei Stunden in Dubai mit Erzählungen seiner
langjährigen Pattaya-Erfahrung versüßte. Die Stadt durfte ich ja &lt;a href="http://blog.pixelplastic.de/2005/09/19/dieLetzteWoche.aspx"&gt;vor
zwei Jahren schon mal mit Simon erleben&lt;/a&gt;. Die eine Nacht dort hatte mir gereicht.
Auch sonst hat man im Flieger schon rein durch's Äußere erkannt, wer sich in Thailand
in welchen Regionen aufhalten wird und "dieses eine Ziel" verfolgt. Zum Glück gehöre
ich nicht dazu.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/ImBumsbombernachThailand_A8E6/_MG_1215.jpg" atomicselection="true"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 10px 0px 0px; border-right-width: 0px" height="160" alt="Dubai Flughafen" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/ImBumsbombernachThailand_A8E6/_MG_1215_thumb.jpg" width="240" align="left" border="0"&gt;&lt;/a&gt; Momentan
sitze ich noch im Airport Express Bus, der mich für 150 Baht zum Skytrain transportiert
(Besser als das 700 Baht Taxi von Guntje und Annar). Laptop sei dank, kann ich also
auch hier in der Fremde an meinen Blogeinträgen schreiben. Leider nur noch bis nächste
Woche Mittwoch, weil es ja dann nach Kula Lumpur weiter geht. Das Notebook wird hier
in Bangkok bei Naddin bleiben. Bei ihr werde ich auch in den nächsten Tagen unterkommen.
Deo, ihr Lebensabschnittsgefährte erwartet mich dann gleich an der Skytrainstation
Payathai. Zusammen werden wir dann im Apartment auf Naddin warten - aber erst mal
duschen.
&lt;/p&gt;
&lt;p&gt;
@&lt;a href="http://www.boldhaus.info/"&gt;Guntje und Annar&lt;/a&gt;: Ich bleib euch auf den
Fersen. ;-)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=489b7bf2-8b24-475c-88f7-754fb8f1d9c8" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,489b7bf2-8b24-475c-88f7-754fb8f1d9c8.aspx</comments>
      <category>reisen</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=5f11123c-8fc3-4a3e-8a81-5558fa54aad2</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,5f11123c-8fc3-4a3e-8a81-5558fa54aad2.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,5f11123c-8fc3-4a3e-8a81-5558fa54aad2.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=5f11123c-8fc3-4a3e-8a81-5558fa54aad2</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
After one day of trying and researching on <a href="http://www.silverlight.net/">Silverlight</a> I
implemented a simple game. My intention was to create a game that runs in fullscreen
on a tablet PC including the usage of the stylus pen. I thought it could be pretty
cool to build a billard table, because it feels like a real game, if you use the stylus
as cue while playing with virtual balls. And here is the result.
</p>
        <div id="SilverlightControlHost" style="height: 390px; width: 520px;">
          <script type="text/javascript" src="/content/binary/Silverlight/Billard/Silverlight.js">
          </script>
          <script type="text/javascript" src="/content/binary/Silverlight/Billard/Billard.js">
          </script>
          <script type="text/javascript" src="/content/binary/Silverlight/Billard/Billard.xaml.js">
          </script>
          <script type="text/javascript">
		createSilverlight();
	</script>
        </div>
        <p>
For sure it's not that realistic, but it shows the features that Silverlight may afford
for a new web experience. Another idea for a game project that matches this kind of
gameplay could be a minigolf application. Hmmm. I can see myself staying in front
of my lowered tablet while swinging a stick (with my attached stylus). ;-)
</p>
        <p>
If you are interested in the sources of the billard game, you can <a href="/content/binary/Silverlight.Billard.zip">download
the xaml, js and html files here.</a></p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5f11123c-8fc3-4a3e-8a81-5558fa54aad2" />
      </body>
      <title>Simple billard game in Silverlight</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,5f11123c-8fc3-4a3e-8a81-5558fa54aad2.aspx</guid>
      <link>http://pixelplastic.de/2007/08/18/SimpleBillardGameInSilverlight.aspx</link>
      <pubDate>Sat, 18 Aug 2007 23:42:22 GMT</pubDate>
      <description>&lt;p&gt;
After one day of trying and researching on &lt;a href="http://www.silverlight.net/"&gt;Silverlight&lt;/a&gt; I
implemented a simple game. My intention was to create a game that runs in fullscreen
on a tablet PC including the usage of the stylus pen. I thought it could be pretty
cool to build a billard table, because it feels like a real game, if you use the stylus
as cue while playing with virtual balls. And here is the result.
&lt;/p&gt;
&lt;div id="SilverlightControlHost" style="height: 390px; width: 520px;"&gt;
&lt;script type="text/javascript" src="/content/binary/Silverlight/Billard/Silverlight.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="/content/binary/Silverlight/Billard/Billard.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="/content/binary/Silverlight/Billard/Billard.xaml.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
		createSilverlight();
	&lt;/script&gt;
&lt;/div&gt;
&lt;p&gt;
For sure it's not that realistic, but it shows the features that Silverlight may afford
for a new web experience. Another idea for a game project that matches this kind of
gameplay could be a minigolf application. Hmmm. I can see myself staying in front
of my lowered tablet while swinging a stick (with my attached stylus). ;-)
&lt;/p&gt;
&lt;p&gt;
If you are interested in the sources of the billard game, you can &lt;a href="/content/binary/Silverlight.Billard.zip"&gt;download
the xaml, js and html files here.&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5f11123c-8fc3-4a3e-8a81-5558fa54aad2" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,5f11123c-8fc3-4a3e-8a81-5558fa54aad2.aspx</comments>
      <category>development</category>
      <category>fun</category>
      <category>wpf</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=40030dc4-8503-4879-9c07-2f3dc67947e5</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,40030dc4-8503-4879-9c07-2f3dc67947e5.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,40030dc4-8503-4879-9c07-2f3dc67947e5.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=40030dc4-8503-4879-9c07-2f3dc67947e5</wfw:commentRss>
      <title>Russischer Zupfkuchen</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,40030dc4-8503-4879-9c07-2f3dc67947e5.aspx</guid>
      <link>http://pixelplastic.de/2007/08/05/RussischerZupfkuchen.aspx</link>
      <pubDate>Sun, 05 Aug 2007 16:24:56 GMT</pubDate>
      <description>&lt;h4&gt;Zutaten
&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;
F&amp;uuml;r den Teig: 
&lt;ul&gt;
&lt;li&gt;
350&amp;nbsp;g Mehl&lt;/li&gt;
&lt;li&gt;
200&amp;nbsp;g Zucker&lt;/li&gt;
&lt;li&gt;
200&amp;nbsp;g geschmolzene Butter&lt;/li&gt;
&lt;li&gt;
40&amp;nbsp;g Kakaopulver&lt;/li&gt;
&lt;li&gt;
1&amp;nbsp; Ei&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
F&amp;uuml;r die F&amp;uuml;llung: 
&lt;ul&gt;
&lt;li&gt;
250&amp;nbsp;g Zucker&lt;/li&gt;
&lt;li&gt;
50&amp;nbsp;g geschmolzene Butter&lt;/li&gt;
&lt;li&gt;
3 Eier&lt;/li&gt;
&lt;li&gt;
500&amp;nbsp;g Quark 
&lt;/li&gt;
&lt;li&gt;
1&amp;nbsp;Pkg. Puddingpulver, Vanille&lt;/li&gt;
&lt;li&gt;
1&amp;nbsp;Pkg. Vanillezucker&lt;/li&gt;
&lt;li&gt;
1 Vanilleschote&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Zubereitung
&lt;/h4&gt;
&lt;h5&gt;F&amp;uuml;r den Teig
&lt;/h5&gt;
&lt;p&gt;
Zutaten f&amp;uuml;r den braunen Teig kneten. Ev. noch etwas mehr Kakao hinzuf&amp;uuml;gen,
falls der Teig noch nicht schokoladig genug erscheint.
&lt;/p&gt;
&lt;p&gt;
2/3 des Teigs in einer gefetteten Springform auf Boden und am Rand ausbreiten.
&lt;/p&gt;
&lt;h5&gt;F&amp;uuml;r die F&amp;uuml;llung
&lt;/h5&gt;
&lt;p&gt;
Die Vanilleschote l&amp;auml;ngs aufschneiden, das dunklen Mark herauskratzen und mit
den restlichen Zutaten verr&amp;uuml;hren, so dass eine einheitliche Masse entsteht. Diese
Masse nun in den Schokoladenmantel gie&amp;szlig;en. Das letzte Drittel des braunen Teiges
nun &lt;i&gt;zupfend&lt;/i&gt; in die F&amp;uuml;llung fallen lassen/stecken.
&lt;/p&gt;
&lt;p&gt;
Bei 200 Grad Ober-Unterhitze oder 175 Grad Hei&amp;szlig;luft ca. 40 Minuten backen. Mit
Holzst&amp;auml;bchen pr&amp;uuml;fen, ob die F&amp;uuml;llung schon fest ist (es darf kaum etwas
kleben bleiben).
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=40030dc4-8503-4879-9c07-2f3dc67947e5" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,40030dc4-8503-4879-9c07-2f3dc67947e5.aspx</comments>
      <category>recipes</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=3d63d8f1-0758-4e39-90ba-7d19b9bdb45a</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,3d63d8f1-0758-4e39-90ba-7d19b9bdb45a.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,3d63d8f1-0758-4e39-90ba-7d19b9bdb45a.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=3d63d8f1-0758-4e39-90ba-7d19b9bdb45a</wfw:commentRss>
      <title>Wetterl&amp;uuml;ge</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,3d63d8f1-0758-4e39-90ba-7d19b9bdb45a.aspx</guid>
      <link>http://pixelplastic.de/2007/08/02/Wetterluumlge.aspx</link>
      <pubDate>Thu, 02 Aug 2007 11:12:06 GMT</pubDate>
      <description>&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/Wetterlge_B99D/WetterGadget.jpg" alt="Wetter vom Computer"&gt;
&lt;/p&gt;
&lt;p&gt;
vs.
&lt;/p&gt;
&lt;p&gt;
&lt;img alt="Wetter drausen" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/Wetterlge_B99D/_MG_07992.jpg"&gt;
&lt;/p&gt;
&lt;p&gt;
Ich werd' das Gef&amp;uuml;hl nicht los, dass hier irgendwer l&amp;uuml;gt...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3d63d8f1-0758-4e39-90ba-7d19b9bdb45a" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,3d63d8f1-0758-4e39-90ba-7d19b9bdb45a.aspx</comments>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=4e83e651-e963-4a89-86e1-ade724990b68</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,4e83e651-e963-4a89-86e1-ade724990b68.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,4e83e651-e963-4a89-86e1-ade724990b68.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=4e83e651-e963-4a89-86e1-ade724990b68</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Previously I read the news about last SysAdminDay that takes place every last Friday
in July. <a href="http://www.sysadminday.com/" title="http://www.sysadminday.com/">Looking
at the webpage</a> I found this nice song about system administrators performed by
Wes Borg:
</p>
        <object width="425" height="350">
          <param name="movie" value="http://www.youtube.com/v/3wuHQU-6-sM" />
          <param name="wmode" value="transparent" />
          <embed src="http://www.youtube.com/v/3wuHQU-6-sM" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350">
          </embed>
        </object>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=4e83e651-e963-4a89-86e1-ade724990b68" />
      </body>
      <title>SysAdminDay song</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,4e83e651-e963-4a89-86e1-ade724990b68.aspx</guid>
      <link>http://pixelplastic.de/2007/07/28/SysAdminDaySong.aspx</link>
      <pubDate>Sat, 28 Jul 2007 12:48:04 GMT</pubDate>
      <description>&lt;p&gt;
Previously I read the news about last SysAdminDay that takes place every last Friday
in July. &lt;a href="http://www.sysadminday.com/" title="http://www.sysadminday.com/"&gt;Looking
at the webpage&lt;/a&gt; I found this nice song about system administrators performed by
Wes Borg:
&lt;/p&gt;
&lt;object width="425" height="350"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/3wuHQU-6-sM"&gt;&gt;
&lt;param name="wmode" value="transparent"&gt;&gt;&lt;embed src="http://www.youtube.com/v/3wuHQU-6-sM" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"&gt;&lt;/embed&gt;
&lt;/object&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=4e83e651-e963-4a89-86e1-ade724990b68" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,4e83e651-e963-4a89-86e1-ade724990b68.aspx</comments>
      <category>fun</category>
      <category>geek stuff</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=3b1fc732-63ef-470c-a91a-2888b9b1d7ae</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,3b1fc732-63ef-470c-a91a-2888b9b1d7ae.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,3b1fc732-63ef-470c-a91a-2888b9b1d7ae.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=3b1fc732-63ef-470c-a91a-2888b9b1d7ae</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Based on <a href="http://www.nivas.hr/blog/2007/05/07/what-do-i-think-about-adobe/">a
blog entry</a>, where Daemon tatooed an Adobe logo on his arm I tried to do this on
my own with the logo of Microsoft. And here's the result:
</p>
        <p>
          <img height="406" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/Microsofttatoo_AFCB/microsoft-tatoo%5B8%5D.jpg" width="540" />
        </p>
        <p>
Adobe, Microsoft and the Microsoft Logo are registered trademarks.
</p>
        <a href="http://blog.pixelplastic.de/content/binary/microsoft-tatoo-full.jpg">microsoft-tatoo-full.jpg
(858,32 KB)</a>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3b1fc732-63ef-470c-a91a-2888b9b1d7ae" />
      </body>
      <title>Microsoft tatoo</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,3b1fc732-63ef-470c-a91a-2888b9b1d7ae.aspx</guid>
      <link>http://pixelplastic.de/2007/06/29/MicrosoftTatoo.aspx</link>
      <pubDate>Fri, 29 Jun 2007 10:30:20 GMT</pubDate>
      <description>&lt;p&gt;
Based on &lt;a href="http://www.nivas.hr/blog/2007/05/07/what-do-i-think-about-adobe/"&gt;a
blog entry&lt;/a&gt;, where Daemon tatooed an Adobe logo on his arm I tried to do this on
my own with the logo of Microsoft. And here's the result:
&lt;/p&gt;
&lt;p&gt;
&lt;img height="406" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/Microsofttatoo_AFCB/microsoft-tatoo%5B8%5D.jpg" width="540"&gt; 
&lt;/p&gt;
&lt;p&gt;
Adobe, Microsoft and the Microsoft Logo are registered trademarks.
&lt;/p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/microsoft-tatoo-full.jpg"&gt;microsoft-tatoo-full.jpg
(858,32 KB)&lt;/a&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3b1fc732-63ef-470c-a91a-2888b9b1d7ae" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,3b1fc732-63ef-470c-a91a-2888b9b1d7ae.aspx</comments>
      <category>art</category>
      <category>fun</category>
      <category>geek stuff</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=04629e23-a6bd-4cd8-9540-322b34b0b4e9</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,04629e23-a6bd-4cd8-9540-322b34b0b4e9.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,04629e23-a6bd-4cd8-9540-322b34b0b4e9.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=04629e23-a6bd-4cd8-9540-322b34b0b4e9</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I know Japanese people are always crazy, especially if you watch their TV shows. I
remember a helicopter show I was watching, when I went to <a href="http://blog.pixelplastic.de/default,month,2005-08.aspx">Myanmar
in 2005</a>. The participants task was to steer a small helicopter by remote control
through a course of swinging, crushing and exploding barricades. To finish the level
they had to hook up an object that should be transported to a plattform. Searching
youtube I found the matching video:
</p>
        <object width="425" height="350">
          <param name="movie" value="http://www.youtube.com/v/6dAsD0x3z_8" />
          <param name="wmode" value="transparent" />
          <embed src="http://www.youtube.com/v/6dAsD0x3z_8" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350">
          </embed>
        </object>
        <p>
Another crazy sample of these TV shows is Human Tetris:
</p>
        <object width="425" height="350">
          <param name="movie" value="http://www.youtube.com/v/jbIRqXHxeDU" />
          <param name="wmode" value="transparent" />
          <embed src="http://www.youtube.com/v/jbIRqXHxeDU" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350">
          </embed>
        </object>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=04629e23-a6bd-4cd8-9540-322b34b0b4e9" />
      </body>
      <title>Crazy freaks</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,04629e23-a6bd-4cd8-9540-322b34b0b4e9.aspx</guid>
      <link>http://pixelplastic.de/2007/06/18/CrazyFreaks.aspx</link>
      <pubDate>Mon, 18 Jun 2007 12:28:08 GMT</pubDate>
      <description>&lt;p&gt;
I know Japanese people are always crazy, especially if you watch their TV shows. I
remember a helicopter show I was watching, when I went to &lt;a href="http://blog.pixelplastic.de/default,month,2005-08.aspx"&gt;Myanmar
in 2005&lt;/a&gt;. The participants task was to steer a small helicopter by remote control
through a course of swinging, crushing and exploding barricades. To finish the level
they had to hook up an object&amp;nbsp;that should be transported to a plattform. Searching
youtube I found the matching video:
&lt;/p&gt;
&lt;object width="425" height="350"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/6dAsD0x3z_8"&gt;&gt;
&lt;param name="wmode" value="transparent"&gt;&gt;&lt;embed src="http://www.youtube.com/v/6dAsD0x3z_8" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"&gt;&lt;/embed&gt;
&lt;/object&gt;
&lt;p&gt;
Another crazy sample of these TV shows is Human Tetris:
&lt;/p&gt;
&lt;object width="425" height="350"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/jbIRqXHxeDU"&gt;&gt;
&lt;param name="wmode" value="transparent"&gt;&gt;&lt;embed src="http://www.youtube.com/v/jbIRqXHxeDU" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"&gt;&lt;/embed&gt;
&lt;/object&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=04629e23-a6bd-4cd8-9540-322b34b0b4e9" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,04629e23-a6bd-4cd8-9540-322b34b0b4e9.aspx</comments>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=d28bb014-f820-4404-96c9-9e5e34897f59</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,d28bb014-f820-4404-96c9-9e5e34897f59.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,d28bb014-f820-4404-96c9-9e5e34897f59.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=d28bb014-f820-4404-96c9-9e5e34897f59</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <img height="271" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/MicrosoftSurface_AE44/image%7B0%7D%5B7%5D.png" width="560" />
        </p>
        <p>
Mixing physical and virtual worlds was the vision of Stevie Bathiche and Andy Wilson
after a brainstorming in 2001. Now in 2007 Microsoft presents the result
of a long research and development phase: <a href="http://www.microsoft.com/surface/">Microsoft
Surface</a></p>
        <p>
It's hard to find words about this technology. So just <a href="http://www.microsoft.com/surface/">follow
this link</a> and watch the amazing clips to get in touch with the upcoming futuristic
interfaces.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d28bb014-f820-4404-96c9-9e5e34897f59" />
      </body>
      <title>Microsoft Surface</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,d28bb014-f820-4404-96c9-9e5e34897f59.aspx</guid>
      <link>http://pixelplastic.de/2007/05/30/MicrosoftSurface.aspx</link>
      <pubDate>Wed, 30 May 2007 10:23:32 GMT</pubDate>
      <description>&lt;p&gt;
&lt;img height="271" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/MicrosoftSurface_AE44/image%7B0%7D%5B7%5D.png" width="560"&gt; 
&lt;/p&gt;
&lt;p&gt;
Mixing physical and virtual worlds was the vision of Stevie Bathiche and Andy Wilson
after a brainstorming in&amp;nbsp;2001.&amp;nbsp;Now in 2007&amp;nbsp;Microsoft presents the result
of a long research and development phase: &lt;a href="http://www.microsoft.com/surface/"&gt;Microsoft
Surface&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
It's hard to&amp;nbsp;find words about this technology. So just &lt;a href="http://www.microsoft.com/surface/"&gt;follow
this link&lt;/a&gt; and watch the amazing&amp;nbsp;clips to get in touch with the upcoming&amp;nbsp;futuristic
interfaces.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d28bb014-f820-4404-96c9-9e5e34897f59" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,d28bb014-f820-4404-96c9-9e5e34897f59.aspx</comments>
      <category>art</category>
      <category>geek stuff</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=5aef8a25-1d4d-4821-a877-d3b106118d22</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,5aef8a25-1d4d-4821-a877-d3b106118d22.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,5aef8a25-1d4d-4821-a877-d3b106118d22.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=5aef8a25-1d4d-4821-a877-d3b106118d22</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Not only <a href="http://www.google.de/intl/de/help/features.html#calculator">numerical
equations are calculated directly by Google</a>, but even words are interpreted. The <a href="http://www.google.de/search?q=e-ten+x800">search
result for my upcoming new PPC</a> gave me this interesting output:
</p>
        <p>
          <img height="243" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/Googlesinterpretationofsearchrequests_C27D/GoogleSearch%5B4%5D.png" width="535" />
        </p>
        <ul>
          <li>
e was interpreted as <a href="http://en.wikipedia.org/wiki/E_(mathematical_constant)">Euler
Constant</a> with a value of 2.71828 18284 59045 23536</li>
          <li>
ten means 10</li>
          <li>
x means multiply</li>
        </ul>
        <p>
That's the way how Google gets the shown result.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5aef8a25-1d4d-4821-a877-d3b106118d22" />
      </body>
      <title>Googles interpretation of search requests</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,5aef8a25-1d4d-4821-a877-d3b106118d22.aspx</guid>
      <link>http://pixelplastic.de/2007/05/18/GooglesInterpretationOfSearchRequests.aspx</link>
      <pubDate>Fri, 18 May 2007 11:49:47 GMT</pubDate>
      <description>&lt;p&gt;
Not only &lt;a href="http://www.google.de/intl/de/help/features.html#calculator"&gt;numerical
equations are calculated directly by Google&lt;/a&gt;, but even words are interpreted. The &lt;a href="http://www.google.de/search?q=e-ten+x800"&gt;search
result for my upcoming new PPC&lt;/a&gt; gave me this interesting output:
&lt;/p&gt;
&lt;p&gt;
&lt;img height="243" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/Googlesinterpretationofsearchrequests_C27D/GoogleSearch%5B4%5D.png" width="535"&gt; 
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
e was interpreted as &lt;a href="http://en.wikipedia.org/wiki/E_(mathematical_constant)"&gt;Euler
Constant&lt;/a&gt; with a value of 2.71828 18284 59045 23536&lt;/li&gt;
&lt;li&gt;
ten means 10&lt;/li&gt;
&lt;li&gt;
x means multiply&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
That's the way how Google gets the shown result.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5aef8a25-1d4d-4821-a877-d3b106118d22" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,5aef8a25-1d4d-4821-a877-d3b106118d22.aspx</comments>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=4c7c9f1f-e881-445f-8264-9178ce236092</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,4c7c9f1f-e881-445f-8264-9178ce236092.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,4c7c9f1f-e881-445f-8264-9178ce236092.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=4c7c9f1f-e881-445f-8264-9178ce236092</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I read the post <a href="http://www.schrankmonster.de/PermaLink,guid,399e2c86-6ca7-49ed-8b2c-814c430d2d33.aspx">"BtK
is not only my nickname..." @ schrankmonster</a> and recognized that there are other
trucks that can often be seen on the European autobahn. It's not my nickname that
is placed on the trailer, but my surname: <a href="http://www.hoyer-group.com/">"Hoyer"</a>.
</p>
        <p>
          <a href="http://www.hankstruckpictures.com/len_rogers5.htm" atomicselection="true">
            <img height="365" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/Trucksontheautobahn_9AB0/volvo_hoyer%5B5%5D.jpg" width="540" border="0" />
          </a>
        </p>
        <p>
Source: <a title="http://www.hankstruckpictures.com/len_rogers5.htm" href="http://www.hankstruckpictures.com/len_rogers5.htm">http://www.hankstruckpictures.com/len_rogers5.htm</a></p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=4c7c9f1f-e881-445f-8264-9178ce236092" />
      </body>
      <title>Trucks on the autobahn</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,4c7c9f1f-e881-445f-8264-9178ce236092.aspx</guid>
      <link>http://pixelplastic.de/2007/05/10/TrucksOnTheAutobahn.aspx</link>
      <pubDate>Thu, 10 May 2007 08:59:58 GMT</pubDate>
      <description>&lt;p&gt;
I read the post &lt;a href="http://www.schrankmonster.de/PermaLink,guid,399e2c86-6ca7-49ed-8b2c-814c430d2d33.aspx"&gt;"BtK
is not only my nickname..." @ schrankmonster&lt;/a&gt; and recognized that there are other
trucks that can often be seen on the European autobahn. It's not my nickname that
is placed on the trailer, but my surname: &lt;a href="http://www.hoyer-group.com/"&gt;"Hoyer"&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.hankstruckpictures.com/len_rogers5.htm" atomicselection="true"&gt;&lt;img height="365" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/Trucksontheautobahn_9AB0/volvo_hoyer%5B5%5D.jpg" width="540" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Source: &lt;a title="http://www.hankstruckpictures.com/len_rogers5.htm" href="http://www.hankstruckpictures.com/len_rogers5.htm"&gt;http://www.hankstruckpictures.com/len_rogers5.htm&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=4c7c9f1f-e881-445f-8264-9178ce236092" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,4c7c9f1f-e881-445f-8264-9178ce236092.aspx</comments>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=80a5f1df-85dd-494e-a055-975398f7707f</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,80a5f1df-85dd-494e-a055-975398f7707f.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,80a5f1df-85dd-494e-a055-975398f7707f.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=80a5f1df-85dd-494e-a055-975398f7707f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <h4>
          <img height="125" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/StudentTechnologyConferenceSTC2007inDuis_10550/STC2007%5B4%5D.jpg" width="600" />
        </h4>
        <h4>vom 21. bis 22. Mai 2007 im <a href="http://www.landschaftspark.de">Landschaftspark
Duisburg</a></h4>
        <p>
Was gibt's neues in Sachen Software Architektur? Wie gestalte ich User Interfaces
mit ordentlich User Experience? Und das nicht nur für Windows Anwendungen, sondern
auch für's Web. Über diese Themen, bis hin zu Robotik und <a href="http://msdn.microsoft.com/xna/">Spielprogrammierung
mit XNA</a> werden auf der diesjährigen <a href="http://www.studentconference.de/">STC</a> im
Vordergrund stehen. Bekannte Sprecher werden diese aktuellen Technologien der IT Industrie
vorstellen. Dazu werden Workshops angeboten, um die neuen Technologien gleich mal
ausprobieren zu können.
</p>
        <p>
Neben den rein technologischen Aspekten bietet die <a href="http://www.studentconference.de/">Microsoft
Student Technology Conference</a> eine ideale Gelegenheit, namhaften Unternehmen kennenzulernen
und Einstiegschancen bei diesen zu erhöhen. Zusätzlich wird im Rahmen der Konferenz
das deutsche Finale des <a href="http://www.microsoft.com/germany/imaginecup/">Technologiewettbewerbs
Imagine Cup 2007</a> im Software Design ausgetragen!
</p>
        <p>
2 voll gestopfte Tage, die man sich als Technologiebegeisterter nicht entgehen lassen
sollte: 
</p>
        <ul>
          <li>
            <a href="http://www.studentconference.de/Vortraege.aspx">Technische Vorträge</a>
          </li>
          <li>
Workshops 
</li>
          <li>
Imagine Cup ´07 Finale 
</li>
          <li>
Attraktives Rahmenprogramm 
</li>
          <li>
Abendveranstaltung 
</li>
          <li>
Vollverpflegung während der Konferenz 
</li>
          <li>
Kontakte zu anderen Studierenden, Sprechern und potentiellen Arbeitgebern 
</li>
          <li>
            <a href="http://www.studentconference.de/Agenda.aspx">Und vieles mehr ...</a>
          </li>
        </ul>
        <p>
Alle Infos findet ihr unter: <a href="http://www.studentconference.de/">http://www.studentconference.de/</a></p>
        <p>
          <strong>
            <a style="background-color: yellow" href="https://www.event-team.com/events/STC2007/Anmeldung.aspx">Meldet
euch am besten noch heute an!</a>
          </strong>
          <span style="background-color: yellow">Anmeldungsschluss:
14. Mai 2007</span>
        </p>
        <p>
          <strong>BTW</strong>: Mich werdet ihr dort auch finden. :-)
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=80a5f1df-85dd-494e-a055-975398f7707f" />
      </body>
      <title>Student Technology Conference (STC) 2007 in Duisburg</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,80a5f1df-85dd-494e-a055-975398f7707f.aspx</guid>
      <link>http://pixelplastic.de/2007/05/08/StudentTechnologyConferenceSTC2007InDuisburg.aspx</link>
      <pubDate>Tue, 08 May 2007 16:34:56 GMT</pubDate>
      <description>&lt;h4&gt;&lt;img height="125" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/StudentTechnologyConferenceSTC2007inDuis_10550/STC2007%5B4%5D.jpg" width="600"&gt; 
&lt;/h4&gt;
&lt;h4&gt;vom 21. bis 22. Mai 2007 im &lt;a href="http://www.landschaftspark.de"&gt;Landschaftspark
Duisburg&lt;/a&gt;
&lt;/h4&gt;
&lt;p&gt;
Was gibt's neues in Sachen Software Architektur? Wie gestalte ich User Interfaces
mit ordentlich User Experience? Und das nicht nur für Windows Anwendungen, sondern
auch für's Web. Über diese Themen, bis hin zu Robotik und &lt;a href="http://msdn.microsoft.com/xna/"&gt;Spielprogrammierung
mit XNA&lt;/a&gt; werden auf der diesjährigen &lt;a href="http://www.studentconference.de/"&gt;STC&lt;/a&gt; im
Vordergrund stehen. Bekannte Sprecher werden diese aktuellen Technologien der IT Industrie
vorstellen. Dazu werden Workshops angeboten, um die neuen Technologien gleich mal
ausprobieren zu können.
&lt;/p&gt;
&lt;p&gt;
Neben den rein technologischen Aspekten bietet die &lt;a href="http://www.studentconference.de/"&gt;Microsoft
Student Technology Conference&lt;/a&gt; eine ideale Gelegenheit, namhaften Unternehmen kennenzulernen
und Einstiegschancen bei diesen zu erhöhen. Zusätzlich wird im Rahmen der Konferenz
das deutsche Finale des &lt;a href="http://www.microsoft.com/germany/imaginecup/"&gt;Technologiewettbewerbs
Imagine Cup 2007&lt;/a&gt; im Software Design ausgetragen!
&lt;/p&gt;
&lt;p&gt;
2 voll gestopfte Tage, die man sich als Technologiebegeisterter nicht entgehen lassen
sollte: 
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://www.studentconference.de/Vortraege.aspx"&gt;Technische Vorträge&lt;/a&gt; 
&lt;li&gt;
Workshops 
&lt;li&gt;
Imagine Cup ´07 Finale 
&lt;li&gt;
Attraktives Rahmenprogramm 
&lt;li&gt;
Abendveranstaltung 
&lt;li&gt;
Vollverpflegung während der Konferenz 
&lt;li&gt;
Kontakte zu anderen Studierenden, Sprechern und potentiellen Arbeitgebern 
&lt;li&gt;
&lt;a href="http://www.studentconference.de/Agenda.aspx"&gt;Und vieles mehr ...&lt;/a&gt; 
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Alle Infos findet ihr unter: &lt;a href="http://www.studentconference.de/"&gt;http://www.studentconference.de/&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;&lt;a style="background-color: yellow" href="https://www.event-team.com/events/STC2007/Anmeldung.aspx"&gt;Meldet
euch am besten noch heute an!&lt;/a&gt;&lt;/strong&gt; &lt;span style="background-color: yellow"&gt;Anmeldungsschluss:
14. Mai 2007&lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;BTW&lt;/strong&gt;: Mich werdet ihr dort auch finden. :-)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=80a5f1df-85dd-494e-a055-975398f7707f" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,80a5f1df-85dd-494e-a055-975398f7707f.aspx</comments>
      <category>development</category>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=d8e18525-d72c-4474-b304-38e73e2e5c76</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,d8e18525-d72c-4474-b304-38e73e2e5c76.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,d8e18525-d72c-4474-b304-38e73e2e5c76.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=d8e18525-d72c-4474-b304-38e73e2e5c76</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
On Monday at the <a href="http://visitmix.com/">Mix '07</a> Microsoft presented a
new <a href="http://www.microsoft.com/silverlight/downloads.aspx">alpha release of
Silverlight 1.1</a> that comes up with pure .NET support. This cross-platform plug-in
for browsers now includes a small core of the .NET framework, which allows developers
to write managed code for web applications.
</p>
        <p>
I'm going to check out, what the new features are and how these can improve the
process of building applications for the web.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d8e18525-d72c-4474-b304-38e73e2e5c76" />
      </body>
      <title>New version of Microsoft's Silverlight</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,d8e18525-d72c-4474-b304-38e73e2e5c76.aspx</guid>
      <link>http://pixelplastic.de/2007/05/02/NewVersionOfMicrosoftsSilverlight.aspx</link>
      <pubDate>Wed, 02 May 2007 09:05:39 GMT</pubDate>
      <description>&lt;p&gt;
On Monday at the &lt;a href="http://visitmix.com/"&gt;Mix '07&lt;/a&gt; Microsoft presented a
new &lt;a href="http://www.microsoft.com/silverlight/downloads.aspx"&gt;alpha release of
Silverlight 1.1&lt;/a&gt; that comes up with pure .NET support. This cross-platform plug-in
for browsers now includes a small core of the .NET framework, which allows developers
to write managed code for web applications.
&lt;/p&gt;
&lt;p&gt;
I'm going to check out, what the new features are and how&amp;nbsp;these can improve the
process of building applications for the web.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d8e18525-d72c-4474-b304-38e73e2e5c76" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,d8e18525-d72c-4474-b304-38e73e2e5c76.aspx</comments>
      <category>development</category>
      <category>wpf</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=10132187-ef6f-4e96-8042-e2e041e4b021</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,10132187-ef6f-4e96-8042-e2e041e4b021.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,10132187-ef6f-4e96-8042-e2e041e4b021.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=10132187-ef6f-4e96-8042-e2e041e4b021</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nach dem Erfolg des letzten Jahres startet Alexander Schubert (aka <a title="Sinebag profile" href="http://www.ahornfelder.de/artists/sinebag/">Sinebag</a>)
auch in diesem Jahr mit seinem <a title="Ahornfelder Label" href="http://www.ahornfelder.de/">klangorientierten
Label Ahornfelder</a> ein mehrtägiges Festival. 12 Bands zeigen an drei Tagen, dass
z.B. auch mit exotischsten Instrumenten Musik (oder Ähnliches) erzeugt werden
kann. Dabei sind die Instrumente teilweise nicht im herkömmlichen Sinne zu verstehen,
sondern vielmehr auch als Objekte des täglichen Bedarfs.
</p>
        <p>
          <a href="http://www.ahornfelder.de/festival/" atomicselection="true">
            <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="113" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/AhornfelderMusikfestival2007_B66F/Ahornfelder2007%5B12%5D.jpg" width="540" border="0" />
          </a>
        </p>
        <p>
Los geht's heute und an den darauffolgenden Abenden jeweils um 19Uhr.
</p>
        <h4>Donnerstag, 19.4.2007
</h4>
        <ul>
          <li>
            <a href="http://www.ahornfelder.de/festival/fs_blumm.html">
              <b>FS Blumm</b> (Ahornfelder,
Morr)</a>
          </li>
          <li>
            <a href="http://www.ahornfelder.de/festival/taunus.html">
              <b>Taunus </b>(Ahornfelder) </a>
          </li>
          <li>
            <a href="http://www.ahornfelder.de/festival/eckschw.html">
              <b>Eckartsschwerdt </b>(Euphorium) </a>
          </li>
        </ul>
        <h4>Freitag, 20.4.2007
</h4>
        <ul>
          <li>
            <a href="http://www.ahornfelder.de/festival/ekkehard_ehlers.html">
              <b>Ekkehard Ehlers </b>(Staubgold)</a>
          </li>
          <li>
            <a href="http://www.ahornfelder.de/festival/musicforrabbits.html">
              <b>Music For Rabbits </b>NEW
NEW NEW </a>
          </li>
          <li>
            <a href="http://www.ahornfelder.de/festival/jab_mica_och_el.html">
              <b>Jab Mica Och
El </b>(Ache) Cancelled</a>
          </li>
          <li>
            <a href="http://www.ahornfelder.de/festival/frankeneumann.html">
              <b>Franke/Neumann</b> (Alula
Ton Serien)</a>
          </li>
          <li>
            <a href="http://www.ahornfelder.de/festival/trnn.html">
              <b>Trnn</b> (Ahornfelder)</a>
          </li>
        </ul>
        <h4>Samstag, 21.4.2007
</h4>
        <ul>
          <li>
            <a href="http://www.ahornfelder.de/festival/fanclub_orchestra.html">
              <b>Fanclub Orchestra </b>(Sonig)</a>
          </li>
          <li>
            <a href="http://www.ahornfelder.de/festival/sinebag.html">
              <b>Sinebag </b>(Ahornfelder)</a>
          </li>
          <li>
            <a href="http://www.ahornfelder.de/festival/marcel_tuerkowsky.html">
              <b>Marcel Türkowsky </b>(Naivsuper)</a>
          </li>
          <li>
            <a href="http://www.ahornfelder.de/festival/tape.html">
              <b>Dot Tape Dot</b> (Sp.Ark)</a>
          </li>
        </ul>
        <p>
Weitere Infos unter: <a title="http://www.ahornfelder.de/festival/" href="http://www.ahornfelder.de/festival/">http://www.ahornfelder.de/festival/</a></p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=10132187-ef6f-4e96-8042-e2e041e4b021" />
      </body>
      <title>Ahornfelder Musikfestival 2007</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,10132187-ef6f-4e96-8042-e2e041e4b021.aspx</guid>
      <link>http://pixelplastic.de/2007/04/19/AhornfelderMusikfestival2007.aspx</link>
      <pubDate>Thu, 19 Apr 2007 10:58:02 GMT</pubDate>
      <description>&lt;p&gt;
Nach dem Erfolg des letzten Jahres startet Alexander Schubert (aka &lt;a title="Sinebag profile" href="http://www.ahornfelder.de/artists/sinebag/"&gt;Sinebag&lt;/a&gt;)
auch in diesem Jahr mit seinem &lt;a title="Ahornfelder Label" href="http://www.ahornfelder.de/"&gt;klangorientierten
Label Ahornfelder&lt;/a&gt; ein mehrtägiges Festival. 12 Bands zeigen an drei Tagen, dass
z.B. auch mit exotischsten Instrumenten&amp;nbsp;Musik (oder Ähnliches) erzeugt werden
kann. Dabei sind die Instrumente teilweise nicht im herkömmlichen Sinne zu verstehen,
sondern vielmehr auch als Objekte des täglichen Bedarfs.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.ahornfelder.de/festival/" atomicselection="true"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="113" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/AhornfelderMusikfestival2007_B66F/Ahornfelder2007%5B12%5D.jpg" width="540" border="0"&gt;&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
Los geht's heute und an den darauffolgenden&amp;nbsp;Abenden jeweils&amp;nbsp;um 19Uhr.
&lt;/p&gt;
&lt;h4&gt;Donnerstag, 19.4.2007
&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://www.ahornfelder.de/festival/fs_blumm.html"&gt;&lt;b&gt;FS Blumm&lt;/b&gt; (Ahornfelder,
Morr)&lt;/a&gt; 
&lt;li&gt;
&lt;a href="http://www.ahornfelder.de/festival/taunus.html"&gt;&lt;b&gt;Taunus &lt;/b&gt;(Ahornfelder) &lt;/a&gt; 
&lt;li&gt;
&lt;a href="http://www.ahornfelder.de/festival/eckschw.html"&gt;&lt;b&gt;Eckartsschwerdt &lt;/b&gt;(Euphorium) &lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Freitag, 20.4.2007
&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://www.ahornfelder.de/festival/ekkehard_ehlers.html"&gt;&lt;b&gt;Ekkehard Ehlers &lt;/b&gt;(Staubgold)&lt;/a&gt; 
&lt;li&gt;
&lt;a href="http://www.ahornfelder.de/festival/musicforrabbits.html"&gt;&lt;b&gt;Music For Rabbits &lt;/b&gt;NEW
NEW NEW &lt;/a&gt; 
&lt;li&gt;
&lt;a href="http://www.ahornfelder.de/festival/jab_mica_och_el.html"&gt;&lt;b&gt;Jab Mica Och
El &lt;/b&gt;(Ache) Cancelled&lt;/a&gt; 
&lt;li&gt;
&lt;a href="http://www.ahornfelder.de/festival/frankeneumann.html"&gt;&lt;b&gt;Franke/Neumann&lt;/b&gt; (Alula
Ton Serien)&lt;/a&gt; 
&lt;li&gt;
&lt;a href="http://www.ahornfelder.de/festival/trnn.html"&gt;&lt;b&gt;Trnn&lt;/b&gt; (Ahornfelder)&lt;/a&gt; 
&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Samstag, 21.4.2007
&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://www.ahornfelder.de/festival/fanclub_orchestra.html"&gt;&lt;b&gt;Fanclub Orchestra &lt;/b&gt;(Sonig)&lt;/a&gt; 
&lt;li&gt;
&lt;a href="http://www.ahornfelder.de/festival/sinebag.html"&gt;&lt;b&gt;Sinebag &lt;/b&gt;(Ahornfelder)&lt;/a&gt; 
&lt;li&gt;
&lt;a href="http://www.ahornfelder.de/festival/marcel_tuerkowsky.html"&gt;&lt;b&gt;Marcel Türkowsky &lt;/b&gt;(Naivsuper)&lt;/a&gt; 
&lt;li&gt;
&lt;a href="http://www.ahornfelder.de/festival/tape.html"&gt;&lt;b&gt;Dot Tape Dot&lt;/b&gt; (Sp.Ark)&lt;/a&gt; 
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Weitere Infos unter: &lt;a title="http://www.ahornfelder.de/festival/" href="http://www.ahornfelder.de/festival/"&gt;http://www.ahornfelder.de/festival/&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=10132187-ef6f-4e96-8042-e2e041e4b021" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,10132187-ef6f-4e96-8042-e2e041e4b021.aspx</comments>
      <category>art</category>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=d04ef33a-285a-477c-9261-ceb0cd52fabe</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,d04ef33a-285a-477c-9261-ceb0cd52fabe.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,d04ef33a-285a-477c-9261-ceb0cd52fabe.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=d04ef33a-285a-477c-9261-ceb0cd52fabe</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Last weekend at the National Association of Broadcasters Microsoft announced Microsoft
Silverlight to be the new "cross-platform, cross-browser plug-in for delivering the
next generation of media experiences and rich interactive applications (RIAs) for
the Web."
</p>
        <object width="425" height="350">
          <param name="movie" value="http://www.youtube.com/v/scTQlU9Jj4I" />
          <param name="wmode" value="transparent" />
          <embed src="http://www.youtube.com/v/scTQlU9Jj4I" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350">
          </embed>
        </object>
        <p>
As I read there are no new features available with this announcement. The SDK is still
the same as the Community Technology Preview (February 2007) release. 
</p>
        <p>
For more information look at: <a title="http://www.microsoft.com/silverlight/" href="http://www.microsoft.com/silverlight/">http://www.microsoft.com/silverlight/</a></p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d04ef33a-285a-477c-9261-ceb0cd52fabe" />
      </body>
      <title>WPF/E becomes Microsoft Silverlight</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,d04ef33a-285a-477c-9261-ceb0cd52fabe.aspx</guid>
      <link>http://pixelplastic.de/2007/04/17/WPFEBecomesMicrosoftSilverlight.aspx</link>
      <pubDate>Tue, 17 Apr 2007 08:50:28 GMT</pubDate>
      <description>&lt;p&gt;
Last weekend at the National Association of Broadcasters Microsoft announced Microsoft
Silverlight to be the new "cross-platform, cross-browser plug-in for delivering the
next generation of media experiences and rich interactive applications (RIAs) for
the Web."
&lt;/p&gt;
&lt;object width="425" height="350"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/scTQlU9Jj4I"&gt;&gt;
&lt;param name="wmode" value="transparent"&gt;&gt;&lt;embed src="http://www.youtube.com/v/scTQlU9Jj4I" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"&gt;&lt;/embed&gt;
&lt;/object&gt;
&lt;p&gt;
As I read there are no new features available with this announcement. The SDK is still
the same as the Community Technology Preview (February 2007) release. 
&lt;/p&gt;
&lt;p&gt;
For more information look at: &lt;a title="http://www.microsoft.com/silverlight/" href="http://www.microsoft.com/silverlight/"&gt;http://www.microsoft.com/silverlight/&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d04ef33a-285a-477c-9261-ceb0cd52fabe" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,d04ef33a-285a-477c-9261-ceb0cd52fabe.aspx</comments>
      <category>development</category>
      <category>wpf</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=dca862fc-08b8-4ebc-a7d9-4470323bc31a</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,dca862fc-08b8-4ebc-a7d9-4470323bc31a.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,dca862fc-08b8-4ebc-a7d9-4470323bc31a.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=dca862fc-08b8-4ebc-a7d9-4470323bc31a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Getting closer to all the XAML stuff around the <a title="WPF on .NET Framework Home" href="http://msdn2.microsoft.com/en-us/netframework/aa663326.aspx">Windows
Presentation Foundation</a> I bumped into some understanding problems about all
the new concepts. What are the meanings of all these shortcuts?
</p>
        <h4>WPF
</h4>
        <p>
Stands for Windows Presentation Foundation (formerly known as Avalon) and is part
of the new <a title="Microsoft .NET Framework 3.0 Downloads" href="http://msdn2.microsoft.com/en-us/netframework/bb264589.aspx">Microsoft
.NET Framework 3.0</a> which is an extension to the existing .NET Framework 2.0. With
WPF Microsoft relieves the older Windows Forms programming model and supports the
software development process to be split into two different parts:
</p>
        <ul>
          <li>
Design phase, where creative artists build the UI using <a title="Homepage of the Microsoft Expression Tools" href="http://www.microsoft.com/expression/">Microsoft
Expression</a> or third party tools like <a title="Zam 3D product homepage" href="http://www.erain.com/Products/ZAM3D/">Zam3D</a> or <a title="Aurora product homepage" href="http://www.mobiform.com/eng/aurora.html">Aurora</a>; 
</li>
          <li>
Development phase, where the applications core functionality (business logic) will
be implemented 
</li>
        </ul>
        <p>
The WPF team designed <a title="XAML on wikipedia" href="http://en.wikipedia.org/wiki/Extensible_Application_Markup_Language">XAML</a> (Extensible
Application Markup Language) an XML-based scripting language to create user interfaces
declaratively. The XAML markup is the interface between the design
and implementation phases. The aforementioned designer products spit out XAML,
that can be programmed through events and the underlying object model.
</p>
        <h4>WPF/E
</h4>
        <p>
Means Windows Presentation Foundation Everywhere. It is a subset of WPF that only
shares the XAML presentation layer. This means you won't have WPF controls (buttons,
textbox, ...) or databinding support in WPF/E. Only the basic elements for graphics,
event handling (using JavaScript) and media are available. The big advantage of
this solution is that a visitor of your website doesn't have to install the whole
.NET Framework 3.0 (54MB) on his client machine. WPF/E provides a cross platform option
to enable XAML based content in different browsers. This is done <a title="WPF/E Downloads" href="http://msdn2.microsoft.com/en-us/asp.net/bb187452.aspx">shipping
out plug-ins for common browsers</a> like Mozilla Firefox, Internet Explorer 6+ and
Apple's Safari. These add-ons are less than 2 MB, thus it is nearly the same size
than Adobe's Flash Player plug-in. But regard WPF/E as being an extension for existing
web technologies like ASP.NET, AJAX, PHP, ...
</p>
        <p>
Today WPF/E is not in a final state, but will be finally released by mid-2007. In
version 2.0 C# and VB.NET should be available, which will extend the current JavaScript
support.
</p>
        <h4>XBAP
</h4>
        <p>
Stands for XAML Browser Applications. You maybe get to the conclusion, that this is
equal to WPF/E. But there is a big difference. With XBAP you can provide a complete
WPF application (without restrictions to the whole WPF functionality) to a client
browser. The browser is the application host in this situation. Therefore the .NET
Framework 3.0 has to be installed on the client side. You also have to ensure, that
operations within your XBAP won't run into security problems on the client (e.g. file
system access). This reflects the difference between a stand-alone WPF application
and an XBAP: WPF applications run with the priveleges of the currently logged in user,
whereas XBAPs are launched inside the browsers sandbox that has just
a very small set of privileges. XBAPs and the security issues are pretty difficult.
Maybe I can come closer to this in a future post.
</p>
        <p>
In upcoming posts I'll step into more details about WPF/E, because I'm now looking
for a new solution for combining <a href="http://blog.pixelplastic.de/">my blog page</a> and
the <a href="http://www.pixelplastic.de/">flash based picture page</a>.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=dca862fc-08b8-4ebc-a7d9-4470323bc31a" />
      </body>
      <title>Difference between WPF, WPF/E and XBAP</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,dca862fc-08b8-4ebc-a7d9-4470323bc31a.aspx</guid>
      <link>http://pixelplastic.de/2007/04/05/DifferenceBetweenWPFWPFEAndXBAP.aspx</link>
      <pubDate>Thu, 05 Apr 2007 14:34:57 GMT</pubDate>
      <description>&lt;p&gt;
Getting closer to all the XAML stuff around the &lt;a title="WPF on .NET Framework Home" href="http://msdn2.microsoft.com/en-us/netframework/aa663326.aspx"&gt;Windows
Presentation Foundation&lt;/a&gt; I&amp;nbsp;bumped into some understanding problems about all
the new concepts. What are the meanings of all these shortcuts?
&lt;/p&gt;
&lt;h4&gt;WPF
&lt;/h4&gt;
&lt;p&gt;
Stands for Windows Presentation Foundation (formerly known as Avalon) and is part
of the new &lt;a title="Microsoft .NET Framework 3.0 Downloads" href="http://msdn2.microsoft.com/en-us/netframework/bb264589.aspx"&gt;Microsoft
.NET Framework 3.0&lt;/a&gt; which is an extension to the existing .NET Framework 2.0. With
WPF Microsoft relieves the older Windows Forms programming model and supports the
software development process to be split into two different parts:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Design phase, where creative artists build the UI using &lt;a title="Homepage of the Microsoft Expression Tools" href="http://www.microsoft.com/expression/"&gt;Microsoft
Expression&lt;/a&gt; or third party tools like &lt;a title="Zam 3D product homepage" href="http://www.erain.com/Products/ZAM3D/"&gt;Zam3D&lt;/a&gt; or &lt;a title="Aurora product homepage" href="http://www.mobiform.com/eng/aurora.html"&gt;Aurora&lt;/a&gt;; 
&lt;li&gt;
Development phase, where the applications core functionality (business logic) will
be implemented 
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
The WPF team designed &lt;a title="XAML on wikipedia" href="http://en.wikipedia.org/wiki/Extensible_Application_Markup_Language"&gt;XAML&lt;/a&gt; (Extensible
Application Markup Language) an XML-based scripting language to create user interfaces
declaratively.&amp;nbsp;The XAML markup is the&amp;nbsp;interface between the&amp;nbsp;design
and implementation phases. The&amp;nbsp;aforementioned designer products&amp;nbsp;spit out&amp;nbsp;XAML,
that can be&amp;nbsp;programmed through events and the underlying object model.
&lt;/p&gt;
&lt;h4&gt;WPF/E
&lt;/h4&gt;
&lt;p&gt;
Means Windows Presentation Foundation Everywhere. It is a subset of WPF that only
shares the XAML presentation layer. This means you won't have WPF controls (buttons,
textbox, ...) or databinding support in WPF/E. Only the basic elements for graphics,
event handling (using JavaScript) and media are available. The big advantage&amp;nbsp;of
this solution is that a visitor of your website doesn't have to install the whole
.NET Framework 3.0 (54MB) on his client machine. WPF/E provides a cross platform option
to enable XAML based content in different browsers. This is done &lt;a title="WPF/E Downloads" href="http://msdn2.microsoft.com/en-us/asp.net/bb187452.aspx"&gt;shipping
out plug-ins for common browsers&lt;/a&gt; like Mozilla Firefox, Internet Explorer 6+ and
Apple's Safari. These add-ons are less than 2 MB, thus it is nearly the same size
than Adobe's Flash Player plug-in. But regard WPF/E as being an extension for existing
web technologies like ASP.NET, AJAX, PHP, ...
&lt;/p&gt;
&lt;p&gt;
Today WPF/E is not in a final state, but will be finally released by mid-2007. In
version 2.0 C# and VB.NET should be available, which will extend the current JavaScript
support.
&lt;/p&gt;
&lt;h4&gt;XBAP
&lt;/h4&gt;
&lt;p&gt;
Stands for XAML Browser Applications. You maybe get to the conclusion, that this is
equal to WPF/E. But there is a big difference. With XBAP you can provide a complete
WPF application (without restrictions to the whole WPF functionality) to a client
browser. The browser is the application host in this situation. Therefore the .NET
Framework 3.0 has to be installed on the client side. You also have to ensure, that
operations within your XBAP won't run into security problems on the client (e.g. file
system access). This reflects the difference between a stand-alone WPF application
and an XBAP: WPF applications run with the priveleges of the currently logged in user,
whereas XBAPs&amp;nbsp;are launched&amp;nbsp;inside&amp;nbsp;the browsers sandbox that has just
a very small set of privileges. XBAPs and the security issues are pretty difficult.
Maybe I can come closer to this in a future post.
&lt;/p&gt;
&lt;p&gt;
In upcoming posts I'll step into more details about WPF/E, because I'm now looking
for a new solution for combining &lt;a href="http://blog.pixelplastic.de/"&gt;my blog page&lt;/a&gt; and
the &lt;a href="http://www.pixelplastic.de/"&gt;flash based picture page&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=dca862fc-08b8-4ebc-a7d9-4470323bc31a" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,dca862fc-08b8-4ebc-a7d9-4470323bc31a.aspx</comments>
      <category>development</category>
      <category>wpf</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=3ec50388-62b6-4605-b5a7-bf84e3d2386e</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,3ec50388-62b6-4605-b5a7-bf84e3d2386e.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,3ec50388-62b6-4605-b5a7-bf84e3d2386e.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=3ec50388-62b6-4605-b5a7-bf84e3d2386e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nach aufregender Vorbereitung und Organisation der Social Events und des ganzen Drumherum
haben wir (<a title="Torsten Weber" href="http://www.torstenweber.net/">Torsten</a>, <a title="Alexander Groß" href="http://www.therightstuff.de/">Alex</a> und
ich) das <a title=".Net Wintercamp 2007" href="http://www.dotnet-leipzig.de/wintercamp/">.Net
Wintercamp 2007</a> hier in Leipzig erfolgreich abgeschlossen. Es war das erste Mal,
dass ich solch ein großes Vorhaben mit organisiert habe. Ich hätte nicht gedacht,
wie viele Probleme auftreten könnten und an was alles gedacht werden muss. Dickes
Danke dafür vor allem an Torsten, der die Zügel mehr als in der Hand hielt.
</p>
        <p style="clear: both;">
          <a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7511%5B2%5D.jpg" atomicselection="true">
            <img style="border-width: 0px; margin: 0px 0px 0px 10px;" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7511_thumb.jpg" align="right" border="0" height="160" width="240" />
          </a> Neben
grundsätzlichen Technologiespezifikationen bzgl. .Net 2.0 wurden auch die neuen Technologien
rund um das .Net Framework 3.0 vorgestellt. Zahlreiche Vorträge befassten sich während
der Woche jeweils mit ASP.NET und Web 2.0, ADO.NET, Windows Forms, Windows Workflow
Foundation, Windows Communication Foundation, Windows Presentation Foundation, Cardspace
u.v.m. Abgerundet wurde das Ganze mit vertiefenden Workshops zu Windows Forms Programmierung,
WPF und WF sowie einem mehr oder wenig improvisierten Couchcoding (leider fehlte hier
die Couch).
</p>
        <p style="clear: both;">
          <a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7558%5B2%5D.jpg" atomicselection="true">
            <img style="border-width: 0px; margin: 0px 10px 10px 0px;" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7558_thumb.jpg" align="left" border="0" height="160" width="240" />
          </a> Für
das leibliche Wohl und Unterhaltung wurde ebenfalls gesorgt. Neben der täglichen Ration
Kaffee, Cola und Keksen gab es am Montag ein Buffet zum Kennenlernen der Teilnehmer.
Am Dienstagabend besuchte uns <a href="http://www.xing.com/profile/TimA_Ackermann/">Tim Ackermann</a> vom
Recruiting Team der <a href="http://www.microsoft.de/">Microsoft Deutschland GmbH</a> und
sprach über Chancen und Möglichkeiten beim Global Player gefördert und angestellt
zu werden. Der anschließende Grillabend konnte genutzt werden, um bei Spanferkel,
Wurst und Bier spezifische Fragen an Tim Ackermann zu stellen. Schade, dass das Wetter
an jenem Tag nicht so recht mitspielte. Spaß hat es trotz Kälte dennoch gemacht.
</p>
        <p style="clear: both;">
          <a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7654%5B4%5D.jpg" atomicselection="true">
            <img style="border-width: 0px; margin: 0px 10px 10px 0px;" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7654_thumb%5B2%5D.jpg" align="left" border="0" height="240" width="160" />
          </a>
          <a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7706%5B2%5D.jpg" atomicselection="true">
            <img style="border-width: 0px; margin: 0px 0px 10px 10px;" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7706_thumb.jpg" align="right" border="0" height="160" width="240" />
          </a> Das
große Highlight der Woche fanden die Teilnehmer am Mittwoch. Nach einem informativen
Rundgang durch die <a title="Gose" href="http://www.gose.de/">Gosebrauerei</a> trafen
sich beinahe alle Teilnehmer im Restaurant Felis auf der Karl-Liebknecht-Straße. Neben
einem wirklich gelungenen Buffet veranstalteten wir einen XBox 360 Contest, wo man
sich in seinen Fähigkeiten am Controller beweisen musste. Natürlich hatten wir uns
den heiteren Abend aufgrund der tagsüber stattfindenden Vorträge redlich verdient.
</p>
        <p style="clear: both;">
          <a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7750%5B2%5D.jpg" atomicselection="true">
            <img style="border-width: 0px; margin: 0px 0px 10px 10px;" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7750_thumb.jpg" align="right" border="0" height="160" width="240" />
          </a> Den
Abschluss der Woche bildete der Tablet-PC-Contest. Jeder Teilnehmer bekam einen Begriff
ins Ohr geflüstert und musste diesen durch kreative Zeichnungen mit dem Digitizerpen
darstellen. Das Publikum durfte dann raten, was gemeint sein könnte. Die besten Maler
und Errater wurden anschließend natürlich reich beschenkt. Doch auch der arme Looser
wurde belohnt - das war aber auch ein verdammt schwieriger Begriff. Auf diesem Wege
auch ein großes Dankeschön an Susi, unsere Hostess für diese Woche. Sie hat sich die
ganzen Begriffe ausgedacht.
</p>
        <p>
Ich hoffe, es hat allen Teilnehmern Spaß gemacht und freue mich auf ein baldiges Wiedersehen.
Vielleicht zum .Net Summercamp 2007? Bleibt nur noch zu sagen: <b>Team, Team, Team</b> (Zitat: <em>The
IT Crowd</em>)
</p>
        <p style="clear: both;">
          <a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7763%5B2%5D.jpg" atomicselection="true">
            <img style="border-width: 0px;" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7763_thumb.jpg" border="0" />
          </a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3ec50388-62b6-4605-b5a7-bf84e3d2386e" />
      </body>
      <title>.Net Wintercamp 2007 - Abschlussbericht</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,3ec50388-62b6-4605-b5a7-bf84e3d2386e.aspx</guid>
      <link>http://pixelplastic.de/2007/03/27/NetWintercamp2007Abschlussbericht.aspx</link>
      <pubDate>Tue, 27 Mar 2007 15:29:58 GMT</pubDate>
      <description>&lt;p&gt;
Nach aufregender Vorbereitung und Organisation der Social Events und des ganzen Drumherum
haben wir (&lt;a title="Torsten Weber" href="http://www.torstenweber.net/"&gt;Torsten&lt;/a&gt;, &lt;a title="Alexander Groß" href="http://www.therightstuff.de/"&gt;Alex&lt;/a&gt; und
ich) das &lt;a title=".Net Wintercamp 2007" href="http://www.dotnet-leipzig.de/wintercamp/"&gt;.Net
Wintercamp 2007&lt;/a&gt; hier in Leipzig erfolgreich abgeschlossen. Es war das erste Mal,
dass ich solch ein großes Vorhaben mit organisiert habe. Ich hätte nicht gedacht,
wie viele Probleme auftreten könnten und an was alles gedacht werden muss. Dickes
Danke dafür vor allem an Torsten, der die Zügel mehr als in der Hand hielt.
&lt;/p&gt;
&lt;p style="clear: both;"&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7511%5B2%5D.jpg" atomicselection="true"&gt;&lt;img style="border-width: 0px; margin: 0px 0px 0px 10px;" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7511_thumb.jpg" align="right" border="0" height="160" width="240"&gt;&lt;/a&gt; Neben
grundsätzlichen Technologiespezifikationen bzgl. .Net 2.0 wurden auch die neuen Technologien
rund um das .Net Framework 3.0 vorgestellt. Zahlreiche Vorträge befassten sich während
der Woche jeweils mit ASP.NET und Web 2.0, ADO.NET, Windows Forms, Windows Workflow
Foundation, Windows Communication Foundation, Windows Presentation Foundation, Cardspace
u.v.m. Abgerundet wurde das Ganze mit vertiefenden Workshops zu Windows Forms Programmierung,
WPF und WF sowie einem mehr oder wenig improvisierten Couchcoding (leider fehlte hier
die Couch).
&lt;/p&gt;
&lt;p style="clear: both;"&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7558%5B2%5D.jpg" atomicselection="true"&gt;&lt;img style="border-width: 0px; margin: 0px 10px 10px 0px;" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7558_thumb.jpg" align="left" border="0" height="160" width="240"&gt;&lt;/a&gt; Für
das leibliche Wohl und Unterhaltung wurde ebenfalls gesorgt. Neben der täglichen Ration
Kaffee, Cola und Keksen gab es am Montag ein Buffet zum Kennenlernen der Teilnehmer.
Am Dienstagabend besuchte uns &lt;a href="http://www.xing.com/profile/TimA_Ackermann/"&gt;Tim&amp;nbsp;Ackermann&lt;/a&gt; vom
Recruiting Team der &lt;a href="http://www.microsoft.de/"&gt;Microsoft Deutschland GmbH&lt;/a&gt; und
sprach über Chancen und Möglichkeiten beim Global Player gefördert und angestellt
zu werden. Der anschließende Grillabend konnte genutzt werden, um bei Spanferkel,
Wurst und Bier spezifische Fragen an Tim Ackermann zu stellen. Schade, dass das Wetter
an jenem Tag nicht so recht mitspielte. Spaß hat es trotz Kälte dennoch gemacht.
&lt;/p&gt;
&lt;p style="clear: both;"&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7654%5B4%5D.jpg" atomicselection="true"&gt;&lt;img style="border-width: 0px; margin: 0px 10px 10px 0px;" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7654_thumb%5B2%5D.jpg" align="left" border="0" height="240" width="160"&gt;&lt;/a&gt; &lt;a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7706%5B2%5D.jpg" atomicselection="true"&gt;&lt;img style="border-width: 0px; margin: 0px 0px 10px 10px;" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7706_thumb.jpg" align="right" border="0" height="160" width="240"&gt;&lt;/a&gt; Das
große Highlight der Woche fanden die Teilnehmer am Mittwoch. Nach einem informativen
Rundgang durch die &lt;a title="Gose" href="http://www.gose.de/"&gt;Gosebrauerei&lt;/a&gt; trafen
sich beinahe alle Teilnehmer im Restaurant Felis auf der Karl-Liebknecht-Straße. Neben
einem wirklich gelungenen Buffet veranstalteten wir einen XBox 360 Contest, wo man
sich in seinen Fähigkeiten am Controller beweisen musste. Natürlich hatten wir uns
den heiteren Abend aufgrund der tagsüber stattfindenden Vorträge redlich verdient.
&lt;/p&gt;
&lt;p style="clear: both;"&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7750%5B2%5D.jpg" atomicselection="true"&gt;&lt;img style="border-width: 0px; margin: 0px 0px 10px 10px;" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7750_thumb.jpg" align="right" border="0" height="160" width="240"&gt;&lt;/a&gt; Den
Abschluss der Woche bildete der Tablet-PC-Contest. Jeder Teilnehmer bekam einen Begriff
ins Ohr geflüstert und musste diesen durch kreative Zeichnungen mit dem Digitizerpen
darstellen. Das Publikum durfte dann raten, was gemeint sein könnte. Die besten Maler
und Errater wurden anschließend natürlich reich beschenkt. Doch auch der arme Looser
wurde belohnt - das war aber auch ein verdammt schwieriger Begriff. Auf diesem Wege
auch ein großes Dankeschön an Susi, unsere Hostess für diese Woche. Sie hat sich die
ganzen Begriffe ausgedacht.
&lt;/p&gt;
&lt;p&gt;
Ich hoffe, es hat allen Teilnehmern Spaß gemacht und freue mich auf ein baldiges Wiedersehen.
Vielleicht zum .Net Summercamp 2007? Bleibt nur noch zu sagen: &lt;b&gt;Team, Team, Team&lt;/b&gt; (Zitat: &lt;em&gt;The
IT Crowd&lt;/em&gt;)
&lt;/p&gt;
&lt;p style="clear: both;"&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7763%5B2%5D.jpg" atomicselection="true"&gt;&lt;img style="border-width: 0px;" src="http://blog.pixelplastic.de/content/binary/WindowsLiveWriter/674e83.NetWintercamp2007Abschlussbericht_F5FC/_MG_7763_thumb.jpg" border="0"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3ec50388-62b6-4605-b5a7-bf84e3d2386e" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,3ec50388-62b6-4605-b5a7-bf84e3d2386e.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=47ae2d68-388f-4ecb-b096-00b2b1d9dd0e</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,47ae2d68-388f-4ecb-b096-00b2b1d9dd0e.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,47ae2d68-388f-4ecb-b096-00b2b1d9dd0e.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=47ae2d68-388f-4ecb-b096-00b2b1d9dd0e</wfw:commentRss>
      <title>And the winner is...</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,47ae2d68-388f-4ecb-b096-00b2b1d9dd0e.aspx</guid>
      <link>http://pixelplastic.de/2007/01/13/AndTheWinnerIs.aspx</link>
      <pubDate>Sat, 13 Jan 2007 13:34:09 GMT</pubDate>
      <description>&lt;p&gt;
After the three days of voting I would like to thank every participant. The clicks
are counted and analyzed. By an average value of stars per click &lt;a href="#" onmouseover="ShowPreview('001_002');"&gt;the
winning glasses&lt;/a&gt; is the following: 
&lt;/p&gt;
&lt;img id="reviewImg" alt="" src="http://www.pixelplastic.de/specials/glasses/vertical.20070110_001_002.jpg"&gt; 
&lt;p&gt;
All other results can be found in the following table. Please move your mouse pointer
over the review button, to refresh the upper image of the glasses.
&lt;/p&gt;
&lt;script type="text/javascript"&gt;
	function ShowPreview(glassesId) {
		img = document.getElementById("reviewImg");
		if (img) {
			img.src = "http://www.pixelplastic.de/specials/glasses/vertical.20070110_" + glassesId + ".jpg";
		}
	}
&lt;/script&gt;
&lt;script type="text/javascript"&gt;
	function ShowPreview(glassesId) {
		img = document.getElementById("reviewImg");
		if (img) {
			img.src = "http://www.pixelplastic.de/specials/glasses/vertical.20070110_" + glassesId + ".jpg";
		}
	}
&lt;/script&gt;
&lt;table cellspacing="0" cellpadding="2" border="0" summary="Results of my glasses voting"&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;
No.&lt;/th&gt;
&lt;th&gt;
Clicks&lt;/th&gt;
&lt;th&gt;
Stars&lt;/th&gt;
&lt;th&gt;
Avg. stars (&amp;Oslash;)&lt;/th&gt;
&lt;th&gt;
Review&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style="text-align: center;"&gt;
#1&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
26&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
84&lt;/td&gt;
&lt;td&gt;
&lt;div style="background-color: #0A0; color: white; width: 129px"&gt;3.23
&lt;/div&gt;
&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
&lt;img src="http://www.pixelplastic.de/specials/glasses/magnifier.png" onmouseover="ShowPreview('001_002');" alt="preview"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="text-align: center;"&gt;
#2&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
24&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
58&lt;/td&gt;
&lt;td&gt;
&lt;div style="background-color: #840; color: white; width: 97px"&gt;2.42
&lt;/div&gt;
&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
&lt;img src="http://www.pixelplastic.de/specials/glasses/magnifier.png" onmouseover="ShowPreview('003_004');" alt="preview"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="text-align: center;"&gt;
#3&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
23&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
45&lt;/td&gt;
&lt;td&gt;
&lt;div style="background-color: #840; color: white; width: 78px"&gt;1.96
&lt;/div&gt;
&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
&lt;img src="http://www.pixelplastic.de/specials/glasses/magnifier.png" onmouseover="ShowPreview('005_006');" alt="preview"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="text-align: center;"&gt;
#4&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
20&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
50&lt;/td&gt;
&lt;td&gt;
&lt;div style="background-color: #840; color: white; width: 100px"&gt;2.50
&lt;/div&gt;
&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
&lt;img src="http://www.pixelplastic.de/specials/glasses/magnifier.png" onmouseover="ShowPreview('007_008');" alt="preview"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="text-align: center;"&gt;
#5&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
23&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
40&lt;/td&gt;
&lt;td&gt;
&lt;div style="background-color: #840; color: white; width: 70px"&gt;1.74
&lt;/div&gt;
&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
&lt;img src="http://www.pixelplastic.de/specials/glasses/magnifier.png" onmouseover="ShowPreview('009_010');" alt="preview"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="text-align: center;"&gt;
#6&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
17&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
37&lt;/td&gt;
&lt;td&gt;
&lt;div style="background-color: #840; color: white; width: 87px"&gt;2.18
&lt;/div&gt;
&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
&lt;img src="http://www.pixelplastic.de/specials/glasses/magnifier.png" onmouseover="ShowPreview('011_012');" alt="preview"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="text-align: center;"&gt;
#7&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
22&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
70&lt;/td&gt;
&lt;td&gt;
&lt;div style="background-color: #F90; color: white; width: 127px"&gt;3.18
&lt;/div&gt;
&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
&lt;img src="http://www.pixelplastic.de/specials/glasses/magnifier.png" onmouseover="ShowPreview('013_014');" alt="preview"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="text-align: center;"&gt;
#8&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
22&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
67&lt;/td&gt;
&lt;td&gt;
&lt;div style="background-color: #F00; color: white; width: 122px"&gt;3.05
&lt;/div&gt;
&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
&lt;img src="http://www.pixelplastic.de/specials/glasses/magnifier.png" onmouseover="ShowPreview('015_016');" alt="preview"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="text-align: center;"&gt;
#9&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
21&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
45&lt;/td&gt;
&lt;td&gt;
&lt;div style="background-color: #840; color: white; width: 86px"&gt;2.14
&lt;/div&gt;
&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
&lt;img src="http://www.pixelplastic.de/specials/glasses/magnifier.png" onmouseover="ShowPreview('017_018');" alt="preview"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="text-align: center;"&gt;
#10&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
27&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
63&lt;/td&gt;
&lt;td&gt;
&lt;div style="background-color: #840; color: white; width: 93px"&gt;2.33
&lt;/div&gt;
&lt;/td&gt;
&lt;td style="text-align: center;"&gt;
&lt;img src="http://www.pixelplastic.de/specials/glasses/magnifier.png" onmouseover="ShowPreview('019_020');" alt="preview"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;
I'm looking forward to choose the final model during the next week. I'll let you know
about this decision.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=47ae2d68-388f-4ecb-b096-00b2b1d9dd0e" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,47ae2d68-388f-4ecb-b096-00b2b1d9dd0e.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=112df3f9-93b7-4962-a9ae-afdeeff92bd5</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,112df3f9-93b7-4962-a9ae-afdeeff92bd5.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,112df3f9-93b7-4962-a9ae-afdeeff92bd5.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=112df3f9-93b7-4962-a9ae-afdeeff92bd5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
For those German friends out there: do you remember the German education program <a href="http://www.br-online.de/wissen-bildung/telekolleg/">Telekolleg</a>.
At some lessons during my schooldays our teachers showed us those videos about specific
points of a current issues. It was pretty funny, but as I saw the following clip from
the BBC crew I couldn't stop laughing.
</p>
        <object width="425" height="350">
          <param name="movie" value="http://www.youtube.com/v/9tQVnQ-kuWk" />
          <param name="wmode" value="transparent" />
          <embed src="http://www.youtube.com/v/9tQVnQ-kuWk" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350">
          </embed>
        </object>
        <p>
Infected? <a href="http://youtube.com/results?search_query=look+around+you&amp;search=Search">Search
at youtube for "look around you"</a> to watch more of these funny movies.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=112df3f9-93b7-4962-a9ae-afdeeff92bd5" />
      </body>
      <title>BBC at it's best</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,112df3f9-93b7-4962-a9ae-afdeeff92bd5.aspx</guid>
      <link>http://pixelplastic.de/2007/01/11/BBCAtItsBest.aspx</link>
      <pubDate>Thu, 11 Jan 2007 09:48:15 GMT</pubDate>
      <description>&lt;p&gt;
For those German friends out there: do you remember the German education program &lt;a href="http://www.br-online.de/wissen-bildung/telekolleg/"&gt;Telekolleg&lt;/a&gt;.
At some lessons during my schooldays our teachers showed us those videos about specific
points of a current issues. It was pretty funny, but as I saw the following clip from
the BBC crew I couldn't stop laughing.
&lt;/p&gt;
&lt;object width="425" height="350"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/9tQVnQ-kuWk"&gt;&gt;
&lt;param name="wmode" value="transparent"&gt;&gt;&lt;embed src="http://www.youtube.com/v/9tQVnQ-kuWk" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"&gt;&lt;/embed&gt;
&lt;/object&gt;
&lt;p&gt;
Infected? &lt;a href="http://youtube.com/results?search_query=look+around+you&amp;amp;search=Search"&gt;Search
at youtube for "look around you"&lt;/a&gt; to watch more of these funny movies.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=112df3f9-93b7-4962-a9ae-afdeeff92bd5" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,112df3f9-93b7-4962-a9ae-afdeeff92bd5.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=498d38a5-ad59-4ecd-8d16-cb4bcf20b3b2</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,498d38a5-ad59-4ecd-8d16-cb4bcf20b3b2.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,498d38a5-ad59-4ecd-8d16-cb4bcf20b3b2.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=498d38a5-ad59-4ecd-8d16-cb4bcf20b3b2</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
After a visit to the eye specialist last year I got my confirmation, that I need glasses.
For that reason I asked <a href="http://www.it99.org/axl/">alex</a> to help me selecting
the right glasses for me.
</p>
        <p>
Today we went to the city to look around in two stores (<a href="http://www.apollo.de/">Apollo</a> and <a href="http://www.fielmann.de/">Fielmann</a>).
After two hours of searching and trying we built a list of 10 favorites. And now it's
your turn, to help me deciding what glasses can be my next fashion accessoire.
</p>
        <p style="font-weight: bold; font-size: 1.5em">
          <a href="http://www.pixelplastic.de/glasses/">&gt;&gt;&gt;Watch and vote</a>
          <br />
          <br />
          <img src="http://blog.pixelplastic.de/content/binary/glasses.jpg" border="0" />
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=498d38a5-ad59-4ecd-8d16-cb4bcf20b3b2" />
      </body>
      <title>selecting my glasses</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,498d38a5-ad59-4ecd-8d16-cb4bcf20b3b2.aspx</guid>
      <link>http://pixelplastic.de/2007/01/10/selectingMyGlasses.aspx</link>
      <pubDate>Wed, 10 Jan 2007 22:18:32 GMT</pubDate>
      <description>&lt;p&gt;
After a visit to the eye specialist last year I got my confirmation, that I need glasses.
For that reason I asked &lt;a href="http://www.it99.org/axl/"&gt;alex&lt;/a&gt; to help me selecting
the right glasses for me.
&lt;/p&gt;
&lt;p&gt;
Today we went to the city to look around in two stores (&lt;a href="http://www.apollo.de/"&gt;Apollo&lt;/a&gt; and &lt;a href="http://www.fielmann.de/"&gt;Fielmann&lt;/a&gt;).
After two hours of searching and trying we built a list of 10 favorites. And now it's
your turn, to help me deciding what glasses can be my next fashion accessoire.
&lt;/p&gt;
&lt;p style="font-weight: bold; font-size: 1.5em"&gt;
&lt;a href="http://www.pixelplastic.de/glasses/"&gt;&amp;gt;&amp;gt;&amp;gt;Watch and vote&lt;/a&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/glasses.jpg" border="0"&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=498d38a5-ad59-4ecd-8d16-cb4bcf20b3b2" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,498d38a5-ad59-4ecd-8d16-cb4bcf20b3b2.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=2cf610d0-efa7-49da-b6e5-082fc69d4085</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,2cf610d0-efa7-49da-b6e5-082fc69d4085.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,2cf610d0-efa7-49da-b6e5-082fc69d4085.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=2cf610d0-efa7-49da-b6e5-082fc69d4085</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Impressed by <a href="http://www.deviantart.com/deviation/41593965/">EseLoKos Vista
like Winamp skin</a> I decided to pimp it a little bit. Now, after three days of coloring
an pixel setting I finished my work. But look at this current version as a beta. I'm
sure there are many areas (i.e. the equalizer window), where some modifications will
be necessary.
</p>
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/winampskin.png" />
        </p>
        <p>
After <a href="http://blog.pixelplastic.de/content/binary/pixelplastic.wsz.zip">downloading
the .wsz file</a> just move it to your Winamp skins folder.
</p>
        <p>
Hint for other skin designers: I spent a lot of time finding out, how to set the background
color of an enqueued item of the playlist. The solution is set up in a single pixel
found in the genex.bmp. For more information, you can read <a href="http://forums.winamp.com/showthread.php?threadid=228328">this
thread</a> in the Winamp forums.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=2cf610d0-efa7-49da-b6e5-082fc69d4085" />
      </body>
      <title>Happy new year with a new Winamp skin (and an english blog entry)</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,2cf610d0-efa7-49da-b6e5-082fc69d4085.aspx</guid>
      <link>http://pixelplastic.de/2007/01/02/HappyNewYearWithANewWinampSkinAndAnEnglishBlogEntry.aspx</link>
      <pubDate>Tue, 02 Jan 2007 22:21:25 GMT</pubDate>
      <description>&lt;p&gt;
Impressed by &lt;a href="http://www.deviantart.com/deviation/41593965/"&gt;EseLoKos Vista
like Winamp skin&lt;/a&gt; I decided to pimp it a little bit. Now, after three days of coloring
an pixel setting I finished my work. But look at this current version as a beta. I'm
sure there are many areas (i.e. the equalizer window), where some modifications will
be necessary.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/winampskin.png"&gt;
&lt;/p&gt;
&lt;p&gt;
After &lt;a href="http://blog.pixelplastic.de/content/binary/pixelplastic.wsz.zip"&gt;downloading
the .wsz file&lt;/a&gt; just move it to your Winamp skins folder.
&lt;/p&gt;
&lt;p&gt;
Hint for other skin designers: I spent a lot of time finding out, how to set the background
color of an enqueued item of the playlist. The solution is set up in a single pixel
found in the genex.bmp. For more information, you can read &lt;a href="http://forums.winamp.com/showthread.php?threadid=228328"&gt;this
thread&lt;/a&gt; in the Winamp forums.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=2cf610d0-efa7-49da-b6e5-082fc69d4085" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,2cf610d0-efa7-49da-b6e5-082fc69d4085.aspx</comments>
      <category>art</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=27e42d9d-60cc-4554-a998-fec818cde7bf</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,27e42d9d-60cc-4554-a998-fec818cde7bf.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,27e42d9d-60cc-4554-a998-fec818cde7bf.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=27e42d9d-60cc-4554-a998-fec818cde7bf</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/urinroehrchen.jpg" />
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=27e42d9d-60cc-4554-a998-fec818cde7bf" />
      </body>
      <title>Dinge die man niemals kennenlernen will</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,27e42d9d-60cc-4554-a998-fec818cde7bf.aspx</guid>
      <link>http://pixelplastic.de/2006/12/15/DingeDieManNiemalsKennenlernenWill.aspx</link>
      <pubDate>Fri, 15 Dec 2006 12:04:04 GMT</pubDate>
      <description>&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/urinroehrchen.jpg" /&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=27e42d9d-60cc-4554-a998-fec818cde7bf" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,27e42d9d-60cc-4554-a998-fec818cde7bf.aspx</comments>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=7e800355-a34f-46f3-bb7e-bc437fb1f307</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,7e800355-a34f-46f3-bb7e-bc437fb1f307.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,7e800355-a34f-46f3-bb7e-bc437fb1f307.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=7e800355-a34f-46f3-bb7e-bc437fb1f307</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Ich mein es gibt ja viele Dinge, mit denen man sich seinen USB-Port vollstopfen kann.
Aber ein tippgeschwindigkeitabhängiges Hamsterrad? Freaks.
</p>
        <img src="http://blog.pixelplastic.de/content/binary/48302-usbhamster.jpg" border="0" />
        <p>
Hier kann man es kaufen: <a href="http://www.gadmag.de/usb-hamsterrad/">http://www.gadmag.de/usb-hamsterrad/</a></p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7e800355-a34f-46f3-bb7e-bc437fb1f307" />
      </body>
      <title>Dinge die die Welt nicht wirklich braucht</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,7e800355-a34f-46f3-bb7e-bc437fb1f307.aspx</guid>
      <link>http://pixelplastic.de/2006/10/11/DingeDieDieWeltNichtWirklichBraucht.aspx</link>
      <pubDate>Wed, 11 Oct 2006 14:57:17 GMT</pubDate>
      <description>&lt;p&gt;
Ich mein es gibt ja viele Dinge, mit denen man sich seinen USB-Port vollstopfen kann.
Aber ein tippgeschwindigkeitabhängiges Hamsterrad? Freaks.
&lt;/p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/48302-usbhamster.jpg" border="0" /&gt; 
&lt;p&gt;
Hier kann man es kaufen: &lt;a href="http://www.gadmag.de/usb-hamsterrad/"&gt;http://www.gadmag.de/usb-hamsterrad/&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7e800355-a34f-46f3-bb7e-bc437fb1f307" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,7e800355-a34f-46f3-bb7e-bc437fb1f307.aspx</comments>
      <category>geek stuff</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=e20a9eff-9d6a-4cd3-9aa3-777fa02231d3</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,e20a9eff-9d6a-4cd3-9aa3-777fa02231d3.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,e20a9eff-9d6a-4cd3-9aa3-777fa02231d3.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=e20a9eff-9d6a-4cd3-9aa3-777fa02231d3</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://blog.pixelplastic.de/content/binary/_MG_5598-02.jpg">
          <img src="http://blog.pixelplastic.de/content/binary/_MG_5598.jpg" style="float: right; margin-left: 1em; margin-bottom: 1em;" border="0" />
        </a>
        <p>
Man hat es schon fast vergessen und kann sich kaum noch daran erinnern, welche Bluse
die Omi zum Kaffee und Kuchen anhatte. Die Rede ist vom Weihnachtsfest des vergangenen
Jahres 2005. Zur damaligen Fröhlichkeit hatte meine liebe Mutti (in Zusammenarbeit
mit Kathrin) eine tolle Idee und schenkte mir und meinem Paps einen Gutschein für
eine dreistündige Quadtour. Um nicht so einsam durch die Wälder zu fahren wurde auch
Holger von seiner Frau Kathrin mit dieser Überraschung beschenkt.
</p>
        <p>
Nach etlichen Versuchen im Laufe des Jahres diesen Gutschein bei gutem Wetter in die
Realität umzusetzen wurden wir drei Männer mehrfach enttäuscht, so dass die Tour verschoben
werden musste. Schlechtes Wetter, Rückenprobleme beim ältesten Fahrer unseres Teams
oder zuletzt eine mysteriöse Anruferin, die einen unserer Termine abgesagt haben soll.
</p>
        <p>
Aufgrund elegant beschilderter Bahngleise am Leipziger Hauptbahnhof und guter Informationsführung
auf den Webseiten der Bahn hatte ich am letzten Freitag meinen heimbringenden <a href="http://www.inter-connex.de/">Inter-Connex</a> verpasst.
Dafür hatte ich aber Gelegenheit das nächtliche Leipzig in anderthalb Stunden Strassenbahnfahrt
zu bestaunen. Super. Dank Gesas Auto hatte es dann aber doch noch geklappt unser Vorhaben
am vergangenen Wochenende umzusetzen.
</p>
        <a href="http://blog.pixelplastic.de/content/binary/_MG_5603-02.jpg">
          <img src="http://blog.pixelplastic.de/content/binary/_MG_5603.jpg" style="float: left; margin-right: 1em; margin-bottom: 1em;" border="0" />
        </a>
        <p>
Dank Navigationssystem haben wir also am Samstag den kleinen Ort <a href="http://blog.pixelplastic.de/content/binary/ge_gruena.jpg">Grüna
bei Zeulenroda</a> (<a href="http://blog.pixelplastic.de/content/binary/Gruena.Quadfahrt.kmz">Google
Earth Koordinaten</a>) ohne Umstände gefunden und wurden unmittelbar nach unserer
Ankunft an den 450 ccm Maschinen eingewiesen. Nach einer kleinen Aufwärmrunde um die
Werkstatthalle ging es auch schon los. Quer über'n Acker und entlang staubiger Feldstrassen,
durch Wälder und highspeed über Landstrassen. Schnell hatten wir Blut geleckt und
fanden dementsprechenden Spass an den Fahrzeugen. Die Tour gestaltete sich durch zwei
separate Runden, die durch ein kleines Picknick zum Kräfte- und Quadtanken unterbrochen
wurde. Die erste Strecke war in gewissem Maße zum Aufwärmen und Kennenlernen gedacht.
Der mitfahrende Guide Steffen, der uns durch die wunderbare Landschaft führte entschied
sicher anhand unserer Fahrweise, in welchem Terrain wir uns während der zweiten Runde
bewegen sollten.
</p>
        <p>
Es wurde anspruchsvoller. Steile, abschüssige Waldhänge, holprige Wege und Flussdurchquerungen.
Leider war es für mich an einer Stelle im Wald dann doch zu abschüssig. Mein Quad
wollte nicht mehr so recht auf dem Weg bleiben und hielt gezielt auf einen Baum zu.
So blieb mir nur noch übrig den rechter Hand liegenden Abhang als Ziel meiner Fahrtrichtung
zu wählen. Das Quad begann zu kippen, was mich dazu bewegte das Gefährt per Sprung
über den Lenker in die Tiefe zu verlassen. Hart auf dem 1,50m tiefer liegenden Waldboden
aufgeschlagen hatte ich Glück, dass mein 100kg Vehikel an einem unterarmstarken Bäumchen
hängenblieb und nicht meiner Flugbahn folgend auf mich flog. Neben einem zerschmetterten
Spiegel war dem Quad kaum anzusehen, dass es sich soeben überschlagen hatte. Nach
kurzem Anpacken von uns Vieren stand es wieder fahrbereit auf dem Waldweg. Ich selber
stand aber noch etwas neben mir. Leicht geschockt und mit Rippen-, Hüft- und Schulterprellung
ging es aus meiner Sicht etwas vorsichtiger weiter durch den Wald.
</p>
        <a href="http://blog.pixelplastic.de/content/binary/_MG_5611-02.jpg">
          <img src="http://blog.pixelplastic.de/content/binary/_MG_5611.jpg" style="float: right; margin-left: 1em; margin-bottom: 1em;" border="0" />
        </a>
        <p>
Leider hatte Holger gegen Ende dieser zweiten Runde noch einen Platten am rechten
Hinterrad, so dass wir eine etwas schnellere Strecke zum Basislager mit Zwischenstop
an einer Tankstelle antreten mussten. Trotz dieser kleinen Panne und dem Unfall wird
uns drei Männern dieser Tag unvergessen in Erinnerung bleiben. Wir haben schon beschlossen
das ganze nächstes Jahr zu wiederholen. Dann hoffentlich Unfallfrei.
</p>
        <p>
Anbei kommen hier noch einige Videos, die ich während der Fahrt aufgenommen hatte.
Und nein: ich habe nicht gefilmt, als ich meinen Crash hatte. ;-)
</p>
        <object height="350" width="425">
          <param name="movie" value="http://www.youtube.com/v/LGV_20-v_7c" />
          <embed src="http://www.youtube.com/v/LGV_20-v_7c" type="application/x-shockwave-flash" height="350" width="425">
          </embed>
        </object>
        <object height="350" width="425">
          <param name="movie" value="http://www.youtube.com/v/SjUAnapJTmk" />
          <embed src="http://www.youtube.com/v/SjUAnapJTmk" type="application/x-shockwave-flash" height="350" width="425">
          </embed>
        </object>
        <p>
Hier noch der Link zum <a href="http://www.a-o-r-c.de/">Veranstalter a-o-r-c</a>.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e20a9eff-9d6a-4cd3-9aa3-777fa02231d3" />
      </body>
      <title>Quadtour mit sich überschlagenden Folgen</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,e20a9eff-9d6a-4cd3-9aa3-777fa02231d3.aspx</guid>
      <link>http://pixelplastic.de/2006/09/26/QuadtourMitSich%c3%9cberschlagendenFolgen.aspx</link>
      <pubDate>Tue, 26 Sep 2006 10:07:52 GMT</pubDate>
      <description>&lt;a href="http://blog.pixelplastic.de/content/binary/_MG_5598-02.jpg"&gt;&lt;img src="http://blog.pixelplastic.de/content/binary/_MG_5598.jpg" style="float: right; margin-left: 1em; margin-bottom: 1em;" border="0"&gt;&lt;/a&gt; 
&lt;p&gt;
Man hat es schon fast vergessen und kann sich kaum noch daran erinnern, welche Bluse
die Omi zum Kaffee und Kuchen anhatte. Die Rede ist vom Weihnachtsfest des vergangenen
Jahres 2005. Zur damaligen Fröhlichkeit hatte meine liebe Mutti (in Zusammenarbeit
mit Kathrin) eine tolle Idee und schenkte mir und meinem Paps einen Gutschein für
eine dreistündige Quadtour. Um nicht so einsam durch die Wälder zu fahren wurde auch
Holger von seiner Frau Kathrin mit dieser Überraschung beschenkt.
&lt;/p&gt;
&lt;p&gt;
Nach etlichen Versuchen im Laufe des Jahres diesen Gutschein bei gutem Wetter in die
Realität umzusetzen wurden wir drei Männer mehrfach enttäuscht, so dass die Tour verschoben
werden musste. Schlechtes Wetter, Rückenprobleme beim ältesten Fahrer unseres Teams
oder zuletzt eine mysteriöse Anruferin, die einen unserer Termine abgesagt haben soll.
&lt;/p&gt;
&lt;p&gt;
Aufgrund elegant beschilderter Bahngleise am Leipziger Hauptbahnhof und guter Informationsführung
auf den Webseiten der Bahn hatte ich am letzten Freitag meinen heimbringenden &lt;a href="http://www.inter-connex.de/"&gt;Inter-Connex&lt;/a&gt; verpasst.
Dafür hatte ich aber Gelegenheit das nächtliche Leipzig in anderthalb Stunden Strassenbahnfahrt
zu bestaunen. Super. Dank Gesas Auto hatte es dann aber doch noch geklappt unser Vorhaben
am vergangenen Wochenende umzusetzen.
&lt;/p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/_MG_5603-02.jpg"&gt;&lt;img src="http://blog.pixelplastic.de/content/binary/_MG_5603.jpg" style="float: left; margin-right: 1em; margin-bottom: 1em;" border="0"&gt;&lt;/a&gt; 
&lt;p&gt;
Dank Navigationssystem haben wir also am Samstag den kleinen Ort &lt;a href="http://blog.pixelplastic.de/content/binary/ge_gruena.jpg"&gt;Grüna
bei Zeulenroda&lt;/a&gt; (&lt;a href="http://blog.pixelplastic.de/content/binary/Gruena.Quadfahrt.kmz"&gt;Google
Earth Koordinaten&lt;/a&gt;) ohne Umstände gefunden und wurden unmittelbar nach unserer
Ankunft an den 450 ccm Maschinen eingewiesen. Nach einer kleinen Aufwärmrunde um die
Werkstatthalle ging es auch schon los. Quer über'n Acker und entlang staubiger Feldstrassen,
durch Wälder und highspeed über Landstrassen. Schnell hatten wir Blut geleckt und
fanden dementsprechenden Spass an den Fahrzeugen. Die Tour gestaltete sich durch zwei
separate Runden, die durch ein kleines Picknick zum Kräfte- und Quadtanken unterbrochen
wurde. Die erste Strecke war in gewissem Maße zum Aufwärmen und Kennenlernen gedacht.
Der mitfahrende Guide Steffen, der uns durch die wunderbare Landschaft führte entschied
sicher anhand unserer Fahrweise, in welchem Terrain wir uns während der zweiten Runde
bewegen sollten.
&lt;/p&gt;
&lt;p&gt;
Es wurde anspruchsvoller. Steile, abschüssige Waldhänge, holprige Wege und Flussdurchquerungen.
Leider war es für mich an einer Stelle im Wald dann doch zu abschüssig. Mein Quad
wollte nicht mehr so recht auf dem Weg bleiben und hielt gezielt auf einen Baum zu.
So blieb mir nur noch übrig den rechter Hand liegenden Abhang als Ziel meiner Fahrtrichtung
zu wählen. Das Quad begann zu kippen, was mich dazu bewegte das Gefährt per Sprung
über den Lenker in die Tiefe zu verlassen. Hart auf dem 1,50m tiefer liegenden Waldboden
aufgeschlagen hatte ich Glück, dass mein 100kg Vehikel an einem unterarmstarken Bäumchen
hängenblieb und nicht meiner Flugbahn folgend auf mich flog. Neben einem zerschmetterten
Spiegel war dem Quad kaum anzusehen, dass es sich soeben überschlagen hatte. Nach
kurzem Anpacken von uns Vieren stand es wieder fahrbereit auf dem Waldweg. Ich selber
stand aber noch etwas neben mir. Leicht geschockt und mit Rippen-, Hüft- und Schulterprellung
ging es aus meiner Sicht etwas vorsichtiger weiter durch den Wald.
&lt;/p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/_MG_5611-02.jpg"&gt;&lt;img src="http://blog.pixelplastic.de/content/binary/_MG_5611.jpg" style="float: right; margin-left: 1em; margin-bottom: 1em;" border="0"&gt;&lt;/a&gt; 
&lt;p&gt;
Leider hatte Holger gegen Ende dieser zweiten Runde noch einen Platten am rechten
Hinterrad, so dass wir eine etwas schnellere Strecke zum Basislager mit Zwischenstop
an einer Tankstelle antreten mussten. Trotz dieser kleinen Panne und dem Unfall wird
uns drei Männern dieser Tag unvergessen in Erinnerung bleiben. Wir haben schon beschlossen
das ganze nächstes Jahr zu wiederholen. Dann hoffentlich Unfallfrei.
&lt;/p&gt;
&lt;p&gt;
Anbei kommen hier noch einige Videos, die ich während der Fahrt aufgenommen hatte.
Und nein: ich habe nicht gefilmt, als ich meinen Crash hatte. ;-)
&lt;/p&gt;
&lt;object height="350" width="425"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/LGV_20-v_7c"&gt;&lt;embed src="http://www.youtube.com/v/LGV_20-v_7c" type="application/x-shockwave-flash" height="350" width="425"&gt;
&lt;/object&gt;
&lt;object height="350" width="425"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/SjUAnapJTmk"&gt;&lt;embed src="http://www.youtube.com/v/SjUAnapJTmk" type="application/x-shockwave-flash" height="350" width="425"&gt;
&lt;/object&gt;
&lt;p&gt;
Hier noch der Link zum &lt;a href="http://www.a-o-r-c.de/"&gt;Veranstalter a-o-r-c&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e20a9eff-9d6a-4cd3-9aa3-777fa02231d3" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,e20a9eff-9d6a-4cd3-9aa3-777fa02231d3.aspx</comments>
      <category>fun</category>
      <category>videos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=e3b26678-2e04-439b-8dd8-f137bbad8c11</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,e3b26678-2e04-439b-8dd8-f137bbad8c11.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,e3b26678-2e04-439b-8dd8-f137bbad8c11.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=e3b26678-2e04-439b-8dd8-f137bbad8c11</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Auf der Suche nach einer Alternative zu meinem aktuellen Smartphone <a href="http://www.nokia.de/de/mobiltelefone/modelluebersicht/6630/startseite/113838.html">Nokia
6630</a> kommen immer mehr Gedanken an ein PDA mit GSM/UMTS-Funktionalität. Allerdings
gibt es zur Zeit keine Geräte auf dem Markt, die mir das beste aus beiden Welten (Mobiltelefon
und PDA) bieten könnten.
</p>
        <p>
Nokia war bisher für mich das Beste, was es an Mobilfunktechnik zu kaufen gab. Sei
es Optik, Leistung oder Ergonomie. Allerdings wird mir das <a href="http://de.wikipedia.org/wiki/Symbian_OS">Betriebssystem
Symbian</a> immer unbeliebter. Es wird nicht schlechter, aber die Weiterentwicklung
ist gegenüber der Konkurenz nicht stark vorangeschritten. Gutes Beispiel: Das neu
erworbene <a href="http://www.nokia.de/de/mobiltelefone/modelluebersicht/n73/startseite/207290.html">Nokia
N73</a> meines Papas kann mit dem Symbian OS 60 3rd Edition keine Programme laufen
lassen, die auf meinem Symbian OS 60 2nd Edition ohne Probleme rennen. Mit Windows
Mobile wäre das wahrscheinlich nicht passiert.
</p>
        <p>
Neben dem mobilen Betriebssystem sind meine Meinungen zur Nokia PC Suite (BTW: <a href="http://www.nokia.de/de/service/software/pc_suite/114940.html">neue
Version 6.81 gibt's hier</a>) ebenfalls gespalten. Teilweise stellt sich mir bei dieser
Software die Frage, ob die Programmierer an manchen Tagen Blackouts hatten: Wieso
kann es bei der Synchronisation zwischen Mobiltelefon und Outlook keine manuelle Konfliktbehebung
geben? Nokia PC Sync bietet nur automatische Konfliktbehebung (entweder Outlook oder
Nokia hat Recht). Dieses Feature vermisse ich schon seit meinem <a href="http://www.nokia.de/de/mobiltelefone/modelluebersicht/6210/startseite/4574.html">Nokia
6210</a>. Auch hier denke ich, dass eine Integration eines Windows Mobile Gerätes
per <a href="http://www.microsoft.com/windowsmobile/activesync/">Active Sync</a> in
Windows XP besser geeignet ist.
</p>
        <p>
Am Ende bleibt nur meine Wunschliste:
</p>
        <ul>
          <li>
Betriebssystem: Windows Mobile</li>
          <li>
GSM/UMTS</li>
          <li>
WLAN</li>
          <li>
Bluetooth 2.0</li>
          <li>
min. 640x480 Auflösung</li>
          <li>
GPS</li>
          <li>
optional: Kamera</li>
        </ul>
        <p>
Eh es aber diese eierlegende Wollmilchsau gibt werde ich mich wohl weiter mit "halbfertigen"
Geräten rumschlagen müssen. Warten wir also ab, bis es endlich eine neue digitale
Canon Spiegelreflex im 20D Format gibt, die das alles integriert hat. Vielleicht erwischt
man mich dann auch mal so beim telefonieren:
</p>
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/20060826%20-%2006.jpg" border="0" />
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e3b26678-2e04-439b-8dd8-f137bbad8c11" />
      </body>
      <title>Digitaler SpiegelreflexPDA mit UMTS, WLAN, GPS und hoffentlich guter Auflösung</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,e3b26678-2e04-439b-8dd8-f137bbad8c11.aspx</guid>
      <link>http://pixelplastic.de/2006/08/26/DigitalerSpiegelreflexPDAMitUMTSWLANGPSUndHoffentlichGuterAufl%c3%b6sung.aspx</link>
      <pubDate>Sat, 26 Aug 2006 08:02:22 GMT</pubDate>
      <description>&lt;p&gt;
Auf der Suche nach einer Alternative zu meinem aktuellen Smartphone &lt;a href="http://www.nokia.de/de/mobiltelefone/modelluebersicht/6630/startseite/113838.html"&gt;Nokia
6630&lt;/a&gt; kommen immer mehr Gedanken an ein PDA mit GSM/UMTS-Funktionalität. Allerdings
gibt es zur Zeit keine Geräte auf dem Markt, die mir das beste aus beiden Welten (Mobiltelefon
und PDA) bieten könnten.
&lt;/p&gt;
&lt;p&gt;
Nokia war bisher für mich das Beste, was es an Mobilfunktechnik zu kaufen gab. Sei
es Optik, Leistung oder Ergonomie. Allerdings wird mir das &lt;a href="http://de.wikipedia.org/wiki/Symbian_OS"&gt;Betriebssystem
Symbian&lt;/a&gt; immer unbeliebter. Es wird nicht schlechter, aber die Weiterentwicklung
ist gegenüber der Konkurenz nicht stark vorangeschritten. Gutes Beispiel: Das neu
erworbene &lt;a href="http://www.nokia.de/de/mobiltelefone/modelluebersicht/n73/startseite/207290.html"&gt;Nokia
N73&lt;/a&gt; meines Papas kann mit dem Symbian OS 60 3rd Edition keine Programme laufen
lassen, die auf meinem Symbian OS 60 2nd Edition ohne Probleme rennen. Mit Windows
Mobile wäre das wahrscheinlich nicht passiert.
&lt;/p&gt;
&lt;p&gt;
Neben dem mobilen Betriebssystem sind meine Meinungen zur Nokia PC Suite (BTW: &lt;a href="http://www.nokia.de/de/service/software/pc_suite/114940.html"&gt;neue
Version 6.81 gibt's hier&lt;/a&gt;) ebenfalls gespalten. Teilweise stellt sich mir bei dieser
Software die Frage, ob die Programmierer an manchen Tagen Blackouts hatten: Wieso
kann es bei der Synchronisation zwischen Mobiltelefon und Outlook keine manuelle Konfliktbehebung
geben? Nokia PC Sync bietet nur automatische Konfliktbehebung (entweder Outlook oder
Nokia hat Recht). Dieses Feature vermisse ich schon seit meinem &lt;a href="http://www.nokia.de/de/mobiltelefone/modelluebersicht/6210/startseite/4574.html"&gt;Nokia
6210&lt;/a&gt;. Auch hier denke ich, dass eine Integration eines Windows Mobile Gerätes
per &lt;a href="http://www.microsoft.com/windowsmobile/activesync/"&gt;Active Sync&lt;/a&gt; in
Windows XP besser geeignet ist.
&lt;/p&gt;
&lt;p&gt;
Am Ende bleibt nur meine Wunschliste:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
Betriebssystem: Windows Mobile&lt;/li&gt;
&lt;li&gt;
GSM/UMTS&lt;/li&gt;
&lt;li&gt;
WLAN&lt;/li&gt;
&lt;li&gt;
Bluetooth 2.0&lt;/li&gt;
&lt;li&gt;
min. 640x480 Auflösung&lt;/li&gt;
&lt;li&gt;
GPS&lt;/li&gt;
&lt;li&gt;
optional: Kamera&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
Eh es aber diese eierlegende Wollmilchsau gibt werde ich mich wohl weiter mit "halbfertigen"
Geräten rumschlagen müssen. Warten wir also ab, bis es endlich eine neue digitale
Canon Spiegelreflex im 20D Format gibt, die das alles integriert hat. Vielleicht erwischt
man mich dann auch mal so beim telefonieren:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/20060826%20-%2006.jpg" border="0"&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e3b26678-2e04-439b-8dd8-f137bbad8c11" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,e3b26678-2e04-439b-8dd8-f137bbad8c11.aspx</comments>
      <category>fun</category>
      <category>geek stuff</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=74439572-6059-40c0-affd-990899fadf54</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,74439572-6059-40c0-affd-990899fadf54.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,74439572-6059-40c0-affd-990899fadf54.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=74439572-6059-40c0-affd-990899fadf54</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Lang ist's her. Beim aufräumen hab' ich das Ergebnisblatt unseres alten Bowlingabends
gefunden. Sicher nicht das beste Resultat, aber ich bin damals Erster geworden. WhuuWhuuWhuu.
</p>
        <p>
Eh es wieder einstaubt und im Nirvana meines Zimmers verschwindet dachte ich es einfach
einzuscannen und hier zu publizieren. Digital ist eben besser (wie Tocotronic schon
besang).
</p>
        <img src="http://blog.pixelplastic.de/content/binary/20040723%20-%20Bowlingergebnis.jpg" border="0" />
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=74439572-6059-40c0-affd-990899fadf54" />
      </body>
      <title>Verschollene Dokumente</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,74439572-6059-40c0-affd-990899fadf54.aspx</guid>
      <link>http://pixelplastic.de/2006/08/24/VerscholleneDokumente.aspx</link>
      <pubDate>Thu, 24 Aug 2006 11:17:07 GMT</pubDate>
      <description>&lt;p&gt;
Lang ist's her. Beim aufräumen hab' ich das Ergebnisblatt unseres alten Bowlingabends
gefunden. Sicher nicht das beste Resultat, aber ich bin damals Erster geworden. WhuuWhuuWhuu.
&lt;/p&gt;
&lt;p&gt;
Eh es wieder einstaubt und im Nirvana meines Zimmers verschwindet dachte ich es einfach
einzuscannen und hier zu publizieren. Digital ist eben besser (wie Tocotronic schon
besang).
&lt;/p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/20040723%20-%20Bowlingergebnis.jpg" border="0"&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=74439572-6059-40c0-affd-990899fadf54" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,74439572-6059-40c0-affd-990899fadf54.aspx</comments>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=79496a54-8209-48d0-9767-705480542e48</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,79496a54-8209-48d0-9767-705480542e48.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,79496a54-8209-48d0-9767-705480542e48.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=79496a54-8209-48d0-9767-705480542e48</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p style="margin-bottom: 1em;">
Alex hatte die neue Vista Cursor schon vor einigen Tagen <a href="http://www.it99.org/axl/PermaLink,guid,901238d6-db0c-409e-a401-b80d317f51a3.aspx">in
seinem Blog erwähnt</a>. Nun hatte ich diese auch bei mir installiert und erfreue
mich an dem neuen Stil. Jedoch ist mir gestern aufgefallen, dass die animierten Busy-
und Working-Cursor in vereinzelten Frames kleine schwarze Pixelfehler enthielten.
Im folgenden Bild ist auf 6:30 Uhr zu sehen, was ich meine:
</p>
        <img src="http://blog.pixelplastic.de/content/binary/broken.aero.busy.jpg" border="0" height="128" width="128" />
        <p style="margin-bottom: 1em;">
Um das zu fixen begann die Suche nach einem geeigneten Werkzeug. Dabei bin ich auf
den <a href="http://www.rw-designer.com/">RealWorld Cursor Editor</a> gestoßen. Auf
einfachstem Weg lassen sich animierte Mauszeiger mit Transparenzeffekten erstellen
(per Drag-and-Drop von mehreren png-Dateien). Das gefixte paket kann man hier runterladen:
</p>
        <p style="margin-bottom: 1em;">
          <a href="http://blog.pixelplastic.de/content/binary/aero.fixed.zip">aero.fixed.zip
(42,93 KB)</a>
        </p>
        <p style="margin-bottom: 1em;">
Natürlich konnte ich mich nicht bremsen, die animierte Zeiger neu zu entwerfen. Im
Grunde handelt es sich dabei (abgesehen von der Farbgebung) um den gleichen Stil der
originalen Aero Cursor. Orange fühlt sich eben wärmer an:
</p>
        <p style="margin-bottom: 1em;">
          <img src="http://blog.pixelplastic.de/content/binary/aero.orange.working.gif" border="0" />
          <img src="http://blog.pixelplastic.de/content/binary/aero.orange.busy.gif" border="0" />
        </p>
        <p style="margin-bottom: 1em;">
Neben den "simplen" rotierende Donuts gefiel mir die Idee, die Lichtreflexion mit
Glitzer zu unterstreichen. Gesagt getan:
</p>
        <p style="margin-bottom: 1em;">
          <img src="http://blog.pixelplastic.de/content/binary/aero.orange.sparkle.working.gif" border="0" />
          <img src="http://blog.pixelplastic.de/content/binary/aero.orange.sparkle.busy.gif" border="0" />
        </p>
        <p style="margin-bottom: 1em;">
Und hier jeweils beides zum Download:
</p>
        <p>
          <a href="http://blog.pixelplastic.de/content/binary/aero.orange.zip">aero.orange.zip
(103,52 KB)</a>
        </p>
        <p style="margin-bottom: 1em;">
          <a href="http://blog.pixelplastic.de/content/binary/aero.orange.sparkle.zip">aero.orange.sparkle.zip
(140,53 KB)</a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=79496a54-8209-48d0-9767-705480542e48" />
      </body>
      <title>Alternative der Windows Vista Aero Mauscursor</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,79496a54-8209-48d0-9767-705480542e48.aspx</guid>
      <link>http://pixelplastic.de/2006/08/11/AlternativeDerWindowsVistaAeroMauscursor.aspx</link>
      <pubDate>Fri, 11 Aug 2006 17:20:51 GMT</pubDate>
      <description>&lt;p style="margin-bottom: 1em;"&gt;
Alex hatte die neue Vista Cursor schon vor einigen Tagen &lt;a href="http://www.it99.org/axl/PermaLink,guid,901238d6-db0c-409e-a401-b80d317f51a3.aspx"&gt;in
seinem Blog erwähnt&lt;/a&gt;. Nun hatte ich diese auch bei mir installiert und erfreue
mich an dem neuen Stil. Jedoch ist mir gestern aufgefallen, dass die animierten Busy-
und Working-Cursor in vereinzelten Frames kleine schwarze Pixelfehler enthielten.
Im folgenden Bild ist auf 6:30 Uhr zu sehen, was ich meine:
&lt;/p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/broken.aero.busy.jpg" border="0" height="128" width="128"&gt; 
&lt;p style="margin-bottom: 1em;"&gt;
Um das zu fixen begann die Suche nach einem geeigneten Werkzeug. Dabei bin ich auf
den &lt;a href="http://www.rw-designer.com/"&gt;RealWorld Cursor Editor&lt;/a&gt; gestoßen. Auf
einfachstem Weg lassen sich animierte Mauszeiger mit Transparenzeffekten erstellen
(per Drag-and-Drop von mehreren png-Dateien). Das gefixte paket kann man hier runterladen:
&lt;/p&gt;
&lt;p style="margin-bottom: 1em;"&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/aero.fixed.zip"&gt;aero.fixed.zip
(42,93 KB)&lt;/a&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 1em;"&gt;
Natürlich konnte ich mich nicht bremsen, die animierte Zeiger neu zu entwerfen. Im
Grunde handelt es sich dabei (abgesehen von der Farbgebung) um den gleichen Stil der
originalen Aero Cursor. Orange fühlt sich eben wärmer an:
&lt;/p&gt;
&lt;p style="margin-bottom: 1em;"&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/aero.orange.working.gif" border="0"&gt;&lt;img src="http://blog.pixelplastic.de/content/binary/aero.orange.busy.gif" border="0"&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 1em;"&gt;
Neben den "simplen" rotierende Donuts gefiel mir die Idee, die Lichtreflexion mit
Glitzer zu unterstreichen. Gesagt getan:
&lt;/p&gt;
&lt;p style="margin-bottom: 1em;"&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/aero.orange.sparkle.working.gif" border="0"&gt;&lt;img src="http://blog.pixelplastic.de/content/binary/aero.orange.sparkle.busy.gif" border="0"&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 1em;"&gt;
Und hier jeweils beides zum Download:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/aero.orange.zip"&gt;aero.orange.zip
(103,52 KB)&lt;/a&gt;
&lt;/p&gt;
&lt;p style="margin-bottom: 1em;"&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/aero.orange.sparkle.zip"&gt;aero.orange.sparkle.zip
(140,53 KB)&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=79496a54-8209-48d0-9767-705480542e48" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,79496a54-8209-48d0-9767-705480542e48.aspx</comments>
      <category>art</category>
      <category>geek stuff</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=145b20db-1a62-417b-990e-cf96c94a6fc4</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,145b20db-1a62-417b-990e-cf96c94a6fc4.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,145b20db-1a62-417b-990e-cf96c94a6fc4.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=145b20db-1a62-417b-990e-cf96c94a6fc4</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">Wir werden Profilachse.<p></p><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=145b20db-1a62-417b-990e-cf96c94a6fc4" /></body>
      <title>Neue Sportart im Wortspiel</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,145b20db-1a62-417b-990e-cf96c94a6fc4.aspx</guid>
      <link>http://pixelplastic.de/2006/08/02/NeueSportartImWortspiel.aspx</link>
      <pubDate>Wed, 02 Aug 2006 09:32:18 GMT</pubDate>
      <description>Wir werden Profilachse.&lt;p&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=145b20db-1a62-417b-990e-cf96c94a6fc4" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,145b20db-1a62-417b-990e-cf96c94a6fc4.aspx</comments>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=027c0760-331c-4764-9585-2a0b073ca0b1</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,027c0760-331c-4764-9585-2a0b073ca0b1.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,027c0760-331c-4764-9585-2a0b073ca0b1.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=027c0760-331c-4764-9585-2a0b073ca0b1</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">hat mir mein dsl-hippeliger heimatnachbar
holger zukommen lassen:<br /><br />
"<b>Lastwagen hatte fünf Paletten mit DSL-Hardware geladen</b><br />
      <br />
DSL-Einsteiger erhalten in der Regel zwei Geräte für ihren neuen Internetanschluss:
einen so genannten Splitter von der Deutschen Telekom und ein DSL-Modem oder -Router
von ihrem gewählten Provider. Nicht schlecht staunte dagegen am vergangenen Mittwoch
Katharina Nickel aus Drabenderhöhe, als nach ihrer DSL-Beauftragung bei der Telekom
vor ihrem Haus ein LKW vorfuhr, um insgesamt 496 Router abzuladen. Zurückzuführen
ist die Lieferungspanne - das berichtet heute der Kölner Stadt-Anzeiger - auf einen
Eingabefehler einer T-Com-Angestellten.<br />
     Den Splitter und den bestellten Router hatten die Bonner
der DSL-Neukundin bereits einen Tag zuvor geliefert, zudem gleich noch fünf weitere
Router. Dabei hatte der T-Com-Kundendienst die Internetnutzerin noch darauf hingewiesen,
dass es zurzeit Engpässe bei der Lieferung von DSL-Routern gebe. Am Mittwochmorgen
folgten dann noch weitere 50 Geräte. Katharina Nickel schickte sämtliche Hardware
- bis auf den Splitter und einen Router - an die Telekom zurück und fragte bei der
Hotline nach. Die Ursache für die Massenauslieferung konnte man ihr jedoch nicht nennen.<br />
     Den Grund klärte eine T-Com-Pressesprecherin gegenüber der
Zeitung auf: "Die Panne ist auf einen Bearbeitungsfehler zurück zu führen. Eine Mitarbeiterin
hat versehentlich in die Spalte 'Anzahl' den Namen des Geräts (Speedport 501) eingetragen",
sagte Gesine Seidel. Warum die Telekom allerdings der Kundin nicht 501, sondern 552
Router zukommen lassen wollte, erklärt das nicht. Inzwischen ist der DSL-Anschluss
der Einsteigerin freigeschaltet, den Router hat ihr Sohn für sie installiert."<br /><br />
Quelle: Teltarif.de [<a href="http://www.teltarif.de/arch/2006/kw29/s22459.html">http://www.teltarif.de/arch/2006/kw29/s22459.html</a>]<br /><p></p><br />
da will die telekom wohl, dass man sich zu tote routet. :-)<br /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=027c0760-331c-4764-9585-2a0b073ca0b1" /></body>
      <title>neulich auf der teltarif-webseite</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,027c0760-331c-4764-9585-2a0b073ca0b1.aspx</guid>
      <link>http://pixelplastic.de/2006/07/21/neulichAufDerTeltarifwebseite.aspx</link>
      <pubDate>Fri, 21 Jul 2006 20:23:59 GMT</pubDate>
      <description>hat mir mein dsl-hippeliger heimatnachbar holger zukommen lassen:&lt;br&gt;
&lt;br&gt;
"&lt;b&gt;Lastwagen hatte fünf Paletten mit DSL-Hardware geladen&lt;/b&gt; 
&lt;br&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br&gt;
DSL-Einsteiger erhalten in der Regel zwei Geräte für ihren neuen Internetanschluss:
einen so genannten Splitter von der Deutschen Telekom und ein DSL-Modem oder -Router
von ihrem gewählten Provider. Nicht schlecht staunte dagegen am vergangenen Mittwoch
Katharina Nickel aus Drabenderhöhe, als nach ihrer DSL-Beauftragung bei der Telekom
vor ihrem Haus ein LKW vorfuhr, um insgesamt 496 Router abzuladen. Zurückzuführen
ist die Lieferungspanne - das berichtet heute der Kölner Stadt-Anzeiger - auf einen
Eingabefehler einer T-Com-Angestellten.&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Den Splitter und den bestellten Router hatten die Bonner
der DSL-Neukundin bereits einen Tag zuvor geliefert, zudem gleich noch fünf weitere
Router. Dabei hatte der T-Com-Kundendienst die Internetnutzerin noch darauf hingewiesen,
dass es zurzeit Engpässe bei der Lieferung von DSL-Routern gebe. Am Mittwochmorgen
folgten dann noch weitere 50 Geräte. Katharina Nickel schickte sämtliche Hardware
- bis auf den Splitter und einen Router - an die Telekom zurück und fragte bei der
Hotline nach. Die Ursache für die Massenauslieferung konnte man ihr jedoch nicht nennen.&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Den Grund klärte eine T-Com-Pressesprecherin gegenüber der
Zeitung auf: "Die Panne ist auf einen Bearbeitungsfehler zurück zu führen. Eine Mitarbeiterin
hat versehentlich in die Spalte 'Anzahl' den Namen des Geräts (Speedport 501) eingetragen",
sagte Gesine Seidel. Warum die Telekom allerdings der Kundin nicht 501, sondern 552
Router zukommen lassen wollte, erklärt das nicht. Inzwischen ist der DSL-Anschluss
der Einsteigerin freigeschaltet, den Router hat ihr Sohn für sie installiert."&lt;br&gt;
&lt;br&gt;
Quelle: Teltarif.de [&lt;a href="http://www.teltarif.de/arch/2006/kw29/s22459.html"&gt;http://www.teltarif.de/arch/2006/kw29/s22459.html&lt;/a&gt;]&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;br&gt;
da will die telekom wohl, dass man sich zu tote routet. :-)&lt;br&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=027c0760-331c-4764-9585-2a0b073ca0b1" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,027c0760-331c-4764-9585-2a0b073ca0b1.aspx</comments>
      <category>fun</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=05299391-4565-43df-b646-e64d5228eec7</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,05299391-4565-43df-b646-e64d5228eec7.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,05299391-4565-43df-b646-e64d5228eec7.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=05299391-4565-43df-b646-e64d5228eec7</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.eizo.de/wscreendisplays.html?&amp;user_products%5Buid%5D=121&amp;cHash=87274d7846">
          <img src="content/binary/S2410W.jpg" border="0" />
          <br />
Eizo S2410W black </a>
        <p>
seit nunmehr drei tagen hat er sich auf meinem schreibtisch eingelebt. aus dem schicken
schwarzen rahmen mit einer diagonale von 24" (gemessen sind das 61.24 cm) fliegen
die leuchtenden pixel auf einen zu. bisher macht er eine richtig gute figur. sei es
bei bildbearbeitung, softwareentwicklung oder einfach nur officeanwendung (endlich
erkenn ich den sinn hinter der rechtsausrichtung des lesebereichs in outlook):
</p>
        <p>
          <a href="http://blog.pixelplastic.de/content/binary/outlook%201920x1200.jpg">
            <img src="content/binary/outlook%20400x244.jpg" border="0" />
            <br />
outlook 1920x1200.jpg (283,97 KB)</a>
        </p>
        <p>
einzig die schattenbildung und unschärfe bei kontrastreichen situationen (schwarze
linie auf weißem hintergrund) stört noch. das liegt allerdings an meiner alten nvidia
geforce2 mx400, die mit ihrer geringen leistung und dem analogen vga-ausgang nicht
hinterher kommt. die neue ati 9600 pro von gigabyte mit 256mb ram liegt aber schon
auf dem tisch und will eingebaut werden. leider hatte auch dieses neue stück technik
einen weiteren kostenkreis gezogen. nach dem probeeinbau anfang letzter woche begrüßte
mich mein pc mit einem langsam weißer werdenden bildschirm. nach recherche im internet
scheint es an meinem 300W enermax netzteil zu liegen. also musste auch in dieser richtung
etwas neues ran. hier ergab die suche folgendes resultat: 
</p>
        <p>
          <a href="http://www.silverstonetek.com/products-50ef.htm">
            <img src="http://blog.pixelplastic.de/content/binary/ST50EF.jpg" border="0" />
            <br />
Silverstone ST50EF </a>
        </p>
        <p>
mal sehen, ob mein rechner danach noch leiser wird. die grafikkarte wird passiv gekühlt
und angeblich soll das netzteil um die 22dB geräuschentwicklung verursachen. bleibt
nur die frage, ob am ende nicht die pumpe meiner wasserkühlung die lauteste komponente
im gehäuse wird :).
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=05299391-4565-43df-b646-e64d5228eec7" />
      </body>
      <title>mit dem zweiten sieht man besser</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,05299391-4565-43df-b646-e64d5228eec7.aspx</guid>
      <link>http://pixelplastic.de/2006/06/24/mitDemZweitenSiehtManBesser.aspx</link>
      <pubDate>Sat, 24 Jun 2006 12:12:57 GMT</pubDate>
      <description>&lt;a href="http://www.eizo.de/wscreendisplays.html?&amp;amp;user_products%5Buid%5D=121&amp;amp;cHash=87274d7846"&gt;&lt;img src="content/binary/S2410W.jpg" border="0"&gt;
&lt;br&gt;
Eizo S2410W black &lt;/a&gt; 
&lt;p&gt;
seit nunmehr drei tagen hat er sich auf meinem schreibtisch eingelebt. aus dem schicken
schwarzen rahmen mit einer diagonale von 24" (gemessen sind das 61.24 cm) fliegen
die leuchtenden pixel auf einen zu. bisher macht er eine richtig gute figur. sei es
bei bildbearbeitung, softwareentwicklung oder einfach nur officeanwendung (endlich
erkenn ich den sinn hinter der rechtsausrichtung des lesebereichs in outlook):
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/outlook%201920x1200.jpg"&gt;&lt;img src="content/binary/outlook%20400x244.jpg" border="0"&gt;
&lt;br&gt;
outlook 1920x1200.jpg (283,97 KB)&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
einzig die schattenbildung und unschärfe bei kontrastreichen situationen (schwarze
linie auf weißem hintergrund) stört noch. das liegt allerdings an meiner alten nvidia
geforce2 mx400, die mit ihrer geringen leistung und dem analogen vga-ausgang nicht
hinterher kommt. die neue ati 9600 pro von gigabyte mit 256mb ram liegt aber schon
auf dem tisch und will eingebaut werden. leider hatte auch dieses neue stück technik
einen weiteren kostenkreis gezogen. nach dem probeeinbau anfang letzter woche begrüßte
mich mein pc mit einem langsam weißer werdenden bildschirm. nach recherche im internet
scheint es an meinem 300W enermax netzteil zu liegen. also musste auch in dieser richtung
etwas neues ran. hier ergab die suche folgendes resultat: 
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.silverstonetek.com/products-50ef.htm"&gt;&lt;img src="http://blog.pixelplastic.de/content/binary/ST50EF.jpg" border="0"&gt;
&lt;br&gt;
Silverstone ST50EF &lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
mal sehen, ob mein rechner danach noch leiser wird. die grafikkarte wird passiv gekühlt
und angeblich soll das netzteil um die 22dB geräuschentwicklung verursachen. bleibt
nur die frage, ob am ende nicht die pumpe meiner wasserkühlung die lauteste komponente
im gehäuse wird :).
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=05299391-4565-43df-b646-e64d5228eec7" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,05299391-4565-43df-b646-e64d5228eec7.aspx</comments>
      <category>geek stuff</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=52881c3e-bbc4-44b3-93d5-375e0c24ca44</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,52881c3e-bbc4-44b3-93d5-375e0c24ca44.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,52881c3e-bbc4-44b3-93d5-375e0c24ca44.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=52881c3e-bbc4-44b3-93d5-375e0c24ca44</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">neben den bildern zu unserem (alex, bergo
und ich) gemeinsamen ausflug zur ehemaligen <a href="http://www.cargolifter.de/">cargolifter</a>-halle
gibt's hier noch ein panorama bild, welches in ansätzen vermitteln soll, wie gigantisch
die ausmaße dieses gebäudes sind:<br /><br /><a href="http://blog.pixelplastic.de/content/binary/panorama%200800x1795.jpg"><img src="http://blog.pixelplastic.de/content/binary/panorama%200200x0449.jpg" border="0" /><br />
panorama 800x1795 (679,69 KB)</a><br /><a href="http://blog.pixelplastic.de/content/binary/panorama%201500x3365.jpg">panorama
1500x3365 (1,91 MB)</a><br /><br />
und hier das ganze noch aus der luft (via <a href="http://earth.google.com/">Google
Earth</a>)<br /><br /><a href="http://blog.pixelplastic.de/content/binary/Tropical%20Island.kmz"><img src="http://blog.pixelplastic.de/content/binary/Google%20Earth%20-%20Tropical%20Islands.jpg" border="0" /><br />
Tropical Island.kmz (,91 KB)</a><br /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=52881c3e-bbc4-44b3-93d5-375e0c24ca44" /></body>
      <title>Noch mal Tropical Island</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,52881c3e-bbc4-44b3-93d5-375e0c24ca44.aspx</guid>
      <link>http://pixelplastic.de/2006/06/14/NochMalTropicalIsland.aspx</link>
      <pubDate>Wed, 14 Jun 2006 10:26:29 GMT</pubDate>
      <description>neben den bildern zu unserem (alex, bergo und ich) gemeinsamen ausflug zur ehemaligen &lt;a href="http://www.cargolifter.de/"&gt;cargolifter&lt;/a&gt;-halle
gibt's hier noch ein panorama bild, welches in ansätzen vermitteln soll, wie gigantisch
die ausmaße dieses gebäudes sind:&lt;br&gt;
&lt;br&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/panorama%200800x1795.jpg"&gt;&lt;img src="http://blog.pixelplastic.de/content/binary/panorama%200200x0449.jpg" border="0"&gt;
&lt;br&gt;
panorama 800x1795 (679,69 KB)&lt;/a&gt;
&lt;br&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/panorama%201500x3365.jpg"&gt;panorama
1500x3365 (1,91 MB)&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
und hier das ganze noch aus der luft (via &lt;a href="http://earth.google.com/"&gt;Google
Earth&lt;/a&gt;)&lt;br&gt;
&lt;br&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/Tropical%20Island.kmz"&gt;&lt;img src="http://blog.pixelplastic.de/content/binary/Google%20Earth%20-%20Tropical%20Islands.jpg" border="0"&gt;
&lt;br&gt;
Tropical Island.kmz (,91 KB)&lt;/a&gt;
&lt;br /&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=52881c3e-bbc4-44b3-93d5-375e0c24ca44" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,52881c3e-bbc4-44b3-93d5-375e0c24ca44.aspx</comments>
      <category>art</category>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=c02b94f2-11c2-4a85-a631-34c267930578</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,c02b94f2-11c2-4a85-a631-34c267930578.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,c02b94f2-11c2-4a85-a631-34c267930578.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=c02b94f2-11c2-4a85-a631-34c267930578</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">und hier noch meine mit dem mobiltelefon
aufgenommenen videos:<br /><p><object height="280" width="340"><param name="movie" value="http://www.youtube.com/v/4ytRczKb9GI" /><embed src="http://www.youtube.com/v/4ytRczKb9GI" type="application/x-shockwave-flash" height="280" width="340"></embed></object><a href="http://www.youtube.com/watch?v=4ytRczKb9GI">OGD 2006 - Martin bläßt in's
Horn II</a></p><p><object height="280" width="340"><param name="movie" value="http://www.youtube.com/v/UVmVwxXuUlU" /><embed src="http://www.youtube.com/v/UVmVwxXuUlU" type="application/x-shockwave-flash" height="280" width="340"></embed></object><a href="http://www.youtube.com/watch?v=UVmVwxXuUlU">OGD 2006 - Martin bläßt in's
Horn II</a></p><p><object height="280" width="340"><param name="movie" value="http://www.youtube.com/v/ywXVHJMu8sM" /><embed src="http://www.youtube.com/v/ywXVHJMu8sM" type="application/x-shockwave-flash" height="280" width="340"></embed></object><a href="http://www.youtube.com/watch?v=ywXVHJMu8sM">OGD 2006 - Wasserrakete I</a></p><p><object height="280" width="340"><param name="movie" value="http://www.youtube.com/v/sWBW7h1KmRQ" /><embed src="http://www.youtube.com/v/sWBW7h1KmRQ" type="application/x-shockwave-flash" height="280" width="340"></embed></object><a href="http://www.youtube.com/watch?v=sWBW7h1KmRQ">OGD 2006 - Wasserrakete II</a></p><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c02b94f2-11c2-4a85-a631-34c267930578" /></body>
      <title>Videos zu OGD 2006</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,c02b94f2-11c2-4a85-a631-34c267930578.aspx</guid>
      <link>http://pixelplastic.de/2006/06/08/VideosZuOGD2006.aspx</link>
      <pubDate>Thu, 08 Jun 2006 10:38:25 GMT</pubDate>
      <description>und hier noch meine mit dem mobiltelefon aufgenommenen videos:&lt;br&gt;
&lt;p&gt;
&lt;object height="280" width="340"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/4ytRczKb9GI"&gt;
&lt;embed src="http://www.youtube.com/v/4ytRczKb9GI" type="application/x-shockwave-flash" height="280" width="340"&gt; 
&lt;/object&gt;
&lt;a href="http://www.youtube.com/watch?v=4ytRczKb9GI"&gt;OGD 2006 - Martin bläßt in's
Horn II&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;object height="280" width="340"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/UVmVwxXuUlU"&gt;
&lt;embed src="http://www.youtube.com/v/UVmVwxXuUlU" type="application/x-shockwave-flash" height="280" width="340"&gt; 
&lt;/object&gt;
&lt;a href="http://www.youtube.com/watch?v=UVmVwxXuUlU"&gt;OGD 2006 - Martin bläßt in's
Horn II&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;object height="280" width="340"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/ywXVHJMu8sM"&gt;
&lt;embed src="http://www.youtube.com/v/ywXVHJMu8sM" type="application/x-shockwave-flash" height="280" width="340"&gt; 
&lt;/object&gt;
&lt;a href="http://www.youtube.com/watch?v=ywXVHJMu8sM"&gt;OGD 2006 - Wasserrakete I&lt;/a&gt; 
&lt;/p&gt;
&lt;p&gt;
&lt;object height="280" width="340"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/sWBW7h1KmRQ"&gt;
&lt;embed src="http://www.youtube.com/v/sWBW7h1KmRQ" type="application/x-shockwave-flash" height="280" width="340"&gt; 
&lt;/object&gt;
&lt;a href="http://www.youtube.com/watch?v=sWBW7h1KmRQ"&gt;OGD 2006 - Wasserrakete II&lt;/a&gt; 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c02b94f2-11c2-4a85-a631-34c267930578" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,c02b94f2-11c2-4a85-a631-34c267930578.aspx</comments>
      <category>videos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=6cf4baf5-d936-4e92-8b86-04f5e6430927</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,6cf4baf5-d936-4e92-8b86-04f5e6430927.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,6cf4baf5-d936-4e92-8b86-04f5e6430927.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=6cf4baf5-d936-4e92-8b86-04f5e6430927</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">was ein spass am pfingstwochenende im geliebten
naturcamp obergeißendorf. weil es so schön war müssen hier gleich mal eine ganze latte
an bildern im blog erscheinen. den rest findet ihr wie gewohnt unter:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=e36ac4e9-9803-470a-8734-bfe7adf51767&amp;initialPhoto=d880cd93-cf20-4ec5-b83f-91e242d1ab48" target="_blank"><b>20060601
- OGD</b></a>.<br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1855.jpg" /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1862.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1871.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1876.jpg" /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1890.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1893.jpg" /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1898.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1918.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1921.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1936.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1953.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1960.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1977.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_2012.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_2021.jpg" /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_2030.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_2037.jpg" /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_2040.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_2053.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6cf4baf5-d936-4e92-8b86-04f5e6430927" /></body>
      <title>20060601 - OGD</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,6cf4baf5-d936-4e92-8b86-04f5e6430927.aspx</guid>
      <link>http://pixelplastic.de/2006/06/07/20060601OGD.aspx</link>
      <pubDate>Wed, 07 Jun 2006 09:34:07 GMT</pubDate>
      <description>was ein spass am pfingstwochenende im geliebten naturcamp obergeißendorf. weil es so schön war müssen hier gleich mal eine ganze latte an bildern im blog erscheinen. den rest findet ihr wie gewohnt unter:&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=e36ac4e9-9803-470a-8734-bfe7adf51767&amp;amp;initialPhoto=d880cd93-cf20-4ec5-b83f-91e242d1ab48" target="_blank"&gt;&lt;b&gt;20060601
- OGD&lt;/b&gt;&lt;/a&gt;.&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1855.jpg"&gt; &lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1862.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1871.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1876.jpg"&gt; &lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1890.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1893.jpg"&gt; &lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1898.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1918.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1921.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1936.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1953.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1960.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_1977.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_2012.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_2021.jpg"&gt; &lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_2030.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_2037.jpg"&gt; &lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_2040.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060601%20-%20OGD/medium/_MG_2053.jpg"&gt; &lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6cf4baf5-d936-4e92-8b86-04f5e6430927" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,6cf4baf5-d936-4e92-8b86-04f5e6430927.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=cc24992f-9591-4664-803b-83bcfad0bc63</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,cc24992f-9591-4664-803b-83bcfad0bc63.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,cc24992f-9591-4664-803b-83bcfad0bc63.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=cc24992f-9591-4664-803b-83bcfad0bc63</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">so ein event läßt man sich nicht entgehen:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=bfa9ee48-6f0b-40ce-922a-52dccaa79f1c&amp;initialPhoto=049490fa-4b4d-4e81-9c15-fe346cf55c49" target="_blank"><b>20060530
- Tropical Islands mit Microsoft</b></a>.<br /><img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1786.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1796.jpg" /><img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1797.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1805.jpg" /><img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1817.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1837.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1834.jpg" /><img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1841.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1849.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=cc24992f-9591-4664-803b-83bcfad0bc63" /></body>
      <title>20060530 - Tropical Islands mit Microsoft</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,cc24992f-9591-4664-803b-83bcfad0bc63.aspx</guid>
      <link>http://pixelplastic.de/2006/05/30/20060530TropicalIslandsMitMicrosoft.aspx</link>
      <pubDate>Tue, 30 May 2006 09:33:51 GMT</pubDate>
      <description>so ein event läßt man sich nicht entgehen:&lt;br /&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=bfa9ee48-6f0b-40ce-922a-52dccaa79f1c&amp;amp;initialPhoto=049490fa-4b4d-4e81-9c15-fe346cf55c49" target=_blank&gt;&lt;b&gt;20060530
- Tropical Islands mit Microsoft&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1786.jpg" /&gt;
&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1796.jpg" /&gt; &lt;img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1797.jpg" /&gt;
&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1805.jpg" /&gt; &lt;img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1817.jpg" /&gt;
&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1837.jpg" /&gt;
&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1834.jpg" /&gt; &lt;img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1841.jpg" /&gt;
&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20060530 - Tropical Islands mit Microsoft/medium/_MG_1849.jpg" /&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=cc24992f-9591-4664-803b-83bcfad0bc63" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,cc24992f-9591-4664-803b-83bcfad0bc63.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=59c19c0b-409d-44a7-8541-df41c1d919c0</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,59c19c0b-409d-44a7-8541-df41c1d919c0.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,59c19c0b-409d-44a7-8541-df41c1d919c0.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=59c19c0b-409d-44a7-8541-df41c1d919c0</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=d2c04866-2c16-4cb6-b612-d4c7bcc3178c&amp;initialPhoto=14a8b913-9047-476a-ab4d-38d5dd717f6f" target="_blank"><b>20060514
- Seifenkistenrennen am Fockeberg</b></a>.<br /><br /><img dragover="true" src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1348.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1352.jpg" /><img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1378.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1392.jpg" /><img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1403.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1450.jpg" /><img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1465.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1476.jpg" /><img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1485.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=59c19c0b-409d-44a7-8541-df41c1d919c0" /></body>
      <title>20060514 - Seifenkistenrennen am Fockeberg</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,59c19c0b-409d-44a7-8541-df41c1d919c0.aspx</guid>
      <link>http://pixelplastic.de/2006/05/14/20060514SeifenkistenrennenAmFockeberg.aspx</link>
      <pubDate>Sun, 14 May 2006 09:33:20 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=d2c04866-2c16-4cb6-b612-d4c7bcc3178c&amp;amp;initialPhoto=14a8b913-9047-476a-ab4d-38d5dd717f6f" target="_blank"&gt;&lt;b&gt;20060514
- Seifenkistenrennen am Fockeberg&lt;/b&gt;&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
&lt;img dragover="true" src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1348.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1352.jpg"&gt; &lt;img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1378.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1392.jpg"&gt; &lt;img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1403.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1450.jpg"&gt; &lt;img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1465.jpg"&gt; 
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1476.jpg"&gt; &lt;img src="http://www.pixelplastic.de/images/20060514%20-%20Seifenkistenrennen%20am%20Fockeberg/medium/_MG_1485.jpg"&gt; &lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=59c19c0b-409d-44a7-8541-df41c1d919c0" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,59c19c0b-409d-44a7-8541-df41c1d919c0.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=f9fd8936-6a95-493b-ae3e-1041328cd45e</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,f9fd8936-6a95-493b-ae3e-1041328cd45e.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,f9fd8936-6a95-493b-ae3e-1041328cd45e.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=f9fd8936-6a95-493b-ae3e-1041328cd45e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">Erster Mai in Leipzig:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=34cb6f91-f3a4-40b4-845e-4282072bd33f&amp;initialPhoto=e26bc4cb-95a1-4f1c-b182-b9927655577f" target="_blank"><b>20060501
- Erster Mai</b></a>.<br /><img src="http://www.pixelplastic.de/images/20060501%20-%20Erster%20Mai/medium/_MG_0894.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060501%20-%20Erster%20Mai/medium/_MG_0896.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060501%20-%20Erster%20Mai/medium/_MG_0898.jpg" /><br /><img src="http://www.pixelplastic.de/images/20060501%20-%20Erster%20Mai/medium/_MG_0899.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f9fd8936-6a95-493b-ae3e-1041328cd45e" /></body>
      <title>20060501 - Erster Mai</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,f9fd8936-6a95-493b-ae3e-1041328cd45e.aspx</guid>
      <link>http://pixelplastic.de/2006/05/01/20060501ErsterMai.aspx</link>
      <pubDate>Mon, 01 May 2006 09:33:10 GMT</pubDate>
      <description>Erster Mai in Leipzig:&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=34cb6f91-f3a4-40b4-845e-4282072bd33f&amp;amp;initialPhoto=e26bc4cb-95a1-4f1c-b182-b9927655577f" target="_blank"&gt;&lt;b&gt;20060501
- Erster Mai&lt;/b&gt;&lt;/a&gt;.&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060501%20-%20Erster%20Mai/medium/_MG_0894.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060501%20-%20Erster%20Mai/medium/_MG_0896.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060501%20-%20Erster%20Mai/medium/_MG_0898.jpg"&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060501%20-%20Erster%20Mai/medium/_MG_0899.jpg"&gt; &lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f9fd8936-6a95-493b-ae3e-1041328cd45e" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,f9fd8936-6a95-493b-ae3e-1041328cd45e.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=8a17fafd-1ce5-47e4-ae40-79f1adf76b9a</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,8a17fafd-1ce5-47e4-ae40-79f1adf76b9a.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,8a17fafd-1ce5-47e4-ae40-79f1adf76b9a.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=8a17fafd-1ce5-47e4-ae40-79f1adf76b9a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">nun haben wir schon wieder so ewig gerätselt,
von wem denn die hintergrundmusik zum spannenden dreiteiler "<a href="http://www.arte-tv.com/de/wissen-entdeckung/Expedition_20ins_20Gehirn/1116482.html">Expedition
ins Gehirn</a>" von arte ist.<br /><img src="content/binary/kimputer.jpg" border="0" /><br /><br />
aber ich hab's rausgefunden: <a href="http://www.boozoobajou.com/">Boozoo Bajou</a> -
Down &amp; out. das lied findet man auf dem album <a href="http://www.boozoobajou.com/music/mp3player_sat.html">Satta</a>.<br /><img src="http://blog.pixelplastic.de/content/binary/cd_satta.jpg" border="0" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=8a17fafd-1ce5-47e4-ae40-79f1adf76b9a" /></body>
      <title>Expedition ins Gehirn</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,8a17fafd-1ce5-47e4-ae40-79f1adf76b9a.aspx</guid>
      <link>http://pixelplastic.de/2006/04/28/ExpeditionInsGehirn.aspx</link>
      <pubDate>Fri, 28 Apr 2006 16:46:36 GMT</pubDate>
      <description>nun haben wir schon wieder so ewig gerätselt, von wem denn die hintergrundmusik zum spannenden dreiteiler "&lt;a href="http://www.arte-tv.com/de/wissen-entdeckung/Expedition_20ins_20Gehirn/1116482.html"&gt;Expedition
ins Gehirn&lt;/a&gt;" von arte ist.&lt;br&gt;
&lt;img src="content/binary/kimputer.jpg" border="0"&gt;
&lt;br&gt;
&lt;br&gt;
aber ich hab's rausgefunden: &lt;a href="http://www.boozoobajou.com/"&gt;Boozoo Bajou&lt;/a&gt; -
Down &amp;amp; out. das lied findet man auf dem album &lt;a href="http://www.boozoobajou.com/music/mp3player_sat.html"&gt;Satta&lt;/a&gt;.&lt;br&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/cd_satta.jpg" border="0"&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=8a17fafd-1ce5-47e4-ae40-79f1adf76b9a" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,8a17fafd-1ce5-47e4-ae40-79f1adf76b9a.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=c52a747c-d813-422c-804a-2e847a3bbbcc</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,c52a747c-d813-422c-804a-2e847a3bbbcc.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,c52a747c-d813-422c-804a-2e847a3bbbcc.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=c52a747c-d813-422c-804a-2e847a3bbbcc</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <img src="http://blog.pixelplastic.de/content/binary/palmenstrand.jpg" border="0" />
        <br />
        <br />
        <a href="http://blog.pixelplastic.de/content/binary/palmenstrand.full.jpg">palmenstrand
in voller auflösung (821,17 KB)</a>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c52a747c-d813-422c-804a-2e847a3bbbcc" />
      </body>
      <title>collage: unkraut auf dem balkontisch</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,c52a747c-d813-422c-804a-2e847a3bbbcc.aspx</guid>
      <link>http://pixelplastic.de/2006/04/23/collageUnkrautAufDemBalkontisch.aspx</link>
      <pubDate>Sun, 23 Apr 2006 13:19:35 GMT</pubDate>
      <description>&lt;p&gt;
&lt;/p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/palmenstrand.jpg" border="0"&gt;
&lt;br&gt;
&lt;br&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/palmenstrand.full.jpg"&gt;palmenstrand
in voller auflösung (821,17 KB)&lt;/a&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c52a747c-d813-422c-804a-2e847a3bbbcc" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,c52a747c-d813-422c-804a-2e847a3bbbcc.aspx</comments>
      <category>art</category>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=333151d1-3224-4328-9b73-4e847a3e8fea</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,333151d1-3224-4328-9b73-4e847a3e8fea.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,333151d1-3224-4328-9b73-4e847a3e8fea.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=333151d1-3224-4328-9b73-4e847a3e8fea</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">bereits vor einigen monaten hatte ich eine <a href="http://blog.pixelplastic.de/PermaLink,guid,2f07ed1f-29a2-4d84-b17e-203ac2deb2b7.aspx">backup
lösung</a> vorgestellt. diese war javascript und <a href="http://www.winrar.de/">rar</a> basiert.
um mehr bedienkomfort zu bieten, habe ich das ganze in einer .NET 2.0 anwendung umgesetzt.
prinzipiell lassen sich wie bei der skriptbasierten variante inkrementelle sicherungen
von dateien und verzeichnissen erstellen. dabei lassen sich die anzahl der inkrementellen
backups einstellen, bevor ein neuer kompletter sicherungssatz begonnen wird. hier
einige screenshots:<br /><br /><p></p><img src="http://blog.pixelplastic.de/content/binary/screenshot.jpg" title="hauptfenster" border="0" /><br /><br /><img src="http://blog.pixelplastic.de/content/binary/screenshot2.jpg" title="einstellungsdialog" border="0" /><br /><br />
im moment sollte man die aktuelle <a href="http://blog.pixelplastic.de/content/binary/backup1.0.zip">version
1.0 (478,73 KB)</a> noch als beta verwenden. für eventuellen datenverlust trage ich
keine verantwortung. also vorher an unsensiblen daten testen. über anmerkungen zu
bugs und mögliche featurewünsche würde ich mich freuen.<br /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=333151d1-3224-4328-9b73-4e847a3e8fea" /></body>
      <title>backup lösung mit .NET 2.0</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,333151d1-3224-4328-9b73-4e847a3e8fea.aspx</guid>
      <link>http://pixelplastic.de/2006/04/23/backupL%c3%b6sungMitNET20.aspx</link>
      <pubDate>Sun, 23 Apr 2006 13:04:56 GMT</pubDate>
      <description>bereits vor einigen monaten hatte ich eine &lt;a href="http://blog.pixelplastic.de/PermaLink,guid,2f07ed1f-29a2-4d84-b17e-203ac2deb2b7.aspx"&gt;backup
lösung&lt;/a&gt; vorgestellt. diese war javascript und &lt;a href="http://www.winrar.de/"&gt;rar&lt;/a&gt; basiert.
um mehr bedienkomfort zu bieten, habe ich das ganze in einer .NET 2.0 anwendung umgesetzt.
prinzipiell lassen sich wie bei der skriptbasierten variante inkrementelle sicherungen
von dateien und verzeichnissen erstellen. dabei lassen sich die anzahl der inkrementellen
backups einstellen, bevor ein neuer kompletter sicherungssatz begonnen wird. hier
einige screenshots:&lt;br&gt;
&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/screenshot.jpg" title="hauptfenster" border="0"&gt;
&lt;br&gt;
&lt;br&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/screenshot2.jpg" title="einstellungsdialog" border="0"&gt;
&lt;br&gt;
&lt;br&gt;
im moment sollte man die aktuelle &lt;a href="http://blog.pixelplastic.de/content/binary/backup1.0.zip"&gt;version
1.0 (478,73 KB)&lt;/a&gt; noch als beta verwenden. für eventuellen datenverlust trage ich
keine verantwortung. also vorher an unsensiblen daten testen. über anmerkungen zu
bugs und mögliche featurewünsche würde ich mich freuen.&lt;br&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=333151d1-3224-4328-9b73-4e847a3e8fea" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,333151d1-3224-4328-9b73-4e847a3e8fea.aspx</comments>
      <category>development</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=b4a79cb9-232b-4d7b-b633-d45079a2b0d5</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,b4a79cb9-232b-4d7b-b633-d45079a2b0d5.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,b4a79cb9-232b-4d7b-b633-d45079a2b0d5.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=b4a79cb9-232b-4d7b-b633-d45079a2b0d5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=64911501-d2fc-40cb-9eda-2658a433da93&amp;initialPhoto=46dca4ac-55e5-4b22-9d35-2620b6939839" target="_blank"><b>20060416
- Ostern daheim</b></a>.<br /><img src="http://www.pixelplastic.de/images/20060416 - Ostern daheim/medium/_MG_0828.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b4a79cb9-232b-4d7b-b633-d45079a2b0d5" /></body>
      <title>20060416 - Ostern daheim</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,b4a79cb9-232b-4d7b-b633-d45079a2b0d5.aspx</guid>
      <link>http://pixelplastic.de/2006/04/16/20060416OsternDaheim.aspx</link>
      <pubDate>Sun, 16 Apr 2006 09:32:49 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=64911501-d2fc-40cb-9eda-2658a433da93&amp;amp;initialPhoto=46dca4ac-55e5-4b22-9d35-2620b6939839" target=_blank&gt;&lt;b&gt;20060416
- Ostern daheim&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20060416 - Ostern daheim/medium/_MG_0828.jpg" /&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b4a79cb9-232b-4d7b-b633-d45079a2b0d5" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,b4a79cb9-232b-4d7b-b633-d45079a2b0d5.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=c33cd7ae-30f1-432c-9f62-44419c2cd707</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,c33cd7ae-30f1-432c-9f62-44419c2cd707.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,c33cd7ae-30f1-432c-9f62-44419c2cd707.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=c33cd7ae-30f1-432c-9f62-44419c2cd707</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=5602da87-a0fc-4ffa-8dcc-31756f304464&amp;initialPhoto=e5ae97f6-5246-4228-a644-7cae2c4eef5f" target="_blank"><b>20060414
- Osterbrunch bei Robert und Sabine</b></a>.<br /><img src="http://www.pixelplastic.de/images/20060414%20-%20Osterbrunch%20bei%20Robert%20und%20Sabine/medium/_MG_0803.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c33cd7ae-30f1-432c-9f62-44419c2cd707" /></body>
      <title>20060414 - Osterbrunch bei Robert und Sabine</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,c33cd7ae-30f1-432c-9f62-44419c2cd707.aspx</guid>
      <link>http://pixelplastic.de/2006/04/14/20060414OsterbrunchBeiRobertUndSabine.aspx</link>
      <pubDate>Fri, 14 Apr 2006 09:32:41 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=5602da87-a0fc-4ffa-8dcc-31756f304464&amp;amp;initialPhoto=e5ae97f6-5246-4228-a644-7cae2c4eef5f" target="_blank"&gt;&lt;b&gt;20060414
- Osterbrunch bei Robert und Sabine&lt;/b&gt;&lt;/a&gt;.&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060414%20-%20Osterbrunch%20bei%20Robert%20und%20Sabine/medium/_MG_0803.jpg"&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c33cd7ae-30f1-432c-9f62-44419c2cd707" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,c33cd7ae-30f1-432c-9f62-44419c2cd707.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=9dcee03b-62ab-408d-9a11-de6c2da14398</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,9dcee03b-62ab-408d-9a11-de6c2da14398.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,9dcee03b-62ab-408d-9a11-de6c2da14398.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=9dcee03b-62ab-408d-9a11-de6c2da14398</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=c654c5c7-4001-4eec-b6ee-e61ebbad843f&amp;initialPhoto=26533dab-0a61-4fc1-bbbd-c38c4e2aaf02" target="_blank"><b>20060408
- Party bei Aiko und Saschi</b></a>.<br /><img src="http://www.pixelplastic.de/images/20060408 - Party bei Aiko und Saschi/medium/_MG_0650.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=9dcee03b-62ab-408d-9a11-de6c2da14398" /></body>
      <title>20060408 - Party bei Aiko und Saschi</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,9dcee03b-62ab-408d-9a11-de6c2da14398.aspx</guid>
      <link>http://pixelplastic.de/2006/04/11/20060408PartyBeiAikoUndSaschi.aspx</link>
      <pubDate>Tue, 11 Apr 2006 13:02:35 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=c654c5c7-4001-4eec-b6ee-e61ebbad843f&amp;amp;initialPhoto=26533dab-0a61-4fc1-bbbd-c38c4e2aaf02" target=_blank&gt;&lt;b&gt;20060408
- Party bei Aiko und Saschi&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20060408 - Party bei Aiko und Saschi/medium/_MG_0650.jpg" /&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=9dcee03b-62ab-408d-9a11-de6c2da14398" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,9dcee03b-62ab-408d-9a11-de6c2da14398.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=ec32d7a6-f83c-493d-a7dc-a41fcc2a1920</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,ec32d7a6-f83c-493d-a7dc-a41fcc2a1920.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,ec32d7a6-f83c-493d-a7dc-a41fcc2a1920.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=ec32d7a6-f83c-493d-a7dc-a41fcc2a1920</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=51087911-7680-4d01-8b77-edc6e2549989&amp;initialPhoto=df8c3fc6-acfc-4b71-b78c-0e41f0a7e16b" target="_blank"><b>20060327
- Christianes Umzug</b></a>.<br /><img src="http://www.pixelplastic.de/images/20060327%20-%20Christianes%20Umzug/medium/_MG_0358.jpg" /><br /><br /><img src="http://www.pixelplastic.de/images/20060327%20-%20Christianes%20Umzug/medium/_MG_0393.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ec32d7a6-f83c-493d-a7dc-a41fcc2a1920" /></body>
      <title>20060327 - Christianes Umzug</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,ec32d7a6-f83c-493d-a7dc-a41fcc2a1920.aspx</guid>
      <link>http://pixelplastic.de/2006/04/11/20060327ChristianesUmzug.aspx</link>
      <pubDate>Tue, 11 Apr 2006 12:54:23 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=51087911-7680-4d01-8b77-edc6e2549989&amp;amp;initialPhoto=df8c3fc6-acfc-4b71-b78c-0e41f0a7e16b" target="_blank"&gt;&lt;b&gt;20060327
- Christianes Umzug&lt;/b&gt;&lt;/a&gt;.&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060327%20-%20Christianes%20Umzug/medium/_MG_0358.jpg"&gt;
&lt;br&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060327%20-%20Christianes%20Umzug/medium/_MG_0393.jpg"&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ec32d7a6-f83c-493d-a7dc-a41fcc2a1920" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,ec32d7a6-f83c-493d-a7dc-a41fcc2a1920.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=209acd24-fe4b-4989-846a-e6f369a70623</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,209acd24-fe4b-4989-846a-e6f369a70623.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,209acd24-fe4b-4989-846a-e6f369a70623.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=209acd24-fe4b-4989-846a-e6f369a70623</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=0de70c95-666b-45a1-bcd3-bdb062b42b7a&amp;initialPhoto=0e36ad52-1e87-46a3-b93e-3f531b2a642a" target="_blank"><b>20060226
- Omis Geburtstag</b></a>.<br /><img src="http://www.pixelplastic.de/images/20060226 - Omis Geburtstag/medium/_MG_0177.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=209acd24-fe4b-4989-846a-e6f369a70623" /></body>
      <title>20060226 - Omis Geburtstag</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,209acd24-fe4b-4989-846a-e6f369a70623.aspx</guid>
      <link>http://pixelplastic.de/2006/04/11/20060226OmisGeburtstag.aspx</link>
      <pubDate>Tue, 11 Apr 2006 12:52:55 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=0de70c95-666b-45a1-bcd3-bdb062b42b7a&amp;amp;initialPhoto=0e36ad52-1e87-46a3-b93e-3f531b2a642a" target=_blank&gt;&lt;b&gt;20060226
- Omis Geburtstag&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20060226 - Omis Geburtstag/medium/_MG_0177.jpg" /&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=209acd24-fe4b-4989-846a-e6f369a70623" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,209acd24-fe4b-4989-846a-e6f369a70623.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=bc5b7722-cf00-400c-b4b6-26b74b08abc6</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,bc5b7722-cf00-400c-b4b6-26b74b08abc6.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,bc5b7722-cf00-400c-b4b6-26b74b08abc6.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=bc5b7722-cf00-400c-b4b6-26b74b08abc6</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=4e9aefe7-dc8c-4f6b-a566-6b931a2f46d5&amp;initialPhoto=e79271ae-28ce-47f8-a9de-1ad690cc8596" target="_blank"><b>20060111
- Zum Seminar mit Gefieder</b></a>.<br /><img src="http://www.pixelplastic.de/images/20060111 - Zum Seminar mit Gefieder/medium/_MG_8882.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=bc5b7722-cf00-400c-b4b6-26b74b08abc6" /></body>
      <title>20060111 - Zum Seminar mit Gefieder</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,bc5b7722-cf00-400c-b4b6-26b74b08abc6.aspx</guid>
      <link>http://pixelplastic.de/2006/04/11/20060111ZumSeminarMitGefieder.aspx</link>
      <pubDate>Tue, 11 Apr 2006 12:48:20 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=4e9aefe7-dc8c-4f6b-a566-6b931a2f46d5&amp;amp;initialPhoto=e79271ae-28ce-47f8-a9de-1ad690cc8596" target=_blank&gt;&lt;b&gt;20060111
- Zum Seminar mit Gefieder&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20060111 - Zum Seminar mit Gefieder/medium/_MG_8882.jpg" /&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=bc5b7722-cf00-400c-b4b6-26b74b08abc6" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,bc5b7722-cf00-400c-b4b6-26b74b08abc6.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=37c35e2b-115d-4319-92eb-aeafb82adac1</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,37c35e2b-115d-4319-92eb-aeafb82adac1.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,37c35e2b-115d-4319-92eb-aeafb82adac1.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=37c35e2b-115d-4319-92eb-aeafb82adac1</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=b27649e6-75b9-45b4-9d3f-9110038e9401&amp;initialPhoto=9046b5b8-ae78-4adc-b04f-d7f6e9ef47b5" target="_blank"><b>20060110
- Ausflug zu Martin</b></a>.<br /><img src="http://www.pixelplastic.de/images/20060110 - Ausflug zu Martin/medium/_MG_8862.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=37c35e2b-115d-4319-92eb-aeafb82adac1" /></body>
      <title>20060110 - Ausflug zu Martin</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,37c35e2b-115d-4319-92eb-aeafb82adac1.aspx</guid>
      <link>http://pixelplastic.de/2006/04/11/20060110AusflugZuMartin.aspx</link>
      <pubDate>Tue, 11 Apr 2006 12:45:50 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=b27649e6-75b9-45b4-9d3f-9110038e9401&amp;amp;initialPhoto=9046b5b8-ae78-4adc-b04f-d7f6e9ef47b5" target=_blank&gt;&lt;b&gt;20060110
- Ausflug zu Martin&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20060110 - Ausflug zu Martin/medium/_MG_8862.jpg" /&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=37c35e2b-115d-4319-92eb-aeafb82adac1" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,37c35e2b-115d-4319-92eb-aeafb82adac1.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=1a69f6c1-606a-4e4b-a309-856ccd8612c7</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,1a69f6c1-606a-4e4b-a309-856ccd8612c7.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,1a69f6c1-606a-4e4b-a309-856ccd8612c7.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=1a69f6c1-606a-4e4b-a309-856ccd8612c7</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=c6f1c43b-470e-45d9-85d7-5ec0b0deedd9&amp;initialPhoto=4f247a89-62d1-47fd-904b-ca000a4aa6be" target="_blank"><b>20051226
- Weihnachten im blue note</b></a>.<br /><img src="http://www.pixelplastic.de/images/20051226 - Weihnachten im blue note/medium/_MG_4509.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=1a69f6c1-606a-4e4b-a309-856ccd8612c7" /></body>
      <title>20051226 - Weihnachten im blue note</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,1a69f6c1-606a-4e4b-a309-856ccd8612c7.aspx</guid>
      <link>http://pixelplastic.de/2006/04/11/20051226WeihnachtenImBlueNote.aspx</link>
      <pubDate>Tue, 11 Apr 2006 12:41:08 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=c6f1c43b-470e-45d9-85d7-5ec0b0deedd9&amp;amp;initialPhoto=4f247a89-62d1-47fd-904b-ca000a4aa6be" target=_blank&gt;&lt;b&gt;20051226
- Weihnachten im blue note&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20051226 - Weihnachten im blue note/medium/_MG_4509.jpg" /&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=1a69f6c1-606a-4e4b-a309-856ccd8612c7" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,1a69f6c1-606a-4e4b-a309-856ccd8612c7.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=a44157e8-f409-4d8b-aba8-3f5d6d75ad6a</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,a44157e8-f409-4d8b-aba8-3f5d6d75ad6a.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,a44157e8-f409-4d8b-aba8-3f5d6d75ad6a.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=a44157e8-f409-4d8b-aba8-3f5d6d75ad6a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <img src="http://blog.pixelplastic.de/content/binary/drops1.jpg" border="0" />
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=a44157e8-f409-4d8b-aba8-3f5d6d75ad6a" />
      </body>
      <title>tropfen im april</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,a44157e8-f409-4d8b-aba8-3f5d6d75ad6a.aspx</guid>
      <link>http://pixelplastic.de/2006/04/11/tropfenImApril.aspx</link>
      <pubDate>Tue, 11 Apr 2006 10:05:19 GMT</pubDate>
      <description>&lt;p&gt;
&lt;/p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/drops1.jpg" border="0"&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=a44157e8-f409-4d8b-aba8-3f5d6d75ad6a" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,a44157e8-f409-4d8b-aba8-3f5d6d75ad6a.aspx</comments>
      <category>art</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=89986803-f3c2-4662-8e65-82467aa986ef</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,89986803-f3c2-4662-8e65-82467aa986ef.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,89986803-f3c2-4662-8e65-82467aa986ef.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=89986803-f3c2-4662-8e65-82467aa986ef</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">eigentlich sollte es ein aprilscherz zum
ersten des monats werden. aber so wie das aktuelle wetter schnee und überschwemmung
beschert, kann man es sich erlauben auch jetzt noch zu scherzen. guten appetit.<br /><p></p><img src="http://blog.pixelplastic.de/content/binary/Delphin.jpg" border="0" /><br /><br />
und nur am rande: <a href="http://www.lvz.de/aktuell/ar.html?p=/aktuell/content/188403.html">leipzig
wurde heute verschoben</a>.<br /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=89986803-f3c2-4662-8e65-82467aa986ef" /></body>
      <title>april april mit delphinen am bayerischen bahnhof</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,89986803-f3c2-4662-8e65-82467aa986ef.aspx</guid>
      <link>http://pixelplastic.de/2006/04/10/aprilAprilMitDelphinenAmBayerischenBahnhof.aspx</link>
      <pubDate>Mon, 10 Apr 2006 21:16:21 GMT</pubDate>
      <description>eigentlich sollte es ein aprilscherz zum ersten des monats werden. aber so wie das aktuelle wetter schnee und überschwemmung beschert, kann man es sich erlauben auch jetzt noch zu scherzen. guten appetit.&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/Delphin.jpg" border="0"&gt;
&lt;br&gt;
&lt;br&gt;
und nur am rande: &lt;a href="http://www.lvz.de/aktuell/ar.html?p=/aktuell/content/188403.html"&gt;leipzig
wurde heute verschoben&lt;/a&gt;.&lt;br&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=89986803-f3c2-4662-8e65-82467aa986ef" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,89986803-f3c2-4662-8e65-82467aa986ef.aspx</comments>
      <category>art</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=0aae4bc5-cb72-4ebb-94ef-9ec027407bd0</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,0aae4bc5-cb72-4ebb-94ef-9ec027407bd0.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,0aae4bc5-cb72-4ebb-94ef-9ec027407bd0.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=0aae4bc5-cb72-4ebb-94ef-9ec027407bd0</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://blog.pixelplastic.de/content/binary/_MG_0481_tiltnshift.jpg">
            <img dragover="true" src="http://blog.pixelplastic.de/content/binary/_MG_0481_tiltnshift.thumb.jpg" border="0" />
          </a>
          <br />
          <a href="http://www.davidburnett.com/">david burnett</a> hat es vorgemacht. endlich
weiß ich auch, dass dieser stil mit hilfe von <a href="http://de.wikipedia.org/wiki/Tilt-und-Shift-Objektiv">tilt-und-shift
objektiven</a> zustande kommt. aber mit maus und bildschirm lassen sich gleiche effekte
erzeugen. wie? das findet man in diesem <a href="http://recedinghairline.co.uk/tutorials/fakemodel/">photoshop
tutorial</a>.<br /></p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0aae4bc5-cb72-4ebb-94ef-9ec027407bd0" />
      </body>
      <title>leuschner platz leipzig in kleinem maßstab</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,0aae4bc5-cb72-4ebb-94ef-9ec027407bd0.aspx</guid>
      <link>http://pixelplastic.de/2006/04/07/leuschnerPlatzLeipzigInKleinemMa%c3%9fstab.aspx</link>
      <pubDate>Fri, 07 Apr 2006 22:34:59 GMT</pubDate>
      <description>&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/_MG_0481_tiltnshift.jpg"&gt;&lt;img dragover="true" src="http://blog.pixelplastic.de/content/binary/_MG_0481_tiltnshift.thumb.jpg" border="0"&gt;&lt;/a&gt;
&lt;br&gt;
&lt;a href="http://www.davidburnett.com/"&gt;david burnett&lt;/a&gt; hat es vorgemacht. endlich
weiß ich auch, dass dieser stil mit hilfe von &lt;a href="http://de.wikipedia.org/wiki/Tilt-und-Shift-Objektiv"&gt;tilt-und-shift
objektiven&lt;/a&gt; zustande kommt. aber mit maus und bildschirm lassen sich gleiche effekte
erzeugen. wie? das findet man in diesem &lt;a href="http://recedinghairline.co.uk/tutorials/fakemodel/"&gt;photoshop
tutorial&lt;/a&gt;.&lt;br&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0aae4bc5-cb72-4ebb-94ef-9ec027407bd0" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,0aae4bc5-cb72-4ebb-94ef-9ec027407bd0.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=73526482-df3e-4ad9-acd5-126b7305f209</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,73526482-df3e-4ad9-acd5-126b7305f209.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,73526482-df3e-4ad9-acd5-126b7305f209.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=73526482-df3e-4ad9-acd5-126b7305f209</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">Konzertbilder von Trnn im Kuhturm:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=b4c79d76-51c4-44bb-ab18-08427ee36830&amp;initialPhoto=282f92e8-b37e-41da-9cc7-3968e2479602" target="_blank"><b>20060324
- semmeln im kuhturm</b></a>.<br /><img src="http://www.pixelplastic.de/images/20060324 - semmeln im kuhturm/medium/_MG_0251.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=73526482-df3e-4ad9-acd5-126b7305f209" /></body>
      <title>20060324 - semmeln im kuhturm</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,73526482-df3e-4ad9-acd5-126b7305f209.aspx</guid>
      <link>http://pixelplastic.de/2006/03/24/20060324SemmelnImKuhturm.aspx</link>
      <pubDate>Fri, 24 Mar 2006 10:32:16 GMT</pubDate>
      <description>Konzertbilder von Trnn im Kuhturm:&lt;br /&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=b4c79d76-51c4-44bb-ab18-08427ee36830&amp;amp;initialPhoto=282f92e8-b37e-41da-9cc7-3968e2479602" target=_blank&gt;&lt;b&gt;20060324
- semmeln im kuhturm&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20060324 - semmeln im kuhturm/medium/_MG_0251.jpg" /&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=73526482-df3e-4ad9-acd5-126b7305f209" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,73526482-df3e-4ad9-acd5-126b7305f209.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=5d4d2445-78c4-4a53-8474-c3fa3a930d81</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,5d4d2445-78c4-4a53-8474-c3fa3a930d81.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,5d4d2445-78c4-4a53-8474-c3fa3a930d81.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=5d4d2445-78c4-4a53-8474-c3fa3a930d81</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">so was lustiges hab' ich lange nicht mehr
gesehen. was mit shockwave so alles möglich ist. also unbedingt macromedia shockwave
installieren und diese geniale drum session antesten:<br /><br /><br /><img src="content/binary/fjallfil.jpg" border="0" height="373" width="500" /><br /><br /><a dragover="true" href="http://www.fjallfil.com/">http://www.fjallfil.com/</a><br /><br /><br /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5d4d2445-78c4-4a53-8474-c3fa3a930d81" /></body>
      <title>muhende drum session</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,5d4d2445-78c4-4a53-8474-c3fa3a930d81.aspx</guid>
      <link>http://pixelplastic.de/2006/02/11/muhendeDrumSession.aspx</link>
      <pubDate>Sat, 11 Feb 2006 00:35:31 GMT</pubDate>
      <description>so was lustiges hab' ich lange nicht mehr gesehen. was mit shockwave so alles möglich ist. also unbedingt macromedia shockwave installieren und diese geniale drum session antesten:&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;img src="content/binary/fjallfil.jpg" border="0" height="373" width="500"&gt;
&lt;br&gt;
&lt;br&gt;
&lt;a dragover="true" href="http://www.fjallfil.com/"&gt;http://www.fjallfil.com/&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5d4d2445-78c4-4a53-8474-c3fa3a930d81" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,5d4d2445-78c4-4a53-8474-c3fa3a930d81.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=2f07ed1f-29a2-4d84-b17e-203ac2deb2b7</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,2f07ed1f-29a2-4d84-b17e-203ac2deb2b7.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,2f07ed1f-29a2-4d84-b17e-203ac2deb2b7.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=2f07ed1f-29a2-4d84-b17e-203ac2deb2b7</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">nachdem mich verschiedene backup applikationen
nicht so recht überzeugen konnten, bin ich nun doch wieder zum klassischen kommandozeilen
basierten backup zurückgekehrt. mit einem kleinen javascript tool und dem windows
scripting host kann ich nun mit hilfe von winrar täglich backups meiner benutzerdaten
auf unserem server ablegen. wichtig für mich war die möglichkeit nicht jeden tag komplette
5GB durch unser netzwerk zu schicken. zum einen würde das die kapazitäten auf unserem
server sprengen. zum anderen hätte ich nur zugriff auf maximal 3 bis 4 tage zurückliegende
daten. aus diesem grund sollte die lösung auch inkrementelle backups unterstützen.
also backups, die nur daten beinhalten, welche sich seit der letzten kompletten sicherung
verändert haben. der skript aufruf gestaltet sich dabei wie folgt:<br /><br /><code> cscript backup.js /destination:&lt;folder&gt; [/maxfull:&lt;number&gt;] [/maxincr:&lt;number&gt;]<br /><br />
/destination:&lt;folder&gt;   Root folder, where the backupfiles should
be stored.<br />
/maxfull:&lt;number&gt;       Maximum full backups. (optional,
default=3)<br />
/maxincr:&lt;number&gt;       Maximum incremental backups.
(optional, default=10)<br /><br /></code>noch mal zum verständnis. <code>destination</code> gibt an, wo meine backups
landen sollen. das skript prüft in diesem verzeichnis die darunterliegende verzeichnisstruktur.
es werden falls noch nicht geschehen unterverzeichnisse "1", "2", "3" (usw. bis <code>maxfull</code>)
angelegt. in diesen landen dann die jeweiligen .rar-dateien. wobei in "1" das aktuellste
backup (inklusive seiner inkrementellen nachfolger) liegen wird. <code>maxincr</code> gibt
an, wieviele inkementelle backups erzeugt werden, bevor ein neues komplettes backup
erstellt wird. ist die grenze der inkrementellen backups im ersten verzeichniss ("1")
erreicht, werden vor dem kompletten neubackup die verzeichnis-inhalte von "1" nach
"2", von "2" nach "3" (usw.) verschoben. die backups im letzten ("<code>maxfull</code>")
verzeichnis werden zuvor gelöscht. zum wiederherstellen seiner daten kann man also
auf <code>maxfull</code> * <code>maxincr</code> tage zurück greifen (bei täglichem
backup).<br />
das ganze hab' ich mir als geplanten task eingerichtet, welcher täglich feuert.<br />
im moment ist dieses skript noch beta status. also noch nicht ausreichend auf fehler
geprüft. dennoch kann man es sich hier runterladen und ausprobieren:<br /><br /><a href="content/binary/backup.zip">backup.zip (2,34 KB)</a><br /><br />
das script muss derzeit noch an folgenden zeilen angepasst werden:<br /><br /><code dragover="true">var rarExePath = "C:\\Programme\\WinRar\\rar.exe"; // location
of rar.exe<br />
var rarIncludeFilePath = "D:\\backup\\__filelist.txt"; 
<br />
var rarExcludeFilePath = "D:\\backup\\__exfilelist.txt";<br /></code><br />
bei weiteren fragen kann man mich auch direkt kontaktieren. ich denke aber demnächst
hier eine neue version zu präsentieren, deren konfiguration noch komfortabler wird.<br /><br />
winrar kann für nichtkommerzielle zwecke frei verwendet und <a href="http://www.winrar.de/">hier</a> runtergeladen
werden.<br /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=2f07ed1f-29a2-4d84-b17e-203ac2deb2b7" /></body>
      <title>backup lösung</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,2f07ed1f-29a2-4d84-b17e-203ac2deb2b7.aspx</guid>
      <link>http://pixelplastic.de/2006/02/01/backupL%c3%b6sung.aspx</link>
      <pubDate>Wed, 01 Feb 2006 13:10:12 GMT</pubDate>
      <description>nachdem mich verschiedene backup applikationen nicht so recht überzeugen konnten, bin ich nun doch wieder zum klassischen kommandozeilen basierten backup zurückgekehrt. mit einem kleinen javascript tool und dem windows scripting host kann ich nun mit hilfe von winrar täglich backups meiner benutzerdaten auf unserem server ablegen. wichtig für mich war die möglichkeit nicht jeden tag komplette 5GB durch unser netzwerk zu schicken. zum einen würde das die kapazitäten auf unserem server sprengen. zum anderen hätte ich nur zugriff auf maximal 3 bis 4 tage zurückliegende daten. aus diesem grund sollte die lösung auch inkrementelle backups unterstützen. also backups, die nur daten beinhalten, welche sich seit der letzten kompletten sicherung verändert haben. der skript aufruf gestaltet sich dabei wie folgt:&lt;br&gt;
&lt;br&gt;
&lt;code&gt; cscript backup.js /destination:&amp;lt;folder&amp;gt; [/maxfull:&amp;lt;number&amp;gt;] [/maxincr:&amp;lt;number&amp;gt;]&lt;br&gt;
&lt;br&gt;
/destination:&amp;lt;folder&amp;gt;&amp;nbsp;&amp;nbsp; Root folder, where the backupfiles should
be stored.&lt;br&gt;
/maxfull:&amp;lt;number&amp;gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Maximum full backups. (optional,
default=3)&lt;br&gt;
/maxincr:&amp;lt;number&amp;gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Maximum incremental backups.
(optional, default=10)&lt;br&gt;
&lt;br&gt;
&lt;/code&gt;noch mal zum verständnis. &lt;code&gt;destination&lt;/code&gt; gibt an, wo meine backups
landen sollen. das skript prüft in diesem verzeichnis die darunterliegende verzeichnisstruktur.
es werden falls noch nicht geschehen unterverzeichnisse "1", "2", "3" (usw. bis &lt;code&gt;maxfull&lt;/code&gt;)
angelegt. in diesen landen dann die jeweiligen .rar-dateien. wobei in "1" das aktuellste
backup (inklusive seiner inkrementellen nachfolger) liegen wird. &lt;code&gt;maxincr&lt;/code&gt; gibt
an, wieviele inkementelle backups erzeugt werden, bevor ein neues komplettes backup
erstellt wird. ist die grenze der inkrementellen backups im ersten verzeichniss ("1")
erreicht, werden vor dem kompletten neubackup die verzeichnis-inhalte von "1" nach
"2", von "2" nach "3" (usw.) verschoben. die backups im letzten ("&lt;code&gt;maxfull&lt;/code&gt;")
verzeichnis werden zuvor gelöscht. zum wiederherstellen seiner daten kann man also
auf &lt;code&gt;maxfull&lt;/code&gt; * &lt;code&gt;maxincr&lt;/code&gt; tage zurück greifen (bei täglichem
backup).&lt;br&gt;
das ganze hab' ich mir als geplanten task eingerichtet, welcher täglich feuert.&lt;br&gt;
im moment ist dieses skript noch beta status. also noch nicht ausreichend auf fehler
geprüft. dennoch kann man es sich hier runterladen und ausprobieren:&lt;br&gt;
&lt;br&gt;
&lt;a href="content/binary/backup.zip"&gt;backup.zip (2,34 KB)&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
das script muss derzeit noch an folgenden zeilen angepasst werden:&lt;br&gt;
&lt;br&gt;
&lt;code dragover="true"&gt;var rarExePath = "C:\\Programme\\WinRar\\rar.exe"; // location
of rar.exe&lt;br&gt;
var rarIncludeFilePath = "D:\\backup\\__filelist.txt"; 
&lt;br&gt;
var rarExcludeFilePath = "D:\\backup\\__exfilelist.txt";&lt;br&gt;
&lt;/code&gt;
&lt;br&gt;
bei weiteren fragen kann man mich auch direkt kontaktieren. ich denke aber demnächst
hier eine neue version zu präsentieren, deren konfiguration noch komfortabler wird.&lt;br&gt;
&lt;br&gt;
winrar kann für nichtkommerzielle zwecke frei verwendet und &lt;a href="http://www.winrar.de/"&gt;hier&lt;/a&gt; runtergeladen
werden.&lt;br&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=2f07ed1f-29a2-4d84-b17e-203ac2deb2b7" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,2f07ed1f-29a2-4d84-b17e-203ac2deb2b7.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=72a345eb-61eb-4b99-902c-6f5569fa5658</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,72a345eb-61eb-4b99-902c-6f5569fa5658.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,72a345eb-61eb-4b99-902c-6f5569fa5658.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=72a345eb-61eb-4b99-902c-6f5569fa5658</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">aufmerksame beobachter und regelmäßge besucher
haben es sicher schon bemerkt: da links in meiner sidebar (auf der <a href="http://blog.pixelplastic.de/">webseite
meines blogs</a>) findet man seit gestern neue buttons für allerlei links.<br /><p></p><img src="http://blog.pixelplastic.de/content/binary/newbuttons.png" border="0" /><br /><br />
daneben haben sich innerhalb der sidebarboxen noch kleine minus (<img src="content/binary/icon.minus.gif" border="0" />)
und plus (<img src="content/binary/icon.plus.gif" border="0" />) buttons eingeschlichen.
mit diesen kann man nun locker flockig die boxen auf und zu klappen. nur hab ich es
leider noch nicht hinbekommen, dass sich der zustand irgendwie cookie tschechisch
abspeichern läßt. ausserdem scheint das verkleinern der boxen nur mit unserem neuen
freund <a href="http://www.mozilla.com/firefox/">firefox</a> zu funktionieren. beim
internet explorer wird zwar der text ausgeblendet, allerdings kommt es nicht zum vertikalen
minimieren der box. 
<br />
und zu guter letzt kann man ab jetzt auch sehen, was ich denn gerade höre. das liegt
an einer feinen <a href="http://www.it99.org/axl/PermaLink,guid,bc83dd4d-4805-45b5-8bdb-5ae400e726fe.aspx">makro-erweiterung
von alex</a>, die sich per webservice mit <a href="http://www.last.fm/user/marci0811/">last.fm</a> verbindet
und meine aktuell gespielten titel anzeigt.<br /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=72a345eb-61eb-4b99-902c-6f5569fa5658" /></body>
      <title>neue buttons</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,72a345eb-61eb-4b99-902c-6f5569fa5658.aspx</guid>
      <link>http://pixelplastic.de/2006/01/27/neueButtons.aspx</link>
      <pubDate>Fri, 27 Jan 2006 12:09:01 GMT</pubDate>
      <description>aufmerksame beobachter und regelmäßge besucher haben es sicher schon bemerkt: da links in meiner sidebar (auf der &lt;a href="http://blog.pixelplastic.de/"&gt;webseite
meines blogs&lt;/a&gt;) findet man seit gestern neue buttons für allerlei links.&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/newbuttons.png" border="0"&gt;
&lt;br&gt;
&lt;br&gt;
daneben haben sich innerhalb der sidebarboxen noch kleine minus (&lt;img src="content/binary/icon.minus.gif" border="0"&gt;)
und plus (&lt;img src="content/binary/icon.plus.gif" border="0"&gt;) buttons eingeschlichen.
mit diesen kann man nun locker flockig die boxen auf und zu klappen. nur hab ich es
leider noch nicht hinbekommen, dass sich der zustand irgendwie cookie tschechisch
abspeichern läßt. ausserdem scheint das verkleinern der boxen nur mit unserem neuen
freund &lt;a href="http://www.mozilla.com/firefox/"&gt;firefox&lt;/a&gt; zu funktionieren. beim
internet explorer wird zwar der text ausgeblendet, allerdings kommt es nicht zum vertikalen
minimieren der box. 
&lt;br&gt;
und zu guter letzt kann man ab jetzt auch sehen, was ich denn gerade höre. das liegt
an einer feinen &lt;a href="http://www.it99.org/axl/PermaLink,guid,bc83dd4d-4805-45b5-8bdb-5ae400e726fe.aspx"&gt;makro-erweiterung
von alex&lt;/a&gt;, die sich per webservice mit &lt;a href="http://www.last.fm/user/marci0811/"&gt;last.fm&lt;/a&gt; verbindet
und meine aktuell gespielten titel anzeigt.&lt;br&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=72a345eb-61eb-4b99-902c-6f5569fa5658" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,72a345eb-61eb-4b99-902c-6f5569fa5658.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=611873d3-cf20-407f-ae38-0e61c01a05df</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,611873d3-cf20-407f-ae38-0e61c01a05df.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,611873d3-cf20-407f-ae38-0e61c01a05df.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=611873d3-cf20-407f-ae38-0e61c01a05df</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
da ich gerade dabei war eine e-mail an nadine (meine anlaufstelle in bangkok)
zu verfassen bin ich wieder auf den artikel im <a href="http://www.ncithai.com/bkkmetro/">metro-magazin</a> gekommen.
als ich im august 2005 in <a href="http://blog.pixelplastic.de/PermaLink,guid,c1d0bca4-1e0e-4afe-b9f7-a7a95992a8f8.aspx">suedostasien</a> war
hatte nadine ein interview mit <a href="http://www.cgmoore.com/">christopher g. moore</a> zu
fuehren. da ich gerade vor ort war konnte ich gleich die passenden bilder fuer den
artikel schiessen. schade, dass mein name nicht im magazin auftaucht. hier der zweiseitige
artikel:
</p>
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/interview01_small.jpg" border="0" />
          <br />
          <a href="http://blog.pixelplastic.de/content/binary/interview01.jpg">interview01.jpg
(417,24 KB)</a>
        </p>
        <p>
          <br />
          <img src="http://blog.pixelplastic.de/content/binary/interview02_small.jpg" border="0" />
          <br />
          <a href="http://blog.pixelplastic.de/content/binary/interview02.jpg">interview02.jpg
(347,82 KB)</a>
        </p>
        <p>
 
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=611873d3-cf20-407f-ae38-0e61c01a05df" />
      </body>
      <title>meine photos im bangkoker metro magazin</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,611873d3-cf20-407f-ae38-0e61c01a05df.aspx</guid>
      <link>http://pixelplastic.de/2006/01/23/meinePhotosImBangkokerMetroMagazin.aspx</link>
      <pubDate>Mon, 23 Jan 2006 11:15:31 GMT</pubDate>
      <description>&lt;p&gt;
da ich gerade dabei war eine e-mail an nadine&amp;nbsp;(meine anlaufstelle in bangkok)
zu verfassen bin ich wieder auf den artikel im &lt;a href="http://www.ncithai.com/bkkmetro/"&gt;metro-magazin&lt;/a&gt; gekommen.
als ich im august&amp;nbsp;2005 in &lt;a href="http://blog.pixelplastic.de/PermaLink,guid,c1d0bca4-1e0e-4afe-b9f7-a7a95992a8f8.aspx"&gt;suedostasien&lt;/a&gt; war
hatte nadine ein interview mit &lt;a href="http://www.cgmoore.com/"&gt;christopher g. moore&lt;/a&gt; zu
fuehren. da ich gerade vor ort war konnte ich gleich die passenden bilder fuer den
artikel schiessen. schade, dass mein name nicht im magazin auftaucht. hier der zweiseitige
artikel:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/interview01_small.jpg" border=0&gt;
&lt;br&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/interview01.jpg"&gt;interview01.jpg
(417,24 KB)&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;br&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/interview02_small.jpg" border=0&gt;
&lt;br&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/interview02.jpg"&gt;interview02.jpg
(347,82 KB)&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=611873d3-cf20-407f-ae38-0e61c01a05df" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,611873d3-cf20-407f-ae38-0e61c01a05df.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=5ccef472-6d03-4b3f-9fb1-e7631d8bb9d8</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,5ccef472-6d03-4b3f-9fb1-e7631d8bb9d8.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,5ccef472-6d03-4b3f-9fb1-e7631d8bb9d8.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=5ccef472-6d03-4b3f-9fb1-e7631d8bb9d8</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
gestern hatte ich mir mit christiane nach absolvierter prüfung und leckerem
sektfrühstück überlegt, im leipziger hauptbahnhof die ausstellung der besten <a href="http://www.worldpressphoto.nl/" target="_blank">world
press fotos 2005</a> anzuschauen. neben vielen guten arbeiten hatten es mir vor allem
die bilder von <a href="http://www.davidburnett.com/" target="_blank">david burnett</a> angetan.
wunderschöne optik und motivwahl: auf den ersten blick glaubt man aufnahmen einer
nachgebauten szene im modellbaumaßstab zu sehen. erst auf den zweiten blick erkennt
man die realität des bildes. ich habe mir erlaubt hier vier bilder von seiner
webseite abzubilden. das copyright liegt ausdrücklich bei david burnett:
</p>
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/davidburnett54087.jpg" border="0" />
          <br />
David Burnett (Quelle: <a href="http://www.davidburnett.com/fmsetgallery.html?gallery=Olympics%20-%202004" target="_blank">http://www.davidburnett.com/</a>)
</p>
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/davidburnett54090.jpg" border="0" />
          <br />
David Burnett (Quelle: <a href="http://www.davidburnett.com/fmsetgallery.html?gallery=Olympics%20-%202004" target="_blank">http://www.davidburnett.com/</a>)
</p>
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/davidburnett54101.jpg" border="0" />
          <br />
David Burnett (Quelle: <a href="http://www.davidburnett.com/fmsetgallery.html?gallery=Olympics%20-%202004" target="_blank">http://www.davidburnett.com/</a>)
</p>
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/davidburnett54089.jpg" border="0" />
          <br />
David Burnett (Quelle: <a href="http://www.davidburnett.com/fmsetgallery.html?gallery=Olympics%20-%202004" target="_blank">http://www.davidburnett.com/</a>)
</p>
        <p>
bleibt nur die frage, wie er das hinbekommen hat. 
</p>
        <p>
kritik: mit der ausstellung selber war ich nicht sehr zufrieden. zum einen war
die umgebung viel zu hektisch, zum anderen die beleuchtung nicht gut. sicher erreicht
man an diesem platz ein grosses publikum. will man sich das ganze aber entspannt anschauen
verdirbt das ambiente die stimmung. ausserdem waren es zu viele bilder auf einmal.
ich war mit christiane über eine stunde unterwegs, um die 200 abbildungen betrachten
und den daneben stehenden text lesen zu können. zu guter letzt viel mir noch die teilweise
schlechte qualität der bilder auf, was sicher nicht auf das photografische können
der journalisten zurückzuführen ist.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5ccef472-6d03-4b3f-9fb1-e7631d8bb9d8" />
      </body>
      <title>world press photo 2005</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,5ccef472-6d03-4b3f-9fb1-e7631d8bb9d8.aspx</guid>
      <link>http://pixelplastic.de/2006/01/22/worldPressPhoto2005.aspx</link>
      <pubDate>Sun, 22 Jan 2006 12:02:34 GMT</pubDate>
      <description>&lt;p&gt;
gestern hatte&amp;nbsp;ich mir mit christiane nach absolvierter prüfung&amp;nbsp;und&amp;nbsp;leckerem
sektfrühstück überlegt, im leipziger hauptbahnhof die ausstellung der besten &lt;a href="http://www.worldpressphoto.nl/" target=_blank&gt;world
press fotos 2005&lt;/a&gt; anzuschauen. neben vielen guten arbeiten hatten es mir vor allem
die bilder von &lt;a href="http://www.davidburnett.com/" target=_blank&gt;david burnett&lt;/a&gt; angetan.
wunderschöne optik und motivwahl: auf den ersten blick glaubt man aufnahmen einer
nachgebauten szene im modellbaumaßstab zu sehen. erst auf den zweiten blick erkennt
man die realität des bildes. ich habe mir&amp;nbsp;erlaubt&amp;nbsp;hier vier bilder von seiner
webseite abzubilden. das copyright liegt ausdrücklich bei david burnett:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/davidburnett54087.jpg" border=0&gt;
&lt;br&gt;
David Burnett (Quelle: &lt;a href="http://www.davidburnett.com/fmsetgallery.html?gallery=Olympics%20-%202004" target=_blank&gt;http://www.davidburnett.com/&lt;/a&gt;)
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/davidburnett54090.jpg" border=0&gt;
&lt;br&gt;
David Burnett (Quelle: &lt;a href="http://www.davidburnett.com/fmsetgallery.html?gallery=Olympics%20-%202004" target=_blank&gt;http://www.davidburnett.com/&lt;/a&gt;)
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/davidburnett54101.jpg" border=0&gt;
&lt;br&gt;
David Burnett (Quelle: &lt;a href="http://www.davidburnett.com/fmsetgallery.html?gallery=Olympics%20-%202004" target=_blank&gt;http://www.davidburnett.com/&lt;/a&gt;)
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/davidburnett54089.jpg" border=0&gt;
&lt;br&gt;
David Burnett (Quelle: &lt;a href="http://www.davidburnett.com/fmsetgallery.html?gallery=Olympics%20-%202004" target=_blank&gt;http://www.davidburnett.com/&lt;/a&gt;)
&lt;/p&gt;
&lt;p&gt;
bleibt nur die frage, wie er das hinbekommen hat. 
&lt;/p&gt;
&lt;p&gt;
kritik: mit der&amp;nbsp;ausstellung selber war ich nicht sehr zufrieden. zum einen war
die umgebung viel zu hektisch, zum anderen die beleuchtung nicht gut. sicher erreicht
man an diesem platz ein grosses publikum. will man sich das ganze aber entspannt anschauen
verdirbt das ambiente die stimmung. ausserdem waren es zu viele bilder auf einmal.
ich war mit christiane über eine stunde unterwegs, um die 200 abbildungen betrachten
und den daneben stehenden text lesen zu können. zu guter letzt viel mir noch die teilweise
schlechte qualität der bilder auf, was sicher nicht auf das photografische können
der journalisten zurückzuführen ist.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5ccef472-6d03-4b3f-9fb1-e7631d8bb9d8" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,5ccef472-6d03-4b3f-9fb1-e7631d8bb9d8.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=c8511d49-1f9e-42c0-a10e-c6775d5c985d</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,c8511d49-1f9e-42c0-a10e-c6775d5c985d.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,c8511d49-1f9e-42c0-a10e-c6775d5c985d.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=c8511d49-1f9e-42c0-a10e-c6775d5c985d</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
nach langem kampf mit dem von mircosoft undokumentierten format der UIFILE.txt bin
ich am schluss doch noch zu einem anschaulichen ergebnis fuer meinen neuen anmeldebildschirm
gekommen. 
</p>
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/powerbutton.jpg" border="0" />
          <br />
animierter button um den ausschalten-dialog anzuzeigen
</p>
        <p>
          <a href="http://blog.pixelplastic.de/content/binary/logon_full.jpg" target="_blank">
            <img src="http://blog.pixelplastic.de/content/binary/logon_thumb.jpg" border="0" />
          </a>
          <br />
anmeldebildschirm im ganzen.
</p>
        <p>
download der sourcen:<br /><a href="http://blog.pixelplastic.de/content/binary/pixelplastic.zip">pixelplastic.zip
(175 KB)</a><br /></p>
        <p>
um den gewohnten anmeldebildschirm wechseln zu koennen wird zusaetzlich <a href="http://www.stardock.com/products/logonstudio/" target="_blank">LogonStudio</a> benoetigt. die
installation gestaltet sich dann wie folgt:
</p>
        <ol>
          <li>
LogonStudio installieren 
</li>
          <li>
meine sourcen im installationsverzeichnis von LogonStudio entpacken 
</li>
          <li>
nach dem anschliessenden start von LogonStudio steht das pixelplastic layout zur verfuegung</li>
        </ol>
        <p>
meine verwendeten resourcen fuer die bearbeitung der UIFILE.txt:
</p>
        <ul>
          <li>
            <a href="http://webpages.charter.net/joolsie/LogonScreens.htm" target="_blank">Windows
XP Logon UIFile Secrets</a> (Paul Andrews) 
</li>
          <li>
            <a href="http://bfarber.com/index.php?showforum=8&amp;prune_day=100" target="_blank">bfarber.com</a>
          </li>
        </ul>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c8511d49-1f9e-42c0-a10e-c6775d5c985d" />
      </body>
      <title>logonscreen</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,c8511d49-1f9e-42c0-a10e-c6775d5c985d.aspx</guid>
      <link>http://pixelplastic.de/2006/01/15/logonscreen.aspx</link>
      <pubDate>Sun, 15 Jan 2006 14:54:16 GMT</pubDate>
      <description>&lt;p&gt;
nach langem kampf mit dem von mircosoft undokumentierten format der UIFILE.txt bin
ich am schluss doch noch zu einem anschaulichen ergebnis fuer meinen neuen anmeldebildschirm
gekommen. 
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/powerbutton.jpg" border="0"&gt;
&lt;br&gt;
animierter button um den ausschalten-dialog anzuzeigen
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/logon_full.jpg" target="_blank"&gt;&lt;img src="http://blog.pixelplastic.de/content/binary/logon_thumb.jpg" border="0"&gt;&lt;/a&gt;
&lt;br&gt;
anmeldebildschirm im ganzen.
&lt;/p&gt;
&lt;p&gt;
download der sourcen:&lt;br&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/pixelplastic.zip"&gt;pixelplastic.zip
(175 KB)&lt;/a&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;
um den gewohnten anmeldebildschirm wechseln zu koennen&amp;nbsp;wird zusaetzlich &lt;a href="http://www.stardock.com/products/logonstudio/" target="_blank"&gt;LogonStudio&lt;/a&gt;&amp;nbsp;benoetigt.&amp;nbsp;die
installation gestaltet sich dann&amp;nbsp;wie folgt:
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
LogonStudio installieren 
&lt;/li&gt;
&lt;li&gt;
meine sourcen im installationsverzeichnis von LogonStudio entpacken 
&lt;/li&gt;
&lt;li&gt;
nach dem anschliessenden start von LogonStudio steht das pixelplastic layout zur verfuegung&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
meine verwendeten resourcen fuer die bearbeitung&amp;nbsp;der UIFILE.txt:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://webpages.charter.net/joolsie/LogonScreens.htm" target="_blank"&gt;Windows
XP Logon UIFile Secrets&lt;/a&gt;&amp;nbsp;(Paul Andrews) 
&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://bfarber.com/index.php?showforum=8&amp;amp;prune_day=100" target="_blank"&gt;bfarber.com&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c8511d49-1f9e-42c0-a10e-c6775d5c985d" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,c8511d49-1f9e-42c0-a10e-c6775d5c985d.aspx</comments>
      <category>art</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=049685d1-140a-4335-9bf2-5a84a5851a9f</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,049685d1-140a-4335-9bf2-5a84a5851a9f.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,049685d1-140a-4335-9bf2-5a84a5851a9f.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=049685d1-140a-4335-9bf2-5a84a5851a9f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <p>
heute gab es in exphysik nach einer formelherleitung den hinweis von prof. kärger,
dass physikalische größen nicht ohne grund mal mit groß- und mal mit kleinbustaben
abgekürzt werden. hintergrunde der ganzen sache:<br />
basiert die physikalische einheit auf dem namen einer wissenschaftlichen person, wird
die einheit mit großbuchstaben dargestellt. hier einige beispiele:
</p>
        <ul>
          <li>
            <b>Pa</b> = <a href="http://de.wikipedia.org/wiki/Pascal_%28Einheit%29" target="_blank">Pascal</a> (<a href="http://de.wikipedia.org/wiki/Blaise_Pascal" target="_blank">Blaise
Pascal</a>)</li>
          <li>
            <b>W</b> = <a href="http://de.wikipedia.org/wiki/Watt_%28Einheit%29" target="_blank">Watt</a> (<a href="http://de.wikipedia.org/wiki/James_Watt" target="_blank">James
Watt</a>)</li>
          <li>
            <b>N</b> = <a href="http://de.wikipedia.org/wiki/Newton_%28Einheit%29" target="_blank">Newton</a> (<a href="http://de.wikipedia.org/wiki/Isaac_Newton" target="_blank">Isaac
Newton</a>)</li>
          <br />
          <li>
            <b>l</b> = <a href="http://de.wikipedia.org/wiki/Liter" target="_blank">Liter</a></li>
          <li>
            <b>s</b> = <a href="http://de.wikipedia.org/wiki/Sekunde" target="_blank">Sekunde</a></li>
          <li>
            <b>m</b> = <a href="http://de.wikipedia.org/wiki/Meter" target="_blank">Meter</a></li>
        </ul>
wieder was gelernt.<br /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=049685d1-140a-4335-9bf2-5a84a5851a9f" /></body>
      <title>physikalische einheiten</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,049685d1-140a-4335-9bf2-5a84a5851a9f.aspx</guid>
      <link>http://pixelplastic.de/2006/01/09/physikalischeEinheiten.aspx</link>
      <pubDate>Mon, 09 Jan 2006 15:19:41 GMT</pubDate>
      <description>&lt;p&gt;
&lt;/p&gt;
&lt;p&gt;
heute gab es in exphysik nach einer formelherleitung den hinweis von prof. kärger,
dass physikalische größen nicht ohne grund mal mit groß- und mal mit kleinbustaben
abgekürzt werden. hintergrunde der ganzen sache:&lt;br&gt;
basiert die physikalische einheit auf dem namen einer wissenschaftlichen person, wird
die einheit mit großbuchstaben dargestellt. hier einige beispiele:
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;b&gt;Pa&lt;/b&gt; = &lt;a href="http://de.wikipedia.org/wiki/Pascal_%28Einheit%29" target="_blank"&gt;Pascal&lt;/a&gt; (&lt;a href="http://de.wikipedia.org/wiki/Blaise_Pascal" target="_blank"&gt;Blaise
Pascal&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;W&lt;/b&gt; = &lt;a href="http://de.wikipedia.org/wiki/Watt_%28Einheit%29" target="_blank"&gt;Watt&lt;/a&gt; (&lt;a href="http://de.wikipedia.org/wiki/James_Watt" target="_blank"&gt;James
Watt&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;N&lt;/b&gt; = &lt;a href="http://de.wikipedia.org/wiki/Newton_%28Einheit%29" target="_blank"&gt;Newton&lt;/a&gt; (&lt;a href="http://de.wikipedia.org/wiki/Isaac_Newton" target="_blank"&gt;Isaac
Newton&lt;/a&gt;)&lt;/li&gt;
&lt;br&gt;
&lt;li&gt;
&lt;b&gt;l&lt;/b&gt; = &lt;a href="http://de.wikipedia.org/wiki/Liter" target="_blank"&gt;Liter&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;s&lt;/b&gt; = &lt;a href="http://de.wikipedia.org/wiki/Sekunde" target="_blank"&gt;Sekunde&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;b&gt;m&lt;/b&gt; = &lt;a href="http://de.wikipedia.org/wiki/Meter" target="_blank"&gt;Meter&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
wieder was gelernt.&lt;br&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=049685d1-140a-4335-9bf2-5a84a5851a9f" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,049685d1-140a-4335-9bf2-5a84a5851a9f.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=9ae7dc79-5ec3-45ae-9099-6dda49de76f9</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,9ae7dc79-5ec3-45ae-9099-6dda49de76f9.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,9ae7dc79-5ec3-45ae-9099-6dda49de76f9.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=9ae7dc79-5ec3-45ae-9099-6dda49de76f9</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.weg-mit-kevin.de" target="_blank">
          <img src="http://www.weg-mit-kevin.de/gfx/wmk_banner/wmk_banner_05.gif" alt="weg mit Kevin" border="0" height="60" width="468" />
        </a>
        <br />
no comment<img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=9ae7dc79-5ec3-45ae-9099-6dda49de76f9" /></body>
      <title>weg mit kevin</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,9ae7dc79-5ec3-45ae-9099-6dda49de76f9.aspx</guid>
      <link>http://pixelplastic.de/2006/01/08/wegMitKevin.aspx</link>
      <pubDate>Sun, 08 Jan 2006 15:22:49 GMT</pubDate>
      <description>&lt;a href="http://www.weg-mit-kevin.de" target="_blank"&gt;&lt;img src="http://www.weg-mit-kevin.de/gfx/wmk_banner/wmk_banner_05.gif" alt="weg mit Kevin" border="0" height="60" width="468"&gt;&lt;/a&gt; 
&lt;br&gt;
no comment&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=9ae7dc79-5ec3-45ae-9099-6dda49de76f9" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,9ae7dc79-5ec3-45ae-9099-6dda49de76f9.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=98e561df-b484-4956-84bd-07697d17be5c</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,98e561df-b484-4956-84bd-07697d17be5c.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,98e561df-b484-4956-84bd-07697d17be5c.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=98e561df-b484-4956-84bd-07697d17be5c</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
durch die ganze nachbereitung der südostasienbilder mussten einige alben auf der strecke
bleiben. nun hab ich mich aber durchgerungen und hab die bilder des letzten jahres
fast komplett durchgeschaut und einsortiert. hier der überblick zu den neuen alten
alben.
</p>
        <p>
          <img src="http://www.pixelplastic.de/images/20051209%20-%20Fressabend%20bei%20Diana/medium/_MG_3955.jpg" />
          <br />
          <a href="http://www.pixelplastic.de/default.aspx?initialAlbum=e390260a-63ee-4a04-be25-71270a2877e7&amp;initialPhoto=d3f9f6cb-1a59-4986-9aed-d6f0f07d3cb7" target="_blank">
            <b>20051209
- Fressabend bei Diana</b>
          </a>
        </p>
        <p>
          <img src="http://www.pixelplastic.de/images/20051126%20-%20Weihnachtsmarkt%20mit%20Jörg/medium/_MG_3861.jpg" />
          <br />
          <a href="http://www.pixelplastic.de/default.aspx?initialAlbum=a8df2c0a-6347-47fb-ae88-41e28bda62b0&amp;initialPhoto=513b4c63-3586-4f01-ba4f-7949ed1fcb9b" target="_blank">
            <b>20051126
- Weihnachtsmarkt mit Jörg</b>
          </a>
        </p>
        <p>
          <img src="http://www.pixelplastic.de/images/20051112%20-%20Big%20in%20Berlin/medium/_MG_3770.jpg" />
          <img src="http://www.pixelplastic.de/images/20051112%20-%20Big%20in%20Berlin/medium/_MG_3782.jpg" />
          <br />
          <a href="http://www.pixelplastic.de/default.aspx?initialAlbum=1be50db5-84e0-448e-b7fc-19ef372ea1b2&amp;initialPhoto=5b9dbce3-ce24-49ba-a5aa-2bc8cd358b67" target="_blank">
            <b>20051112
- Big in Berlin</b>
          </a>
        </p>
        <p>
          <a href="http://www.pixelplastic.de/default.aspx?initialAlbum=868c0331-f581-4e70-9aea-be01f2e273aa&amp;initialPhoto=606aec83-e62e-4298-bd06-8ab484b6a081" target="_blank">
            <b>20051108
- Marcis geburtstag</b>
          </a>
        </p>
        <p>
 <img src="http://www.pixelplastic.de/images/20051031%20-%20WG-Ausflug%20nach%20Gera/medium/_MG_3641.jpg" /><img src="http://www.pixelplastic.de/images/20051031%20-%20WG-Ausflug%20nach%20Gera/medium/_MG_3643.jpg" /><img src="http://www.pixelplastic.de/images/20051031%20-%20WG-Ausflug%20nach%20Gera/medium/_MG_3651.jpg" /><br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=f3e1f565-921b-4362-a912-12fd4567ed2f&amp;initialPhoto=5e6af253-727d-4f31-b2bb-7b8d941f2e1d" target="_blank"><b>20051031
- WG-Ausflug nach Gera</b></a></p>
        <p>
          <img src="http://www.pixelplastic.de/images/20051027%20-%20Badminton%20mit%20Sonnenuntergang/medium/_MG_3238.jpg" />
          <br />
          <a href="http://www.pixelplastic.de/default.aspx?initialAlbum=8025cb80-1505-4b2c-8042-034f66d75103&amp;initialPhoto=4e8bc811-e32c-45a1-8311-a41437f50f3c" target="_blank">
            <b>20051027
- Badminton mit Sonnenuntergang</b>
          </a>
        </p>
        <p>
          <img src="http://www.pixelplastic.de/images/20051024%20-%20Gesas%20Geburtstag/medium/_MG_3198.jpg" />
          <br />
          <a href="http://www.pixelplastic.de/default.aspx?initialAlbum=adf36d23-d742-4c6f-9800-4aa09ace75f4&amp;initialPhoto=61116bdd-a367-4100-869d-7ecd791ee76a" target="_blank">
            <b>20051024
- Gesas Geburtstag</b>
          </a>
        </p>
        <p>
          <img src="http://www.pixelplastic.de/images/20051014%20-%20Heikes%20Geburtstag%20at%20Fockeberg/medium/_MG_3125.jpg" />
          <br />
          <a href="http://www.pixelplastic.de/default.aspx?initialAlbum=484b5304-7f22-432d-a7b5-09296722f335&amp;initialPhoto=a1fb721e-b8c2-48e7-971c-179375e8e3b7" target="_blank">
            <b>20051014
- Heikes Geburtstag at Fockeberg</b>
          </a>
        </p>
        <p>
          <img src="http://www.pixelplastic.de/images/20051009%20-%20Heimspiel/medium/_MG_3081.jpg" />
          <br />
          <a href="http://www.pixelplastic.de/default.aspx?initialAlbum=60aae909-ea14-4b74-aff8-3a104a6ba88d&amp;initialPhoto=181fd608-4263-453e-8c58-948e73bca28f" target="_blank">
            <b>20051009
- Heimspiel</b>
          </a>
        </p>
        <p>
          <img src="http://www.pixelplastic.de/images/20051002%20-%20Hählegirls/medium/_MG_2842.jpg" />
          <br />
          <a href="http://www.pixelplastic.de/default.aspx?initialAlbum=bfae7e37-ca02-4c65-9f7e-6e6fd9a07c9d&amp;initialPhoto=164d4183-a5f4-482e-8c15-eabb38750a5d" target="_blank">
            <b>20051002
- Hählegirls</b>
          </a>
        </p>
        <p>
          <img src="http://www.pixelplastic.de/images/20050812%20-%20Kris%20zu%20besuch/medium/_MG_0404.jpg" />
          <br />
          <a href="http://www.pixelplastic.de/default.aspx?initialAlbum=1effce06-2fcf-43aa-8a05-3f8b93349c17&amp;initialPhoto=3b0be9a1-c35b-4096-8e80-cd56ad18c583" target="_blank">
            <b>20050812
- Kris zu besuch</b>
          </a>
        </p>
        <p>
          <img src="http://www.pixelplastic.de/images/20050810%20-%20Vegetarisches%20Kochefest/medium/_MG_0376.jpg" />
          <br />
          <a href="http://www.pixelplastic.de/default.aspx?initialAlbum=30105eff-135a-4362-bb97-219d16ded40d&amp;initialPhoto=d5f8195c-472f-4eca-95f1-5ce240247332" target="_blank">
            <b>20050810
- Vegetarisches Kochefest</b>
          </a>
        </p>
        <p>
          <a href="http://www.pixelplastic.de/default.aspx?initialAlbum=b3acf2fd-9e3f-48f9-a41c-7378cf416437&amp;initialPhoto=a7f24cb6-046f-4d35-a05d-a15e0398dcf3" target="_blank">
            <b>20050809
- Antje ihr geburtstag</b>
          </a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=98e561df-b484-4956-84bd-07697d17be5c" />
      </body>
      <title>tot geglaubte leben länger</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,98e561df-b484-4956-84bd-07697d17be5c.aspx</guid>
      <link>http://pixelplastic.de/2006/01/07/totGeglaubteLebenL%c3%a4nger.aspx</link>
      <pubDate>Sat, 07 Jan 2006 14:40:09 GMT</pubDate>
      <description>&lt;p&gt;
durch die ganze nachbereitung der südostasienbilder mussten einige alben auf der strecke
bleiben. nun hab ich mich aber durchgerungen und hab die bilder des letzten jahres
fast komplett durchgeschaut und einsortiert. hier der überblick zu den neuen alten
alben.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pixelplastic.de/images/20051209%20-%20Fressabend%20bei%20Diana/medium/_MG_3955.jpg"&gt;
&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=e390260a-63ee-4a04-be25-71270a2877e7&amp;amp;initialPhoto=d3f9f6cb-1a59-4986-9aed-d6f0f07d3cb7" target=_blank&gt;&lt;b&gt;20051209
- Fressabend bei Diana&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pixelplastic.de/images/20051126%20-%20Weihnachtsmarkt%20mit%20Jörg/medium/_MG_3861.jpg"&gt;
&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=a8df2c0a-6347-47fb-ae88-41e28bda62b0&amp;amp;initialPhoto=513b4c63-3586-4f01-ba4f-7949ed1fcb9b" target=_blank&gt;&lt;b&gt;20051126
- Weihnachtsmarkt mit Jörg&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pixelplastic.de/images/20051112%20-%20Big%20in%20Berlin/medium/_MG_3770.jpg"&gt; &lt;img src="http://www.pixelplastic.de/images/20051112%20-%20Big%20in%20Berlin/medium/_MG_3782.jpg"&gt;
&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=1be50db5-84e0-448e-b7fc-19ef372ea1b2&amp;amp;initialPhoto=5b9dbce3-ce24-49ba-a5aa-2bc8cd358b67" target=_blank&gt;&lt;b&gt;20051112
- Big in Berlin&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=868c0331-f581-4e70-9aea-be01f2e273aa&amp;amp;initialPhoto=606aec83-e62e-4298-bd06-8ab484b6a081" target=_blank&gt;&lt;b&gt;20051108
- Marcis geburtstag&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;&lt;img src="http://www.pixelplastic.de/images/20051031%20-%20WG-Ausflug%20nach%20Gera/medium/_MG_3641.jpg"&gt; &lt;img src="http://www.pixelplastic.de/images/20051031%20-%20WG-Ausflug%20nach%20Gera/medium/_MG_3643.jpg"&gt; &lt;img src="http://www.pixelplastic.de/images/20051031%20-%20WG-Ausflug%20nach%20Gera/medium/_MG_3651.jpg"&gt;
&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=f3e1f565-921b-4362-a912-12fd4567ed2f&amp;amp;initialPhoto=5e6af253-727d-4f31-b2bb-7b8d941f2e1d" target=_blank&gt;&lt;b&gt;20051031
- WG-Ausflug nach Gera&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pixelplastic.de/images/20051027%20-%20Badminton%20mit%20Sonnenuntergang/medium/_MG_3238.jpg"&gt;
&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=8025cb80-1505-4b2c-8042-034f66d75103&amp;amp;initialPhoto=4e8bc811-e32c-45a1-8311-a41437f50f3c" target=_blank&gt;&lt;b&gt;20051027
- Badminton mit Sonnenuntergang&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pixelplastic.de/images/20051024%20-%20Gesas%20Geburtstag/medium/_MG_3198.jpg"&gt;
&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=adf36d23-d742-4c6f-9800-4aa09ace75f4&amp;amp;initialPhoto=61116bdd-a367-4100-869d-7ecd791ee76a" target=_blank&gt;&lt;b&gt;20051024
- Gesas Geburtstag&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pixelplastic.de/images/20051014%20-%20Heikes%20Geburtstag%20at%20Fockeberg/medium/_MG_3125.jpg"&gt;
&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=484b5304-7f22-432d-a7b5-09296722f335&amp;amp;initialPhoto=a1fb721e-b8c2-48e7-971c-179375e8e3b7" target=_blank&gt;&lt;b&gt;20051014
- Heikes Geburtstag at Fockeberg&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pixelplastic.de/images/20051009%20-%20Heimspiel/medium/_MG_3081.jpg"&gt;
&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=60aae909-ea14-4b74-aff8-3a104a6ba88d&amp;amp;initialPhoto=181fd608-4263-453e-8c58-948e73bca28f" target=_blank&gt;&lt;b&gt;20051009
- Heimspiel&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pixelplastic.de/images/20051002%20-%20Hählegirls/medium/_MG_2842.jpg"&gt;
&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=bfae7e37-ca02-4c65-9f7e-6e6fd9a07c9d&amp;amp;initialPhoto=164d4183-a5f4-482e-8c15-eabb38750a5d" target=_blank&gt;&lt;b&gt;20051002
- Hählegirls&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pixelplastic.de/images/20050812%20-%20Kris%20zu%20besuch/medium/_MG_0404.jpg"&gt;
&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=1effce06-2fcf-43aa-8a05-3f8b93349c17&amp;amp;initialPhoto=3b0be9a1-c35b-4096-8e80-cd56ad18c583" target=_blank&gt;&lt;b&gt;20050812
- Kris zu besuch&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://www.pixelplastic.de/images/20050810%20-%20Vegetarisches%20Kochefest/medium/_MG_0376.jpg"&gt;
&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=30105eff-135a-4362-bb97-219d16ded40d&amp;amp;initialPhoto=d5f8195c-472f-4eca-95f1-5ce240247332" target=_blank&gt;&lt;b&gt;20050810
- Vegetarisches Kochefest&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=b3acf2fd-9e3f-48f9-a41c-7378cf416437&amp;amp;initialPhoto=a7f24cb6-046f-4d35-a05d-a15e0398dcf3" target=_blank&gt;&lt;b&gt;20050809
- Antje ihr geburtstag&lt;/b&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=98e561df-b484-4956-84bd-07697d17be5c" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,98e561df-b484-4956-84bd-07697d17be5c.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=b73fb548-721c-48ab-aace-73592d00b043</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,b73fb548-721c-48ab-aace-73592d00b043.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,b73fb548-721c-48ab-aace-73592d00b043.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=b73fb548-721c-48ab-aace-73592d00b043</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=f1302f3d-f898-4732-8294-8aa0ad0573ea&amp;initialPhoto=f53a3fe6-d9e9-414b-ae12-db1c93f17212" target="_blank"><b>20060103
- Käsefondue bei Pipe</b></a>.<br /><br /><img src="http://www.pixelplastic.de/images/20060103 - Käsefondue bei Pipe/medium/_MG_4843.jpg" /><br /><br /><img src="http://www.pixelplastic.de/images/20060103 - Käsefondue bei Pipe/medium/_MG_4840.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b73fb548-721c-48ab-aace-73592d00b043" /></body>
      <title>20060103 - Käsefondue bei Pipe</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,b73fb548-721c-48ab-aace-73592d00b043.aspx</guid>
      <link>http://pixelplastic.de/2006/01/03/20060103K%c3%a4sefondueBeiPipe.aspx</link>
      <pubDate>Tue, 03 Jan 2006 14:02:05 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br&gt;
&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=f1302f3d-f898-4732-8294-8aa0ad0573ea&amp;amp;initialPhoto=f53a3fe6-d9e9-414b-ae12-db1c93f17212" target=_blank&gt;&lt;b&gt;20060103
- Käsefondue bei Pipe&lt;/b&gt;&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060103 - Käsefondue bei Pipe/medium/_MG_4843.jpg"&gt;
&lt;br&gt;
&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20060103 - Käsefondue bei Pipe/medium/_MG_4840.jpg"&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b73fb548-721c-48ab-aace-73592d00b043" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,b73fb548-721c-48ab-aace-73592d00b043.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=4aafa607-bc39-4910-b539-1d1ab97f25a2</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,4aafa607-bc39-4910-b539-1d1ab97f25a2.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,4aafa607-bc39-4910-b539-1d1ab97f25a2.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=4aafa607-bc39-4910-b539-1d1ab97f25a2</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">das neue jahr fängt gut an: soeben sind
alle bilder meiner südostasienreise im web gelandet und stehen unter bekannter adresse
zum anschauen zur verfügung.<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=48796372-f733-4146-a397-38070782888c&amp;initialPhoto=2fba787b-40a0-4ec7-80ae-fed56d5946d3" target="_blank"><b>20050814
- Suedostasien - Anreise</b></a>.<br /><img src="http://www.pixelplastic.de/images/20050925 - Suedostasien - Bangkok - Pills, Bowling/medium/_MG_2669.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=4aafa607-bc39-4910-b539-1d1ab97f25a2" /></body>
      <title>bilder von inle lake, ko mak und anderen orten meiner südostasientour</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,4aafa607-bc39-4910-b539-1d1ab97f25a2.aspx</guid>
      <link>http://pixelplastic.de/2006/01/01/bilderVonInleLakeKoMakUndAnderenOrtenMeinerS%c3%bcdostasientour.aspx</link>
      <pubDate>Sun, 01 Jan 2006 23:02:02 GMT</pubDate>
      <description>das neue jahr fängt gut an: soeben sind alle bilder meiner südostasienreise im web gelandet und stehen unter bekannter adresse zum anschauen zur verfügung.&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=48796372-f733-4146-a397-38070782888c&amp;amp;initialPhoto=2fba787b-40a0-4ec7-80ae-fed56d5946d3" target=_blank&gt;&lt;b&gt;20050814
- Suedostasien - Anreise&lt;/b&gt;&lt;/a&gt;.&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20050925 - Suedostasien - Bangkok - Pills, Bowling/medium/_MG_2669.jpg"&gt; &lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=4aafa607-bc39-4910-b539-1d1ab97f25a2" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,4aafa607-bc39-4910-b539-1d1ab97f25a2.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=a39b5950-4d18-4e59-afe0-0103c195cda2</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,a39b5950-4d18-4e59-afe0-0103c195cda2.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,a39b5950-4d18-4e59-afe0-0103c195cda2.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=a39b5950-4d18-4e59-afe0-0103c195cda2</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=1ef5f40b-cda1-4ba1-9c03-a918ce218fd4&amp;initialPhoto=f860c277-2465-4ea7-ae7b-9c86ea6fbaa2" target="_blank"><b>20051231
- Silvester</b></a>.<br /><img src="http://www.pixelplastic.de/images/20051231 - Silvester/medium/_MG_4513.jpg" /><br /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=a39b5950-4d18-4e59-afe0-0103c195cda2" /></body>
      <title>20051231 - Silvester</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,a39b5950-4d18-4e59-afe0-0103c195cda2.aspx</guid>
      <link>http://pixelplastic.de/2005/12/31/20051231Silvester.aspx</link>
      <pubDate>Sat, 31 Dec 2005 14:01:44 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=1ef5f40b-cda1-4ba1-9c03-a918ce218fd4&amp;amp;initialPhoto=f860c277-2465-4ea7-ae7b-9c86ea6fbaa2" target="_blank"&gt;&lt;b&gt;20051231
- Silvester&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20051231 - Silvester/medium/_MG_4513.jpg" /&gt;
&lt;br /&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=a39b5950-4d18-4e59-afe0-0103c195cda2" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,a39b5950-4d18-4e59-afe0-0103c195cda2.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=b672ea11-9830-4742-8a5e-a78225e51423</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,b672ea11-9830-4742-8a5e-a78225e51423.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,b672ea11-9830-4742-8a5e-a78225e51423.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=b672ea11-9830-4742-8a5e-a78225e51423</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=8024b57c-9487-4a27-b2a3-f990b37c9ae9&amp;initialPhoto=7c8c8098-355f-4ae5-a125-fcf1b676d79e" target="_blank"><b>20051223
- Susis Geburtstag</b></a>.<br /><img src="http://www.pixelplastic.de/images/20051223 - Susis Geburtstag/medium/_MG_4133.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b672ea11-9830-4742-8a5e-a78225e51423" /></body>
      <title>20051223 - Susis Geburtstag</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,b672ea11-9830-4742-8a5e-a78225e51423.aspx</guid>
      <link>http://pixelplastic.de/2005/12/23/20051223SusisGeburtstag.aspx</link>
      <pubDate>Fri, 23 Dec 2005 14:01:21 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=8024b57c-9487-4a27-b2a3-f990b37c9ae9&amp;amp;initialPhoto=7c8c8098-355f-4ae5-a125-fcf1b676d79e" target=_blank&gt;&lt;b&gt;20051223
- Susis Geburtstag&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;img src="http://www.pixelplastic.de/images/20051223 - Susis Geburtstag/medium/_MG_4133.jpg" /&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b672ea11-9830-4742-8a5e-a78225e51423" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,b672ea11-9830-4742-8a5e-a78225e51423.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=d4812fcf-b269-4a99-b4e1-949d58470f92</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,d4812fcf-b269-4a99-b4e1-949d58470f92.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,d4812fcf-b269-4a99-b4e1-949d58470f92.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=d4812fcf-b269-4a99-b4e1-949d58470f92</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <strong>Zutaten</strong>
        </p>
        <p>
3 Zwiebeln<br />
3 Knoblauchzehen (1/4 Knolle)<br />
1 Ingwerwurzel (50g) 
</p>
        <p>
1/2 Dose Kichererbsen<br />
1/2 Dose Kidneybohnen<br />
1/2 Dose Mais 
</p>
        <p>
1 Pkg Physalis<br />
150ml Wasser<br />
4 EL Olivenöl 
</p>
        <p>
3 EL Honig<br />
1 Prise Koriander<br />
1 TL Salz<br />
1 Prise Pfeffer<br />
2 EL Zucker<br />
1/2 TL Chillipulver<br />
1 TL Currypulver 
</p>
        <p>
          <strong>Zubereitung</strong>
        </p>
        <p>
Zwiebeln, Knoblauchzehen, Ingwer schnibbeln und im Öl anschwitzen. Die restlichen
Zutaten dazu geben und unter gelegentlichem Rühren reduzieren lassen, bis die Flüssigkeit
leicht sämig wird. Dann alles pürieren und ev. mit o.g. Gewürzen abschmecken.
</p>
        <p>
Et voila:
</p>
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/_MG_3967.JPG" border="0" />
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d4812fcf-b269-4a99-b4e1-949d58470f92" />
      </body>
      <title>Physalis-Ingwer-Bohnen-Aufstrich</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,d4812fcf-b269-4a99-b4e1-949d58470f92.aspx</guid>
      <link>http://pixelplastic.de/2005/12/16/PhysalisIngwerBohnenAufstrich.aspx</link>
      <pubDate>Fri, 16 Dec 2005 01:59:39 GMT</pubDate>
      <description>&lt;p&gt;
&lt;strong&gt;Zutaten&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
3 Zwiebeln&lt;br&gt;
3 Knoblauchzehen (1/4 Knolle)&lt;br&gt;
1 Ingwerwurzel (50g) 
&lt;/p&gt;
&lt;p&gt;
1/2 Dose Kichererbsen&lt;br&gt;
1/2 Dose Kidneybohnen&lt;br&gt;
1/2 Dose Mais 
&lt;/p&gt;
&lt;p&gt;
1 Pkg Physalis&lt;br&gt;
150ml Wasser&lt;br&gt;
4 EL Olivenöl 
&lt;/p&gt;
&lt;p&gt;
3 EL Honig&lt;br&gt;
1 Prise Koriander&lt;br&gt;
1 TL Salz&lt;br&gt;
1 Prise Pfeffer&lt;br&gt;
2 EL Zucker&lt;br&gt;
1/2 TL Chillipulver&lt;br&gt;
1 TL Currypulver 
&lt;/p&gt;
&lt;p&gt;
&lt;strong&gt;Zubereitung&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
Zwiebeln, Knoblauchzehen, Ingwer schnibbeln und im Öl anschwitzen. Die restlichen
Zutaten dazu geben und unter gelegentlichem Rühren reduzieren lassen, bis die Flüssigkeit
leicht sämig wird. Dann alles pürieren und ev. mit o.g. Gewürzen abschmecken.
&lt;/p&gt;
&lt;p&gt;
Et voila:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/_MG_3967.JPG" border=0&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d4812fcf-b269-4a99-b4e1-949d58470f92" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,d4812fcf-b269-4a99-b4e1-949d58470f92.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=0be07370-ec93-4560-bd14-86e49d9f092a</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,0be07370-ec93-4560-bd14-86e49d9f092a.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,0be07370-ec93-4560-bd14-86e49d9f092a.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=0be07370-ec93-4560-bd14-86e49d9f092a</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
im moment arbeite ich noch an dem morgigen photoabend. bei der erstellung eines panoramas
mittels <a href="http://panotools.sourceforge.net/" target="_blank">PanoTools</a> und <a href="http://hugin.sourceforge.net/" target="_blank">Hugin</a> bin
ich derweil auf ein problem gestossen. im überlappenden bereich zweier bilder standen
zwei verschieden personen. das belichtungs-tool <a href="http://enblend.sourceforge.net/" target="_blank">enblend</a> hatte
nach dem <a href="http://de.wikipedia.org/wiki/Stitching" target="_blank">stitchen</a> damit
probleme. beim zusammenkleben der bilder entstanden zerschnibbelte geister. durch
verändern von einstellungen in meinem hugin-projekt. konnte ich keine verbesserung
ereichen. auch der versuch die bilder zuerst zu beschneiden und daraus das panorama
zu erstellen scheiterte.
</p>
        <p>
die lösung fand ich beim <a href="http://people.freenet.de/martin_wehner/Tutorial/panorama.html" target="_blank">tutorial
von Martin Wehner</a>. dort ist folgendes beschrieben: das panorama wie gewohnt mit
hugin und panotools erstellen und als "mehrere TIFFs" ausgeben lassen (also ohne anschliessendes
enblend). danach werden alphakanäle der tiffs bearbeitet, bei denen die überlappungsprobleme
bestehen. anschliessend kann mit enblend von der kommandozeile aus überblendet und
zusammengefügt werden:
</p>
        <p>
          <code>enblend.exe -o enblended.tif panorama0000.tif panorama0001.tif</code>
        </p>
        <p>
das ganze ist detailiert in oben genanntem tutorial noch einmal beschrieben.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0be07370-ec93-4560-bd14-86e49d9f092a" />
      </body>
      <title>geister bei panorama erstellung</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,0be07370-ec93-4560-bd14-86e49d9f092a.aspx</guid>
      <link>http://pixelplastic.de/2005/12/02/geisterBeiPanoramaErstellung.aspx</link>
      <pubDate>Fri, 02 Dec 2005 17:07:33 GMT</pubDate>
      <description>&lt;p&gt;
im moment arbeite ich noch an dem morgigen photoabend. bei der erstellung eines panoramas
mittels &lt;a href="http://panotools.sourceforge.net/" target=_blank&gt;PanoTools&lt;/a&gt; und &lt;a href="http://hugin.sourceforge.net/" target=_blank&gt;Hugin&lt;/a&gt; bin
ich derweil auf ein problem gestossen. im überlappenden bereich zweier bilder standen
zwei verschieden personen. das belichtungs-tool &lt;a href="http://enblend.sourceforge.net/" target=_blank&gt;enblend&lt;/a&gt; hatte
nach dem &lt;a href="http://de.wikipedia.org/wiki/Stitching" target=_blank&gt;stitchen&lt;/a&gt;&amp;nbsp;damit
probleme. beim zusammenkleben der bilder entstanden zerschnibbelte geister. durch
verändern von einstellungen in meinem hugin-projekt. konnte ich keine verbesserung
ereichen. auch der versuch die bilder zuerst zu beschneiden und daraus das panorama
zu erstellen scheiterte.
&lt;/p&gt;
&lt;p&gt;
die lösung fand ich beim &lt;a href="http://people.freenet.de/martin_wehner/Tutorial/panorama.html" target=_blank&gt;tutorial
von Martin Wehner&lt;/a&gt;. dort ist folgendes beschrieben: das panorama wie gewohnt mit
hugin und panotools erstellen und als "mehrere TIFFs" ausgeben lassen (also ohne anschliessendes
enblend). danach werden alphakanäle der tiffs bearbeitet, bei denen die&amp;nbsp;überlappungsprobleme
bestehen. anschliessend kann mit enblend von der kommandozeile aus überblendet und
zusammengefügt werden:
&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;enblend.exe -o enblended.tif panorama0000.tif panorama0001.tif&lt;/code&gt;
&lt;/p&gt;
&lt;p&gt;
das ganze&amp;nbsp;ist&amp;nbsp;detailiert in oben genanntem tutorial noch einmal beschrieben.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0be07370-ec93-4560-bd14-86e49d9f092a" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,0be07370-ec93-4560-bd14-86e49d9f092a.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=42162eb1-d79c-42e6-9934-393d704efcc9</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,42162eb1-d79c-42e6-9934-393d704efcc9.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,42162eb1-d79c-42e6-9934-393d704efcc9.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=42162eb1-d79c-42e6-9934-393d704efcc9</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=28c7fd7a-747f-463f-b060-52a91d8c4ace&amp;initialPhoto=33daf2d9-acd4-49e3-b460-e728e0b20da1" target="_blank"><b>20051126
- sinebag im GFZK</b></a>.<br /><img src="http://www.pixelplastic.de/images/20051126 - sinebag im GFZK/medium/_MG_3903.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=42162eb1-d79c-42e6-9934-393d704efcc9" /></body>
      <title>20051126 - sinebag im GFZK</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,42162eb1-d79c-42e6-9934-393d704efcc9.aspx</guid>
      <link>http://pixelplastic.de/2005/11/26/20051126SinebagImGFZK.aspx</link>
      <pubDate>Sat, 26 Nov 2005 22:20:41 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=28c7fd7a-747f-463f-b060-52a91d8c4ace&amp;amp;initialPhoto=33daf2d9-acd4-49e3-b460-e728e0b20da1" target=_blank&gt;&lt;b&gt;20051126
- sinebag im GFZK&lt;/b&gt;&lt;/a&gt;.&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20051126 - sinebag im GFZK/medium/_MG_3903.jpg"&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=42162eb1-d79c-42e6-9934-393d704efcc9" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,42162eb1-d79c-42e6-9934-393d704efcc9.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=8f7fb838-f816-4eaa-96ba-c554ffeafd2f</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,8f7fb838-f816-4eaa-96ba-c554ffeafd2f.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,8f7fb838-f816-4eaa-96ba-c554ffeafd2f.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=8f7fb838-f816-4eaa-96ba-c554ffeafd2f</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <img src="http://blog.pixelplastic.de/content/binary/myanmar-flyer.jpg" border="0" />
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=8f7fb838-f816-4eaa-96ba-c554ffeafd2f" />
      </body>
      <title>photoabend</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,8f7fb838-f816-4eaa-96ba-c554ffeafd2f.aspx</guid>
      <link>http://pixelplastic.de/2005/11/18/photoabend.aspx</link>
      <pubDate>Fri, 18 Nov 2005 09:29:34 GMT</pubDate>
      <description>&lt;p&gt;
&lt;/p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/myanmar-flyer.jpg" border=0&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=8f7fb838-f816-4eaa-96ba-c554ffeafd2f" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,8f7fb838-f816-4eaa-96ba-c554ffeafd2f.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=96ea7e4a-f087-4b34-8b2c-34c7d57565e4</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,96ea7e4a-f087-4b34-8b2c-34c7d57565e4.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,96ea7e4a-f087-4b34-8b2c-34c7d57565e4.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=96ea7e4a-f087-4b34-8b2c-34c7d57565e4</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
klein aber fein. auf der <a href="http://blog.pixelplastic.de/">webseite meines blogs</a> findet
man nun briefmarkengroße livebilder aus meinem zimmer. im dreisekundentakt klickern
jetzt die bilder durchs netz. also viel spass damit.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=96ea7e4a-f087-4b34-8b2c-34c7d57565e4" />
      </body>
      <title>back to the roots</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,96ea7e4a-f087-4b34-8b2c-34c7d57565e4.aspx</guid>
      <link>http://pixelplastic.de/2005/11/14/backToTheRoots.aspx</link>
      <pubDate>Mon, 14 Nov 2005 20:57:42 GMT</pubDate>
      <description>&lt;p&gt;
klein aber fein. auf der &lt;a href="http://blog.pixelplastic.de/"&gt;webseite meines blogs&lt;/a&gt; findet
man nun briefmarkengroße livebilder aus meinem zimmer. im dreisekundentakt klickern
jetzt die bilder durchs netz. also viel spass damit.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=96ea7e4a-f087-4b34-8b2c-34c7d57565e4" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,96ea7e4a-f087-4b34-8b2c-34c7d57565e4.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=6e61c35f-c72b-4806-b7da-4d6cd6fd2c81</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,6e61c35f-c72b-4806-b7da-4d6cd6fd2c81.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,6e61c35f-c72b-4806-b7da-4d6cd6fd2c81.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=6e61c35f-c72b-4806-b7da-4d6cd6fd2c81</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
was einem so gegönnt wird:
</p>
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/bdaygmx.jpg" border="0" />
        </p>
        <p>
aber neben diesem kommerz kam auch eine nette email aus der verwandtschaft (ungekürzt
und im original):
</p>
        <p>
"Ein alter Mann oft vor dem Computer sitzt -und schwitzt- oft er neues ausprobieren
will, o je, so saß er am Montag stolz vorm neuen Monitor und schoss fasst ein Eigentor.
Gut, dass es einen Hoyer Junior gibt, der die gesamte Informatik doch so liebt und
oft seinem Opi oft aus der Patsche hilft! Heut ist der Doktor "Marcel" ein Geburtstagskind
und wir gratulieren von ganzem Herzen ihm geschwind, viel Glück und Erfolg beim Studieren,
er soll leben so viel Jahre-wie die Kuh am Schwanz hat Haare. Herzliche Grüße, alle
Gute und eine fröhliche Studentenfete
</p>
        <p>
Von deinem Opi und Christel"
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6e61c35f-c72b-4806-b7da-4d6cd6fd2c81" />
      </body>
      <title>bday</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,6e61c35f-c72b-4806-b7da-4d6cd6fd2c81.aspx</guid>
      <link>http://pixelplastic.de/2005/11/09/bday.aspx</link>
      <pubDate>Wed, 09 Nov 2005 00:44:55 GMT</pubDate>
      <description>&lt;p&gt;
was einem so gegönnt wird:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/bdaygmx.jpg" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
aber neben diesem kommerz kam auch eine nette email aus der verwandtschaft (ungekürzt
und im original):
&lt;/p&gt;
&lt;p&gt;
"Ein alter Mann oft vor dem Computer sitzt -und schwitzt- oft er neues ausprobieren
will, o je, so saß er am Montag stolz vorm neuen Monitor und schoss fasst ein Eigentor.
Gut, dass es einen Hoyer Junior gibt, der die gesamte Informatik doch so liebt und
oft seinem Opi oft aus der Patsche hilft! Heut ist der Doktor "Marcel" ein Geburtstagskind
und wir gratulieren von ganzem Herzen ihm geschwind, viel Glück und Erfolg beim Studieren,
er soll leben so viel Jahre-wie die Kuh am Schwanz hat Haare. Herzliche Grüße, alle
Gute und eine fröhliche Studentenfete
&lt;/p&gt;
&lt;p&gt;
Von deinem Opi und Christel"
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6e61c35f-c72b-4806-b7da-4d6cd6fd2c81" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,6e61c35f-c72b-4806-b7da-4d6cd6fd2c81.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=5c766ab3-df39-4712-852b-0a8ccbd9333c</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,5c766ab3-df39-4712-852b-0a8ccbd9333c.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,5c766ab3-df39-4712-852b-0a8ccbd9333c.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=5c766ab3-df39-4712-852b-0a8ccbd9333c</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Bei <a href="http://de.wikipedia.org/" target="_blank">Wikipedia</a> steht:
</p>
        <div style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 0px; PADDING-TOP: 0px; BACKGROUND-COLOR: #eeeeee">
          <p>
            <strong>Fiale</strong>
          </p>
          <p>
[italienisch (foglia: Nadel)] <i>die,</i> Fiale sind aus Stein gemeißelte, schlanke,
spitz auslaufende Türmchen, die in der gotischen Architektur der Überhöhung von <a href="http://de.wikipedia.org/wiki/Wimperge" target="_blank">Wimpergen</a> und
Strebepfeilern dienten. Neben dieser ästhetischen Funktion haben sie häufig auch eine
statische, da sie die Konstruktion durch ihr Gewicht zusätzlich stabilisieren.
</p>
          <p>
Fialen bestehen meist aus einem vier- oder achteckigen Schaft bzw. Leib, der häufig
eine aus Maßwerk bestehende Verzierung aufweist und im Mittelteil die Form eines <a href="http://de.wikipedia.org/wiki/Tabernakel" target="_blank">Tabernakels</a> hat.
Über dem Schaft befindet sich die oft mit einer Kreuzblume bekrönte, pyramidenförmige
Spitze. Manchmal dienen sie auch als Träger von Bildsäulen.
</p>
        </div>
        <p>
Wie bin ich auf dieses Wort gekommen bin? Widi hatte gerade angerufen und wollte wissen,
was <a href="http://dict.leo.org/?search=pinnacle&amp;searchLoc=-1&amp;lp=ende&amp;lang=de" target="_blank">pinnacle</a> auf
deutsch heißt. Dabei kam bei <a href="http://dict.leo.org/" target="_blank">dict.leo</a> unter
anderem das Wort <a href="http://de.wikipedia.org/wiki/Fiale" target="_blank">Fiale</a> heraus.
Wie lustig, dass dessen Definition dabei gleich zwei weitere mir unbekannte Wörter
verwendet: <a href="http://de.wikipedia.org/wiki/Wimperge" target="_blank">Wimperge</a> und <a href="http://de.wikipedia.org/wiki/Tabernakel" target="_blank">Tabernakel</a>.
</p>
        <p>
Nun wissen wir wieder mehr.
</p>
        <p>
Komm in mein <a href="http://de.wikipedia.org/wiki/Tabernakel" target="_blank">tabernaculum</a>,
damit ich deine <a href="http://de.wikipedia.org/wiki/Artefakt" target="_blank">Artefakte</a> mit
meinem vergleichen kann. ;-)
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5c766ab3-df39-4712-852b-0a8ccbd9333c" />
      </body>
      <title>Fiale</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,5c766ab3-df39-4712-852b-0a8ccbd9333c.aspx</guid>
      <link>http://pixelplastic.de/2005/11/07/Fiale.aspx</link>
      <pubDate>Mon, 07 Nov 2005 19:32:37 GMT</pubDate>
      <description>&lt;p&gt;
Bei &lt;a href="http://de.wikipedia.org/" target=_blank&gt;Wikipedia&lt;/a&gt; steht:
&lt;/p&gt;
&lt;div style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 0px; PADDING-TOP: 0px; BACKGROUND-COLOR: #eeeeee"&gt;
&lt;p&gt;
&lt;strong&gt;Fiale&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
[italienisch (foglia: Nadel)] &lt;i&gt;die,&lt;/i&gt; Fiale sind aus Stein gemeißelte, schlanke,
spitz auslaufende Türmchen, die in der gotischen Architektur der Überhöhung von &lt;a href="http://de.wikipedia.org/wiki/Wimperge" target=_blank&gt;Wimpergen&lt;/a&gt; und
Strebepfeilern dienten. Neben dieser ästhetischen Funktion haben sie häufig auch eine
statische, da sie die Konstruktion durch ihr Gewicht zusätzlich stabilisieren.
&lt;/p&gt;
&lt;p&gt;
Fialen bestehen meist aus einem vier- oder achteckigen Schaft bzw. Leib, der häufig
eine aus Maßwerk bestehende Verzierung aufweist und im Mittelteil die Form eines &lt;a href="http://de.wikipedia.org/wiki/Tabernakel" target=_blank&gt;Tabernakels&lt;/a&gt; hat.
Über dem Schaft befindet sich die oft mit einer Kreuzblume bekrönte, pyramidenförmige
Spitze. Manchmal dienen sie auch als Träger von Bildsäulen.
&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;
Wie bin ich auf dieses Wort gekommen bin? Widi hatte gerade angerufen und wollte wissen,
was &lt;a href="http://dict.leo.org/?search=pinnacle&amp;amp;searchLoc=-1&amp;amp;lp=ende&amp;amp;lang=de" target=_blank&gt;pinnacle&lt;/a&gt; auf
deutsch heißt. Dabei kam bei &lt;a href="http://dict.leo.org/" target=_blank&gt;dict.leo&lt;/a&gt; unter
anderem das Wort &lt;a href="http://de.wikipedia.org/wiki/Fiale" target=_blank&gt;Fiale&lt;/a&gt; heraus.
Wie lustig, dass dessen Definition dabei gleich zwei weitere mir unbekannte Wörter
verwendet: &lt;a href="http://de.wikipedia.org/wiki/Wimperge" target=_blank&gt;Wimperge&lt;/a&gt; und &lt;a href="http://de.wikipedia.org/wiki/Tabernakel" target=_blank&gt;Tabernakel&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
Nun wissen wir wieder mehr.
&lt;/p&gt;
&lt;p&gt;
Komm in mein &lt;a href="http://de.wikipedia.org/wiki/Tabernakel" target=_blank&gt;tabernaculum&lt;/a&gt;,
damit ich deine &lt;a href="http://de.wikipedia.org/wiki/Artefakt" target=_blank&gt;Artefakte&lt;/a&gt; mit
meinem vergleichen kann. ;-)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5c766ab3-df39-4712-852b-0a8ccbd9333c" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,5c766ab3-df39-4712-852b-0a8ccbd9333c.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=467f3b3a-654f-466c-9d58-4b6d6f4dd8ad</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,467f3b3a-654f-466c-9d58-4b6d6f4dd8ad.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,467f3b3a-654f-466c-9d58-4b6d6f4dd8ad.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=467f3b3a-654f-466c-9d58-4b6d6f4dd8ad</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Nach zwei Tagen gibt es nun eine erste (wenn auch nicht 100% stabil) laufende Version
von Delayed Startup.
</p>
        <p>
Hintergrund dieses kleinen Helferleins war der zu lange dauernde Windows Systemstart.
Nach der Anmeldung möchte man seine Lieblingsapplikationen automatisch starten lassen
- das geht schnell und einfach mit dem Autostart Verzeichnis im Windows Startmenu. Mit
steigender Zahl der dort befindlichen Programme sinkt auch die Perfomance
nach der Anmeldung. So lässt sich die Maschine erst fünf Minuten nach der Anmeldung
wieder freundlich bedienen. Das Problem liegt allein darin, dass alle Tools im Autostart
gleichzeitig loslaufen wollen. Verteilt man die Aufrufzeiten auf einen längeren Zeitraum
kann man fast unmittelbar nach abschicken seines Benutzerpasswortes mit dem Gerät
arbeiten.
</p>
        <p>
          <a href="http://blog.pixelplastic.de/content/binary/screenshot.png" target="_blank">
            <img alt="Screenshot Delayed Startup" src="http://blog.pixelplastic.de/content/binary/screenshot_thumb.png" border="0" />
          </a>
        </p>
        <p>
Im Moment werden die einzelnen Einträge der zu startenden Programme noch händisch
angelegt. Geplant ist eine Import-/Synchronisationsmethodik, um <em>Start\Programme\Autostart</em> und <em>HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run</em> zu
entlasten. Später soll sogar das verzögerte starten von Diensten ermöglicht werden.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=467f3b3a-654f-466c-9d58-4b6d6f4dd8ad" />
      </body>
      <title>Delayed Startup</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,467f3b3a-654f-466c-9d58-4b6d6f4dd8ad.aspx</guid>
      <link>http://pixelplastic.de/2005/11/06/DelayedStartup.aspx</link>
      <pubDate>Sun, 06 Nov 2005 03:51:12 GMT</pubDate>
      <description>&lt;p&gt;
Nach zwei Tagen gibt es nun eine erste (wenn auch nicht 100% stabil) laufende Version
von Delayed Startup.
&lt;/p&gt;
&lt;p&gt;
Hintergrund dieses kleinen Helferleins war der zu lange dauernde Windows Systemstart.
Nach der Anmeldung möchte man seine Lieblingsapplikationen automatisch starten&amp;nbsp;lassen
- das geht schnell und einfach mit dem Autostart Verzeichnis im Windows Startmenu.&amp;nbsp;Mit
steigender&amp;nbsp;Zahl der dort befindlichen&amp;nbsp;Programme sinkt auch die Perfomance
nach der Anmeldung. So lässt sich die Maschine&amp;nbsp;erst fünf Minuten nach der Anmeldung
wieder freundlich bedienen. Das Problem liegt allein darin, dass alle Tools im Autostart
gleichzeitig loslaufen wollen. Verteilt man die Aufrufzeiten auf einen längeren Zeitraum
kann man fast unmittelbar nach abschicken seines Benutzerpasswortes mit dem Gerät
arbeiten.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/screenshot.png" target=_blank&gt;&lt;img alt="Screenshot Delayed Startup" src="http://blog.pixelplastic.de/content/binary/screenshot_thumb.png" border=0&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
Im Moment werden die einzelnen&amp;nbsp;Einträge der zu startenden Programme noch händisch
angelegt. Geplant ist eine Import-/Synchronisationsmethodik, um &lt;em&gt;Start\Programme\Autostart&lt;/em&gt; und&amp;nbsp;&lt;em&gt;HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run&lt;/em&gt; zu
entlasten. Später soll sogar das verzögerte starten von Diensten ermöglicht werden.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=467f3b3a-654f-466c-9d58-4b6d6f4dd8ad" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,467f3b3a-654f-466c-9d58-4b6d6f4dd8ad.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=7d16a28d-f654-42d7-9359-2c74469ea5b5</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,7d16a28d-f654-42d7-9359-2c74469ea5b5.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,7d16a28d-f654-42d7-9359-2c74469ea5b5.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=7d16a28d-f654-42d7-9359-2c74469ea5b5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=258146ee-87ee-46ec-9ab9-6e5882afad28&amp;initialPhoto=a5a80750-6110-4f0a-bf70-cfb4ea022893" target="_blank"><b>20051028
- herbst</b></a>.<br /><img src="http://www.pixelplastic.de/images/20051028 - herbst/medium/_MG_3399.jpg" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7d16a28d-f654-42d7-9359-2c74469ea5b5" /></body>
      <title>20051028 - herbst</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,7d16a28d-f654-42d7-9359-2c74469ea5b5.aspx</guid>
      <link>http://pixelplastic.de/2005/10/28/20051028Herbst.aspx</link>
      <pubDate>Fri, 28 Oct 2005 21:49:05 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=258146ee-87ee-46ec-9ab9-6e5882afad28&amp;amp;initialPhoto=a5a80750-6110-4f0a-bf70-cfb4ea022893" target=_blank&gt;&lt;b&gt;20051028
- herbst&lt;/b&gt;&lt;/a&gt;.&lt;br&gt;
&lt;img src="http://www.pixelplastic.de/images/20051028 - herbst/medium/_MG_3399.jpg"&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7d16a28d-f654-42d7-9359-2c74469ea5b5" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,7d16a28d-f654-42d7-9359-2c74469ea5b5.aspx</comments>
      <category>photos</category>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=ba05c417-bde4-4100-b8f7-b55c053ff816</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,ba05c417-bde4-4100-b8f7-b55c053ff816.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,ba05c417-bde4-4100-b8f7-b55c053ff816.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=ba05c417-bde4-4100-b8f7-b55c053ff816</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
vielleicht hatte jemand die <a href="http://www.weltderwunder.de/archiv/2005/10/sds/Ueberblick/20051002/1_Selbstversuch/index.html" target="_blank">welt
der wunder</a> sendung am 02.10.2005 schon live im fernsehen gesehen. ich war mit
alex damals beim zappen zufaellig drueber gestolpert und wir beide fanden den selbstversuch
ganz amuesant. zum glueck gibt es dazu auch einen stream, um das ganze <a href="http://www.weltderwunder.de/services/microsite/index.html?mediatype=VID&amp;fullVid=sds/alkohol/alkohol.asf" target="_blank">noch
einmal anzuschauen</a>. viel spass dabei.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ba05c417-bde4-4100-b8f7-b55c053ff816" />
      </body>
      <title>saufen für die wissenschaft</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,ba05c417-bde4-4100-b8f7-b55c053ff816.aspx</guid>
      <link>http://pixelplastic.de/2005/10/18/saufenF%c3%bcrDieWissenschaft.aspx</link>
      <pubDate>Tue, 18 Oct 2005 08:42:29 GMT</pubDate>
      <description>&lt;p&gt;
vielleicht hatte jemand die &lt;a href="http://www.weltderwunder.de/archiv/2005/10/sds/Ueberblick/20051002/1_Selbstversuch/index.html" target=_blank&gt;welt
der wunder&lt;/a&gt; sendung am 02.10.2005 schon live im fernsehen gesehen. ich war mit
alex damals beim zappen zufaellig drueber gestolpert und wir beide fanden den selbstversuch
ganz amuesant. zum glueck gibt es dazu auch einen stream, um das ganze &lt;a href="http://www.weltderwunder.de/services/microsite/index.html?mediatype=VID&amp;amp;fullVid=sds/alkohol/alkohol.asf" target=_blank&gt;noch
einmal anzuschauen&lt;/a&gt;. viel spass dabei.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ba05c417-bde4-4100-b8f7-b55c053ff816" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,ba05c417-bde4-4100-b8f7-b55c053ff816.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=6fe19a2f-9acd-47bd-ab05-6f5a9d096e2a</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,6fe19a2f-9acd-47bd-ab05-6f5a9d096e2a.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,6fe19a2f-9acd-47bd-ab05-6f5a9d096e2a.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=6fe19a2f-9acd-47bd-ab05-6f5a9d096e2a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
mein lieber papi hatte mich auf dieses video aufmerksam gemacht, da meine eltern am
wochenende im kino waren und "in front of" dem film <a href="http://www.nva-derfilm.de/" target="_blank">nva</a> diesen
werbespot gesehen hatten. ich find's klasse. auch silke konnte recht gut drueber schmunzeln.
also let's knack.
</p>
        <a href="http://blog.pixelplastic.de/content/binary/renault - werbung.zip" target="_blank">renault
- werbung.mp4 (3,53 MB)</a>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6fe19a2f-9acd-47bd-ab05-6f5a9d096e2a" />
      </body>
      <title>renault werbung</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,6fe19a2f-9acd-47bd-ab05-6f5a9d096e2a.aspx</guid>
      <link>http://pixelplastic.de/2005/10/11/renaultWerbung.aspx</link>
      <pubDate>Tue, 11 Oct 2005 23:39:51 GMT</pubDate>
      <description>&lt;p&gt;
mein lieber papi hatte mich auf dieses video aufmerksam gemacht, da&amp;nbsp;meine eltern&amp;nbsp;am
wochenende im kino waren und&amp;nbsp;"in front of" dem film &lt;a href="http://www.nva-derfilm.de/" target=_blank&gt;nva&lt;/a&gt; diesen
werbespot gesehen hatten. ich find's klasse. auch silke konnte recht gut drueber schmunzeln.
also let's knack.
&lt;/p&gt;
&lt;a href="http://blog.pixelplastic.de/content/binary/renault - werbung.zip" target=_blank&gt;renault
- werbung.mp4 (3,53 MB)&lt;/a&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6fe19a2f-9acd-47bd-ab05-6f5a9d096e2a" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,6fe19a2f-9acd-47bd-ab05-6f5a9d096e2a.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=639c596e-6f03-4b82-9399-aab3e6a24408</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,639c596e-6f03-4b82-9399-aab3e6a24408.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,639c596e-6f03-4b82-9399-aab3e6a24408.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=639c596e-6f03-4b82-9399-aab3e6a24408</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=60335dc8-1e76-4b54-a5b3-a49e0f1c551c&amp;initialPhoto=95f05068-9f10-4702-9dac-73daac5dcb7d" target="_blank"><b>20051001
- ultimate frisbee</b></a>.<img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=639c596e-6f03-4b82-9399-aab3e6a24408" /></body>
      <title>neues album: 20051001 - ultimate frisbee</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,639c596e-6f03-4b82-9399-aab3e6a24408.aspx</guid>
      <link>http://pixelplastic.de/2005/10/08/neuesAlbum20051001UltimateFrisbee.aspx</link>
      <pubDate>Sat, 08 Oct 2005 14:20:07 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=60335dc8-1e76-4b54-a5b3-a49e0f1c551c&amp;amp;initialPhoto=95f05068-9f10-4702-9dac-73daac5dcb7d" target=_blank&gt;&lt;b&gt;20051001
- ultimate frisbee&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=639c596e-6f03-4b82-9399-aab3e6a24408" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,639c596e-6f03-4b82-9399-aab3e6a24408.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=e3e382c9-eeec-499a-81c0-7b231d08763f</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,e3e382c9-eeec-499a-81c0-7b231d08763f.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,e3e382c9-eeec-499a-81c0-7b231d08763f.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=e3e382c9-eeec-499a-81c0-7b231d08763f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://www.pixelplastic.de/default.aspx?initialAlbum=148d5381-a280-4096-8ea4-104bafe62a3a&amp;initialPhoto=7e6e6a75-df28-4cbc-9601-ad3cc078bb6f" target="_blank"><b>20051006
- sinebag im ut</b></a>.<img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e3e382c9-eeec-499a-81c0-7b231d08763f" /></body>
      <title>neues album: 20051006 - sinebag im ut</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,e3e382c9-eeec-499a-81c0-7b231d08763f.aspx</guid>
      <link>http://pixelplastic.de/2005/10/08/neuesAlbum20051006SinebagImUt.aspx</link>
      <pubDate>Sat, 08 Oct 2005 13:52:44 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br&gt;
&lt;a href="http://www.pixelplastic.de/default.aspx?initialAlbum=148d5381-a280-4096-8ea4-104bafe62a3a&amp;amp;initialPhoto=7e6e6a75-df28-4cbc-9601-ad3cc078bb6f" target=_blank&gt;&lt;b&gt;20051006
- sinebag im ut&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e3e382c9-eeec-499a-81c0-7b231d08763f" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,e3e382c9-eeec-499a-81c0-7b231d08763f.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=3e813ceb-d665-4ad0-b611-d096d4dd0b86</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,3e813ceb-d665-4ad0-b611-d096d4dd0b86.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,3e813ceb-d665-4ad0-b611-d096d4dd0b86.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=3e813ceb-d665-4ad0-b611-d096d4dd0b86</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
heute war es endlich so weit. <a href="http://www.halbnah.de/seiten/mettmann.htm" target="_blank">"mettmann"</a> lief
im rahmen des <a href="http://www.dokfestival-leipzig.de/" target="_blank">leipziger
dokfestivals</a> in der <a href="http://www.dienato.de/" target="_blank">naTo</a>.
ein dokumentarfilm ueber einen mann, der nach ueber 40 jahren versucht seine geschwister
wiederzufinden. da nadine waehrend meiner zeit in bangkok die englischen untertitel
uebersetzte war ich mehr oder weniger "gezwungen" diesen hier zur premiere anzusehen.
und siehe da... eine perle der deutschen filmkunst. danke herr <a href="http://www.halbnah.de/" target="_blank">maerkl</a>,
danke nadine. ich musste bei vielen szenen an die tage in bangkok zurueck denken,
an denen du uebersetzungstechnisch taetig warst und jerome und mich in kniffligen
fragen um hilfe gebeten hattest.
</p>
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/Fred_Zuhause_im_Sessel.png" border="0" />
        </p>
        <p>
zum glueck soll der film bald auch auf dvd erhaeltlich sein.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3e813ceb-d665-4ad0-b611-d096d4dd0b86" />
      </body>
      <title>mettmann</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,3e813ceb-d665-4ad0-b611-d096d4dd0b86.aspx</guid>
      <link>http://pixelplastic.de/2005/10/07/mettmann.aspx</link>
      <pubDate>Fri, 07 Oct 2005 21:36:48 GMT</pubDate>
      <description>&lt;p&gt;
heute war es endlich so weit. &lt;a href="http://www.halbnah.de/seiten/mettmann.htm" target=_blank&gt;"mettmann"&lt;/a&gt; lief
im rahmen des &lt;a href="http://www.dokfestival-leipzig.de/" target=_blank&gt;leipziger
dokfestivals&lt;/a&gt; in der &lt;a href="http://www.dienato.de/" target=_blank&gt;naTo&lt;/a&gt;. ein
dokumentarfilm ueber einen mann, der nach ueber 40 jahren versucht seine geschwister
wiederzufinden. da nadine waehrend meiner zeit in bangkok die englischen untertitel
uebersetzte war ich mehr oder weniger "gezwungen" diesen hier zur premiere anzusehen.
und siehe da... eine perle der deutschen filmkunst. danke herr &lt;a href="http://www.halbnah.de/" target=_blank&gt;maerkl&lt;/a&gt;,
danke nadine. ich musste bei vielen szenen an die tage in bangkok zurueck denken,
an denen du uebersetzungstechnisch taetig warst und jerome und mich in kniffligen
fragen um hilfe gebeten hattest.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/Fred_Zuhause_im_Sessel.png" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
zum glueck soll der film&amp;nbsp;bald auch auf dvd&amp;nbsp;erhaeltlich sein.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3e813ceb-d665-4ad0-b611-d096d4dd0b86" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,3e813ceb-d665-4ad0-b611-d096d4dd0b86.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=f68f0cec-3b9e-4b6e-a6c4-f21d8730ee5f</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,f68f0cec-3b9e-4b6e-a6c4-f21d8730ee5f.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,f68f0cec-3b9e-4b6e-a6c4-f21d8730ee5f.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=f68f0cec-3b9e-4b6e-a6c4-f21d8730ee5f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
irgendwie scheint mein <a href="http://www.rssbandit.org/" target="_blank">rss bandit</a> hier
ein problem zu haben:
</p>
        <p>
          <img src="http://blog.pixelplastic.de/content/binary/alex auf dirk.jpg" border="0" />
        </p>
        <p>
wie konnte das channel image von alex' blog in diesen reinrutschen? ich werde den
banditen mal neu starten. hilft das nicht, wird dirks blog entfernt und wieder neu
eingetragen.
</p>
        <p>
ausserdem war heute seit langem mal wieder badminton angesagt. sehr angenehmes
gefuehl nach diesen 1 1/2 stunden.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f68f0cec-3b9e-4b6e-a6c4-f21d8730ee5f" />
      </body>
      <title>alex auf dirk</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,f68f0cec-3b9e-4b6e-a6c4-f21d8730ee5f.aspx</guid>
      <link>http://pixelplastic.de/2005/10/06/alexAufDirk.aspx</link>
      <pubDate>Thu, 06 Oct 2005 14:15:48 GMT</pubDate>
      <description>&lt;p&gt;
irgendwie scheint mein &lt;a href="http://www.rssbandit.org/" target=_blank&gt;rss bandit&lt;/a&gt; hier
ein problem zu haben:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://blog.pixelplastic.de/content/binary/alex auf dirk.jpg" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
wie konnte das channel image von alex' blog in diesen reinrutschen? ich werde&amp;nbsp;den
banditen mal neu starten. hilft das nicht, wird dirks blog entfernt und wieder neu
eingetragen.
&lt;/p&gt;
&lt;p&gt;
ausserdem war heute&amp;nbsp;seit langem mal wieder badminton angesagt. sehr angenehmes
gefuehl nach diesen 1 1/2 stunden.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f68f0cec-3b9e-4b6e-a6c4-f21d8730ee5f" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,f68f0cec-3b9e-4b6e-a6c4-f21d8730ee5f.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=ef7bad6e-0ae0-453d-bc4e-7f54fb364764</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,ef7bad6e-0ae0-453d-bc4e-7f54fb364764.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,ef7bad6e-0ae0-453d-bc4e-7f54fb364764.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=ef7bad6e-0ae0-453d-bc4e-7f54fb364764</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
nach langem kampf mit stylesheets und templates hab' ich es nun doch noch geschafft:
die seite zu meinem blog hat ein neues froehliches gesicht erhalten. ein kleiner trost
in dieser tristen, grauen zeit. vielleicht hat der ein oder andere nebenbei auch veraenderungen
an <a href="http://www.pixelplastic.de/" target="_blank">meiner eigentlichen webseite</a> bemerkt.
dort (genauso wie hier) schwirrt auf einmal ein neuer schriftzug uebers bild: pixelplastic.
was will er jetzt wieder damit. erst luckypixel, dann dyndns trallalla. und jetzt
das?
</p>
        <p>
das ganze hat einen hintergrund, der mir schon seit laengerem kopfzerbrechen
bereitet. meine anfangs ausgewaehlte webdomain <a href="http://www.luckypixel.de/" target="_blank">luckypixel.de</a> hatte
ich mir schon zu <a href="http://www.ppw3001.de/" target="_blank">BA Zeiten</a> (BA
= <a href="http://www.ba-glauchau.de/" target="_blank">Berufsakademie Glauchau</a>)
ueber einen unserer damaligen admins gesichert. eifrig wurde mit diesem namen die
nun schon seit 1. april 2005 veroeffentlichte flashwebseite entwickelt. nur war meine
bis dato gesicherte luckypixel domain ploetzlich irgendwie nicht mehr mein eigentum.
wieso auch immer. daher die vergewaltigung mit <a href="http://luckypixel.dyndns.org/" target="_blank">luckypixel.dyndns.org</a>,
da <font color="#0000ff">.de</font> ja ausverkauft war.
</p>
        <p>
im laufe der zeit und nach vielen gedanken blieb ich bei pixelplastic haengen. pixelplastic,
plastische pixel ... hat was mit digitalen bildern zu tun, eventuell sogar mit kunst?
ich denke der name passt zu dem, was ich mit bildern, meiner maus, tastatur und meinen
augen und gedanken veranstalte.
</p>
        <p>
zusammengefasst hier also noch einmal die aktuellen links:
</p>
        <p>
 + pixelplastic.de homepage 
</p>
        <ul>
          <li>
            <a href="http://www.pixelplastic.de/" target="_blank">http://www.pixelplastic.de/</a>
          </li>
          <li>
http://pixelplastic.dyndns.org/ 
</li>
          <li>
http://luckypixel.dyndns.org/ 
</li>
        </ul>
        <br />
 + pixelplastic.de blog 
<ul><li><a href="http://blog.pixelplastic.de/" target="_blank">http://blog.pixelplastic.de/</a></li><li><a href="http://www.pixelplastic.de/blog/" target="_blank">http://www.pixelplastic.de/blog/</a></li><li>
http://pixelplastic.dyndns.org/blog/ 
</li><li>
http://luckypixel.dyndns.org/blog/ 
</li></ul><p></p><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ef7bad6e-0ae0-453d-bc4e-7f54fb364764" /></body>
      <title>neues bloglayout - pixel hier, pixel da</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,ef7bad6e-0ae0-453d-bc4e-7f54fb364764.aspx</guid>
      <link>http://pixelplastic.de/2005/10/05/neuesBloglayoutPixelHierPixelDa.aspx</link>
      <pubDate>Wed, 05 Oct 2005 23:57:09 GMT</pubDate>
      <description>&lt;p&gt;
nach langem kampf mit stylesheets und templates hab' ich es nun doch noch geschafft:
die seite zu meinem blog hat ein neues froehliches gesicht erhalten. ein kleiner trost
in dieser tristen, grauen zeit. vielleicht hat der ein oder andere nebenbei auch veraenderungen
an &lt;a href="http://www.pixelplastic.de/" target=_blank&gt;meiner eigentlichen webseite&lt;/a&gt; bemerkt.
dort (genauso wie hier) schwirrt auf einmal ein neuer schriftzug uebers bild: pixelplastic.
was will er jetzt wieder damit. erst luckypixel, dann dyndns trallalla. und jetzt
das?
&lt;/p&gt;
&lt;p&gt;
das ganze hat einen hintergrund, der mir&amp;nbsp;schon seit laengerem&amp;nbsp;kopfzerbrechen
bereitet. meine anfangs ausgewaehlte webdomain &lt;a href="http://www.luckypixel.de/" target=_blank&gt;luckypixel.de&lt;/a&gt; hatte
ich mir schon zu &lt;a href="http://www.ppw3001.de/" target=_blank&gt;BA Zeiten&lt;/a&gt; (BA
= &lt;a href="http://www.ba-glauchau.de/" target=_blank&gt;Berufsakademie Glauchau&lt;/a&gt;)
ueber einen unserer damaligen admins gesichert. eifrig wurde mit diesem namen die
nun schon seit 1. april 2005 veroeffentlichte flashwebseite entwickelt. nur war meine
bis dato gesicherte luckypixel domain ploetzlich irgendwie nicht mehr mein eigentum.
wieso auch immer. daher die vergewaltigung mit &lt;a href="http://luckypixel.dyndns.org/" target=_blank&gt;luckypixel.dyndns.org&lt;/a&gt;,
da &lt;font color=#0000ff&gt;.de&lt;/font&gt; ja ausverkauft war.
&lt;/p&gt;
&lt;p&gt;
im laufe der zeit und nach vielen gedanken blieb ich bei pixelplastic haengen. pixelplastic,
plastische pixel ... hat was mit digitalen bildern zu tun, eventuell sogar mit kunst?
ich denke der name passt zu dem, was ich mit bildern, meiner maus, tastatur und meinen
augen und gedanken veranstalte.
&lt;/p&gt;
&lt;p&gt;
zusammengefasst hier also noch einmal die aktuellen links:
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;+ pixelplastic.de homepage 
&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://www.pixelplastic.de/" target=_blank&gt;http://www.pixelplastic.de/&lt;/a&gt; 
&lt;li&gt;
http://pixelplastic.dyndns.org/ 
&lt;li&gt;
http://luckypixel.dyndns.org/ 
&lt;/li&gt;
&lt;/ul&gt;
&lt;br&gt;
&amp;nbsp;+ pixelplastic.de blog 
&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://blog.pixelplastic.de/" target=_blank&gt;http://blog.pixelplastic.de/&lt;/a&gt; 
&lt;li&gt;
&lt;a href="http://www.pixelplastic.de/blog/" target=_blank&gt;http://www.pixelplastic.de/blog/&lt;/a&gt; 
&lt;li&gt;
http://pixelplastic.dyndns.org/blog/ 
&lt;li&gt;
http://luckypixel.dyndns.org/blog/ 
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ef7bad6e-0ae0-453d-bc4e-7f54fb364764" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,ef7bad6e-0ae0-453d-bc4e-7f54fb364764.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=cfd36460-7ea8-4767-8c51-38f3581e636b</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,cfd36460-7ea8-4767-8c51-38f3581e636b.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,cfd36460-7ea8-4767-8c51-38f3581e636b.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=cfd36460-7ea8-4767-8c51-38f3581e636b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
was genau ist denn der unterschied zwischen werktag und arbeitstag? diese frage stellten
wir - alex und ich - uns heute beim abwasch. nach einer recherche bei wiki
habe ich die lösung <a href="http://de.wikipedia.org/wiki/Werktag/">hier</a> gefunden. 
</p>
        <p>
abwaschen war btw auch mal wieder super. gleich gibt's kartoffelsuppe.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=cfd36460-7ea8-4767-8c51-38f3581e636b" />
      </body>
      <title>werktag oder arbeitstag</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,cfd36460-7ea8-4767-8c51-38f3581e636b.aspx</guid>
      <link>http://pixelplastic.de/2005/09/29/werktagOderArbeitstag.aspx</link>
      <pubDate>Thu, 29 Sep 2005 19:46:15 GMT</pubDate>
      <description>&lt;p&gt;
was genau ist denn der unterschied zwischen werktag und arbeitstag? diese frage stellten
wir - alex und&amp;nbsp;ich -&amp;nbsp;uns heute beim abwasch. nach einer recherche bei wiki
habe ich die lösung &lt;a href="http://de.wikipedia.org/wiki/Werktag/"&gt;hier&lt;/a&gt; gefunden. 
&lt;/p&gt;
&lt;p&gt;
abwaschen war btw auch mal wieder super. gleich gibt's kartoffelsuppe.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=cfd36460-7ea8-4767-8c51-38f3581e636b" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,cfd36460-7ea8-4767-8c51-38f3581e636b.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=0a4d5735-de0d-4d30-874c-0db8306995c1</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,0a4d5735-de0d-4d30-874c-0db8306995c1.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,0a4d5735-de0d-4d30-874c-0db8306995c1.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=0a4d5735-de0d-4d30-874c-0db8306995c1</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
ich bin wieder da. nach 20 stunden flug und fast 4 stunden ICE wurde ich von alex,
krissi und robert freundlichst und mit herz empfangen. jetzt muss ich erst einmal
wieder ankommen, wäsche sortieren, mich sortieren, meine bakterielle infektion auf
der haut pflegen und auskurieren.
</p>
        <p>
die letzten tage in bangkok waren sehr entspannend. da meine beiden unterkunftsspender
nadine und jerome zum arbeitenden farangvolk gehören hatte ich viel zeit für mich.
ausgiebiges schlendern durch bangkok, besuche von ausstellungen - einfach mal seele
baumeln lassen bei buch, sonne und guter musik. sicher klingt das nicht entspannend,
wenn man sich vorstellt, dass ich das in bangkok gemacht habe. aber nach diesen vielen
tagen in der 10 millionenmetropole findet man immer mehr gefallen an dieser und
weiss es zu schätzen dort zu sein.
</p>
        <p>
abends ging es dann taeglich mit nadine und jerome zum dinner in diverse lokalitäten
und zu vergnügungseinrichtungen. unter anderem zu karaoke. aber nicht im stil einer
bar, sondern für private veranstaltungen. man kann sich das so vorstellen: ein raum
(es gab verschiedene größen S, M, L, XL), sitzbank, mikrofone, fernseher, dolby sourround
hifi und dicke ordner mit titellisten. nach dem zweiten bier war dann alles egal und
wir drei waren in unserer mehr oder weniger schalldichten kabine allen zwängen entfesselt
und schrien in die mikrofone bei voll aufgedrehtem stereo. zu smashhits von kylie,
robbie und anderen schlechten songs liesen wir die stimmbänder zittern. ich hätte
nie gedacht, dass mir das mal so viel spass macht.
</p>
        <p>
ausserdem ging es noch ins kino, erneut (mit jerome) auf trinktour in die khao san
(mit bösen auswirkungen für bangkoks sidewalks), zum bowling und zum krönenden abschluss
auf den statetower. in feinem zwirn und nach einem leckeren dinner am fluss haben
die beiden mich an meinem letzten abend auf den statetower ausgeführt. einer der größten
wolkenkratzer in bangkok mit dekadentem restaurant und bar auf dem dach und dem
besten blick auf das nächtliche blinklichtfeuerwerk der stadt. nur durch eine gläserne
begrenzung vom 1m entfernten abgrund geschützt stiessen wir auf den letzten abend
an und liessen uns das haar vom wind verwirren.
</p>
        <p>
wenn man in diesen worten schwelgt wird einem erst bewusst, was man gerade hinter
sich gelassen hat. es war eine schöne zeit, die ich sicher irgendwann durch
einen erneuten besuch verlängern/erneuern werde. 
</p>
        <p>
grosses lob und dickes danke an nadine und jerome, die mir so lieb unterschlupf und
hilfe in diversen lebenslagen geboten haben.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0a4d5735-de0d-4d30-874c-0db8306995c1" />
      </body>
      <title>home again</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,0a4d5735-de0d-4d30-874c-0db8306995c1.aspx</guid>
      <link>http://pixelplastic.de/2005/09/28/homeAgain.aspx</link>
      <pubDate>Wed, 28 Sep 2005 09:41:06 GMT</pubDate>
      <description>&lt;p&gt;
ich bin wieder da. nach 20 stunden flug und fast 4 stunden ICE wurde ich von alex,
krissi und robert freundlichst und mit herz empfangen. jetzt muss ich erst einmal
wieder ankommen, wäsche sortieren, mich sortieren, meine bakterielle infektion auf
der haut pflegen und auskurieren.
&lt;/p&gt;
&lt;p&gt;
die letzten tage in bangkok waren sehr entspannend. da meine beiden unterkunftsspender
nadine und jerome zum arbeitenden farangvolk gehören hatte ich viel zeit für mich.
ausgiebiges schlendern durch bangkok, besuche von ausstellungen - einfach mal seele
baumeln lassen bei buch, sonne und guter musik. sicher klingt das nicht entspannend,
wenn man sich vorstellt, dass ich das in bangkok gemacht habe. aber nach diesen vielen
tagen in der 10 millionenmetropole findet man immer mehr gefallen an dieser&amp;nbsp;und
weiss es zu schätzen dort zu sein.
&lt;/p&gt;
&lt;p&gt;
abends ging es dann&amp;nbsp;taeglich mit nadine und jerome zum dinner in diverse lokalitäten
und zu vergnügungseinrichtungen. unter anderem zu karaoke. aber nicht im stil einer
bar, sondern für private veranstaltungen. man kann sich das so vorstellen: ein raum
(es gab verschiedene größen S, M, L, XL), sitzbank, mikrofone, fernseher, dolby sourround
hifi und dicke ordner mit titellisten. nach dem zweiten bier war dann alles egal und
wir drei waren in unserer mehr oder weniger schalldichten kabine allen zwängen entfesselt
und schrien in die mikrofone bei voll aufgedrehtem stereo. zu smashhits von kylie,
robbie und anderen schlechten songs liesen wir die stimmbänder zittern. ich hätte
nie gedacht, dass mir das mal so viel spass macht.
&lt;/p&gt;
&lt;p&gt;
ausserdem ging es noch ins kino, erneut (mit jerome) auf trinktour in die khao san
(mit bösen auswirkungen für bangkoks sidewalks), zum bowling und zum krönenden abschluss
auf den statetower. in feinem zwirn und nach einem leckeren dinner am fluss haben
die beiden mich an meinem letzten abend auf den statetower ausgeführt. einer der größten
wolkenkratzer in bangkok mit dekadentem restaurant und bar auf dem dach&amp;nbsp;und dem
besten blick auf das nächtliche blinklichtfeuerwerk der stadt. nur durch eine&amp;nbsp;gläserne
begrenzung vom 1m entfernten abgrund geschützt stiessen wir auf den letzten abend
an und liessen uns das haar vom wind verwirren.
&lt;/p&gt;
&lt;p&gt;
wenn man in diesen worten schwelgt wird einem&amp;nbsp;erst bewusst, was man gerade hinter
sich gelassen hat.&amp;nbsp;es war eine&amp;nbsp;schöne zeit, die ich sicher irgendwann durch
einen erneuten besuch verlängern/erneuern werde. 
&lt;/p&gt;
&lt;p&gt;
grosses lob und dickes danke an nadine und jerome, die mir so lieb unterschlupf und
hilfe in diversen lebenslagen geboten haben.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0a4d5735-de0d-4d30-874c-0db8306995c1" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,0a4d5735-de0d-4d30-874c-0db8306995c1.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=ef5992e5-a199-4765-9100-37faafaaf297</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,ef5992e5-a199-4765-9100-37faafaaf297.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,ef5992e5-a199-4765-9100-37faafaaf297.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=ef5992e5-a199-4765-9100-37faafaaf297</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
vor einer woche: nach zwei tagen bangkok hatte ich mittlerweile kontakt zu antje und
gunnar. beide auf dem weg nach ko mak. vorhaben fuer sonntag vor einer woche: sich
am hafen auf dem festland zu treffen und zusammen auf die insel zu schippern. leider
- oder vielleicht auch zum glueck - war ich am abend zuvor auf maennertour mit jerome,
khao san road. bier, viel bier, dazwischen white russian (60 baht), englische maedels,
filmriss, nadine vor der tuer auf uns wartend (nachts um 3uhr), schlafen. jerome wusste
angeblich (nach gestriger unterhaltung) nicht einmal, wie ich mich am fruehen morgen
des sonntags der letzten woche aus dem bett quaelte, schliesslich musste ich das treffen
mit gunnar und antje schaffen. voellig ohne plan, kurz im bad, zaehne putzen, dabei
die kurzschlussidee, die mir eigentlich schon vor wochen durch den kopf ging: "mit
plastiktuete durch kambodscha". nach katzenwaesche wurde also nur das noetigste in
einer plastiktuete verstaut, die ab dem damaligen zeitpunkt fuer eine woche mein reisebegleiter
werden sollte. skytrain bis ekamai, noch am traeumen, mit dem kopf in der
letzten nacht, zum busbahnhof geschleppt. alles ging viel zu einfach - in meinem zustand;
sofort ein ticket bekommen, schon im bus, cookies und wasser fuer die fahrt wurden
verteilt, die bangkok post hatte ich am terminal gekauft. auch die eukalyptusnasenbefreiersticks.
schlafen, endlich wieder schlafen, gedanken, ob ich bis trat wieder einigermassen
fit bin.
</p>
        <p>
per pickup von trat bis zum hafen in laem ngop. bei herrlichem sonnenschein mit truckerbrille
und -kappe, photoapparat im anschlag gehe ich auf die beiden (hatte sie schon von
weitem gesehen und dieses vorhaben geplant) zu. es wird ein freudiges wiedersehen,
wobei beide recht stutzig, denoch gefasst auf mein aeusseres reagieren. vieles zu
erzaehlen, beiderseits - nationalpark mit blutegeln und regen, myanmar mit regen,
letzte nacht mit jerome und der hoellentrip zum treffpunkt. zusammen mit simon, einem
juengeren deutschen traveller wurden wir von ufer zu ufer geschleppt, immer noch sonne,
die langsam untergeht. im abendgrauen empfiehlt uns rainer aus stuttgart, wo es zu
dieser jahreszeit auf ko mak unterkuenfte gibt, die unseren einfachen und preiswerten
anspruechen gerecht werden koennen, transport wird auch von ihm organisiert. nicht
wirklich freudig ueber das empfohlene ergebniss verlief der abend zu viert vor dem
familienbungalow, moskitos, dazu bier.
</p>
        <p>
vier tage lang eigentlich nur regen und nichts tun. kurze abenteuerliche unterbrechung,
als wir am vierten tag zu einer inselbesichtigung aufbrechen. die auf ko mak ansaessigen
werdauer brueder, lutz und ralf(?) erzaehlten vom anderen strand. bei steigendem meeresspiegel
liefen (spaeter kletterten) wir durch verlassene buchten und an bedschungeltem strand,
dann auch noch regen. sorge um die kameras bei dem vielen wasser von oben und unten.
als endlich feststand, dass es nach 30 minuten auf gischtbedecktem, glitschigem fels
nicht weiterging blieb nur der rueckweg ueber gleiches, unwegsames, gefaehrliches
ufer. voellig durchnaesst kehrten wir in unser doppelt ausgestattetes doppelbett-familienzimmer
zurueck. kameras haben alles ueberstanden. nach etlichen bieren erneutes gemeinsames
einschlafen in gemeinsam genutzten zimmer, wie die tage zuvor.
</p>
        <p>
eigentlich sollte es nach diesem feuchten wandertag der letzte abend werden. jedoch
hatten wir es nicht auf die reihe gebracht uns um bezahlung und ruecktransport zu
kuemmern. zum glueck, wie sich am folgenden morgen herausstellte. endlich sonne, die
auch den ganzen tag ueber blieb. lustige bilder wie dieses entstanden zwischen badeeinsaetzen
und eincremen. abends mit alex telefoniert.
</p>
        <p>
          <img src="http://luckypixel.dyndns.org/blog/content/binary/_MG_2142.JPG" border="0" />
        </p>
        <p>
der abend zuvor wurde ausserdem von viel wind erfuellt, simon mit lagerfeuer am strand.
ploetzlich die beiden schweitzer, die wir schon tage zuvor gruessten. im typischen
schwytzerdeutsch: "wir wollen euch nicht beunruhigen, aber es gibt auf der insel geruechte,
von wegen tsunami und grosser welle". nach kurzem schock, diskussion und gebildetem
herangehen an die wahrheit der these steht fest, dass es sicher nur uebertriebene
angst ist in bezug auf das ereignis vor einigen monaten. unsere geographisch ausreichenden
kenntisse lassen uns mit sehr hoher wahrscheinlichkeit annehmen, dass es im golf von
thailand - aufgrund fehlender, sich ineinander schiebende tektonische platten - keinen
solchen tsunami geben sollte. denoch wird von eventuellem hochwasser gesprochen, was
durch meldungen (telefonisch und televisionell) in erfahrung gebracht werden konnte. sehr
skeptisch, mit vielen blicken zum rauschenden, dunklen nachtmeer versuchen wir diese
geschichte zu vergessen und schaffen das, wie gesagt, bei bier und thailaendischer
kost. der morgen danach: wie gesagt, sonne.
</p>
        <p>
tags drauf, nach dem sonnentag, dann doch die rueckfahrt zum festland, da sechs
tage relaxen ausreichen. gunnar und antje muessen nach bangkok, waehrend ich mit simon
in trat abhaenge und wir beide versuchen die langsamkeit der insel an die normalgeschwindigkeit
anzupassen, bevor es weitergeht. eigentlich haette ich mir schon vorstellen koennen,
"mit plastic bag nach cambodia" weiterzureisen. nach vielem hin und her im guesthouse
mit der nettesten guesthousemutti der gesamten reise dann doch die entscheidung: zurueck
ins hektische bangkok, zurueck zu nadine und meinem trinkfreund jerome, von da aus
mit nadine - sie hat noch zeit, bevor ihr neues praktikum losgeht - mal fuer kurz
nach sueden trippen, strand und sonne oder so. sonnencreme nicht vergessen! geld fuer
kambodscha ist irgendwie nicht mehr auf dem konto. zumal ich noch einen anzug schneidern
lassen moechte.
</p>
        <p>
 
</p>
        <p>
17.09.2005
</p>
        <p>
wir stranden in pattaya, simon und ich. wie konnte dieses passieren, wer hatte die
idee? der bus von trat nach bangkok spuckt uns am abend, es ist schon dunkel, auf
der hauptstrasse auf den buergersteig. wo ist norden? wo der strand? wir irren durch
diese stadt, mit allem gepaeck (in meinem fall plastiktuete und kameratasche). vielleicht
zwei stunden, permanent hupende pickups und rufende motortaxis, die transportdienste
anbieten - wir laufen weiter, dran vorbei, fast schon stur um unser geld zu sparen.
es sieht lange zeit beiweitem nicht so aus, wie im lonely planet beschrieben, es fehlt
noch was. irgendwann finden wir aber die schmuddeligen ecken, die langen sois, die
in rosafarbenen neonroehren bestrahlt werden. bestrahlt von den bars und den reflektionen
der vielen thaimaedchen, die auch dienste anbieten, aber keinen transport. es riecht
schon irgendwie nach sex, vielleicht nur einbildung bei diesen anblicken. neben rosa
und rotem licht, bestrahlen auch laute popmusik und die hinterherrufenden maedchen
die strasse. ich kannte das bisher nur aus filmen und von der soi cowboy (bangkok) vor
drei einhalb jahren. es gefaellt mir hier gar nicht, ekelhaft, eine nacht und schnellstmoeglich
weg. die entscheidung den pattayaabend im burgerking zu beenden war clever und lecker,
unsere baeuche entschieden diesen weg. mit zwei bier auf unser teueres doppelzimmer
(viermal so teuer, als in trat) - simon und ich. fernsehen per satellit, klimaanlage,
duschen, bier und fernsehen. einschlafen.
</p>
        <p>
 
</p>
        <p>
18.9.2005 
</p>
        <p>
nach wiederum knapp zwei stunden hasse ich diese stadt noch mehr. der bahnhof ist
nirgends ausgeschildert, was und zu diesem erneuten langen marsch, an diesen transportdienstaufdraengenden
menschen und maschinen durch die stadt schaeuchen liess. am bahnhof doch noch angekommen:
am wochenende faehrt kein zug nach bangkok, weder hin noch her. es war sonntag, heiss
und verschwitzt. fuesse reiben schon an den tevas. einem indisch-koreanischen paearchen
ging es aehnlich, als die beiden zur gleichen zeit am bahnhof ankommen. zurueck per
fuss. ich weiss, dank (mittlerweile) guter orientierung wo es zum busbahnhof geht.
dort angekommen geht es nach einem magnum auch schon los. zwei stunden spaeter in
bangkok. wieso will der taxifahrer fuer 5min fahrt 100 baht? die busfahrt, um den
chatu chak markt zu umfahren kostete nur 12 baht. hier trennen sich unsere wege. simon
will noch einmal ueber den chatu chak schlendern, es war ja sonntag. ich will eigentlich
nur duschen, also zu nadine. skytrain, und schon da, gestern am fruehen abend, obwohl
nadine nicht da ist.
</p>
        <p>
gestern am spaeten abend nachdem jerome vom shoppen heim kommt, schnell noch was gegessen
und eis und bier fuer unsere private full moon party eingeholt. nadine muss noch ein
buch lesen, denoch spielen wir "wer bin ich". weihnachtsmann, gera, farang, jerome,
heidi... wir lachen uns wieder mal kaputt, wie neulich im o'reillys in bangkok city.
</p>
        <p>
was nun diese woche noch passiert weiss ich nicht. nadine kann nun doch nicht mehr
mit auf reisen gehen, da sie schon am mittwoch mit ihrem praktikum anfangen muss.
eine sms information an mich kam tage zuvor leider nicht an. aber ich werde die tage
schon irgendwie bestreiten koennen. eventuell squash mit jerome. 
</p>
        <p>
 
</p>
        <p>
ps: schreibweise wie frisch. homo faber hat mir sehr gut gefallen.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ef5992e5-a199-4765-9100-37faafaaf297" />
      </body>
      <title>die letzte woche</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,ef5992e5-a199-4765-9100-37faafaaf297.aspx</guid>
      <link>http://pixelplastic.de/2005/09/19/dieLetzteWoche.aspx</link>
      <pubDate>Mon, 19 Sep 2005 08:47:12 GMT</pubDate>
      <description>&lt;p&gt;
vor einer woche: nach zwei tagen bangkok hatte ich mittlerweile kontakt zu antje und
gunnar. beide auf dem weg nach ko mak. vorhaben fuer sonntag vor einer woche: sich
am hafen auf dem festland zu treffen und zusammen auf die insel zu schippern. leider
- oder vielleicht auch zum glueck - war ich am abend zuvor auf maennertour mit jerome,
khao san road. bier, viel bier, dazwischen white russian (60 baht), englische maedels,
filmriss, nadine vor der tuer auf uns wartend (nachts um 3uhr), schlafen. jerome wusste
angeblich (nach gestriger unterhaltung) nicht einmal, wie ich mich am fruehen morgen
des sonntags der letzten woche aus dem bett quaelte, schliesslich musste ich das treffen
mit gunnar und antje schaffen. voellig ohne plan, kurz im bad, zaehne putzen, dabei
die kurzschlussidee, die mir eigentlich schon vor wochen durch den kopf ging: "mit
plastiktuete durch kambodscha". nach katzenwaesche wurde also nur das noetigste in
einer plastiktuete verstaut, die ab dem damaligen zeitpunkt fuer eine woche mein reisebegleiter
werden sollte. skytrain bis ekamai, noch am traeumen,&amp;nbsp;mit dem kopf&amp;nbsp;in der
letzten nacht, zum busbahnhof geschleppt. alles ging viel zu einfach - in meinem zustand;
sofort ein ticket bekommen, schon im bus, cookies und wasser fuer die fahrt wurden
verteilt, die bangkok post hatte ich am terminal gekauft. auch die eukalyptusnasenbefreiersticks.
schlafen, endlich wieder schlafen, gedanken, ob ich bis trat wieder einigermassen
fit bin.
&lt;/p&gt;
&lt;p&gt;
per pickup von trat bis zum hafen in laem ngop. bei herrlichem sonnenschein mit truckerbrille
und -kappe, photoapparat im anschlag gehe ich auf die beiden (hatte sie schon von
weitem gesehen und dieses vorhaben geplant) zu. es wird ein freudiges wiedersehen,
wobei beide recht stutzig, denoch gefasst auf mein aeusseres reagieren. vieles zu
erzaehlen, beiderseits - nationalpark mit blutegeln und regen, myanmar mit regen,
letzte nacht mit jerome und der hoellentrip zum treffpunkt. zusammen mit simon, einem
juengeren deutschen traveller wurden wir von ufer zu ufer geschleppt, immer noch sonne,
die langsam untergeht. im abendgrauen empfiehlt uns rainer aus stuttgart, wo es zu
dieser jahreszeit auf ko mak unterkuenfte gibt, die unseren einfachen und preiswerten
anspruechen gerecht werden koennen, transport wird auch von ihm organisiert. nicht
wirklich freudig ueber das empfohlene ergebniss verlief der abend zu viert vor dem
familienbungalow, moskitos, dazu bier.
&lt;/p&gt;
&lt;p&gt;
vier tage lang eigentlich nur regen und nichts tun. kurze abenteuerliche unterbrechung,
als wir am vierten tag zu einer inselbesichtigung aufbrechen. die auf ko mak ansaessigen
werdauer brueder, lutz und ralf(?) erzaehlten vom anderen strand. bei steigendem meeresspiegel
liefen (spaeter kletterten) wir durch verlassene buchten und an bedschungeltem strand,
dann auch noch regen. sorge um die kameras bei dem vielen wasser von oben und unten.
als endlich feststand, dass es nach 30 minuten auf gischtbedecktem, glitschigem fels
nicht weiterging blieb nur der rueckweg ueber gleiches, unwegsames, gefaehrliches
ufer. voellig durchnaesst kehrten wir in unser doppelt ausgestattetes doppelbett-familienzimmer
zurueck. kameras haben alles ueberstanden. nach etlichen bieren erneutes gemeinsames
einschlafen in gemeinsam genutzten zimmer, wie die tage zuvor.
&lt;/p&gt;
&lt;p&gt;
eigentlich sollte es nach diesem feuchten wandertag der letzte abend werden. jedoch
hatten wir es nicht auf die reihe gebracht uns um bezahlung und ruecktransport zu
kuemmern. zum glueck, wie sich am folgenden morgen herausstellte. endlich sonne, die
auch den ganzen tag ueber blieb. lustige bilder wie dieses entstanden zwischen badeeinsaetzen
und eincremen. abends mit alex telefoniert.
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://luckypixel.dyndns.org/blog/content/binary/_MG_2142.JPG" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
der abend zuvor wurde ausserdem von viel wind erfuellt, simon mit lagerfeuer am strand.
ploetzlich die beiden schweitzer, die wir schon tage zuvor gruessten. im typischen
schwytzerdeutsch: "wir wollen euch nicht beunruhigen, aber es gibt auf der insel geruechte,
von wegen tsunami und grosser welle". nach kurzem schock, diskussion und gebildetem
herangehen an die wahrheit der these steht fest, dass es sicher nur uebertriebene
angst ist in bezug auf das ereignis vor einigen monaten. unsere geographisch ausreichenden
kenntisse lassen uns mit sehr hoher wahrscheinlichkeit annehmen, dass es im golf von
thailand - aufgrund fehlender, sich ineinander schiebende tektonische platten - keinen
solchen tsunami geben sollte. denoch wird von eventuellem hochwasser gesprochen, was
durch meldungen (telefonisch und televisionell) in erfahrung gebracht werden konnte.&amp;nbsp;sehr
skeptisch, mit vielen blicken zum rauschenden, dunklen nachtmeer versuchen wir diese
geschichte zu vergessen und schaffen das, wie gesagt, bei bier und thailaendischer
kost. der morgen danach: wie gesagt, sonne.
&lt;/p&gt;
&lt;p&gt;
tags drauf, nach dem sonnentag,&amp;nbsp;dann doch die rueckfahrt zum festland, da sechs
tage relaxen ausreichen. gunnar und antje muessen nach bangkok, waehrend ich mit simon
in trat abhaenge und wir beide versuchen die langsamkeit der insel an die normalgeschwindigkeit
anzupassen, bevor es weitergeht. eigentlich haette ich mir schon vorstellen koennen,
"mit plastic bag nach cambodia" weiterzureisen. nach vielem hin und her im guesthouse
mit der nettesten guesthousemutti der gesamten reise dann doch die entscheidung: zurueck
ins hektische bangkok, zurueck zu nadine und meinem trinkfreund jerome, von da aus
mit nadine - sie hat noch zeit, bevor ihr neues praktikum losgeht - mal fuer kurz
nach sueden trippen, strand und sonne oder so. sonnencreme nicht vergessen! geld fuer
kambodscha ist irgendwie nicht mehr auf dem konto. zumal ich noch einen anzug schneidern
lassen moechte.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
17.09.2005
&lt;/p&gt;
&lt;p&gt;
wir stranden in pattaya, simon und ich. wie konnte dieses passieren, wer hatte die
idee? der bus von trat nach bangkok spuckt uns am abend, es ist schon dunkel, auf
der hauptstrasse auf den buergersteig. wo ist norden? wo der strand? wir irren durch
diese stadt, mit allem gepaeck (in meinem fall plastiktuete und kameratasche). vielleicht
zwei stunden, permanent hupende pickups und rufende motortaxis, die transportdienste
anbieten - wir laufen weiter, dran vorbei, fast schon stur um unser geld zu sparen.
es sieht lange zeit beiweitem nicht so aus, wie im lonely planet beschrieben, es fehlt
noch was. irgendwann finden wir aber die schmuddeligen ecken, die langen sois, die
in rosafarbenen neonroehren bestrahlt werden. bestrahlt von den bars und den reflektionen
der vielen thaimaedchen, die auch dienste anbieten, aber keinen transport. es riecht
schon irgendwie nach sex, vielleicht nur einbildung bei diesen anblicken. neben rosa
und rotem licht, bestrahlen auch laute popmusik und die hinterherrufenden maedchen
die strasse. ich kannte das bisher nur aus filmen und von der soi cowboy (bangkok)&amp;nbsp;vor
drei einhalb jahren. es gefaellt mir hier gar nicht, ekelhaft, eine nacht und schnellstmoeglich
weg. die entscheidung den pattayaabend im burgerking zu beenden war clever und lecker,
unsere baeuche entschieden diesen weg. mit zwei bier auf unser teueres doppelzimmer
(viermal so teuer, als in trat) - simon und ich. fernsehen per satellit, klimaanlage,
duschen, bier und fernsehen. einschlafen.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
18.9.2005 
&lt;/p&gt;
&lt;p&gt;
nach wiederum knapp zwei stunden hasse ich diese stadt noch mehr. der bahnhof ist
nirgends ausgeschildert, was und zu diesem erneuten langen marsch, an diesen transportdienstaufdraengenden
menschen und maschinen durch die stadt schaeuchen liess. am bahnhof doch noch angekommen:
am wochenende faehrt kein zug nach bangkok, weder hin noch her. es war sonntag, heiss
und verschwitzt. fuesse reiben schon an den tevas. einem indisch-koreanischen paearchen
ging es aehnlich, als die beiden zur gleichen zeit am bahnhof ankommen. zurueck per
fuss. ich weiss, dank (mittlerweile) guter orientierung wo es zum busbahnhof geht.
dort angekommen geht es nach einem magnum auch schon los. zwei stunden spaeter in
bangkok. wieso will der taxifahrer fuer 5min fahrt 100 baht? die busfahrt, um den
chatu chak markt zu umfahren kostete nur 12 baht. hier trennen sich unsere wege. simon
will noch einmal ueber den chatu chak schlendern, es war ja sonntag. ich will eigentlich
nur duschen, also zu nadine. skytrain, und schon da, gestern am fruehen abend, obwohl
nadine nicht da ist.
&lt;/p&gt;
&lt;p&gt;
gestern am spaeten abend nachdem jerome vom shoppen heim kommt, schnell noch was gegessen
und eis und bier fuer unsere private full moon party eingeholt. nadine muss noch ein
buch lesen, denoch spielen wir "wer bin ich". weihnachtsmann, gera, farang, jerome,
heidi... wir lachen uns wieder mal kaputt, wie neulich im o'reillys in bangkok city.
&lt;/p&gt;
&lt;p&gt;
was nun diese woche noch passiert weiss ich nicht. nadine kann nun doch nicht mehr
mit auf reisen gehen, da sie schon am mittwoch mit ihrem praktikum anfangen muss.
eine sms information an mich kam tage zuvor leider nicht an. aber ich werde die tage
schon irgendwie bestreiten koennen. eventuell squash mit jerome. 
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;p&gt;
ps: schreibweise wie frisch. homo faber hat mir sehr gut gefallen.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ef5992e5-a199-4765-9100-37faafaaf297" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,ef5992e5-a199-4765-9100-37faafaaf297.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=620dc61f-5b6a-4991-a30a-fd1ee0f9e427</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,620dc61f-5b6a-4991-a30a-fd1ee0f9e427.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,620dc61f-5b6a-4991-a30a-fd1ee0f9e427.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=620dc61f-5b6a-4991-a30a-fd1ee0f9e427</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
nachdem ich die tolle nachricht erhalten hatte so schnell zurueck nach thailand zu
kommen, hatte ich nur den vormittag des folgenden tages in bagan zur verfuegung. diesen
nutzte ich bei herrlichem sonnenschein, um mit einem geliehenen mountainbike die gegend
zu erforschen. auf diesem grossen gelaende liegen die vielen pagoden und tempel wirklich
dicht beisammen. nach drei stunden fahrt durch sehr staubig, trockenes gelaende kehrte
ich zurueck in richtung hostel. leider hatte ich mir einen platten eingefahren, so
dass ich unterwegs am strassenrand an einem kleinen fahrradstand vorbeikam. eigentlich
wollte ich es nur aufpumpen lassen - die wollten das gleich flicken. fuer 100kyats
(77ct) war das dann aber innerhalb von 10 minuten erledigt. im regen ging es anschliessend
die letzten 1.5 km zurueck. nach einem mittagessen holte ich mein flugticket ab und
brachte das fahrrad zurueck. im hostel schnell noch geduscht und gepackt - schon
stand der pickup vor dem hostel, der mich zum bus nach yangon bringen sollte.
</p>
        <p>
fuer meinen morgigen flug hatte ich nach busankunft in yangon ein zeitfenster von
sechs stunden (um 6uhr ankommen - um 12uhr fliegen). die fahrt verlief bis ca 19uhr
recht flott und ohne probleme. doch dann fing es an in massen zu regnen, so dass sich
die augetrockneten flussbetten, die wir zuvor schon mehrfach, problemlos durchfuhren
ploetzlich in mehr oder weniger reissende stroeme verwandelten. an einer stelle war
dann schluss. knietief standen leute von der gegenueberliegenden und diesseitigen
seite in der senke der strasse im wasser, welches recht schnell von links nach
rechts seinen weg suchte. man munkelte von mindestens zwei stunden wartezeit. mein
zeitfenster schrumpfte also von sechs auf vier stunden (die checkin zeit nicht inbegriffen).
relativ gelassen hab' ich also versucht mir das ganze spektakel anzuschauen. nach
anderthalb stunden ging es dann doch schon weiter - leider nur fuer 30 minuten: dann
naemlich gab es einen lauten knall, als waere ein ast auf das dach gefallen (wind
und regen waren immer nach am werkeln). aus dem ast wurde aber ein reifenplatzer.
diese panne dauerte weitere 30 minuten - noch mehr von diesen pleiten sollten
nicht passieren, sonst wird es naemlich wirklich knapp.
</p>
        <p>
zum glueck war der bus soweit fit und mutter natur hatte auch mitgespielt, so dass
wir eine halbe stunde aufholten und vier einhalb stunden vor abflug am highway busbahnhof
in yangon ankamen. zeit fuer ein kleines fruehstueck, um anschliessend mit einem minipickup
zum flughafen um die ecke weiterzufahren. rechtzeitig sass ich in dem zwei propeller
flieger und startete puenktlich in richtung chiang mai/thailand. dort angekommen teilte
ich mir die transportkosten vom flughafen mit zwei franzoesisch sprechenden schweitzerinnen,
um in die stadt zu gelangen. am zielhostel der beiden reisenden fragte ich nach, ob
noch eine chance bestuende einen nachtzug nach bangkok zu ergattern. das sollte kein
problem sein meinte die nette thailaenderin und ich machte mich auf den weg zum flughafen.
keine zwei stunden nach ankunft in chiang mai sass ich auch schon im zweite klasse
abteil eines zuges in die hauptstadt, der mich weitere 15 stunden von nord- nach suedthailand
karrte. dabei stellte ich fest, dass die dritte (und somit schlechteste) klasse hier
in thailand besser war, als die firstclass in myanmar.
</p>
        <p>
heute frueh um sieben kam ich also nach knapp 40 stunden reisezeit (ohne koerperpflege) hier
in bangkok an und wurde mit geoeffneter zimmertuer von nadine und jerome empfangen.
endlich duschen, endlich wieder zivilisation, endlich wieder ordentliche kommunikation,
endlich wieder richtige musik (dire straits und thievery corporation haben noch nie
so schoen im ohr geklungen), endlich fuehlt man sich nicht mehr als fremdkoerper in
einer anderen kultur. nun wieder in thailand angekommen merkt man, wie unterschiedlich
doch die beiden laender sind, obwohl sie so nah besammen liegen. myanmar mit
seinen politischen problemen und vielen ethnologischen teilvoelkern hat erst
seit kurzem und recht wenig tourismus im lande. im gegensatz dazu stellt der farang
hier in thailand schon eine art 'darf nicht fehlen' objekt dar. in myanmar
fuehlt man sich permanant beobachtet und wird von jedem, der ein paar worte englisch
kann ausgefragt. hier in thailand ist man im gegensatz dazu schon eine art mitglied
der gemeinschaft und ist nicht mehr das besondere im lande. es gab tausende sachen,
die ich hier noch aufzaehlen koennte - viele sachen muss man aber selber erleben,
um zu verstehen was ich meine.
</p>
        <p>
mal sehen, was heute abend noch so passiert - anscheinend mal ein besuch in der
khaosan road, wenn es mit regnen aufhoeren sollte. morgen werde ich mich unter umstaenden auf
dem riesigen chatu chak markt umsehen. vielleicht gibts ein paar schicke t-shirts
fuer wenig geld.
</p>
        <p>
demnaechst soll es aber schon auf eine insel im sueden gehen. wenn alles klar zusammen
mit gunnar und antje. damit verbunden kommt eventuell noch ein besuch in kambodscha
in frage - dafuer muss ich aber erst mal mit den beiden in kontakt treten
koennen. nur hab ich von ihnen seit letztem sonntag nix mehr gehoert. ich hoff das
klappt noch.
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=620dc61f-5b6a-4991-a30a-fd1ee0f9e427" />
      </body>
      <title>zwei laender, drei transportmittel und 3000km in 40 stunden</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,620dc61f-5b6a-4991-a30a-fd1ee0f9e427.aspx</guid>
      <link>http://pixelplastic.de/2005/09/09/zweiLaenderDreiTransportmittelUnd3000kmIn40Stunden.aspx</link>
      <pubDate>Fri, 09 Sep 2005 13:01:12 GMT</pubDate>
      <description>&lt;p&gt;
nachdem ich die tolle nachricht erhalten hatte so schnell zurueck nach thailand zu
kommen, hatte ich nur den vormittag des folgenden tages in bagan zur verfuegung. diesen
nutzte ich bei herrlichem sonnenschein, um mit einem geliehenen mountainbike die gegend
zu erforschen. auf diesem grossen gelaende liegen die vielen pagoden und tempel wirklich
dicht beisammen. nach drei stunden fahrt durch sehr staubig, trockenes gelaende kehrte
ich zurueck in richtung hostel. leider hatte ich mir einen platten eingefahren, so
dass ich unterwegs am strassenrand an einem kleinen fahrradstand vorbeikam. eigentlich
wollte ich es nur aufpumpen lassen - die wollten das gleich&amp;nbsp;flicken. fuer 100kyats
(77ct) war das dann aber innerhalb von 10 minuten erledigt. im regen ging es anschliessend
die letzten 1.5 km zurueck. nach einem mittagessen holte ich mein flugticket ab und
brachte das fahrrad zurueck. im hostel schnell noch geduscht und gepackt&amp;nbsp;-&amp;nbsp;schon
stand der pickup vor dem hostel, der mich zum bus nach yangon bringen sollte.
&lt;/p&gt;
&lt;p&gt;
fuer meinen morgigen flug hatte ich nach busankunft in yangon ein zeitfenster von
sechs stunden (um 6uhr ankommen - um 12uhr fliegen). die fahrt verlief bis ca 19uhr
recht flott und ohne probleme. doch dann fing es an in massen zu regnen, so dass sich
die augetrockneten flussbetten, die wir zuvor schon mehrfach, problemlos durchfuhren
ploetzlich in mehr oder weniger reissende stroeme verwandelten. an einer stelle war
dann schluss. knietief standen leute von der gegenueberliegenden und diesseitigen
seite in der senke der strasse im wasser, welches&amp;nbsp;recht schnell von links nach
rechts seinen weg suchte. man munkelte von mindestens zwei stunden wartezeit. mein
zeitfenster schrumpfte also von sechs auf vier stunden (die checkin zeit nicht inbegriffen).
relativ gelassen hab' ich also versucht mir das ganze spektakel anzuschauen. nach
anderthalb stunden ging es dann doch schon weiter - leider nur fuer 30 minuten: dann
naemlich gab es einen lauten knall, als waere ein ast auf das dach gefallen (wind
und regen waren immer nach am werkeln). aus dem ast wurde aber ein reifenplatzer.
diese panne dauerte weitere 30 minuten -&amp;nbsp;noch mehr von diesen&amp;nbsp;pleiten sollten
nicht passieren,&amp;nbsp;sonst wird es naemlich wirklich knapp.
&lt;/p&gt;
&lt;p&gt;
zum glueck war der bus soweit fit und mutter natur hatte auch mitgespielt, so dass
wir eine halbe stunde aufholten und vier einhalb stunden vor abflug am highway busbahnhof
in yangon ankamen. zeit fuer ein kleines fruehstueck, um anschliessend mit einem minipickup
zum flughafen um die ecke weiterzufahren. rechtzeitig sass ich in dem zwei propeller
flieger und startete puenktlich in richtung chiang mai/thailand. dort angekommen teilte
ich mir die transportkosten vom flughafen mit zwei franzoesisch sprechenden schweitzerinnen,
um in die stadt zu gelangen. am zielhostel der beiden reisenden fragte ich nach, ob
noch eine chance bestuende einen nachtzug nach bangkok zu ergattern. das sollte kein
problem sein meinte die nette thailaenderin und ich machte mich auf den weg zum flughafen.
keine zwei stunden nach ankunft in chiang mai sass ich auch schon im zweite klasse
abteil eines zuges in die hauptstadt, der mich weitere 15 stunden von nord- nach suedthailand
karrte. dabei stellte ich fest, dass die dritte (und somit schlechteste) klasse hier
in thailand besser war, als die firstclass in myanmar.
&lt;/p&gt;
&lt;p&gt;
heute frueh um sieben kam ich also nach knapp 40 stunden reisezeit (ohne koerperpflege)&amp;nbsp;hier
in bangkok an und wurde mit geoeffneter zimmertuer von nadine und jerome empfangen.
endlich duschen, endlich wieder zivilisation, endlich wieder ordentliche kommunikation,
endlich wieder richtige musik (dire straits und thievery corporation haben noch nie
so schoen im ohr geklungen), endlich fuehlt man sich nicht mehr als fremdkoerper in
einer anderen kultur.&amp;nbsp;nun wieder in thailand angekommen merkt man, wie unterschiedlich
doch die beiden laender sind, obwohl sie&amp;nbsp;so nah besammen liegen. myanmar mit
seinen politischen problemen und vielen ethnologischen teilvoelkern hat&amp;nbsp;erst
seit kurzem und recht wenig tourismus im lande. im gegensatz dazu stellt der farang
hier in thailand schon eine art&amp;nbsp;'darf nicht fehlen' objekt&amp;nbsp;dar. in myanmar
fuehlt man sich permanant beobachtet und wird von jedem, der ein paar worte englisch
kann ausgefragt. hier in thailand ist man im gegensatz dazu schon eine art mitglied
der gemeinschaft und ist nicht mehr das besondere im lande. es gab tausende sachen,
die ich hier noch aufzaehlen koennte - viele sachen muss man&amp;nbsp;aber selber erleben,
um zu verstehen was ich meine.
&lt;/p&gt;
&lt;p&gt;
mal sehen, was heute abend noch so passiert&amp;nbsp;- anscheinend mal ein besuch in der
khaosan road, wenn es mit regnen aufhoeren sollte. morgen werde ich mich unter umstaenden&amp;nbsp;auf
dem riesigen chatu chak markt umsehen. vielleicht gibts ein paar schicke t-shirts
fuer wenig geld.
&lt;/p&gt;
&lt;p&gt;
demnaechst soll es aber schon auf eine insel im sueden gehen. wenn alles klar zusammen
mit gunnar und antje. damit verbunden&amp;nbsp;kommt eventuell noch ein besuch in kambodscha
in frage - dafuer muss ich aber erst mal mit&amp;nbsp;den beiden&amp;nbsp;in kontakt treten
koennen. nur hab ich von ihnen seit letztem sonntag nix mehr gehoert. ich hoff das
klappt noch.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=620dc61f-5b6a-4991-a30a-fd1ee0f9e427" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,620dc61f-5b6a-4991-a30a-fd1ee0f9e427.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=d31ec642-2689-4b5a-b234-2f031aa6987b</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,d31ec642-2689-4b5a-b234-2f031aa6987b.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,d31ec642-2689-4b5a-b234-2f031aa6987b.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=d31ec642-2689-4b5a-b234-2f031aa6987b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
so langsam fang ich hier an durchzudrehen. ich will wieder jemanden sehen, den ich
kenn. darum habe ich heute nach der 10 (in worten zehn) stuendigen bootsfahrt von
mandalay hier nach bagan noch mal versucht, ob es nicht moeglich ist schon am donnerstag
zurueck nach thailand zu fliegen. ich dachte eigentlich, dass das unmachbar waere.
aber siehe da: es geht. morgen schon fahre ich mit dem nachbus nach yangon zurueck,
komme dort am donnerstag frueh um 5 an und werde schon um 12 im flieger nach chiang
mai sitzen. und das fuer schlappe 77 euronen plus 5 fuer bus.
</p>
        <p>
mit viel glueck schaff ich es dann von dort aus am gleichen tag noch einen nachtzug
zu erwischen, der mich dann am freitag in bangkok rauswirft. wir werden sehen. 
</p>
        <p>
gestern war ich in myanmar noch mit dem englaender tom und einem schweitzer zu abend
essen und anschliessend per trishaw bei den beruehmten moustache borthers. das ist
eine familiaere truppe von komikern, die hier in myanmar seit jahren durchs land reisen
und satirisch ueber alles herziehen. unter anderem auch ueber politik - das wurde
vor jahren fuer einen der brueder zum verhaengnis, so dass er fuer sieben jahre ins
gefaengnis musste. jetzt duerfen sie nur noch im eigenen haus auftreten. war ne ganz
witzige, wenn zum ende hin auch recht kommerzielle sache.
</p>
        <p>
der heutige tag begann mit um 4:30 aufstehen und verlief hauptsaechlich auf dem wasser.
wahnsinnig breit ist dieser ayeyarwady fluss und schlengelt sich von mandalay durch
das flache land. weit entfernt sieht man kleinere gebirgszuege und ab und an blinken
links und recht am weiten ufer stupas und pagoden auf.
</p>
        <p>
kurz vor ankunft in bagan kamen wir mit dem kahn noch in ein dickes unwetter, so dass
wir am ufer notanlegen mussten. man konnte keine 50m weit schauen, so derb hat es
geschuettet. ist aber alles gut gegangen. ich werde diesen abend noch relaxen, um
dann morgen per fahrrad hier alles zu erkunden - eine riesige ausgrabungsstaette mit
einigen dutzend wenn nicht hundert pagoden und stupas. eigentlich hab ich davon ja
die schn...ze voll - aber so zum abschluss geb ich mir noch mal so richtig den pagoden-overdrive.
</p>
        <p>
bin gespannt, ob ich irgendwie noch ein treffen mit gunnar und antje organisieren
kann. die beiden scheinen mir schon auf ko mak zu sein, um dort vor ihrem kambodscha
aufenthalt zu relaxen. vielleicht geh ich ja auch noch in dieses land. mal sehen.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d31ec642-2689-4b5a-b234-2f031aa6987b" />
      </body>
      <title>doch noch schneller zurueck</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,d31ec642-2689-4b5a-b234-2f031aa6987b.aspx</guid>
      <link>http://pixelplastic.de/2005/09/06/dochNochSchnellerZurueck.aspx</link>
      <pubDate>Tue, 06 Sep 2005 12:09:34 GMT</pubDate>
      <description>&lt;p&gt;
so langsam fang ich hier an durchzudrehen. ich will wieder jemanden sehen, den ich
kenn. darum habe ich heute nach der 10 (in worten zehn) stuendigen bootsfahrt von
mandalay hier nach bagan noch mal versucht, ob es nicht moeglich ist schon am donnerstag
zurueck nach thailand zu fliegen. ich dachte eigentlich, dass das unmachbar waere.
aber siehe da: es geht. morgen schon fahre ich mit dem nachbus nach yangon zurueck,
komme dort am donnerstag frueh um 5 an und werde schon um 12 im flieger nach chiang
mai sitzen. und das fuer schlappe 77 euronen plus 5 fuer bus.
&lt;/p&gt;
&lt;p&gt;
mit viel glueck schaff ich es dann von dort aus am gleichen tag noch einen nachtzug
zu erwischen, der mich dann am freitag in bangkok rauswirft. wir werden sehen. 
&lt;/p&gt;
&lt;p&gt;
gestern war ich in myanmar noch mit dem englaender tom und einem schweitzer zu abend
essen und anschliessend per trishaw bei den beruehmten moustache borthers. das ist
eine familiaere truppe von komikern, die hier in myanmar seit jahren durchs land reisen
und satirisch ueber alles herziehen. unter anderem auch ueber politik - das wurde
vor jahren fuer einen der brueder zum verhaengnis, so dass er fuer sieben jahre ins
gefaengnis musste. jetzt duerfen sie nur noch im eigenen haus auftreten. war ne ganz
witzige, wenn zum ende hin auch recht kommerzielle sache.
&lt;/p&gt;
&lt;p&gt;
der heutige tag begann mit um 4:30 aufstehen und verlief hauptsaechlich auf dem wasser.
wahnsinnig breit ist dieser ayeyarwady fluss und schlengelt sich von mandalay durch
das flache land. weit entfernt sieht man kleinere gebirgszuege und ab und an blinken
links und recht am weiten ufer stupas und pagoden auf.
&lt;/p&gt;
&lt;p&gt;
kurz vor ankunft in bagan kamen wir mit dem kahn noch in ein dickes unwetter, so dass
wir am ufer notanlegen mussten. man konnte keine 50m weit schauen, so derb hat es
geschuettet. ist aber alles gut gegangen. ich werde diesen abend noch relaxen, um
dann morgen per fahrrad hier alles zu erkunden - eine riesige ausgrabungsstaette mit
einigen dutzend wenn nicht hundert pagoden und stupas. eigentlich hab ich davon ja
die schn...ze voll - aber so zum abschluss geb ich mir noch mal so richtig den pagoden-overdrive.
&lt;/p&gt;
&lt;p&gt;
bin gespannt, ob ich irgendwie noch ein treffen mit gunnar und antje organisieren
kann. die beiden scheinen mir schon auf ko mak zu sein, um dort vor ihrem kambodscha
aufenthalt zu relaxen. vielleicht geh ich ja auch noch in dieses land. mal sehen.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d31ec642-2689-4b5a-b234-2f031aa6987b" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,d31ec642-2689-4b5a-b234-2f031aa6987b.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=1d50a9c1-db54-4ffe-bacd-d110d2742034</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,1d50a9c1-db54-4ffe-bacd-d110d2742034.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,1d50a9c1-db54-4ffe-bacd-d110d2742034.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=1d50a9c1-db54-4ffe-bacd-d110d2742034</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
hallo keule, halle papi, mami und schwester,
</p>
        <p>
bei mir ist alles in ordnung. ich konnte mich leider nicht melden, da ich zwei tage
im regenwald unterwegs war. in den restlichen orten seit der letzten nachricht von
mir gab es leider keine chance irgendwo in's internet zu gelangen. entweder gab es
gar kein internet oder die gmx-seiten waren vom burmesischen internetprovider gesperrt.
ich hatte vor ner woche mal an einem tag fieber und durchfall. das war aber nach einem
guenstigen arztbesuch (1,20 EUR incl pillen) am naechsten tag schon wieder vergessen. 
</p>
        <p>
mittlerweile neigt sich meine reise dem ende. bin im moment in mandalay.
</p>
        <p>
morgen gehts mit dem boot 10 stunden lang flussanwaerts nach bagan - einer historischen
stadt mit tausenden pagoden. dort noch mal zwei tage und dann zurueck nach yangon.
von dort dann wahrscheinlich am 10.09. mit dem flieger nach chiang mai in thailand
um von dort mit dem zug nach bangkok zu fahren (ist der bisher guenstigste weg, den
ich finden konnte).
</p>
        <p>
ich werde auf alle faelle versuchen in yangon noch einmal ne meldung zu machen. dort
wird es sicher auch wieder internet geben. spaetestens aber von chiang mai aus.
</p>
        <p>
bis dahin seid herzlichst gegruesst und macht euch nicht so viele sorgen.
</p>
        <p>
die leute hier sind alle total freundlich und helfen, wo sie nur koennen ( auch wenn
es diverse touriabzocken gibt). geld ist noch ausreichend vorhanden, geklaut wurde
auch noch nicht und ab und an trifft man nette traveller, die einen ein bisschen auf
dem weg begleiten.
</p>
        <p>
best wishes 
</p>
        <p>
marci
</p>
        <p>
@janschi: hsv rockt. die haben es eben drauf. denk auch an dich und freu mich schon,
euch alle endlich wieder zu sehen.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=1d50a9c1-db54-4ffe-bacd-d110d2742034" />
      </body>
      <title>die letzten tage</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,1d50a9c1-db54-4ffe-bacd-d110d2742034.aspx</guid>
      <link>http://pixelplastic.de/2005/09/05/dieLetztenTage.aspx</link>
      <pubDate>Mon, 05 Sep 2005 10:18:07 GMT</pubDate>
      <description>&lt;p&gt;
hallo keule, halle papi, mami und schwester,
&lt;/p&gt;
&lt;p&gt;
bei mir ist alles in ordnung. ich konnte mich leider nicht melden, da ich zwei tage
im regenwald unterwegs war. in den restlichen orten seit der letzten nachricht von
mir gab es leider keine chance irgendwo in's internet zu gelangen. entweder gab es
gar kein internet oder die gmx-seiten waren vom burmesischen internetprovider gesperrt.
ich hatte vor ner woche mal an einem tag fieber und durchfall. das war aber nach einem
guenstigen arztbesuch (1,20 EUR incl pillen) am naechsten tag schon wieder vergessen. 
&lt;/p&gt;
&lt;p&gt;
mittlerweile neigt sich meine reise dem ende. bin im moment in mandalay.
&lt;/p&gt;
&lt;p&gt;
morgen gehts mit dem boot 10 stunden lang flussanwaerts nach bagan - einer historischen
stadt mit tausenden pagoden. dort noch mal zwei tage und dann zurueck nach yangon.
von dort dann wahrscheinlich am 10.09. mit dem flieger nach chiang mai in thailand
um von dort mit dem zug nach bangkok zu fahren (ist der bisher guenstigste weg, den
ich finden konnte).
&lt;/p&gt;
&lt;p&gt;
ich werde auf alle faelle versuchen in yangon noch einmal ne meldung zu machen. dort
wird es sicher auch wieder internet geben. spaetestens aber von chiang mai aus.
&lt;/p&gt;
&lt;p&gt;
bis dahin seid herzlichst gegruesst und macht euch nicht so viele sorgen.
&lt;/p&gt;
&lt;p&gt;
die leute hier sind alle total freundlich und helfen, wo sie nur koennen ( auch wenn
es diverse touriabzocken gibt). geld ist noch ausreichend vorhanden, geklaut wurde
auch noch nicht und ab und an trifft man nette traveller, die einen ein bisschen auf
dem weg begleiten.
&lt;/p&gt;
&lt;p&gt;
best wishes 
&lt;/p&gt;
&lt;p&gt;
marci
&lt;/p&gt;
&lt;p&gt;
@janschi: hsv rockt. die haben es eben drauf. denk auch an dich und freu mich schon,
euch alle endlich wieder zu sehen.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=1d50a9c1-db54-4ffe-bacd-d110d2742034" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,1d50a9c1-db54-4ffe-bacd-d110d2742034.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=39e8bc55-7a22-4e64-8c42-1179e26b74a4</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,39e8bc55-7a22-4e64-8c42-1179e26b74a4.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,39e8bc55-7a22-4e64-8c42-1179e26b74a4.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=39e8bc55-7a22-4e64-8c42-1179e26b74a4</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
heute bin ich in bereits den zweiten tag in nyaungshwe, einem kleinen ort am inle
lake in der naehe von mandalay. hier ist es zum glueck etwas entspannender als in
der grossen stadt yangon. das tal in dem der 22x11km grosse see liegt ist von bergen
umringt, in denen sich ab und an dicke regenwolken verirren.
</p>
        <p>
yangon hatte ich bereits nach zwei naechten wieder verlassen. irgendwie fehlt dieser
stadt der charme. schlechte strassen und gehwege, keine strassenbeleuchtung und abgesehen
von der shwedagon paya kaum aufregende attraktionen zu bewundern. von yangon aus ging
es nun also mit dem bus nach kyaikto, um von dort aus mit einem pickup zum basislager
kinpun aufzubrechen. kinpun liegt in einem kleineren mittelgebirge im mon state und
ist ausgangspunkt fuer eine tour zum kyaiktiyto - dem golden rock. das ist ein ca
5m grosser, goldener, fast runder felsen der kurz vorm kippen auf einem berg steht
- und das wohl schon seit tausenden von jahren. ziemlich faszinierende eindruecke,
die einen dort erfahren. leider war an diesem tag das wetter wieder mal nicht des
reisenden freund: am gipfel hatten sich regenwolken festgehangen und somit nur fuer
eine sicht von 15m gesorgt. der ausblick auf das umliegende land waere an einem klaren
tag sicher ein weiteres highlight fuer diese tour gewesen.
</p>
        <p>
mit den beiden slovenen, die ich auf dieser tour kennengelernt hatte ging es noch
am gleichen tag mit einem pickup zurueck nach bago. dieser trip dauerte drei stunden
und das bei diesen herrlichen strassen. bago selber ist eine transitstadt, von der
es den darauf folgenden tag hierher zum inle lake gehen sollte. das hotel dort war
ok, aber wirklich nur fuer eine nacht gedacht. laenger wollte man einfach nicht in
dieser stadt bleiben - dauerverkehr in form hupender busse, lkws und mopeds. und das
restaurant, welches ich mit den beiden slovenen am abend noch zum essen besuchte hatte
auch nicht viel zu bieten: das personal konnte keine einziges wort englisch, die herausgesuchten
gerichte konnten nicht zubereitet werden und ratten sind unterm tisch langspaziert.
angeblich war das der beste laden in der stadt.
</p>
        <p>
tzzzzzz.
</p>
        <p>
die drei stuendige pickup tour vom vortag noch im nacken ging es nun also weiter nach
norden. der aircon bus war randvoll. da ich in der vorletzten reihe sass, konnte ich
jedes schlagloch der hauptverkehrsstrasse doppelt so gut fuehlen. das was hier der
beste weg zwischen nord und sued ist wueder man bei uns wahrscheinlich als kleinstdorfzubringer
bezeichnen - hier ist das autobahn. teilweise passen keine zwei busse nebeneinander,
es gibt mehr schlagloecher und huckeln als teer, strassenbeleuchtung fehlanzeige und
scheinwerfen sind eher nebensache. gefahren wird zum teil ohne oder nur mit standlicht.
und das in ziemlich waghalsigem tempo - wahrscheinlich stehen auch die busfahrer hier
unter drogen: fast jeder burmese kaut auf irgendwelchen nuessen, die aehnlich wie
kautabak wirken und einen ekelhaften roten speichel verursachen. dieser wird dann
wo man geht oder steht einfach ausgespuckt. ebenso war es auch in dem bus. 
</p>
        <p>
ansich sind die autos, wie schon erwaehnt hier alle in schlechtestem zustand. was
aber unbedingt funktionieren sollte ist die hupe. wenn die geht, dann kann man auch
auf der strasse fahren. 
</p>
        <p>
die 11 stunden fahrt in den norden waren also unglaublich grausam. nicht nur fuer
koerper - auch fuer den geist. nebenher besitzt auch jeder bus eine funktionsfaehige
dvd-anlage. dort werden in voller lautstaerke musik-dvds mit karaoke untertiteln abgespielt.
dabei ist jeder song schnulziger als der andere. anfangs fand ich die sachen noch
lustig - mittlerweile hab ich sie hassen gelernt. alles in allem war diese fahrt das
bisher schlechteste, was ich erlebt habe.
</p>
        <p>
nichts desto trotz bin ich gestern ziemlich verknittert und zerknautscht frueh um
fuenf hier in der naehe von nyaungshwe aus dem bus gefallen und per pickup in mein
zuvor ausgesuchtes guesthouse gebracht worden. dort war erst einmal schlaf nachholen
angesagt.
</p>
        <p>
sicher klingt das alles ziemlich unschoen, was ich hier schreibe - ist aber nicht
alles so schlimm. das gehoert eben in dieses land und zu dieser reise und wird mir
meine reisestimmung nicht verderben. die burmesen an sich sind hier alle recht nette
gesellen. wenn irgendwer auch nur einige worte englisch kann, so wird versucht einen
kleinen smalltalk aufzubauen. erst gestern hat mich hier in nyaungshwe ein alter 70
jaehriger lehrer aus der hauptstadt des shan states angesprochen. er wollte einiges
von mir wissen und hat mich anschliessend zu sich nach hause eingeladen, um mit mir
auf die umliegenden berge zu steigen. ein typisches, von seiner frau gekochtes burmesisches
mittagessen soll wohl auch mit drin sein. ich werde sicher nach den 3-4 tagen hier
am inle lake zu ihm aufbrechen und schauen, ob sich hinter seinen worten nicht doch
irgendeine touristische abzocke verbirgt.
</p>
        <p>
soweit erst einmal von hier. ich werde jetzt noch ein fahrrad ausleihen und mir mal
die umgebung ansehen.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=39e8bc55-7a22-4e64-8c42-1179e26b74a4" />
      </body>
      <title>nyaungshwe</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,39e8bc55-7a22-4e64-8c42-1179e26b74a4.aspx</guid>
      <link>http://pixelplastic.de/2005/08/26/nyaungshwe.aspx</link>
      <pubDate>Fri, 26 Aug 2005 07:45:55 GMT</pubDate>
      <description>&lt;p&gt;
heute bin ich in bereits den zweiten tag in nyaungshwe, einem kleinen ort am inle
lake in der naehe von mandalay. hier ist es zum glueck etwas entspannender als in
der grossen stadt yangon. das tal in dem der 22x11km grosse see liegt ist von bergen
umringt, in denen sich ab und an dicke regenwolken verirren.
&lt;/p&gt;
&lt;p&gt;
yangon hatte ich bereits nach zwei naechten wieder verlassen. irgendwie fehlt dieser
stadt der charme. schlechte strassen und gehwege, keine strassenbeleuchtung und abgesehen
von der shwedagon paya kaum aufregende attraktionen zu bewundern. von yangon aus ging
es nun also mit dem bus nach kyaikto, um von dort aus mit einem pickup zum basislager
kinpun aufzubrechen. kinpun liegt in einem kleineren mittelgebirge im mon state und
ist ausgangspunkt fuer eine tour zum kyaiktiyto - dem golden rock. das ist ein ca
5m grosser, goldener, fast runder felsen der kurz vorm kippen auf einem berg steht
- und das wohl schon seit tausenden von jahren. ziemlich faszinierende eindruecke,
die einen dort erfahren. leider war an diesem tag das wetter wieder mal nicht des
reisenden freund: am gipfel hatten sich regenwolken festgehangen und somit nur fuer
eine sicht von 15m gesorgt. der ausblick auf das umliegende land waere an einem klaren
tag sicher ein weiteres highlight fuer diese tour gewesen.
&lt;/p&gt;
&lt;p&gt;
mit den beiden slovenen, die ich auf dieser tour kennengelernt hatte ging es noch
am gleichen tag mit einem pickup zurueck nach bago. dieser trip dauerte drei stunden
und das bei diesen herrlichen strassen. bago selber ist eine transitstadt, von der
es den darauf folgenden tag hierher zum inle lake gehen sollte. das hotel dort war
ok, aber wirklich nur fuer eine nacht gedacht. laenger wollte man einfach nicht in
dieser stadt bleiben - dauerverkehr in form hupender busse, lkws und mopeds. und das
restaurant, welches ich mit den beiden slovenen am abend noch zum essen besuchte hatte
auch nicht viel zu bieten: das personal konnte keine einziges wort englisch, die herausgesuchten
gerichte konnten nicht zubereitet werden und ratten sind unterm tisch langspaziert.
angeblich war das der beste laden in der stadt.
&lt;/p&gt;
&lt;p&gt;
tzzzzzz.
&lt;/p&gt;
&lt;p&gt;
die drei stuendige pickup tour vom vortag noch im nacken ging es nun also weiter nach
norden. der aircon bus war randvoll. da ich in der vorletzten reihe sass, konnte ich
jedes schlagloch der hauptverkehrsstrasse doppelt so gut fuehlen. das was hier der
beste weg zwischen nord und sued ist wueder man bei uns wahrscheinlich als kleinstdorfzubringer
bezeichnen - hier ist das autobahn. teilweise passen keine zwei busse nebeneinander,
es gibt mehr schlagloecher und huckeln als teer, strassenbeleuchtung fehlanzeige und
scheinwerfen sind eher nebensache. gefahren wird zum teil ohne oder nur mit standlicht.
und das in ziemlich waghalsigem tempo - wahrscheinlich stehen auch die busfahrer hier
unter drogen: fast jeder burmese kaut auf irgendwelchen nuessen, die aehnlich wie
kautabak wirken und einen ekelhaften roten speichel verursachen. dieser wird dann
wo man geht oder steht einfach ausgespuckt. ebenso war es auch in dem bus. 
&lt;/p&gt;
&lt;p&gt;
ansich sind die autos, wie schon erwaehnt hier alle in schlechtestem zustand. was
aber unbedingt funktionieren sollte ist die hupe. wenn die geht, dann kann man auch
auf der strasse fahren. 
&lt;/p&gt;
&lt;p&gt;
die 11 stunden fahrt in den norden waren also unglaublich grausam. nicht nur fuer
koerper - auch fuer den geist. nebenher besitzt auch jeder bus eine funktionsfaehige
dvd-anlage. dort werden in voller lautstaerke musik-dvds mit karaoke untertiteln abgespielt.
dabei ist jeder song schnulziger als der andere. anfangs fand ich die sachen noch
lustig - mittlerweile hab ich sie hassen gelernt. alles in allem war diese fahrt das
bisher schlechteste, was ich erlebt habe.
&lt;/p&gt;
&lt;p&gt;
nichts desto trotz bin ich gestern ziemlich verknittert und zerknautscht frueh um
fuenf hier in der naehe von nyaungshwe aus dem bus gefallen und per pickup in mein
zuvor ausgesuchtes guesthouse gebracht worden. dort war erst einmal schlaf nachholen
angesagt.
&lt;/p&gt;
&lt;p&gt;
sicher klingt das alles ziemlich unschoen, was ich hier schreibe - ist aber nicht
alles so schlimm. das gehoert eben in dieses land und zu dieser reise und wird mir
meine reisestimmung nicht verderben. die burmesen an sich sind hier alle recht nette
gesellen. wenn irgendwer auch nur einige worte englisch kann, so wird versucht einen
kleinen smalltalk aufzubauen. erst gestern hat mich hier in nyaungshwe ein alter 70
jaehriger lehrer aus der hauptstadt des shan states angesprochen. er wollte einiges
von mir wissen und hat mich anschliessend zu sich nach hause eingeladen, um mit mir
auf die umliegenden berge zu steigen. ein typisches, von seiner frau gekochtes burmesisches
mittagessen soll wohl auch mit drin sein. ich werde sicher nach den 3-4 tagen hier
am inle lake zu ihm aufbrechen und schauen, ob sich hinter seinen worten nicht doch
irgendeine touristische abzocke verbirgt.
&lt;/p&gt;
&lt;p&gt;
soweit erst einmal von hier. ich werde jetzt noch ein fahrrad ausleihen und mir mal
die umgebung ansehen.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=39e8bc55-7a22-4e64-8c42-1179e26b74a4" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,39e8bc55-7a22-4e64-8c42-1179e26b74a4.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=6f939cf1-d7e2-4a1e-abfb-9ea9af2a51d6</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,6f939cf1-d7e2-4a1e-abfb-9ea9af2a51d6.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,6f939cf1-d7e2-4a1e-abfb-9ea9af2a51d6.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=6f939cf1-d7e2-4a1e-abfb-9ea9af2a51d6</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
hallo ihr lieben,
</p>
        <p>
leider sieht es hier mit internet etwas schlecht aus. daher kann ich auch nicht in
meinen blog schreiben. dafuer muss nun papier und stift herhalten. unabhaengig davon
bin ich gluecklich in myanmar angekommen. unglaublich warm ist es hier und feucht
wie in einer sauna - gut, das meine kamera das mitmacht. die menschen sind herzlichst
und offen fuer jedes gespraech. ansonsten ist das traveller leben hier relativ einsam,
da es kaum - eigentlich keine - mitstreiter gibt. in den letzten beiden tagen in yangon
habe ich hoechstens aller 3 stunden mal einen auslaender/europaer getroffen.
ansonsten nur kautabak spukende burmesen. mal sehen, wie es auf den naechsten etappen
ablaeuft.
</p>
        <p>
finanziell ist dieses land der traum. ich komme hier scheinbar mit ca. 5 dollar pro
tag aus. darin inbegriffen: essen, trinken, schlafen, eintritt und transport. im moment
habe ich hier in yangon eine kleine herberge fuer 3 dollar pro nacht inclusive fruehstueck.
</p>
        <p>
heute geht es noch weiter nach bago, einer kleinen stadt, zwei busstunden von yangon
entfernt. dort werde ich nur eine nacht verbringen um morgen nach kyaikto weiterzufahren.
dort ist der beruehmte goldene felsen zu finden. danach geht's sicher weiter richtung
norden nach bagan (eine stadt mit unendlich vielen pagoden) um von dort aus per boot
nach mandalay aufzubrechen. spaetestens in mandalay wird es wieder internet geben
- also in 5-6 tagen. vielleicht auch in den staedten auf dem weg dorthin. aber
das weiss ich nicht genau. 
</p>
        <p>
in mandalay werde ich sicher auch 2-3 tage verbringen. wie es danach weitergeht kommt
mit der naechsten mail. ich habe aber vor im norden auch einen trekkingtour
zu machen. mal sehen ob das klappt.
</p>
        <p>
bis dahin seid herzlichst gegruesst.
</p>
        <p>
marci
</p>
        <p>
[einer von E-Mail entnommen und von Alex gepostet]
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6f939cf1-d7e2-4a1e-abfb-9ea9af2a51d6" />
      </body>
      <title>ich lebe noch</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,6f939cf1-d7e2-4a1e-abfb-9ea9af2a51d6.aspx</guid>
      <link>http://pixelplastic.de/2005/08/22/ichLebeNoch.aspx</link>
      <pubDate>Mon, 22 Aug 2005 07:40:25 GMT</pubDate>
      <description>&lt;p&gt;
hallo ihr lieben,
&lt;/p&gt;
&lt;p&gt;
leider sieht es hier mit internet etwas schlecht aus. daher kann ich auch nicht in
meinen blog schreiben. dafuer muss nun papier und stift herhalten. unabhaengig davon
bin ich gluecklich in myanmar angekommen. unglaublich warm ist es hier und feucht
wie in einer sauna - gut, das meine kamera das mitmacht. die menschen sind herzlichst
und offen fuer jedes gespraech. ansonsten ist das traveller leben hier relativ einsam,
da es kaum - eigentlich keine - mitstreiter gibt. in den letzten beiden tagen in yangon
habe ich&amp;nbsp;hoechstens aller 3 stunden mal einen auslaender/europaer getroffen.
ansonsten nur kautabak spukende burmesen. mal sehen, wie es auf den naechsten etappen
ablaeuft.
&lt;/p&gt;
&lt;p&gt;
finanziell ist dieses land der traum. ich komme hier scheinbar mit ca. 5 dollar pro
tag aus. darin inbegriffen: essen, trinken, schlafen, eintritt und transport. im moment
habe ich hier in yangon eine kleine herberge fuer 3 dollar pro nacht inclusive fruehstueck.
&lt;/p&gt;
&lt;p&gt;
heute geht es noch weiter nach bago, einer kleinen stadt, zwei busstunden von yangon
entfernt. dort werde ich nur&amp;nbsp;eine nacht verbringen um morgen nach kyaikto weiterzufahren.
dort ist der beruehmte goldene felsen zu finden. danach geht's sicher weiter richtung
norden nach bagan (eine stadt mit unendlich vielen pagoden) um von dort aus per boot
nach mandalay aufzubrechen. spaetestens in mandalay wird es wieder internet geben
-&amp;nbsp;also in 5-6 tagen. vielleicht auch in den staedten auf dem weg dorthin. aber
das weiss ich nicht genau. 
&lt;/p&gt;
&lt;p&gt;
in mandalay werde ich sicher auch 2-3 tage verbringen. wie es danach weitergeht kommt
mit der naechsten mail.&amp;nbsp;ich habe aber vor&amp;nbsp;im norden auch einen trekkingtour
zu machen. mal sehen ob das klappt.
&lt;/p&gt;
&lt;p&gt;
bis dahin seid herzlichst gegruesst.
&lt;/p&gt;
&lt;p&gt;
marci
&lt;/p&gt;
&lt;p&gt;
[einer von E-Mail entnommen und von Alex gepostet]
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6f939cf1-d7e2-4a1e-abfb-9ea9af2a51d6" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,6f939cf1-d7e2-4a1e-abfb-9ea9af2a51d6.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=99a2ba5c-ed5f-4074-9309-46204e27e2eb</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,99a2ba5c-ed5f-4074-9309-46204e27e2eb.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,99a2ba5c-ed5f-4074-9309-46204e27e2eb.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=99a2ba5c-ed5f-4074-9309-46204e27e2eb</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
das mit dem kurzfilm hatte dann doch nicht geklappt. irgendwie gingen die eigentlichen
vorstellungen nur bis zum tag meiner landung - also vorvorgestern. alternativ
haben wir uns dann spontan dazu entschlossen mit sushi und chang bier in den film
tom yum goong (<a href="http://www.tomyumgoongmovie.com/">http://www.tomyumgoongmovie.com/</a>)
zu gehen. komisch das hatten wir doch am sonntag noch gegessen? der film lief auf
thai mit englischen untertiteln und teilweise auf englisch mit thai untertiteln. inhalt:
where is my elephant (mittlerweile "der" running gag bei nadine, jerome und mir)?
ein junger thai waechst im urwald mit seinen lieblingselefanten auf, die dann eines
tages nach sydney entfuehrt werden. fuer uns unerklaerlich und im film nicht geschildert,
schafft es der kleine thai aus dem wald ein flugticket nach australien zu organisieren
um dort alles kurz und klein zu schlagen. von szene zu szene werden es immer mehr
und groessere gegner, die sich ihm in den weg stellen, bis er letztendlich zum endgegner
kommt. mit grossem tammtamm wird auch diese(r) vermoebelt und alle sind gluecklich.
ganz schoen harter streifen, den ich mir in deutschland wohl nicht angeschaut haette.
@alex, robert und gunnar: das geraeusch von brechendem genick aus pink floyd waren
nix gegen das, was man da gestern gehoert hat. eine gute sache hatte der kinobesuch
denoch: ich konnte multimedial erleben, wie der thailaendische koenig sogar im kino
verehrt wird. mit dem erklingen der nationalhymne haben alle kinobesucher vor beginn
des filmes aufzustehen, um dem dollen werbefilm zuzuschauen. fast so gut wie die taegliche
prozedur mitten auf der strasse: dort erklingt naemlich auch jeden tag um 18 uhr die
nationalhymne und saemtliche passanten bleiben dort wo sie gerade sind stehen und
lauschen den kraechzenden toenen. tzzz. verruecktes voelkchen - aber liebenswert.
</p>
        <p>
im anschluss an das leckere essen ging es noch in ein kleines restaurant, in dem ich
sogar schon mit alex und daniela vor ueber drei jahren war. dort haben wir wieder
typisches leckeres  thaifood zu uns genommen: pangan (so aehnlich wie red chili
glaub ich) und fishcakes und salat und und und. ich kann mir das immer gar nicht alles
merken. nur eines: njamnjam. und so sah es dort aus:
</p>
        <p>
          <img alt="" hspace="0" src="C:\Documents and Settings\User\Desktop\marci\vert\_MG_0467.JPG" align="baseline" border="0" />
        </p>
        <p>
gesaettigt ging es dann nur noch schnell mit zu nadine, um dort meinen rucksack zu
holen. leider war es schon kurz vor mitternacht, als ich mich von nadines wohnung
zu meiner neuen unterkunft aufmachte. so musste ich mit einem taxi vorlieb nehmen.
im youth hostel angekommen war irgendwie alles schon im bett. die aircon lief und
ich tapste im dunkeln durch mein achtmannzimmer zu meinem bett. cool - die aircon
war direkt neben meinem bett. das wird 'ne nacht. um meine wertvolle kamera zu verstauen
versuchte ich eine der mehreren im zimmer installierten metalboxen zu oeffnen. leider
war ausser schepperndem krach nix an diesen dingern auszurichten was zum oeffnen haette
beitragen koennen. also hatte ich diese nacht ein maechtig dickes und hartes kissen
fuer meinen kopf. dem entsprechen mehr recht als schlecht habe ich dann auch geschlafen.
da mich jerome und nadine schon den ganzen tag genervt hatten, wie gern sie mich doch
wieder als untermieter bei sich haetten wusste ich am naechsten morgen, dass dies
die erste und letzte nacht in diesem hostel gewesen war.
</p>
        <p>
 
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=99a2ba5c-ed5f-4074-9309-46204e27e2eb" />
      </body>
      <title>kino und hostel</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,99a2ba5c-ed5f-4074-9309-46204e27e2eb.aspx</guid>
      <link>http://pixelplastic.de/2005/08/17/kinoUndHostel.aspx</link>
      <pubDate>Wed, 17 Aug 2005 11:51:32 GMT</pubDate>
      <description>&lt;p&gt;
das mit dem kurzfilm hatte dann doch nicht geklappt. irgendwie gingen die eigentlichen
vorstellungen nur bis zum tag meiner landung&amp;nbsp;- also vorvorgestern. alternativ
haben wir uns dann spontan dazu entschlossen mit sushi und chang bier in den film
tom yum goong (&lt;a href="http://www.tomyumgoongmovie.com/"&gt;http://www.tomyumgoongmovie.com/&lt;/a&gt;)
zu gehen. komisch das hatten wir doch am sonntag noch gegessen? der film lief auf
thai mit englischen untertiteln und teilweise auf englisch mit thai untertiteln. inhalt:
where is my elephant (mittlerweile "der" running gag bei nadine, jerome und mir)?
ein junger thai waechst im urwald mit seinen lieblingselefanten auf, die dann eines
tages nach sydney entfuehrt werden. fuer uns unerklaerlich und im film nicht geschildert,
schafft es der kleine thai aus dem wald ein flugticket nach australien zu organisieren
um dort alles kurz und klein zu schlagen. von szene zu szene werden es immer mehr
und groessere gegner, die sich ihm in den weg stellen, bis er letztendlich zum endgegner
kommt. mit grossem tammtamm wird auch diese(r) vermoebelt und alle sind gluecklich.
ganz schoen harter streifen, den ich mir in deutschland wohl nicht angeschaut haette.
@alex, robert und gunnar: das geraeusch von brechendem genick aus pink floyd waren
nix gegen das, was man da gestern gehoert hat. eine gute sache hatte der kinobesuch
denoch: ich konnte multimedial erleben, wie der thailaendische koenig sogar im kino
verehrt wird. mit dem erklingen der nationalhymne haben alle kinobesucher vor beginn
des filmes aufzustehen, um dem dollen werbefilm zuzuschauen. fast so gut wie die taegliche
prozedur mitten auf der strasse: dort erklingt naemlich auch jeden tag um 18 uhr die
nationalhymne und saemtliche passanten bleiben dort wo sie gerade sind stehen und
lauschen den kraechzenden toenen. tzzz. verruecktes voelkchen - aber liebenswert.
&lt;/p&gt;
&lt;p&gt;
im anschluss an das leckere essen ging es noch in ein kleines restaurant, in dem ich
sogar schon mit alex und daniela vor ueber drei jahren war. dort haben wir wieder
typisches leckeres&amp;nbsp; thaifood zu uns genommen: pangan (so aehnlich wie red chili
glaub ich) und fishcakes und salat und und und. ich kann mir das immer gar nicht alles
merken. nur eines: njamnjam. und so sah es dort aus:
&lt;/p&gt;
&lt;p&gt;
&lt;img alt="" hspace=0 src="C:\Documents and Settings\User\Desktop\marci\vert\_MG_0467.JPG" align=baseline border=0&gt;
&lt;/p&gt;
&lt;p&gt;
gesaettigt ging es dann nur noch schnell mit zu nadine, um dort meinen rucksack zu
holen. leider war es schon kurz vor mitternacht, als ich mich von nadines wohnung
zu meiner neuen unterkunft aufmachte. so musste ich mit einem taxi vorlieb nehmen.
im youth hostel angekommen war irgendwie alles schon im bett. die aircon lief und
ich tapste im dunkeln durch mein achtmannzimmer zu meinem bett. cool - die aircon
war direkt neben meinem bett. das wird 'ne nacht. um meine wertvolle kamera zu verstauen
versuchte ich eine der mehreren im zimmer installierten metalboxen zu oeffnen. leider
war ausser schepperndem krach nix an diesen dingern auszurichten was zum oeffnen&amp;nbsp;haette
beitragen koennen. also hatte ich diese nacht ein maechtig dickes und hartes kissen
fuer meinen kopf. dem entsprechen mehr recht als schlecht habe ich dann auch geschlafen.
da mich jerome und nadine schon den ganzen tag genervt hatten, wie gern sie mich doch
wieder als untermieter bei sich haetten wusste ich am naechsten morgen, dass dies
die erste und letzte nacht in diesem hostel gewesen war.
&lt;/p&gt;
&lt;p&gt;
&amp;nbsp;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=99a2ba5c-ed5f-4074-9309-46204e27e2eb" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,99a2ba5c-ed5f-4074-9309-46204e27e2eb.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=c1d0bca4-1e0e-4afe-b9f7-a7a95992a8f8</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,c1d0bca4-1e0e-4afe-b9f7-a7a95992a8f8.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,c1d0bca4-1e0e-4afe-b9f7-a7a95992a8f8.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=c1d0bca4-1e0e-4afe-b9f7-a7a95992a8f8</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
mir geht's gut und bangkok hat mich wieder.
</p>
        <p>
schon in dubai konnte man beim aussteigen aus dem flieger (und transport mit shuttlebus)
dieses tolle subtropische klima spueren. einfach warm und unglaublich feucht. aber
zum glueck war der airport klimatisiert. sonst haette ich dort keine acht stunden
ausgehalten. eigentlich waeren es ja nur knapp vier stunden wartezeit gewesen. mit
einer verspaetung haette ich nicht gerechnet. es kamen also auf grund einer verzoegerung
noch einmal knapp vier stunden dazu. halb einschlafend habe ich so mit kamera und
audiorecorder die nacht verbracht um im morgengrauen von dort aus zu starten und bei
regen in bangkok zu landen.
</p>
        <p>
mit herzallerliebster umarmung hat mich nadine vom flieger abgeholt. schoen sie endlich
wieder zu sehen und um sich zu haben. zusammen sind wir (fuer normale ankommende backpacker
untypisch) mit bus und skytrain vom flughafen zu nadines wohnung ... aeehm zimmer
gefahren. beim vielen schnattern mit nadine ist mir waehrend der fahrt nur langsam
bewusst geworden, wo ich hier eigentlich gelandet war. wieder in bangkok. vielleicht
habe ich das auch nicht so richtig wahrgenommen, weil ich schon mal hier war.
erst als nadine mich fragt, ob ich denn auch diesen typischen "bangkok geruch" rieche
macht's bei mir so langsam klick - ja das kenn' ich irgendwo her. diese schwuele fuechtwarme
luft ist aehnlich der aus dubai. doch hat sie noch irgend etwas in sich, was
es nur in bangkok zu geben scheint. ich glaube selbst jetzt wo ich hier schreibe bin
ich noch nicht so richtig angekommen. jede minute wird etwas neues entdeckt und bringt
einen naeher an diese kultur und dieses land. zum beispiel der tropische regen, der
gerade angefangen hat. aber das scheint ja (wie auch in mexico) typisch fuer diese
klimaregion zu sein, dass es nachmittags eben mal kurz schuettet.
</p>
        <p>
gestern abend ging es nach einer erfrischung in nadines wasch-dusch-koch-abwasch-kombi-zimmer zusammen
mit jerome noch um die ecke zum abendessen. jerome ist nadines arbeitsloser beistand
aus hamburg, der ebenfalls hier gestrandet ist, bei nadine lebt und wie sie nach arbeit
sucht. aber irgendwie beissen sich die beiden durch, auch wenn es am bitteren ende
"nur" ein job als englisch lehrer werden wird. der abendliche ausflug gestaltete sich
auch wieder typisch bangkokisch: unglaublich schrille, laute thaimusik, wasserverspruehende
ventilatoren mitten auf der strasse, garkuechen am laufenden meter, autos, tuktuks,
mopeds, und und und. einfach nur ein wildes durcheinander und das ohne sonnenlicht.
zur erklaerung: hier wird es frueher dunkel das scheint zum einen an der fehlenden
sommerzeit zu liegen. zum anderen aber auch daran, dass wir uns hier naeher am aequator
befinden, wo das alles noch einmal schneller ablaeuft. es war also schon dunkel, als
wir gegen 18uhr in einem strassenpub unter einem fussballspiel zeigenden fernseher
platz nahmen. nach zwei kuehlen biers (zu dritt) sind wir zu einer leckeren tom yum
goong suppe uebergegangen. einfach nur lecker. @alex: die daheim gemachte kommt zwar
ran - hier ist es aber einfach noch mal leckerer. auf dem rueckweg bei "messi"
(wer das ist erklaer ich spaeter mal) noch schnell zwei bier mitgenommen
um bei nadine noch ein bisschen zu schnattern. die letzte nacht hab' ich auch bei
ihr und jerome verbracht - auf dem fussboden. sicherlich denken jetzt einige (vor
allem mutti): der arme junge. aber zwischen jerome und nadine im bett waere es auch
nicht viel weicher gewesen. zum ausgleich gibt es nachher eventuell noch eine thaimassage. 
</p>
        <p>
fuer die kommenden naechte habe ich mich heute im international youth hostel bangkok
eingebucht. fuer 170 baht (ca. 3.50 eur) gibt es dort ein bett im achtmannzimmer -
dafuer aber mit aircon. den weg dorthin habe ich allein zurueckgelegt. meine
erste auf-eigene-faust-unternehmung hier. der hinweg war etwas beschwerlich und ich
denke der tuktuk fahrer hatte sein geschaeft des tages mit mir gemacht. dafuer war
der rueckweg zu nadine nach dem checkin im hostel um einiges guenstiger: gerade mal
4 baht mit dem bus. fuer die letzten meter zu fuss bin ich durch die phetchaburi soi
5 - einer wirklich urigen gasse in der keine zwei autos aneinander vorbei fahren koennen.
links und rechts kocht und koechelt es, werden handys repariert und schuhe verkauft,
knattern mopeds an einem vorbei. ab und an kommt ein auto von vorn oder hinten
und will hupend vorwaerts kommen. ich habe auf den 200 bis 300 metern keinen einzigen
farang (zu deutsch: westlicher tourist) gesehen und mich zum ersten mal so richtig
weit weg von daheim gefuehlt. ein angenehmes gefuehl. hier in dieser strasse haben
wir heute frueh auch unser fruehstueck besorgt: hoellisch scharfer papaya salat,
frische ananas, melone, gegrillte banane am spiess, waffeln mit rosinen, eiskaffee
im beutel und komische frittierte dinger von ding.
</p>
        <p>
die soi 5 durchquert fand ich bei nadine gerade eben keinen, der mir die
tuer aufsperren wollte. also dachte ich mir: "geh'n wir doch  mal eben um die
ecke surfen". dabei entstand dieser eintrag. und wen treff' ich da? nadine
und jerome. so klein ist bangkok. tzzzz
</p>
        <p>
da hier in bangkok gerade kurzfilm tage sind geht es heute noch zu einer vorfuehrung.
ausserdem ist vor meiner weiterreise nach myanmar geplant, bei einem thaibox wettkampf
vorbei zu schauen. das wird also dann sicher in den naechsten tagen geschehen.<br />
so der regen ist vorbei. und ich denke der eintrag vermittelt meinen lesern schon
mal einen eindruck von dem, was ich hier erlebe. also bleibt dran. der naechste wird
kommen.
</p>
        <p>
@gunnar und antje: denkt an ein vorhaengeschloss. kann in hostels nuetzlich sein.
so wie in meinem zum beispiel. da ich noch keines habe werde ich mir gleich mal ein's
kaufen gehen. ausserdem noch dieser tip: im flieger einen stifft dabei haben. macht
sich besser beim ausfuellen der einreise-formulare, die man vorm landen bekommt. falls
mir hier noch mehr einfaellt, werde ich euch das zukommen lassen.
</p>
        <p>
@alex: denk bitte dran die bumspalme und die beiden pflanzen in meinem zimmer zu giessen.
einmal pro woche reicht - aber nicht ueberschwemmen :)
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c1d0bca4-1e0e-4afe-b9f7-a7a95992a8f8" />
      </body>
      <title>ankunft der gerueche</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,c1d0bca4-1e0e-4afe-b9f7-a7a95992a8f8.aspx</guid>
      <link>http://pixelplastic.de/2005/08/15/ankunftDerGerueche.aspx</link>
      <pubDate>Mon, 15 Aug 2005 10:57:05 GMT</pubDate>
      <description>&lt;p&gt;
mir geht's gut und bangkok hat mich wieder.
&lt;/p&gt;
&lt;p&gt;
schon in dubai konnte man beim aussteigen aus dem flieger (und transport mit shuttlebus)
dieses tolle subtropische klima spueren. einfach warm und unglaublich feucht. aber
zum glueck war der airport klimatisiert. sonst haette ich dort keine acht stunden
ausgehalten. eigentlich waeren es ja nur knapp vier stunden wartezeit gewesen. mit
einer verspaetung haette ich nicht gerechnet. es kamen also auf grund einer verzoegerung
noch einmal knapp vier stunden dazu. halb einschlafend habe ich so mit kamera und
audiorecorder die nacht verbracht um im morgengrauen von dort aus zu starten und bei
regen in bangkok zu landen.
&lt;/p&gt;
&lt;p&gt;
mit herzallerliebster umarmung hat mich nadine vom flieger abgeholt. schoen sie endlich
wieder zu sehen und um sich zu haben. zusammen sind wir (fuer normale ankommende backpacker
untypisch) mit bus und skytrain vom flughafen zu nadines wohnung ... aeehm zimmer
gefahren. beim vielen schnattern mit nadine ist mir waehrend der fahrt nur langsam
bewusst geworden, wo ich hier eigentlich gelandet war. wieder in bangkok. vielleicht
habe ich das auch nicht so richtig wahrgenommen, weil ich&amp;nbsp;schon mal hier war.
erst als nadine mich fragt, ob ich denn auch diesen typischen "bangkok geruch" rieche
macht's bei mir so langsam klick - ja das kenn' ich irgendwo her. diese schwuele fuechtwarme
luft ist aehnlich der aus dubai.&amp;nbsp;doch hat sie noch irgend etwas in sich, was
es nur in bangkok zu geben scheint. ich glaube selbst jetzt wo ich hier schreibe bin
ich noch nicht so richtig angekommen. jede minute wird etwas neues entdeckt und bringt
einen naeher an diese kultur und dieses land. zum beispiel der tropische regen, der
gerade angefangen hat. aber das scheint ja (wie auch in mexico) typisch fuer diese
klimaregion zu sein, dass es nachmittags eben mal kurz schuettet.
&lt;/p&gt;
&lt;p&gt;
gestern abend ging es nach einer&amp;nbsp;erfrischung&amp;nbsp;in nadines wasch-dusch-koch-abwasch-kombi-zimmer&amp;nbsp;zusammen
mit jerome noch um die ecke zum abendessen. jerome ist nadines arbeitsloser beistand
aus hamburg, der ebenfalls hier gestrandet ist, bei nadine lebt und wie sie nach arbeit
sucht. aber irgendwie beissen sich die beiden durch, auch wenn es am bitteren ende
"nur" ein job als englisch lehrer werden wird. der abendliche ausflug gestaltete sich
auch wieder typisch bangkokisch: unglaublich schrille, laute thaimusik, wasserverspruehende
ventilatoren mitten auf der strasse, garkuechen am laufenden meter, autos, tuktuks,
mopeds, und und und. einfach nur ein wildes durcheinander und das ohne sonnenlicht.
zur erklaerung: hier wird es frueher dunkel das scheint zum einen an der fehlenden
sommerzeit zu liegen. zum anderen aber auch daran, dass wir uns hier naeher am aequator
befinden, wo das alles noch einmal schneller ablaeuft. es war also schon dunkel, als
wir gegen 18uhr in einem&amp;nbsp;strassenpub unter einem fussballspiel zeigenden fernseher
platz nahmen. nach zwei kuehlen biers (zu dritt) sind wir zu einer leckeren tom yum
goong suppe uebergegangen. einfach nur lecker. @alex: die daheim gemachte kommt zwar
ran - hier ist es aber einfach noch mal leckerer. auf dem rueckweg&amp;nbsp;bei "messi"
(wer das ist erklaer ich spaeter&amp;nbsp;mal)&amp;nbsp;noch schnell zwei bier mitgenommen
um bei nadine noch ein bisschen zu schnattern. die letzte nacht hab' ich auch bei
ihr und jerome verbracht - auf dem fussboden. sicherlich denken jetzt einige (vor
allem mutti): der arme junge. aber zwischen jerome und nadine im bett waere es auch
nicht viel weicher gewesen. zum ausgleich gibt es nachher eventuell noch eine thaimassage. 
&lt;/p&gt;
&lt;p&gt;
fuer die kommenden naechte habe ich mich heute im international youth hostel bangkok
eingebucht. fuer 170 baht (ca. 3.50 eur) gibt es dort ein bett im achtmannzimmer -
dafuer aber&amp;nbsp;mit aircon. den weg dorthin habe ich allein zurueckgelegt. meine
erste auf-eigene-faust-unternehmung hier. der hinweg war etwas beschwerlich und ich
denke der tuktuk fahrer hatte sein geschaeft des tages mit mir gemacht. dafuer war
der rueckweg zu nadine nach dem checkin im hostel um einiges guenstiger: gerade mal
4 baht mit dem bus. fuer die letzten meter zu fuss bin ich durch die phetchaburi soi
5 - einer wirklich urigen gasse in der keine zwei autos aneinander vorbei fahren koennen.
links und rechts kocht und koechelt es, werden handys repariert und schuhe verkauft,
knattern mopeds&amp;nbsp;an einem vorbei. ab und an kommt ein auto von vorn oder hinten
und will hupend vorwaerts kommen. ich habe auf den 200 bis 300 metern keinen einzigen
farang (zu deutsch: westlicher tourist) gesehen und mich zum ersten mal so richtig
weit weg von daheim gefuehlt. ein angenehmes gefuehl. hier in dieser strasse haben
wir heute frueh auch unser fruehstueck besorgt:&amp;nbsp;hoellisch scharfer papaya salat,
frische ananas, melone, gegrillte banane am spiess, waffeln mit rosinen, eiskaffee
im beutel und komische frittierte dinger von ding.
&lt;/p&gt;
&lt;p&gt;
die soi 5 durchquert fand ich bei nadine&amp;nbsp;gerade eben&amp;nbsp;keinen, der mir die
tuer aufsperren wollte. also dachte ich mir: "geh'n wir doch&amp;nbsp; mal eben um die
ecke surfen".&amp;nbsp;dabei entstand dieser eintrag.&amp;nbsp;und wen treff' ich da? nadine
und jerome. so klein ist bangkok. tzzzz
&lt;/p&gt;
&lt;p&gt;
da hier in bangkok gerade kurzfilm tage sind geht es heute noch zu einer vorfuehrung.
ausserdem ist vor meiner weiterreise nach myanmar geplant, bei einem thaibox wettkampf
vorbei zu schauen. das wird also dann sicher in den naechsten tagen geschehen.&lt;br&gt;
so der regen ist vorbei. und ich denke der eintrag vermittelt meinen lesern schon
mal einen eindruck von dem, was ich hier erlebe. also bleibt dran. der naechste wird
kommen.
&lt;/p&gt;
&lt;p&gt;
@gunnar und antje: denkt an ein vorhaengeschloss. kann in hostels nuetzlich sein.
so wie in meinem zum beispiel. da ich noch keines habe werde ich mir gleich mal ein's
kaufen gehen. ausserdem noch dieser tip: im flieger einen stifft dabei haben. macht
sich besser beim ausfuellen der einreise-formulare, die man vorm landen bekommt. falls
mir hier noch mehr einfaellt, werde ich euch das zukommen lassen.
&lt;/p&gt;
&lt;p&gt;
@alex: denk bitte dran die bumspalme und die beiden pflanzen in meinem zimmer zu giessen.
einmal pro woche reicht - aber nicht ueberschwemmen :)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c1d0bca4-1e0e-4afe-b9f7-a7a95992a8f8" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,c1d0bca4-1e0e-4afe-b9f7-a7a95992a8f8.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=0116911e-3f29-4f1d-8ac0-b522243eff05</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,0116911e-3f29-4f1d-8ac0-b522243eff05.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,0116911e-3f29-4f1d-8ac0-b522243eff05.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=0116911e-3f29-4f1d-8ac0-b522243eff05</wfw:commentRss>
      <title>neues album: 20050808 - opi in jung</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,0116911e-3f29-4f1d-8ac0-b522243eff05.aspx</guid>
      <link>http://pixelplastic.de/2005/08/09/neuesAlbum20050808OpiInJung.aspx</link>
      <pubDate>Tue, 09 Aug 2005 18:19:14 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=32646b82-3161-4a14-a884-0b02d433f8e2&amp;initialPhoto=03010b52-c665-433a-a4a4-680cb5e6bba4" target="_blank"&gt;&lt;b&gt;20050808
- opi in jung&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0116911e-3f29-4f1d-8ac0-b522243eff05" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,0116911e-3f29-4f1d-8ac0-b522243eff05.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=ae152091-abb0-4a40-a371-9a39cbfe8e40</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,ae152091-abb0-4a40-a371-9a39cbfe8e40.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,ae152091-abb0-4a40-a371-9a39cbfe8e40.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=ae152091-abb0-4a40-a371-9a39cbfe8e40</wfw:commentRss>
      <title>neues album: 20050807 - seifenkistenrennen in Posterstein</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,ae152091-abb0-4a40-a371-9a39cbfe8e40.aspx</guid>
      <link>http://pixelplastic.de/2005/08/09/neuesAlbum20050807SeifenkistenrennenInPosterstein.aspx</link>
      <pubDate>Tue, 09 Aug 2005 18:17:18 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=c738623e-b147-4aa2-af35-a1fc93dc8b2f&amp;initialPhoto=1a631983-5e45-446f-8e52-2cd0fa61a485" target="_blank"&gt;&lt;b&gt;20050807
- seifenkistenrennen in Posterstein&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=ae152091-abb0-4a40-a371-9a39cbfe8e40" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,ae152091-abb0-4a40-a371-9a39cbfe8e40.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=7cd4fccf-3b5a-4c5e-addd-0a9741ce699e</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,7cd4fccf-3b5a-4c5e-addd-0a9741ce699e.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,7cd4fccf-3b5a-4c5e-addd-0a9741ce699e.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=7cd4fccf-3b5a-4c5e-addd-0a9741ce699e</wfw:commentRss>
      <title>neues album: 20050801 - geburtstagsparty bei betty</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,7cd4fccf-3b5a-4c5e-addd-0a9741ce699e.aspx</guid>
      <link>http://pixelplastic.de/2005/08/09/neuesAlbum20050801GeburtstagspartyBeiBetty.aspx</link>
      <pubDate>Tue, 09 Aug 2005 18:14:28 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=909e7184-a1a5-4781-9d3e-ad2f201d786a&amp;initialPhoto=d2a98dfe-cb89-450a-9d32-85a95f0332db" target="_blank"&gt;&lt;b&gt;20050801
- geburtstagsparty bei betty&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7cd4fccf-3b5a-4c5e-addd-0a9741ce699e" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,7cd4fccf-3b5a-4c5e-addd-0a9741ce699e.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=af624ff0-10cf-477d-b122-b0d8bf422ccd</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,af624ff0-10cf-477d-b122-b0d8bf422ccd.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,af624ff0-10cf-477d-b122-b0d8bf422ccd.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=af624ff0-10cf-477d-b122-b0d8bf422ccd</wfw:commentRss>
      <title>neues album: 20050731 - sushiabend bei felix</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,af624ff0-10cf-477d-b122-b0d8bf422ccd.aspx</guid>
      <link>http://pixelplastic.de/2005/08/09/neuesAlbum20050731SushiabendBeiFelix.aspx</link>
      <pubDate>Tue, 09 Aug 2005 18:13:06 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=dacc519e-a79f-4dbf-bd90-474ba781f765&amp;initialPhoto=ebcbffd2-8fae-4464-99ca-23a8dd5ccd42" target="_blank"&gt;&lt;b&gt;20050731
- sushiabend bei felix&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=af624ff0-10cf-477d-b122-b0d8bf422ccd" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,af624ff0-10cf-477d-b122-b0d8bf422ccd.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=3597bc71-9406-4079-a7f3-b4c924804372</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,3597bc71-9406-4079-a7f3-b4c924804372.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,3597bc71-9406-4079-a7f3-b4c924804372.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=3597bc71-9406-4079-a7f3-b4c924804372</wfw:commentRss>
      <title>neues album: 20050731 - kaktussonne</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,3597bc71-9406-4079-a7f3-b4c924804372.aspx</guid>
      <link>http://pixelplastic.de/2005/07/31/neuesAlbum20050731Kaktussonne.aspx</link>
      <pubDate>Sun, 31 Jul 2005 16:31:23 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=c95e83e9-15d4-4fad-9381-9c3e6b34bf40&amp;initialPhoto=6234d676-b277-4a35-a05a-ee2b2f83b291" target="_blank"&gt;&lt;b&gt;20050731
- kaktussonne&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=3597bc71-9406-4079-a7f3-b4c924804372" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,3597bc71-9406-4079-a7f3-b4c924804372.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=8e16f7a2-7eb8-4c82-aaaa-e71979b17a5a</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,8e16f7a2-7eb8-4c82-aaaa-e71979b17a5a.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,8e16f7a2-7eb8-4c82-aaaa-e71979b17a5a.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=8e16f7a2-7eb8-4c82-aaaa-e71979b17a5a</wfw:commentRss>
      <title>neues album: 20050730 - feuerwehreinsatz mit kettensaege</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,8e16f7a2-7eb8-4c82-aaaa-e71979b17a5a.aspx</guid>
      <link>http://pixelplastic.de/2005/07/30/neuesAlbum20050730FeuerwehreinsatzMitKettensaege.aspx</link>
      <pubDate>Sat, 30 Jul 2005 23:58:06 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=ecc90c9f-0881-43af-b7e7-ece4a9d9f337&amp;initialPhoto=988e2171-cafc-4f14-a0a9-ffda7399835e" target="_blank"&gt;&lt;b&gt;20050730
- feuerwehreinsatz mit kettensaege&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=8e16f7a2-7eb8-4c82-aaaa-e71979b17a5a" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,8e16f7a2-7eb8-4c82-aaaa-e71979b17a5a.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=0f2f7da6-6b73-49e1-a6e9-2117377d7b40</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,0f2f7da6-6b73-49e1-a6e9-2117377d7b40.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,0f2f7da6-6b73-49e1-a6e9-2117377d7b40.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=0f2f7da6-6b73-49e1-a6e9-2117377d7b40</wfw:commentRss>
      <title>neues album: 20050724 - mahl</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,0f2f7da6-6b73-49e1-a6e9-2117377d7b40.aspx</guid>
      <link>http://pixelplastic.de/2005/07/29/neuesAlbum20050724Mahl.aspx</link>
      <pubDate>Fri, 29 Jul 2005 16:15:36 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=492e5d4c-93ce-41c5-9a45-e87b86361df3&amp;initialPhoto=bd92c1d7-134b-42d9-8635-2cf77bb3c013" target="_blank"&gt;&lt;b&gt;20050724
- mahl&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0f2f7da6-6b73-49e1-a6e9-2117377d7b40" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,0f2f7da6-6b73-49e1-a6e9-2117377d7b40.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=c4add000-6f48-4f0c-86e3-cfe42e9590d5</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,c4add000-6f48-4f0c-86e3-cfe42e9590d5.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,c4add000-6f48-4f0c-86e3-cfe42e9590d5.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=c4add000-6f48-4f0c-86e3-cfe42e9590d5</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
die schallmauer ist durchbrochen. 10.000 bilder hat die gute eos 20d ueberlebt. und der
glueckliche gewinner ist:
</p>
        <p>
          <img src="http://luckypixel.dyndns.org/blog/content/binary/_mg_10001.jpg" border="0" />
        </p>
        <p>
alex' hibiskus nutzt im moment jeden sonnenstrahl um seine blueten zu oeffnen. also
musste dieses motiv her, um die erste exposure runde abzuschliessen. demnaechst
(zwei wochen) wird die auslandsfaehigkeit getestet. man kann auf die suedostasiatischen
bilder gespannt sein.
</p>
        <p>
bis dahin wird aber noch in deutschland geschwitzt.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c4add000-6f48-4f0c-86e3-cfe42e9590d5" />
      </body>
      <title>10.000 und mehr</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,c4add000-6f48-4f0c-86e3-cfe42e9590d5.aspx</guid>
      <link>http://pixelplastic.de/2005/07/29/10000UndMehr.aspx</link>
      <pubDate>Fri, 29 Jul 2005 16:14:30 GMT</pubDate>
      <description>&lt;p&gt;
die schallmauer ist durchbrochen. 10.000 bilder hat die gute eos 20d ueberlebt.&amp;nbsp;und&amp;nbsp;der
glueckliche gewinner ist:
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://luckypixel.dyndns.org/blog/content/binary/_mg_10001.jpg" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
alex' hibiskus nutzt im moment jeden sonnenstrahl um seine blueten zu oeffnen. also
musste dieses motiv her, um die erste&amp;nbsp;exposure runde abzuschliessen. demnaechst
(zwei wochen) wird die auslandsfaehigkeit getestet. man kann auf die suedostasiatischen
bilder gespannt sein.
&lt;/p&gt;
&lt;p&gt;
bis dahin wird aber noch in deutschland geschwitzt.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c4add000-6f48-4f0c-86e3-cfe42e9590d5" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,c4add000-6f48-4f0c-86e3-cfe42e9590d5.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=7d781012-249f-4f17-b263-bc2082319cba</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,7d781012-249f-4f17-b263-bc2082319cba.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,7d781012-249f-4f17-b263-bc2082319cba.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=7d781012-249f-4f17-b263-bc2082319cba</wfw:commentRss>
      <title>neues album: 20050729 - Sonntag am freitag</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,7d781012-249f-4f17-b263-bc2082319cba.aspx</guid>
      <link>http://pixelplastic.de/2005/07/29/neuesAlbum20050729SonntagAmFreitag.aspx</link>
      <pubDate>Fri, 29 Jul 2005 16:01:36 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=dc9dee6b-3518-416e-9ebe-07a4761b660b&amp;initialPhoto=aceda6b3-34eb-41a6-9251-a1aaa5f5f6dd" target="_blank"&gt;&lt;b&gt;20050729
- Sonntag am freitag&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7d781012-249f-4f17-b263-bc2082319cba" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,7d781012-249f-4f17-b263-bc2082319cba.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=d418bd77-3f5d-4eb5-a694-de1e842320a2</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,d418bd77-3f5d-4eb5-a694-de1e842320a2.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,d418bd77-3f5d-4eb5-a694-de1e842320a2.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=d418bd77-3f5d-4eb5-a694-de1e842320a2</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Juhu sie ist wieder in Deutschland. Und morgen Abend geht's hoffentlich mit ihr in
die Ilse oder anderweitig weg. Am Sonntag hatten Alex und ich ja bereits
das Vergnügen einen sehr lustigen Abend mit ihr und Valle in unsrer WG zu verbringen.
</p>
        <p>
Die eine kommt die andere geht: die letzte Nacht für Silki, unsere kleine WG-Mutti.
Ab morgen müssen ihre kleinen Schäfchen für die nächsten zweieinhalb Monate allein
klar kommen. Denn Silke erforscht in Südkorea das andere Ende der Welt. Doch auch
Gesa und ich werden für einen längeren Zeitraum nicht hier sein. Was passiert solange
mit Alex? Kann da nicht jemand auf ihn aufpassen?
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d418bd77-3f5d-4eb5-a694-de1e842320a2" />
      </body>
      <title>Naddin ist wieder da</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,d418bd77-3f5d-4eb5-a694-de1e842320a2.aspx</guid>
      <link>http://pixelplastic.de/2005/07/20/NaddinIstWiederDa.aspx</link>
      <pubDate>Wed, 20 Jul 2005 22:47:16 GMT</pubDate>
      <description>&lt;p&gt;
Juhu sie ist wieder in Deutschland. Und morgen Abend geht's hoffentlich mit ihr in
die Ilse oder&amp;nbsp;anderweitig weg. Am Sonntag hatten&amp;nbsp;Alex und ich&amp;nbsp;ja bereits
das Vergnügen einen sehr lustigen Abend mit ihr und Valle in&amp;nbsp;unsrer WG zu verbringen.
&lt;/p&gt;
&lt;p&gt;
Die eine kommt die andere geht: die letzte Nacht für Silki, unsere kleine WG-Mutti.
Ab morgen&amp;nbsp;müssen ihre kleinen Schäfchen für die nächsten zweieinhalb Monate allein
klar kommen. Denn Silke erforscht in Südkorea das andere Ende der Welt. Doch auch
Gesa und ich werden für einen längeren Zeitraum nicht hier sein. Was passiert solange
mit Alex? Kann da nicht jemand auf ihn aufpassen?
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d418bd77-3f5d-4eb5-a694-de1e842320a2" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,d418bd77-3f5d-4eb5-a694-de1e842320a2.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=d6668836-cf0b-43b7-a6fa-57db66e33466</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,d6668836-cf0b-43b7-a6fa-57db66e33466.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,d6668836-cf0b-43b7-a6fa-57db66e33466.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=d6668836-cf0b-43b7-a6fa-57db66e33466</wfw:commentRss>
      <title>neues album: 20050720 - Herz Leipzig</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,d6668836-cf0b-43b7-a6fa-57db66e33466.aspx</guid>
      <link>http://pixelplastic.de/2005/07/20/neuesAlbum20050720HerzLeipzig.aspx</link>
      <pubDate>Wed, 20 Jul 2005 22:40:19 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=3784a80f-9527-44f6-adf5-e91135c54b67&amp;initialPhoto=fcd16087-df93-44fc-a696-a38353c2daed" target="_blank"&gt;&lt;b&gt;20050720
- Herz Leipzig&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d6668836-cf0b-43b7-a6fa-57db66e33466" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,d6668836-cf0b-43b7-a6fa-57db66e33466.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=31eb10d9-0428-4a06-9791-2ac220bf6fc2</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,31eb10d9-0428-4a06-9791-2ac220bf6fc2.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,31eb10d9-0428-4a06-9791-2ac220bf6fc2.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=31eb10d9-0428-4a06-9791-2ac220bf6fc2</wfw:commentRss>
      <title>neues album: 20050718 - Wiedersehen mit naddin</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,31eb10d9-0428-4a06-9791-2ac220bf6fc2.aspx</guid>
      <link>http://pixelplastic.de/2005/07/20/neuesAlbum20050718WiedersehenMitNaddin.aspx</link>
      <pubDate>Wed, 20 Jul 2005 22:38:47 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=3801e1a4-689e-4beb-abec-11e8d6e36131&amp;initialPhoto=9718ad57-b936-4844-80b8-ee668fefa006" target="_blank"&gt;&lt;b&gt;20050718
- Wiedersehen mit naddin&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=31eb10d9-0428-4a06-9791-2ac220bf6fc2" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,31eb10d9-0428-4a06-9791-2ac220bf6fc2.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=4c9a2543-eae8-41eb-8ea4-9e67c5e56354</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,4c9a2543-eae8-41eb-8ea4-9e67c5e56354.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,4c9a2543-eae8-41eb-8ea4-9e67c5e56354.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=4c9a2543-eae8-41eb-8ea4-9e67c5e56354</wfw:commentRss>
      <title>neues album: 20050713 - jesch geburtstag</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,4c9a2543-eae8-41eb-8ea4-9e67c5e56354.aspx</guid>
      <link>http://pixelplastic.de/2005/07/14/neuesAlbum20050713JeschGeburtstag.aspx</link>
      <pubDate>Thu, 14 Jul 2005 15:25:18 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=f9cd8e4f-dede-4478-89b1-4418caddb284&amp;initialPhoto=01585332-c06e-47f1-85fb-24980d676b68" target="_blank"&gt;&lt;b&gt;20050713
- jesch geburtstag&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=4c9a2543-eae8-41eb-8ea4-9e67c5e56354" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,4c9a2543-eae8-41eb-8ea4-9e67c5e56354.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=9132f9ee-b936-4ffd-9846-9457eb96638a</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,9132f9ee-b936-4ffd-9846-9457eb96638a.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,9132f9ee-b936-4ffd-9846-9457eb96638a.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=9132f9ee-b936-4ffd-9846-9457eb96638a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
ich weiss ich sollte mich mehr um meinen blog bemuehen. doch der bpmn2bpel-projekt-stress
in den letzten wochen ist enorm und wird sich wohl auch nicht verringern. dafuer wird
der fleissige abonnent ab mitte august mit berichten aus suedostasien belohnt. denn
dann geht's hoffentlich fuer 8 wochen in's tropenklima. bis dahin sollten die regelmaessigen
photoupdates aber schon mal ausreichen.
</p>
        <p>
so christian, jetz' hab' ich's dir aber gezeigt. ;-)
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=9132f9ee-b936-4ffd-9846-9457eb96638a" />
      </body>
      <title>ein blog aus links</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,9132f9ee-b936-4ffd-9846-9457eb96638a.aspx</guid>
      <link>http://pixelplastic.de/2005/07/12/einBlogAusLinks.aspx</link>
      <pubDate>Tue, 12 Jul 2005 07:30:44 GMT</pubDate>
      <description>&lt;p&gt;
ich weiss ich sollte mich mehr um meinen blog bemuehen. doch der bpmn2bpel-projekt-stress
in den letzten wochen ist enorm und wird sich wohl auch nicht verringern. dafuer wird
der fleissige abonnent ab mitte august mit berichten aus suedostasien belohnt. denn
dann geht's hoffentlich fuer 8 wochen in's tropenklima. bis dahin sollten die regelmaessigen
photoupdates aber schon mal ausreichen.
&lt;/p&gt;
&lt;p&gt;
so christian, jetz' hab' ich's dir aber gezeigt. ;-)
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=9132f9ee-b936-4ffd-9846-9457eb96638a" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,9132f9ee-b936-4ffd-9846-9457eb96638a.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=953b4d04-c9b2-4ce1-ba3a-b89699055ef5</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,953b4d04-c9b2-4ce1-ba3a-b89699055ef5.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,953b4d04-c9b2-4ce1-ba3a-b89699055ef5.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=953b4d04-c9b2-4ce1-ba3a-b89699055ef5</wfw:commentRss>
      <title>neues album: 20050709 - Heimspiel</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,953b4d04-c9b2-4ce1-ba3a-b89699055ef5.aspx</guid>
      <link>http://pixelplastic.de/2005/07/11/neuesAlbum20050709Heimspiel.aspx</link>
      <pubDate>Mon, 11 Jul 2005 21:21:38 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=a33d0dad-c0da-48e3-a4c1-fb2e172e51d8&amp;initialPhoto=0522a2e4-99d9-4d61-9ea7-d3bed07a692c" target="_blank"&gt;&lt;b&gt;20050709
- Heimspiel&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=953b4d04-c9b2-4ce1-ba3a-b89699055ef5" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,953b4d04-c9b2-4ce1-ba3a-b89699055ef5.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=c0611a7a-edf6-4afb-bee7-e57eb87f0fa1</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,c0611a7a-edf6-4afb-bee7-e57eb87f0fa1.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,c0611a7a-edf6-4afb-bee7-e57eb87f0fa1.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=c0611a7a-edf6-4afb-bee7-e57eb87f0fa1</wfw:commentRss>
      <title>neues album: 20050708 - Homeparty</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,c0611a7a-edf6-4afb-bee7-e57eb87f0fa1.aspx</guid>
      <link>http://pixelplastic.de/2005/07/11/neuesAlbum20050708Homeparty.aspx</link>
      <pubDate>Mon, 11 Jul 2005 20:39:28 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=ebea7956-4476-49f6-91fa-9ccd3d3a0a32&amp;initialPhoto=831ca3da-486e-4b50-b2b5-b5861f1c9f7f" target="_blank"&gt;&lt;b&gt;20050708
- Homeparty&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c0611a7a-edf6-4afb-bee7-e57eb87f0fa1" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,c0611a7a-edf6-4afb-bee7-e57eb87f0fa1.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=330de541-4639-41c7-8ef1-68d4c36a8951</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,330de541-4639-41c7-8ef1-68d4c36a8951.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,330de541-4639-41c7-8ef1-68d4c36a8951.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=330de541-4639-41c7-8ef1-68d4c36a8951</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <title>neues album: 20050702 - Grillparty am Fluss</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,330de541-4639-41c7-8ef1-68d4c36a8951.aspx</guid>
      <link>http://pixelplastic.de/2005/07/03/neuesAlbum20050702GrillpartyAmFluss.aspx</link>
      <pubDate>Sun, 03 Jul 2005 12:10:21 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=991d0aad-7de9-4740-b514-e70b3ccbfb48&amp;initialPhoto=ddbbd4cb-fc45-468c-9aa9-9701c108a319" target="_blank"&gt;&lt;b&gt;20050702
- Grillparty am Fluss&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=330de541-4639-41c7-8ef1-68d4c36a8951" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,330de541-4639-41c7-8ef1-68d4c36a8951.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=1d381ed8-12a9-494d-871f-2c70650eff6c</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,1d381ed8-12a9-494d-871f-2c70650eff6c.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,1d381ed8-12a9-494d-871f-2c70650eff6c.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=1d381ed8-12a9-494d-871f-2c70650eff6c</wfw:commentRss>
      <title>neues album: 20050630 - Geburtstag bei Martin</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,1d381ed8-12a9-494d-871f-2c70650eff6c.aspx</guid>
      <link>http://pixelplastic.de/2005/07/02/neuesAlbum20050630GeburtstagBeiMartin.aspx</link>
      <pubDate>Sat, 02 Jul 2005 16:53:18 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=73435de9-5b0b-4a1d-a091-44e62a365c94&amp;initialPhoto=7fa8c26d-d636-43b5-b504-c4a97f399360" target="_blank"&gt;&lt;b&gt;20050630
- Geburtstag bei Martin&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=1d381ed8-12a9-494d-871f-2c70650eff6c" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,1d381ed8-12a9-494d-871f-2c70650eff6c.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=48ba34ba-5360-463b-9654-09f9f3756da1</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,48ba34ba-5360-463b-9654-09f9f3756da1.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,48ba34ba-5360-463b-9654-09f9f3756da1.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=48ba34ba-5360-463b-9654-09f9f3756da1</wfw:commentRss>
      <title>neues album: 20050701 - Minifestival am Elsterflutbecken</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,48ba34ba-5360-463b-9654-09f9f3756da1.aspx</guid>
      <link>http://pixelplastic.de/2005/07/02/neuesAlbum20050701MinifestivalAmElsterflutbecken.aspx</link>
      <pubDate>Sat, 02 Jul 2005 16:51:59 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=7134710a-ca53-4db0-8ba8-10284aa834e2&amp;initialPhoto=ae334633-4653-4039-b386-63ac259aaed7" target="_blank"&gt;&lt;b&gt;20050701
- Minifestival am Elsterflutbecken&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=48ba34ba-5360-463b-9654-09f9f3756da1" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,48ba34ba-5360-463b-9654-09f9f3756da1.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=888ed959-d501-409d-bb1f-b90116b0cd99</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,888ed959-d501-409d-bb1f-b90116b0cd99.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,888ed959-d501-409d-bb1f-b90116b0cd99.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=888ed959-d501-409d-bb1f-b90116b0cd99</wfw:commentRss>
      <title>neues album: 20050629 - Wochentagsumtrunk und Enten</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,888ed959-d501-409d-bb1f-b90116b0cd99.aspx</guid>
      <link>http://pixelplastic.de/2005/07/02/neuesAlbum20050629WochentagsumtrunkUndEnten.aspx</link>
      <pubDate>Sat, 02 Jul 2005 16:50:06 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=3aadc7e6-2435-4788-9482-32e495b0fc3f&amp;initialPhoto=21b9dcb2-b100-4625-8f89-f7cc21e1e4f3" target="_blank"&gt;&lt;b&gt;20050629
- Wochentagsumtrunk und Enten&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=888ed959-d501-409d-bb1f-b90116b0cd99" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,888ed959-d501-409d-bb1f-b90116b0cd99.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=8e88905f-cbc7-426b-96da-9bcf2165a6e6</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,8e88905f-cbc7-426b-96da-9bcf2165a6e6.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,8e88905f-cbc7-426b-96da-9bcf2165a6e6.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=8e88905f-cbc7-426b-96da-9bcf2165a6e6</wfw:commentRss>
      <title>neues album: 20050625 - Gees Geburtstag</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,8e88905f-cbc7-426b-96da-9bcf2165a6e6.aspx</guid>
      <link>http://pixelplastic.de/2005/06/26/neuesAlbum20050625GeesGeburtstag.aspx</link>
      <pubDate>Sun, 26 Jun 2005 14:01:44 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=8b6209b6-aa9a-44c8-a600-d56ec1ae16ed&amp;initialPhoto=0bb23eb3-9379-460c-98a2-4307f8642f4d" target="_blank"&gt;&lt;b&gt;20050625
- Gees Geburtstag&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=8e88905f-cbc7-426b-96da-9bcf2165a6e6" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,8e88905f-cbc7-426b-96da-9bcf2165a6e6.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=51c83932-ff80-4ee4-b1ba-fe0469710b47</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,51c83932-ff80-4ee4-b1ba-fe0469710b47.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,51c83932-ff80-4ee4-b1ba-fe0469710b47.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=51c83932-ff80-4ee4-b1ba-fe0469710b47</wfw:commentRss>
      <title>neues album: 20050530 - Wochenendspass mit Balancekatze und baden</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,51c83932-ff80-4ee4-b1ba-fe0469710b47.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050530WochenendspassMitBalancekatzeUndBaden.aspx</link>
      <pubDate>Sun, 19 Jun 2005 22:45:25 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=3712bd5b-4e09-4e9a-be01-63addb2171c6&amp;initialPhoto=a1365027-d3c4-433b-9287-e4c97799ffc2" target="_blank"&gt;&lt;b&gt;20050530
- Wochenendspass mit Balancekatze und baden&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=51c83932-ff80-4ee4-b1ba-fe0469710b47" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,51c83932-ff80-4ee4-b1ba-fe0469710b47.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=f6890df7-daba-4549-9133-a2990c5c7e91</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,f6890df7-daba-4549-9133-a2990c5c7e91.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,f6890df7-daba-4549-9133-a2990c5c7e91.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=f6890df7-daba-4549-9133-a2990c5c7e91</wfw:commentRss>
      <title>neues album: 20050618 - Parzelle 10a</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,f6890df7-daba-4549-9133-a2990c5c7e91.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050618Parzelle10a.aspx</link>
      <pubDate>Sun, 19 Jun 2005 19:49:19 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=27a1e811-e4a9-48bf-94ae-6cf5a9b217bd&amp;initialPhoto=e4e2e04d-69c7-4586-a294-e8519354ab92" target="_blank"&gt;&lt;b&gt;20050618
- Parzelle 10a&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f6890df7-daba-4549-9133-a2990c5c7e91" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,f6890df7-daba-4549-9133-a2990c5c7e91.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=e032063f-5c06-42f8-967e-cba4eba9a256</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,e032063f-5c06-42f8-967e-cba4eba9a256.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,e032063f-5c06-42f8-967e-cba4eba9a256.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=e032063f-5c06-42f8-967e-cba4eba9a256</wfw:commentRss>
      <title>neues album: 20050610 - Daenemark</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,e032063f-5c06-42f8-967e-cba4eba9a256.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050610Daenemark.aspx</link>
      <pubDate>Sun, 19 Jun 2005 17:15:03 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=5e15b7f0-be3f-4059-bcfe-99813c12888a&amp;initialPhoto=f0111186-1aa8-4b11-857a-9b8ee0db05fb" target="_blank"&gt;&lt;b&gt;20050610
- Daenemark&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=e032063f-5c06-42f8-967e-cba4eba9a256" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,e032063f-5c06-42f8-967e-cba4eba9a256.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=625bc8dd-c621-4def-8967-aa4b0f7d7eee</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,625bc8dd-c621-4def-8967-aa4b0f7d7eee.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,625bc8dd-c621-4def-8967-aa4b0f7d7eee.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=625bc8dd-c621-4def-8967-aa4b0f7d7eee</wfw:commentRss>
      <title>neues album: 20050609 - Daenemark</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,625bc8dd-c621-4def-8967-aa4b0f7d7eee.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050609Daenemark.aspx</link>
      <pubDate>Sun, 19 Jun 2005 17:14:18 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=a8e78044-4a8d-4789-b8d3-898f5540af08&amp;initialPhoto=e4469aad-08d7-4fb8-85d9-382d78a81023" target="_blank"&gt;&lt;b&gt;20050609
- Daenemark&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=625bc8dd-c621-4def-8967-aa4b0f7d7eee" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,625bc8dd-c621-4def-8967-aa4b0f7d7eee.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=f44d79d2-8a72-4370-bcd0-cf5968adafee</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,f44d79d2-8a72-4370-bcd0-cf5968adafee.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,f44d79d2-8a72-4370-bcd0-cf5968adafee.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=f44d79d2-8a72-4370-bcd0-cf5968adafee</wfw:commentRss>
      <title>neues album: 20050608 - Daenemark</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,f44d79d2-8a72-4370-bcd0-cf5968adafee.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050608Daenemark.aspx</link>
      <pubDate>Sun, 19 Jun 2005 17:12:29 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=6ec481a9-2807-42c6-b665-5e3535b384f1&amp;initialPhoto=0a0aa77e-0cb2-4731-b980-75198afd253f" target="_blank"&gt;&lt;b&gt;20050608
- Daenemark&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f44d79d2-8a72-4370-bcd0-cf5968adafee" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,f44d79d2-8a72-4370-bcd0-cf5968adafee.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=0e6459a7-39a3-4b14-9428-dc3ce8ca6d99</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,0e6459a7-39a3-4b14-9428-dc3ce8ca6d99.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,0e6459a7-39a3-4b14-9428-dc3ce8ca6d99.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=0e6459a7-39a3-4b14-9428-dc3ce8ca6d99</wfw:commentRss>
      <title>neues album: 20050607 - Daenemark</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,0e6459a7-39a3-4b14-9428-dc3ce8ca6d99.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050607Daenemark.aspx</link>
      <pubDate>Sun, 19 Jun 2005 17:08:05 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=a04c4e86-564b-4885-88f5-c80f03992536&amp;initialPhoto=0c694d7a-9e35-41af-9664-dd72f9ee1e21" target="_blank"&gt;&lt;b&gt;20050607
- Daenemark&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0e6459a7-39a3-4b14-9428-dc3ce8ca6d99" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,0e6459a7-39a3-4b14-9428-dc3ce8ca6d99.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=200e81ca-6d58-432c-833a-d3cdce4dc022</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,200e81ca-6d58-432c-833a-d3cdce4dc022.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,200e81ca-6d58-432c-833a-d3cdce4dc022.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=200e81ca-6d58-432c-833a-d3cdce4dc022</wfw:commentRss>
      <title>neues album: 20050606 - Daenemark</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,200e81ca-6d58-432c-833a-d3cdce4dc022.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050606Daenemark.aspx</link>
      <pubDate>Sun, 19 Jun 2005 17:06:46 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=acc62890-dbc7-49b3-9f11-f972a0ed5aa4&amp;initialPhoto=7873b987-baff-46d8-8961-85206e781388" target="_blank"&gt;&lt;b&gt;20050606
- Daenemark&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=200e81ca-6d58-432c-833a-d3cdce4dc022" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,200e81ca-6d58-432c-833a-d3cdce4dc022.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=b843e934-97bf-44e1-a1cf-20fb9cb7d5bd</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,b843e934-97bf-44e1-a1cf-20fb9cb7d5bd.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,b843e934-97bf-44e1-a1cf-20fb9cb7d5bd.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=b843e934-97bf-44e1-a1cf-20fb9cb7d5bd</wfw:commentRss>
      <title>neues album: 20050605 - Daenemark</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,b843e934-97bf-44e1-a1cf-20fb9cb7d5bd.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050605Daenemark.aspx</link>
      <pubDate>Sun, 19 Jun 2005 16:53:51 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=48e8637a-8eae-493e-b29b-efe30f818cb0&amp;initialPhoto=3569b3c6-d977-40d1-a099-4527aade9db9" target="_blank"&gt;&lt;b&gt;20050605
- Daenemark&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b843e934-97bf-44e1-a1cf-20fb9cb7d5bd" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,b843e934-97bf-44e1-a1cf-20fb9cb7d5bd.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=2824c07f-057c-477b-838d-6adf2e8b2feb</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,2824c07f-057c-477b-838d-6adf2e8b2feb.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,2824c07f-057c-477b-838d-6adf2e8b2feb.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=2824c07f-057c-477b-838d-6adf2e8b2feb</wfw:commentRss>
      <title>neues album: 20050604 - Daenemark</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,2824c07f-057c-477b-838d-6adf2e8b2feb.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050604Daenemark.aspx</link>
      <pubDate>Sun, 19 Jun 2005 16:53:23 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=d9969a0f-7711-4df1-bf3b-05776fe89b71&amp;initialPhoto=fb0aa43a-4171-4054-8243-c76c11783a51" target="_blank"&gt;&lt;b&gt;20050604
- Daenemark&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=2824c07f-057c-477b-838d-6adf2e8b2feb" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,2824c07f-057c-477b-838d-6adf2e8b2feb.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=0cf97010-290a-4b5b-97e0-4e30207b4175</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,0cf97010-290a-4b5b-97e0-4e30207b4175.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,0cf97010-290a-4b5b-97e0-4e30207b4175.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=0cf97010-290a-4b5b-97e0-4e30207b4175</wfw:commentRss>
      <title>neues album: 20050517 - OGD for ever</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,0cf97010-290a-4b5b-97e0-4e30207b4175.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050517OGDForEver.aspx</link>
      <pubDate>Sun, 19 Jun 2005 16:18:14 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=0d032fd6-4ae7-4ed2-8908-2c5a5b8ba00c&amp;initialPhoto=9d6625c6-90e4-4bde-b17e-1987b9da1629" target="_blank"&gt;&lt;b&gt;20050517
- OGD for ever&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0cf97010-290a-4b5b-97e0-4e30207b4175" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,0cf97010-290a-4b5b-97e0-4e30207b4175.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=6278c99e-c638-4c97-a982-892dae29a68c</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,6278c99e-c638-4c97-a982-892dae29a68c.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,6278c99e-c638-4c97-a982-892dae29a68c.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=6278c99e-c638-4c97-a982-892dae29a68c</wfw:commentRss>
      <title>neues album: 20050516 - OGD for ever</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,6278c99e-c638-4c97-a982-892dae29a68c.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050516OGDForEver.aspx</link>
      <pubDate>Sun, 19 Jun 2005 16:16:09 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=4ad40e15-767c-4157-afcb-aaa94a82ddca&amp;initialPhoto=172e0a33-1d8b-4ba2-a52e-217e631a7dce" target="_blank"&gt;&lt;b&gt;20050516
- OGD for ever&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6278c99e-c638-4c97-a982-892dae29a68c" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,6278c99e-c638-4c97-a982-892dae29a68c.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=fe8f6c27-da40-4887-ba4b-eb655b6f464e</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,fe8f6c27-da40-4887-ba4b-eb655b6f464e.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,fe8f6c27-da40-4887-ba4b-eb655b6f464e.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=fe8f6c27-da40-4887-ba4b-eb655b6f464e</wfw:commentRss>
      <title>neues album: 20050515 - OGD for ever</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,fe8f6c27-da40-4887-ba4b-eb655b6f464e.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050515OGDForEver.aspx</link>
      <pubDate>Sun, 19 Jun 2005 16:14:02 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=061f28d9-dc31-4fd7-9769-a83ebbe8a5ef&amp;initialPhoto=a57de2d2-00c6-46c4-93d2-82ca5ad6f90d" target="_blank"&gt;&lt;b&gt;20050515
- OGD for ever&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=fe8f6c27-da40-4887-ba4b-eb655b6f464e" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,fe8f6c27-da40-4887-ba4b-eb655b6f464e.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=7a0e068b-d018-41b5-999f-b92d76a9e92c</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,7a0e068b-d018-41b5-999f-b92d76a9e92c.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,7a0e068b-d018-41b5-999f-b92d76a9e92c.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=7a0e068b-d018-41b5-999f-b92d76a9e92c</wfw:commentRss>
      <title>neues album: 20050514 - OGD for ever</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,7a0e068b-d018-41b5-999f-b92d76a9e92c.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050514OGDForEver.aspx</link>
      <pubDate>Sun, 19 Jun 2005 16:12:55 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=2507c2fa-9f3d-49fe-a15e-2e13847d599d&amp;initialPhoto=99942a51-a1ad-45f6-a329-8377d44a1885" target="_blank"&gt;&lt;b&gt;20050514
- OGD for ever&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7a0e068b-d018-41b5-999f-b92d76a9e92c" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,7a0e068b-d018-41b5-999f-b92d76a9e92c.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=91ef45ad-2e5b-4357-89d0-5037f8b3c92f</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,91ef45ad-2e5b-4357-89d0-5037f8b3c92f.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,91ef45ad-2e5b-4357-89d0-5037f8b3c92f.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=91ef45ad-2e5b-4357-89d0-5037f8b3c92f</wfw:commentRss>
      <title>neues album: 20050513 - OGD for ever</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,91ef45ad-2e5b-4357-89d0-5037f8b3c92f.aspx</guid>
      <link>http://pixelplastic.de/2005/06/19/neuesAlbum20050513OGDForEver.aspx</link>
      <pubDate>Sun, 19 Jun 2005 16:11:20 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=dab3c7c1-01a2-4dd2-8249-7476b651fb24&amp;initialPhoto=f5ed02ce-336a-4e1a-a51a-994df6b7a028" target="_blank"&gt;&lt;b&gt;20050513
- OGD for ever&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=91ef45ad-2e5b-4357-89d0-5037f8b3c92f" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,91ef45ad-2e5b-4357-89d0-5037f8b3c92f.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=576bfc2e-e085-4e6d-ac25-7f6306d45ae1</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,576bfc2e-e085-4e6d-ac25-7f6306d45ae1.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,576bfc2e-e085-4e6d-ac25-7f6306d45ae1.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=576bfc2e-e085-4e6d-ac25-7f6306d45ae1</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
nachdem ich nun in den letzten tagen meinen bilderwust mal wieder etwas aufgeraeumt
habe, bin ich gleich dazu uebergegangen auch ein neues feature auf die seite zu bringen.
einige hatten mich schon darauf aufmerksam gemacht, dass die fotos doch recht klein
sind. das liegt einzig und allein daran (man mag es kaum glauben), dass es doch noch leute
gibt, die leider kein dsl haben. und wenn ich meine tausendfache bilderflut gleich
in groesserem format an den mann bringen wuerde, kann ich mir vorstellen, dass
ein teil meiner besucher keine rechte lust mehr hat meine seite weiter zu besuchen.
darum diese sache.
</p>
        <p>
da das nun geklaert ist kommen wir zum neuen feature. unter dem bild findet man nun
eine lupe, mit der sich das aktuell angezeigte bild vergroessern laesst. ausserdem
gibt's dort nun auch einen blog-button, um hier auf diese seite meines blogs zu
gelangen.
</p>
        <p>
ich hoff die leute finden sich zurecht. 
</p>
        <p>
als naechstes steht eine art dia-show-funktion, sowie die moeglichkeit des foto-blaetterns (im
vergroesserten wie auch kleinen fenster) auf der todo-liste. wenn's nur nicht so warm
waere.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=576bfc2e-e085-4e6d-ac25-7f6306d45ae1" />
      </body>
      <title>da haben sich doch zwei neue buttons eingeschlichen</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,576bfc2e-e085-4e6d-ac25-7f6306d45ae1.aspx</guid>
      <link>http://pixelplastic.de/2005/05/28/daHabenSichDochZweiNeueButtonsEingeschlichen.aspx</link>
      <pubDate>Sat, 28 May 2005 16:47:16 GMT</pubDate>
      <description>&lt;p&gt;
nachdem ich nun in den letzten tagen meinen bilderwust mal wieder etwas aufgeraeumt
habe, bin ich gleich dazu uebergegangen auch ein neues feature auf die seite zu bringen.
einige hatten mich schon darauf aufmerksam gemacht, dass die fotos doch recht klein
sind. das liegt einzig und allein daran (man mag es kaum glauben), dass es doch noch&amp;nbsp;leute
gibt, die leider kein dsl haben. und wenn ich meine tausendfache bilderflut gleich
in groesserem format an den mann bringen wuerde, kann ich mir vorstellen,&amp;nbsp;dass
ein teil meiner besucher keine rechte lust mehr hat meine seite weiter zu besuchen.
darum diese sache.
&lt;/p&gt;
&lt;p&gt;
da das nun geklaert ist kommen wir zum neuen feature. unter dem bild findet man nun
eine lupe, mit der sich das aktuell angezeigte bild vergroessern laesst. ausserdem
gibt's dort nun auch einen blog-button, um hier auf diese seite meines blogs&amp;nbsp;zu
gelangen.
&lt;/p&gt;
&lt;p&gt;
ich hoff die leute finden sich zurecht. 
&lt;/p&gt;
&lt;p&gt;
als naechstes steht eine art dia-show-funktion, sowie die moeglichkeit des foto-blaetterns&amp;nbsp;(im
vergroesserten wie auch kleinen fenster) auf der todo-liste. wenn's nur nicht so warm
waere.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=576bfc2e-e085-4e6d-ac25-7f6306d45ae1" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,576bfc2e-e085-4e6d-ac25-7f6306d45ae1.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=046ec720-10fa-49a7-9deb-be5d57b2267f</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,046ec720-10fa-49a7-9deb-be5d57b2267f.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,046ec720-10fa-49a7-9deb-be5d57b2267f.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=046ec720-10fa-49a7-9deb-be5d57b2267f</wfw:commentRss>
      <title>neues album: 20050526 - Tatort Brockhausstraße</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,046ec720-10fa-49a7-9deb-be5d57b2267f.aspx</guid>
      <link>http://pixelplastic.de/2005/05/27/neuesAlbum20050526TatortBrockhausstra%c3%9fe.aspx</link>
      <pubDate>Fri, 27 May 2005 17:36:36 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=4cd10de5-19bb-4936-bee3-74930494db92&amp;initialPhoto=5b7c994f-e915-4817-b07c-14015399102b" target="_blank"&gt;&lt;b&gt;20050526
- Tatort Brockhausstraße&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=046ec720-10fa-49a7-9deb-be5d57b2267f" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,046ec720-10fa-49a7-9deb-be5d57b2267f.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=050e296d-d8e9-4c61-bb0b-20e3e12437f9</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,050e296d-d8e9-4c61-bb0b-20e3e12437f9.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,050e296d-d8e9-4c61-bb0b-20e3e12437f9.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=050e296d-d8e9-4c61-bb0b-20e3e12437f9</wfw:commentRss>
      <title>neues album: 20050525 - Gesas Geschenk an Alex</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,050e296d-d8e9-4c61-bb0b-20e3e12437f9.aspx</guid>
      <link>http://pixelplastic.de/2005/05/27/neuesAlbum20050525GesasGeschenkAnAlex.aspx</link>
      <pubDate>Fri, 27 May 2005 17:34:41 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=01b559a6-aef9-4532-bdb0-08c06ae56e5c&amp;initialPhoto=a3af0166-6470-435d-8da5-46df63091230" target="_blank"&gt;&lt;b&gt;20050525
- Gesas Geschenk an Alex&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=050e296d-d8e9-4c61-bb0b-20e3e12437f9" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,050e296d-d8e9-4c61-bb0b-20e3e12437f9.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=a8aefae0-b4a3-4411-9734-d1ed5ad18058</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,a8aefae0-b4a3-4411-9734-d1ed5ad18058.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,a8aefae0-b4a3-4411-9734-d1ed5ad18058.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=a8aefae0-b4a3-4411-9734-d1ed5ad18058</wfw:commentRss>
      <title>neues album: 20050524 - Schimmelkartoffel mit Faden</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,a8aefae0-b4a3-4411-9734-d1ed5ad18058.aspx</guid>
      <link>http://pixelplastic.de/2005/05/27/neuesAlbum20050524SchimmelkartoffelMitFaden.aspx</link>
      <pubDate>Fri, 27 May 2005 17:32:44 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=79ce9998-995a-4ec8-bcef-0cac5caea153&amp;initialPhoto=e6985e2d-2012-44d0-9949-f662ff06f803" target="_blank"&gt;&lt;b&gt;20050524
- Schimmelkartoffel mit Faden&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=a8aefae0-b4a3-4411-9734-d1ed5ad18058" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,a8aefae0-b4a3-4411-9734-d1ed5ad18058.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=5b9d6b2e-8d4b-4af6-ac5a-9ec32cc37323</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,5b9d6b2e-8d4b-4af6-ac5a-9ec32cc37323.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,5b9d6b2e-8d4b-4af6-ac5a-9ec32cc37323.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=5b9d6b2e-8d4b-4af6-ac5a-9ec32cc37323</wfw:commentRss>
      <title>neues album: 20050523 - Alex Spontangeburtstag</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,5b9d6b2e-8d4b-4af6-ac5a-9ec32cc37323.aspx</guid>
      <link>http://pixelplastic.de/2005/05/27/neuesAlbum20050523AlexSpontangeburtstag.aspx</link>
      <pubDate>Fri, 27 May 2005 17:32:26 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=11321d04-a542-4d47-8c64-452ea8422cfd&amp;initialPhoto=36e68b7d-1242-4b23-a76e-9e3184061f7a" target="_blank"&gt;&lt;b&gt;20050523
- Alex Spontangeburtstag&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=5b9d6b2e-8d4b-4af6-ac5a-9ec32cc37323" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,5b9d6b2e-8d4b-4af6-ac5a-9ec32cc37323.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=4d1aac43-2846-472d-a946-893d2e03158b</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,4d1aac43-2846-472d-a946-893d2e03158b.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,4d1aac43-2846-472d-a946-893d2e03158b.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=4d1aac43-2846-472d-a946-893d2e03158b</wfw:commentRss>
      <title>neues album: 20050522 - Anki grillen</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,4d1aac43-2846-472d-a946-893d2e03158b.aspx</guid>
      <link>http://pixelplastic.de/2005/05/27/neuesAlbum20050522AnkiGrillen.aspx</link>
      <pubDate>Fri, 27 May 2005 16:29:12 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=adc92d57-cfcb-4c44-a006-f0fe104fb575&amp;initialPhoto=b6a1661a-ec3c-43e5-bf73-a308e41251cc" target="_blank"&gt;&lt;b&gt;20050522
- Anki grillen&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=4d1aac43-2846-472d-a946-893d2e03158b" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,4d1aac43-2846-472d-a946-893d2e03158b.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=39f2e6bd-e598-4d7f-bf84-281ae237320e</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,39f2e6bd-e598-4d7f-bf84-281ae237320e.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,39f2e6bd-e598-4d7f-bf84-281ae237320e.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=39f2e6bd-e598-4d7f-bf84-281ae237320e</wfw:commentRss>
      <title>neues album: 20050518 - Microsoft STC 2005</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,39f2e6bd-e598-4d7f-bf84-281ae237320e.aspx</guid>
      <link>http://pixelplastic.de/2005/05/27/neuesAlbum20050518MicrosoftSTC2005.aspx</link>
      <pubDate>Fri, 27 May 2005 16:23:21 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=98262de5-2450-4198-93e1-813ce7ab24e9&amp;initialPhoto=995c5a72-5493-41f6-9180-abd5828366fc" target="_blank"&gt;&lt;b&gt;20050518
- Microsoft STC 2005&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=39f2e6bd-e598-4d7f-bf84-281ae237320e" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,39f2e6bd-e598-4d7f-bf84-281ae237320e.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=f63ce8a9-6cd6-4efb-a3c4-5fb7a20b5203</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,f63ce8a9-6cd6-4efb-a3c4-5fb7a20b5203.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,f63ce8a9-6cd6-4efb-a3c4-5fb7a20b5203.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=f63ce8a9-6cd6-4efb-a3c4-5fb7a20b5203</wfw:commentRss>
      <title>neues album: 20050522 - Pornobalken</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,f63ce8a9-6cd6-4efb-a3c4-5fb7a20b5203.aspx</guid>
      <link>http://pixelplastic.de/2005/05/27/neuesAlbum20050522Pornobalken.aspx</link>
      <pubDate>Fri, 27 May 2005 16:17:25 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=e0fdb842-fddb-433a-840b-fe65d447b81b&amp;initialPhoto=2bfa2705-3b98-43f7-94fd-8f4b0b1d91e0" target="_blank"&gt;&lt;b&gt;20050522
- Pornobalken&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f63ce8a9-6cd6-4efb-a3c4-5fb7a20b5203" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,f63ce8a9-6cd6-4efb-a3c4-5fb7a20b5203.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=6eb40cc2-786b-489a-b2f6-bdb7c6dc39b4</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,6eb40cc2-786b-489a-b2f6-bdb7c6dc39b4.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,6eb40cc2-786b-489a-b2f6-bdb7c6dc39b4.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=6eb40cc2-786b-489a-b2f6-bdb7c6dc39b4</wfw:commentRss>
      <title>neues album: 20050520 - Schimmelzitrone</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,6eb40cc2-786b-489a-b2f6-bdb7c6dc39b4.aspx</guid>
      <link>http://pixelplastic.de/2005/05/27/neuesAlbum20050520Schimmelzitrone.aspx</link>
      <pubDate>Fri, 27 May 2005 16:16:44 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=5e9a0d4b-ea34-42d2-8f30-49610fa865cb&amp;initialPhoto=1e2c3bf2-3371-4a51-9c14-1c2d4bdcccba" target="_blank"&gt;&lt;b&gt;20050520
- Schimmelzitrone&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=6eb40cc2-786b-489a-b2f6-bdb7c6dc39b4" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,6eb40cc2-786b-489a-b2f6-bdb7c6dc39b4.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=11ebb411-7e2b-47de-9ac6-1dbdd6b2687d</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,11ebb411-7e2b-47de-9ac6-1dbdd6b2687d.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,11ebb411-7e2b-47de-9ac6-1dbdd6b2687d.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=11ebb411-7e2b-47de-9ac6-1dbdd6b2687d</wfw:commentRss>
      <title>neues album: 20050510 - Kochfest bei Janschi</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,11ebb411-7e2b-47de-9ac6-1dbdd6b2687d.aspx</guid>
      <link>http://pixelplastic.de/2005/05/27/neuesAlbum20050510KochfestBeiJanschi.aspx</link>
      <pubDate>Fri, 27 May 2005 14:15:13 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=f25fa476-bf34-4333-9bf7-594ce10fa471&amp;initialPhoto=4c551fbc-7be1-451d-9f3b-5e491da0d7de" target="_blank"&gt;&lt;b&gt;20050510
- Kochfest bei Janschi&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=11ebb411-7e2b-47de-9ac6-1dbdd6b2687d" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,11ebb411-7e2b-47de-9ac6-1dbdd6b2687d.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=a6b47817-d640-4333-9237-322dba7a184d</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,a6b47817-d640-4333-9237-322dba7a184d.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,a6b47817-d640-4333-9237-322dba7a184d.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=a6b47817-d640-4333-9237-322dba7a184d</wfw:commentRss>
      <title>neues album: 20050507 - Weinverkostung mit Silkeeltern und Kartoffelherz</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,a6b47817-d640-4333-9237-322dba7a184d.aspx</guid>
      <link>http://pixelplastic.de/2005/05/27/neuesAlbum20050507WeinverkostungMitSilkeelternUndKartoffelherz.aspx</link>
      <pubDate>Fri, 27 May 2005 14:13:32 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=a25d5b24-1c29-47fb-b606-ac7ec465575b&amp;initialPhoto=328be077-6f5d-4585-bc94-b68640356adc" target="_blank"&gt;&lt;b&gt;20050507
- Weinverkostung mit Silkeeltern und Kartoffelherz&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=a6b47817-d640-4333-9237-322dba7a184d" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,a6b47817-d640-4333-9237-322dba7a184d.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=26f8cd97-a2f6-4dc1-a711-f2f14109c933</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,26f8cd97-a2f6-4dc1-a711-f2f14109c933.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,26f8cd97-a2f6-4dc1-a711-f2f14109c933.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=26f8cd97-a2f6-4dc1-a711-f2f14109c933</wfw:commentRss>
      <title>neues album: 20050505 - Maennertag</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,26f8cd97-a2f6-4dc1-a711-f2f14109c933.aspx</guid>
      <link>http://pixelplastic.de/2005/05/06/neuesAlbum20050505Maennertag.aspx</link>
      <pubDate>Fri, 06 May 2005 16:50:27 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=e5744ffd-da18-411c-8a47-3cff92093b85&amp;initialPhoto=2921c647-dda3-4f07-b958-1a3d17b39c43" target="_blank"&gt;&lt;b&gt;20050505
- Maennertag&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=26f8cd97-a2f6-4dc1-a711-f2f14109c933" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,26f8cd97-a2f6-4dc1-a711-f2f14109c933.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=951b6617-2aa0-4d34-8ec2-0061bef7ec48</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,951b6617-2aa0-4d34-8ec2-0061bef7ec48.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,951b6617-2aa0-4d34-8ec2-0061bef7ec48.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=951b6617-2aa0-4d34-8ec2-0061bef7ec48</wfw:commentRss>
      <title>neues album: 20050504 - Eis- und Tannenzaepfle</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,951b6617-2aa0-4d34-8ec2-0061bef7ec48.aspx</guid>
      <link>http://pixelplastic.de/2005/05/06/neuesAlbum20050504EisUndTannenzaepfle.aspx</link>
      <pubDate>Fri, 06 May 2005 16:49:23 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=c377c0b9-b149-4820-bfb0-5d97b11d481a&amp;initialPhoto=81170c6c-457c-48d6-a0a0-773bd4b37739" target="_blank"&gt;&lt;b&gt;20050504
- Eis- und Tannenzaepfle&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=951b6617-2aa0-4d34-8ec2-0061bef7ec48" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,951b6617-2aa0-4d34-8ec2-0061bef7ec48.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=d1d95537-e4a5-4964-acc4-f34a10aa9dd8</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,d1d95537-e4a5-4964-acc4-f34a10aa9dd8.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,d1d95537-e4a5-4964-acc4-f34a10aa9dd8.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=d1d95537-e4a5-4964-acc4-f34a10aa9dd8</wfw:commentRss>
      <title>neues album: 20050502 - Wer-bin-ich-spiel und Jan im Park</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,d1d95537-e4a5-4964-acc4-f34a10aa9dd8.aspx</guid>
      <link>http://pixelplastic.de/2005/05/03/neuesAlbum20050502WerbinichspielUndJanImPark.aspx</link>
      <pubDate>Tue, 03 May 2005 12:09:13 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=68646c76-8a0f-4e99-b92b-6dee09adb0bd&amp;initialPhoto=3aa45148-b3c5-4d5a-8435-156671570479" target="_blank"&gt;&lt;b&gt;20050502
- Wer-bin-ich-spiel und Jan im Park&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=d1d95537-e4a5-4964-acc4-f34a10aa9dd8" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,d1d95537-e4a5-4964-acc4-f34a10aa9dd8.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=1d91ef79-390d-4522-a5be-74fd90164e9e</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,1d91ef79-390d-4522-a5be-74fd90164e9e.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,1d91ef79-390d-4522-a5be-74fd90164e9e.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=1d91ef79-390d-4522-a5be-74fd90164e9e</wfw:commentRss>
      <title>neues album: 20050501 - Hippipartie du sammet</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,1d91ef79-390d-4522-a5be-74fd90164e9e.aspx</guid>
      <link>http://pixelplastic.de/2005/05/03/neuesAlbum20050501HippipartieDuSammet.aspx</link>
      <pubDate>Tue, 03 May 2005 12:02:45 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=de7757c1-9d14-455f-8ae4-6150eeb13127&amp;initialPhoto=40c0422e-cfd2-487d-91d7-1ede4307ec00" target="_blank"&gt;&lt;b&gt;20050501
- Hippipartie du sammet&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=1d91ef79-390d-4522-a5be-74fd90164e9e" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,1d91ef79-390d-4522-a5be-74fd90164e9e.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=fa43b720-a41a-4c78-8a79-055dc97fa778</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,fa43b720-a41a-4c78-8a79-055dc97fa778.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,fa43b720-a41a-4c78-8a79-055dc97fa778.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=fa43b720-a41a-4c78-8a79-055dc97fa778</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
puuuh und ich komm aus dem feiern nicht mehr raus. das wochenende begann schon am
donnerstag mit einer lustigen wg-runde, kartoffeln, quark, leberwurst und saobreggo. 
</p>
        <p>
am freitag dann der durchbruch mit gesas einzugsparty. wilde tanzeinlagen auf heissem
beat, ordentlich bier und suppe. fazit: spitzenparty -&gt; noch 'ne runde bitte. 
</p>
        <p>
der samstag ging nach diesem exzess sowas von schnell vorbei und schon stand der sonntag
vor der tuer. cocktail-grill-erster-mai-fest in der sammet strasse. leider bin ich
mit alex auf der hinfahrt nur bis stadtmitte gekommen, da die netten haar- und kopflosen
jungs mit den netten behaarten jungs spielen wollten. also ging's mit badeschlappen
die paar kilometer zu fuss in richtung gohlis. sehr relaxend gab es dann erst einmal
blumenkranzflechtspass auf der wiese um die ecke und feines essen. zum abkuehlen lecker
bier. nach gesangseinlage vom sammet-chor und einem lustigen quartett ging es mit
lagerfeuer und knueppelteig in die nacht. auf dem heimweg schnell noch am kulki vorbei
und mal kurz die fuesse gewaschen.
</p>
        <p>
der gestrige montag (jans geburtstag) fing schon am abend feuchtfroehlich an.
eigentlich wollte ich nur ollis pc wieder in gang bringen, was auch geklappt hat.
doch dann wurde daraus gleich ein bierfest mit dem wer-oder-was-bin-ich-spiel (schild
am kopf). anschliessend gings in den park um dort mit jan noch einen zu heben. und
heute wird alles besser - wir werden sehen, denn der abend ist schon geplant. hifi-spass
bei robert.
</p>
        <p>
hauptsache sommer und sonne.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=fa43b720-a41a-4c78-8a79-055dc97fa778" />
      </body>
      <title>so langsam wird's warm</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,fa43b720-a41a-4c78-8a79-055dc97fa778.aspx</guid>
      <link>http://pixelplastic.de/2005/05/03/soLangsamWirdsWarm.aspx</link>
      <pubDate>Tue, 03 May 2005 10:46:20 GMT</pubDate>
      <description>&lt;p&gt;
puuuh und ich komm aus dem feiern nicht mehr raus. das wochenende begann schon am
donnerstag mit einer lustigen wg-runde, kartoffeln, quark, leberwurst und saobreggo. 
&lt;/p&gt;
&lt;p&gt;
am freitag dann der durchbruch mit gesas einzugsparty. wilde tanzeinlagen auf heissem
beat, ordentlich bier und suppe. fazit: spitzenparty -&amp;gt; noch 'ne runde bitte. 
&lt;/p&gt;
&lt;p&gt;
der samstag ging nach diesem exzess sowas von schnell vorbei und schon stand der sonntag
vor der tuer. cocktail-grill-erster-mai-fest in der sammet strasse. leider bin ich
mit alex auf der hinfahrt nur bis stadtmitte gekommen, da die netten haar- und kopflosen
jungs mit den netten behaarten jungs spielen wollten. also ging's mit badeschlappen
die paar kilometer zu fuss in richtung gohlis. sehr relaxend gab es dann erst einmal
blumenkranzflechtspass auf der wiese um die ecke und feines essen. zum abkuehlen lecker
bier. nach gesangseinlage vom sammet-chor und einem lustigen quartett ging es mit
lagerfeuer und knueppelteig in die nacht. auf dem heimweg schnell noch am kulki vorbei
und mal kurz die fuesse gewaschen.
&lt;/p&gt;
&lt;p&gt;
der gestrige montag (jans geburtstag) fing&amp;nbsp;schon am abend feuchtfroehlich an.
eigentlich wollte ich nur ollis pc wieder in gang bringen, was auch geklappt hat.
doch dann wurde daraus gleich ein bierfest mit dem wer-oder-was-bin-ich-spiel (schild
am kopf). anschliessend gings in den park um dort mit jan noch einen zu heben. und
heute wird alles besser - wir werden sehen, denn der abend ist schon geplant. hifi-spass
bei robert.
&lt;/p&gt;
&lt;p&gt;
hauptsache sommer und sonne.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=fa43b720-a41a-4c78-8a79-055dc97fa778" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,fa43b720-a41a-4c78-8a79-055dc97fa778.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=91cf2877-3d83-4134-9207-785c5051cd71</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,91cf2877-3d83-4134-9207-785c5051cd71.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,91cf2877-3d83-4134-9207-785c5051cd71.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=91cf2877-3d83-4134-9207-785c5051cd71</wfw:commentRss>
      <title>neues album: 20050428 - Leberwurstabend</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,91cf2877-3d83-4134-9207-785c5051cd71.aspx</guid>
      <link>http://pixelplastic.de/2005/04/30/neuesAlbum20050428Leberwurstabend.aspx</link>
      <pubDate>Sat, 30 Apr 2005 16:52:42 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=2395b0c8-aabf-450a-9535-8384e67ebcc2&amp;initialPhoto=65d2bb5f-875f-4b50-9970-8b753d70430b" target="_blank"&gt;&lt;b&gt;20050428
- Leberwurstabend&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=91cf2877-3d83-4134-9207-785c5051cd71" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,91cf2877-3d83-4134-9207-785c5051cd71.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=b1144339-c67d-41cb-a1f0-553225118f93</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,b1144339-c67d-41cb-a1f0-553225118f93.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,b1144339-c67d-41cb-a1f0-553225118f93.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=b1144339-c67d-41cb-a1f0-553225118f93</wfw:commentRss>
      <title>neues album: 20050429 - Gesas Einzugsparty</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,b1144339-c67d-41cb-a1f0-553225118f93.aspx</guid>
      <link>http://pixelplastic.de/2005/04/30/neuesAlbum20050429GesasEinzugsparty.aspx</link>
      <pubDate>Sat, 30 Apr 2005 16:51:21 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=19b66381-6c87-4fe1-b116-685d4bc99f12&amp;initialPhoto=f3b24e73-804c-4e0d-90c3-870effa4fdc0" target="_blank"&gt;&lt;b&gt;20050429
- Gesas Einzugsparty&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=b1144339-c67d-41cb-a1f0-553225118f93" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,b1144339-c67d-41cb-a1f0-553225118f93.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=59424e5a-6a02-4d82-8b68-9a1235f8c171</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,59424e5a-6a02-4d82-8b68-9a1235f8c171.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,59424e5a-6a02-4d82-8b68-9a1235f8c171.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=59424e5a-6a02-4d82-8b68-9a1235f8c171</wfw:commentRss>
      <title>neues album: 20050422 - Grillnachmittag mit Gesas Mädels</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,59424e5a-6a02-4d82-8b68-9a1235f8c171.aspx</guid>
      <link>http://pixelplastic.de/2005/04/30/neuesAlbum20050422GrillnachmittagMitGesasM%c3%a4dels.aspx</link>
      <pubDate>Sat, 30 Apr 2005 16:33:57 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=9c0e2829-ab63-46c8-89dd-b524553ce8c8&amp;initialPhoto=a1a018b3-a54d-4127-b14f-1a56dd743304" target="_blank"&gt;&lt;b&gt;20050422
- Grillnachmittag mit Gesas Mädels&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=59424e5a-6a02-4d82-8b68-9a1235f8c171" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,59424e5a-6a02-4d82-8b68-9a1235f8c171.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=723d6c66-514a-4453-b66e-cb1f15531869</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,723d6c66-514a-4453-b66e-cb1f15531869.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,723d6c66-514a-4453-b66e-cb1f15531869.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=723d6c66-514a-4453-b66e-cb1f15531869</wfw:commentRss>
      <title>neues album: 20050417 - Pornoparty</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,723d6c66-514a-4453-b66e-cb1f15531869.aspx</guid>
      <link>http://pixelplastic.de/2005/04/17/neuesAlbum20050417Pornoparty.aspx</link>
      <pubDate>Sun, 17 Apr 2005 12:42:25 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=9ce0b2a1-acd8-4403-961e-2f85b009f0c1&amp;initialPhoto=36dd9676-a405-4572-bd5f-988ad8a4868e" target="_blank"&gt;&lt;b&gt;20050417
- Pornoparty&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=723d6c66-514a-4453-b66e-cb1f15531869" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,723d6c66-514a-4453-b66e-cb1f15531869.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=477e73c3-298d-4d37-9545-09346ce6163b</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,477e73c3-298d-4d37-9545-09346ce6163b.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,477e73c3-298d-4d37-9545-09346ce6163b.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=477e73c3-298d-4d37-9545-09346ce6163b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <code>roll.........OK</code>
        <br />
        <code>rock.........OK</code>
        <br />
        <code>drugs........OK</code>
        <br />
        <code>sex..........FAILED</code>
        <br />
wieder nix. arschfrei, pornoes, zwei verlorene plueschschwaenze und doch wieder allein
im bett. nur ein netter hinweis auf meine freiluftberge. was will die holde weiblichkeit
denn noch? 
<br /><img src="http://luckypixel.dyndns.org/blog/content/binary/wgparty.jpg" border="0" /><br /><img src="http://luckypixel.dyndns.org/blog/content/binary/IMG_7292.jpg" border="0" /><img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=477e73c3-298d-4d37-9545-09346ce6163b" /></body>
      <title>sex, drugs, rock 'n' roll</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,477e73c3-298d-4d37-9545-09346ce6163b.aspx</guid>
      <link>http://pixelplastic.de/2005/04/17/sexDrugsRockNRoll.aspx</link>
      <pubDate>Sun, 17 Apr 2005 12:39:48 GMT</pubDate>
      <description>&lt;code&gt;roll.........OK&lt;/code&gt;
&lt;br&gt;
&lt;code&gt;rock.........OK&lt;/code&gt;
&lt;br&gt;
&lt;code&gt;drugs........OK&lt;/code&gt;
&lt;br&gt;
&lt;code&gt;sex..........FAILED&lt;/code&gt;
&lt;br&gt;
wieder nix. arschfrei, pornoes, zwei verlorene plueschschwaenze und doch wieder allein
im bett. nur ein netter hinweis auf meine freiluftberge. was will die holde weiblichkeit
denn noch? 
&lt;br&gt;
&lt;img src="http://luckypixel.dyndns.org/blog/content/binary/wgparty.jpg" border=0&gt;
&lt;br&gt;
&lt;img src="http://luckypixel.dyndns.org/blog/content/binary/IMG_7292.jpg" border=0&gt;&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=477e73c3-298d-4d37-9545-09346ce6163b" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,477e73c3-298d-4d37-9545-09346ce6163b.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=0ad78fea-8997-46f1-80fb-7c905c4e7154</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,0ad78fea-8997-46f1-80fb-7c905c4e7154.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,0ad78fea-8997-46f1-80fb-7c905c4e7154.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=0ad78fea-8997-46f1-80fb-7c905c4e7154</wfw:commentRss>
      <title>neues album: 20050416 - Geburtstagsomi mit zug</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,0ad78fea-8997-46f1-80fb-7c905c4e7154.aspx</guid>
      <link>http://pixelplastic.de/2005/04/16/neuesAlbum20050416GeburtstagsomiMitZug.aspx</link>
      <pubDate>Sat, 16 Apr 2005 19:30:03 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=6d8f0a3b-5e4e-43a0-a89d-4f3cd2eb5d71&amp;initialPhoto=a17180ff-0633-44f4-9642-7a0d2f32b141" target="_blank"&gt;&lt;b&gt;20050416
- Geburtstagsomi mit zug&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=0ad78fea-8997-46f1-80fb-7c905c4e7154" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,0ad78fea-8997-46f1-80fb-7c905c4e7154.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=84c98d68-f4a3-4bb3-9d0a-3fd71885d22d</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,84c98d68-f4a3-4bb3-9d0a-3fd71885d22d.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,84c98d68-f4a3-4bb3-9d0a-3fd71885d22d.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=84c98d68-f4a3-4bb3-9d0a-3fd71885d22d</wfw:commentRss>
      <title>neues album: 20050415 - Ode an die Paprika</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,84c98d68-f4a3-4bb3-9d0a-3fd71885d22d.aspx</guid>
      <link>http://pixelplastic.de/2005/04/15/neuesAlbum20050415OdeAnDiePaprika.aspx</link>
      <pubDate>Fri, 15 Apr 2005 12:35:19 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=c4501bfc-bb2f-44fd-8ea2-a80cb772e9a8&amp;initialPhoto=c23f6f7c-646c-4a2b-a7af-fd92a248829f" target="_blank"&gt;&lt;b&gt;20050415
- Ode an die Paprika&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=84c98d68-f4a3-4bb3-9d0a-3fd71885d22d" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,84c98d68-f4a3-4bb3-9d0a-3fd71885d22d.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=07eaa305-ad36-43dd-a089-f0d85f353141</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,07eaa305-ad36-43dd-a089-f0d85f353141.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,07eaa305-ad36-43dd-a089-f0d85f353141.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=07eaa305-ad36-43dd-a089-f0d85f353141</wfw:commentRss>
      <title>neues album: 20050412 - Spaziestock und widi</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,07eaa305-ad36-43dd-a089-f0d85f353141.aspx</guid>
      <link>http://pixelplastic.de/2005/04/14/neuesAlbum20050412SpaziestockUndWidi.aspx</link>
      <pubDate>Thu, 14 Apr 2005 22:27:21 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=b2140194-14f4-4ba3-9af6-f64866df7926&amp;initialPhoto=e39def82-9cd6-4714-bf61-5a4c7ef44355" target="_blank"&gt;&lt;b&gt;20050412
- Spaziestock und widi&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=07eaa305-ad36-43dd-a089-f0d85f353141" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,07eaa305-ad36-43dd-a089-f0d85f353141.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=815f2cf9-085a-46e0-879a-61d0448cfe75</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,815f2cf9-085a-46e0-879a-61d0448cfe75.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,815f2cf9-085a-46e0-879a-61d0448cfe75.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=815f2cf9-085a-46e0-879a-61d0448cfe75</wfw:commentRss>
      <title>neues album: 20050407 - Alex Fotosession Albumcover und Eierkuchen</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,815f2cf9-085a-46e0-879a-61d0448cfe75.aspx</guid>
      <link>http://pixelplastic.de/2005/04/10/neuesAlbum20050407AlexFotosessionAlbumcoverUndEierkuchen.aspx</link>
      <pubDate>Sun, 10 Apr 2005 02:26:51 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=94e27e0d-0a27-4861-ae77-2a887a9a1c81&amp;initialPhoto=f5ec4c1f-4faf-42df-adbb-9bd9d03f4a0e" target="_blank"&gt;&lt;b&gt;20050407
- Alex Fotosession Albumcover und Eierkuchen&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=815f2cf9-085a-46e0-879a-61d0448cfe75" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,815f2cf9-085a-46e0-879a-61d0448cfe75.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=c42c4143-d856-4b09-89c5-b130fe8aef2e</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,c42c4143-d856-4b09-89c5-b130fe8aef2e.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,c42c4143-d856-4b09-89c5-b130fe8aef2e.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=c42c4143-d856-4b09-89c5-b130fe8aef2e</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag fuer
das neue album:<br /><a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=05c444c5-3ba9-4a9c-a511-2fcc7c98c47a&amp;initialPhoto=e0877b6b-f3a6-44c2-b6a5-94504b0e6fa3" target="_blank"><b>20050410
- Fruehjahrsputz mit Herrn und Frau Physalis</b></a>.<img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c42c4143-d856-4b09-89c5-b130fe8aef2e" /></body>
      <title>neues album: 20050410 - Fruehjahrsputz mit Herrn und Frau Physalis</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,c42c4143-d856-4b09-89c5-b130fe8aef2e.aspx</guid>
      <link>http://pixelplastic.de/2005/04/10/neuesAlbum20050410FruehjahrsputzMitHerrnUndFrauPhysalis.aspx</link>
      <pubDate>Sun, 10 Apr 2005 02:14:01 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=05c444c5-3ba9-4a9c-a511-2fcc7c98c47a&amp;amp;initialPhoto=e0877b6b-f3a6-44c2-b6a5-94504b0e6fa3" target=_blank&gt;&lt;b&gt;20050410
- Fruehjahrsputz mit Herrn und Frau Physalis&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c42c4143-d856-4b09-89c5-b130fe8aef2e" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,c42c4143-d856-4b09-89c5-b130fe8aef2e.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=70e6c0c4-69da-4900-8508-49a28f0b77ba</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,70e6c0c4-69da-4900-8508-49a28f0b77ba.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,70e6c0c4-69da-4900-8508-49a28f0b77ba.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=70e6c0c4-69da-4900-8508-49a28f0b77ba</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
nachdem heute abend dann doch der fruehjahrsputz ausgebrochen war und alle wg-insassen
durch saemtliche gemeinschaftsraeume gewirbelt sind gab's zur belohnung noch rouladen
nach mutterns art. alex hat dies zubereitet und allen hat es sehr gemundet. auch wenn
es dann doch schon viertel nach elf (man bedenke abends) war, eh das mahl fertig gestellt
wurde.
</p>
        <p>
in lustiger runde gab es dann noch phylialis fruechte unter denen sich zwei schimmlige
versteckt hielten. nach intensiver betrachtung formten sich daraus herr und frau physalis. angetan
vom thumbwalk konnte ich nicht wiederstehen auch ueber diese beiden gestalten
einen dokumentarfilm mit meinem handy zu drehen. so entstanden die nun folgenden beiden
sequenzen, die uns fuenfen (martin eingeschlossen) sehr belustigten:
</p>
        <p>
kissin herr physalis:
</p>
        <p>
          <a href="http://luckypixel.dyndns.org/blog/content/binary/10042005 - I.large.zip">10042005
- I.large.zip (1,92 MB)</a>
        </p>
        <p>
          <a href="http://luckypixel.dyndns.org/blog/content/binary/10042005 - I.small.zip">10042005
- I.small.zip (791,64 KB)</a>
        </p>
        <p>
kissin alex:
</p>
        <p>
          <a href="http://luckypixel.dyndns.org/blog/content/binary/10042005 - II.large.zip">10042005
- II.large.zip (1,03 MB)</a>
        </p>
        <p>
          <a href="http://luckypixel.dyndns.org/blog/content/binary/10042005 - II.small.zip">10042005
- II.small.zip (365,96 KB)</a>
        </p>
        <p>
und wieder wird der xvid-codec benoetigt, um die sachen anzuschauen.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=70e6c0c4-69da-4900-8508-49a28f0b77ba" />
      </body>
      <title>fruehjahrsputz mit rouladen, sowie herrn und frau physalis</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,70e6c0c4-69da-4900-8508-49a28f0b77ba.aspx</guid>
      <link>http://pixelplastic.de/2005/04/10/fruehjahrsputzMitRouladenSowieHerrnUndFrauPhysalis.aspx</link>
      <pubDate>Sun, 10 Apr 2005 02:07:01 GMT</pubDate>
      <description>&lt;p&gt;
nachdem heute abend dann doch der fruehjahrsputz ausgebrochen war und alle wg-insassen
durch saemtliche gemeinschaftsraeume gewirbelt sind gab's zur belohnung noch rouladen
nach mutterns art. alex hat dies zubereitet und allen hat es sehr gemundet. auch wenn
es dann doch schon viertel nach elf (man bedenke abends) war, eh das mahl fertig gestellt
wurde.
&lt;/p&gt;
&lt;p&gt;
in lustiger runde gab es dann noch phylialis fruechte unter denen sich zwei schimmlige
versteckt hielten. nach intensiver betrachtung formten sich daraus herr und frau physalis.&amp;nbsp;angetan
vom thumbwalk konnte ich&amp;nbsp;nicht wiederstehen auch ueber diese beiden gestalten
einen dokumentarfilm mit meinem handy zu drehen. so entstanden die nun folgenden beiden
sequenzen, die uns fuenfen (martin eingeschlossen) sehr belustigten:
&lt;/p&gt;
&lt;p&gt;
kissin herr physalis:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://luckypixel.dyndns.org/blog/content/binary/10042005 - I.large.zip"&gt;10042005
- I.large.zip (1,92 MB)&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://luckypixel.dyndns.org/blog/content/binary/10042005 - I.small.zip"&gt;10042005
- I.small.zip (791,64 KB)&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
kissin alex:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://luckypixel.dyndns.org/blog/content/binary/10042005 - II.large.zip"&gt;10042005
- II.large.zip (1,03 MB)&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://luckypixel.dyndns.org/blog/content/binary/10042005 - II.small.zip"&gt;10042005
- II.small.zip (365,96 KB)&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
und wieder wird der xvid-codec benoetigt, um die sachen anzuschauen.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=70e6c0c4-69da-4900-8508-49a28f0b77ba" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,70e6c0c4-69da-4900-8508-49a28f0b77ba.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=daa0b1d5-e44d-4e3c-a95d-77b94f606e37</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,daa0b1d5-e44d-4e3c-a95d-77b94f606e37.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,daa0b1d5-e44d-4e3c-a95d-77b94f606e37.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=daa0b1d5-e44d-4e3c-a95d-77b94f606e37</wfw:commentRss>
      <title>neues album: 20050405 - Silkes Miniwiedersehensgeburtstagsparty</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,daa0b1d5-e44d-4e3c-a95d-77b94f606e37.aspx</guid>
      <link>http://pixelplastic.de/2005/04/08/neuesAlbum20050405SilkesMiniwiedersehensgeburtstagsparty.aspx</link>
      <pubDate>Fri, 08 Apr 2005 16:55:07 GMT</pubDate>
      <description>automatisch generierter blogeintrag fuer das neue album:&lt;br /&gt;
&lt;a href="http://luckypixel.dyndns.org/default.aspx?initialAlbum=717efddb-d836-42d0-ad59-adf6dd402bfc&amp;initialPhoto=1ff30a33-5914-4f82-8e48-bd00b92a4a4e" target="_blank"&gt;&lt;b&gt;20050405
- Silkes Miniwiedersehensgeburtstagsparty&lt;/b&gt;&lt;/a&gt;.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=daa0b1d5-e44d-4e3c-a95d-77b94f606e37" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,daa0b1d5-e44d-4e3c-a95d-77b94f606e37.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=c15dd5c1-cb02-4d2c-853e-3238b03edc0b</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,c15dd5c1-cb02-4d2c-853e-3238b03edc0b.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,c15dd5c1-cb02-4d2c-853e-3238b03edc0b.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=c15dd5c1-cb02-4d2c-853e-3238b03edc0b</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
heute gab's was zu knipsen. alex bat um fotografische unterstuetzung fuer das cover
seines neuen albums. satte 1.8 gb sind in den 7 stunden entstanden und wollen nun
gesichtet werden. tasse hier, keyboard dort - tonnen von schnickschnack kamen mir
vor die linse. zum mittag kam janschi rum und es gab leckerste eierkuchen. alex
hatte es natuerlich verpeilt jan bescheid zu geben, neben apfelmus und eiern auch
mehl mitzubringen. das war in der awo-wg (alex, widi, olli) naemlich aus. also mussten
die silos der nachbarn dran glauben. nachdem nun endlich mehl am start
war begann ein richtiger wettstreit, wer die dicksten eierkuchen macht. jedes
stueck ein unikat. dazu frisches radler aus dem kiosk um die ecke und wilder jazz.
zuerst sonne, dann regen. doch das geborgte mehl war alle und der hunger noch da.
also zum naechsten nachbarn. auch dort gaben die silos welches her. und noch eine
runde eierkuchen - groesser, runder, saftiger - mal wuerzig, mal suess, deftig oder
rezent. njam njam. die zigarette danach hat richtig gut getan. zum schluss entstand
noch ein film von, mit und ueber meinen daumenzeigefinger:
</p>
        <p>
dsl: <a href="http://luckypixel.dyndns.org/blog/content/binary/07042005V_thumbwalk_large.zip">07042005V_thumbwalk_large.zip
(2,77 MB)</a></p>
        <p>
modem/isdn: <a href="http://luckypixel.dyndns.org/blog/content/binary/07042005V_thumbwalk_small.zip">07042005V_thumbwalk_small.zip
(788,6 KB)</a></p>
        <p>
es wird der xvid codec benoetigt um diesen shortclip anzuschauen.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c15dd5c1-cb02-4d2c-853e-3238b03edc0b" />
      </body>
      <title>fotosession bei alex</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,c15dd5c1-cb02-4d2c-853e-3238b03edc0b.aspx</guid>
      <link>http://pixelplastic.de/2005/04/07/fotosessionBeiAlex.aspx</link>
      <pubDate>Thu, 07 Apr 2005 16:09:17 GMT</pubDate>
      <description>&lt;p&gt;
heute gab's was zu knipsen. alex bat um fotografische unterstuetzung fuer das cover
seines neuen albums. satte 1.8 gb sind in den 7 stunden entstanden und wollen nun
gesichtet werden. tasse hier, keyboard dort - tonnen von schnickschnack kamen mir
vor die linse. zum mittag kam janschi rum und es gab leckerste eierkuchen.&amp;nbsp;alex
hatte es natuerlich verpeilt jan bescheid zu geben, neben apfelmus und eiern auch
mehl mitzubringen. das war in der awo-wg (alex, widi, olli) naemlich aus. also mussten
die silos der nachbarn dran glauben.&amp;nbsp;nachdem&amp;nbsp;nun endlich&amp;nbsp;mehl am start
war&amp;nbsp;begann ein richtiger wettstreit, wer die dicksten eierkuchen macht. jedes
stueck ein unikat. dazu frisches radler aus dem kiosk um die ecke und wilder jazz.
zuerst sonne, dann regen. doch das geborgte mehl war alle und der hunger noch da.
also zum naechsten nachbarn. auch dort gaben die silos welches her. und noch eine
runde eierkuchen - groesser, runder, saftiger - mal wuerzig, mal suess, deftig oder
rezent. njam njam. die zigarette danach hat richtig gut getan. zum schluss entstand
noch ein film von, mit und ueber meinen daumenzeigefinger:
&lt;/p&gt;
&lt;p&gt;
dsl: &lt;a href="http://luckypixel.dyndns.org/blog/content/binary/07042005V_thumbwalk_large.zip"&gt;07042005V_thumbwalk_large.zip
(2,77 MB)&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
modem/isdn: &lt;a href="http://luckypixel.dyndns.org/blog/content/binary/07042005V_thumbwalk_small.zip"&gt;07042005V_thumbwalk_small.zip
(788,6 KB)&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
es wird der xvid codec benoetigt um diesen shortclip anzuschauen.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=c15dd5c1-cb02-4d2c-853e-3238b03edc0b" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,c15dd5c1-cb02-4d2c-853e-3238b03edc0b.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=7f55f298-d26c-4ced-a722-f6fcffb67d35</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,7f55f298-d26c-4ced-a722-f6fcffb67d35.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,7f55f298-d26c-4ced-a722-f6fcffb67d35.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=7f55f298-d26c-4ced-a722-f6fcffb67d35</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
einfach nur unbeschreiblich, was alles moeglich ist. man will einfach nur noch kaufen,
kaufen, kaufen. raw-format, retro-makro, spiegelverriegelung, sRGB, eyepiece-extender,
weissabgleich, lichter abgleichen. normalsterbliche wissen gar nicht, was das alles
bedeutet. fotografieren ist eben doch nicht nur durchgucken, abdruecken und anschauen. 
</p>
        <p>
im naechsten leben werd ich fotograf.
</p>
        <p>
          <a href="http://www.traumflieger.de">http://www.traumflieger.de</a>
        </p>
        <p>
          <a href="http://www.fotocommunity.de">http://www.fotocommunity.de</a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7f55f298-d26c-4ced-a722-f6fcffb67d35" />
      </body>
      <title>ich liebe fotografieren</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,7f55f298-d26c-4ced-a722-f6fcffb67d35.aspx</guid>
      <link>http://pixelplastic.de/2005/04/04/ichLiebeFotografieren.aspx</link>
      <pubDate>Mon, 04 Apr 2005 01:30:07 GMT</pubDate>
      <description>&lt;p&gt;
einfach nur unbeschreiblich, was alles moeglich ist. man will einfach nur noch kaufen,
kaufen, kaufen. raw-format, retro-makro, spiegelverriegelung, sRGB, eyepiece-extender,
weissabgleich, lichter abgleichen. normalsterbliche wissen gar nicht, was das alles
bedeutet. fotografieren ist eben doch nicht nur durchgucken, abdruecken und anschauen. 
&lt;/p&gt;
&lt;p&gt;
im naechsten leben werd ich fotograf.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.traumflieger.de"&gt;http://www.traumflieger.de&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.fotocommunity.de"&gt;http://www.fotocommunity.de&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=7f55f298-d26c-4ced-a722-f6fcffb67d35" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,7f55f298-d26c-4ced-a722-f6fcffb67d35.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=12716868-87ab-4e3e-a887-6f562f966ccc</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,12716868-87ab-4e3e-a887-6f562f966ccc.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,12716868-87ab-4e3e-a887-6f562f966ccc.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=12716868-87ab-4e3e-a887-6f562f966ccc</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">automatisch generierter blogeintrag.<img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=12716868-87ab-4e3e-a887-6f562f966ccc" /></body>
      <title>neues album: 20050403 - Hifi at gees</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,12716868-87ab-4e3e-a887-6f562f966ccc.aspx</guid>
      <link>http://pixelplastic.de/2005/04/03/neuesAlbum20050403HifiAtGees.aspx</link>
      <pubDate>Sun, 03 Apr 2005 02:18:29 GMT</pubDate>
      <description>automatisch generierter blogeintrag.&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=12716868-87ab-4e3e-a887-6f562f966ccc" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,12716868-87ab-4e3e-a887-6f562f966ccc.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=f117537c-16c4-4314-96c8-f7870e410e71</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,f117537c-16c4-4314-96c8-f7870e410e71.aspx</pingback:target>
      <dc:creator>Marcel Hoyer</dc:creator>
      <wfw:comment>http://pixelplastic.de/CommentView,guid,f117537c-16c4-4314-96c8-f7870e410e71.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=f117537c-16c4-4314-96c8-f7870e410e71</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
oh mann. wie kann man nur so ein schnafftes wesen sein. ich bin hin und weg. die augen,
der mund. anhimmel. 
</p>
        <p>
          <img src="http://luckypixel.ppw3001.de/blog/content/binary/Vanilla Sky 02_small.jpg" border="0" />
        </p>
        <p>
danke kai, mary und pipe, dass ihr den film noch nicht gesehen hattet. so konnte ich
mir ihn zum vierten mal anschauen.
</p>
        <p>
          <a href="http://www.vanillasky.de/">http://www.vanillasky.de/</a>
        </p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f117537c-16c4-4314-96c8-f7870e410e71" />
      </body>
      <title>penelope cruz</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,f117537c-16c4-4314-96c8-f7870e410e71.aspx</guid>
      <link>http://pixelplastic.de/2005/04/02/penelopeCruz.aspx</link>
      <pubDate>Sat, 02 Apr 2005 01:57:18 GMT</pubDate>
      <description>&lt;p&gt;
oh mann. wie kann man nur so ein schnafftes wesen sein. ich bin hin und weg. die augen,
der mund. anhimmel. 
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://luckypixel.ppw3001.de/blog/content/binary/Vanilla Sky 02_small.jpg" border=0&gt;
&lt;/p&gt;
&lt;p&gt;
danke kai, mary und pipe, dass ihr den film noch nicht gesehen hattet. so konnte ich
mir ihn zum vierten mal anschauen.
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://www.vanillasky.de/"&gt;http://www.vanillasky.de/&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=f117537c-16c4-4314-96c8-f7870e410e71" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,f117537c-16c4-4314-96c8-f7870e410e71.aspx</comments>
    </item>
    <item>
      <trackback:ping>http://pixelplastic.de/Trackback.aspx?guid=dcc484be-57f6-47b9-b49c-519e89a08d81</trackback:ping>
      <pingback:server>http://pixelplastic.de/pingback.aspx</pingback:server>
      <pingback:target>http://pixelplastic.de/PermaLink,guid,dcc484be-57f6-47b9-b49c-519e89a08d81.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://pixelplastic.de/CommentView,guid,dcc484be-57f6-47b9-b49c-519e89a08d81.aspx</wfw:comment>
      <wfw:commentRss>http://pixelplastic.de/SyndicationService.asmx/GetEntryCommentsRss?guid=dcc484be-57f6-47b9-b49c-519e89a08d81</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
endlich ist es soweit und ich kann meinen ersten blogeintrag schreiben. nachdem ich
mich mit .text und einer alten dasblog-version (v1.0 - weiß auch nicht, wie ich an
diese gekommen bin) rumgeschlagen habe, bin ich nun doch bei der aktuellsten dasblog
version geblieben. ich hoffe alles richtig konfiguriert zu haben und freu mich schon
drauf dieses system jetzt als kleines tagebuch nutzen zu können.
</p>
        <p>
doch nun zum eigentlichen event dieses tages. meine neue webseite ist nun bereits
in version 1.0 am laufen und wartet darauf ihren link an freunde schicken zu können.
das ist natürlich meine aufgabe - sie selbst kann das noch nicht. ich denke das wird
aber heute noch passieren, insofern ich die kopplung meiner webseite an dieses blogsystem
zustande bekomm.
</p>
        <p>
vielleicht sollte hier noch angemerkt werden, dass es sich dabei nicht um einen aprilscherz
handelt.
</p>
        <img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=dcc484be-57f6-47b9-b49c-519e89a08d81" />
      </body>
      <title>luckypixel lebt</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,dcc484be-57f6-47b9-b49c-519e89a08d81.aspx</guid>
      <link>http://pixelplastic.de/2005/04/01/luckypixelLebt.aspx</link>
      <pubDate>Fri, 01 Apr 2005 13:47:07 GMT</pubDate>
      <description>&lt;p&gt;
endlich ist es soweit und ich kann meinen ersten blogeintrag schreiben. nachdem ich
mich mit .text und einer alten dasblog-version (v1.0 - weiß auch nicht, wie ich an
diese gekommen bin) rumgeschlagen habe, bin ich nun doch bei der aktuellsten dasblog
version geblieben. ich hoffe alles richtig konfiguriert zu haben und freu mich schon
drauf dieses system jetzt als kleines tagebuch nutzen zu können.
&lt;/p&gt;
&lt;p&gt;
doch nun zum eigentlichen event dieses tages. meine neue webseite ist nun bereits
in version 1.0 am laufen und wartet darauf ihren link an freunde schicken zu können.
das ist natürlich meine aufgabe - sie selbst kann das noch nicht. ich denke das wird
aber heute noch passieren, insofern ich die kopplung meiner webseite an dieses blogsystem
zustande bekomm.
&lt;/p&gt;
&lt;p&gt;
vielleicht sollte hier noch angemerkt werden, dass es sich dabei nicht um einen aprilscherz
handelt.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://pixelplastic.de/aggbug.ashx?id=dcc484be-57f6-47b9-b49c-519e89a08d81" /&gt;</description>
      <comments>http://pixelplastic.de/CommentView,guid,dcc484be-57f6-47b9-b49c-519e89a08d81.aspx</comments>
    </item>
  </channel>
</rss>