Comparing World Religions – Islam

allah - meaning god in arabic
allah - meaning god in arabic

Islam – “The religion of the Muslims, a monotheistic faith regarded as revealed through Muhammad as the Prophet of Allah.”.

Overview of Islam.

The life experience of a Muslim follower.

Problems within the religion.

For more information visit wikipedia.org – Islam.

Larry Battle

Larry Battle

I love to program, and discover new tech. Check out my <a href="http://stackoverflow.com/users/527776/larry-battle">stackoverflow</a> and <a href="https://github.com/LarryBattle">github</a> accounts.

More Posts - Website

Follow Me:Add me on XAdd me on LinkedInAdd me on YouTube

Cat on Drugs Video


I found this on youtube.com and couldn’t resist sharing this with others.
For those wondering, the cat is just playing with the cigarette and doesn’t want to give it up.

Larry Battle

Larry Battle

I love to program, and discover new tech. Check out my <a href="http://stackoverflow.com/users/527776/larry-battle">stackoverflow</a> and <a href="https://github.com/LarryBattle">github</a> accounts.

More Posts - Website

Follow Me:Add me on XAdd me on LinkedInAdd me on YouTube

Learning C for Python programmers

Here’s a neat guide I found for learning C to Python or Python to C provided by David Brezeale.

Larry Battle

Larry Battle

I love to program, and discover new tech. Check out my <a href="http://stackoverflow.com/users/527776/larry-battle">stackoverflow</a> and <a href="https://github.com/LarryBattle">github</a> accounts.

More Posts - Website

Follow Me:Add me on XAdd me on LinkedInAdd me on YouTube

Code of the Day: PHP, get the current directory of a page.

1
2
3
4
5
6
7
8
// Returns the current page.
function getPageURL(){
	return 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
}
// getCurrDir() returns the current directory.
function getCurrDir(){
	return dirname( getPageURL() );
}

Example:

1
2
getPageURL();    // returns "http://localhost/live/uploadProductImage.php"
getCurrDir();    // returns "http://localhost/live/"
Larry Battle

Larry Battle

I love to program, and discover new tech. Check out my <a href="http://stackoverflow.com/users/527776/larry-battle">stackoverflow</a> and <a href="https://github.com/LarryBattle">github</a> accounts.

More Posts - Website

Follow Me:Add me on XAdd me on LinkedInAdd me on YouTube