<?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>nyamsprod</title>
	<atom:link href="http://www.nyamsprod.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nyamsprod.com/blog</link>
	<description>Pas un seul de vos ancêtres n&#039;est mort jeune. Ils ont tous copulé au moins une fois.</description>
	<lastBuildDate>Wed, 30 May 2012 08:51:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>CSS calc</title>
		<link>http://www.nyamsprod.com/blog/2012/css-calc/</link>
		<comments>http://www.nyamsprod.com/blog/2012/css-calc/#comments</comments>
		<pubDate>Fri, 25 May 2012 13:28:59 +0000</pubDate>
		<dc:creator>nyamsprod</dc:creator>
				<category><![CDATA[WebDevs]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[calc]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Gecko]]></category>
		<category><![CDATA[Presto]]></category>
		<category><![CDATA[trident]]></category>
		<category><![CDATA[Webkit]]></category>

		<guid isPermaLink="false">http://www.nyamsprod.com/blog/?p=1983</guid>
		<description><![CDATA[Le support pour la propriété CSS calc dans les navigateurs s'améliore de jour en jour]]></description>
			<content:encoded><![CDATA[<p>Je viens de remarquer que Chrome s&#8217;est récemment mis à supporter la propriété <code>calc</code>. Encore un peu d&#8217;efforts et Safari aussi le supportera, il ne manque plus que le navigateur d&#8217;Opera à l&#8217;appel pour enfin avoir un nouvel outils tout puissant pour améliorer la présentation des pages HTML en attendant tous les nouveaux modèles à l&#8217;essaie ou en discussion.</p>
<p>On peut <a title="Suivre la progression du support de la propriété Calc sur les différents navigateurs" href="http://caniuse.com/#feat=calc">suivre la progression du support de la propriété calc sur l&#8217;excellent site caniuse.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyamsprod.com/blog/2012/css-calc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Background Image and Textarea</title>
		<link>http://www.nyamsprod.com/blog/2012/background-image-and-textarea/</link>
		<comments>http://www.nyamsprod.com/blog/2012/background-image-and-textarea/#comments</comments>
		<pubDate>Fri, 18 May 2012 09:48:56 +0000</pubDate>
		<dc:creator>nyamsprod</dc:creator>
				<category><![CDATA[WebDevs]]></category>
		<category><![CDATA[Background]]></category>
		<category><![CDATA[background-size]]></category>
		<category><![CDATA[border-image]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Gecko]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[resize]]></category>
		<category><![CDATA[textarea]]></category>
		<category><![CDATA[Webkit]]></category>

		<guid isPermaLink="false">http://www.nyamsprod.com/blog/?p=1954</guid>
		<description><![CDATA[How to style the textarea tag with a background image in modern browser that support texteara resize]]></description>
			<content:encoded><![CDATA[<p>Using a single background image on a <code>textarea</code> to change its presentation is no so trivial after all. Modern browser engine (Gecko and Webkit, for now) allow <code>textarea</code> to be resize by the user. This resize that I&#8217;ve already talk about in another post can easily break your design if you don&#8217;t adapt your CSS . Here&#8217;s a technique that I use to mitigate the new behaviour in modern browser.</p>
<p>To start with, here is a simple rule that should work on any browser (IE8+).</p>
<pre lang="css">textarea {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:276px;
	height:172px;
	padding:20px;
	overflow:auto;
	border:none;
	background:#fff url(background.png) no-repeat center scroll;
}</pre>
<p>The problem with this rule is that in modern browsers you can resize the <code>textarea</code> tag as you wish, which means that on resize my image design will break since the background image will not adapt to the resized <code>textarea</code>.<span id="more-1954"></span></p>
<h2>using CSS3 resize property</h2>
<p>If you don&#8217;t want your user to break your design by resizing the <code>textarea</code> the simplest solution it&#8217;s to disallow the resize through CSS. this solution is simple, effective and backward compatible. The only problem with this solution is that you remove a very handy functionality from your website only because you don&#8217;t know how to work with it <img src='http://www.nyamsprod.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  .</p>
<pre lang="css">textarea {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:276px;
	height:172px;
	padding:20px;
	overflow:auto;
	border:none;
	background:#fff url(background.png) no-repeat center scroll;
	<strong><em>-moz-resize:none; resize:none;</em></strong>
}</pre>
<h2>using CSS3 Background module</h2>
<p>My first attempt to find a simple solution to my problem was to use the CSS3 property: <a title="Background-size on the MDN website" href="https://developer.mozilla.org/en/CSS/background-size" target="_blank">background-size</a>. Which means that I just had to add a new property to my rule.</p>
<pre lang="css">textarea {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:276px;
	height:172px;
	padding:20px;
	overflow:auto;
	border:none;
	background:#fff url(background.png) no-repeat center scroll;
	<strong><em>background-size:100% 100%;</em></strong>
}</pre>
<p>In doing so, I know that my image will <em>automagically</em> adapt to the <code>textarea</code> resize. But I&#8217;ve introduced a new problem, the image ratio is never preserved which means that on resize, the image can be deformed and the result is not quite what I wanted. So even if this solution works and is backward compatible, the result is not great. So my suggestion is to avoid this technique. You may try to work around the problem using the min/max-height properties as well as the min/max-width property to further <a title="Re-styling the textarea tag in recent browsers" href="http://www.nyamsprod.com/blog/2011/styling-textarea-tag/">style the textarea in modern browser.</a> But the loss of ratio is too important to be overlooked.</p>
<h2>Using CSS3 Border module</h2>
<p>Since I was not happy with this method, I tried another approach by using the CSS3 border module property: <a title="Border-image on the MDN website" href="https://developer.mozilla.org/en/CSS/border-image" target="_blank">border-image</a>. With this property, the image is sliced and repeated on the tag border <a title="Border-image explained" href="http://css-tricks.com/understanding-border-image/" target="_blank">following some specific rules</a>. So whenever you resize the <code>textarea</code>, the image ratio remains intact and you finally get the resulting effect you wanted. You may think that everything is fine &#8230; but wait , this is CSS3 we&#8217;re talking about.</p>
<pre lang="css">textarea {
	width:276px;
	height:172px;
	overflow:auto;
	border-width:5x;
	border-type:solid;
	border-color:transparent;
	<strong><em>-webkit-border-image:url(textarea.png) 5 repeat;</em></strong>
	<strong><em>-moz-border-image:url(textarea.png) 5 repeat;</em></strong>
	<strong><em>-ms-border-image:url(textarea.png) 5 repeat;</em></strong>
	<strong><em>-o-border-image:url(textarea.png) 5 repeat;</em></strong>
	<strong><em>border-image:url(textarea.png) 5 repeat;</em></strong>
	<strong><em>background-color:#fff;</em></strong>
}</pre>
<p>Some points to consider:</p>
<ul>
<li>I used the border module not the background module so we do not use the <code>background-image</code> property.</li>
<li>Since the border-image is relatively new <a title="When can I use border-image" href="http://caniuse.com/#search=border-image" target="_blank">it is not supported on IE browsers</a>. Which means that on old browser and in IE, you&#8217;ll see no background image and no border either, so we need to create a fallback solution.</li>
</ul>
<h2><del>Modernizr to the rescue</del></h2>
<p><del>To try to mitigate these issues, I had to rely on the excellent <a title="is an open-source JavaScript library that helps you build the next generation of HTML5 and CSS3-powered websites." href="http://www.modernizr.com" target="_blank">javascript framework modernizr</a> which can detect browser support for the <code>border-image</code> property. With modernizr help, I only switch to the modern border module way only when possible. So When IE support the <code>border-image</code> property it will <em>automagically</em> switch to the border image module way.</del></p>
<h2>Always read the Spec</h2>
<p>After reading again the specification for the border-image property, in turns out that you can achieve a backward compatibility rendering without Javascript <img src='http://www.nyamsprod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  . The border-image has a value called fill which specify the following :</p>
<blockquote><dl>
<dt>fill<small> (optional)</small></dt>
<dd>If the &laquo;&nbsp;fill&nbsp;&raquo; keyword is present, the middle part of the border-image is preserved, and drawn as the background-image of the image.</dd>
</dl>
</blockquote>
<p>So by using this <code>fill</code> value in border-image supporting browser we draw the image middle part above the declared <code>background-image</code>. By doing so we can specify both rules and gain a fallback behaviour <img src='http://www.nyamsprod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
<pre lang="css">.full {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:276px; height:172px; overflow:auto;
	background:#fff url(pattern.png) no-repeat center scroll;
	border:20px solid transparent;
    /* Early Implementations the default behaviour was fill and/or fill was not supported */
    -webkit-border-image:url(pattern.png) 20 repeat;
       -moz-border-image:url(pattern.png) 20 repeat;
         -o-border-image:url(pattern.png) 20 repeat;
    /* new implementation: fill must be specified */
    -webkit-border-image:url(pattern.png) 20 fill repeat;
       -moz-border-image:url(pattern.png) 20 fill repeat;
         -o-border-image:url(pattern.png) 20 fill repeat;
    /* standard specification */
            border-image:url(pattern.png) 20 fill repeat;
}</pre>
<h2>Caveats</h2>
<ul>
<li><del>First, you need to have your JavaScript activated to make this solution works. Always keep this in mind.</del></li>
<li><del>Second,</del> if IE start supporting the <code>textarea</code> resize attribute without supporting the <code>border-image</code> CSS property, my Solution won&#8217;t work since the two could be implemented separatly in a browser.</li>
<li>Because we&#8217;re using 2 different css modules, the scrollbar position changes depending on the solution used. You may view theses changes when comparing my test page rendering in Opera.</li>
</ul>
<p>To summarize my findings I&#8217;ve created a <a title="Styling Textarea with a backgroudn Image" href="http://www.nyamsprod.com/test/textarea/">test page with all the techniques explained</a> here with some comments to explain what I did. Feel free to use and abuse this page <img src='http://www.nyamsprod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyamsprod.com/blog/2012/background-image-and-textarea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maylo &#8211; Ibereshi</title>
		<link>http://www.nyamsprod.com/blog/2012/maylo-ibereshi/</link>
		<comments>http://www.nyamsprod.com/blog/2012/maylo-ibereshi/#comments</comments>
		<pubDate>Mon, 14 May 2012 07:59:44 +0000</pubDate>
		<dc:creator>nyamsprod</dc:creator>
				<category><![CDATA[African Music]]></category>
		<category><![CDATA[hip-hop]]></category>
		<category><![CDATA[Ibereshi]]></category>
		<category><![CDATA[Maylo]]></category>
		<category><![CDATA[PlanB Multimedia]]></category>
		<category><![CDATA[rwanda]]></category>

		<guid isPermaLink="false">http://www.nyamsprod.com/blog/?p=1946</guid>
		<description><![CDATA[Ibereshi by MAYLO posted by pbmultimedia A thumbs up to my boy from PlanB Multimedia with this underground project called Saligoma. This joint is called Ibereshi and is from Maylo. For those who don&#8217;t understand Kinyarwanda Ibereshi it&#8217;s a rwandan deformation of the word &#171;&#160;Camp des Belges&#160;&#187; which trough time and slang has become the [...]]]></description>
			<content:encoded><![CDATA[<figure class="oembed-container" itemscope itemtype="http://schema.org/VideoObject"><meta itemprop="thumbnail" content="http://i4.ytimg.com/vi/7lgbezRLWE4/hqdefault.jpg"><iframe class="youtube-player" type="text/html" width="630" height="354" src="http://www.youtube.com/embed/7lgbezRLWE4?theme=light&amp;rel=0" frameborder="0"></iframe><br />
<figcaption itemprop="description"><span itemprop="name">Ibereshi by MAYLO</span> posted by <a href="http://www.youtube.com/user/pbmultimedia">pbmultimedia</a></figcaption>
</figure>
<p>A thumbs up to my boy from PlanB Multimedia with this underground project called Saligoma. This joint is called Ibereshi and is from Maylo. For those who don&#8217;t understand Kinyarwanda Ibereshi it&#8217;s a rwandan deformation of the word &laquo;&nbsp;Camp des Belges&nbsp;&raquo; which trough time and slang has become the word used to title this joint.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyamsprod.com/blog/2012/maylo-ibereshi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dynamic top link revisited</title>
		<link>http://www.nyamsprod.com/blog/2012/dynamic-top-link-revisited/</link>
		<comments>http://www.nyamsprod.com/blog/2012/dynamic-top-link-revisited/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 21:20:56 +0000</pubDate>
		<dc:creator>nyamsprod</dc:creator>
				<category><![CDATA[WebDevs]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[CSS 3]]></category>
		<category><![CDATA[degradation]]></category>
		<category><![CDATA[dynamic insert]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://www.nyamsprod.com/blog/?p=1911</guid>
		<description><![CDATA[How to dynamically add the go to the top button to your html page]]></description>
			<content:encoded><![CDATA[<h2>The starting point</h2>
<p>I&#8217;m a Jeff Starr fan. Everytime he blogs something about  WordPress or JavaScript I&#8217;m curious to see what he comes up with to make our developer&#8217;s life easier. Today he has released the code he uses on his newly WordPress theme <a title="Dynamic Go-to-Top Link by Jeff Starr" href="http://perishablepress.com/dynamic-top-link/" target="_blank">to dynamically display the &laquo;&nbsp;got the top&nbsp;&raquo; link</a> .<span id="more-1911"></span></p>
<p>After looking at the code I was frustrated about many aspects of it, in summary:</p>
<ul>
<li>If you don&#8217;t have JavaScript then you get no button;</li>
<li>All the css code was embedded in the JavaScript so you could not easily adapt  the script to your own design without messing with the script;</li>
<li>Everytime the resize event was called jQuery was basically re-creating the button;</li>
</ul>
<h2>The solution</h2>
<p>So <a title="Dynamic Top Link Revisited Demo" href="http://www.nyamsprod.com/test/dynamictoplink/" target="_blank">I came up with this <em>improve</em> version</a>. I hope you&#8217;ll enjoy it, since it fixes all the above problems, adds a little animation thanks to jQuery and CSS <del datetime="2012-04-11T08:06:10+00:00">animations (yes again <img src='http://www.nyamsprod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</del> and tries to be more responsive and less intrusive on the webpage.</p>
<h2>How it works</h2>
<p>Once You have included the CSS, the JavaScript and the HTML code in your page. The animation kicks start as you load the page. All the animations except from the scrolling back to the top page are manage by CSS. Which leave the author many choices on how he/she wants the link to be rendered.</p>
<p>I&#8217;ve associated the button to the scroll event . This event is only fired in jQuery if the element is scrollable which means that the window height is smaller than the document height <img src='http://www.nyamsprod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
<p>If no Javascript is present the button still works has excepted by remaining visible on the page.</p>
<h2>Suggestions</h2>
<ol>
<li>Since 98% of the script is handle through CSS, you can event adapt the button layout according to media queries to workaround more easily the <code>position:fixed</code> problems on smartphone for exemple. Use your imagination <img src='http://www.nyamsprod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Making a WordPress plugin out of it to ease it&#8217;s integration&#8230; <strong>Done!!</strong><br />
<strong style="display: block; text-align: center; font-size: 24px;"><a title="Download the WordPress Plugin to automatically add a Top Link button to your wordpress theme" href="http://www.nyamsprod.com/downloads/nyams-top-link.zip" target="_blank">Download nyams-top-link WordPress plugin</a></strong></li>
</ol>
<h3><em>Bug Fixes:</em></h3>
<ol>
<li>I&#8217;ve removed the used of jQuery&#8217;s <code>fadeIn</code> and <code>fadeOut</code> and replaced them with <code>CSS3 transitions</code>. By doing so, I&#8217;m no longer firing continually the fadeIn animation everytime the page is scrolled;</li>
<li>Fixed the annoying double click issue;</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.nyamsprod.com/blog/2012/dynamic-top-link-revisited/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bref, le CSS remix</title>
		<link>http://www.nyamsprod.com/blog/2012/bref-le-css-remix/</link>
		<comments>http://www.nyamsprod.com/blog/2012/bref-le-css-remix/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 12:33:12 +0000</pubDate>
		<dc:creator>nyamsprod</dc:creator>
				<category><![CDATA[WebDevs]]></category>
		<category><![CDATA[animations]]></category>
		<category><![CDATA[bref]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.nyamsprod.com/blog/?p=1889</guid>
		<description><![CDATA[Les gifs animés sont mort vives le CSS3 ]]></description>
			<content:encoded><![CDATA[<p>Une petite animation via CSS3 amusante que j&#8217;ai réalisé en moins de 2 heures et que je publie dans mon bac à sable . Le plus fun ne se trouve bien sur pas dans le fichier HTML, mais plutôt dans le fichier CSS qui gère toute l&#8217;animation.<br />
Pour la petite histoire, les 2 script JavaScripts incluents n&#8217;affectent pas directement l&#8217;animation mais facilitent son déploiement.</p>
<p>j&#8217;utilise :</p>
<ul>
<li>l&#8217;excellent script <a title="Break free from CSS prefix hell!" href="http://leaverou.github.com/prefixfree/" target="_blank">prefixfree</a> de Lea Verou pour ne pas avoir à écrire tous les versions préfixées des propriétés CSS non-stable;</li>
<li>une version &laquo;&nbsp;custom&nbsp;&raquo; de <a title="Modernizr is an open-source JavaScript library that helps you build the next generation of HTML5 and CSS3-powered websites." href="http://modernizr.com/download/" target="_blank">modernizr</a> qui détecte le support des animations CSS du navigateur afin de contourner un bug dans l&#8217;implantation sous Firefox.</li>
</ul>
<p>Bref, c&#8217;est par ici pour <a title="Un démo réalisée uniquement avec du CSS3" href="http://www.nyamsprod.com/test/bref/" target="_blank">voir la démo finale</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyamsprod.com/blog/2012/bref-le-css-remix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Refgenerator 2.3</title>
		<link>http://www.nyamsprod.com/blog/2012/refgenerator-2-3/</link>
		<comments>http://www.nyamsprod.com/blog/2012/refgenerator-2-3/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 10:16:19 +0000</pubDate>
		<dc:creator>nyamsprod</dc:creator>
				<category><![CDATA[WebDevs]]></category>
		<category><![CDATA[Mise à jour]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[refgenerator]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.nyamsprod.com/blog/?p=1874</guid>
		<description><![CDATA[Une nouvelle version de mon plugin Refgenerator (v 2.3) vient de sortir!!]]></description>
			<content:encoded><![CDATA[<p>Après plus de 2 ans, j&#8217;ai le plaisir de vous annoncer la mise à jour de mon premier plugin wordpress <a title="Refgenerator" href="http://www.nyamsprod.com/blog/refgenerator/">Refgenerator</a> . Au menu de cette mise à jour, essentiellement une ré-écriture du JavaScript et du code PHP du script.<br />
Pour l&#8217;utilisateur habituelle, rien de ne devrait changer si ce n&#8217;est une meilleur prise en charge par votre installation récente de WordPress du plugin. Refgenerator devrait fonctionner comme un charme à partir de la version 2.8 de WordPress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyamsprod.com/blog/2012/refgenerator-2-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google plus button generated markup</title>
		<link>http://www.nyamsprod.com/blog/2012/google-plus-button-generated-markup/</link>
		<comments>http://www.nyamsprod.com/blog/2012/google-plus-button-generated-markup/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 15:19:30 +0000</pubDate>
		<dc:creator>nyamsprod</dc:creator>
				<category><![CDATA[WebDevs]]></category>
		<category><![CDATA[+1]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[stylesheet]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://www.nyamsprod.com/blog/?p=1864</guid>
		<description><![CDATA[Quels balises sont générés par le bouton Google plus dans votre page]]></description>
			<content:encoded><![CDATA[<h2>Bon à savoir :</h2>
<p>Le script qui génère les boutons Google+ ajoute dans votre page, outre une <code>iframe</code> (par bouton), des balises <code>div</code>, <code>ins</code> mais surtout des balises <code>table</code> au survol du bouton <img src='http://www.nyamsprod.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  . Souvenez-vous en le jour où l&#8217;infobulle de Google+ a un rendu bizarre mais que vous ne savait pas pourquoi. Modifier votre feuille de style au niveau des propriétés des <code>table</code><br />
Mais pourquoi Google ne le dit pas sur <a title="+1 Button" href="https://developers.google.com/+/plugins/+1button/" target="_blank">sa page de documentation</a> ?</p>
<h2>Reminder:</h2>
<p>Googleplus button script generated many tags, an <code>iframe</code>, a <code>div</code> and an <code>ins</code> tag but above all, some ugly <code>table</code> tag. So if fore some obscure reason the google plus info popup look ugly check your CSS and try to adapt the generic tables rules.</p>
<p>The only question is why on earth google does not share this info on <a title="documentation" href="https://developers.google.com/+/plugins/+1button/" target="_blank">the Button+1 documentation page</a> ?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyamsprod.com/blog/2012/google-plus-button-generated-markup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5FIVE &#8211; Bossu Kena</title>
		<link>http://www.nyamsprod.com/blog/2012/5five-bossu-kena/</link>
		<comments>http://www.nyamsprod.com/blog/2012/5five-bossu-kena/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 13:48:12 +0000</pubDate>
		<dc:creator>nyamsprod</dc:creator>
				<category><![CDATA[African Music]]></category>
		<category><![CDATA[5FIVE]]></category>
		<category><![CDATA[afropop]]></category>
		<category><![CDATA[ghana]]></category>

		<guid isPermaLink="false">http://www.nyamsprod.com/blog/?p=1861</guid>
		<description><![CDATA[5Five &#8211; &#171;&#160;Bossu Kena&#160;&#187; (Official Music Video) posted by 5FiveGlobal 5Five is back again with a new song ready for the dance floor.]]></description>
			<content:encoded><![CDATA[<figure class="oembed-container" itemscope itemtype="http://schema.org/VideoObject"><meta itemprop="thumbnail" content="http://i2.ytimg.com/vi/AktSWz4Gowg/hqdefault.jpg"><iframe class="youtube-player" type="text/html" width="630" height="354" src="http://www.youtube.com/embed/AktSWz4Gowg?theme=light&amp;rel=0" frameborder="0"></iframe><br />
<figcaption itemprop="description"><span itemprop="name">5Five &#8211; &laquo;&nbsp;Bossu Kena&nbsp;&raquo; (Official Music Video)</span> posted by <a href="http://www.youtube.com/user/5FiveGlobal">5FiveGlobal</a></figcaption>
</figure>
<p>5Five is back again with a new song ready for the dance floor.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyamsprod.com/blog/2012/5five-bossu-kena/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS 3 Abrir</title>
		<link>http://www.nyamsprod.com/blog/2012/os-3-abrir/</link>
		<comments>http://www.nyamsprod.com/blog/2012/os-3-abrir/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 10:36:11 +0000</pubDate>
		<dc:creator>nyamsprod</dc:creator>
				<category><![CDATA[African Music]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[Abrir]]></category>
		<category><![CDATA[Angola]]></category>
		<category><![CDATA[Cabo Snoop]]></category>
		<category><![CDATA[IVM]]></category>
		<category><![CDATA[OS3]]></category>
		<category><![CDATA[PowerHouse]]></category>
		<category><![CDATA[Windeck]]></category>

		<guid isPermaLink="false">http://www.nyamsprod.com/blog/?p=1841</guid>
		<description><![CDATA[OS 3 &#8211; ABRIR [ ANGOLA ] posted by zuela21 This song from Angola was written and produced by IVM the late producer from such hit like Cabo Snoop&#8217;s Windeck]]></description>
			<content:encoded><![CDATA[<figure class="oembed-container" itemscope itemtype="http://schema.org/VideoObject"><meta itemprop="thumbnail" content="http://i4.ytimg.com/vi/7pmvTFko5FU/hqdefault.jpg"><iframe class="youtube-player" type="text/html" width="630" height="472" src="http://www.youtube.com/embed/7pmvTFko5FU?theme=light&amp;rel=0" frameborder="0"></iframe><br />
<figcaption itemprop="description"><span itemprop="name">OS 3 &#8211; ABRIR [ ANGOLA ]</span> posted by <a href="http://www.youtube.com/user/zuela21">zuela21</a></figcaption>
</figure>
<p>This song from Angola was written and produced by IVM the late producer from such hit like Cabo Snoop&#8217;s Windeck</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyamsprod.com/blog/2012/os-3-abrir/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comment passer le l&#8217;IPv4 à l&#8217;IPv6</title>
		<link>http://www.nyamsprod.com/blog/2012/comment-passer-le-lipv4-a-lipv6/</link>
		<comments>http://www.nyamsprod.com/blog/2012/comment-passer-le-lipv4-a-lipv6/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 11:37:54 +0000</pubDate>
		<dc:creator>nyamsprod</dc:creator>
				<category><![CDATA[WebDevs]]></category>
		<category><![CDATA[IPv4]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[réseau]]></category>

		<guid isPermaLink="false">http://www.nyamsprod.com/blog/?p=1823</guid>
		<description><![CDATA[Comment passer de l'IPv4 à l'IPv6 sans douleur]]></description>
			<content:encoded><![CDATA[<p>Pense bête personnel pour me rappeler ce que je dois faire avant le 6 Juin lorsque <a title="le 6 Juin déploiement massif de l'IPv6" href="http://www.pcinpact.com/news/68388-ipv6-launch-day-deploiement-societes.htm" target="_blank">le monde basculera</a> &#8230;</p>
<ol>
<li>Niveau MySQL:
<ul>
<li>A partir de la version 5.6.3 je peux utiliser <a title="MySQL IPv6 functions" href="http://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html#function_inet6-aton" target="_blank">les fonctions natives</a>;</li>
<li>Avant je dois <a title="UDF for IPv6 support in older MySQL servers" href="http://labs.watchmouse.com/2009/10/extending-mysql-5-with-ipv6-functions/" target="_blank">installer  les User Defined Functions</a> si possible;</li>
<li>Stocker les adresses IPv6 dans <a title="Les type VARBINARY dans MySQL 5.0" href="http://dev.mysql.com/doc/refman/5.0/fr/binary-varbinary.html" target="_blank">un champs du type VARBINARY</a>;</li>
</ul>
</li>
<li>Niveau PHP:
<ul>
<li>A partir de la version PHP5.1, utiliser les fonctions <a title="inet_ntop : IPv6 PHP function" href="http://www.php.net/manual/en/function.inet-ntop.php" target="_blank">inet_ntop</a> et <a title="inet_pton : IPv6 PHP function" href="http://www.php.net/manual/en/function.inet-pton.php" target="_blank">inet_pton</a></li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.nyamsprod.com/blog/2012/comment-passer-le-lipv4-a-lipv6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

