Skip to main content

Islam: Empire of Faith


What is Islam? Who is Muhammad? This is a documentary narrated by Ben Kingsley about Islam and attempts to answer these questions. The first part deals with the life of the Prophet Muhammad, his early life, his encounter with God Almighty and the birth of the Islam.
1. Prophet Muhammad and the Rise of Islam. Islam would become the revitalizing force of a barbaric Arabia, returning people to God and bringing back the monotheistic message of Christianity and Judaism in its most powerful way. Islam Women were given rights over there husbands, racism was annihilated and the rich were made equal to the poor.
2. The Awakening. This part relates the golden age of Islam. A time of great learning when Europe was steeped in the Dark Ages. The building of great works of architecture, reading, writing, mathematics, medicine, and astronomy. Even before the printing press Muslims would have hundreds of scribes writing all at once so they would learn and reproduce the writings.
3. The Ottomans. This portion deals with the growing Ottoman Empire, which would control the bridge between 3 continents: Africa, Europe and Asia. This empire would begin at the close of the Crusades until World War I, from the 1300s to 1923. They would rule the entire Middle East and make there way into Europe. Before there was the state of Israel, there was great peace in the Holy Land regulated by the Ottomans.


Comments

Popular posts from this blog

3 Ways to extract the Windows 8 /10 Product key from the BIOS/UEFI

Sometimes you need your Windows 8 product key, in versions prior to Windows 8 it was quite easy, you can only look at the label of the product label on your computer. But since Windows 8 Microsoft has made a change. Most likely, you no longer have a product label. Instead, they register the product key in their BIOS / UEFI. This is a good feature because now when you reinstall Windows 8, your product key is automatically recovered from the BIOS / UEFI. But recovering the product key on its own was a bit more complicated. But fortunately, we can still extract it. If you can not start Windows, see the last part of Method 1 that will describe a method that does not require an installed version of Windows. 1- ShowKeyPlusUWP This is probably a bit easier. You can find the tool here: https://github.com/Superfly-Inc/ShowKeyPlus/releases/download/ShowkeyPlus/ShowKeyPlus.zip Extract the ZIP file and run ShowKeyPlus.exe This will show your installed key along with your OEM Key if prese...

open source marketplace platform

Opensource.com has a good article about this:  4 open source peer-to-peer marketplaces Here are the main open source marketplace solutions: Sharetribe : the most well-known open source solution for marketplaces. Built on Ruby, has a strong community. Perfectly adapted for MVPs and proof-of-concept projects. Can handle sales and services/rentals. Notable platforms using this technology:  The Quiver  &  Studiotime Source code here Demo Cocorico : specially designed for service & rental platforms, possibly the most powerful solution in that field. Large community for a new project (2nd largest). Built on PHP (Symfony). Perfectly adapted to service & rental marketplaces (AirBNB, BlaBlaCar, Drivy…). Notable platforms using this technology:  Find your coach - Koach  &  WeFarmUp.com Source code here Demo Mayocat  (discounted): specialized in marketplaces that sell goods. Unfortunately the project has been discontinued - they...

How do I uninstall and reinstall MySQL in Ubuntu - Windows Subsystem for Linux

Before you remove your MySQL installation, try running the following command from the CLI. mysql_secure_installation If a password hasn't been set for  root  (for MySQL), that'll prompt you to set a password and run you through a series of steps to help clean up and secure MySQL (basic security). Once set, then try running the command below to restart MySQL and see if you receive an error. service mysql restart We can troubleshoot to see what the issue is, as long as I know what errors you're receiving, or we can wipe the installation and start from scratch. To remove MySQL, first you'd want to run: apt-get remove -y mysql-* and then: apt-get purge -y mysql-* The first command removes MySQL and associated packages while the second wipes configuration. Official Page:-  Windows Doc