<?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>Noormohamed</title>
	<atom:link href="http://www.noormohamed.co.uk/home/feed" rel="self" type="application/rss+xml" />
	<link>http://www.noormohamed.co.uk/home</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 19 Feb 2010 08:38:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PL/SQL Basic Insert  (no return)</title>
		<link>http://www.noormohamed.co.uk/home/archives/384</link>
		<comments>http://www.noormohamed.co.uk/home/archives/384#comments</comments>
		<pubDate>Fri, 19 Feb 2010 08:38:14 +0000</pubDate>
		<dc:creator>Daniel Noormohamed</dc:creator>
				<category><![CDATA[PL/SQL]]></category>

		<guid isPermaLink="false">http://www.noormohamed.co.uk/home/?p=384</guid>
		<description><![CDATA[A basic Stored Procedure allowing to insert a mysql field with 3 variables put into it.
CREATE OR REPLACE PROCEDURE GET_EMP_INFO
(fname IN VARCHAR2, lname IN VARCHAR2, age IN NUMBER) AS
BEGIN
INSERT INTO PERSONS (FIRSTNAME, LASTNAME, AGE) VALUES(fname, lname, age);
END GET_EMP_INFO;
]]></description>
		<wfw:commentRss>http://www.noormohamed.co.uk/home/archives/384/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare Player on a VMWare ESX Guest</title>
		<link>http://www.noormohamed.co.uk/home/archives/382</link>
		<comments>http://www.noormohamed.co.uk/home/archives/382#comments</comments>
		<pubDate>Mon, 08 Feb 2010 22:06:22 +0000</pubDate>
		<dc:creator>Daniel Noormohamed</dc:creator>
				<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.noormohamed.co.uk/home/?p=382</guid>
		<description><![CDATA[Someone gave me a VMWare Player instance Linux. I couldn&#8217;t run it on my own machine so I had to run it on my VMWare ESX Server the only solution i had was to run it on an instance on that machine. it wont let me do it unless i had some kind of modifications. [...]]]></description>
		<wfw:commentRss>http://www.noormohamed.co.uk/home/archives/382/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java &#8211; do loop</title>
		<link>http://www.noormohamed.co.uk/home/archives/376</link>
		<comments>http://www.noormohamed.co.uk/home/archives/376#comments</comments>
		<pubDate>Sat, 30 Jan 2010 19:26:20 +0000</pubDate>
		<dc:creator>Daniel Noormohamed</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.noormohamed.co.uk/home/?p=376</guid>
		<description><![CDATA[The difference between do-while and while is that do-while evaluates its expression at the bottom of the loop instead of the top. Therefore, the statements within the do block are always executed at least once.

	int num = 0;
	do {
		System.out.println("Line " + (num++));
	} while (num < 5);

The loop will continue to increment by one on every [...]]]></description>
		<wfw:commentRss>http://www.noormohamed.co.uk/home/archives/376/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java – foreach equivalent</title>
		<link>http://www.noormohamed.co.uk/home/archives/369</link>
		<comments>http://www.noormohamed.co.uk/home/archives/369#comments</comments>
		<pubDate>Sat, 30 Jan 2010 16:40:26 +0000</pubDate>
		<dc:creator>Daniel Noormohamed</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.noormohamed.co.uk/home/?p=369</guid>
		<description><![CDATA[Java 5 introduced what is sometimes called a &#8220;for each&#8221; statement that accesses each successive element of an array, List, or Set without the bookkeeping associated with iterators or indexing.

	String[] names = {"Michael Maus", "Mini Maus"};
	for (String s : names) {
		System.out.println(s);
	}

the output results 

Michael Maus
Mini Maus

]]></description>
		<wfw:commentRss>http://www.noormohamed.co.uk/home/archives/369/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java &#8211; while loop</title>
		<link>http://www.noormohamed.co.uk/home/archives/367</link>
		<comments>http://www.noormohamed.co.uk/home/archives/367#comments</comments>
		<pubDate>Sat, 30 Jan 2010 16:33:16 +0000</pubDate>
		<dc:creator>Daniel Noormohamed</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.noormohamed.co.uk/home/?p=367</guid>
		<description><![CDATA[The while statement is used to repeat a block of statements while some condition is true. The condition must become false somewhere in the loop, otherwise it will never terminate.

	int i = 1;
	while (i ]]></description>
		<wfw:commentRss>http://www.noormohamed.co.uk/home/archives/367/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java &#8211; for loop</title>
		<link>http://www.noormohamed.co.uk/home/archives/361</link>
		<comments>http://www.noormohamed.co.uk/home/archives/361#comments</comments>
		<pubDate>Sat, 30 Jan 2010 16:01:07 +0000</pubDate>
		<dc:creator>Daniel Noormohamed</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.noormohamed.co.uk/home/?p=361</guid>
		<description><![CDATA[Many loops consist of three operations surrounding the body: (1) initialization of a variable, (2) testing a condition, and (3) updating a value before the next iteration. The for loop groups these three common parts together into one statement, making it more readable and less error-prone than the equivalent while loop. For repeating code a [...]]]></description>
		<wfw:commentRss>http://www.noormohamed.co.uk/home/archives/361/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Dynamic Scrolling Content Box Using AJAX</title>
		<link>http://www.noormohamed.co.uk/home/archives/358</link>
		<comments>http://www.noormohamed.co.uk/home/archives/358#comments</comments>
		<pubDate>Thu, 28 Jan 2010 21:47:45 +0000</pubDate>
		<dc:creator>Daniel Noormohamed</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.noormohamed.co.uk/home/?p=358</guid>
		<description><![CDATA[
If you have used Google Reader, then you might have noticed the way Google Reader shows feed items, it loads up few items first when you click on a feed and as you scroll down to view more items, it fetches more items dynamically and adds it to the list.
go to the script “Dynamic Scrolling [...]]]></description>
		<wfw:commentRss>http://www.noormohamed.co.uk/home/archives/358/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Center a Div Container</title>
		<link>http://www.noormohamed.co.uk/home/archives/355</link>
		<comments>http://www.noormohamed.co.uk/home/archives/355#comments</comments>
		<pubDate>Mon, 25 Jan 2010 20:32:33 +0000</pubDate>
		<dc:creator>Daniel Noormohamed</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[margin]]></category>

		<guid isPermaLink="false">http://www.noormohamed.co.uk/home/?p=355</guid>
		<description><![CDATA[a huge percentage of websites hosted online are centered on the page. In todays world with the huge amount of screen resolutions it is hard to keep each satisfied. The way designers solve this problem is by creating a container with the website content inside it.
how they do it
div.main {
margin: 0px auto;
}
]]></description>
		<wfw:commentRss>http://www.noormohamed.co.uk/home/archives/355/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery $.getScript</title>
		<link>http://www.noormohamed.co.uk/home/archives/347</link>
		<comments>http://www.noormohamed.co.uk/home/archives/347#comments</comments>
		<pubDate>Mon, 25 Jan 2010 20:27:32 +0000</pubDate>
		<dc:creator>Daniel Noormohamed</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.noormohamed.co.uk/home/?p=347</guid>
		<description><![CDATA[This is one of my fav functionalities that jquery provides it would load a javascript file and execute it on success.
$.getScript('ajax/test.js', function() {
  alert('Load was performed.');
});
loading a javascript file when its needed allowing page loading to happen quicker
]]></description>
		<wfw:commentRss>http://www.noormohamed.co.uk/home/archives/347/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery $(this).serialize()</title>
		<link>http://www.noormohamed.co.uk/home/archives/345</link>
		<comments>http://www.noormohamed.co.uk/home/archives/345#comments</comments>
		<pubDate>Mon, 25 Jan 2010 20:24:29 +0000</pubDate>
		<dc:creator>Daniel Noormohamed</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.noormohamed.co.uk/home/?p=345</guid>
		<description><![CDATA[.serialize()
Forms, Helper Functions
Encode a set of form elements as a string for submission.
.
$('form').submit(function() {
  alert($(this).serialize());
  return false;
});
using serialize will place input, textarea, radio buttons and checkboxes into a url friendly string like below.
a=1&#38;b=2&#38;c=3&#38;d=4&#38;e=5
]]></description>
		<wfw:commentRss>http://www.noormohamed.co.uk/home/archives/345/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
