Comparing World Religions – Buddhism

15 years ago

Buddhism - "A widespread Asian religion or philosophy, founded by Siddartha Gautama in NE India in the 5th century bc,…

Comparing World Religions – Mormonism

15 years ago

Mormon - "the doctrines and practices of the Mormon Church based on the Book of Mormon." Overview of Mormonism Mormons…

Comparing World Religions – Christianity

15 years ago

Christianity - "A person who has received Christian baptism or is a believer in Jesus Christ and his teachings." Overview…

Comparing World Religions – Islam

15 years ago

Islam - "The religion of the Muslims, a monotheistic faith regarded as revealed through Muhammad as the Prophet of Allah.".…

Cat on Drugs Video

15 years ago

I found this on youtube.com and couldn't resist sharing this with others. For those wondering, the cat is just playing…

Learning C for Python programmers

15 years ago

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

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

15 years ago

// Returns the current page. function getPageURL(){ return 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']; } // getCurrDir() returns the current directory.…

jQuizMe Example: Simple Math Quiz

15 years ago

Here's an example of jQuizMe. Goal: Make a quiz for Addition, Subtraction and Multiplication for two digit numbers. Steps: Make…

Code of the day: MS-DOS, Open Explorer from Current Path

15 years ago

For windows. When you're in MS-DOS, type "explorer ." or "start ." to open up explorer (windows file manager) with…

Code of the day: C, Get the Digits from a Number

15 years ago

Today's Code of the Day is about how to find the digit of a number at a given position. I…