<?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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" 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>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/pixelplastic_de" /><feedburner:info uri="pixelplastic_de" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>51.325289</geo:lat><geo:long>12.342947</geo:long><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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/pixelplastic_de/~4/swrd7Neqy2E" height="1" width="1" /></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://feedproxy.google.com/~r/pixelplastic_de/~3/swrd7Neqy2E/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>
    <feedburner:origLink>http://pixelplastic.de/2010/08/29/OutlookReplyToHTMLEmailsWithPlainText.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/pixelplastic_de/~4/TsCefo5RRx8" height="1" width="1" /></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://feedproxy.google.com/~r/pixelplastic_de/~3/TsCefo5RRx8/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>
    <feedburner:origLink>http://pixelplastic.de/2009/10/15/VoxelEngineInSilverlight3HomageToNETOpenSpace2009.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/pixelplastic_de/~4/0d3JYBnh5IE" height="1" width="1" /></body>
      <title>Fire with WriteableBitmap</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,ec7b9f86-3f7f-42a0-b037-cee6c11b46a6.aspx</guid>
      <link>http://feedproxy.google.com/~r/pixelplastic_de/~3/0d3JYBnh5IE/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>
    <feedburner:origLink>http://pixelplastic.de/2009/08/04/FireWithWriteableBitmap.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/pixelplastic_de/~4/KAcX20xO9wo" height="1" width="1" /></body>
      <title>Tunnel Effect with Silverlight</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,1678f37e-63fc-4284-b2c2-5f2913496954.aspx</guid>
      <link>http://feedproxy.google.com/~r/pixelplastic_de/~3/KAcX20xO9wo/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>
    <feedburner:origLink>http://pixelplastic.de/2009/06/28/TunnelEffectWithSilverlight.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/pixelplastic_de/~4/lquKa8g57zQ" height="1" width="1" /></body>
      <title>Free Wallpapers - Part II</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,702c858c-5da6-495f-a4b1-e5b9a1c05033.aspx</guid>
      <link>http://feedproxy.google.com/~r/pixelplastic_de/~3/lquKa8g57zQ/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>
    <feedburner:origLink>http://pixelplastic.de/2009/06/23/FreeWallpapersPartII.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/pixelplastic_de/~4/nJI547iwkFQ" height="1" width="1" /></body>
      <title>Release of Silverlight Whiteboard</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,f963228d-ffcf-43df-9e72-746f12d2f224.aspx</guid>
      <link>http://feedproxy.google.com/~r/pixelplastic_de/~3/nJI547iwkFQ/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>
    <feedburner:origLink>http://pixelplastic.de/2009/05/15/ReleaseOfSilverlightWhiteboard.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/pixelplastic_de/~4/M6Rk5Rjs_KA" height="1" width="1" /></body>
      <title>Night walk</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,fc2eff68-b8dc-457b-a5ba-0c50fc8c8b7e.aspx</guid>
      <link>http://feedproxy.google.com/~r/pixelplastic_de/~3/M6Rk5Rjs_KA/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>
    <feedburner:origLink>http://pixelplastic.de/2009/04/03/NightWalk.aspx</feedburner:origLink></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" /><xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/pixelplastic_de/~4/I1l2SUHJLL0" height="1" width="1" /></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://feedproxy.google.com/~r/pixelplastic_de/~3/I1l2SUHJLL0/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>
    <feedburner:origLink>http://pixelplastic.de/2009/03/13/ItsTimeForATiltShiftLens.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/pixelplastic_de/~4/wbaeVdiPvIQ" height="1" width="1" /></body>
      <title>Hazelnut</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,bdd78b2f-ba58-43c9-a75c-9482a30910e3.aspx</guid>
      <link>http://feedproxy.google.com/~r/pixelplastic_de/~3/wbaeVdiPvIQ/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>
    <feedburner:origLink>http://pixelplastic.de/2009/02/26/Hazelnut.aspx</feedburner:origLink></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" />
      <xhtml:img xmlns:xhtml="http://www.w3.org/1999/xhtml" src="http://feeds.feedburner.com/~r/pixelplastic_de/~4/q_vkww0EQ4k" height="1" width="1" /></body>
      <title>New Year lights</title>
      <guid isPermaLink="false">http://pixelplastic.de/PermaLink,guid,d9078c23-1d54-402a-81dc-41fd622572c5.aspx</guid>
      <link>http://feedproxy.google.com/~r/pixelplastic_de/~3/q_vkww0EQ4k/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>
    <feedburner:origLink>http://pixelplastic.de/2009/02/18/NewYearLights.aspx</feedburner:origLink></item>
  </channel>
</rss>
