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

<channel>
	<title>wiibart.com</title>
	<atom:link href="http://www.wiibart.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.wiibart.com</link>
	<description></description>
	<pubDate>Fri, 09 Jul 2010 15:09:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>I made this class to sync files between two directories (C# .Net 3.5)</title>
		<link>http://www.wiibart.com/?p=202</link>
		<comments>http://www.wiibart.com/?p=202#comments</comments>
		<pubDate>Fri, 09 Jul 2010 15:09:11 +0000</pubDate>
		<dc:creator>wiibart</dc:creator>
		
		<category><![CDATA[Super dad movies]]></category>

		<guid isPermaLink="false">http://www.wiibart.com/?p=202</guid>
		<description><![CDATA[

using

 System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
 
namespace DeployUtil
{
    public class CopyUtil
    {
        public static void Sync(string sourcePath, string destinationPath)
        {
            bool dirExisted = DirExists(destinationPath);
 
            //get the source files
            string[] srcFiles = Directory.GetFiles(sourcePath);
 
            foreach (string sourceFile in srcFiles)
            {
                FileInfo sourceInfo = new FileInfo(sourceFile);
                string destFile = Path.Combine(destinationPath, sourceInfo.Name);
 
                if (!dirExisted &#38;&#38; File.Exists(destFile))
                {
                    FileInfo destInfo = new FileInfo(destFile);
                    if (sourceInfo.LastWriteTime &#62; destInfo.LastWriteTime)
                    {
                        //file is newer, so copy it
                        File.Copy(sourceFile, Path.Combine(destinationPath, sourceInfo.Name), true);
                        Console.WriteLine(sourceFile + &#34; copied (newer version)&#34;);
                    }
                }
                else
                {
                    File.Copy(sourceFile, Path.Combine(destinationPath, sourceInfo.Name));
                    Console.WriteLine(sourceFile + &#34; copied&#34;);
                }
            }
 
            DeleteOldDestinationFiles(srcFiles, destinationPath);
 
            //now process the directories if exist
            string[] dirs = Directory.GetDirectories(sourcePath);
 
            foreach (string dir in dirs)
            {
                DirectoryInfo dirInfo = new DirectoryInfo(dir);
 
                //recursive do the directories
                Sync(dir, Path.Combine(destinationPath, dirInfo.Name));
            [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div style="font-family: arial, sans-serif; font-size: 13px; border-collapse: collapse;">
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New; color: blue;">using</span></p>
</div>
<p><span style="font-size: 10pt; font-family: Courier New;"> System;</span>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New; color: blue;">using</span><span style="font-size: 10pt; font-family: Courier New;"> System.Collections.Generic;</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New; color: blue;">using</span><span style="font-size: 10pt; font-family: Courier New;"> System.Linq;</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New; color: blue;">using</span><span style="font-size: 10pt; font-family: Courier New;"> System.Text;</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New; color: blue;">using</span><span style="font-size: 10pt; font-family: Courier New;"> System.IO;</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New; color: blue;">namespace</span><span style="font-size: 10pt; font-family: Courier New;"> DeployUtil</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">{</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">    <span style="color: blue;">public</span> <span style="color: blue;">class</span> <span style="color: rgb(43, 145, 175);">CopyUtil</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">    {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        <span style="color: blue;">public</span> <span style="color: blue;">static</span> <span style="color: blue;">void</span> Sync(<span style="color: blue;">string</span> sourcePath, <span style="color: blue;">string</span> destinationPath)</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: blue;">bool</span> dirExisted = DirExists(destinationPath);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: green;">//get the source files</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: blue;">string</span>[] srcFiles = <span style="color: rgb(43, 145, 175);">Directory</span>.GetFiles(sourcePath);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: blue;">foreach</span> (<span style="color: blue;">string</span> sourceFile <span style="color: blue;">in</span> srcFiles)</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                <span style="color: rgb(43, 145, 175);">FileInfo</span> sourceInfo = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">FileInfo</span>(sourceFile);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                <span style="color: blue;">string</span> destFile = <span style="color: rgb(43, 145, 175);">Path</span>.Combine(destinationPath, sourceInfo.Name);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                <span style="color: blue;">if</span> (!dirExisted &amp;&amp; <span style="color: rgb(43, 145, 175);">File</span>.Exists(destFile))</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                    <span style="color: rgb(43, 145, 175);">FileInfo</span> destInfo = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">FileInfo</span>(destFile);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                    <span style="color: blue;">if</span> (sourceInfo.LastWriteTime &gt; destInfo.LastWriteTime)</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                    {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                        <span style="color: green;">//file is newer, so copy it</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                        <span style="color: rgb(43, 145, 175);">File</span>.Copy(sourceFile, <span style="color: rgb(43, 145, 175);">Path</span>.Combine(destinationPath, sourceInfo.Name), <span style="color: blue;">true</span>);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                        <span style="color: rgb(43, 145, 175);">Console</span>.WriteLine(sourceFile + <span style="color: rgb(163, 21, 21);">&quot; copied (newer version)&quot;</span>);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                    }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                <span style="color: blue;">else</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                    <span style="color: rgb(43, 145, 175);">File</span>.Copy(sourceFile, <span style="color: rgb(43, 145, 175);">Path</span>.Combine(destinationPath, sourceInfo.Name));</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                    <span style="color: rgb(43, 145, 175);">Console</span>.WriteLine(sourceFile + <span style="color: rgb(163, 21, 21);">&quot; copied&quot;</span>);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            DeleteOldDestinationFiles(srcFiles, destinationPath);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: green;">//now process the directories if exist</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: blue;">string</span>[] dirs = <span style="color: rgb(43, 145, 175);">Directory</span>.GetDirectories(sourcePath);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: blue;">foreach</span> (<span style="color: blue;">string</span> dir <span style="color: blue;">in</span> dirs)</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                <span style="color: rgb(43, 145, 175);">DirectoryInfo</span> dirInfo = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">DirectoryInfo</span>(dir);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                <span style="color: green;">//recursive do the directories</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                Sync(dir, <span style="color: rgb(43, 145, 175);">Path</span>.Combine(destinationPath, dirInfo.Name));</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-family: Courier New;">        }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"> <span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"> <span style="font-size: 10pt; font-family: Courier New;">        <span style="color: blue;">private</span> <span style="color: blue;">static</span> <span style="color: blue;">bool</span> DirExists(<span style="color: blue;">string</span> path)</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: green;">//create destination directory if not exist</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: blue;">if</span> (!<span style="color: rgb(43, 145, 175);">Directory</span>.Exists(path))</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                <span style="color: rgb(43, 145, 175);">Directory</span>.CreateDirectory(path);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                <span style="color: blue;">return</span> <span style="color: blue;">true</span>;</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: blue;">else</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                <span style="color: blue;">return</span> <span style="color: blue;">false</span>;</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        <span style="color: blue;">private</span> <span style="color: blue;">static</span> <span style="color: blue;">void</span> DeleteOldDestinationFiles(<span style="color: blue;">string</span>[] sourceFiles, <span style="color: blue;">string</span> destinationPath)</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: green;">//get the destination files</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: blue;">string</span>[] dstFiles = <span style="color: rgb(43, 145, 175);">Directory</span>.GetFiles(destinationPath);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: blue;">foreach</span> (<span style="color: blue;">string</span> dstFile <span style="color: blue;">in</span> dstFiles)</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                <span style="color: rgb(43, 145, 175);">FileInfo</span> f = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">FileInfo</span>(dstFile);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                <span style="color: blue;">string</span>[] found = <span style="color: rgb(43, 145, 175);">Array</span>.FindAll(sourceFiles, str =&gt; GetName(str).Equals(f.Name));</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                <span style="color: blue;">if</span> (found.Length == 0)</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                    <span style="color: green;">//delete file if not found in destination</span></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                    <span style="color: rgb(43, 145, 175);">File</span>.Delete(dstFile);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                    LogInfo(dstFile + <span style="color: rgb(163, 21, 21);">&quot; deleted&quot;</span>);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">                }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        <span style="color: blue;">private</span> <span style="color: blue;">static</span> <span style="color: blue;">string</span> GetName(<span style="color: blue;">string</span> path)</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: rgb(43, 145, 175);">FileInfo</span> i = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">FileInfo</span>(path);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: blue;">return</span> i.Name;</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        <span style="color: blue;">private</span> <span style="color: blue;">static</span> <span style="color: blue;">void</span> LogInfo(<span style="color: blue;">string</span> text)</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        {</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: rgb(43, 145, 175);">ConsoleColor</span> was = <span style="color: rgb(43, 145, 175);">Console</span>.ForegroundColor;</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: rgb(43, 145, 175);">Console</span>.ForegroundColor = <span style="color: rgb(43, 145, 175);">ConsoleColor</span>.Magenta;</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: rgb(43, 145, 175);">Console</span>.WriteLine(text);</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">            <span style="color: rgb(43, 145, 175);">Console</span>.ForegroundColor = was;</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">        </span><span style="font-size: 10pt; font-family: Courier New;">}</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;"> </span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">    }</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px;"><span style="font-size: 10pt; font-family: Courier New;">}</span></p>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://wiibart.posterous.com/i-made-this-class-to-sync-files-between-two-d">wiibart&#8217;s posterous</a>  </p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wiibart.com/?feed=rss2&amp;p=202</wfw:commentRss>
		</item>
		<item>
		<title>Because we beat Brazil I&#8217;ve just cut of off all my hair and you should do too</title>
		<link>http://www.wiibart.com/?p=201</link>
		<comments>http://www.wiibart.com/?p=201#comments</comments>
		<pubDate>Fri, 02 Jul 2010 20:41:55 +0000</pubDate>
		<dc:creator>wiibart</dc:creator>
		
		<category><![CDATA[Super dad movies]]></category>

		<guid isPermaLink="false">http://www.wiibart.com/?p=201</guid>
		<description><![CDATA[






1 Hour 7 Minutes AgoPicture #152 out of 152
cut it all off..

      


  		  		  	


  				#1  			
  			
wiibart commented with a picture:


do it?

1 Hour 5 Minutes Ago





  		  		  	


  				#2  			
  			
wiibart commented with a picture:


keep [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<blockquote class="posterous_long_quote">
<div>
<div><img src="http://cdn.dailybooth.com/7/pictures/large/c7cf6b301164fa2d47e1184dac472b16_5987337.jpg" alt="Picture #152" /><span class="rc-tr"></span><span class="rc-tl"></span><span class="rc-br"></span><span class="rc-bl"></span></div>
</p></div>
<div>
<p class="info"><small>1 Hour 7 Minutes Ago</small>Picture <strong>#152</strong> out of 152</p>
<p>cut it all off..</p>
</p></div>
<p>      <a name="comments"></a>
<ul class="comments">
<li class="feed_picture_comment">
<div class="picture">  		<img src="http://cdn.dailybooth.com/7/comments/medium/19838849.jpg" alt="wiibart" />  		<span class="rc-tr"></span><span class="rc-tl"></span><span class="rc-br"></span><span class="rc-bl"></span>  	</div>
<div class="details">
<div class="action">
<p class="right">  				<a name="c19838849" href="http://dailybooth.com/wiibart/5987337/./wiibart/5987337#c19838849">#1</a>  			</p>
<p>  			<a href="http://dailybooth.com/wiibart/5987337/./wiibart" class="avatar"><img src="http://cdn.dailybooth.com/7/avatars/small/10108_5987337.jpg" alt="wiibart" /><span></span></a>
<p class="left"><a href="http://dailybooth.com/wiibart/5987337/./wiibart">wiibart</a> commented with a picture:</p>
</p></div>
<div class="description">
<p>do it?</p>
<div class="comments">
<p><span>1 Hour 5 Minutes Ago</span></p>
</p></div>
</p></div>
</p></div>
</li>
<li class="feed_picture_comment">
<div class="picture">  		<img src="http://cdn.dailybooth.com/7/comments/medium/19839291.jpg" alt="wiibart" />  		<span class="rc-tr"></span><span class="rc-tl"></span><span class="rc-br"></span><span class="rc-bl"></span>  	</div>
<div class="details">
<div class="action">
<p class="right">  				<a name="c19839291" href="http://dailybooth.com/wiibart/5987337/./wiibart/5987337#c19839291">#2</a>  			</p>
<p>  			<a href="http://dailybooth.com/wiibart/5987337/./wiibart" class="avatar"><img src="http://cdn.dailybooth.com/7/avatars/small/10108_5987337.jpg" alt="wiibart" /><span></span></a>
<p class="left"><a href="http://dailybooth.com/wiibart/5987337/./wiibart">wiibart</a> commented with a picture:</p>
</p></div>
<div class="description">
<p>keep it like this?</p>
<div class="comments">
<p><span>57 Minutes Ago</span></p>
</p></div>
</p></div>
</p></div>
</li>
<li class="feed_picture_comment">
<div class="picture">  		<img src="http://cdn.dailybooth.com/5/comments/medium/19839746.jpg" alt="wiibart" />  		<span class="rc-tr"></span><span class="rc-tl"></span><span class="rc-br"></span><span class="rc-bl"></span>  	</div>
<div class="details">
<div class="action">
<p class="right">  				<a name="c19839746" href="http://dailybooth.com/wiibart/5987337/./wiibart/5987337#c19839746">#3</a>  			</p>
<p>  			<a href="http://dailybooth.com/wiibart/5987337/./wiibart" class="avatar"><img src="http://cdn.dailybooth.com/7/avatars/small/10108_5987337.jpg" alt="wiibart" /><span></span></a>
<p class="left"><a href="http://dailybooth.com/wiibart/5987337/./wiibart">wiibart</a> commented with a picture:</p>
</p></div>
<div class="description">
<p>yeahhh</p>
<div class="comments">
<p><span>48 Minutes 33 Seconds Ago</span></p>
</p></div>
</p></div>
</p></div>
</li>
<li class="feed_picture_comment">
<div class="picture">  		<img src="http://cdn.dailybooth.com/7/comments/medium/19840368.jpg" alt="wiibart" />  		<span class="rc-tr"></span><span class="rc-tl"></span><span class="rc-br"></span><span class="rc-bl"></span>  	</div>
<div class="details">
<div class="action">
<p class="right">  				<a name="c19840368" href="http://dailybooth.com/wiibart/5987337/./wiibart/5987337#c19840368">#4</a>  			</p>
<p>  			<a href="http://dailybooth.com/wiibart/5987337/./wiibart" class="avatar"><img src="http://cdn.dailybooth.com/7/avatars/small/10108_5987337.jpg" alt="wiibart" /><span></span></a>
<p class="left"><a href="http://dailybooth.com/wiibart/5987337/./wiibart">wiibart</a> commented with a picture:</p>
</p></div>
<div class="description">
<p>It&#8217;s a new me!!</p>
<div class="comments">
<p><span>36 Minutes 26 Seconds Ago</span></p>
</p></div>
</p></div>
</p></div>
</li>
<li class="feed_picture_comment">
<div class="picture">  		<img src="http://cdn.dailybooth.com/5/comments/medium/19841472.jpg" alt="wiibart" />  		<span class="rc-tr"></span><span class="rc-tl"></span><span class="rc-br"></span><span class="rc-bl"></span>  	</div>
<div class="details">
<div class="action">
<p class="right">  				<a name="c19841472" href="http://dailybooth.com/wiibart/5987337/./wiibart/5987337#c19841472">#5</a>  			</p>
<p>  			<a href="http://dailybooth.com/wiibart/5987337/./wiibart" class="avatar"><img src="http://cdn.dailybooth.com/7/avatars/small/10108_5987337.jpg" alt="wiibart" /><span></span></a>
<p class="left"><a href="http://dailybooth.com/wiibart/5987337/./wiibart">wiibart</a> commented with a picture:</p>
</p></div>
<div class="description">
<p>done !</p>
<div class="comments">
<p><span>19 Minutes 2 Second Ago</span></p>
</div>
</div>
</div>
</li>
</ul>
</blockquote>
<p>Everyone should support the dutch team </p>
<p>Do like me, cut of all your hair!</p>
</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://wiibart.posterous.com/because-we-beat-brazil-ive-just-cut-of-off-al">wiibart&#8217;s posterous</a>  </p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wiibart.com/?feed=rss2&amp;p=201</wfw:commentRss>
		</item>
		<item>
		<title>Welkom quatro bomen in het Grachtenrijk park</title>
		<link>http://www.wiibart.com/?p=200</link>
		<comments>http://www.wiibart.com/?p=200#comments</comments>
		<pubDate>Wed, 07 Apr 2010 21:06:28 +0000</pubDate>
		<dc:creator>wiibart</dc:creator>
		
		<category><![CDATA[Super dad movies]]></category>

		<guid isPermaLink="false">http://www.wiibart.com/?p=200</guid>
		<description><![CDATA[Vanmorgen neergezet, hopenlijk vinden ze hun nieuwe habitat plezierig
           
See and download the full gallery on posterous

  Posted via email   from grachtenrijk&#8217;s posterous  

]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>Vanmorgen neergezet, hopenlijk vinden ze hun nieuwe habitat plezierig
<p><a href='http://posterous.com/getfile/files.posterous.com/grachtenrijk/wWTBNFODb1GY2VjMyB0nYz6IZLN4AyXI3O1S4icckCk4UDoxgPlBRektJgKt/IMG_1006.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/grachtenrijk/Wa0HnQWWWuhocBC7F2v8n06UT8w4yGFqaW9csDcIs2vQUeDPU5z0preIHXWz/IMG_1006.jpg.scaled.500.jpg" width="500" height="375"/></a> <a href='http://posterous.com/getfile/files.posterous.com/grachtenrijk/nFsbobBYJ9RvSjoV2q0hVE6OKd3fXMuaJE1nRr9kse9RiJ6a471IvFzInwDf/IMG_1007.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/grachtenrijk/AsjPwvaY01ZEfoPJAG4SIo4BicIY66JM6cEQ1O5oMp69zCUwi9zdWdSmrRza/IMG_1007.jpg.scaled.500.jpg" width="500" height="375"/></a> <a href='http://posterous.com/getfile/files.posterous.com/grachtenrijk/nSZIlxbz6I8UwJQT4U8ul7bv2tpbRBAn7HAnsiJjlrZnNkqI2lSAfiGl3797/IMG_1008.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/grachtenrijk/wykkXmuGOtIv8lQHP14Q0mrbk1ho5OtRFy29DomY5ZdyKu7BvXQzJWYCkQEf/IMG_1008.jpg.scaled.500.jpg" width="500" height="375"/></a> <a href='http://posterous.com/getfile/files.posterous.com/grachtenrijk/knyyG7ndqia05JSGlTgD89r49nsRtb6qCV6t3EKOHkt0nFXR5uJ3pLe2qAw8/IMG_1009.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/grachtenrijk/XXdmN8PNLjVdD1jpHaedfE6Bzx9UQwolzeGf41pQ3NilmmWwu7Yr2JGkdTQQ/IMG_1009.jpg.scaled.500.jpg" width="500" height="375"/></a> <a href='http://posterous.com/getfile/files.posterous.com/grachtenrijk/ZrgVwEVDK4jNHo7JH8BZ53vh7d4l3t3N1xIeNvt7wdtDVLyLNKGXTnyxjt2a/IMG_1010.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/grachtenrijk/Lf99PgsbWJtsUZFjnFxLbB6GpFyJFbYjo2OfLvUg0fEJoaUaqcewB0ppSf9G/IMG_1010.jpg.scaled.500.jpg" width="500" height="667"/></a> <a href='http://posterous.com/getfile/files.posterous.com/grachtenrijk/jIJPMKySDxohAZgdP277FBwU07zYP9Z4JUSJ1sUdzJF6l2Uxqvbr2xu3u50m/IMG_1011.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/grachtenrijk/qvlUwYqaQCBSLzTo7WA8nkWWSziXFUSCkOEYa5e4oaLnXQ0EMPu49GjkRYwL/IMG_1011.jpg.scaled.500.jpg" width="500" height="667"/></a> <a href='http://posterous.com/getfile/files.posterous.com/grachtenrijk/MbjGeDsZ8cFRB6TNwcydhBxFnkJUBbJpcxAozap44Jg4ndisBj4uYc6yZ01r/IMG_1012.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/grachtenrijk/b36KGyao5NeZFXR3WOiFHuCXIYBtGMtiLiL8Ch5Z1dJgpFTDLQzfotX7B7HU/IMG_1012.jpg.scaled.500.jpg" width="500" height="375"/></a> <a href='http://posterous.com/getfile/files.posterous.com/grachtenrijk/bdVN68N1YNGfYVBoLISrsRohCqXutPXPM0cECqrDR7Tsl4T52v8dl8FFzLkf/IMG_1013.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/grachtenrijk/joehOeNGcFeoDwNeAowntioh7qkiB9iEbvRdZ5IfmsTp3amxzXCOkAy0hWCT/IMG_1013.jpg.scaled.500.jpg" width="500" height="667"/></a> <a href='http://posterous.com/getfile/files.posterous.com/grachtenrijk/1zxWKKNhHphz7A0t9OqhkAp1MdeyLpv1feWhPkaWeXcRnRU3BL0q2fV83SGh/IMG_1014.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/grachtenrijk/xIShIxAXNPYgayuidsUyaEpkowEnhUio7n2uWej0MX59F4pcaMgpiCZMHJ2Z/IMG_1014.jpg.scaled.500.jpg" width="500" height="375"/></a> <a href='http://posterous.com/getfile/files.posterous.com/grachtenrijk/BsJ8aEzwEUKQXfsq8wCNg2ox8OZBzxLOpYEJY3Io1GPPR2wZ5Vbqf0j2YLtL/IMG_1015.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/grachtenrijk/MqUsGeBOOyEMukXUGLPf88OVNJrTOjz2orVVaal8kUYRJF3e8Vqp3rKLYwPw/IMG_1015.jpg.scaled.500.jpg" width="500" height="375"/></a> <a href='http://posterous.com/getfile/files.posterous.com/grachtenrijk/vg5yvN3LmQfJ63E9UvKndfgDCfvBcwb6u9BPxoIpX13Xog9gVIqAmJiP3kjO/IMG_1018.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/grachtenrijk/tK52U7GDklUCKAcrbsHRRfHzpVruvo9m8UQuiOexKKFNBQUxC2Zid4S87gwX/IMG_1018.jpg.scaled.500.jpg" width="500" height="667"/></a> <a href='http://posterous.com/getfile/files.posterous.com/grachtenrijk/SKXvPp6xCzOSaJv59wUu6ib0TIQgofaIz5UYYRJcOrspv8M8GfxvHcfRRkhu/IMG_1019.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/grachtenrijk/tm2lNReXOuZlSnrgqA7FsR9zwSlByg2yPh9ZbepHGEDT6WDDhaWZdcCxyQR0/IMG_1019.jpg.scaled.500.jpg" width="500" height="667"/></a>
<div><a href='http://grachtenrijk.posterous.com/welkom-quatro-bomen-in-het-grachtenrijk-park'>See and download the full gallery on posterous</a></div>
</p>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://grachtenrijk.posterous.com/welkom-quatro-bomen-in-het-grachtenrijk-park">grachtenrijk&#8217;s posterous</a>  </p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wiibart.com/?feed=rss2&amp;p=200</wfw:commentRss>
		</item>
		<item>
		<title>test</title>
		<link>http://www.wiibart.com/?p=199</link>
		<comments>http://www.wiibart.com/?p=199#comments</comments>
		<pubDate>Wed, 07 Apr 2010 20:54:26 +0000</pubDate>
		<dc:creator>wiibart</dc:creator>
		
		<category><![CDATA[Super dad movies]]></category>

		<guid isPermaLink="false">http://www.wiibart.com/?p=199</guid>
		<description><![CDATA[Dit is een test artikel
  Posted via email   from grachtenrijk&#8217;s posterous  

]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>Dit is een test artikel
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://grachtenrijk.posterous.com/test-85446">grachtenrijk&#8217;s posterous</a>  </p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wiibart.com/?feed=rss2&amp;p=199</wfw:commentRss>
		</item>
		<item>
		<title>Finished soldering the Optoma PK102 pico projector power cable</title>
		<link>http://www.wiibart.com/?p=198</link>
		<comments>http://www.wiibart.com/?p=198#comments</comments>
		<pubDate>Wed, 24 Mar 2010 15:41:16 +0000</pubDate>
		<dc:creator>wiibart</dc:creator>
		
		<category><![CDATA[Super dad movies]]></category>

		<guid isPermaLink="false">http://www.wiibart.com/?p=198</guid>
		<description><![CDATA[The tools
 
Connecting the wires
 
The fire
 
Charging!
 
  Posted via email   from wiibart&#8217;s posterous  

]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>The tools
<p><a href='http://posterous.com/getfile/files.posterous.com/wiibart/u8ysEuR0BFbjh5zMZtR3kpSDj4iC8vnWoouzIossem2JPzyxvdV0tK0Ot8iE/foto.jpg'><img src="http://posterous.com/getfile/files.posterous.com/wiibart/toUfdcFd1C2Drs974d0WZWg972kJ54b9V0tt7wvJivKezCkulw1OMfpVf4oJ/foto.jpg.scaled.500.jpg" width="500" height="375"/></a> </p>
<p>Connecting the wires</p>
<p><a href='http://posterous.com/getfile/files.posterous.com/wiibart/hPhP6GdrMuuNEWyWEIVOmdSPLYfKeBpLv8S9tvH8t1Pqe751YKJzB5KtahED/foto_2.jpg'><img src="http://posterous.com/getfile/files.posterous.com/wiibart/ug8RpQN36T0MrU09Jj8tkavrt1LYSZW4doZSgA9eXujdueJe2RHvJodrsAH1/foto_2.jpg.scaled.500.jpg" width="500" height="375"/></a> </p>
<p>The fire</p>
<p><a href='http://posterous.com/getfile/files.posterous.com/wiibart/4QqXqZdxCoEHNh60PfAngYLS5B63D02B9AadJHmhyrMDf7YWrUccEOf8t9S6/foto_3.jpg'><img src="http://posterous.com/getfile/files.posterous.com/wiibart/H55Ll7HyZRs2XtkBXv466KTcxyDevba4d1OFm1Dym2npM5WtFQ7eJkR1yRTz/foto_3.jpg.scaled.500.jpg" width="500" height="375"/></a> </p>
<p>Charging!</p>
<p><a href='http://posterous.com/getfile/files.posterous.com/wiibart/0bBlHIk4Wag4Ad0NeApGB7nALRqa76naPvpkFc8an2vQTm4IoWVE52izzQ7V/foto_4.jpg'><img src="http://posterous.com/getfile/files.posterous.com/wiibart/qfUgaUr9RWc6cHTkFkKh8ESBmLNbP5izGj896hgbt7J3yeWo1wEV5640SSXB/foto_4.jpg.scaled.500.jpg" width="500" height="667"/></a> </p>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://wiibart.posterous.com/finished-soldering-the-optoma-pk102-pico-proj">wiibart&#8217;s posterous</a>  </p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wiibart.com/?feed=rss2&amp;p=198</wfw:commentRss>
		</item>
		<item>
		<title>I have 777 unread messages, isn&#8217;t that wicked? @djsteen</title>
		<link>http://www.wiibart.com/?p=197</link>
		<comments>http://www.wiibart.com/?p=197#comments</comments>
		<pubDate>Sun, 28 Feb 2010 13:53:00 +0000</pubDate>
		<dc:creator>wiibart</dc:creator>
		
		<category><![CDATA[Super dad movies]]></category>

		<guid isPermaLink="false">http://www.wiibart.com/?p=197</guid>
		<description><![CDATA[
 
things are getting out of hand, too many things in this life
  Posted via web   from wiibart&#8217;s posterous  

]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<p><img src="http://posterous.com/getfile/files.posterous.com/temp-2010-02-28/suCvicCBJdwnCdquHGbiDFhrcmhhuEfDcADobBapepkxGhhmpeGGodtIuJtC/Screen_shot_2010-02-28_at_14.32.56.png.scaled500.png" width="357" height="220"/> </p>
<p>things are getting out of hand, too many things in this life
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://wiibart.posterous.com/i-have-777-unread-messages-isnt-that-wicked-d">wiibart&#8217;s posterous</a>  </p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wiibart.com/?feed=rss2&amp;p=197</wfw:commentRss>
		</item>
		<item>
		<title>Mr Bean Transformation</title>
		<link>http://www.wiibart.com/?p=196</link>
		<comments>http://www.wiibart.com/?p=196#comments</comments>
		<pubDate>Thu, 25 Feb 2010 19:59:20 +0000</pubDate>
		<dc:creator>wiibart</dc:creator>
		
		<category><![CDATA[Super dad movies]]></category>

		<guid isPermaLink="false">http://www.wiibart.com/?p=196</guid>
		<description><![CDATA[

  I found this video, and wanted to share it, it&#8217;s pretty cool  
    
via youtube.com


  Posted via web   from wiibart&#8217;s posterous  

]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<p>  I found this video, and wanted to share it, it&#8217;s pretty cool  </p>
<p>    <object height="417" width="500"><param name="movie" value="http://www.youtube.com/v/2gtLgiWr8hE&amp;hl=en&amp;fs=1" /><param name="wmode" value="window" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed allowfullscreen="true" type="application/x-shockwave-flash" src="http://www.youtube.com/v/2gtLgiWr8hE&amp;hl=en&amp;fs=1" allowscriptaccess="always" height="417" wmode="window" width="500" /></embed></param></param></param></param></object>
<div class="posterous_quote_citation">via <a href="http://www.youtube.com/watch?v=2gtLgiWr8hE">youtube.com</a></div>
</p>
</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://wiibart.posterous.com/mr-bean-transformation">wiibart&#8217;s posterous</a>  </p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wiibart.com/?feed=rss2&amp;p=196</wfw:commentRss>
		</item>
		<item>
		<title>Yahoo! Finance - Apple Inc. ($AAPL) :In Bed With Microvision $MVIS</title>
		<link>http://www.wiibart.com/?p=194</link>
		<comments>http://www.wiibart.com/?p=194#comments</comments>
		<pubDate>Tue, 26 Jan 2010 00:24:39 +0000</pubDate>
		<dc:creator>wiibart</dc:creator>
		
		<category><![CDATA[Super dad movies]]></category>

		<guid isPermaLink="false">http://www.wiibart.com/?p=194</guid>
		<description><![CDATA[

via messages.finance.yahoo.com
 

AAPL:In Bed With Microvision  	&#160;&#160;&#160;&#160; 5-Jun-09 02:24 pm&#160;&#160;&#160;&#160;  	  




  		        What I really mean is: “Apple to Embed Microvision PicoP Projector in its iPhones?”
    That is the question and I believe the answer is an astounding YES… and [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<p class="posterous_quote_citation">via <a href="http://messages.finance.yahoo.com/Stocks_(A_to_Z)/Stocks_A/threadview?m=tm&amp;bn=60&amp;tid=2445398&amp;mid=2445398&amp;tof=20&amp;frt=2">messages.finance.yahoo.com</a></p>
<p> <br />
<blockquote class="posterous_long_quote">
<div class="message-box-heading" style=""><span style="float: left; padding: 5px 0px 5px 5px;"><span class="user-data"><b>AAPL:In Bed With Microvision</b></span>  	</span><span class="time no-wrap" style="margin-top: 7px; float: right;"><span style="float: right;"><span style="margin-right: 4px;"><a href="http://messages.finance.yahoo.com/Stocks_%28A_to_Z%29/Stocks_A/threadview?m=tm&amp;bn=60&amp;tof=20&amp;rt=2&amp;frt=2&amp;dir=b&amp;ri=2445398&amp;t=c" title="Read the previous message in the board going backwards in time" class="chrono-prev-link">&nbsp;&nbsp;&nbsp;&nbsp;</a></span><span style="vertical-align: middle;"> 5-Jun-09 02:24 pm</span><span style="margin-left: 0px 2px 0px 4px;"><a href="http://messages.finance.yahoo.com/Stocks_%28A_to_Z%29/Stocks_A/threadview?m=tm&amp;bn=60&amp;tof=20&amp;rt=2&amp;frt=2&amp;dir=f&amp;ri=2445398&amp;t=c" title="Read the next message in the board going forward in time" class="chrono-next-link">&nbsp;&nbsp;&nbsp;&nbsp;</a></span></span>  	</span>  </div>
<div>
<table>
<tr>
<td valign="top" style="padding: 0 5px;">
<div class="user-data" style="">  		        What I really mean is: “Apple to Embed Microvision PicoP Projector in its iPhones?”
<p>    That is the question and I believe the answer is an astounding YES… and that creates a great investment opportunity in the Microvision stock [Nasdaq: MVIS] while it is still cheap.</p>
<p>    First, here’s the link to the article…<br />  <a href="http://www.macnn.com/blogs/2009/06/04/future-iphones-will-gain-pico-projector-videoconferencing-advanced-content-sharing.html" rel="nofollow">http://www.macnn.com/blogs/2009/06/04/fu&#8230;</a></p>
<p>    What it says…</p>
<p>    “On June 4, 2009, the US Patent &amp; Trademark Office published a patent application from Apple that reveals one of the next chapters for Apple’s iPhone. Apple reveals that rich two way communications will be included in a future iteration of the iPhone that will allow users to finally transmit and/or share a selected tune, a video of your own or perhaps one from YouTube, a voicemail, podcast, photo and/or document to each other, all in real-time.”</p>
<p>    “Buried in the finer details of the patent, Apple reveals indirectly that it will include a Pico projector into a future iteration of the iPhone – or perhaps even the iPod touch.   ….”</p>
<p>    Read the full article and click on all the links and you will see the connection between the Apple’s future iPhones and the Microvision PicoP projector embedded in it.   <br />  Microvision: Has Killer App</p>
<p>    When investing in technology, the first rule is, always look for the “killer app”—yes, the software program, piece of hardware, product improvement or whatever—that makes the product stand out.</p>
<p>    Take Internet browsers for example. Now, for a while there it took everyone some time to figure out what exactly an Internet browser was. Today, many of us can’t imagine what life was like before we had Google.   These days, if you need information on any topic under the sun, you simply “Google” it!   What would we ever do without Google? </p>
<p>    When looking to buy the latest tech stock, investors [you and I] need to scrutinize the product and the unique ability it offers to its users.   Google is a great example of a “killer app” that revolutionized the Internet. </p>
<p>    So what’s Microvision’s “killer app”?   </p>
<p>    It’s the “disruptive technology” called: “Laser based PicoP display engine that can bring about massive shifts in technology paradigm and social paradigm.”   And if you can ride this technology/social paradigm for long enough [like Intel did with computing], you have a very high probability of being “ubiquitous” [if not out-right industry standard] in the Pico projection space [like Intel is with its “Intel-inside” for CPUs]. </p>
<p>    Each of the five commercial products that Microvision is offering [or will be offering soon] use at its core the PicoP display engine technology that has the potential to cause massive paradigm shift in its own space of product applications. </p>
<p>    To help you with your DD, here are two links that I’ll share with you:</p>
<p>    First, the Microvision web-site… <br />  <a href="http://microvision.com/" rel="nofollow">http://microvision.com/</a></p>
<p>    Second, a 40 page report “The Next Big Thing” that covers Microvision investment opportunity in great detail …<br />  <a href="http://www.investorsdailyedge.com/21Century/TheNextBigThing.pdf" rel="nofollow">http://www.investorsdailyedge.com/21Cent&#8230;</a></p>
<p>    Microvision has been around since 1993 and has traded as high as $60 in March of 2000.   In the next 3 to 4 years, I expect MVIS stock to trade in the $150 to $200 range… that&#8217;s over 100 bagger in the next few years.</p>
<p>    Here’s the Yahoo chart…<br />  <a href="http://finance.yahoo.com/q/bc?t=my&amp;l=on&amp;z=l&amp;q=l&amp;p=&amp;a=&amp;s=mvis">http://finance.yahoo.com/q/bc?t=my&amp;l=on&amp;&#8230;</a></p>
<p>    You can check me out on my blog…</p>
<p>    <a href="http://www.mirro7.blogspot.com/" rel="nofollow">http://www.mirro7.blogspot.com/</a></p>
<p>    Glotech  	            </p>
</div>
<div class="system" style="padding: 5px 0;">
<p>  <b>  Sentiment :  </b>  Strong Buy</p>
</div>
</td>
</tr>
</table>
</div>
</blockquote>
<div class="posterous_quote_citation">via <a href="http://messages.finance.yahoo.com/Stocks_(A_to_Z)/Stocks_A/threadview?m=tm&amp;bn=60&amp;tid=2445398&amp;mid=2445398&amp;tof=20&amp;frt=2">messages.finance.yahoo.com</a></div>
</p>
</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://wiibart.posterous.com/yahoo-finance-apple-inc-aapl-in-bed-with-micr">wiibart&#8217;s posterous</a>  </p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wiibart.com/?feed=rss2&amp;p=194</wfw:commentRss>
		</item>
		<item>
		<title>I predict the iPhone 4 will come with a front camera and will have video chat #prediction</title>
		<link>http://www.wiibart.com/?p=193</link>
		<comments>http://www.wiibart.com/?p=193#comments</comments>
		<pubDate>Wed, 13 Jan 2010 20:49:50 +0000</pubDate>
		<dc:creator>wiibart</dc:creator>
		
		<category><![CDATA[Super dad movies]]></category>

		<guid isPermaLink="false">http://www.wiibart.com/?p=193</guid>
		<description><![CDATA[

  I&#8217;ve said it last week to my colleagues and now I found this article, read on. 
  I told them that I think that the next iPhone will have a front camera. It&#8217;s not only that I think that this will happen, it&#8217;s also that Apple has to come with a front [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<p>  I&#8217;ve said it last week to my colleagues and now I found this article, read on. </p>
<p>  I told them that I think that the next iPhone will have a front camera. It&#8217;s not only that I think that this will happen, it&#8217;s also that Apple has to come with a front camera IMHO. The extra camera can be used for self portraits, wich is big, and video chat wich is even bigger. This is my prediction. It will have other great new features but this will be the main.</p>
<p>  Another prediction is that I see that laser projection will come to mobile phones. I&#8217;m not seeing this as iPhone 4 feature, they will hold it for the iPhone 5 I think. But it will be super cool. Imagine that you can laser beam that video that you just found. Awesomeness.</p>
<p>  Here is the FastCompany article  </p>
<p> <br />
<blockquote class="posterous_long_quote">
<h2>Surprise Rumor: iPhone Version 4 in April With OLED, Video-Calling   </h2>
<p>  <cite><span class="by">BY</span> <a href="http://www.fastcompany.com/user/148610" title="View user profile.">Kit Eaton</a></cite><span class="timestamp">Tue Jan 12, 2010</span>
</p>
<div class="content">
<p><img class="float-center" src="http://images.fastcompany.com/upload/iphone4g1id4.jpg" border="0" height="281" alt="iPhone" width="500" /></p>
<p>  <iframe src="http://digg.com/tools/diggthis.php?u=http%3A//www.fastcompany.com/blog/kit-eaton/technomix/shock-rumor-iphone-version-4-april-oled-video-calling&amp;s=compact&amp;t=Surprise%20Rumor%3A%20iPhone%20Version%204%20in%20April%20With%20OLED%2C%20Video-Calling%20%20%7C%20Technomix%20%7C%20Fast%20Company" height="18" frameborder="0" width="120" scrolling="no"></iframe>This is hot stuff, so it needs to be taken with a healthy dose of skepticism, but the Korea Times is reporting&#8211;with extreme confidence&#8211;that the fourth gen iPhone will be on sale in April, with a pile of new features.</p>
<p>Of course we know Apple&#8217;s been working on the next-gen iPhone for ages due to natural product development cycles, and <a href="http://iphonefreakz.com/2009/10/19/iphone-4g-being-tested-by-verizon/">clues</a> in the form of iPhone v4 browser identity codes have even turned up in some Web site logs. But apart from lots of speculation, we&#8217;ve heard nothing concrete&#8211;as we&#8217;d actually expect from Apple&#8217;s rigid security practices.</p>
<p>And now here&#8217;s the <em><a href="http://www.koreatimes.co.kr/www/news/tech/2010/01/133_58873.html">Korea Times</a></em> mentioning apparent talks between Apple and local cell-phone provider and exclusive Apple vendor, KT. &#8220;Still there are some 3G iPhone stocks. But KT and Apple have reached a broad consensus to introduce the advance models as early as possible&#8221; are the words attributed to an anonymous KT executive. </p>
<p>That&#8217;s possibly believable, even if talking about this stuff is likely to be breaching many an Apple NDA. And yet it tells us nothing about the new phone itself. But hang on: The same exec also told the newspaper that there&#8217;ll be OLED screens, live video chat powers (implying a long-awaited front Webcam), and maybe even a removable battery. There was also talk about dual core processors, better graphics chips for higher resolutions, and better still imagery from the rear-facing cam. And it&#8217;s all due April at the earliest&#8211;as a test launch to select users, and to the public in June.</p>
<p>And though some of this is highly plausible, and even agrees with some rumors about <a href="http://www.fastcompany.com/blog/kit-eaton/technomix/desirable-rumor-next-iphone-have-oled-screen">OLED</a> we&#8217;ve heard before, and recent mention of Apple buying millions of 5-megapixel cameras and <a href="http://www.iphoneheat.com/2010/01/apple-to-feature-led-camera-flash-in-iphone-4g/">Philips LED flash</a> for better iPhone imagery, it all sounds too good to be true. Some of this is bound to be in the next iPhone&#8211;but all of it? That goes against Apple&#8217;s careful incremental update strategy for the device so far. And though moving the iPhone forward to an April launch from its more normal late-Spring cycle would certainly help Apple steal some of the thunder from the Nexus One and other upcoming Android phones, isn&#8217;t it a bit close to the purported launch date of the iSlate?</p>
</div>
</blockquote>
<div class="posterous_quote_citation">via <a href="http://www.fastcompany.com/blog/kit-eaton/technomix/shock-rumor-iphone-version-4-april-oled-video-calling">fastcompany.com</a></div>
</p>
</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://wiibart.posterous.com/i-predict-the-iphone-4-will-come-with-a-front">wiibart&#8217;s posterous</a>  </p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wiibart.com/?feed=rss2&amp;p=193</wfw:commentRss>
		</item>
		<item>
		<title>Skating in Grachtenrijk with minimal techno on</title>
		<link>http://www.wiibart.com/?p=192</link>
		<comments>http://www.wiibart.com/?p=192#comments</comments>
		<pubDate>Sun, 10 Jan 2010 10:46:51 +0000</pubDate>
		<dc:creator>wiibart</dc:creator>
		
		<category><![CDATA[Super dad movies]]></category>

		<guid isPermaLink="false">http://www.wiibart.com/?p=192</guid>
		<description><![CDATA[

It&#8217;s saturday and it&#8217;s cold. All our canals here in Grachtenrijk are frozen. It&#8217;s extra cold because there is a fierce wind. Anyway it&#8217;s a nice day to test my ice hockey skates that I got for my birthday on the canals of our neighbourhood, Grachtenrijk.

  The audio track you hear in this video [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<p>It&#8217;s saturday and it&#8217;s cold. All our canals here in Grachtenrijk are frozen. It&#8217;s extra cold because there is a fierce wind. Anyway it&#8217;s a nice day to test my ice hockey skates that I got for my birthday on the canals of our neighbourhood, Grachtenrijk.
</p>
<p>  The audio track you hear in this video is taken from the <a href="http://mp3.juno.co.uk/podcasts/junominimal.xml">Juno Minimal Podcast episode 8</a><br />  I used track 1 wich is:  Daniel Stefanik: Reactivity 1 - Statik Entertainment Germany  </p>
<p>      <object height="417" width="500"><param name="movie" value="http://www.youtube.com/v/0Zw6GzGVOPc&amp;hl=en&amp;fs=1" /><param name="wmode" value="window" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed allowfullscreen="true" type="application/x-shockwave-flash" src="http://www.youtube.com/v/0Zw6GzGVOPc&amp;hl=en&amp;fs=1" allowscriptaccess="always" height="417" wmode="window" width="500" /></embed></param></param></param></param></object>
</p>
<div class="posterous_quote_citation">via <a href="http://www.youtube.com/watch?v=0Zw6GzGVOPc&amp;feature=youtube_gdata">youtube.com</a></div>
<h3>Here the same video on Viddler.com</h3>
<p>  <object height="417" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="500"><param name="movie" value="http://www.viddler.com/player/8711ea3d/" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed allowfullscreen="true" type="application/x-shockwave-flash" src="http://www.viddler.com/player/8711ea3d/" allowscriptaccess="always" height="417" width="500" /></embed></param></param></param></object>
<div class="posterous_quote_citation">via <a href="http://www.viddler.com/explore/wiibart/videos/91/">viddler.com</a></div>
</p>
</div>
<p style="font-size: 10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://wiibart.posterous.com/skating-in-grachtenrijk-with-minimal-techno-o">wiibart&#8217;s posterous</a>  </p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wiibart.com/?feed=rss2&amp;p=192</wfw:commentRss>
		</item>
	</channel>
</rss>
