<?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>Libre Things &#187; GitHub</title>
	<atom:link href="http://positon.org/tag/bsync-bidirectional-synchronization-using-rsync-3/feed" rel="self" type="application/rss+xml" />
	<link>http://positon.org</link>
	<description></description>
	<lastBuildDate>Tue, 23 Feb 2016 20:01:11 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.7.1</generator>
	<item>
		<title>MPD clients for AdaFruit Character LCD Keypad on Raspberry Pi</title>
		<link>http://positon.org/mpd-clients-for-adafruit-character-lcd-keypad-on-raspberry-pi</link>
		<comments>http://positon.org/mpd-clients-for-adafruit-character-lcd-keypad-on-raspberry-pi#comments</comments>
		<pubDate>Wed, 09 Jul 2014 21:10:51 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[GitHub]]></category>
		<category><![CDATA[MPD]]></category>
		<category><![CDATA[Raspberry Pi]]></category>

		<guid isPermaLink="false">http://positon.org/?p=195</guid>
		<description><![CDATA[I just pushed some small python Music Player Daemon clients on github. It may be of use for MPD fans using the device! https://github.com/dooblem/adampd]]></description>
				<content:encoded><![CDATA[<p>I just pushed some small python Music Player Daemon clients on github.</p>
<p>It may be of use for MPD fans using the device!</p>
<p><a href="https://github.com/dooblem/adampd" title="https://github.com/dooblem/adampd">https://github.com/dooblem/adampd</a></p>
<p><a href="http://positon.org/wp-content/uploads/2014/07/adampd_pi.jpg"><img src="http://positon.org/wp-content/uploads/2014/07/adampd_pi-300x234.jpg" alt="adampd_pi" width="300" height="234" class="alignnone size-medium wp-image-198" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/mpd-clients-for-adafruit-character-lcd-keypad-on-raspberry-pi/feed</wfw:commentRss>
		<slash:comments></slash:comments>
		</item>
		<item>
		<title>Disable SSH askpass in git push</title>
		<link>http://positon.org/disable-ssh-askpass-in-git-push</link>
		<comments>http://positon.org/disable-ssh-askpass-in-git-push#comments</comments>
		<pubDate>Sun, 27 Apr 2014 12:24:37 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[GitHub]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://positon.org/?p=178</guid>
		<description><![CDATA[If you have the problem when pushing to github for example. You can just empty the core.askpass param: git config --global core.askpass '' See also man git config]]></description>
				<content:encoded><![CDATA[<p>If you have the problem when pushing to <a href="http://github.com" title="github">github</a> for example.</p>
<p>You can just empty the core.askpass param:</p>
<pre>
git config --global core.askpass ''
</pre>
<p>See also <code>man git config</code></p>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/disable-ssh-askpass-in-git-push/feed</wfw:commentRss>
		<slash:comments></slash:comments>
		</item>
		<item>
		<title>Bsync: Bidirectional Synchronization using Rsync</title>
		<link>http://positon.org/bsync-bidirectional-synchronization-using-rsync</link>
		<comments>http://positon.org/bsync-bidirectional-synchronization-using-rsync#comments</comments>
		<pubDate>Thu, 05 Dec 2013 22:22:36 +0000</pubDate>
		<dc:creator><![CDATA[dooblem]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bsync]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[GitHub]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://fr.positon.org/?p=152</guid>
		<description><![CDATA[Bsync is a bidirectional file synchronization tool, using rsync for transfers. Moved files are also synchronized in a smart way. It uses rsync for file transfers, find to generate filelist snapshots, and ssh for remote transfers. bsync is an alternative to Unison, written in Python 3. A big strength of bsync: it can detect and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Bsync is a bidirectional file synchronization tool, using rsync for transfers. <strong>Moved files</strong> are also synchronized in a smart way.</p>
<p>It uses <a href="http://rsync.samba.org">rsync</a> for file transfers, <a href="http://www.gnu.org/software/findutils/">find</a> to generate filelist snapshots, and <a href="http://www.openssh.com/">ssh</a> for remote transfers.</p>
<p>bsync is an alternative to Unison, written in <a href="http://www.python.org/">Python 3</a>. A big strength of bsync: it can detect and apply moved files from one side to the other (Unison uses some copy calls to handle moved files).</p>
<p>I developped it to be able to synchronize my music directory from my laptop to my <a href="http://www.raspberrypi.org/">Raspberry Pi</a> in an efficient way, and to sync with my girlfriend laptop too.</p>
<p>Bsync is released under GPL. Feel free to report any bugs/wishes in <a href="https://github.com/dooblem/bsync/issues">GitHub issues</a>.</p>
<p><a href="https://github.com/dooblem/bsync">More info, Download and Install on the GitHub repo.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://positon.org/bsync-bidirectional-synchronization-using-rsync/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
