<?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>link2caro &#187; IT</title>
	<atom:link href="http://blog.link2caro.net/tag/it/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.link2caro.net</link>
	<description>I&#039;m just flesh &#039;n bones, but with you I feel I&#039;m flyin&#039; - Superman</description>
	<lastBuildDate>Thu, 24 Jun 2010 12:14:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Mac OSX &#8211; rsync to support iconv</title>
		<link>http://blog.link2caro.net/read/mac-osx-rsync/</link>
		<comments>http://blog.link2caro.net/read/mac-osx-rsync/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 17:24:28 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[compilation]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[rsync]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/read/mac-osx-rsync-to-support-iconv/</guid>
		<description><![CDATA[The rsync tool that comes in-the-box with OSX does not support iconv, so that you cannot activate this option in order to void any encoding issue when syncing with rsync. To use this option, you need to install XCode to compile rsync, by default on OSX 10.6, with default options (64-bit compilation) you don&#8217;t have [...]]]></description>
			<content:encoded><![CDATA[<p>The rsync tool that comes in-the-box with OSX does not support iconv, so that you cannot activate this option in order to void any encoding issue when syncing with rsync.<br />
To use this option, you need to install XCode to compile rsync, by default on OSX 10.6, with default options (64-bit compilation) you don&#8217;t have iconv enabled, you just need to precise rsync to compile in 32-bit mode and you are good to sync in UTF-8 now</p>
<p>If you sync from your Mac use</p>
<p style="padding-left: 30px;"><code>rsync --iconv=UTF8-MAC,UTF8</code></p>
<p><code>$ CFLAGS=-m32 CPPFLAGS=-m32 CCASFLAGS=-m32 ./configure --prefix=/usr/local<br />
$ CFLAGS=-m32 CPPFLAGS=-m32 CCASFLAGS=-m32 sudo make install</code></p>
<p>If you don&#8217;t want to install XCode, you can download a compiled version here: <a href="http://files.link2caro.net/2010/04/rsync.tar.gz">rsync-3.0.7 (compiled on OSX 10.6.3)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.link2caro.net/read/mac-osx-rsync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup your SVN repository with SVNSYNC</title>
		<link>http://blog.link2caro.net/read/backup-your-svn-repository-with-svnsync/</link>
		<comments>http://blog.link2caro.net/read/backup-your-svn-repository-with-svnsync/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 20:47:35 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://link2caro.net/read/backup-your-svn-repository-with-svnsync/</guid>
		<description><![CDATA[In this article, I will tell you how to create a backup repository on your PC or your second server. First step: Create a new repository on your PC or your another server svnadmin create backup-repository Second step: Create a hook so as to give the repository the ability to change properties On Linux/Unix-like cat [...]]]></description>
			<content:encoded><![CDATA[<p>In this article, I will tell you how to create a backup repository on your PC or your second server.</p>
<p><span style="text-decoration: underline;">First step:</span> Create a new repository on your PC or your another server</p>
<p><span style="font-family: monospace; white-space: pre;">svnadmin create backup-repository</span></p>
<p><span style="text-decoration: underline;">Second step:</span> Create a hook so as to give the repository the ability to change properties</p>
<pre>
<b>On Linux/Unix-like</b>
</pre>
<pre>
<code>cat &lt;&lt;'EOF' &gt; <span style="font-family: Helvetica; white-space: normal;"><span style="font-family: monospace; white-space: pre;">backup-repository</span></span>/hooks/pre-revprop-change
#!/bin/sh
exit 0
EOF
</code>
</pre>
<pre>
Give the newly created file the permission of execution
</pre>
<pre>
chmod +w <span style="font-family: Helvetica; white-space: normal;"><span style="font-family: monospace; white-space: pre;">backup-repository</span></span>/hooks/pre-revprop-change
</pre>
<pre>
<b>On Windows</b>
</pre>
<pre>
Simply create an empty file named pre-revprop-change.bat in hooks directory (<span style="font-family: Helvetica; white-space: normal;"><span style="font-family: monospace; white-space: pre;">ackup-repository\</span></span>hooks\pre-revprop-change.bat)
</pre>
<pre>
<span style="text-decoration: underline;">Third step:</span> Initialization the newly created repository
</pre>
<pre>
Consult svnsync init --help for more information
</pre>
<pre>
<b>On Linux/Unix-like</b>
</pre>
<pre>
<code>svnsync init file://`pwd`/backup-repository http://svn.example.com/svn/ource-repository</code>
</pre>
<pre>
<b>On Windows</b>
</pre>
<pre>
<b><code><span style="font-weight: normal;">svnsync init file:///c:/full/path/to/backup-repository http://svn.example.com/source-repository</span></code></b>
</pre>
<pre>
<b><span style="font-weight: normal;"><span style="text-decoration: underline;">Forth step:</span> Sync them!</span></b>
</pre>
<pre>
<span style="font-weight: normal;"><code>svnsync sync file://`pwd`/backup-repository</code></span>
</pre>
<pre>
<span style="font-weight: normal;"><code>svnsync sync file:///c:/full/path/to/backup-repository</code></span>
</pre>
<pre>
<span style="font-weight: normal;">If you wish, you can hook this command to post-commit hook of the source-repository, with this hook, you will keep you backup-repository up-to-date <img src='http://blog.link2caro.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </span>
</pre>
<pre>
<span style="font-weight: normal;"><b>On Windows</b></span>
</pre>
<pre>
<span style="font-weight: normal;"><b>On Linux/Unix-like</b></span>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.link2caro.net/read/backup-your-svn-repository-with-svnsync/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eclipse Dark Color Scheme</title>
		<link>http://blog.link2caro.net/read/eclipse-dark-color-scheme/</link>
		<comments>http://blog.link2caro.net/read/eclipse-dark-color-scheme/#comments</comments>
		<pubDate>Fri, 15 May 2009 20:25:47 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Komodo Edit]]></category>

		<guid isPermaLink="false">http://link2caro.net/read/eclipse-dark-color-scheme/</guid>
		<description><![CDATA[Here is my Dark Color Scheme, cloned from my Dark Color Scheme for Komodo Edit Eclipse File &#62; Export Choose Export all and Export your current settings, in case you want to roll back File &#62; Import Choose Import all and click Finish, enjoy! CARO-ColorScheme-Eclipse.epf.zip Komodo Edit 5.1 Unzip the file in C:\Users\&#8230;..\AppData\Roaming\ActiveState\KomodoEdit\5.1\schemes\ or on [...]]]></description>
			<content:encoded><![CDATA[<p>Here is my Dark Color Scheme, cloned from my Dark Color Scheme for Komodo Edit</p>
<p><strong>Eclipse</strong></p>
<p><strong>File &gt; Export<br />
<span style="font-weight: normal;">Choose Export all and Export your current settings, in case you want to roll back</span></strong></p>
<p><strong>File &gt; Import<br />
<span style="font-weight: normal;">Choose Import all and click Finish, enjoy!</span></strong></p>
<p><img src="http://files.link2caro.net/2009/05/Picture-1.png" width="480" height="234" alt="Picture 1.png" title="Picture 1.png" /></p>
<p><a href="http://files.link2caro.net/2009/05/CARO-ColorScheme-Eclipse.epf.zip" title="CARO-ColorScheme-Eclipse.epf.zip">CARO-ColorScheme-Eclipse.epf.zip</a></p>
<p><strong>Komodo Edit 5.1</strong></p>
<p>Unzip the file in <strong>C:\Users\&#8230;..\AppData\Roaming\ActiveState\KomodoEdit\5.1\scheme</strong><strong>s\</strong> or on Mac <strong>~/Library/Application Support/KomodoEdit/5.1/schemes/</strong> and relaunch Komodo Edit</p>
<p><img src="http://files.link2caro.net/2009/05/Picture-2.png" width="480" height="268" alt="Picture 2.png" title="Picture 2.png" /> <a href="http://files.link2caro.net/2009/05/CARO-ColorScheme-KomodoEdit.ksf.zip" title="CARO-ColorScheme-KomodoEdit.ksf.zip">CARO-ColorScheme-KomodoEdit.ksf.zip</a></p>
<p><a href="http://files.link2caro.net/2009/05/CARO-ColorScheme-KomodoEdit.ksf.zip" title="CARO-ColorScheme-KomodoEdit.ksf.zip">CARO-ColorScheme-KomodoEdit.ksf.zip</a></p>
<p>Leave your comments about this color scheme <img src='http://blog.link2caro.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.link2caro.net/read/eclipse-dark-color-scheme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
