<?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>Ya-Salaam</title>
	<atom:link href="http://www.ya-salaam.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ya-salaam.com/blog</link>
	<description>Site de musique arabe</description>
	<lastBuildDate>Sun, 01 Jan 2012 17:58:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Cpp : typedef</title>
		<link>http://www.ya-salaam.com/blog/cpp-typedef.html</link>
		<comments>http://www.ya-salaam.com/blog/cpp-typedef.html#comments</comments>
		<pubDate>Tue, 13 Dec 2011 22:40:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C/C++]]></category>

		<guid isPermaLink="false">http://www.ya-salaam.com/blog/?p=1829</guid>
		<description><![CDATA[Ce mot clé est utilisé pour alléger l&#8217;écriture du code. Imaginer que vous avez cet exemple à réécrire tout le temps dans votre code list , pour alléger votre code vous écrirez tout en haut : typedef list&#60;pair&#60;double, double&#62; &#62; MaNouvelleNotation; Maintenant, au lieu d&#8217;écrire ce grand ensemble, nous aurons juste à écrire MaNouvelleNotation.]]></description>
			<content:encoded><![CDATA[<p>Ce mot clé est utilisé pour alléger l&#8217;écriture du code. Imaginer que vous avez cet exemple à réécrire tout le temps dans votre code <em>list
<pair<double, double> ></em>, pour alléger votre code vous écrirez tout en haut :</p>
<div class="codecolorer-container cpp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="cpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0000ff;">typedef</span> list<span style="color: #000080;">&lt;</span>pair<span style="color: #000080;">&lt;</span><span style="color: #0000ff;">double</span>, <span style="color: #0000ff;">double</span><span style="color: #000080;">&gt;</span> <span style="color: #000080;">&gt;</span> MaNouvelleNotation<span style="color: #008080;">;</span></div></div>
<p>Maintenant, au lieu d&#8217;écrire ce grand ensemble, nous aurons juste à écrire <em>MaNouvelleNotation</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ya-salaam.com/blog/cpp-typedef.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAS : Créer une nouvelle librairie</title>
		<link>http://www.ya-salaam.com/blog/sas-creer-une-nouvelle-librairie.html</link>
		<comments>http://www.ya-salaam.com/blog/sas-creer-une-nouvelle-librairie.html#comments</comments>
		<pubDate>Sat, 10 Dec 2011 22:37:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://www.ya-salaam.com/blog/?p=1821</guid>
		<description><![CDATA[Les tables SAS sont rangées dans des bibliothèques ou encore librairie. Une librairie n&#8217;est pas un emplacement physique sur le disque, mais un raccourci vers un répertoire physique du disque. Pour créer une nouvelle bibliothèque, c&#8217;est-à-dire, permettre à SAS d&#8217;utiliser ou créer des tables dans un répertoire du disque, on peut utiliser l&#8217;instruction libname : [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Les tables SAS sont rangées dans des bibliothèques ou encore librairie. Une librairie n&#8217;est pas un emplacement physique sur le disque, mais un raccourci vers un répertoire physique du disque. Pour créer une nouvelle bibliothèque, c&#8217;est-à-dire, permettre à SAS d&#8217;utiliser ou créer des tables dans un répertoire du disque, on peut utiliser l&#8217;instruction <span style="text-decoration: underline;"><em>libname</em></span> :</p>
<div class="codecolorer-container sas default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="sas codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0000ff;">libname</span> nomDeMaLibrairie <span style="color: #a020f0;">'cheminDuRepertoirePhysique'</span>;</div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.ya-salaam.com/blog/sas-creer-une-nouvelle-librairie.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA : Le débugeur</title>
		<link>http://www.ya-salaam.com/blog/vba-le-debugeur.html</link>
		<comments>http://www.ya-salaam.com/blog/vba-le-debugeur.html#comments</comments>
		<pubDate>Sat, 10 Dec 2011 22:24:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.ya-salaam.com/blog/?p=1809</guid>
		<description><![CDATA[Un point d&#8217;arrêt permet l&#8217;exécution d&#8217;un programme à un point donné (F9 sur une ligne de code). On peut poser autant de points d&#8217;arrêts que nécessaire dans un code. Pour progresser dans l&#8217;exécution d&#8217;un code ligne par ligne. Il faudra appuyer sur F8 pour passer à la ligne suivante du code. Pour plus de détails, [...]]]></description>
			<content:encoded><![CDATA[<p>Un <strong>point d&#8217;arrêt</strong> permet l&#8217;exécution d&#8217;un programme à un point donné (<strong>F9</strong> sur une ligne de code). On peut poser autant de points d&#8217;arrêts que nécessaire dans un code.</p>
<p>Pour progresser dans l&#8217;exécution d&#8217;un code ligne par ligne. Il faudra appuyer sur <strong>F8</strong> pour passer à la ligne suivante du code. Pour plus de détails, c&#8217;est-à-dire, rentrer dans son code, il faudra presser <strong>SHIFT+F8</strong>.</p>
<p>L&#8217;exécution d&#8217;un point d&#8217;arrêt à un autre se fait en cliquant sur la touche <strong>F5</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ya-salaam.com/blog/vba-le-debugeur.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA : Spécificités</title>
		<link>http://www.ya-salaam.com/blog/vba-specificites.html</link>
		<comments>http://www.ya-salaam.com/blog/vba-specificites.html#comments</comments>
		<pubDate>Thu, 24 Nov 2011 20:41:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.ya-salaam.com/blog/?p=1795</guid>
		<description><![CDATA[Quelques spécificités du langage VBA : Il est interdit de définir une fonction dont le nom est trois lettres et un chiffre (MUL2 ne marchera pas)]]></description>
			<content:encoded><![CDATA[<p>Quelques spécificités du langage VBA :</p>
<ul>
<li>Il est interdit de définir une fonction dont le nom est trois lettres et un chiffre (MUL2 ne marchera pas)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ya-salaam.com/blog/vba-specificites.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA : Option Explicit</title>
		<link>http://www.ya-salaam.com/blog/vba-option-explicit.html</link>
		<comments>http://www.ya-salaam.com/blog/vba-option-explicit.html#comments</comments>
		<pubDate>Thu, 24 Nov 2011 20:36:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.ya-salaam.com/blog/?p=1789</guid>
		<description><![CDATA[Recommandé : En haut de chaque programme écrit en VBA, il faut écrire : 'M'avertir en cas d'utilisation de variables non déclarées Option Explicit Cette option vous alerte lorsque vous utilisez des variables non déclarées!]]></description>
			<content:encoded><![CDATA[<p>Recommandé : En haut de chaque programme écrit en VBA, il faut écrire :</p>
<div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #008000;">'M'avertir en cas d'utilisation de variables non déclarées<br />
</span><span style="color: #E56717; font-weight: bold;">Option</span> <span style="color: #E56717; font-weight: bold;">Explicit</span></div></div>
<p>Cette option vous alerte lorsque vous utilisez des variables non déclarées!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ya-salaam.com/blog/vba-option-explicit.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA : Déclarer un tableau</title>
		<link>http://www.ya-salaam.com/blog/vba-declarer-un-tableau.html</link>
		<comments>http://www.ya-salaam.com/blog/vba-declarer-un-tableau.html#comments</comments>
		<pubDate>Thu, 24 Nov 2011 20:30:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.ya-salaam.com/blog/?p=1781</guid>
		<description><![CDATA[Pour déclarer un tableau en VBA, on écrit 'Tableau de 10 réels Dim monTableau(10) As Double 'Matrice, de 2 lignes et 2 colonnes, d'entiers Dim maMatrice(2,2) As Long Il n&#8217;existe pas de fonction qui retourne la taille d&#8217;un tableau en VBA !]]></description>
			<content:encoded><![CDATA[<p>Pour déclarer un tableau en VBA, on écrit</p>
<div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #008000;">'Tableau de 10 réels<br />
</span><span style="color: #151B8D; font-weight: bold;">Dim</span> monTableau(10) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Double</span><br />
<span style="color: #008000;">'Matrice, de 2 lignes et 2 colonnes, d'entiers <br />
</span><span style="color: #151B8D; font-weight: bold;">Dim</span> maMatrice(2,2) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span></div></div>
<p>Il n&#8217;existe pas de fonction qui retourne la taille d&#8217;un tableau en VBA !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ya-salaam.com/blog/vba-declarer-un-tableau.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA : La boucle for et la boucle while</title>
		<link>http://www.ya-salaam.com/blog/vba-la-boucle-for-et-la-boucle-while.html</link>
		<comments>http://www.ya-salaam.com/blog/vba-la-boucle-for-et-la-boucle-while.html#comments</comments>
		<pubDate>Thu, 24 Nov 2011 20:25:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.ya-salaam.com/blog/?p=1777</guid>
		<description><![CDATA[La syntaxe de la boucle for : Dim I As Long For I = 1 to 100 [Step 1] 'Instructions Next I La syntaxe de la boucle for : Dim I As Long I = 0 While (Age = 10) 'Instructions I = I + 1 WEND Pour sortir une boucle complètement, il suffit d&#8217;écrire [...]]]></description>
			<content:encoded><![CDATA[<p><strong>La syntaxe de la boucle for :</strong></p>
<div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #151B8D; font-weight: bold;">Dim</span> I <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span><br />
<span style="color: #8D38C9; font-weight: bold;">For</span> I = 1 <span style="color: #8D38C9; font-weight: bold;">to</span> 100 [<span style="color: #8D38C9; font-weight: bold;">Step</span> 1]<br />
<span style="color: #008000;">'Instructions<br />
</span><span style="color: #8D38C9; font-weight: bold;">Next</span> I</div></div>
<p><strong>La syntaxe de la boucle for :</strong></p>
<div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #151B8D; font-weight: bold;">Dim</span> I <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span><br />
I = 0<br />
<span style="color: #8D38C9; font-weight: bold;">While</span> (Age = 10)<br />
<span style="color: #008000;">'Instructions<br />
</span> I = I + 1<br />
WEND</div></div>
<p>Pour sortir une boucle complètement, il suffit d&#8217;écrire le mot clé Exit For et pour passer à la prochaine étape sans exécuter le reste, on écrit continue</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ya-salaam.com/blog/vba-la-boucle-for-et-la-boucle-while.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBA : Déclarer une variable</title>
		<link>http://www.ya-salaam.com/blog/vba-declarer-une-variable.html</link>
		<comments>http://www.ya-salaam.com/blog/vba-declarer-une-variable.html#comments</comments>
		<pubDate>Thu, 24 Nov 2011 20:20:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://www.ya-salaam.com/blog/?p=1773</guid>
		<description><![CDATA[Pour déclarer une variable en VBA, il suffit d&#8217;écrire : Dim maVariable1 As monType Dim maVariable2 La variable maVariable1 a un type c&#8217;est monType, cependant pour la maVariable2 le type n&#8217;est pas précisé : Dans ce cas, l&#8217;interpréter lui affecte le type Variant.]]></description>
			<content:encoded><![CDATA[<p>Pour déclarer une variable en VBA, il suffit d&#8217;écrire :</p>
<div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #151B8D; font-weight: bold;">Dim</span> maVariable1 <span style="color: #151B8D; font-weight: bold;">As</span> monType<br />
<span style="color: #151B8D; font-weight: bold;">Dim</span> maVariable2</div></div>
<p>La variable maVariable1 a un type c&#8217;est monType, cependant pour la maVariable2 le type n&#8217;est pas précisé : Dans ce cas, l&#8217;interpréter lui affecte le type Variant. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ya-salaam.com/blog/vba-declarer-une-variable.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAS : Fusionner deux tables</title>
		<link>http://www.ya-salaam.com/blog/sas-fusionner-deux-tables.html</link>
		<comments>http://www.ya-salaam.com/blog/sas-fusionner-deux-tables.html#comments</comments>
		<pubDate>Thu, 17 Nov 2011 19:30:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SAS]]></category>

		<guid isPermaLink="false">http://www.ya-salaam.com/blog/?p=1766</guid>
		<description><![CDATA[Pour fusionner deux tables en SAS, il suffit d&#8217;écrire : data tabe3; &#160;merge tabe1 tabe2; &#160;by champ; run;]]></description>
			<content:encoded><![CDATA[<p>Pour fusionner deux tables en SAS, il suffit d&#8217;écrire :</p>
<div class="codecolorer-container sas default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="sas codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000080; font-weight: bold;">data</span> tabe3;<br />
&nbsp;<span style="color: #0000ff;">merge</span> tabe1 tabe2;<br />
&nbsp;<span style="color: #0000ff;">by</span> champ;<br />
<span style="color: #000080; font-weight: bold;">run</span>;</div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.ya-salaam.com/blog/sas-fusionner-deux-tables.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cpp: Initialiser une variable static dans une classe</title>
		<link>http://www.ya-salaam.com/blog/cpp-initialiser-une-variable-static-dans-une-classe.html</link>
		<comments>http://www.ya-salaam.com/blog/cpp-initialiser-une-variable-static-dans-une-classe.html#comments</comments>
		<pubDate>Sun, 13 Nov 2011 17:58:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C/C++]]></category>

		<guid isPermaLink="false">http://www.ya-salaam.com/blog/?p=1745</guid>
		<description><![CDATA[Imaginez qu&#8217;on ait une variable static dans notre classe qui sert de compteur par exemple, voilà comment s&#8217;est prendre pour l&#8217;initialiser : class Point&#123; &#160;public : &#160; static int nombre_de_points; &#125;; //- Initialisation de la variable nombre de points int Point::nombre_de_points = 0;]]></description>
			<content:encoded><![CDATA[<p>Imaginez qu&#8217;on ait une variable static dans notre classe qui sert de compteur par exemple, voilà comment s&#8217;est prendre pour l&#8217;initialiser :</p>
<div class="codecolorer-container cpp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="cpp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #0000ff;">class</span> Point<span style="color: #008000;">&#123;</span><br />
&nbsp;<span style="color: #0000ff;">public</span> <span style="color: #008080;">:</span><br />
&nbsp; <span style="color: #0000ff;">static</span> <span style="color: #0000ff;">int</span> nombre_de_points<span style="color: #008080;">;</span><br />
<span style="color: #008000;">&#125;</span><span style="color: #008080;">;</span><br />
<br />
<span style="color: #666666;">//- Initialisation de la variable nombre de points</span><br />
<span style="color: #0000ff;">int</span> Point<span style="color: #008080;">::</span><span style="color: #007788;">nombre_de_points</span> <span style="color: #000080;">=</span> <span style="color: #0000dd;">0</span><span style="color: #008080;">;</span></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.ya-salaam.com/blog/cpp-initialiser-une-variable-static-dans-une-classe.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

