Skip to main content

Warrior Empire: The Mughals


Warrior Empire: The Mughals is a sweeping, in-depth portrait of India’s most colorful, violent, and majestic era.
From 1526 to 1858, this dynasty of nomadic warriors indulged their appetite for territorial expansion, spreading their rule throughout the Indian subcontinent.
Though they conquered their kingdom with crushing brutality, the Mughals were also brilliant technological innovators and masters of art and architecture.
This program offers lush, detailed images of Mughal accomplishments such as the glorious Taj Mahal, palaces, forts, water systems, elaborate gardens, and richly crafted artwork.
Step-by-step scientific recreations of advanced Mughal metallurgy and weaponry show the meticulous production of chain mail armor for a battalion of elephants, lethally flexible composite bows, rocketry, and sword-smith techniques passed down through the generations, and still alive today.
Join us for an enthralling history of the inventive warfare, material excess, architectural marvels, and cultural flowering that shaped modern India.



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