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...

Best Google Fonts for Logo design

From logos to business cards, websites to brochures, a font can make or break a medium. The right font can draw attention to your material and make it pleasant to read. But where can you find cool and unique fonts without having to pay extra for them? Google’s font collection is an amazing resource for beginner designers and pros alike. With 846 fonts in more than 135 languages currently available and more to come, you are certain to find a font for any occasion. Every font in the collection is completely free to download, so even low-budget projects need not compromise on font quality. We at salamspot have decided to compile 26 of the most beautiful cursive and brush Google fonts for you, from very formal and elegant script fonts such as Monsieyr La Doulaise and Roundhands to cool vintage fonts such as Lobster and Pacifico. Enjoy the primal, earthen beauty of Rock Salt, the fine, ethereal charm of Euphoria, and many other fonts that will help you add a personal touch to your pr...

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