<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>ocroquette&#039;s technical Blog</title>
	<atom:link href="http://ocroquette.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ocroquette.wordpress.com</link>
	<description>TTT (tips, tricks, tools)</description>
	<lastBuildDate>Mon, 09 Jan 2012 19:45:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ocroquette.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>ocroquette&#039;s technical Blog</title>
		<link>http://ocroquette.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ocroquette.wordpress.com/osd.xml" title="ocroquette&#039;s technical Blog" />
	<atom:link rel='hub' href='http://ocroquette.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Get list of &#8220;smtp&#8221; email addresses from Outlook messages</title>
		<link>http://ocroquette.wordpress.com/2012/01/09/get-list-of-smtp-email-addresses-from-outlook-messages/</link>
		<comments>http://ocroquette.wordpress.com/2012/01/09/get-list-of-smtp-email-addresses-from-outlook-messages/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 19:45:17 +0000</pubDate>
		<dc:creator>ocroquette2</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ocroquette.wordpress.com/?p=173</guid>
		<description><![CDATA[I had recently to export the email addresses contained in the BCC: field of an Outlook message. It turned out it&#8217;s not that easy. It achieved it with the following of Visual Basic, which will let you pick a folder and dump all recipients for all messages in this folder. I wanted to do it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=173&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had recently to export the email addresses contained in the BCC: field of an Outlook message. It turned out it&#8217;s not that easy. It achieved it with the following of Visual Basic, which will let you pick a folder and dump all recipients for all messages in this folder. I wanted to do it for a specific message and copy the result to the clipboard, but neither of this looks easy in Outlook. I spent already too much time on this so I give up, this version is good enough for me.<br />
<code><br />
Sub ExtractRecipientsFromEmail()<br />
Dim OlApp As Outlook.Application<br />
Dim MailObject As Object<br />
Dim RecipientObject As Object<br />
Dim Email As String<br />
Dim NS As NameSpace<br />
Dim Folder As MAPIFolder<br />
Set OlApp = CreateObject("Outlook.Application")<br />
Set NS = ThisOutlookSession.Session<br />
Set Folder = NS.PickFolder<br />
For Each MailObject In Folder.Items<br />
If MailObject.Class = olMail Then<br />
For Each RecipientObject In MailObject.Recipients</p>
<p>       Dim smtp As String<br />
       ' Debug.Print "ad=", RecipientObject.Address</p>
<p>       Select Case RecipientObject.AddressEntry.AddressEntryUserType<br />
           Case OlAddressEntryUserType.olExchangeUserAddressEntry<br />
               Set oEU = RecipientObject.AddressEntry.GetExchangeUser<br />
               If Not (oEU Is Nothing) Then<br />
                   smtp = oEU.PrimarySmtpAddress<br />
               End If<br />
           Case OlAddressEntryUserType.olExchangeDistributionListAddressEntry<br />
               Set oEDL = RecipientObject.AddressEntry.GetExchangeDistributionList<br />
               If Not (oEDL Is Nothing) Then<br />
                   smtp = oEDL.PrimarySmtpAddress<br />
               End If<br />
       End Select</p>
<p>       Debug.Print smtp</p>
<p>Next<br />
End If<br />
Next<br />
Set OlApp = Nothing<br />
Set MailObject = Nothing<br />
Set RecipientObject = Nothing<br />
End Sub<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ocroquette.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ocroquette.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ocroquette.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ocroquette.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ocroquette.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ocroquette.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ocroquette.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ocroquette.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ocroquette.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ocroquette.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ocroquette.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ocroquette.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ocroquette.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ocroquette.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=173&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ocroquette.wordpress.com/2012/01/09/get-list-of-smtp-email-addresses-from-outlook-messages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9dd67f0a389b8f4f8819749c54a0fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ocroquette2</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing debian on a Popcorn Hour A-210</title>
		<link>http://ocroquette.wordpress.com/2011/10/30/install-debian-on-a-popcorn-hour/</link>
		<comments>http://ocroquette.wordpress.com/2011/10/30/install-debian-on-a-popcorn-hour/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 11:44:42 +0000</pubDate>
		<dc:creator>ocroquette2</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[debian nmt]]></category>

		<guid isPermaLink="false">http://ocroquette.wordpress.com/?p=158</guid>
		<description><![CDATA[Instructions based on: http://www.networkedmediatank.com/showthread.php?tid=16317 On an existing Debian or Ubuntu system: apt-get install debootstrap debootstrap --arch mipsel --foreign stable debian tar -cvzf debian.tgz debian mount --bind /proc/ debian/proc/ mount --bind /dev/ debian/dev/ Copy the TGZ to your device, log in with telnet on your NMT, and run: tar -xvzf debian.tgz cd debian usr/sbin/chroot . /bin/bash [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=158&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Instructions based on: http://www.networkedmediatank.com/showthread.php?tid=16317</p>
<p>On an existing Debian or Ubuntu system:<br />
<code><br />
apt-get install debootstrap<br />
debootstrap --arch mipsel --foreign stable debian<br />
tar -cvzf debian.tgz debian<br />
mount --bind /proc/ debian/proc/<br />
mount --bind /dev/ debian/dev/<br />
</code><br />
Copy the TGZ to your device, log in with telnet on your NMT, and run:<br />
<code><br />
tar -xvzf debian.tgz<br />
cd debian<br />
usr/sbin/chroot . /bin/bash<br />
export PATH=$PATH:/usr/bin:/usr/sbin<br />
debootstrap/debootstrap --second-stage<br />
# Verify the DNS settings, in case you used different network configurations on the computer and the Popcorn Hour:<br />
cat /etc/resolv.conf<br />
exit<br />
</code><br />
Now you should have a Debian system running. Configure the package source:<br />
<code><br />
usr/sbin/chroot . /bin/bash<br />
echo "deb http://ftp.de.debian.org/debian/ squeeze main " &gt;&gt; /etc/apt/sources.list<br />
echo "deb http://security.debian.org/ squeeze/updates main  " &gt;&gt; /etc/apt/sources.list<br />
</code><br />
Note: check out the following generator for sources.list : http://debgen.simplylinux.ch/generate.php</p>
<p>Update the package list and install the required packages:<br />
<code><br />
apt-get update<br />
# Standard stuff:<br />
apt-get install vim less sysklogd sudo lsof nmap wget curl psmisc<br />
# Development:<br />
apt-get install gcc autoconf automake subversion git uuid-dev uuid-runtime make</p>
<p></code></p>
<p>Create a user (working as root constantly is dangerous):<br />
<code><br />
adduser user<br />
</code></p>
<p>Install SSH:<br />
<code><br />
apt-get install openssh-server openssh-client<br />
/etc/init.d/ssh start<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ocroquette.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ocroquette.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ocroquette.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ocroquette.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ocroquette.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ocroquette.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ocroquette.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ocroquette.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ocroquette.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ocroquette.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ocroquette.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ocroquette.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ocroquette.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ocroquette.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=158&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ocroquette.wordpress.com/2011/10/30/install-debian-on-a-popcorn-hour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9dd67f0a389b8f4f8819749c54a0fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ocroquette2</media:title>
		</media:content>
	</item>
		<item>
		<title>Reencode videos to watch them on an Android device with ffmpeg</title>
		<link>http://ocroquette.wordpress.com/2011/09/03/reencode-videos-to-watch-them-on-an-android-device-with-ffmpeg/</link>
		<comments>http://ocroquette.wordpress.com/2011/09/03/reencode-videos-to-watch-them-on-an-android-device-with-ffmpeg/#comments</comments>
		<pubDate>Sat, 03 Sep 2011 06:46:54 +0000</pubDate>
		<dc:creator>ocroquette2</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://ocroquette.wordpress.com/?p=151</guid>
		<description><![CDATA[Here is the script I use to convert videos to watch them on a Samsung Galaxy Ace. You can probably use it for any Android device, just modify the maximum resolution. #!/usr/bin/perl use strict; use Data::Dumper; use Getopt::Long; sub getFileResolution { my ($file) = @_; my $stdout = `ffmpeg -i "$file" 2&#62;&#38;1`; # Stream #0.0: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=151&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is the script I use to convert videos to watch them on a Samsung Galaxy Ace. You can probably use it for any Android device, just modify the maximum resolution.</p>
<p><code><br />
#!/usr/bin/perl</p>
<p>use strict;<br />
use Data::Dumper;<br />
use Getopt::Long;</p>
<p>sub getFileResolution {<br />
    my ($file) = @_;<br />
    my $stdout = `ffmpeg -i "$file" 2&gt;&amp;1`;<br />
    # Stream #0.0: Video: mpeg4, yuv420p, 720x528 [PAR 1:1 DAR 15:11], 25 tbr, 25 tbn, 25 tbc<br />
    $stdout =~ /Stream.*Video:.*?([\d]+)x([\d]+)/;<br />
    my ($w, $h) = ($1, $2);<br />
    die "Failed to get original resolution of \"$file\" ($w,$h)" if ! ( $w &amp;&amp; $h);<br />
    return ($w, $h);<br />
}</p>
<p>sub getNewResolution {<br />
    my ($width, $height) = my ($newwidth, $newheight) = @_;<br />
    my $ratio = $width * 1.0 / $height;<br />
    my $maxwidth  = 480;<br />
    my $maxheight = 320;<br />
    if ( $newheight &gt; $maxheight ) {<br />
        $newheight = $maxheight;<br />
        $newwidth = $ratio * $newheight;<br />
    }<br />
    if ( $newwidth &gt; $maxwidth ) {<br />
        $newwidth = $maxwidth;<br />
        $newheight = $newwidth / $ratio;<br />
    }<br />
    return (int($newwidth), int($newheight));<br />
}</p>
<p>sub getNewName {<br />
    my ($file) = @_;<br />
    $file =~ /(.*)\./;<br />
    my $basename = $1;</p>
<p>    my $newname = $basename . ".mp4";<br />
    return $newname if $newname ne $file;</p>
<p>    return $basename . "-converted.mp4";<br />
}</p>
<p>sub printUsage {<br />
    print STDERR "Usage: $0 --input INVIDEO [--output OUTVIDEO] [--volume N]\n";<br />
    print STDERR "   Converts the input video into a MP4 video readable on mobile devices\n";<br />
    print STDERR "\n";<br />
    print STDERR "   --input    : the input video file\n";<br />
    print STDERR "   --output   : the input video file\n";<br />
    print STDERR "   --volume N : increase or decrease volume ; nominal volume is N=256\n";<br />
    print STDERR "\n";<br />
    print STDERR "Example:\n";<br />
    print STDERR "   $0 --input file.avi --output file.mp4 --vol 512\n";<br />
}</p>
<p>my ($src, $dst, $volume);<br />
my $gocode = GetOptions (<br />
    "input=s" =&gt; \$src,<br />
    "output=s" =&gt; \$dst,<br />
    "volume=i" =&gt; \$volume<br />
);</p>
<p>if ( ! $gocode || scalar(@ARGV) ) {<br />
    printUsage();<br />
    exit(1);<br />
}</p>
<p>my ($w, $h) = getNewResolution(getFileResolution($src));<br />
$dst = getNewName($src) if ! $dst;</p>
<p>my @args = ("ffmpeg");<br />
push @args, "-i", $src;<br />
push @args, "-s", "${w}x${h}";<br />
push @args, "-b", "600k";<br />
push @args, "-ab", "96k";<br />
push @args, $dst;<br />
system(@args);</p>
<p></code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ocroquette.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ocroquette.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ocroquette.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ocroquette.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ocroquette.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ocroquette.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ocroquette.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ocroquette.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ocroquette.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ocroquette.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ocroquette.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ocroquette.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ocroquette.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ocroquette.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=151&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ocroquette.wordpress.com/2011/09/03/reencode-videos-to-watch-them-on-an-android-device-with-ffmpeg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9dd67f0a389b8f4f8819749c54a0fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ocroquette2</media:title>
		</media:content>
	</item>
		<item>
		<title>git: failed to lock</title>
		<link>http://ocroquette.wordpress.com/2011/07/10/git-failed-to-lock/</link>
		<comments>http://ocroquette.wordpress.com/2011/07/10/git-failed-to-lock/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 12:47:02 +0000</pubDate>
		<dc:creator>ocroquette2</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ocroquette.wordpress.com/?p=147</guid>
		<description><![CDATA[Recently I had this error message &#8220;failed to lock&#8221; while trying to push some changes to a remote Git repository. After some time Googling with no success and then troubleshooting, I realised I was trying to push to branch called &#8220;a/b&#8221; while the branch &#8220;a&#8221; existed. This is obviously not supported in Git, since having [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=147&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I had this error message &#8220;failed to lock&#8221; while trying to push some changes to a remote Git repository.</p>
<p>After some time Googling with no success and then troubleshooting, I realised I was trying to push to branch called &#8220;a/b&#8221; while the branch &#8220;a&#8221; existed. This is obviously not supported in Git, since having a branch &#8220;a&#8221; requires &#8220;.git/refs/heads/a&#8221; to be a file (containing the current branch head), while having a branch &#8220;a/b&#8221; requires &#8220;.git/refs/head/a&#8221; to be a directory.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ocroquette.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ocroquette.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ocroquette.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ocroquette.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ocroquette.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ocroquette.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ocroquette.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ocroquette.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ocroquette.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ocroquette.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ocroquette.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ocroquette.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ocroquette.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ocroquette.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=147&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ocroquette.wordpress.com/2011/07/10/git-failed-to-lock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9dd67f0a389b8f4f8819749c54a0fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ocroquette2</media:title>
		</media:content>
	</item>
		<item>
		<title>rsync under Windows, permission problem</title>
		<link>http://ocroquette.wordpress.com/2011/05/30/rsync-under-windows-permission-problem/</link>
		<comments>http://ocroquette.wordpress.com/2011/05/30/rsync-under-windows-permission-problem/#comments</comments>
		<pubDate>Mon, 30 May 2011 21:17:04 +0000</pubDate>
		<dc:creator>ocroquette2</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ocroquette.wordpress.com/?p=142</guid>
		<description><![CDATA[When calling rsync from Windows (e.g. with Cygwin) to sync to Unix, I had the bad surprise that all directories created on the Linux side had the permission 000 (that&#8217;s it, no permission at all). After rsync created the top level directory, it would pitifully fail to create any element underneath it (mkdir: permission denied). [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=142&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When calling rsync from Windows (e.g. with Cygwin) to sync to Unix, I had the bad surprise that all directories created on the Linux side had the permission 000 (that&#8217;s it, no permission at all). After rsync created the top level directory, it would pitifully fail to create any element underneath it (mkdir: permission denied).</p>
<p>The solution is to call it with the chmod option :</p>
<pre>$ rsync -rtxv --chmod=ugo=rwX -e ssh localdir/ user@host:/remotedir</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ocroquette.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ocroquette.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ocroquette.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ocroquette.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ocroquette.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ocroquette.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ocroquette.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ocroquette.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ocroquette.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ocroquette.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ocroquette.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ocroquette.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ocroquette.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ocroquette.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=142&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ocroquette.wordpress.com/2011/05/30/rsync-under-windows-permission-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9dd67f0a389b8f4f8819749c54a0fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ocroquette2</media:title>
		</media:content>
	</item>
		<item>
		<title>Expression Media crashing when opening a catalog</title>
		<link>http://ocroquette.wordpress.com/2011/02/05/expression-media-crashing-when-opening-a-catalog/</link>
		<comments>http://ocroquette.wordpress.com/2011/02/05/expression-media-crashing-when-opening-a-catalog/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 12:58:18 +0000</pubDate>
		<dc:creator>ocroquette2</dc:creator>
				<category><![CDATA[Photo]]></category>
		<category><![CDATA[catalog]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[expression media]]></category>

		<guid isPermaLink="false">http://ocroquette.wordpress.com/?p=138</guid>
		<description><![CDATA[If Expression Media is crashing when you open a specific catalog, you can try the hints described in this thread : http://www.eggheadcafe.com/software/aspnet/31633965/catalog-corrupt-crashes-mem.aspx For the record, they are : Self repair : Hold down the Alt key on the keyboard while clicking Open in the open dialog (didn&#8217;t work at all for me) Create a new [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=138&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If Expression Media is crashing when you open a specific catalog, you can try the hints described in this thread :</p>
<p><a href="http://www.eggheadcafe.com/software/aspnet/31633965/catalog-corrupt-crashes-mem.aspx">http://www.eggheadcafe.com/software/aspnet/31633965/catalog-corrupt-crashes-mem.aspx</a></p>
<p>For the record, they are :</p>
<ol>
<li>Self repair : Hold down the Alt key on the keyboard while clicking Open in the open dialog (didn&#8217;t work at all for me)</li>
<li>Create a new catalog and import from the corrupted catalog (didn&#8217;t work for me : the progress bar showed the import of my medias, but at the end the new catalog was empty)</li>
<li>Open the catalog on another computer, if possible using a different OS (I could open the catalog using EM2 under Windows vs. MacOS X, unfortunately saving a copy and opening it in MacOS X again still led to a crash)</li>
</ol>
<p>In my case, I had to combine 3. then 2. to get back to a working catalog under MacOS X. That&#8217;s a relief, because this catalog contains a hell lot of data entered manually, probably more than 500 hours of work.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ocroquette.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ocroquette.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ocroquette.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ocroquette.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ocroquette.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ocroquette.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ocroquette.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ocroquette.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ocroquette.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ocroquette.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ocroquette.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ocroquette.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ocroquette.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ocroquette.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=138&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ocroquette.wordpress.com/2011/02/05/expression-media-crashing-when-opening-a-catalog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9dd67f0a389b8f4f8819749c54a0fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ocroquette2</media:title>
		</media:content>
	</item>
		<item>
		<title>Random delays while accessing a web page</title>
		<link>http://ocroquette.wordpress.com/2011/02/05/random-delays-while-accessing-a-web-page/</link>
		<comments>http://ocroquette.wordpress.com/2011/02/05/random-delays-while-accessing-a-web-page/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 12:48:30 +0000</pubDate>
		<dc:creator>ocroquette2</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[delay]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[page access]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://ocroquette.wordpress.com/?p=135</guid>
		<description><![CDATA[Some parts of a web server I am administrating was showing a bad &#8220;felt&#8221; performance. Using Firebug, I narrowed down the problem : there were random delays in the delivery of the pages. Sometimes it was PHP scripts, sometimes CSS or Javascript files. Since CSS and JS files are static, it excluded a problem with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=135&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Some parts of a web server I am administrating was showing a bad &#8220;felt&#8221; performance. Using <a title="Firebug web page" href="https://addons.mozilla.org/en-US/firefox/addon/firebug/">Firebug</a>, I narrowed down the problem : there were random delays in the delivery of the pages. Sometimes it was PHP scripts, sometimes CSS or Javascript files. Since CSS and JS files are static, it excluded a problem with PHP or the database. The load on the server was OK, so it wasn&#8217;t that either.</p>
<p>I finally found out that by disabling the Keep Alive feature on the server side, the problem disappeared. I still have to investigate what the exact problem is (Keep Alive is part of the HTTP standard and used widely). It could be a problem with the Content-Length that is not reported correctly by the server, causing the browser to wait for more data.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ocroquette.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ocroquette.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ocroquette.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ocroquette.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ocroquette.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ocroquette.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ocroquette.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ocroquette.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ocroquette.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ocroquette.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ocroquette.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ocroquette.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ocroquette.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ocroquette.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=135&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ocroquette.wordpress.com/2011/02/05/random-delays-while-accessing-a-web-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9dd67f0a389b8f4f8819749c54a0fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ocroquette2</media:title>
		</media:content>
	</item>
		<item>
		<title>Sony Alpha 100 vs Sony Alpha 550 (noise)</title>
		<link>http://ocroquette.wordpress.com/2010/01/11/sony-alpha-100-vs-sony-alpha-550-noise/</link>
		<comments>http://ocroquette.wordpress.com/2010/01/11/sony-alpha-100-vs-sony-alpha-550-noise/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 20:11:11 +0000</pubDate>
		<dc:creator>ocroquette2</dc:creator>
				<category><![CDATA[Photo]]></category>

		<guid isPermaLink="false">http://ocroquette.wordpress.com/?p=124</guid>
		<description><![CDATA[One huge weak point of the Sony Alpha 100 is the noise. I was expecting the 550 and its CMOS sensor to provide a major improvement to this regard, and was not disappointed. Here is quick illustration. It&#8217;s a typical lowlight situation. Even with an aperture of 2.8, if I want to keep a reasonable [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=124&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One huge weak point of the Sony Alpha 100 is the noise. I was expecting the 550 and its CMOS sensor to provide a major improvement to this regard, and was not disappointed.</p>
<p>Here is quick illustration. It&#8217;s a typical lowlight situation. Even with an aperture of 2.8, if I want to keep a reasonable exposure time of 1/30, I need 1600 ISO. Here is how the 2 cameras handle the challenge. The pictures speak for themselves.</p>
<p>Alpha 100 (notice the horrible noise in the background in the top left corner) :</p>
<p><a href="http://ocroquette.files.wordpress.com/2010/01/dsc09493.jpg"><img class="alignnone size-medium wp-image-126" title="DSC09493" src="http://ocroquette.files.wordpress.com/2010/01/dsc09493.jpg?w=300&#038;h=200" alt="" width="300" height="200" /></a></p>
<p>Alpha 550 :</p>
<p><a href="http://ocroquette.files.wordpress.com/2010/01/dsc00009.jpg"><img class="alignnone size-medium wp-image-125" title="Alpha550" src="http://ocroquette.files.wordpress.com/2010/01/dsc00009.jpg?w=300&#038;h=199" alt="" width="300" height="199" /></a></p>
<p>Alpha 100 :</p>
<p><a href="http://ocroquette.files.wordpress.com/2010/01/dsc09498.jpg"><img class="alignnone size-medium wp-image-130" title="DSC09498" src="http://ocroquette.files.wordpress.com/2010/01/dsc09498.jpg?w=300&#038;h=200" alt="" width="300" height="200" /></a></p>
<p>Alpha 550 :</p>
<p><a href="http://ocroquette.files.wordpress.com/2010/01/dsc00110.jpg"><img class="alignnone size-medium wp-image-131" title="DSC00110" src="http://ocroquette.files.wordpress.com/2010/01/dsc00110.jpg?w=300&#038;h=199" alt="" width="300" height="199" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ocroquette.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ocroquette.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ocroquette.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ocroquette.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ocroquette.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ocroquette.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ocroquette.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ocroquette.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ocroquette.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ocroquette.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ocroquette.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ocroquette.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ocroquette.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ocroquette.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=124&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ocroquette.wordpress.com/2010/01/11/sony-alpha-100-vs-sony-alpha-550-noise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9dd67f0a389b8f4f8819749c54a0fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ocroquette2</media:title>
		</media:content>

		<media:content url="http://ocroquette.files.wordpress.com/2010/01/dsc09493.jpg?w=300" medium="image">
			<media:title type="html">DSC09493</media:title>
		</media:content>

		<media:content url="http://ocroquette.files.wordpress.com/2010/01/dsc00009.jpg?w=300" medium="image">
			<media:title type="html">Alpha550</media:title>
		</media:content>

		<media:content url="http://ocroquette.files.wordpress.com/2010/01/dsc09498.jpg?w=300" medium="image">
			<media:title type="html">DSC09498</media:title>
		</media:content>

		<media:content url="http://ocroquette.files.wordpress.com/2010/01/dsc00110.jpg?w=300" medium="image">
			<media:title type="html">DSC00110</media:title>
		</media:content>
	</item>
		<item>
		<title>Personal review of the Garmin Oregon 300</title>
		<link>http://ocroquette.wordpress.com/2009/11/01/personal-review-of-the-garmin-oregon-300/</link>
		<comments>http://ocroquette.wordpress.com/2009/11/01/personal-review-of-the-garmin-oregon-300/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 13:45:46 +0000</pubDate>
		<dc:creator>ocroquette2</dc:creator>
				<category><![CDATA[GPS]]></category>

		<guid isPermaLink="false">http://ocroquette.wordpress.com/?p=109</guid>
		<description><![CDATA[After some time using the Etrex Vista Hcx, I have switched some weeks ago to the Oregon 300. Here are the pros and cons, including the ones in comparison with the Etrex Vista Hcx. Pros (common to the Vista Hcx) : Fast boot and GPS fix (typically 15 sec &#8211; 1 min ) Good dimensions [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=109&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After some time using the <a href="http://ocroquette.wordpress.com/2009/04/04/personal-review-of-the-garmin-etrex-vista-hcx/">Etrex Vista Hcx</a>, I have switched some weeks ago to the Oregon 300.</p>
<p>Here are the pros and cons, including the ones in comparison with the Etrex Vista Hcx.</p>
<p>Pros (common to the Vista Hcx) :</p>
<ul>
<li>Fast boot and GPS fix (typically 15 sec &#8211; 1 min )</li>
<li>Good dimensions for a hand held device</li>
<li>Can be used for turn-by-turn navigation (ie. car) if you have the right map</li>
<li>Uses normal AA batteries</li>
<li>USB connection and USB mass storage mode (to send the maps or get the logs)</li>
<li>Power over USB : very useful in the car, but no battery charging over USB</li>
<li>Good battery performance (8h or more)</li>
<li>Can save logs (ie. tracks) to the memory card</li>
<li>Customizable, ie. :
<ul>
<li>on all pages (map, stats, &#8230;) the displayed fields can be defined very precisely (ie. average speed, max speed, ETA&#8230;)</li>
</ul>
</li>
</ul>
<p>Pros compared to the Vista Hcx :</p>
<ul>
<li>Thanks to the touch screen, the controls are much intuitive. Menu structure is very clean (but also require more steps to use, see cons)</li>
<li>Scrolling the map is faster and more intuitive</li>
<li>It&#8217;s possible to have several map files on the card, eg. if you need temporarily a new piece of map, just add the corresponding file to the memory card (no need to regenerate a huge single file). When you don&#8217;t need it anymore, just delete it</li>
<li>Clips directly on the bike mount. No need for a little piece of plastic and metal like on the Vista Hcx.</li>
<li>Different profiles possible, eg. bike, car, walk&#8230; (not tested yet)</li>
<li>Better screen resolution</li>
<li>Openstreemap maps look great (see <a href="http://wiki.openstreetmap.org/wiki/OSM_Map_On_Garmin">here the instructions</a>)</li>
</ul>
<p>Cons (common to the Vista Hcx) :</p>
<ul>
<li>Detailed maps are very expensive, especially for France</li>
<li>Batteries can not be charged over USB</li>
<li>The altitude displayed and recorded in the tracks is unusable in (pressurized) airplane cabin. The device relies much too much on the barometric altitude. Even the auto-calibration doesn&#8217;t help. The algorithm must be changed so that the GPS altitude is taken over when there is a reasonable fix and the different with the barometric altitude is more than eg. 100m</li>
<li>Garmin tools do not support MacOS X</li>
<li>For the frequency of track points stores in the log, there are 5 settings, but even &#8220;Most often&#8221; is quite coarse, so I have to force it to &#8220;Every second&#8221;, but then the track becomes huge very fast. There is no good compromise.</li>
<li>Does not record Hdop, Ldop or similar information in the track logs</li>
<li>Very limited memory for the current track log, even if you have a big SD card</li>
<li>The device has to be held 100% horizontally for the compass to be accurate. If you hold it naturally, ie. at the level of your breast with the screen perpendicular to your visual sight, then you hold it with a 10°+ angle, and that&#8217;s enough to get an error of 20° or more in the compass function</li>
<li>You can&#8217;t decide (and at the beginning it&#8217;s not clear) which altitude is displayed or stored in the log (the device can have up to 3 sources : GPS altitude, barometric altitude, map)</li>
<li>I really miss a function that would reset the statistics after X hours of inactivity, or ask at startup to do so</li>
</ul>
<p>Cons compared to the Vista Hcx :</p>
<ul>
<li>The screen is not as bright. Actually, even with the full brightness, it&#8217;s not bright enough. On a sunny day, you will have to find/make some shadow to see well</li>
<li>The Vista Hcx can save GPX files automatically to the memory card, one per day. The Oregon 300 doesn&#8217;t have this feature. A big loss !</li>
<li>The Oregon displays the time of day only with hours and minutes, not the seconds. So you used to sync the time of a digital camera by taking a picture of the Garmin&#8217;s screen (e.g. for geotagging, openstreetmap), that won&#8217;t work anymore.</li>
<li>The Vista Hcx has a key to access the settings of the current mode (eg. map, compass&#8230;). With the Oregon 300, you have to go back to the root page, and navigate to Settings, and choose the right category, change what you need, and go back to the root page, and return to the mode you were in. Very inefficient !</li>
</ul>
<p>Other links :</p>
<ul>
<li><a href="http://www.freiluft-blog.de/2009/08/garmin-dakota-20-und-oregon-300-im-vergleich/">garmin-dakota-20-und-oregon-300-im-vergleich</a> (German)</li>
<li>http://wiki.openstreetmap.org/wiki/Garmin/Oregon_series</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ocroquette.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ocroquette.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ocroquette.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ocroquette.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ocroquette.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ocroquette.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ocroquette.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ocroquette.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ocroquette.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ocroquette.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ocroquette.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ocroquette.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ocroquette.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ocroquette.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=109&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ocroquette.wordpress.com/2009/11/01/personal-review-of-the-garmin-oregon-300/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9dd67f0a389b8f4f8819749c54a0fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ocroquette2</media:title>
		</media:content>
	</item>
		<item>
		<title>dvsplit: tool to split raw DV files based on the timestamps</title>
		<link>http://ocroquette.wordpress.com/2009/04/05/dvsplit-tool-to-split-raw-dv-files-based-on-the-timestamps/</link>
		<comments>http://ocroquette.wordpress.com/2009/04/05/dvsplit-tool-to-split-raw-dv-files-based-on-the-timestamps/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 09:05:46 +0000</pubDate>
		<dc:creator>ocroquette2</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[camcorder]]></category>
		<category><![CDATA[capture]]></category>
		<category><![CDATA[dv]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[raw]]></category>
		<category><![CDATA[rip]]></category>

		<guid isPermaLink="false">http://ocroquette.wordpress.com/?p=98</guid>
		<description><![CDATA[Using the solutions described here, you get a big raw file. dvsplit is a simple tool to split it in several files based on the timestamps. See the README. And here is the tool.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=98&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Using the solutions described <a href="http://ocroquette.wordpress.com/2009/01/10/simple-solutions-to-capture-dv-under-macos/">here</a>, you get a big raw file.</p>
<p>dvsplit is a simple tool to split it in several files based on the timestamps.</p>
<p>See the <a href="http://ocroquette.fr/public/dvsplit/README.txt">README</a>.</p>
<p>And here is <a href="http://ocroquette.fr/public/dvsplit/dvsplit.tgz">the tool</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ocroquette.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ocroquette.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ocroquette.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ocroquette.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ocroquette.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ocroquette.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ocroquette.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ocroquette.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ocroquette.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ocroquette.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ocroquette.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ocroquette.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ocroquette.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ocroquette.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ocroquette.wordpress.com&amp;blog=4831680&amp;post=98&amp;subd=ocroquette&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ocroquette.wordpress.com/2009/04/05/dvsplit-tool-to-split-raw-dv-files-based-on-the-timestamps/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6f9dd67f0a389b8f4f8819749c54a0fb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ocroquette2</media:title>
		</media:content>
	</item>
	</channel>
</rss>
