<?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>Ramzi Komati</title>
	<atom:link href="http://blog.ramzikomati.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ramzikomati.com</link>
	<description></description>
	<lastBuildDate>Fri, 13 Apr 2012 13:57:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>Solve a 2D maze using Stack implementation in C++</title>
		<link>http://blog.ramzikomati.com/cpp/2d-maze-stack/</link>
		<comments>http://blog.ramzikomati.com/cpp/2d-maze-stack/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 18:57:04 +0000</pubDate>
		<dc:creator>Ramzi Komati</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Stack]]></category>

		<guid isPermaLink="false">http://blog.ramzikomati.com/?p=850</guid>
		<description><![CDATA[&#8216;S&#8217; will represent the starting line. &#8216;F&#8217; will represent the finishing line. &#8216;#&#8217; will represent an obstacle/wall. &#8216; &#8216; will represent free space. The maze will be stored into a two dimensional array maze[MAZE_HEIGHT][MAZE_WIDTH]. x S x x x x x x x x x x x x x x x x x x x [...]]]></description>
		<wfw:commentRss>http://blog.ramzikomati.com/cpp/2d-maze-stack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix WordPress F8 Lite theme image squashing</title>
		<link>http://blog.ramzikomati.com/article/wp-f8-lite-theme-thumbnail-fix/</link>
		<comments>http://blog.ramzikomati.com/article/wp-f8-lite-theme-thumbnail-fix/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 15:53:44 +0000</pubDate>
		<dc:creator>Ramzi Komati</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Theme]]></category>

		<guid isPermaLink="false">http://blog.ramzikomati.com/?p=693</guid>
		<description><![CDATA[F8 Lite is a popular photoblog theme provided by WordPress originaly created by Thad Allender. You can do some awesome WordPress blogs using F8 Lite, check out my latest creation artissus.com. One of the major problems in F8 Lite was the image squashing/stretching in the post thumbnails. To fix this issue you can do one of the following: Modify [...]]]></description>
		<wfw:commentRss>http://blog.ramzikomati.com/article/wp-f8-lite-theme-thumbnail-fix/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>How to detect and store online users/visitors in ASP.Net</title>
		<link>http://blog.ramzikomati.com/asp-net/online-users/</link>
		<comments>http://blog.ramzikomati.com/asp-net/online-users/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 12:46:14 +0000</pubDate>
		<dc:creator>Ramzi Komati</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[VB]]></category>

		<guid isPermaLink="false">http://blog.ramzikomati.com/?p=629</guid>
		<description><![CDATA[In this tutorial you will learn how to detect the total number of online users in your website and store the data in a database. This script is very important to study the performance of your web server. Having more than 2,000 online users on a shared hosting server is sign that it&#8217;s time to [...]]]></description>
		<wfw:commentRss>http://blog.ramzikomati.com/asp-net/online-users/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fade any object without using jQuery (JavaScript)</title>
		<link>http://blog.ramzikomati.com/htmlcss/fade-object-javascript/</link>
		<comments>http://blog.ramzikomati.com/htmlcss/fade-object-javascript/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 10:51:53 +0000</pubDate>
		<dc:creator>Ramzi Komati</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://blog.ramzikomati.com/?p=621</guid>
		<description><![CDATA[Fade smoothly any HTML object without using jQuery. function fadeInOut(obj, startValue, endValue) { var t = (startValue &#60; endValue) ? 0 : 1; var fps = window.setInterval(function() { if (startValue &#60; endValue) { if (t &#60; endValue) { obj.style.opacity = t; obj.style.filter = "alpha(opacity = " + (t * 100) + ")"; t += 0.05; } else [...]]]></description>
		<wfw:commentRss>http://blog.ramzikomati.com/htmlcss/fade-object-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connect to MySQL using ASP.Net on GoDaddy®</title>
		<link>http://blog.ramzikomati.com/asp-net/connect-mysql-asp-net-godaddy/</link>
		<comments>http://blog.ramzikomati.com/asp-net/connect-mysql-asp-net-godaddy/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 13:17:42 +0000</pubDate>
		<dc:creator>Ramzi Komati</dc:creator>
				<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[GoDaddy]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[VB]]></category>

		<guid isPermaLink="false">http://blog.ramzikomati.com/?p=495</guid>
		<description><![CDATA[You can connect to MySQL database from GoDaddy® using ObdcConnection. Dim myConnection  As New OdbcConnection( _ "DRIVER={MySQL ODBC 3.51 Driver}; _ SERVER=[Database Server's IP Address]; _ DATABASE=[Database_Name]; _ UID=[Database_Name]; _ PASSWORD=[Database_Password]; _ option=1") OdbcConnection myConnection = new OdbcConnection ( "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=[Database Server's IP Address]; DATABASE=[Database_Name]; PASSWORD=[Database_Password]; UID=[Database_Name]; option=1" ); That&#8217;s it :) [...]]]></description>
		<wfw:commentRss>http://blog.ramzikomati.com/asp-net/connect-mysql-asp-net-godaddy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to create the Motorola logo in HTML5 (using canvas)</title>
		<link>http://blog.ramzikomati.com/htmlcss/motorola-logo-html5/</link>
		<comments>http://blog.ramzikomati.com/htmlcss/motorola-logo-html5/#comments</comments>
		<pubDate>Sun, 13 Feb 2011 00:32:39 +0000</pubDate>
		<dc:creator>Ramzi Komati</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[Canvas]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://blog.ramzikomati.com/?p=393</guid>
		<description><![CDATA[HTML5 and CSS3 Logo Design are becoming increasingly more and more popular due of their incredible ability to reduce size without loosing any graphical qualities. In this article I will show you the basis to create an HTML5 logo using canvas and JavaScript only. You can also read how to create an HTML logo using [...]]]></description>
		<wfw:commentRss>http://blog.ramzikomati.com/htmlcss/motorola-logo-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create the Motorola logo in CSS3</title>
		<link>http://blog.ramzikomati.com/htmlcss/motorola-logo-css3/</link>
		<comments>http://blog.ramzikomati.com/htmlcss/motorola-logo-css3/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 21:19:37 +0000</pubDate>
		<dc:creator>Ramzi Komati</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://blog.ramzikomati.com/?p=366</guid>
		<description><![CDATA[HTML5 and CSS3 Logo Design are becoming increasingly more and more popular due of their incredible ability to reduce size without loosing any graphical qualities. In this article I will show you the basis to create an HTML logo using CSS3 only. You can also read how to create the Motorola Logo in HTML5 using the [...]]]></description>
		<wfw:commentRss>http://blog.ramzikomati.com/htmlcss/motorola-logo-css3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cool Business Card Design in Adobe Photoshop</title>
		<link>http://blog.ramzikomati.com/design/my-new-business-card/</link>
		<comments>http://blog.ramzikomati.com/design/my-new-business-card/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 12:59:12 +0000</pubDate>
		<dc:creator>Ramzi Komati</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe Photoshop]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://blog.ramzikomati.com/?p=318</guid>
		<description><![CDATA[Business cards are important marketing tools, they are the least expensive and most cost-effective way for anyone who wants to build a business. So put some though into it. I like the concept introduced by Chris Colhoun, I like it so much that I even changed my entire blog design. In this article I will show [...]]]></description>
		<wfw:commentRss>http://blog.ramzikomati.com/design/my-new-business-card/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Factorial Procedure in Assembly</title>
		<link>http://blog.ramzikomati.com/assembly/factorial-procedure-in-assembly/</link>
		<comments>http://blog.ramzikomati.com/assembly/factorial-procedure-in-assembly/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 16:42:43 +0000</pubDate>
		<dc:creator>Ramzi Komati</dc:creator>
				<category><![CDATA[Assembly]]></category>
		<category><![CDATA[MASM615]]></category>

		<guid isPermaLink="false">http://blog.ramzikomati.com/?p=332</guid>
		<description><![CDATA[Non-Recursive version of the Factorial procedure that uses a loop. TITLE Factorial Procedure INCLUDE Irvine32.inc ;---------------------------------------------------- .data MSG_iNumber BYTE  "Enter a number N:", 0 MSG_oNumber     BYTE  "N! = ", 0 ;---------------------------------------------------- .code main PROC ;// Ask the user to input a number N MOV edx, OFFSET MSG_iNumber CALL WRITESTRING CALL CRLF CALL READINT ;// N is stored [...]]]></description>
		<wfw:commentRss>http://blog.ramzikomati.com/assembly/factorial-procedure-in-assembly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to do assembly programs using MASM 6.15?</title>
		<link>http://blog.ramzikomati.com/assembly/how-to-do-assembly-programs-using-masm/</link>
		<comments>http://blog.ramzikomati.com/assembly/how-to-do-assembly-programs-using-masm/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 16:01:13 +0000</pubDate>
		<dc:creator>Ramzi Komati</dc:creator>
				<category><![CDATA[Assembly]]></category>
		<category><![CDATA[MASM615]]></category>

		<guid isPermaLink="false">http://blog.ramzikomati.com/?p=316</guid>
		<description><![CDATA[Testing assembly program was pretty hard for me and my colleague in the Assembly Courses. It might be a bit complicated to execute an assembly program, but I&#8217;m sure that you will get used to it. Assembly is a very important language, it&#8217;s the mother of all other languages. Ok now, enough about talking, here is [...]]]></description>
		<wfw:commentRss>http://blog.ramzikomati.com/assembly/how-to-do-assembly-programs-using-masm/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
