<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>eisber's blog</title>
	<atom:link href="http://www.eisber.net/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.eisber.net/blog</link>
	<description>my personal-tech-project's journey log</description>
	<lastBuildDate>Fri, 27 May 2011 06:58:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Panasonic HDC-SD909 to iMovie to iDVD in reasonable quality</title>
		<link>http://www.eisber.net/blog/archives/170</link>
		<comments>http://www.eisber.net/blog/archives/170#comments</comments>
		<pubDate>Fri, 27 May 2011 06:52:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[imovie]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[SD909]]></category>

		<guid isPermaLink="false">http://www.eisber.net/blog/?p=170</guid>
		<description><![CDATA[I had a lot of trouble of getting my recording properly edited and burned to DVD (SD) without loosing image quality. Camcorder: Panasonic HDC-SD909 (or similar HDC SD707, HS900, SD800,...) Quality Setting: 1080p50 (1920x1080 50 fps progressive), Dolby Digital 5.1 Install ClipWrap to get a version of ffmpeg. Install Perian 1.2.1 (NOT 1.2.2 or the [...]]]></description>
			<content:encoded><![CDATA[<p>I had a lot of trouble of getting my recording properly edited and burned to DVD (SD) without loosing image quality.</p>
<p>Camcorder: Panasonic <a href="http://www.panasonic.de/html/de_DE/Produkte/Camcorder+%26+HD+Mobilkameras/HD+Camcorder+mit+3D+Option/HDC-SD909/%C3%9Cbersicht/6885740/index.html">HDC-SD909</a> (or similar HDC SD707, HS900, SD800,...)<br />
Quality Setting: 1080p50 (1920x1080 50 fps progressive), Dolby Digital 5.1</p>
<blockquote><p>
Install <a href="http://clipgrab.de/download_en.html">ClipWrap</a> to get a version of ffmpeg.<br />
Install <a href="http://perian.cachefly.net/Perian_1.2.1.dmg">Perian 1.2.1</a> (<strong>NOT</strong> 1.2.2 or the audio is distorted)
</p></blockquote>
<p>Convert files to m4v using <a href="https://public.me.com/catservant">Alan Somers Automater Script Rewrap2M4V</a>. This will change the container to m4v<br />
Import the files into iMovie (after some research I could not find a way of organizing the files myselfs. You probably have to let iMovie manage them, but it creates nice folders that can be backup'd using rsync).</p>
<blockquote><p>Create your movie!</p></blockquote>
<p>Export using "Export using QuickTime" in HD (720p or similar) - if you use "Share with iDVD" the image quality sucks (is terrible).<br />
Open iDVD<br />
Goto preferences and select "Best performance" for encoding settings (Professional quality will compress more... wtf?)<br />
Create a new project<br />
Drag&Drop the previously exported movie into iDVD - behold even chapters are there!<br />
Burn to DVD</p>
<p>Enjoy!</p>
<p>Things I looked into:</p>
<ul>
<li>Final Cut Pro - way to complicated for what I want to do with videos. iMovies just does it all without manual.</li>
<li>Compressor - a lot more option for encoding, but I lost the chapters I created in iMovie.</li>
<li>DVD Studio Pro - for my basic needs iDVD fits better because I'd like to have a nice standard theme AND that doesn't look as crappy as the once from Toast.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.eisber.net/blog/archives/170/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook 2010 Duplicate Item Remover (Free VBA)</title>
		<link>http://www.eisber.net/blog/archives/164</link>
		<comments>http://www.eisber.net/blog/archives/164#comments</comments>
		<pubDate>Sun, 02 Jan 2011 21:42:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">http://www.eisber.net/blog/?p=164</guid>
		<description><![CDATA[For those that don't want to pay 20$ for removing duplicate mail items. Create a new macro and add this code: Dim t As Items Dim i As Integer Dim arr As Collection Dim f As folder Dim parent As folder Dim target As folder Dim miLast As MailItem Dim mi As MailItem Set parent [...]]]></description>
			<content:encoded><![CDATA[<p>For those that don't want to pay 20$ for removing duplicate mail items.</p>
<p>Create a new macro and add this code:</p>
<p><code><br />
Dim t As Items<br />
Dim i As Integer<br />
Dim arr As Collection</p>
<p>Dim f As folder<br />
Dim parent As folder<br />
Dim target As folder</p>
<p>Dim miLast As MailItem<br />
Dim mi As MailItem</p>
<p>Set parent = Application.GetNamespace("MAPI").PickFolder<br />
Set target = Application.GetNamespace("MAPI").PickFolder</p>
<p>For Each f In parent.Folders<br />
    Set t = f.Items<br />
    t.Sort "[Subject]"</p>
<p>    i = 1<br />
    Set miLast = t(i)</p>
<p>    Set arr = New Collection</p>
<p>    While i < t.count<br />
        i = i + 1</p>
<p>        If TypeName(t(i)) = "MailItem" Then<br />
            Set mi = t(i)<br />
            If miLast.Subject = mi.Subject And miLast.Body = mi.Body And miLast.ReceivedTime = mi.ReceivedTime Then<br />
                arr.Add mi<br />
            Else<br />
                Set miLast = mi<br />
            End If<br />
        End If<br />
     Wend</p>
<p>     For Each mi In arr<br />
        mi.Move target<br />
     Next mi<br />
Next f<br />
</code></p>
<p>On my 1.4gHz Intel ULV for 7000 items it took approx. 5min.</p>
<p>The code asks for the folder to scan and then the target folder where the items should be moved to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eisber.net/blog/archives/164/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia Mail For Exchange broken after Exchange 2010 SP1 Upgrade</title>
		<link>http://www.eisber.net/blog/archives/162</link>
		<comments>http://www.eisber.net/blog/archives/162#comments</comments>
		<pubDate>Thu, 23 Sep 2010 17:34:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">http://www.eisber.net/blog/?p=162</guid>
		<description><![CDATA[After upgrading Exchange 2010 to SP1 my mobile phones (Nokia E71 and another N-Series) didn't have any mails/contacts/... After deleting the Mobile Phone Partnership in Exchange Management Console it sync'd again.]]></description>
			<content:encoded><![CDATA[<p>After upgrading Exchange 2010 to SP1 my mobile phones (Nokia E71 and another N-Series) didn't have any mails/contacts/...</p>
<p>After deleting the Mobile Phone Partnership in Exchange Management Console it sync'd again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eisber.net/blog/archives/162/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Deep Zoom Silverlight Howto</title>
		<link>http://www.eisber.net/blog/archives/158</link>
		<comments>http://www.eisber.net/blog/archives/158#comments</comments>
		<pubDate>Tue, 21 Sep 2010 22:14:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[siliverlight]]></category>
		<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://www.eisber.net/blog/?p=158</guid>
		<description><![CDATA[DZConvert.exe \* /s DZCollection.exe .dzc /v Generate .cxml using .dzc as input generate the correct ids For Silverlight the .dzc and .cxml need to be encoded using UTF8. http://www.getpivot.com/developer-info/xml-schema.aspx]]></description>
			<content:encoded><![CDATA[<p>DZConvert.exe
<path-to-source-images>\* <output-path> /s</p>
<p>DZCollection.exe <output-path> <output-collection>.dzc /v</p>
<p>Generate .cxml using .dzc as input generate the correct ids</p>
<p>For Silverlight the .dzc and .cxml need to be encoded using UTF8.</p>
<p>http://www.getpivot.com/developer-info/xml-schema.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eisber.net/blog/archives/158/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compare file counts per directory in PowerShell</title>
		<link>http://www.eisber.net/blog/archives/156</link>
		<comments>http://www.eisber.net/blog/archives/156#comments</comments>
		<pubDate>Mon, 31 May 2010 19:44:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[sysop]]></category>

		<guid isPermaLink="false">http://www.eisber.net/blog/?p=156</guid>
		<description><![CDATA[dir&#124;?{$_.psiscontainer}&#124; %{"{1,20} {0,4} {2,4}" -F (get-childitem -rec $_).count,$_.name,(get-childitem -rec ("Z:\somedir\" + $_.name)).count }]]></description>
			<content:encoded><![CDATA[<p>dir|?{$_.psiscontainer}| %{"{1,20} {0,4} {2,4}" -F (get-childitem -rec $_).count,$_.name,(get-childitem -rec ("Z:\somedir\" + $_.name)).count }</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eisber.net/blog/archives/156/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lotus Notes (Domino) to Exchange 2010</title>
		<link>http://www.eisber.net/blog/archives/154</link>
		<comments>http://www.eisber.net/blog/archives/154#comments</comments>
		<pubDate>Fri, 14 May 2010 18:35:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">http://www.eisber.net/blog/?p=154</guid>
		<description><![CDATA[we more or less successfully migrated lotus notes (domino) to exchange 2010. what you need: exchange 2007 server lotus notes client + account to access all mailboxes to be migrated installed on exchange 2007 server exchange 2010 server Microsoft Migration Lotus Notes Transport Tool (this was all done in a virtual environment (hyper-v) and lotus [...]]]></description>
			<content:encoded><![CDATA[<p>we more or less successfully migrated lotus notes (domino) to exchange 2010.<br />
what you need:</p>
<ul>
<li>exchange 2007 server</li>
<li>lotus notes client + account to access all mailboxes to be migrated installed on exchange 2007 server</li>
<li>exchange 2010 server</li>
<li>Microsoft Migration Lotus Notes Transport Tool</li>
</ul>
<p>(this was all done in a virtual environment (hyper-v) and lotus notes was on linux server)</p>
<p>First of all you <b>cannot</b> migrate directly from notes to exchange 2010. The mailboxes need to be migrated to 2007 first. Once a mailbox is migrated, you can run the migration tool multiple times and it will nicely check for dups. Just make sure your users don't delete/move mails, as they will be re-created by the migration process.<br />
Also make sure you have enough space on the exchange 2007 server, because the mailbox size is almost double (compared to lotus notes) and notes transport tool writes some hugh log files.<br />
Our mailboxes ranged from 6mb to 8gb.<br />
Migration is cpu intense and log files need some preprocessing before one can grep (mail me if you need to the tool - essentially I concatenate lines based on the beginning and make sure to handle utf16).<br />
Once the mailboxes are moved from 2007 to 2010, the migration tool cannot migrate items anymore.<br />
We migrated 99% of the emails with some errors (e.g. messed up sent times (=3 year old email end up with sent date of now), sender names wrongly mangled, calendar items timeshifted,...).<br />
We couldn't find out what we should change in the source, so we ended up letting the users manually check and migrate the user via copy&paste.<br />
We also successfully managed to migrate an "archive" database, by copying and mounting it on the server and changing the template.<br />
The move from exchange 2007 to 2010 was completely painless - each mailbox was migrated within 1-2 hours.<br />
Depending on the lotus notes permissions read/unread item status was ignored (I think write access is required to migrate the read/unread item status).<br />
The users were mapped manually in the Transporter Tool (all the Active Directory accounts already existed). I let the Transporter Tool create the exchange mailboxes (I had some issues otherwise).<br />
Contacts were migrated by each user using CSV - they tried multiple formats/options and if alot of fields were used in Lotus there were always some fields missing.</p>
<p>Why we migrated (incomplete and mostly my personal view): Outlook as client, web access, iPhone sync, failover via database availability groups, better spam filtering (we're down to 1 spam per week compared to 10 per day), outlook anywhere (=sync of outlook via https)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eisber.net/blog/archives/154/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORF 1/2 HD (DVB-S2) in Windows 7 Media Center *working*</title>
		<link>http://www.eisber.net/blog/archives/147</link>
		<comments>http://www.eisber.net/blog/archives/147#comments</comments>
		<pubDate>Mon, 22 Feb 2010 17:58:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://www.eisber.net/blog/?p=147</guid>
		<description><![CDATA[I finally got a setup working! Hardware: Core i7 920, ATI 4300, TechniSat Skystar HD2 PCI + TechniSat CI-Slot SkyStar HD2, XBox 360 The Media Center PC is setup using Windows 7, DVBLink. The drivers for the TechniSat cards need to be installed manually, then continue with DVBLink (make sure you follow the setup). DVBLink [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got a setup working!</p>
<p>Hardware: Core i7 920, ATI 4300, TechniSat Skystar HD2 PCI + TechniSat CI-Slot SkyStar HD2, XBox 360</p>
<p>The Media Center PC is setup using Windows 7, <a href="http://www.dvblogic.com">DVBLink</a>. The drivers for the TechniSat cards need to be installed manually, then continue with DVBLink (make sure you follow the setup).<br />
DVBLink found ORF 1/2 HD straight away. Channels are selected in DVBLink and configured into MC7.<br />
The XBox 360 is added as an extender. HD live tv is working nicely, recorded videos have short stutters every 15-30sec (I already tried to disable automatic pulldown in ATI Catalyst... I'm not 100% sure if it helped). XBox is connected via 100mbit cable. Makesure it is in the same IP subnet.<br />
Using <a href="http://www.divx.com/downloads/divx">divx 7</a> helped me to get mkv (matroska) files streaming to the XBox, divx avis work OOB.<br />
Music and pictures are stored on another machine. I had to re-add the folders on the XBox again (including username/password) - even though it is already listed and working on MC7.<br />
To watch HD videos on the XBox I was prompted to download the "optional media update". I received the error 80072f76. After the 6th try I was finally able to get it...<br />
About the noise: I have to admit that the fan is pretty noisy... when watching tv one won't probably notice it. I even think it's louder than a projecter - but this is really subjective.<br />
The XBox nicely starts the media center pc if it sleeps. Media Center on XBox can be configured to startup automatically.<br />
The startup time of the XBox somehow lowers the WAF - don't think about using the controller as a replacement for the remote. The controller has all functions but not very intuitive.<br />
Channel switching time is not super fast, but acceptable.</p>
<p>I hope somebody will find this helpful, since it took me some months to get a working setup. </p>
<p><strong>Update</strong> using the controller for Media Center is actually a bad idea as the controller goes to sleep after while and takes quite long to wake up. I now use a Harmony 515 to control it - I added a "Windows Media Center PC" although it's not in the room (just to get the proper commands). I still had to customize the activity to turn on the XBox 360.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eisber.net/blog/archives/147/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Replace symlinks with source</title>
		<link>http://www.eisber.net/blog/archives/144</link>
		<comments>http://www.eisber.net/blog/archives/144#comments</comments>
		<pubDate>Tue, 16 Feb 2010 21:44:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.eisber.net/blog/archives/144</guid>
		<description><![CDATA[find . -type l -exec stat {} --format=%N \; &#124; /root/move_symlink.pl &#124; sh find . -type f -exec chmod 644 {} \; find . -type f -exec chown apache:apache {} \; move_symlink.pl #!/usr/bin/perl while() { /^.(.*?)' -> .(.*)'$/; print "mv '$2' '$1'\n"; }]]></description>
			<content:encoded><![CDATA[<p><code><br />
find . -type l -exec stat {} --format=%N \; | /root/move_symlink.pl | sh<br />
find . -type f -exec chmod 644 {} \;<br />
find . -type f -exec chown apache:apache {} \;<br />
</code></p>
<p> move_symlink.pl<br />
<code><br />
#!/usr/bin/perl<br />
while(<>) {<br />
        /^.(.*?)' -> .(.*)'$/;<br />
        print "mv '$2' '$1'\n";<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eisber.net/blog/archives/144/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nagios, speedfan und sfsnmp</title>
		<link>http://www.eisber.net/blog/archives/143</link>
		<comments>http://www.eisber.net/blog/archives/143#comments</comments>
		<pubDate>Sun, 07 Feb 2010 17:54:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hardware]]></category>

		<guid isPermaLink="false">http://www.eisber.net/blog/archives/143</guid>
		<description><![CDATA[tried to get speedfan, sfsnmp and nagios to work together. no success]]></description>
			<content:encoded><![CDATA[<p>tried to get speedfan, sfsnmp and nagios to work together. no success <img src='http://www.eisber.net/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.eisber.net/blog/archives/143/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ping working, http not?!</title>
		<link>http://www.eisber.net/blog/archives/141</link>
		<comments>http://www.eisber.net/blog/archives/141#comments</comments>
		<pubDate>Sat, 23 Jan 2010 22:41:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[isa]]></category>

		<guid isPermaLink="false">http://www.eisber.net/blog/?p=141</guid>
		<description><![CDATA[problem: ping to a host on the other side of a vpn works, http not. environment:TMG on both sides, both have multiple external IPs and source side has them distributed over multiple network cards. solution: Although I disabled web proxying and the network relation between the two vpn sites is routing, TMG still tries to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>problem:</strong> ping to a host on the other side of a vpn works, http not.</p>
<p><strong>environment:</strong>TMG on both sides, both have multiple external IPs and source side has them distributed over multiple network cards.</p>
<p><strong>solution:</strong> Although I disabled web proxying and the network relation between the two vpn sites is routing, TMG still tries to access the target web server using one of it's external IPs. I tested pinging a host on the other side using various source IPs from the source TMG, I figured that only certain IPs work.<br />
I finally configured all IPs onto one nic and it started to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eisber.net/blog/archives/141/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

