<?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>Abdelkader ELKALDI - Web Application Developer</title>
	<atom:link href="http://updel.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://updel.com</link>
	<description>Just another Web Application Developer</description>
	<lastBuildDate>Thu, 10 Jun 2010 18:21:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Drag2Crop mootools plugin : Drag picture inside a box</title>
		<link>http://updel.com/drag2crop/</link>
		<comments>http://updel.com/drag2crop/#comments</comments>
		<pubDate>Thu, 20 May 2010 22:00:00 +0000</pubDate>
		<dc:creator>UpDeL</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://updel.com/?p=395</guid>
		<description><![CDATA[UPDATE 09/06/2010 : Start drag at &#8220;Top&#8221; and &#8220;Left&#8221; values. Drag2Crop : This small mootools plugin extends &#8220;Drag plgin&#8221; allow to drag picture inside a small box to get a thumbnail showing the good part of the picture, and after Drag complete return values [Top, Left, Width, Height] of picture relative to the box (Like [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><span style="color: #ff0000;">UPDATE 09/06/2010 :</span> Start drag at &#8220;Top&#8221; and &#8220;Left&#8221; values.</p>
<p style="text-align: center;"><img class="size-full wp-image-25  aligncenter" title="facebook_thumbnail" src="../wp-content/uploads/facebook_thumbnail.jpg" alt="facebook_thumbnail" width="486" height="153" /></p>
<p>Drag2Crop : This small <a title="Mootools" href="http://mootools.net/" target="_blank">mootools</a> plugin extends &#8220;<a title="Drag plugin" href="http://mootools.net/docs/more/Drag/Drag" target="_blank">Drag plgin</a>&#8221; allow to drag picture inside a small box to get a thumbnail showing the good part of the picture, and after Drag complete return values [Top, Left, Width, Height] of picture relative to the box (Like facebook).</p>
<h2>The MooTools 1.2 JavaScript</h2>
<pre class="brush: jscript;">
var Drag2Crop = new Class({
    Extends: Drag,
    Implements:[Options,Events],
    initialize: function(picture, options) {
        this.setOptions({
            relative    :    'relative',
            modifiers   :    { x: 'scrollLeft', y: 'scrollTop' },
            style       :    false,
            invert      :    true,
            top  		:    0,
            left		:    0,
            onComplete  :    this.complete.bind(this),
            debug       :    false
        }, options);
		this.top        =     this.options.top.toInt();
        this.left       =     this.options.left.toInt();
        this.picture    =     $(picture);
        this.relative   =     $(this.options.relative).setStyles({cursor:'move'}).scrollTo(-this.left, -this.top);
 this.parent(this.relative);
 this.__construct();
 },
 __construct	:    function(){
 if(Browser.Engine.trident) document.ondragstart = function (){return false;}; // IE fix
 },
 coordinates	: function(){
 this.getCoordinates	=	this.relative.getScroll();
 this.getSize		=	this.relative.getSize();
 this.width  		=   this.relative.getSize().x.toInt();
 this.height  		=   this.relative.getSize().y.toInt();
 this.left  			=   -this.getCoordinates.x.toInt();
 this.top    		=   -this.getCoordinates.y.toInt();
 },
 complete    :    function(){
 this.coordinates();
 this.fireEvent(&quot;done&quot;,[this.top,this.left,this.width,this.height]);
 }
});
</pre>
<h2>The Usage</h2>
<pre class="brush: jscript;">
window.addEvent('load', function(){
	new Drag2Crop('pictureId', {
		relative 	: 	'relative',
		top			:	-30, // Start at top : -30
		left		:	-60, // Start at left : -60
        onStart		:    function(){
            this.picture.setStyles({opacity:0.5});
        },
        onDone      :    function(top,left){
            this.picture.setStyles({opacity:1});
			$('test').set('text', 'Top : ' + top + ' | Left : ' + left);
        }
    });
});
</pre>
<p><a class="demolink" title="Mootools Drag to Crop plugin" href="http://updel.com/demos/drag2crop/">See Demo</a></p>
<p><a class="demolink" title="Mootools Drag to Crop plugin" href="http://github.com/updel/Drag2Crop/">GitHub Repository</a></p>
<p><a class="demolink" title="Mootools Drag to Crop plugin" href="http://mootools.net/forge/p/drag2crop/">Projet @ Mootools Forge</a></p>
<h2>Events :</h2>
<p><strong>beforeStart</strong> : Executed before the Drag instance attaches the events. Receives the dragged element as an argument.</p>
<p><strong>start</strong> : Executed when the user starts to drag (on mousedown). Receives the dragged element as an argument.</p>
<p><strong>snap</strong> : Executed when the user has dragged past the snap option. Receives the dragged element as an argument.</p>
<p><strong>drag</strong> : Executed on every step of the drag. Receives the dragged element and the event as arguments.</p>
<p><strong>complete</strong> : Executed when the user completes the drag. Receives the dragged element and the event as arguments.</p>
<p><strong>cancel</strong> : Executed when the user has cancelled the drag. Receives the dragged element as an argument.</p>
<p><strong>top</strong>: (number) start drag at top value.</p>
<p><strong>left</strong>: (number) start drag at left value.</p>
<p><strong>done</strong> : Executed when the user completes the drag.Receives the values [Top, Left, Width, Height] of picture relative to the box</p>
]]></content:encoded>
			<wfw:commentRss>http://updel.com/drag2crop/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cloture d&#8217;un compte bancaire : Le service :D</title>
		<link>http://updel.com/cloture-compte-bancaire/</link>
		<comments>http://updel.com/cloture-compte-bancaire/#comments</comments>
		<pubDate>Tue, 18 May 2010 16:36:27 +0000</pubDate>
		<dc:creator>UpDeL</dc:creator>
				<category><![CDATA[Don't matter]]></category>
		<category><![CDATA[BMCE]]></category>
		<category><![CDATA[BMCE CENTRE D'AFFAIRES SAFI]]></category>
		<category><![CDATA[Cloture d'un compte bancaire]]></category>
		<category><![CDATA[Demande Cloture compte bancaire]]></category>

		<guid isPermaLink="false">http://updel.com/?p=387</guid>
		<description><![CDATA[Si vous cherchez un exemple de lettre de clôture d&#8217;un compte bancaire au Maroc essayez ma version téléchargeable ici . Je peux vous dire que j&#8217;ai eu la pire &#8220;bureaucratique réception&#8221; de ma vie !!! Un service qui a rapidement écrasé mes bons vieux souvenirs avec la &#8220;BMCE CENTRE D&#8217;AFFAIRES SAFI&#8221; il y a quelques [...]]]></description>
			<content:encoded><![CDATA[<p>Si vous cherchez un exemple de lettre de clôture d&#8217;un compte bancaire au Maroc essayez <a title="Demande cloture compte bancaire" href="http://updel.com/docs/demande_cloture_compte_bancaire.doc"><strong>ma version téléchargeable ici</strong></a> .</p>
<p>Je peux vous dire que j&#8217;ai eu la pire &#8220;bureaucratique réception&#8221; de ma vie !!! Un service qui a rapidement écrasé mes bons vieux souvenirs avec la <strong>&#8220;BMCE CENTRE D&#8217;AFFAIRES SAFI&#8221;</strong> il y a quelques années déjà, le jour ou j&#8217;ai ouvert mon premier compte bancaire accompagné seulement de ma CIN, mais aussi le jour ou tout le personnel de la banque s&#8217;est échanger mon chèque électronique avant de se décider, c&#8217;était leur première fois !!!</p>
<p>Aujourd&#8217;hui la jeune dame au cheveux court et corps plein nommée <strong>N</strong> (haha) s&#8217;est donné la peine de me montrer combien je suis frivole.</p>
<p>Heureusement que j&#8217;ai pris l&#8217;habitude de s&#8217;en foutre de la façon dont le &#8220;<em>citoyen basique</em>&#8221; comme moi se traite parfois dans différents services par quelques employés, alors dès que j&#8217;ai rentré chez moi : une douche suivi par une sieste et sujet achevé !!</p>
<p>nb : Merci Simo</p>
]]></content:encoded>
			<wfw:commentRss>http://updel.com/cloture-compte-bancaire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The thrilling potential of SixthSense technology</title>
		<link>http://updel.com/sixthsense-technology/</link>
		<comments>http://updel.com/sixthsense-technology/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 03:50:50 +0000</pubDate>
		<dc:creator>UpDeL</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[6eme sens technology]]></category>
		<category><![CDATA[Panav Mistry]]></category>
		<category><![CDATA[sixth sense technology]]></category>
		<category><![CDATA[TED]]></category>

		<guid isPermaLink="false">http://updel.com/?p=370</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/YrtANPtnhyg" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/YrtANPtnhyg"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://updel.com/sixthsense-technology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smarty : {capture} to put code in your header page</title>
		<link>http://updel.com/smarty-capture-function/</link>
		<comments>http://updel.com/smarty-capture-function/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 17:43:08 +0000</pubDate>
		<dc:creator>UpDeL</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[put code in page head]]></category>
		<category><![CDATA[Smarty capture]]></category>
		<category><![CDATA[Smarty literal]]></category>
		<category><![CDATA[Smarty template]]></category>

		<guid isPermaLink="false">http://updel.com/?p=346</guid>
		<description><![CDATA[If you are using Smarty to generate your templates, I strongly advice you to take advantage of the function: {capture} This function is used to collect the output of the template between the tags {capture}{/capture} into a variable instead of displaying it. Exemple  : index.tpl {capture name=header} {literal} &#60;script type=&#34;text/javascript&#34;&#62; alert('Javascript in head'); &#60;/script&#62; {/literal} [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using <a title="Smarty Template Engine" href="http://www.smarty.net" target="_blank">Smarty</a> to generate your templates, I strongly advice you to take advantage of the  function: <a title="smarty caption" href="http://www.smarty.net/manual/en/language.builtin.functions.php#language.function.capture" target="_blank">{capture}</a></p>
<p>This function is used to collect the output of the template between the    tags <em>{capture}{/capture}</em> into a  variable instead of displaying it.</p>
<p>Exemple  :</p>
<p><span style="color: #ff0000;"><strong>index.tpl</strong></span></p>
<pre class="brush: xml;">
{capture name=header}
{literal}
&lt;script type=&quot;text/javascript&quot;&gt;
alert('Javascript in head');
&lt;/script&gt;
{/literal}
{/capture}
&lt;!-- Include Page Header using Smarty {include} --&gt;
{include file=&quot;header.tpl&quot;}
My index page content
</pre>
<p><span style="color: #ff0000;"><strong>header.tpl</strong></span></p>
<pre class="brush: xml;">
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Page ttle&lt;/title&gt;
{$smarty.capture.header}
&lt;/head&gt;
</pre>
<p><span style="color: #ff0000;">Nb : &#8220;Javascript code&#8221; must be placed between {literal}{/literal}</span></p>
]]></content:encoded>
			<wfw:commentRss>http://updel.com/smarty-capture-function/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SDK Iphone pour windows et linux</title>
		<link>http://updel.com/sdk-iphone-windows-linux/</link>
		<comments>http://updel.com/sdk-iphone-windows-linux/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 18:14:54 +0000</pubDate>
		<dc:creator>UpDeL</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[DragonFireSDK]]></category>
		<category><![CDATA[Iphone Linux SDK]]></category>
		<category><![CDATA[Iphone SDK]]></category>
		<category><![CDATA[Windows iphone SDK]]></category>

		<guid isPermaLink="false">http://updel.com/?p=337</guid>
		<description><![CDATA[La moindre des choses qu&#8217;on puisse dire sur la politique d&#8217;Apple  concernant le développement des application destinées à Iphone et Ipod touch est &#8220;Meeeeeeeeeeerde&#8221;. Apple tente de vendre un Mac pour tout curieux qui souhaite personnaliser son mobile à la pomme, puisque son kit de développement XCODE (Iphone SDK) n&#8217;est disponible que pour son OSX [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://fc08.deviantart.net/fs30/f/2008/069/2/c/Did_You_Mean_Steve_Jobs__by_LoneSide360.jpg" alt="" width="600" /></p>
<p>La moindre des choses qu&#8217;on puisse dire sur la politique d&#8217;Apple  concernant le développement des application destinées à Iphone et Ipod touch est &#8220;Meeeeeeeeeeerde&#8221;.</p>
<p>Apple tente de vendre un Mac pour tout curieux qui souhaite personnaliser son mobile à la pomme, puisque son kit de développement <em>XCODE</em> (<a title="Iphone SDK" href="http://developer.apple.com/iphone/" target="_blank">Iphone SDK</a>) n&#8217;est disponible que pour son OSX (à partir de leopard 1.5.2 <em>si je ne me trompe pas</em>).</p>
<p>En gros, les utilisateurs de Linux et Windows sont ignorés par Apple, ce qui laisse deviner que la croissance positive des ventes d&#8217;Iphone a peut être une grande influence sur la vente des Macs.</p>
<p><strong>Alternative PC :</strong></p>
<p>Depuis la sortie des Mac Intel, certains bricoleurs ont déjà hackés OSX pour le faire tourner sur PC, idem pour &#8220;Snow Leopard&#8221;, il ne reste plus qu&#8217;a trouvé un bon tutoriel.</p>
<p><strong>Alternative Linux :</strong></p>
<p>On parle beaucoup de <strong>iphone-dev Toolchain</strong>, disponible pour plusieurs plateformes et qui permet de coder en <em>Objective-C</em> comme pour XCODE.<br />
Plus d&#8217;infos sur : <a title="Linux Iphone" href="http://code.google.com/p/iphone-dev/wiki/Building" target="_blank">http://code.google.com/p/iphone-dev/wiki/Building [EN]</a>.<br />
<strong>NB : </strong><em>malheureusement pour les utilisateurs de Windows &#8220;<strong><a href="http://code.google.com/p/iphone-dev/" target="_self">iphone-dev Toolchain</a>&#8220;</strong> est indisponible.</em></p>
<p><strong>Alternative Windows</strong> :</p>
<p><a title="Winchain" href="http://code.google.com/p/winchain/" target="_self"><strong>Winchain</strong></a> : Un nom familier pour les Linuxiens, en faites c&#8217;est peut être une reprise de l&#8217;iphone-dev toolchain et qui a été peut être abandonner, à voir les commentaires de la partie <a href="http://code.google.com/p/winchain/wiki/HowToUse" target="_self"><strong>HowToUse</strong></a> j&#8217;en doute que ca marche encore pour l&#8217;iphone OS 3.X mais bon il faut l&#8217;essayer avant.</p>
<p><a title="dragonfiresdk" href="http://www.dragonfiresdk.com/index.htm" target="_self"><strong>DragonFireSDK</strong></a> (<em>Payant</em>) : Il vient de sortir, On dit que c&#8217;est un SDK pour Windows, mais en vérité (après un test en Bêta) c&#8217;est une <a href="http://www.dragonfiresdk.com/help/DragonFireSDKHelp.html" target="_blank">dizaines de fonctions</a> dite <strong><em>API</em></strong>, donc rien à voir avec le vrai SDK d&#8217;Iphone, la programmation se passe dans <a title="Visual C++" href="http://www.microsoft.com/express/Downloads/#2008-Visual-CPP" target="_self"><strong>Microsoft Visual C ++</strong></a><strong>,</strong> et après compilation, DragonFireSDK émule le code dans une fenêtre sous forme d&#8217;Iphone, au final vous devez uploader votre application sur <a href="http://dragonfiresdk.com/buildserver.htm" target="_blank">http://dragonfiresdk.com/buildserver.htm</a> qui convertira votre code en Application Iphone dans un de leurs serveurs MAC, la définition de DragonFireSDK serai donc : Intermédiaire entre Windows et le SDK d&#8217;iphone sous Mac</p>
<p>Malgré les alternatives, vous n&#8217;êtes pas le bienvenue dans l&#8217;App Store, à moins que vous disposez d&#8217;un <strong>Mac</strong> et d&#8217;une <strong>Apple ID.</strong><br />
<span style="color: #ff0000;"><em>Y a t&#8217;il une solution pour faire fonctionner <a href="http://fr.wikipedia.org/wiki/Android" target="_blank"><strong>Android</strong></a> sur mon Ipod Touch ?</em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://updel.com/sdk-iphone-windows-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Plesk : How to pointing domain to a subdirectory</title>
		<link>http://updel.com/plesk-pointing-domain-subdirectory/</link>
		<comments>http://updel.com/plesk-pointing-domain-subdirectory/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 20:24:30 +0000</pubDate>
		<dc:creator>UpDeL</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[dns domain plesk]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Pointing domain plesk]]></category>
		<category><![CDATA[Pointing domain subdirectory]]></category>
		<category><![CDATA[subdomain plesk]]></category>

		<guid isPermaLink="false">http://updel.com/?p=330</guid>
		<description><![CDATA[First create your &#8220;subdirectory_name&#8221; then run terminal and edit httpd.include (vi, pico &#8230;): pico /var/www/vhosts/domain.com/conf/httpd.include Change every &#8220;/var/www/vhosts/domain.com/httpdocs&#8221; To &#8220;/var/www/vhosts/domain.com/httpdocs/subdirectory_name&#8221; Restart apache : service httpd restart This trick can be used to configure another domain to be pointing in another domaine : exemple Change every &#8220;/var/www/vhosts/domain2.com/httpdocs&#8221; To &#8220;/var/www/vhosts/domain1.com/httpdocs&#8220;]]></description>
			<content:encoded><![CDATA[<p>First create your &#8220;subdirectory_name&#8221; then run terminal and edit httpd.include (vi, pico &#8230;):</p>
<pre class="brush: plain;">pico /var/www/vhosts/domain.com/conf/httpd.include</pre>
<p>Change every &#8220;<strong>/var/www/vhosts/domain.com/httpdocs</strong>&#8221;<br />
To &#8220;<strong>/var/www/vhosts/domain.com/httpdocs/subdirectory_name</strong>&#8221;</p>
<p>Restart apache :</p>
<pre class="brush: plain;">service httpd restart</pre>
<p>This trick can be used to configure another domain to be pointing in another domaine : exemple</p>
<p>Change every &#8220;<strong>/var/www/vhosts/<span style="color: #ff0000;">domain2.com</span>/httpdocs</strong>&#8221;<br />
To &#8220;<strong>/var/www/vhosts/<span style="color: #008000;">domain1.com</span>/httpdocs</strong><strong></strong>&#8220;</p>
]]></content:encoded>
			<wfw:commentRss>http://updel.com/plesk-pointing-domain-subdirectory/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Macbook Pro mort ! Black Screen</title>
		<link>http://updel.com/macbook-pro-black-screen/</link>
		<comments>http://updel.com/macbook-pro-black-screen/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 05:16:28 +0000</pubDate>
		<dc:creator>UpDeL</dc:creator>
				<category><![CDATA[Don't matter]]></category>
		<category><![CDATA[Black Screen]]></category>
		<category><![CDATA[Black Screen of death]]></category>
		<category><![CDATA[Macbook pro]]></category>
		<category><![CDATA[Nvidia geforce 9400 GT]]></category>

		<guid isPermaLink="false">http://updel.com/?p=325</guid>
		<description><![CDATA[Cela fait 2 mois que mon Macbook pro est en sommeil absolu, il est victime d&#8217;une bug dans la série Nvidia geforce 9400 GT appelé &#8220;Black Screen of death&#8220;:/. La bonne nouvelle c&#8217;est que Apple s&#8217;engage a fixer cette bug gratuitement dans un de leurs Apple Store http://support.apple.com/kb/TS2377 . La mauvaise nouvelle, il n&#8217;existe pas [...]]]></description>
			<content:encoded><![CDATA[<p>Cela fait 2 mois que mon Macbook pro est en sommeil absolu, il est victime d&#8217;une bug dans la série Nvidia geforce 9400 GT appelé &#8220;<a href="http://www.google.com/search?q=mac+black+screen+of+death&amp;btnG=Rechercher&amp;hl=fr&amp;rlz=1B3GGGL_frMA339MA339&amp;sa=2" target="_blank"><strong>Black Screen of death</strong></a>&#8220;:/.</p>
<p><span style="color: #339966;">La bonne nouvelle</span> c&#8217;est que Apple s&#8217;engage a fixer cette bug gratuitement dans un de leurs <strong>Apple Store</strong> <a href="http://support.apple.com/kb/TS2377" target="_blank">http://support.apple.com/kb/TS2377</a> .</p>
<p><span style="color: #ff0000;">La mauvaise nouvelle</span>, il n&#8217;existe pas d&#8217;<strong>Apple Store</strong> au Maroc mais seulement des <strong>Apple Centers</strong>.</p>
<p>Donc j&#8217;ai fait appel a mes tournevis et je vous dit pas, le MBP est foutu !!!</p>
<p><strong>Conclusion :</strong> mon expérience ratée avec MBP  s&#8217;arrête là, maintenant je suis convaincu que rien ne vaut la communauté PC, c&#8217;est vrai que les ordinateurs Mac ont plus de charme mais comme Google dirait :</p>
<p><img style="display: block; margin: 0 auto;" title="macusers_are" src="http://updel.com/wp-content/uploads/macusers_are.gif" alt="" width="495" height="363" /></p>
<p><em>(J&#8217;ai rien dir moi !)</em>, finalement je compte switcher vers PC et je me débrouillerai pour y installer OSX, mais je ne sais pas quel marque/model choisir, si vous avez des proposition, merci d&#8217;avance.</p>
]]></content:encoded>
			<wfw:commentRss>http://updel.com/macbook-pro-black-screen/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>On pistonne les noms de domaine *.ma ?</title>
		<link>http://updel.com/pistonner-un-domaine-ma/</link>
		<comments>http://updel.com/pistonner-un-domaine-ma/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 04:09:16 +0000</pubDate>
		<dc:creator>UpDeL</dc:creator>
				<category><![CDATA[Don't matter]]></category>
		<category><![CDATA[arcanes technology]]></category>
		<category><![CDATA[Heberjahiz]]></category>
		<category><![CDATA[Maroc Telecom]]></category>
		<category><![CDATA[Nom de domaine ma]]></category>

		<guid isPermaLink="false">http://updel.com/?p=297</guid>
		<description><![CDATA[Je vous laisse avec quelques photos qui expliquent une situation qui m&#8217;est arrivée lors de l&#8217;enregistrement d&#8217;un libre domaine &#8220;.ma&#8221;, et jugez-vous même ! PS : &#8220;Je suis Marocain résidant au Maroc depuis naissance, et le nom de domaine n&#8217;est pas un nom de ville ni de terme technique de l&#8217;Internet ni nom de profession [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Je vous laisse avec quelques photos qui expliquent une situation qui m&#8217;est arrivée lors de l&#8217;enregistrement d&#8217;un </strong><strong><span style="color: #ff0000;">libre</span> </strong><strong>domaine &#8220;.ma&#8221;, et jugez-vous même !</strong></p>
<p><em>PS : &#8220;Je suis Marocain résidant au Maroc depuis naissance, et le nom de domaine n&#8217;est pas un nom de ville ni de terme technique de l&#8217;Internet ni nom de profession réglementée et n&#8217;est pas un terme lié au fonctionnement de l&#8217;État. </em> (Source : http://www.nic.ma/enregistrer.asp)</p>
<h1><span style="color: #ff0000;">1-</span></h1>
<p>Un petit screen d&#8217;une phrase que tout Marocain aimerait qu&#8217;elle soit vraie ! (Source : <a href="http://www.nic.ma/explication.asp" target="_blank">http://www.nic.ma/explication.asp</a>)</p>
<p><img title="Nom de domaine ma" src="http://updel.com/wp-content/uploads/Untitled-3.gif" alt="" /></p>
<h1><span style="color: #ff0000;">2-</span></h1>
<p>Un petit screen d&#8217;une opération de routine que tout Marocain fait pour quérir un nom de domaine <strong>&#8220;ocs.ma&#8221;</strong> chez un <strong>Prestataire confirmé le : <span style="color: #ff0000;">24/08/08 16:31</span></strong></p>
<p><img title="5" src="http://updel.com/wp-content/uploads/5.gif" alt="" /></p>
<p><img title="Untitled-2" src="http://updel.com/wp-content/uploads/Untitled-2.gif" alt="" /></p>
<h1><span style="color: #ff0000;"><strong>Après un mois &#8230;</strong></span></h1>
<p><strong><a href="http://updel.com/wp-content/uploads/21.gif"><img class="alignnone size-full wp-image-302" title="2" src="http://updel.com/wp-content/uploads/21.gif" alt="" width="547" height="485" /></a></strong></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">termes techniques de l&#8217;Internet</div>
]]></content:encoded>
			<wfw:commentRss>http://updel.com/pistonner-un-domaine-ma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mise à jour Snow Leopard 10.6.2 : Menus barre disparu</title>
		<link>http://updel.com/menus-barre-disparu-snow-leopard/</link>
		<comments>http://updel.com/menus-barre-disparu-snow-leopard/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 00:38:23 +0000</pubDate>
		<dc:creator>UpDeL</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[10.6.2 menu bar]]></category>
		<category><![CDATA[mac menu bar]]></category>
		<category><![CDATA[Menus barre disparu]]></category>
		<category><![CDATA[Snow leopard bar issue]]></category>

		<guid isPermaLink="false">http://updel.com/?p=279</guid>
		<description><![CDATA[Pressé d&#8217;installer la mise à jour 10.6.2 de Snow Leopard, je me retrouve sans la barre de menus Une situation merdique mais bon, il fallait juste patienter quelques jours pour que d&#8217;autres partagent leurs expériences. 1 &#8211; Si vous utilisez Istats regardez par ici : http://forums.appleinsider.com/showthread.php?t=102462 2 &#8211; Si non (comme dans mon cas) ce [...]]]></description>
			<content:encoded><![CDATA[<p>Pressé d&#8217;installer la mise à jour 10.6.2 de Snow Leopard, je me retrouve sans la barre de menus</p>
<p><img class="aligncenter size-full wp-image-280" title="Capture d’écran 2009-11-17 à 01.30.21" src="http://updel.com/wp-content/uploads/Capture-d’écran-2009-11-17-à-01.30.21.png" alt="Capture d’écran 2009-11-17 à 01.30.21" width="580" /></p>
<p>Une situation merdique mais bon, il fallait juste patienter quelques jours pour que d&#8217;autres partagent leurs expériences.</p>
<p>1 &#8211; Si vous utilisez <strong>Istats</strong> regardez par ici : <a title="snow leopard menu bar issue" href="http://forums.appleinsider.com/showthread.php?t=102462" target="_blank">http://forums.appleinsider.com/showthread.php?t=102462</a></p>
<p>2 &#8211; <span style="color: #ff0000;">Si non</span> (comme dans mon cas) ce billet est votre sauveur : <a title="snow leopard empty menu bar " href="http://www.mymacosx.com/tricks-and-tips/10-6-2-caused-empty-menu-bar-spotlight-icon-disabled.html" target="_blank">http://www.mymacosx.com/tricks-and-tips/10-6-2-caused-empty-menu-bar-spotlight-icon-disabled.html</a></p>
<p><img class="aligncenter size-full wp-image-291" title="Capture d’écran 2009-11-17 à 02.22.27" src="http://updel.com/wp-content/uploads/Capture-d’écran-2009-11-17-à-02.22.27.png" alt="Capture d’écran 2009-11-17 à 02.22.27" width="373" height="21" /></p>
]]></content:encoded>
			<wfw:commentRss>http://updel.com/menus-barre-disparu-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Convertir window-1256 vers utf-8 VS 1and1 hosting rules</title>
		<link>http://updel.com/window-1256-to-utf-8/</link>
		<comments>http://updel.com/window-1256-to-utf-8/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 02:52:30 +0000</pubDate>
		<dc:creator>UpDeL</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[1and1 hosting limitation]]></category>
		<category><![CDATA[1and1 mysql]]></category>
		<category><![CDATA[convert to utf-8]]></category>
		<category><![CDATA[convert window-1256]]></category>
		<category><![CDATA[window-1256 to utf-8]]></category>

		<guid isPermaLink="false">http://updel.com/?p=272</guid>
		<description><![CDATA[Il est très facile de convertir une chaîne d&#8217;un encodage à un autre sous PHP avec la fonction iconv() $string = iconv(&#34;windows-1256&#34;, &#34;UTF-8&#34;, $string); Seulement, après avoir converti une base de donnée (40 mo) de window-1256 vers utf-8 le résultat donna une nouvelle base de plus de 90 mo. Et quand on sait que le [...]]]></description>
			<content:encoded><![CDATA[<p>Il est très facile de convertir une chaîne d&#8217;un encodage à un autre sous PHP avec la fonction <a title="iconv" href="http://www.php.net/manual/fr/function.iconv.php" target="_blank"><strong>iconv()</strong></a></p>
<pre class="brush: php;">$string = iconv(&quot;windows-1256&quot;, &quot;UTF-8&quot;, $string);</pre>
<p>Seulement, après avoir converti une base de donnée (<span style="color: #ff0000;">40 mo</span>) de <strong>window-1256 vers utf-8</strong> le résultat donna une nouvelle base de plus de <span style="color: #ff0000;">90 mo</span>.</p>
<p>Et quand on sait que le numéro 1 de l&#8217;hébergement dans le monde <strong>1and1 limite l&#8217;utilisation d&#8217;une base de données MYSQL à 100 mo</strong> !</p>
<p><img class="aligncenter size-full wp-image-273" title="limitation_1and1_mysql" src="http://updel.com/wp-content/uploads/limitation_1and1_mysql.gif" alt="limitation_1and1_mysql" width="539" height="92" /></p>
]]></content:encoded>
			<wfw:commentRss>http://updel.com/window-1256-to-utf-8/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
