<?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>tbergeron-&#62;myHeadInsideOut(); &#187; Technologie</title>
	<atom:link href="http://tbergeron.com/category/technologie/feed/" rel="self" type="application/rss+xml" />
	<link>http://tbergeron.com</link>
	<description></description>
	<lastBuildDate>Tue, 20 Jul 2010 06:19:03 +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>Time Machine et NTFS ne s&#8217;aiment pas, et bien moi j&#8217;aime rsync.</title>
		<link>http://tbergeron.com/blog/time-machine-et-ntfs-ne-saiment-pas-et-bien-moi-jaime-rsync/</link>
		<comments>http://tbergeron.com/blog/time-machine-et-ntfs-ne-saiment-pas-et-bien-moi-jaime-rsync/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 05:56:36 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technologie]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[time machine]]></category>

		<guid isPermaLink="false">http://tbergeron.com/?p=1255</guid>
		<description><![CDATA[Voici qu&#8217;est-ce qu&#8217;il arrive lorsque j&#8217;essai de faire une sauvegarde avec Time Machine vers un share réseau qui est en NTFS: ça « phail » lamentablement pour des technicalités qui auraient dus être pensées bien avant. Et après deux longues heures de recherche inutiles, j&#8217;ai finalement « péter ma coche » pour terminer en me fesant mon [...]]]></description>
			<content:encoded><![CDATA[<p>Voici qu&#8217;est-ce qu&#8217;il arrive lorsque j&#8217;essai de faire une sauvegarde avec Time Machine vers un share réseau qui est en NTFS: ça « phail » lamentablement pour des technicalités qui auraient dus être pensées bien avant.</p>
<p>Et après deux longues heures de recherche inutiles, j&#8217;ai finalement « péter ma coche » pour terminer en me fesant mon propre Time Machine avec rsync. C&#8217;est peut-être pas aussi jolie, et je n&#8217;aurai peut-être pas la chance de pouvoir restaurer un backup avec Time Machine mais au moins ça va fonctionner avec les paramètres de mon environnement.</p>
<p>En plus c&#8217;est bien navigable pareil comme les backups de Time Machine! À vous de le modifier comme vous voulez en y ajoutant des paramêtres avancés comme &laquo;&nbsp;&#8211;max-size=50M&nbsp;&raquo; pour prendre les fichiers qui sont pas plus gros que 50mo.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#! /bin/sh</span>
&nbsp;
<span style="color: #007800;">snapshot_dir</span>=<span style="color: #000000; font-weight: bold;">/</span>Volumes<span style="color: #000000; font-weight: bold;">/</span>USBHardDrive
<span style="color: #007800;">snapshot_id</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">date</span> +<span style="color: #000000; font-weight: bold;">%</span>Y<span style="color: #000000; font-weight: bold;">%</span>m<span style="color: #000000; font-weight: bold;">%</span>d<span style="color: #000000; font-weight: bold;">%</span>H<span style="color: #000000; font-weight: bold;">%</span>M<span style="color: #000000; font-weight: bold;">`</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>rsync <span style="color: #660033;">--archive</span> <span style="color: #660033;">--verbose</span> \
  <span style="color: #660033;">--delete</span> <span style="color: #660033;">--delete-excluded</span> \
  <span style="color: #660033;">--numeric-ids</span> <span style="color: #660033;">--extended-attributes</span> \
  <span style="color: #660033;">--one-file-system</span> \
  <span style="color: #660033;">--partial</span> \
  <span style="color: #660033;">--link-dest</span> ..<span style="color: #000000; font-weight: bold;">/</span>current<span style="color: #000000; font-weight: bold;">/</span> \
  <span style="color: #660033;">--relative</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/Network&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/System&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/Volumes&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/bin&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/cores&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/dev&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/mach_kernel&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/net&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/private&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/sbin&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/tmp&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/usr&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/var&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/.Spotlight-V100&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/.DS_Store&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/.localized&quot;</span> \
  <span style="color: #660033;">--exclude</span> <span style="color: #ff0000;">&quot;/._*&quot;</span> \
  <span style="color: #000000; font-weight: bold;">/</span> \
  <span style="color: #007800;">$snapshot_dir</span><span style="color: #000000; font-weight: bold;">/</span>in-progress<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #007800;">$snapshot_dir</span>
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #007800;">$snapshot_id</span>
<span style="color: #c20cb9; font-weight: bold;">mv</span> in-progress <span style="color: #007800;">$snapshot_id</span>
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> current
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> <span style="color: #007800;">$snapshot_id</span> <span style="color: #007800;">$snapshot_dir</span><span style="color: #000000; font-weight: bold;">/</span>current</pre></td></tr></table></div>

<p>Et voilà le travail! Vous pouvez maintenant mettre ce script dans vos crontab et dormir sans inquiètudes!</p>
]]></content:encoded>
			<wfw:commentRss>http://tbergeron.com/blog/time-machine-et-ntfs-ne-saiment-pas-et-bien-moi-jaime-rsync/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Maps API: Chercher avec un adresse</title>
		<link>http://tbergeron.com/technologie/google-maps-api-chercher-avec-un-adresse/</link>
		<comments>http://tbergeron.com/technologie/google-maps-api-chercher-avec-un-adresse/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 14:17:40 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Technologie]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://tbergeron.com/?p=1217</guid>
		<description><![CDATA[Ah, que j&#8217;ai chercher pour trouver une façon de chercher sur google maps par adresse. (Avec l&#8217;API et non par le service web). Voilà finalement ce que j&#8217;ai réussit à concocter: function load_map&#40;address, map_element&#41; &#123; if &#40;GBrowserIsCompatible&#40;&#41;&#41; &#123; map = new GMap2&#40;document.getElementById&#40;map_element&#41;&#41;; &#160; var geocoder = new GClientGeocoder&#40;&#41;; var cadPoint = geocoder.getLatLng&#40; address, function&#40;point&#41; &#123; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tbergeron.com/wp-content/uploads/2010/02/Google-maps_logo.gif" rel="shadowbox[post-1217];player=img;"><img class="alignright size-full wp-image-1219" title="Google-maps_logo" src="http://tbergeron.com/wp-content/uploads/2010/02/Google-maps_logo.gif" alt="" width="276" height="110" /></a>Ah, que j&#8217;ai chercher pour trouver une façon de chercher sur google maps par adresse. (Avec l&#8217;API et non par le service web).</p>
<p>Voilà finalement ce que j&#8217;ai réussit à concocter:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span> load_map<span style="color: #009900;">&#40;</span>address<span style="color: #339933;">,</span> map_element<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>GBrowserIsCompatible<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        map <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> GMap2<span style="color: #009900;">&#40;</span>document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span>map_element<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #003366; font-weight: bold;">var</span> geocoder <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> GClientGeocoder<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> cadPoint <span style="color: #339933;">=</span> geocoder.<span style="color: #660066;">getLatLng</span><span style="color: #009900;">&#40;</span>
          address<span style="color: #339933;">,</span>
          <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>point<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>point<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
              map.<span style="color: #660066;">setCenter</span><span style="color: #009900;">&#40;</span>point<span style="color: #339933;">,</span> <span style="color: #CC0000;">15</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
              map.<span style="color: #660066;">addOverlay</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">new</span> GMarker<span style="color: #009900;">&#40;</span>point<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #009900;">&#125;</span>
          <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        map.<span style="color: #660066;">hideControls</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Pour l&#8217;utiliser vous n&#8217;avez qu&#8217;à faire load_map(&#8217;123 ma rue province pays&#8217;, &#8216;map&#8217;);</p>
<p>Le premier paramètre est l&#8217;adresse textuelle, et le second l&#8217;élément dans lequel la map apparaîtera.<br />
PS: N&#8217;oubliez pas qu&#8217;il vous faut inclure l&#8217;API de gmaps avec votre numéro d&#8217;identification!</p>
<p>Pour finir, un petit « goodies » une méthode assez simple d&#8217;enlever le texte du bas-droit des maps en CSS. (Le copyright)</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#map_element</span> span <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Cela cache tout les spans de l&#8217;élément de votre map. Simple et efficace!</p>
]]></content:encoded>
			<wfw:commentRss>http://tbergeron.com/technologie/google-maps-api-chercher-avec-un-adresse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Réponse à « Guerre de clochers »</title>
		<link>http://tbergeron.com/blog/reponse-a-%c2%ab-guerre-de-clochers-%c2%bb/</link>
		<comments>http://tbergeron.com/blog/reponse-a-%c2%ab-guerre-de-clochers-%c2%bb/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 14:09:14 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technologie]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[fink]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[macports]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://tbergeron.com/?p=1208</guid>
		<description><![CDATA[Cet article est en lien direct à un article écrit par un collègue de travail: http://tr.im/OAHz Allez le lire : très bon article : ça fait réfléchir. Réponse: Je t&#8217;avouerai que je m&#8217;ennuie du monde linux, là où tout était possible ! Pour un « geek », programmeur, « sysadmin » ou « netadmin » [...]]]></description>
			<content:encoded><![CDATA[<p>Cet article est en lien direct à un article écrit par un collègue de travail:</p>
<p><a href=" http://tr.im/OAHz">http://tr.im/OAHz</a></p>
<p>Allez le lire : très bon article : ça fait réfléchir.</p>
<p><a href="http://tbergeron.com/wp-content/uploads/2010/02/mac_vs_windows_cord_clutter.jpg" rel="shadowbox[post-1208];player=img;"><img class="alignleft size-medium wp-image-1209" style="float: left; border: 0px initial initial;" title="mac_vs_windows_cord_clutter" src="http://tbergeron.com/wp-content/uploads/2010/02/mac_vs_windows_cord_clutter-300x155.jpg" alt="mac_vs_windows_cord_clutter" width="300" height="155" /></a></p>
<p>Réponse:</p>
<p>Je t&#8217;avouerai que je m&#8217;ennuie du monde linux, là où tout était possible ! Pour un « geek », programmeur, « sysadmin » ou « netadmin » évidemment.</p>
<p>Le monde Linux, quoi que formidable, requière beaucoup d&#8217;apprentissage. Oui oui, Ubuntu est « user friendly », etc. Mais fondamentalement, il va toujours falloir que tu finisses en console à te démerder pour fixer un problème que casi-personne n&#8217;a jamais eu.</p>
<p>Alors, reste que ce monde à une bien lourde clé à porter. Mais un coup que l&#8217;utilisateur est capable et comprends, tout un monde nouveau s&#8217;ouvre à lui et c&#8217;est ce que j&#8217;ai adoré de mes années Linux. (J&#8217;ai passé 2-3 ans sur 3-4 distributions différentes).</p>
<p>Mais un autre problème avec Linux et les utilisateurs qui ne savent pas vraiment quoi ils veulent est : ils ont trop de possibilités. Trop de distributions différentes. Mais heureusement la plus-que-large communauté est là pour aider pour ces problèmes.</p>
<p>Pour finir bien au sujet de Linux : il est possible de l&#8217;exécuter sur n&#8217;importe quelle machine et cela est formidable. Tu veux un « mega desktop flashy » tu peux l&#8217;avoir. Tu veux un « light desktop » et rapide, tu peux aussi t&#8217;en servir sans te restreindre à un certain « set » d&#8217;applications.</p>
<p>Ça me donne bien le goût de m&#8217;y remettre <img src='http://tbergeron.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Mais bon, ayant été un « Apple fanboy » pour les 2-3 dernières années je dois bien défendre un peu Mac. Alors, je m&#8217;y lance.</p>
<p>OS X à une base ouverte UNIX. Grâce à MacPorts et fink tu peux maintenant installer presque n&#8217;importe quel paquet linux.</p>
<p>Mac à des « guidelines » et les respecte grandement. Pourquoi ? Sous linux vous ne trouvez pas ça chiant quand vous avez une application QT avec une apparence et un autre avec GTK et une autre apparence ? C&#8217;est peut-être qu&#8217;esthétique mais bon, ça doit être mon côté féminin !</p>
<p>Ces guidelines permettent à la totalité des applications de se ressembler. Pourquoi ? Pour tout simplement ne pas confondre l&#8217;utilisateur, tout est bien à sa place et intuitif.</p>
<p>Un autre point, plus technique, est la gestion de la mémoire. Déjà essayé d&#8217;exécuter Windows dans VMWare sur Windows ? C&#8217;est pire que d&#8217;essayer de rentrer physiquement un autre ordinateur à l&#8217;intérieur d&#8217;un autre. Mais contrairement à Windows, Mac le fait comme un grand et sans problème.</p>
<p>Il est évident que le combat de Linux et Mac se rapproche de plus en plus, mais pour les gens comme moi qui ne veule pas trop souffrir pour installer un logiciel : Mac est là avec son installation drag-and-drop. (Oui linux tu peux faire un yum, apt-get, pacman, etc. Tu peux même le faire visuellement via Synaptic. Mais bon, bien des chances que tu ne trouveras pas le bon paquet avec la bonne version et que tu vas devoir plonger en command-line.)</p>
<p>Finalement, ce n&#8217;est pas parce que j&#8217;aime Mac que j&#8217;adore Apple directement. J&#8217;aime le principe que tout fonctionne sur tous les systèmes Apple (software sur hardware propriétaire), mais je déteste la façon dont Apple devient Microsoft. En voulant tout contrôler, restreindre les plateformes, etc. L&#8217;annonce de l&#8217;iPad m&#8217;a bien déçue. C&#8217;est vraiment : « Nous avons travaillé dix longues années pour créer le iPhone et nous avons décidé de juste le faire plus gros&#8230; Voici l&#8217;iPad ! »</p>
<p>Sur ce, merci de m&#8217;avoir fait réfléchir à ces sujets ! On en rediscutera au bureau <img src='http://tbergeron.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Liens reliés à l&#8217;article:</p>
<p><a href="http://www.macports.org/ ">http://www.macports.org</a></p>
<p><a href="http://www.finkproject.org/ ">http://www.finkproject.org</a></p>
<p><a href="http://www.apple.com/macosx/ ">http://www.apple.com/macosx</a></p>
<p><a href="http://www.apple.com/ipad/ ">http://www.apple.com/ipad</a></p>
<p><a href="http://www.apple.com/iphone/ ">http://www.apple.com/iphone</a></p>
<p><a href="http://www.ubuntu.com/ ">http://www.ubuntu.com</a></p>
<p><a href="http://www.vmware.com/">http://www.vmware.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tbergeron.com/blog/reponse-a-%c2%ab-guerre-de-clochers-%c2%bb/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google DNS, Bonne chance OpenDNS!</title>
		<link>http://tbergeron.com/technologie/google-dns-bonne-chance-opendns/</link>
		<comments>http://tbergeron.com/technologie/google-dns-bonne-chance-opendns/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 18:37:49 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Technologie]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[opendns]]></category>

		<guid isPermaLink="false">http://tbergeron.com/?p=1205</guid>
		<description><![CDATA[Google a fait encore un pas en avant dans la conquérance planétaire en nous permettant d&#8217;utiliser leur propre DNS afin de créer un internet plus sécuritaire et rapide. Mais ce que nous, innocents, peuple de l&#8217;ignorance, ne savons pas tous. C&#8217;est que: par l&#8217;utilisation des DNS de Google nous leur permettons de tracer tout nos [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tbergeron.com/wp-content/uploads/2009/12/google-public-dns.jpg" rel="shadowbox[post-1205];player=img;"><img class="alignright size-medium wp-image-1206" title="google-public-dns" src="http://tbergeron.com/wp-content/uploads/2009/12/google-public-dns-300x211.jpg" alt="google-public-dns" width="300" height="211" /></a>Google a fait encore un pas en avant dans la conquérance planétaire en nous permettant d&#8217;utiliser leur propre DNS afin de créer un internet plus <strong>sécuritaire et rapide</strong>.</p>
<p>Mais ce que nous, innocents, peuple de l&#8217;ignorance, ne savons pas tous. C&#8217;est que: par l&#8217;utilisation des DNS de Google nous leur permettons de <strong>tracer tout nos vas-et-viens de l&#8217;interweb</strong>.</p>
<p>Késako? Et oui, chaque clique sera enregistrer biensûre pour l&#8217;étude de la navigation en ligne. Tout cela est bien beau, jusqu&#8217;à temps que Google se décide et se retourne contre nous tous. J&#8217;entends déja des « Mais c&#8217;est impossible, Google sont gentil! ». Je répondrai à cela: « Pour le moment! ».</p>
<p><strong>Google est littéralement entrain de devenir l&#8217;internet. <span style="font-weight: normal;">Et cela mes amis, ça fait peur.</span></strong></p>
<p><strong><span style="font-weight: normal;">Vous vous rappelez quand les « Wallmarts » de ce monde ont débuté? Ouais, c&#8217;est exactement à ce moment là que tout les plus petits magasins ont tombés. Et j&#8217;ai bien peur que c&#8217;est cela qui finira par nous arriver.</span></strong></p>
<p><strong><span style="font-weight: normal;">Ou encore, lorsque Microsoft a implanté de force son Internet Explorer? Ça vous sonne pas un beau petit ChromeOS ça? Google écrase tout sur son passage, ils ont assez étés gentils maintenant ils ont l&#8217;air de vouloir être pris au sérieux.</span></strong></p>
<p><strong><span style="font-weight: normal;">Faites attention, et prévoyez le coup. C&#8217;est un conseil d&#8217;ami.</span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://tbergeron.com/technologie/google-dns-bonne-chance-opendns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone disponible chez Bell, Aujourd&#8217;hui!</title>
		<link>http://tbergeron.com/technologie/iphone-disponible-chez-bell-aujourdhui/</link>
		<comments>http://tbergeron.com/technologie/iphone-disponible-chez-bell-aujourdhui/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 14:41:02 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Technologie]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[bell]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[cellulaire]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobility]]></category>
		<category><![CDATA[téléphone]]></category>

		<guid isPermaLink="false">http://tbergeron.com/?p=1197</guid>
		<description><![CDATA[« It is November 4, 2009 and the Bell iPhone has officially launched in Canada! Head down to your local Bell or Apple Store for all the launch day awesomeness. » Et bien oui les amis, le iPhone est sortie chez Bell. Allez! Courrez vite! Et biensûre, je serai là, à faire la file! [iPhone [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://tbergeron.com/wp-content/uploads/2009/11/Bell11.jpg" rel="shadowbox[post-1197];player=img;"><img class="alignright size-medium wp-image-1203" title="Bell1" src="http://tbergeron.com/wp-content/uploads/2009/11/Bell11-300x179.jpg" alt="Bell1" width="300" height="179" /></a>« It is November 4, 2009 and the Bell iPhone has officially launched in Canada! Head down to your local Bell or Apple Store for all the launch day awesomeness. »</p></blockquote>
<p>Et bien oui les amis, le iPhone est sortie chez Bell. Allez! Courrez vite!</p>
<p>Et biensûre, je serai là, à faire la file!</p>
<p>[<a href="http://www.iphoneincanada.ca/x1zeros-corner/bell-iphone-has-arrived-in-canada/">iPhone In Canada</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://tbergeron.com/technologie/iphone-disponible-chez-bell-aujourdhui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
