Menu

Ten Oldest and Ancient Mosques around the world

We try listing world ten oldest or ancient Mosques or Masjid, along with their locations and notable features. Here is the list of ten Mosques:

  1. Al-Haram Mosque, Mecca, Saudi Arabia

    • Considered the oldest mosque in the world.
    • Home to the Kaaba, the holiest site in Islam.
    • Houses the Black Stone, believed to be a sacred relic.
    • Undergoes constant expansion, with millions of pilgrims visiting annually during Hajj.


  2. Al-Aqsa Mosque, Jerusalem, Palestine

    • Third holiest site in Islam, considered the first Qiblah (direction of prayer) for Muslims.
    • Home to the Dome of the Rock, a stunning golden dome structure.
    • A place of significant religious and political importance.

  3. Al-Masjid al-Nabawi, Medina, Saudi Arabia

    • Second holiest site in Islam after the Al-Haram Mosque.
    • Houses the tomb of Prophet Muhammad.
    • One of the largest mosques in the world, with a capacity for over a million worshippers.
    • Has undergone extensive renovations and expansions throughout history.

  4. Quba Mosque, Medina, Saudi Arabia

    • First mosque built by Prophet Muhammad after migrating to Medina.
    • Considered a significant historical and religious site.
    • Remains relatively unchanged since its construction.

  5. Masjid al-Qiblatain, Medina, Saudi Arabia

    • Known as the "Mosque of the Two Qiblas," commemorating the time when Prophet Muhammad changed the direction of prayer from Jerusalem to Mecca.
    • Has two mihrabs (prayer niches) facing different directions.
    • A relatively small mosque with a simple design.

  6. Great Mosque of Sanaa, Yemen

    • One of the oldest surviving mosques in the world, dating back to the 7th century.
    • Known for its intricate architecture and unique design.
    • A UNESCO World Heritage Site, recognized for its cultural and historical significance.

  7. Umayyad Mosque, Damascus, Syria

    • One of the largest mosques in the world and a significant Islamic landmark.
    • Known for its stunning mosaics and intricate carvings.
    • Has been damaged by conflict in recent years but is undergoing restoration efforts.

  8. Mosque of the Companions, Medina, Saudi Arabia

    • One of the earliest mosques built in Medina, dating back to the time of Prophet Muhammad.
    • Houses the tombs of several companions of the Prophet.
    • A relatively small mosque with a simple design.

  9. Great Mosque of Kufa, Iraq

    • One of the oldest and largest mosques in Iraq.
    • Has undergone numerous renovations and expansions throughout history.
    • Known for its minaret, which is one of the tallest in the world.

  10. Jawatha Mosque, Al-Ahasa, Saudi Arabia

    • One of the oldest mosques in the Arabian Peninsula, dating back to the 7th century.
    • Known for its unique architectural style and historical significance.
    • Located in the oasis city of Al-Ahasa, a UNESCO World Heritage Site.

There could be possibilities that these may or may not be the oldest or minor time difference. 

LA 2028 Olympic Games | Introduces 5 new games in Olympic

The Olympic committee has declared that in Olympic 2028 that is going to happen in Los Angeles, USA will have 5 new games.

  1. Cricket (T20)
  2. Baseball/Softball 
  3. Flag football
  4. Lacrosse (sixes) and 
  5. Squash
Refereces:
1. https://olympics.com/ioc/la-2028
2. https://olympics.com/ioc/news/ioc-session-approves-la28-s-proposal-for-five-additional-sports

PIP or Python commands quick reference

Python is an open-source, high-level programming language that supports multiple programming paradigms, including functional, procedural, and object-oriented programming. 

Key Features of Python


Readability: Python's syntax emphasizes readability, making it easier to write and maintain code.

Interpreted: Python is an interpreted language, which means you can run the code directly without compiling it first.

Dynamically Typed: Variables in Python do not require an explicit declaration to reserve memory space. The declaration happens automatically when a value is assigned to a variable.

Extensive Libraries: Python has a vast standard library and a large ecosystem of third-party packages and frameworks.

Cross-Platform: Python can run on various operating systems, such as Windows, macOS, Linux, and more.

Commands in Python

  •   install : Install packages.
  •   download : Download packages.
  •   uninstall : Uninstall packages.
  •   freeze : Output installed packages in requirements format.
  •   list : List installed packages.
  •   show : Show information about installed packages.
  •   check : Verify installed packages have compatible dependencies.
  •   config : Manage local and global configuration.
  •   search : Search PyPI for packages.
  •   cache : Inspect and manage pip's wheel cache.
  •   wheel : Build wheels from your requirements.
  •   hash : Compute hashes of package archives.
  •   completion : A helper command used for command completion.
  •   debug : Show information useful for debugging.
  •   help : Show help for commands.


General Options

  •   -h, --help : Show help.
  •   --isolated : Run pip in an isolated mode, ignoring environment variables and user configuration.
  •   -v, --verbose : Give more output. Option is additive, and can be used up to 3 times.
  •   -V, --version : Show version and exit.
  •   -q, --quiet : Give less output. Option is additive, and can be used up to 3 times (corresponding to WARNING, ERROR, and CRITICAL logging levels).
  •   --log <path> : Path to a verbose appending log.
  •   --no-input : Disable prompting for input.
  •   --proxy <proxy> : Specify a proxy in the form [user:passwd@]proxy.server:port.
  •   --retries <retries> : Maximum number of retries each connection should attempt (default 5 times).
  •   --timeout <sec> : Set the socket timeout (default 15 seconds).
  •   --exists-action <action> : Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
  •   --trusted-host <hostname> : Mark this host or host:port pair as trusted, even though it does not have valid or any HTTPS.
  •   --cert <path> : Path to alternate CA bundle.
  •   --client-cert <path> : Path to SSL client certificate, a single file containing the private key and the certificate in PEM format.
  •   --cache-dir <dir> : Store the cache data in <dir>.
  •   --no-cache-dir : Disable the cache.
  •   --disable-pip-version-check : Don't periodically check PyPI to determine whether a new version of pip is available for download. Implied with --no-index.
  •   --no-color : Suppress colored output
  •   --no-python-version-warning : Silence deprecation warnings for upcoming unsupported Pythons.
  •   --use-feature <feature> : Enable new functionality, that may be backward incompatible.
  •   --use-deprecated <feature> : Enable deprecated functionality, that will be removed in the future.