<?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>Wassim Sidani</title>
	<atom:link href="http://www.sidani.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sidani.info</link>
	<description>Education Biology Flash Animation 3D biology</description>
	<lastBuildDate>Thu, 10 Jun 2010 08:44:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>RU486</title>
		<link>http://www.sidani.info/2010/06/10/ru486/</link>
		<comments>http://www.sidani.info/2010/06/10/ru486/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 08:44:55 +0000</pubDate>
		<dc:creator>wassim</dc:creator>
				<category><![CDATA[Education/Teaching]]></category>
		<category><![CDATA[Biology]]></category>
		<category><![CDATA[contragestives]]></category>

		<guid isPermaLink="false">http://www.sidani.info/2010/06/10/ru486/</guid>
		<description><![CDATA[A common mistake regarding RU 486 is saying that it decreases the secretion of progesterone. RU 486 does not interfere with the secretion of progesterone. It is an antagonist of progesterone, which means that it simply blocks progesterone receptors and prevents progesterone from acting on its target cells without actually lowering its concentration in the [...]]]></description>
			<content:encoded><![CDATA[<p>A common mistake regarding RU 486 is saying that it decreases the secretion of progesterone.<br />
RU 486 does not interfere with the secretion of progesterone.<br />
It is an antagonist of progesterone, which means that it simply blocks progesterone receptors and prevents progesterone from acting on its target cells without actually lowering its concentration in the blood.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sidani.info/2010/06/10/ru486/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Class of 2010</title>
		<link>http://www.sidani.info/2010/06/08/class-of-2010/</link>
		<comments>http://www.sidani.info/2010/06/08/class-of-2010/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 17:25:25 +0000</pubDate>
		<dc:creator>wassim</dc:creator>
				<category><![CDATA[Education/Teaching]]></category>

		<guid isPermaLink="false">http://www.sidani.info/2010/06/08/class-of-2010/</guid>
		<description><![CDATA[Dear LS students, Here&#8217;s a link you don&#8217;t want to miss: http://www.sidani.info/ls2010/ Regards.]]></description>
			<content:encoded><![CDATA[<p>Dear LS students,<br />
Here&#8217;s a link you don&#8217;t want to miss: <a href="http://www.sidani.info/ls2010/">http://www.sidani.info/ls2010/</a><br />
Regards.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sidani.info/2010/06/08/class-of-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arabic text from mySQL database using amfphp</title>
		<link>http://www.sidani.info/2010/05/10/arabic-text-from-mysql-database-using-amfphp/</link>
		<comments>http://www.sidani.info/2010/05/10/arabic-text-from-mysql-database-using-amfphp/#comments</comments>
		<pubDate>Mon, 10 May 2010 18:31:39 +0000</pubDate>
		<dc:creator>wassim</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Tutorials]]></category>
		<category><![CDATA[amfphp]]></category>
		<category><![CDATA[arabic]]></category>
		<category><![CDATA[AS2]]></category>
		<category><![CDATA[french]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.sidani.info/?p=134</guid>
		<description><![CDATA[I had this issue where arabic text and french text retrieved from a mySQL database were not displaying correctly in my flash frontend, I was using amfphp to communicate and query the database. Needless to say that the text does display correctly in phpMyAdmin so it is correctly encoded in the database itself.]]></description>
			<content:encoded><![CDATA[<p>I had this issue where arabic text and french text retrieved from a mySQL database were not displaying correctly in my flash frontend, I was using amfphp to communicate and query the database. Needless to say that the text does display correctly in phpMyAdmin so it is correctly encoded in the database itself.</p>
<p>So here&#8217;s what I did to resolve the issue:</p>
<p>- Ensure that the mySQL tables where the text is stored are <strong>using the utf8_general_ci Collation</strong>.</p>
<p>- Set <strong>$gateway->setCharsetHandler( &#8220;none&#8221;, &#8220;ISO-8859-1&#8243;, &#8220;ISO-8859-1&#8243; )</strong> in the gateway.php file (in case you&#8217;re wondering, yes you should simply NOT use iconv or utf_decoder or mbstring or the like, just disable the setCharsetHandler conversion by using &#8220;none&#8221; as the conversion method).</p>
<p>- in your php service file, say it&#8217;s called permissions.php, use the following : </p>
<p><code>$rsConnectionID=mysql_connect("localhost", "root", "");<br />
		mysql_set_charset("utf8", $rsConnectionID);</code></p>
<p>Be sure to have these set before running your query or passing the results to flash.</p>
<p>This should resolve all the issues you&#8217;re having, of course <strong>you should not use the following actionScript</strong> : <code>system.useCodepage = true;</code> as this will tell the flash player not to use utf 8 as default encoding and will surely get you into troubles.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sidani.info/2010/05/10/arabic-text-from-mysql-database-using-amfphp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash CS5 and the iPhone</title>
		<link>http://www.sidani.info/2010/04/21/flash-cs5-and-the-iphone/</link>
		<comments>http://www.sidani.info/2010/04/21/flash-cs5-and-the-iphone/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 19:10:43 +0000</pubDate>
		<dc:creator>wassim</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Flash CS5]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.sidani.info/2010/04/21/flash-cs5-and-the-iphone/</guid>
		<description><![CDATA[I think that by now everyone in the flash community knows about the &#8220;Slap in the face&#8221; we, as flash developers, received by Apple, in case you didn&#8217;t you can read all about it in the &#8220;Go screw yourself Apple&#8221; post. A side effect of adobe&#8217;s announcement that flash CS5 will export to iPhone and [...]]]></description>
			<content:encoded><![CDATA[<p>I think that by now everyone in the flash community knows about the &#8220;Slap in the face&#8221; we, as flash developers, received by Apple, in case you didn&#8217;t you can read all about it in the <a href="http://theflashblog.com/?p=1888">&#8220;Go screw yourself Apple&#8221; post</a>.</p>
<p>A side effect of adobe&#8217;s announcement that flash CS5 will export to iPhone and iPod touch was encouraging thousands of flash developers to buy an iPhone or iPod touch to have the appropriate hardware to test and develop Flash-based ipa, at least that&#8217;s what I did&#8230;Now Apple should be grateful to this &#8220;free Marketing favor&#8221; Adobe inadvertently offered to say the least&#8230;</p>
<p>I already have a windows mobile powered HTC touch diamond phone and I invested in buying a 3rd generation 32 GB iPod touch for that purpose, if Apple continues its tight policy about 3rd party-built ipa, then I will either have to invest in an Android or just keep my ipas for myself! I might even have to jailbreak the iPod to be able to use my own built applications on my device! please correct me if I am wrong (should the device be jailbroken to install my own self-built ipas without having to kiss Mr Jobs &#8216;hand&#8217; to get approval?)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sidani.info/2010/04/21/flash-cs5-and-the-iphone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A new member joins the Sidani family</title>
		<link>http://www.sidani.info/2009/03/27/a-new-member-joins-the-sidani-family/</link>
		<comments>http://www.sidani.info/2009/03/27/a-new-member-joins-the-sidani-family/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 21:22:16 +0000</pubDate>
		<dc:creator>wassim</dc:creator>
				<category><![CDATA[Wassim]]></category>

		<guid isPermaLink="false">http://www.sidani.info/?p=106</guid>
		<description><![CDATA[She&#8217;s Lara, our second child, a chilling cool baby girl that arrived on March 16 (one year and one day after the arrival of her older brother, Rami). 51.5 cm at birth and 3160 grams, DOB is March 16 2009 at 11:47 am.]]></description>
			<content:encoded><![CDATA[<p>She&#8217;s Lara, our second child, a chilling cool baby girl that arrived on March 16 (one year and one day after the arrival of her older brother, Rami).<br />
<br />
<img src="http://www.sidani.info/lara/lara3.jpg" alt="Lara Sidani" /><br />
<br />
51.5 cm at birth and 3160 grams, DOB is March 16 2009 at 11:47 am.<br />
<br />
<img src="http://sidani.info/lara/lara1.jpg" alt="My daughter Lara" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sidani.info/2009/03/27/a-new-member-joins-the-sidani-family/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ActionScript3 flash shopping cart-updates</title>
		<link>http://www.sidani.info/2009/02/06/actionscript3-flash-shopping-cart-updates/</link>
		<comments>http://www.sidani.info/2009/02/06/actionscript3-flash-shopping-cart-updates/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 18:51:26 +0000</pubDate>
		<dc:creator>wassim</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.sidani.info/2009/02/06/actionscript3-flash-shopping-cart-updates/</guid>
		<description><![CDATA[Ok so we I had some good suggestions sent to my inbox, I am already improving and cleaning up some of the code of the actionscript3 flash shopping cart so It will be easy to integrate these new features. A full list of the new features will be published soon, meanwhile if you have any [...]]]></description>
			<content:encoded><![CDATA[<p>Ok so we I had some good suggestions sent to my inbox, I am already improving and cleaning up some of the code of the <a href="http://www.sidani.info/2009/01/28/flash-shopping-cart/">actionscript3 flash shopping cart</a> so It will be easy to integrate these new features. A full list of the new features will be published soon, meanwhile if you have any wish list, feel free to comment here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sidani.info/2009/02/06/actionscript3-flash-shopping-cart-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>actionscript3 flash shopping cart- new features</title>
		<link>http://www.sidani.info/2009/02/03/actionscript3-flash-shopping-cart-new-features/</link>
		<comments>http://www.sidani.info/2009/02/03/actionscript3-flash-shopping-cart-new-features/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 21:00:21 +0000</pubDate>
		<dc:creator>wassim</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.sidani.info/2009/02/03/actionscript3-flash-shopping-cart-new-features/</guid>
		<description><![CDATA[So we&#8217;re in the process of adding some cool new features to make competitors look small, these will be revealed very soon once we make sure no other cart includes the same features or even come close! You can expect things that will surely add to the usability of the actionscript3 flash shopping cart and [...]]]></description>
			<content:encoded><![CDATA[<p>So we&#8217;re in the process of adding some cool new features to make competitors look small, these will be revealed very soon once we make sure no other cart includes the same features or even come close! You can expect things that will surely add to the usability of the<br />
<a href="http://www.sidani.info/2009/01/28/flash-shopping-cart/">actionscript3 flash shopping cart</a> and will satisfy even the most demanding users.<br /> If you have any feature you would like to see implemented in the actionscript3 flash cart, please drop us a line.<br /> We know what designers and developers want, and we have the right package for each, more to come in the near future.
</p>
<p>
 </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sidani.info/2009/02/03/actionscript3-flash-shopping-cart-new-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash shopping cart</title>
		<link>http://www.sidani.info/2009/01/28/flash-shopping-cart/</link>
		<comments>http://www.sidani.info/2009/01/28/flash-shopping-cart/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 23:01:16 +0000</pubDate>
		<dc:creator>wassim</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.sidani.info/2009/01/28/flash-shopping-cart-actionscript3/</guid>
		<description><![CDATA[After months of work, we are glad to announce the immediate availability of the actionscript3 flash shopping cart. Packed with lots of features (video support, multiple payment processors and gateways, supporting paypal, 2checkout and authorize.net) this new cart is probably the most flexible yet lightweight cart available today. This actionScript3 shopping cart takes advantage of [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>After months of work, we are glad to announce the immediate availability of the actionscript3 <strong>flash shopping cart. </strong><br />Packed with lots of features (video support, multiple payment processors and gateways, <strong>supporting paypal, 2checkout and authorize.net</strong>) this new cart is probably the most flexible yet lightweight cart available today.</p>
<p><a href="http://sidani.info/test/as3cart/">This actionScript3 shopping cart </a>takes advantage of the rendering engine of flash player 9 and up, its performance exceeds actionscript2 carts by far and you can be sure your customers will receive first class user experience using our cart. </p>
<p>With a filesize less than 150 Kb, you will be amazed of the number of features this cart brings to your online store.</p>
<p>You can have several categories of goods sold through the cart, tangible and intangible (clothing, software, video lectures etc&#8230;). <strong>The cart supports all video and image formats </strong>supported by the flash player.</p>
<p>The cart comes in two flavors, an <strong>XML driven</strong> version and <strong>a mySQL+php  adminPanel</strong> powered version; both flavors are ready to go products with no learning curves.\r\n</p>
<p>The XML driven version can run on any server, there are no special requirements, no database installation or server side scripting needed whatsoever.</p>
<p>The mySQL adminPanel powered version uses a mySQL database to store the details about the products and a php backend to manage the database through a very user friendly interface that makes sense!</p>
<p>Just fill in the details of each product, upload the images and you are ready to sell online.</p>
<p>Additional gateways and payment processors can also be incorporated into the cart upon request.</p>
<p>The actionscript3 flash shopping cart can be connected to an optional automatic delivery system (sold separately) which is extremely useful for digital goods; buyers can immediately download the digital product they bought without intervention by the merchant.</p>
<p>We offer two licensing schemes for maximum flexibility, a designer version and a developer version.</p>
<p><strong>The designer package</strong> of the actionScript3 shopping cart does not include source code. </p>
<p>So what if you want to customize the look of the cart? Well it is easier than doing it yourself,  you can simply send us a psd or a draft of your design and we can do that for you and send you the finished, ready to deploy, swf file.</p>
<p>A single license (works on one domain) costs 150 USD for the XML driven version and 250 USD for the adminPanel version.</p>
<p><strong>The developer package</strong> allows you to do practically anything with the cart since full commented source code is included. The licensing scheme of the developer package is more flexible than the designer package since you can use the cart on an unlimited number of domains without restrictions. </p>
<p>The look and feel of the cart is easily customizable if you have the developer version, all you need is flash CS3 or higher and some basic flash knowledge.</p>
<p>The XML version of the developer package costs 1000 USD while the adminPanel powered version costs 1500 USD.</p>
<p>We offer free installation and technical support with every sale (applies for both the designer and developer versions).</p>
<p>We&#8217;re also capable of adding custom features, integrating the cart with existing flash sites, and translating the interface to different languages (additional fee, depends on complexity of the task). </p>
<p>Here’s  the demo of the <a href="http://sidani.info/test/as3cart/">AS3 flash shopping cart</a>, This version supports using videos as description of an item as well as a large picture or even an swf file.<br /> the demo connects to paypal as payment gateway yet the retail version supports 2checkout and authorize.net as well. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sidani.info/2009/01/28/flash-shopping-cart/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>ScrollPane AS3 issues</title>
		<link>http://www.sidani.info/2008/12/24/scrollpane-as3-issues/</link>
		<comments>http://www.sidani.info/2008/12/24/scrollpane-as3-issues/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 09:31:46 +0000</pubDate>
		<dc:creator>wassim</dc:creator>
				<category><![CDATA[Education/Teaching]]></category>

		<guid isPermaLink="false">http://www.sidani.info/2008/12/24/scrollpane-as3-issues/</guid>
		<description><![CDATA[I had some free time to experiment and decided to port an application I wrote earlier to AS3. The scrollPane component is at the heart of this application and much to my surprise, the AS3 version has almost the same erratic behavior as the AS2 version when it comes to the scrollbars appearing when needed. [...]]]></description>
			<content:encoded><![CDATA[<p>I had some free time to experiment and decided to port an application I wrote earlier to AS3. The scrollPane component is at the heart of this application and much to my surprise, the AS3 version has almost the same erratic behavior as the AS2 version when it comes to the scrollbars appearing when needed. It seems that we also need to find workarounds for the \&#8221;much faster, much cleaner version\&#8221; of actionscript i.e. AS3.\r\n</p>
<p>More About this in the coming days.\r\n</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sidani.info/2008/12/24/scrollpane-as3-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash CS4 released, or is it?</title>
		<link>http://www.sidani.info/2008/11/17/flash-cs4-released-or-is-it/</link>
		<comments>http://www.sidani.info/2008/11/17/flash-cs4-released-or-is-it/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 18:35:17 +0000</pubDate>
		<dc:creator>wassim</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash CS4]]></category>

		<guid isPermaLink="false">http://www.sidani.info/2008/11/17/flash-cs4-released-or-is-it/</guid>
		<description><![CDATA[As a flash expert and enthusiast, I was thrilled when the release of the new Flash CS4 was announced. Like thousands of other flash coders, I went through the pain of downloading the trial version of Flash CS4 (almost one gigabyte large) just to find that the help files and API documentation were simply not [...]]]></description>
			<content:encoded><![CDATA[<p>As a flash expert and enthusiast, I was thrilled when the release of the new Flash CS4 was announced. Like thousands of other flash coders, I went through the pain of downloading the trial version of Flash CS4 (almost one gigabyte large) just to find that the help files and API documentation were simply not there! The help menu takes you to adobe site to check the online version (if you are connected to the internet) or simply displays some very basic info with no code samples whatsoever.</p>
<p>I can now say with confidence, Adobe is following a pattern with every new release of Flash since CS3, the documentations are getting crappier with every release, not a good strategy if they want people to actually learn flash and if they want to expand the use of flash as a platform.</p>
<p>CS4 brought yet another disappointment to me and millions of RTF users, the &#8220;ligature&#8221; support is buried deep inside some user unfriendly classes and there is no simple way to access this essential feature for the average user by simply setting a property for a static or dynamic text field, way to go Adobe, really smart!\r\n</p>
</p>
<p>So was Flash CS4 really released or is this just another pre-release alpha quality software? The latter seems more probable. </p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sidani.info/2008/11/17/flash-cs4-released-or-is-it/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
