Skip to main content

Posts

কাসিদায়ে-শাহ নেয়ামাতুললাহ রহমতুল লাহি আলাইহ

শাহ নিয়ামত উল্লাহ ওলী (Shah Niyamatullah Wali) একজন প্রসিদ্ধ সুফি সাধক। তিনি ১৪শ–১৫শ শতকে কাশ্মীর–ইরান অঞ্চলে বসবাস করতেন। তাঁর নামে কিছু কবিতা ও ভবিষ্যদ্বাণীমূলক রচনা প্রচলিত আছে, যেখানে ইমাম মাহদীর আগমনের আগে বিভিন্ন অস্থিরতার কথা বলা হয়। তবে গুরুত্বপূর্ণ বিষয় হলো—এই ভবিষ্যদ্বাণীগুলোর অনেকগুলোর ঐতিহাসিক সত্যতা ও নির্ভরযোগ্যতা নিয়ে গবেষকদের মধ্যে বিতর্ক আছে। অনেক আলেম মনে করেন, এগুলোর কিছু অংশ পরবর্তী সময়ে সংযোজিত হয়েছে। ইমাম মাহদীর আগমনের পূর্ব লক্ষণ (শাহ নিয়ামত উল্লাহর নামে প্রচলিত বর্ণনায়) ১. মুসলিম বিশ্বের ভাঙন ও বিভক্তি – মুসলিম দেশগুলোর মধ্যে বিভাজন, যুদ্ধ ও রাজনৈতিক বিশৃঙ্খলা। – মুসলমানরা শক্তিহীন হয়ে পড়বে। ২. পূর্ব ও পশ্চিমের সংঘাত – বড় শক্তিগুলোর মধ্যে সংঘর্ষ। – মধ্যপ্রাচ্যে দীর্ঘস্থায়ী অস্থিরতা। ৩. আরব অঞ্চলে ফিতনা – শাসকদের মধ্যে দ্বন্দ্ব ও ক্ষমতার লড়াই। – সাধারণ মানুষের দুর্ভোগ বৃদ্ধি। ৪. অর্থনৈতিক সংকট – দুর্ভিক্ষ, মুদ্রাস্ফীতি ও দারিদ্র্য বৃদ্ধি। – মানুষের নৈতিক অবক্ষয়। ৫. বড় যুদ্ধ (মালহামা কুবরা ধারণা) – ব্যাপক ধ্বংসযজ্ঞের যুদ্ধ, যার পর বড় পরিবর্তন আসবে। Downloa...
Recent posts

update your package-lock.json according to what you have specified in the package.json file

  The objective of the   npm update   command is to update your   package-lock.json   according to what you have specified in the   package.json   file. This is the normal behavior. If you want to update your package.json file, you can use  npm-check-updates :  npm install -g npm-check-updates . You can then use these commands: ncu  Checks for updates from the package.json file ncu -u  Update the package.json file npm update --save  Update your package-lock.json file from the package.json file

Limit Upload File Type Extensions ASP.NET MVC 5

  //-----------------------------------------------------------------------    // <copyright file="AllowExtensionsAttribute.cs" company="None">    //     Copyright (c) Allow to distribute this code and utilize this code for personal or commercial purpose.    // </copyright>    // <author>Asma Khalid</author>    //-----------------------------------------------------------------------       namespace  ImgExtLimit.Helper_Code.Common   {        using  System;        using  System.Collections.Generic;        using  System.ComponentModel.DataAnnotations;        using  System.Linq;      ...