<?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>Funandprog</title>
	<atom:link href="http://funandprog.fr/feed/" rel="self" type="application/rss+xml" />
	<link>http://funandprog.fr</link>
	<description>Mon actu Professionnel et Perso ..</description>
	<lastBuildDate>Thu, 03 Nov 2011 09:40:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>The HellCat &#8211; 11/11/11 à 11:11</title>
		<link>http://funandprog.fr/2011/11/03/the-hellcat-111111-a-1111/</link>
		<comments>http://funandprog.fr/2011/11/03/the-hellcat-111111-a-1111/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 09:40:45 +0000</pubDate>
		<dc:creator>Adrinoe</dc:creator>
				<category><![CDATA[Fixie]]></category>
		<category><![CDATA[Ma vie]]></category>
		<category><![CDATA[HellCat]]></category>
		<category><![CDATA[Lille]]></category>

		<guid isPermaLink="false">http://funandprog.fr/?p=433</guid>
		<description><![CDATA[Le 11 Novembre 2011 à 11:11 donnera le coup d&#8217;envoi d&#8217;un week end riche en sortie Fixie. le vendredi hellcat classic , il s&#8217;agit d&#8217;une alleycat avec secteur pavé la page facebook le samedi hellcat hell-ride, cette fois si sa sera un ride de 60km environ avec visite d&#8217;une brasserie la page facebook le dimanche hellcat X-hell [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="HellCat 2011" src="http://lajalousie.net/ajoute/stock/e57937316308cfe50d51612e433ad01666fa0ae2.png" alt="" width="533" height="755" /></p>
<p>Le 11 Novembre 2011 à 11:11 donnera le coup d&#8217;envoi d&#8217;un week end riche en sortie Fixie.<br />
le vendredi hellcat classic , il s&#8217;agit d&#8217;une alleycat avec secteur pavé<br />
<a href="http://www.facebook.com/event.php?eid=247620385282355" target="_blank">la page facebook</a></p>
<p>le samedi hellcat hell-ride, cette fois si sa sera un ride de 60km environ avec visite d&#8217;une brasserie<br />
<a href="http://www.facebook.com/event.php?eid=159340230820804" target="_blank">la page facebook</a></p>
<p>le dimanche hellcat X-hell , place au fun avec un fixie cross dans la citadelle<br />
<a href="http://www.facebook.com/event.php?eid=159340230820804" target="_blank">la page facebook</a></p>
<p>Aucune raison de ne pas venir il y en aura pour tous le monde.</p>
<p>inscription : <a href="http://hellcat-alleycat.net/" target="_blank">http://hellcat-alleycat.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://funandprog.fr/2011/11/03/the-hellcat-111111-a-1111/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Astuce : Initialiser ses champs personnaliser</title>
		<link>http://funandprog.fr/2011/06/07/astuce-initialiser-ses-champs-personnaliser/</link>
		<comments>http://funandprog.fr/2011/06/07/astuce-initialiser-ses-champs-personnaliser/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 22:03:17 +0000</pubDate>
		<dc:creator>Adrinoe</dc:creator>
				<category><![CDATA[Développement]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[add_action]]></category>
		<category><![CDATA[champs personnaliser]]></category>

		<guid isPermaLink="false">http://funandprog.fr/?p=414</guid>
		<description><![CDATA[Parfois une petit chose peut paraitre compliquer à faire quand on a jamais toucher au développement pour WordPress. Par exemple de pourvoir initialiser un champs personnaliser quand on crée un nouvel article . Chose demander chose faite, voici un petit bout de code à mettre dans le fichiers function.php de votre thèmes. /* on ajoute [...]]]></description>
			<content:encoded><![CDATA[<p>Parfois une petit chose peut paraitre compliquer à faire quand on a jamais toucher au développement pour WordPress.</p>
<p>Par exemple de pourvoir initialiser un champs personnaliser quand on crée un nouvel article .</p>
<p>Chose demander chose faite, voici un petit bout de code à mettre dans le fichiers function.php de votre thèmes.</p>
<pre class="brush: php; title: ;">
/* on ajoute un box dans l'administration */
add_action('admin_menu', 'val_default_add_custom_box');

function val_default_add_custom_box() {
     add_meta_box('val_default', 'Valeur Default', 'get_val_default_custom_box', 'post', 'side', 'high');
}

/* affiche la valeur du champ personnaliser dans la box creer */
function get_val_default_custom_box() {
     //get post meta value
     global $post;
     $custom = get_post_meta($post-&gt;ID,'val_default',true);

     // use nonce for verification
     echo '&lt;input type=&quot;hidden&quot; name=&quot;val_default_noncename&quot; id=&quot;val_default_noncename&quot; value=&quot;'.wp_create_nonce('val-default').'&quot; /&gt;';

     // The actual fields for data entry
     echo '&lt;label for=&quot;val_default&quot;&gt;Valeur de default&lt;/label&gt;';
	 if( $custom == &quot;&quot;) $custom = &quot;valeur default&quot;;
     echo '&lt;input type=&quot;text&quot; value=&quot;'.$custom.'&quot; id=&quot;val_default&quot; size=&quot;30&quot; tabindex=&quot;20&quot; name=&quot;val_default&quot;&gt; ';

}

/* on savegarde ce champ*/
add_action('save_post', 'val_default_save_postdata');

function val_default_save_postdata($post_id) {

 if ( defined( 'DOING_AUTOSAVE' ) &amp;&amp; DOING_AUTOSAVE )
      return; 

 if ( !wp_verify_nonce( $_POST['val_default_noncename'], &quot;val-default&quot; ) )
      return; 

 if ( !current_user_can( 'edit_post', $post_id ) ) return; 

 $mydata = $_POST['val_default']; 

  if( $mydata != &quot;valeur default&quot;) update_post_meta($post_id, 'val_default', $mydata);
  return $mydata;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://funandprog.fr/2011/06/07/astuce-initialiser-ses-champs-personnaliser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NUCULT TRICKS CONTEST &#8211; 12 JUIN 2011 &#8211; LILLE</title>
		<link>http://funandprog.fr/2011/05/30/nucult-tricks-contest-12-juin-2011-lille/</link>
		<comments>http://funandprog.fr/2011/05/30/nucult-tricks-contest-12-juin-2011-lille/#comments</comments>
		<pubDate>Mon, 30 May 2011 15:03:35 +0000</pubDate>
		<dc:creator>Adrinoe</dc:creator>
				<category><![CDATA[Actualité]]></category>
		<category><![CDATA[Fixie]]></category>
		<category><![CDATA[Ma vie]]></category>
		<category><![CDATA[Lille]]></category>

		<guid isPermaLink="false">http://funandprog.fr/?p=386</guid>
		<description><![CDATA[Ce Dimanche 12 juin aura lieu un contest Fixie. C&#8217;est un grand rendrez vous a ne pas manquez . Pour plus d&#8217;information : http://www.the-nucult.com/]]></description>
			<content:encoded><![CDATA[<p>Ce Dimanche 12 juin aura lieu un contest Fixie.</p>
<p>C&#8217;est un grand rendrez vous a ne pas manquez .</p>
<p><a href="http://24.media.tumblr.com/tumblr_livz4mr1wq1qbg885o1_500.jpg"><img class="aligncenter" title="Nucult Contest Lille" src="http://24.media.tumblr.com/tumblr_livz4mr1wq1qbg885o1_500.jpg" alt="Nucult Contest Lille" width="500" height="684" /></a></p>
<p>Pour plus d&#8217;information : <a href="http://www.the-nucult.com/">http://www.the-nucult.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://funandprog.fr/2011/05/30/nucult-tricks-contest-12-juin-2011-lille/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actualité Vtt : la-trace.com, Course des Chti&#8217;s et Cassel Trophy</title>
		<link>http://funandprog.fr/2011/03/25/actualite-vtt-trace-com-course-chti-cassel-trophy/</link>
		<comments>http://funandprog.fr/2011/03/25/actualite-vtt-trace-com-course-chti-cassel-trophy/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 08:57:52 +0000</pubDate>
		<dc:creator>Adrinoe</dc:creator>
				<category><![CDATA[Actualité]]></category>
		<category><![CDATA[Lille Vtt]]></category>
		<category><![CDATA[Ma vie]]></category>
		<category><![CDATA[Cassel]]></category>
		<category><![CDATA[Ohlain]]></category>
		<category><![CDATA[vtt]]></category>

		<guid isPermaLink="false">http://funandprog.fr/?p=367</guid>
		<description><![CDATA[Sa fait pas mal de temps que j&#8217;ai pas donnée de news au niveau de ma passion pour le vélo . Avec le retour d&#8217;un temps appréciable depuis plusieurs jours, il est temps de se préparer pour les belles sorties que les prochains jours vont nous offrir. la-trace.com : Publier et partager des itinéraires VTT [...]]]></description>
			<content:encoded><![CDATA[<p>Sa fait pas mal de temps que j&#8217;ai pas donnée de news au niveau de ma passion pour le vélo .</p>
<p>Avec le retour d&#8217;un temps appréciable depuis plusieurs jours, il est temps de se préparer pour les belles sorties que les prochains jours vont nous offrir.</p>
<h3>la-trace.com : Publier et partager des itinéraires VTT pour votre GPS</h3>
<p><a href="http://funandprog.fr/wp-content/uploads/2011/03/la_trace_com.jpg"><img class="alignleft size-full wp-image-368" title="latrace.com" src="http://funandprog.fr/wp-content/uploads/2011/03/la_trace_com.jpg" alt="" width="258" height="143" /></a>Dans le domaine de partage de circuit vtt il y a un petit nouveau à suivre , il s&#8217;agit de <a href="http://la-trace.com/" target="_blank">la-trace.com</a>.</p>
<p>C&#8217;est toujours intéressant ce genre de site pour sa faire des sorties dans des environs encore inconnus .</p>
<p>Plus d&#8217;infos : <a title="la trace" href="la-trace.com" target="_blank">http://www.la-trace.com</a></p>
<p>Twitter : <a title="twitter de la trace.com" href="http://twitter.com/latracepointcom" target="_blank">http://twitter.com/latracepointcom</a></p>
<h3>La course des Chti&#8217;s</h3>
<p>Le 10 Avril aura lieu la 4ème édition de la Course des Chti&#8217;s à Ohlain .<br />
Cet événement augmente d&#8217;année en année grâce à une organisation au top et un parcours toujours excellent.<br />
Les pré-inscriptions sont ouvertes alors n&#8217;hésiter pas.</p>
<p>Plus d&#8217;infos : <a title="Course des cht'is" href="http://coursedeschtis.com/" target="_blank">http://coursedeschtis.com/</a></p>
<h3>Cassel Trophy</h3>
<p><a href="http://funandprog.fr/wp-content/uploads/2011/03/cassel_trophy_20111.jpg"><img class="alignleft size-full wp-image-370" title="cassel_trophy_2011" src="http://funandprog.fr/wp-content/uploads/2011/03/cassel_trophy_20111.jpg" alt="" width="261" height="193" /></a>La semaine suivante de la course , le 17 Avril, aura lieu le Cassel Trophy , il s&#8217;agit tout simplement d&#8217;une des meilleurs randonnées vtt de la région . Pourtant il ne s&#8217;agit que de sa 6ème édition.</p>
<p>La Randonnée est accessible uniquement après une pré-inscription.<br />
Plus d&#8217;info : <a title="Cassel Trohpy" href="http://www.casseltrophy.com" target="_blank">http://www.casseltrophy.com</a></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;"><a href="http://la-trace.com/" target="_blank">la-trace.com</a></div>
]]></content:encoded>
			<wfw:commentRss>http://funandprog.fr/2011/03/25/actualite-vtt-trace-com-course-chti-cassel-trophy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Utiliser les infomations de la météo Google</title>
		<link>http://funandprog.fr/2011/01/18/utiliser-les-infomations-de-la-meteo-google/</link>
		<comments>http://funandprog.fr/2011/01/18/utiliser-les-infomations-de-la-meteo-google/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 08:59:23 +0000</pubDate>
		<dc:creator>Adrinoe</dc:creator>
				<category><![CDATA[Développement]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[XMl]]></category>

		<guid isPermaLink="false">http://funandprog.fr/?p=347</guid>
		<description><![CDATA[Dans un précédents article j&#8217;ai parlé de l&#8217;existence d&#8217;une api Google pour la météo. Par exemple si vous cherché la météo de Lille : http://www.google.com/ig/api?weather=lille . Cela va vous retourne un XML qui ne reste plus qu&#8217;a traiter . Voici un fonction qui permet de rechercher et insérer les résultats dans un tableau PHP. public [...]]]></description>
			<content:encoded><![CDATA[<p>Dans un précédents article j&#8217;ai parlé de l&#8217;existence d&#8217;une api Google pour la météo.<br />
Par exemple si vous cherché la météo de Lille : <a href="http://www.google.com/ig/api?weather=lille" target="_blank">http://www.google.com/ig/api?weather=lille</a> .<br />
Cela va vous retourne un XML qui ne reste plus qu&#8217;a traiter .<br />
<a href="http://funandprog.fr/wp-content/uploads/2011/01/xml_weather_google_lille.png"><img class="aligncenter size-full wp-image-351" title="xml_weather_google_lille" src="http://funandprog.fr/wp-content/uploads/2011/01/xml_weather_google_lille.png" alt="" width="541" height="780" /></a><br />
Voici un fonction qui permet de rechercher et insérer les résultats dans un tableau PHP.</p>
<pre class="brush: php; title: ;">
public static function searchGoogleWeather($paramCity)
    {
        $meteoCity =  Array();
        $requestAddress = &quot;http://www.google.com/ig/api?weather=&quot; .urlencode($paramCity).&quot;&amp;oe=utf-8&amp;hl=fr&quot;;
        $data = file_get_contents($requestAddress);
        $xml  = simplexml_load_string($data);
        if($xml)
        {
            if($xml-&gt;weather-&gt;forecast_information)
            {
                // on a un réponse
                foreach($search as $item)
                {
                    // on récupére les infomation voulu , ici ceux du jour
                    $icon = $item-&gt;current_conditions-&gt;icon['data'];
                    $icon = str_replace(&quot;/ig/images/weather/&quot;,&quot;&quot;,$icon);
                    $meteoCity[&quot;conditionActuel&quot;]   = utf8_decode(strtolower($item-&gt;current_conditions-&gt;condition['data']));
                    $meteoCity[&quot;tempActuel&quot;]        = utf8_decode($item-&gt;current_conditions-&gt;temp_c['data']);
                    $meteoCity[&quot;humActuel&quot;]         = utf8_decode($item-&gt;current_conditions-&gt;humidity['data']);
                    $meteoCity[&quot;ventActuel&quot;]        = utf8_decode($item-&gt;current_conditions-&gt;wind_condition['data']);
                    $meteoCity[&quot;icon&quot;]              = $icon;
                    foreach($item-&gt;forecast_conditions as $new) {
                        $meteoCity[&quot;tempHigh&quot;]         = ($new-&gt;high['data']);
                        $meteoCity[&quot;tempLow&quot;]          = ($new-&gt;low['data']);
                        break;
                    }
                break;
                }
                return $meteoCity;

            }
            else
            {
                // la recherche n'as pas aboutie
                return false;
            }
        }
        else
        {
            //erreur lors de la recuperation du xml
            return false;
        }

    }
</pre>
<p>Ensuite il ne reste plus qu&#8217;a visualiser le résultat :</p>
<pre class="brush: php; title: ;">
&lt;?php
$meteo = libTools::searchGoogleWeather($city);
if($meteo != FALSE):
?&gt;
&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;meteo&quot; style=&quot;margin-left:15px;margin-top:10px;&quot;&gt;
    &lt;div style=&quot;float:left;width:45px;&quot;&gt;
        &lt;img src=&quot;images/meteo/&lt;?php echo $meteo[&quot;icon&quot;];?&gt;&quot; id='current_weather_image' /&gt;
    &lt;/div&gt;
     &lt;div style=&quot;float:left;&quot;&gt;
&lt;?php
    echo $meteo[&quot;tempActuel&quot;].'° '.$meteo[&quot;conditionActuel&quot;].'&lt;br/&gt;';
    echo '&lt;span id=&quot;high_temperature&quot;&gt;Max : '.$meteo[&quot;tempHigh&quot;].'°&lt;/span&gt; / &lt;span id=&quot;low_temperature&quot;&gt;Min : '.$meteo[&quot;tempLow&quot;].'°&lt;/span&gt;';
?&gt;
     &lt;/div&gt;
&lt;/div&gt;
&lt;?php
endif;
?&gt;
</pre>
<p>Pour ce qui est de la feuille de style je vous laisse faire comme vous le sentez pour vous aidez voici un zip avec les images que j&#8217;utilise .<br />
<a href="http://funandprog.fr/wp-content/uploads/2011/01/icon-meteo-Google1.png"><img class="alignleft size-thumbnail wp-image-354" title="icon meteo Google" src="http://funandprog.fr/wp-content/uploads/2011/01/icon-meteo-Google1-150x150.png" alt="" width="150" height="150" /></a></p>
<a class="downloadlink" href="http://funandprog.fr/wp-content/plugins/download-monitor/download.php?id=4" title="Version1.0 downloaded 208 times" >Icon Meteo Google (208)</a>
]]></content:encoded>
			<wfw:commentRss>http://funandprog.fr/2011/01/18/utiliser-les-infomations-de-la-meteo-google/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Contourner un proxy via file_get_contents ( PHP )</title>
		<link>http://funandprog.fr/2011/01/13/contourner-un-proxy-via-file_get_contents-php/</link>
		<comments>http://funandprog.fr/2011/01/13/contourner-un-proxy-via-file_get_contents-php/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 09:05:36 +0000</pubDate>
		<dc:creator>Adrinoe</dc:creator>
				<category><![CDATA[Actualité]]></category>
		<category><![CDATA[Développement]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://funandprog.fr/?p=339</guid>
		<description><![CDATA[Pour le besoin d&#8217;un nouveau projet je fait appel à un web services Google pour récupérer la météo . http://www.google.com/ig/api?weather . Je reviendrai sur ce Web services sur un prochain article . Si j&#8217;utilisai le lien directement dans un navigateur tel que Firefox aucun problème mais par contre quand j&#8217;utilisai file_get_contents il me retourner rien [...]]]></description>
			<content:encoded><![CDATA[<p>Pour le besoin d&#8217;un nouveau projet je fait appel à un web services Google pour récupérer la météo .</p>
<p>http://www.google.com/ig/api?weather .</p>
<p>Je reviendrai sur ce Web services sur un prochain article .</p>
<p>Si j&#8217;utilisai le lien directement dans un navigateur tel que Firefox aucun problème mais par contre quand j&#8217;utilisai file_get_contents il me retourner rien &#8230;</p>
<p>Après réflexion le problème vient du proxy au sein de mon environnement de travail .</p>
<p>Voici une solution pour récupérer l&#8217;information :</p>
<pre class="brush: php; title: ;">
$options = array('http' =&gt;
array(  'method'    =&gt; &quot;GET&quot;,
'proxy'           =&gt; &quot;url_du_proxy:port&quot;,
'request_fulluri' =&gt; true)
);
$context   = stream_context_create($options);
$data      = file_get_contents($url_de_linforation_a_recuperer, false, $context);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://funandprog.fr/2011/01/13/contourner-un-proxy-via-file_get_contents-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lien utiles</title>
		<link>http://funandprog.fr/2010/07/01/lien-utiles/</link>
		<comments>http://funandprog.fr/2010/07/01/lien-utiles/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 22:23:53 +0000</pubDate>
		<dc:creator>Adrinoe</dc:creator>
				<category><![CDATA[Actualité]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[Wpmu]]></category>

		<guid isPermaLink="false">http://funandprog.fr/?p=266</guid>
		<description><![CDATA[Wordpress  : Wordpress Mu , WP3.0, administration Wordpress .
Design : 1 psd par jours
Disvers : Menu Js , FBML Facebook
]]></description>
			<content:encoded><![CDATA[<h3>WordPress</h3>
<ul>
<li>WPMU Functions :  <a href="http://codex.wordpress.org/WPMU_Functions" target="_blank">http://codex.wordpress.org/WPMU_Functions</a></li>
<li>Sitemap sans Plugins : <a href="http://wpchannel.com/creer-sitemap-plugin-wordpress/" target="_blank">http://wpchannel.com/creer-sitemap-plugin-wordpress/</a></li>
<li>Portfolio Plugin : <a href="http://www.gethifi.com/blog/a-jquery-plugin-to-create-an-interactive-filterable-portfolio-like-ours" target="_blank">http://www.gethifi.com/blog/a-jquery-plugin-to-create-an-interactive-filterable-portfolio-like-ours</a></li>
<li>Activer le WPMU de WordPress 3.0 : <a href="http://wpchannel.com/activer-fonctionnalites-multi-sites-wordpress-3-0/" target="_blank">http://wpchannel.com/activer-fonctionnalites-multi-sites-wordpress-3-0/</a></li>
<li>Plugins pour l&#8217;administration de WordPress : <a href="http://www.lejournaldublog.com/plugins-pour-optimiser-votre-admin-wordpress/" target="_blank">http://www.lejournaldublog.com/plugins-pour-optimiser-votre-admin-wordpress/</a></li>
</ul>
<h3>Design</h3>
<ul>
<li>1 psd par jour  :  <a href="http://365psd.com">365psd.com</a></li>
</ul>
<h3>Divers</h3>
<ul>
<li>Menu JS <a href="http://users.tpg.com.au/j_birch/plugins/superfish/" target="_blank">http://users.tpg.com.au/j_birch/plugins/superfish/</a></li>
<li>FBML Facebook <a href="http://www.waanser.com/php/api-facebook/873-le-fbml-est-les-formulaires.html">http://www.waanser.com/php/api-facebook/873-le-fbml-est-les-formulaires.html</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://funandprog.fr/2010/07/01/lien-utiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programme Vtt Avril Mai</title>
		<link>http://funandprog.fr/2010/03/23/programme-vtt-avril-mai/</link>
		<comments>http://funandprog.fr/2010/03/23/programme-vtt-avril-mai/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 14:40:54 +0000</pubDate>
		<dc:creator>Adrinoe</dc:creator>
				<category><![CDATA[Lille Vtt]]></category>
		<category><![CDATA[Ma vie]]></category>
		<category><![CDATA[Course de chtis]]></category>
		<category><![CDATA[D4B]]></category>
		<category><![CDATA[Irwego]]></category>
		<category><![CDATA[LilleVtt]]></category>
		<category><![CDATA[rdhf]]></category>

		<guid isPermaLink="false">http://funandprog.fr/?p=260</guid>
		<description><![CDATA[Une grosse période Sportive arrive, ce qui va faire du bien après la période d&#8217;examen &#8230; En vue de l&#8217;objectif de cette année qui est de finir le raid des Haute Fagnes le 13 juin , 65 km (1700 m dénivelé positif). Je me suis concocté un petit Programme : Samedi 27 mars la D4B [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://funandprog.fr/wp-content/uploads/2010/03/DSC_6676.jpg"><img class="aligncenter size-full wp-image-261" title="Lille Vtt " src="http://funandprog.fr/wp-content/uploads/2010/03/DSC_6676-e1269355090126.jpg" alt="Lille Vtt Raisme" width="540" height="359" /></a></p>
<p>Une grosse période Sportive arrive, ce qui va faire du bien après la période d&#8217;examen &#8230;</p>
<p>En vue de l&#8217;objectif de cette année qui est de finir le raid des Haute Fagnes le 13 juin , 65 km (1700 m dénivelé positif).</p>
<p>Je me suis concocté un petit Programme :</p>
<ul>
<li>Samedi 27 mars <a href="http://d4bcycle.blogspot.com/2010/03/la-db4-premiere-du-nom.html">la D4B</a></li>
<li>Dimanche 28 sortie Enduo à Raisme avec le team Lille Vtt</li>
<li>Le week end du 3 Avril direction les Vosges pour le stage avec <a href="http://www.irwego.com/">Irwego</a></li>
<li>le 11 Avril <a href="http://www.vtt5962.com/course_des_chtis/">course des Chti</a></li>
<li>18 avril <a href="casselvtt.com/casseltrophy/index.html">Cassel Trophy</a></li>
<li>2 mai <a href="http://raid.des.geants.2010.free.fr/">Raid des Géants</a></li>
<li>13 mai course FFC Wingles</li>
</ul>
<p>Si je trouve le temps je risque de rajouté quelque sorti <img src='http://funandprog.fr/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Allez op on finis les révisions et début de l&#8217;entraînement ce Week end <img src='http://funandprog.fr/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://funandprog.fr/2010/03/23/programme-vtt-avril-mai/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WP Box Simple &#8211; Ou les base pour crée un plugin WordPress</title>
		<link>http://funandprog.fr/2010/02/03/wp-box-simple-ou-les-base-pour-cree-un-plugin-wordpress/</link>
		<comments>http://funandprog.fr/2010/02/03/wp-box-simple-ou-les-base-pour-cree-un-plugin-wordpress/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 15:41:52 +0000</pubDate>
		<dc:creator>Adrinoe</dc:creator>
				<category><![CDATA[Actualité]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://funandprog.fr/?p=244</guid>
		<description><![CDATA[Voila je vient de créer un petit plugin que j&#8217;ai nommé  WP Box Simple . Il permet de Créer , Lister et Editer une Box . Un Box c&#8217;est tout simplement un petit Texte  , avec sont titre . Pour les afficher sur votre Blog , deux possibilités : A l&#8217;aide du Widget ( en [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://funandprog.fr/wp-content/uploads/2010/02/mise-a-jour-wordpress.jpg"><img class="alignleft size-medium wp-image-247" title="Wordpress" src="http://funandprog.fr/wp-content/uploads/2010/02/mise-a-jour-wordpress-300x282.jpg" alt="" width="300" height="282" /></a></p>
<p>Voila je vient de créer un petit plugin que j&#8217;ai nommé  WP Box Simple .</p>
<p>Il permet de Créer , Lister et Editer une Box .</p>
<p>Un Box c&#8217;est tout simplement un petit Texte  , avec sont titre .</p>
<p>Pour les afficher sur votre Blog , deux possibilités :</p>
<p>A l&#8217;aide du Widget ( en ayant préalablement activé l&#8217;option) , ou alors avec le shortcode &laquo;&nbsp;box&nbsp;&raquo; ( [box id=1] )</p>
<p>Pour plus d&#8217;info  n&#8217;hésitez pas a laissez un commentaire .</p>
<p><em>info : mise a jour de l&#8217;archive après correction de la fonction delete ..</em></p>
<a class="downloadlink" href="http://funandprog.fr/wp-content/plugins/download-monitor/download.php?id=2" title="Version1.3 downloaded 417 times" >WP Box Simple (417)</a>
<p>Le plugin se trouve également sur WordPress.org : <a href="http://wordpress.org/extend/plugins/wp-box-simpple/" target="_blank">http://wordpress.org/extend/plugins/wp-box-simpple/</a></p>
<p>A la demande de david voici une version compatible WP 2.7 : <a class="downloadlink" href="http://funandprog.fr/wp-content/plugins/download-monitor/download.php?id=3" title="Version1.1 downloaded 257 times" >WP box simple - WP 2.7 (257)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://funandprog.fr/2010/02/03/wp-box-simple-ou-les-base-pour-cree-un-plugin-wordpress/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Générer un beau nuage de tags</title>
		<link>http://funandprog.fr/2010/01/28/generer-un-beau-nuage-de-tags/</link>
		<comments>http://funandprog.fr/2010/01/28/generer-un-beau-nuage-de-tags/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 09:44:43 +0000</pubDate>
		<dc:creator>Adrinoe</dc:creator>
				<category><![CDATA[Les inutiles]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://funandprog.fr/?p=230</guid>
		<description><![CDATA[Par pur hasard je vien de découvir http://www.wordle.net/ . Il permet de faire de très beau nuage de Tags . Chose assez original il est développé en Java . Vous pouvai soit écrire directement vos propre mot clef , ou utiliser un flux rss d&#8217;un site ou blog ou encore utilisé votre compte del.icio.us Voici [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://funandprog.fr/wp-content/uploads/2010/01/inutile_1.jpg"></a><a href="http://funandprog.fr/wp-content/uploads/2010/01/screen-capture-4.png"><img class="size-medium wp-image-234 aligncenter" title="screen-capture-4" src="http://funandprog.fr/wp-content/uploads/2010/01/screen-capture-4-300x167.png" alt="" width="300" height="167" /></a></p>
<p>Par pur hasard je vien de découvir <a href="http://www.wordle.net/">http://www.wordle.net/</a> .</p>
<p>Il permet de faire de très beau nuage de Tags .</p>
<p>Chose assez original il est développé en Java .</p>
<p>Vous pouvai soit écrire directement vos propre mot clef , ou utiliser un flux rss d&#8217;un site ou blog ou encore utilisé votre compte del.icio.us</p>
<p>Voici quelque screen de ce qu&#8217;on peut faire avec :</p>

<a href='' title='Nuage 1'><img width="150" height="150" src="http://funandprog.fr/wp-content/uploads/2010/01/screen-capture-2-150x150.png" class="attachment-thumbnail" alt="Nuage 1" title="Nuage 1" /></a>
<a href='' title='screen-capture-1'><img width="150" height="150" src="http://funandprog.fr/wp-content/uploads/2010/01/screen-capture-1-150x150.png" class="attachment-thumbnail" alt="screen-capture-1" title="screen-capture-1" /></a>
<a href='' title='screen-capture-3'><img width="150" height="150" src="http://funandprog.fr/wp-content/uploads/2010/01/screen-capture-3-150x150.png" class="attachment-thumbnail" alt="screen-capture-3" title="screen-capture-3" /></a>
<a href='' title='screen-capture-4'><img width="150" height="150" src="http://funandprog.fr/wp-content/uploads/2010/01/screen-capture-4-150x150.png" class="attachment-thumbnail" alt="screen-capture-4" title="screen-capture-4" /></a>
<a href='' title='inutile_1'><img width="150" height="150" src="http://funandprog.fr/wp-content/uploads/2010/01/inutile_1-150x150.jpg" class="attachment-thumbnail" alt="inutile_1" title="inutile_1" /></a>

<p>Par contre petiti point négatif ,il n&#8217;existe pas de plugins wordpress capable de pouvoir faire ce genre de nuage .</p>
<p>Il y a bien wp_cumlus qui crée un sphére de moc clefs mais ce qui est pas mal ici c&#8217;est la diversité des couleurs et de la rotation des mots clefs .</p>
]]></content:encoded>
			<wfw:commentRss>http://funandprog.fr/2010/01/28/generer-un-beau-nuage-de-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

