<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Commentaires pour Anthony Dahanne&#039;s blog</title>
	<atom:link href="http://blog.dahanne.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dahanne.net</link>
	<description>Open Source Software, Java, Android, Continuous Integration</description>
	<lastBuildDate>Fri, 20 Jan 2012 00:18:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Commentaires sur Creating and applying a patch for an Eclipse project with Git par Creating and applying a patch for an Eclipse project with Git, part 2 : using github &#124; Anthony Dahanne&#039;s blog</title>
		<link>http://blog.dahanne.net/2011/10/05/creating-and-applying-a-patch-for-an-eclipse-project-with-git/comment-page-1/#comment-31622</link>
		<dc:creator>Creating and applying a patch for an Eclipse project with Git, part 2 : using github &#124; Anthony Dahanne&#039;s blog</dc:creator>
		<pubDate>Fri, 20 Jan 2012 00:18:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=546#comment-31622</guid>
		<description>[...] &#160;&#160; Sécuriser son serveur dédié : quelques conseils &#187;  Creating and applying a patch for an Eclipse project with Git, part 2 : using github In a recent post, I described how to contribute a patch to an eclipse project using git as its version control system. [...]</description>
		<content:encoded><![CDATA[<p>[...] &nbsp;&nbsp; Sécuriser son serveur dédié : quelques conseils &raquo;  Creating and applying a patch for an Eclipse project with Git, part 2 : using github In a recent post, I described how to contribute a patch to an eclipse project using git as its version control system. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Different ways to access HTTP resources from Android par Arcao</title>
		<link>http://blog.dahanne.net/2009/08/16/how-to-access-http-resources-from-android/comment-page-2/#comment-31621</link>
		<dc:creator>Arcao</dc:creator>
		<pubDate>Wed, 11 Jan 2012 18:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=227#comment-31621</guid>
		<description>I think the best way how to get String content from InputStrem is:

&lt;pre lang=&quot;java&quot; line=&quot;1&quot;&gt;
BufferedReader br=new BufferedReader(new InputStreamReader(inputStream, &quot;UTF-8&quot;));

StringBuilder sb=new StringBuilder();

char[] buffer = new char[8192];
int len;

while ((len = br.read(buffer)!= -1) {
  sb.append(buffer, 0, len);
}

String content = sb.toString();
&lt;/pre&gt;

Note: Don&#039;t forget on right charset, see second parameter in InputStreamReader constructor.</description>
		<content:encoded><![CDATA[<p>I think the best way how to get String content from InputStrem is:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #003399;">BufferedReader</span> br<span style="color: #339933;">=</span><span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">BufferedReader</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">InputStreamReader</span><span style="color: #009900;">&#40;</span>inputStream, <span style="color: #0000ff;">&quot;UTF-8&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
StringBuilder sb<span style="color: #339933;">=</span><span style="color: #000000; font-weight: bold;">new</span> StringBuilder<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000066; font-weight: bold;">char</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> buffer <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #000066; font-weight: bold;">char</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">8192</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000066; font-weight: bold;">int</span> len<span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>len <span style="color: #339933;">=</span> br.<span style="color: #006633;">read</span><span style="color: #009900;">&#40;</span>buffer<span style="color: #009900;">&#41;</span><span style="color: #339933;">!=</span> <span style="color: #339933;">-</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  sb.<span style="color: #006633;">append</span><span style="color: #009900;">&#40;</span>buffer, <span style="color: #cc66cc;">0</span>, len<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003399;">String</span> content <span style="color: #339933;">=</span> sb.<span style="color: #006633;">toString</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Note: Don&#8217;t forget on right charset, see second parameter in InputStreamReader constructor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Jboss and java.lang.OutOfMemoryError: PermGen space par derek</title>
		<link>http://blog.dahanne.net/2009/08/12/jboss-and-java-lang-outofmemoryerror-permgen-space/comment-page-1/#comment-31614</link>
		<dc:creator>derek</dc:creator>
		<pubDate>Fri, 09 Dec 2011 14:52:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=212#comment-31614</guid>
		<description>i have tried but it has not worked yet ...</description>
		<content:encoded><![CDATA[<p>i have tried but it has not worked yet &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Sécuriser son serveur dédié : quelques conseils par Ikux</title>
		<link>http://blog.dahanne.net/2011/11/19/securiser-son-serveur-dedie-quelques-conseils/comment-page-1/#comment-31555</link>
		<dc:creator>Ikux</dc:creator>
		<pubDate>Mon, 21 Nov 2011 09:26:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=571#comment-31555</guid>
		<description>&lt;del datetime=&quot;2011-12-14T02:56:08+00:00&quot;&gt;Sécurisé son serveur dédié n&#039;est pas simple.
Il ne faut surtout pas négliger la sécurité !
A l&#039;heure d&#039;aujourd&#039;hui beaucoup de Web Agencies installent un bête Apache sur un serveur dédié et croient à tord avoir un hébergement dignes de ce nom.
On ne s&#039;improvise pas administrateur système d&#039;un jour à l&#039;autre.
Je pense qu&#039;il est bien mieux de faire infogérer son serveur dédié ou VPS par des professionnels.
A terme cela vous rapportera plus de clients, un très bon retour sur investissement, la garantie d&#039;avoir vos données sécurisés, un contact en cas de problème et surtout un serveur en bonne santé, à jours, optimisé, surveillé, sauvegardé etc.&lt;/del&gt;


Pour compléter un peut votre article, pensez à désactiver IPv6 si vous ne l&#039;utiliser pas...</description>
		<content:encoded><![CDATA[<p><del datetime="2011-12-14T02:56:08+00:00">Sécurisé son serveur dédié n&#8217;est pas simple.<br />
Il ne faut surtout pas négliger la sécurité !<br />
A l&#8217;heure d&#8217;aujourd&#8217;hui beaucoup de Web Agencies installent un bête Apache sur un serveur dédié et croient à tord avoir un hébergement dignes de ce nom.<br />
On ne s&#8217;improvise pas administrateur système d&#8217;un jour à l&#8217;autre.<br />
Je pense qu&#8217;il est bien mieux de faire infogérer son serveur dédié ou VPS par des professionnels.<br />
A terme cela vous rapportera plus de clients, un très bon retour sur investissement, la garantie d&#8217;avoir vos données sécurisés, un contact en cas de problème et surtout un serveur en bonne santé, à jours, optimisé, surveillé, sauvegardé etc.</del></p>
<p>Pour compléter un peut votre article, pensez à désactiver IPv6 si vous ne l&#8217;utiliser pas&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Different ways to access HTTP resources from Android par pratik</title>
		<link>http://blog.dahanne.net/2009/08/16/how-to-access-http-resources-from-android/comment-page-2/#comment-31525</link>
		<dc:creator>pratik</dc:creator>
		<pubDate>Tue, 15 Nov 2011 10:13:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=227#comment-31525</guid>
		<description>hi Andrea
i have faced such problem of unknown host .
check your internet connection ..
or if you are testing with emulator so set dns server for emulator like

start cmd
change directory to android-sdk/tools 
and 
fire this command

emulator.exe -avd [your avd name] -dns-server 192.168.1.1

thats it. 

run your app...

hope this will help you</description>
		<content:encoded><![CDATA[<p>hi Andrea<br />
i have faced such problem of unknown host .<br />
check your internet connection ..<br />
or if you are testing with emulator so set dns server for emulator like</p>
<p>start cmd<br />
change directory to android-sdk/tools<br />
and<br />
fire this command</p>
<p>emulator.exe -avd [your avd name] -dns-server 192.168.1.1</p>
<p>thats it. </p>
<p>run your app&#8230;</p>
<p>hope this will help you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Run UI tests on a headless Jenkins / Hudson Continuous Integration server running Ubuntu par Hudson/Jenkins und automatisierte Frontend Tests. &#171; Winkler, RWE, Kombjuda.</title>
		<link>http://blog.dahanne.net/2011/07/18/run-ui-tests-on-a-headless-jenkins-hudson-continuous-integration-server-running-ubuntu/comment-page-1/#comment-31482</link>
		<dc:creator>Hudson/Jenkins und automatisierte Frontend Tests. &#171; Winkler, RWE, Kombjuda.</dc:creator>
		<pubDate>Sat, 29 Oct 2011 21:58:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=535#comment-31482</guid>
		<description>[...] habe ich hier eine Anleitung für das Ausführen von automatisierten Frontend-Tests unter Jenkins/Hudson [...]</description>
		<content:encoded><![CDATA[<p>[...] habe ich hier eine Anleitung für das Ausführen von automatisierten Frontend-Tests unter Jenkins/Hudson [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Premiere application android déployée sur mon HTC Dream (G1) par paulfranck</title>
		<link>http://blog.dahanne.net/2009/03/22/premiere-application-android-deployee-sur-mon-htc-dream-g1/comment-page-1/#comment-31481</link>
		<dc:creator>paulfranck</dc:creator>
		<pubDate>Wed, 19 Oct 2011 14:20:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=120#comment-31481</guid>
		<description>j’ai un téléphone htc dream (android )sur lequel il n’ya pas android market,j’appuie sur menu-recherhe:rien n’apparait…Dans mes applications j’abserve ze dev tools,widget demo,compact test mfg test,misc config,uartswitch,htc ssd test que je ne comprends pas??? qui s’affichent differemment des autres applications:calendar,browser,dialer.Je veut le mettre aussi en francais comment??? je navigue mais je n’arrive pas a installer des applications pourquoi?et comment faire pour resoudre tous ses problemes???? Aidez-moi, j’aime trop ce telephonne</description>
		<content:encoded><![CDATA[<p>j’ai un téléphone htc dream (android )sur lequel il n’ya pas android market,j’appuie sur menu-recherhe:rien n’apparait…Dans mes applications j’abserve ze dev tools,widget demo,compact test mfg test,misc config,uartswitch,htc ssd test que je ne comprends pas??? qui s’affichent differemment des autres applications:calendar,browser,dialer.Je veut le mettre aussi en francais comment??? je navigue mais je n’arrive pas a installer des applications pourquoi?et comment faire pour resoudre tous ses problemes???? Aidez-moi, j’aime trop ce telephonne</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Eclipse Galileo 3.5 : problèmes de connexion à travers un proxy&#8230; par Andrew Spencer</title>
		<link>http://blog.dahanne.net/2009/07/01/eclipse-galileo-3-5-problemes_proxy/comment-page-1/#comment-31472</link>
		<dc:creator>Andrew Spencer</dc:creator>
		<pubDate>Wed, 14 Sep 2011 07:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=175#comment-31472</guid>
		<description>La solution d&#039;Alexandre Mercier (renseigner HTTP et HTTPS mais laisser SOCKS vide) fonctionne également sous Indigo derrière un firewall corporate.

Merci pour les infos. C&#039;est fou ce qu&#039;on puisse perdre comme temps sur un truc aussi primordial.

Translation for English speakers: to get through a corporate firewall, fill out the HTTP and HTTPS lines (proxy hostname, port, user, password), but leave SOCKS empty.  Works with Galileo and Indigo.</description>
		<content:encoded><![CDATA[<p>La solution d&#8217;Alexandre Mercier (renseigner HTTP et HTTPS mais laisser SOCKS vide) fonctionne également sous Indigo derrière un firewall corporate.</p>
<p>Merci pour les infos. C&#8217;est fou ce qu&#8217;on puisse perdre comme temps sur un truc aussi primordial.</p>
<p>Translation for English speakers: to get through a corporate firewall, fill out the HTTP and HTTPS lines (proxy hostname, port, user, password), but leave SOCKS empty.  Works with Galileo and Indigo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur ReGalAndroid : the work behind the scenes par anthony.dahanne</title>
		<link>http://blog.dahanne.net/2011/03/18/regalandroid-the-work-behind-the-scenes/comment-page-1/#comment-31470</link>
		<dc:creator>anthony.dahanne</dc:creator>
		<pubDate>Wed, 07 Sep 2011 09:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=410#comment-31470</guid>
		<description>well, it depends on the time I have! I hope by the end of September !
you can contribute to the code too !</description>
		<content:encoded><![CDATA[<p>well, it depends on the time I have! I hope by the end of September !<br />
you can contribute to the code too !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur ReGalAndroid : the work behind the scenes par Bill</title>
		<link>http://blog.dahanne.net/2011/03/18/regalandroid-the-work-behind-the-scenes/comment-page-1/#comment-31465</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Thu, 01 Sep 2011 13:32:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=410#comment-31465</guid>
		<description>Hi, I installed it on my Sidekick 4G Android phone and it worked for awhile until I changed my  albums in Piwigo.  After that, I could log in but then when I click on Go to Galleries, RegalAndroid would fail.  I&#039;m looking forward to the next release so I can try again.  When would that be?</description>
		<content:encoded><![CDATA[<p>Hi, I installed it on my Sidekick 4G Android phone and it worked for awhile until I changed my  albums in Piwigo.  After that, I could log in but then when I click on Go to Galleries, RegalAndroid would fail.  I&#8217;m looking forward to the next release so I can try again.  When would that be?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Different ways to access HTTP resources from Android par diyism</title>
		<link>http://blog.dahanne.net/2009/08/16/how-to-access-http-resources-from-android/comment-page-2/#comment-31449</link>
		<dc:creator>diyism</dc:creator>
		<pubDate>Thu, 04 Aug 2011 07:20:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=227#comment-31449</guid>
		<description>&lt;code&gt;
ByteArrayOutputStream stream_bytes=new ByteArrayOutputStream();
int cnt=0;
byte[] buffer=new byte[512];
while ((cnt=stream_content.read(buffer))!=-1)
      {stream_bytes.write(buffer, 0, cnt);
      }
String response_text=new String(stream_bytes.toByteArray());
&lt;/code&gt;
or
&lt;code&gt;
BufferedReader br=new BufferedReader(new InputStreamReader(stream_content), 4096);
String line;
StringBuilder sb=new StringBuilder();
while ((line=br.readLine())!=null)
      {sb.append(line);
      }
String contentOfMyInputStream=sb.toString();
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code><br />
ByteArrayOutputStream stream_bytes=new ByteArrayOutputStream();<br />
int cnt=0;<br />
byte[] buffer=new byte[512];<br />
while ((cnt=stream_content.read(buffer))!=-1)<br />
      {stream_bytes.write(buffer, 0, cnt);<br />
      }<br />
String response_text=new String(stream_bytes.toByteArray());<br />
</code><br />
or<br />
<code><br />
BufferedReader br=new BufferedReader(new InputStreamReader(stream_content), 4096);<br />
String line;<br />
StringBuilder sb=new StringBuilder();<br />
while ((line=br.readLine())!=null)<br />
      {sb.append(line);<br />
      }<br />
String contentOfMyInputStream=sb.toString();<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Different ways to access HTTP resources from Android par diyism</title>
		<link>http://blog.dahanne.net/2009/08/16/how-to-access-http-resources-from-android/comment-page-2/#comment-31448</link>
		<dc:creator>diyism</dc:creator>
		<pubDate>Thu, 04 Aug 2011 05:09:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=227#comment-31448</guid>
		<description>Maybe you could use convertStreamToString to convert the InputStream into a string:

&lt;code&gt;
JSONObject jsonResponse = new JSONObject(convertStreamToString(instream));
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Maybe you could use convertStreamToString to convert the InputStream into a string:</p>
<p><code><br />
JSONObject jsonResponse = new JSONObject(convertStreamToString(instream));<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Run UI tests on a headless Jenkins / Hudson Continuous Integration server running Ubuntu par Continuous Integration for Android apps with Jenkins and Maven3 &#124; Vítor Baptista</title>
		<link>http://blog.dahanne.net/2011/07/18/run-ui-tests-on-a-headless-jenkins-hudson-continuous-integration-server-running-ubuntu/comment-page-1/#comment-31435</link>
		<dc:creator>Continuous Integration for Android apps with Jenkins and Maven3 &#124; Vítor Baptista</dc:creator>
		<pubDate>Thu, 21 Jul 2011 17:46:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=535#comment-31435</guid>
		<description>[...] Run UI tests on a headless Jenkins / Hudson Continuous Integration server running Ubuntu [...]</description>
		<content:encoded><![CDATA[<p>[...] Run UI tests on a headless Jenkins / Hudson Continuous Integration server running Ubuntu [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Run UI tests on a headless Jenkins / Hudson Continuous Integration server running Ubuntu par Continuous Integration of Android apps with Jenkins and Maven3 &#124; Vítor Baptista</title>
		<link>http://blog.dahanne.net/2011/07/18/run-ui-tests-on-a-headless-jenkins-hudson-continuous-integration-server-running-ubuntu/comment-page-1/#comment-31434</link>
		<dc:creator>Continuous Integration of Android apps with Jenkins and Maven3 &#124; Vítor Baptista</dc:creator>
		<pubDate>Thu, 21 Jul 2011 17:36:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=535#comment-31434</guid>
		<description>[...] Run UI tests on a headless Jenkins / Hudson Continuous Integration server running Ubuntu [...]</description>
		<content:encoded><![CDATA[<p>[...] Run UI tests on a headless Jenkins / Hudson Continuous Integration server running Ubuntu [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Different ways to access HTTP resources from Android par Sam</title>
		<link>http://blog.dahanne.net/2009/08/16/how-to-access-http-resources-from-android/comment-page-2/#comment-31432</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Fri, 15 Jul 2011 23:15:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=227#comment-31432</guid>
		<description>Hi Anthony,

You may find this somehow unrelated to your efforts towards accessing http resources from Android but I will appreciate it if you can provide me with your thoughts regarding to my challenge. 

I&#039;m trying to capture some statistics like number of 302&#039;s and 200 Oks or the time it takes for the client to receive the content from the streamer (time it takes from the actual request (URL) to the http client till http client sends the content back to the media player). The cleanest way to do this is to extend HttpClient code. The challenge for me is to know that if the media player (any kind) on Android will use my extended version of HttpClient or not. I will appreciate it if you can help me at least based on your experience what you think about this. 

Cheers, STZ</description>
		<content:encoded><![CDATA[<p>Hi Anthony,</p>
<p>You may find this somehow unrelated to your efforts towards accessing http resources from Android but I will appreciate it if you can provide me with your thoughts regarding to my challenge. </p>
<p>I&#8217;m trying to capture some statistics like number of 302&#8242;s and 200 Oks or the time it takes for the client to receive the content from the streamer (time it takes from the actual request (URL) to the http client till http client sends the content back to the media player). The cleanest way to do this is to extend HttpClient code. The challenge for me is to know that if the media player (any kind) on Android will use my extended version of HttpClient or not. I will appreciate it if you can help me at least based on your experience what you think about this. </p>
<p>Cheers, STZ</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Solution de sauvegarde locale et distante avec rsync par NAS Synology : pour les sauvegardes et pour diffuser les médias &#124; Anthony Dahanne's blog</title>
		<link>http://blog.dahanne.net/2008/02/16/solution-de-sauvegarde-locale-et-distante-avec-rsync/comment-page-1/#comment-31430</link>
		<dc:creator>NAS Synology : pour les sauvegardes et pour diffuser les médias &#124; Anthony Dahanne's blog</dc:creator>
		<pubDate>Mon, 11 Jul 2011 23:58:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/2008/02/16/solution-de-sauvegarde-locale-et-distante-avec-rsync/#comment-31430</guid>
		<description>[...] Il existe un excellent article qui introduit ce propos sur le wiki de Synology; ceci dit la technique est la même que celle que j&#8217;avais décrit pour des sauvegardes distantes. [...]</description>
		<content:encoded><![CDATA[<p>[...] Il existe un excellent article qui introduit ce propos sur le wiki de Synology; ceci dit la technique est la même que celle que j&#8217;avais décrit pour des sauvegardes distantes. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur ReGalAndroid : the work behind the scenes par anthony.dahanne</title>
		<link>http://blog.dahanne.net/2011/03/18/regalandroid-the-work-behind-the-scenes/comment-page-1/#comment-31429</link>
		<dc:creator>anthony.dahanne</dc:creator>
		<pubDate>Sun, 10 Jul 2011 18:57:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=410#comment-31429</guid>
		<description>salut, appuie sur Menu-&gt;Paramètres</description>
		<content:encoded><![CDATA[<p>salut, appuie sur Menu->Paramètres</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur ReGalAndroid : the work behind the scenes par Chris</title>
		<link>http://blog.dahanne.net/2011/03/18/regalandroid-the-work-behind-the-scenes/comment-page-1/#comment-31428</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sun, 10 Jul 2011 18:28:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=410#comment-31428</guid>
		<description>Bonjour,

Installé sur un Samsung galaxy GT-I5503, l&#039;appli semble fonctionner avec l&#039;accès aux galeries de démo pré-programmée.

Au lancement j&#039;obtiens l&#039;écran avec le bouton &quot;Entrer dans la galerie&quot;, ensuite je n&#039;arrive pas à trouver les écrans pour la config (entrer l&#039;url de ma galerie).
A partir de quel écran accède-t-on à la config ?</description>
		<content:encoded><![CDATA[<p>Bonjour,</p>
<p>Installé sur un Samsung galaxy GT-I5503, l&#8217;appli semble fonctionner avec l&#8217;accès aux galeries de démo pré-programmée.</p>
<p>Au lancement j&#8217;obtiens l&#8217;écran avec le bouton &laquo;&nbsp;Entrer dans la galerie&nbsp;&raquo;, ensuite je n&#8217;arrive pas à trouver les écrans pour la config (entrer l&#8217;url de ma galerie).<br />
A partir de quel écran accède-t-on à la config ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur G2Android : a gallery2 client for the android platform par Earnhardt</title>
		<link>http://blog.dahanne.net/2009/08/16/g2android-a-gallery2-client-for-the-android-platform/comment-page-1/#comment-31426</link>
		<dc:creator>Earnhardt</dc:creator>
		<pubDate>Fri, 08 Jul 2011 09:25:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=225#comment-31426</guid>
		<description>I raelly appreciate free, succinct, reliable data like this.</description>
		<content:encoded><![CDATA[<p>I raelly appreciate free, succinct, reliable data like this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Commentaires sur Effacer de manière sécurisée les données d&#8217;un disque dur par Rita</title>
		<link>http://blog.dahanne.net/2009/10/14/effacer-de-maniere-securisee-les-donnees-dun-disque-dur/comment-page-1/#comment-31425</link>
		<dc:creator>Rita</dc:creator>
		<pubDate>Thu, 07 Jul 2011 21:30:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.dahanne.net/?p=256#comment-31425</guid>
		<description>Please keep thrwonig these posts up they help tons.</description>
		<content:encoded><![CDATA[<p>Please keep thrwonig these posts up they help tons.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic

Served from: blog.dahanne.net @ 2012-02-04 16:01:44 -->
