Menu

An incredible journey to Hajj


Sa’eed was sitting at the waiting area at the Jeddah airport after having completed the rites of hajj, and next to him was another person who completed his hajj. The man next to him said: I work as a contractor and Allah (swt) has blessed me with performing my tenth Hajj.


Sa’eed told him: Hajj mabroor, may Allah accept and forgive you your sins. The man smiled and said: Ameen. Then he asked him: have you performed hajj before this time?

Sa’eed was hesitating to tell him, and then he said: by Allah, it’s a long story and I don’t want to hurt your head with my talk. The man laughed and said: please tell me, as you see we have nothing to do, we’re just waiting

Sa’eed smile and said: yes, waiting is the start of my story. I’ve been waiting years so that I can go to hajj. After working for thirty years as a physiotherapist in a private hospital, I was able to save enough money to go for hajj. The same day I went to get my salary, I came across one of the mother’s who’s paralyzed son I treat. I could see her face was worried and anxious. She said: I leave you to Allah’s keeping, brother Sa’eed this is our last visit to this hospital

I was surprised with her words and I thought she wasn’t happy with my treatment, and that she was considered moving her son to another hospital. She told me: no brother Sa’eed, Allah bears witness that you were to my son like a father, and you helped him in his treatment when we had lost hope. Then she left very saddened
The man next to him interrupted and said: that’s strange, if she was pleased with your treatment and her son was improving then why did she leave? Sa’eed answered: that’s what I thought too, so I went to the administration to find out what happened. They told me the boy’s father had lost his job and was unable to continue paying for his son’s treatment

The man next to him said: there is no might and power except with Allah, poor them, how did you deal with it? Sa’eed said: I went to the manager and pleaded with him to continue treating the boy on the hospital’s expense, but he sharply rejected and said, ‘this is a private institution not a charity’.



  • I left his office sad and broken for this family. Then suddenly, I placed my hands in my pocked which had my money all prepared for hajj. I stood in my place for a while, then I raised my head above and spoke to my Rabb: O Allah, You know how I feel and You know there is nothing more beloved to me than to go to Your house and do hajj, and to visit Your messenger’s Masjid. You know I have been working all my life for this moment, but I prefer this poor lady and her son over myself, so don’t deprive me of Your favors

    I went to the accounts desk and paid all I had for his treatment which covered the next six months. I begged the accountant to tell the lady that it’s from the hospital expense for special cases. He was affected by this and there were tears in his eyes and said, ‘baarak Allah feek and people like you’

    The man next to him then said: if you donated all of your money, then how did you go to Hajj? Sa’eed said: I went back to my home sad that day for having lost the opportunity of a lifetime for hajj. But my heart was filled with happiness that I removed a distress from the lady and her son. I slept that night with a tear on my cheek. I had a dream and I was making Tawaf around the Ka’aba and people were saying salam to me and they told me: ‘Hajj mabroor O Sa’eed, for you have performed hajj in the heavens before you performed hajj on earth’. I immediately woke up and felt an indescribable happiness. I praised Allah (swt) for everything and was pleased with His decree

    When I got up from my sleep, my phone rang and it was the hospital’s manager. He told me the owner of the hospital wants to go to hajj this year and he won’t go without his personal therapist. But his therapist’s wife is expecting and has reached her final days of pregnancy so he can’t leave her. Would you do me favor? Would you accompany him in his Hajj?

  • I made Sujood shukr to Allah (swt). And as you see, Allah (swt) granted me to go to His house without having to pay anything. And all praise to Allah, the owner of the hospital insisted on giving me something for his accompaniment. I told him the story of the lady and her son, and he demanded the boy be treated at the hospital from his own personal expense. And to place a donations box in the hospital for the treatment of needy patients. And on top of that, he gave the boy’s father a job at one of his companies. He even returned the money I had initially spent for the boy’s treatment. Have you seen great favors than the favors of my Rabb? Subhan Allah

  • The man next to him hugged him and told him: by Allah I have never felt this kind of shyness as I’m feeling now. I would perform hajj one year after another thinking I was doing something great, and that my place with Allah would be elevated as a result of it. But now I understood that your hajj is equivalent to a thousand of mine. I went to the house of Allah, but Allah invited you to His house. May Allah accept your Hajj

    Always think good about Allah (swt) and know He is able to do all things. We ask Allah (swt) to open our hearts and to open the door of hajj for us. May He never deprive us of His great favors. Ameen

  • Story from Shaikh Abdur Raheem
  • najm96

How to download AEM archetype project from Adobe repository?

Prerequisite 

Add this profile in maven settings.xml file to fetch the project structure content from Adobe repo.
<profile>
          <id>adobe-public</id>
          <activation>
                   <activeByDefault>true</activeByDefault>
          </activation>
          <repositories>
               <repository>
                  <id>adobe</id>
                  <name>Nexus Proxy Repository</name>
                  <url>http://repo.adobe.com/nexus/content/groups/public/</url>
                  <layout>default</layout>
             </repository>
          </repositories>
          <pluginRepositories>
                   <pluginRepository>
                          <id>adobe</id>
                          <name>Nexus Proxy Repository</name>
                          <url>http://repo.adobe.com/nexus/content/groups/public/</url>
                          <layout>default</layout>
                   </pluginRepository>
          </pluginRepositories>
</profile>
Step 1: Then go to your folder where you want to create your project (e.g. D:\Rashid\AEM\) and open command prompt cmd and run the following command.
mvn org.apache.maven.plugins:maven-archetype-plugin:2.4:generate -DarchetypeGroupId=com.adobe.granite.archetypes -DarchetypeArtifactId=aem-project-archetype -DarchetypeVersion=11 -DarchetypeCatalog=https://repo.adobe.com/nexus/content/groups/public/ -DgroupId=myproject -DartifactId=myproject -Dversion=1.0-SNAPSHOT -Dpackage=com.aem.community -DappsFolderName=myproject -DartifactName="myproject" -DappsFolderName=myproject -DartifactName=myproject -DpackageGroup=myproject -DcontentFolderName="ui.content" -DsiteName="MyProject Site" -DcomponentGroupName="MyProject Components" -DcssId=myproject
Step 2: The above command will execute for a moment and then it will ask for parameter confirmation.


Confirm properties configuration:
groupId: myproject
artifactId: myproject
version: 1.0-SNAPSHOT
package: com.aem.community
appsFolderName: myproject
artifactName: myproject
componentGroupName: MyProject Components
contentFolderName: ui.content
cssId: myproject
packageGroup: myproject
siteName: MyProject Site
Y: :
Step 3: Confirm your parameters, type "Y" and hit enter. After that, your project is setup and available in your directory.

ClientLibs debugger [?debugClientLibs=true] in AEM

ClientLibs debugger [?debugClientLibs=true] in AEM


Today in this tutorial we are going to discuss how and what we can achieve this using debugClientLibs parameter in AEM.

What is debugClientLibs? What is the use of debugClientLibs?

AEM provides tools for debugging and debugClinetLibs is one of them. Using this we can see all the embedded client library files. By default, client libraries embed all your code in a single file when it is delivered to the browser. So when you want to see all the embedded files in separate at runtime append "?debugClinetLibs=true" in URL (this is something like passing a parameter with url). Then you will see the response return all of the individual script files that ClientLibs embed inside each clientLibs file.


e.g. URL: https://localhost:4502/content/jorvee/home.html?debugClientLibs=true

Benefits of using debugClientLibs:
  • You can detach your embedded script at runtime.
  • Helps you to identify and fix the JS/CSS issues.



Reference: 


  

WOH JO HUM MEIN TUM MEIN QARAAR THA by Momin Khan Momin

WOH JO HUM MEIN TUM MEIN QARAAR THA

Lyrics: Momin Khan Momin

WOH JO HUM MEIN TUM MEIN QARAAR THA, TUMHE YAAD HO KE NAA YAAD HO
WOHI YAANI WAADA NIBAAH KAA, TUMHE YAAD HO KE NAA YAAD HO

WOH JO LUTF MUJH PE THE BESHTAR, WOK KARAM KE THA MERE HAAL PAR
MUJHE SAB HAI YAAD ZARAA ZARAA, TUMHE YAAD HO KE NAA YAAD HO

WOH NAYE GILE, WOH SHIKAAYATEI, WOH MAZE MAZE KI HIQAAYATEI
WOH HAR EK BAAT PAR ROOTHNAA, TUMHE YAAD HO KE NAA YAAD HO

KABHI HUM MEIN TUM MEIN BHI CHAH THI, KABHI HUM SE TUM SE BHI RAAH THI
KABHI HUM BHI TUM SE THE ASHANA, TUMHEI YAAD HO KE NAA YAAD HO

JISE AAP KEHATE THE BAAWAFAA, JISE AAP GINATE THE ASHANA

MAIN WAHI HUU ‘MOMIN-E-MUBATALA’, TUMHEI YAAD HO KE NAA YAAD HO

How to find all client library files(JS and CSS) in AEM?

Today in this tutorial we are going to learn how to find all client library files (JS and CSS) in AEM? 

In AEM we have a console to find all the client libraries and their dependencies along with JS and CSS files. Using the below URL we can access that console.

http://localhost:4503/libs/granite/ui/content/dumplibs.html

We can also filter our library files on the basis of categories and templates.

  • If you want to see all the files belongs to particular categories then put the category name in the categories field and click on the search button.
  • If you want to see only JS or CSS files from particular categories then put the type JS for javascript files and CSS for cascading style sheet files and click on the search button.
  • Also, you can find the files based on the theme. Using this you will be able to identify what all library files are being used in this theme. To find the related files with theme simple put the name of the theme in the Theme section and click on the search button

Below is the screenshot where we have applied filter on the basis of categories and type:


/libs/granite/ui/content/dumplibs.html
List of client libraries in AEM 
There are two parts or sections of this report as you can see in the above screenshot.

  1. The result section will give you results based on the applied filter.
  2. and the second section has Libraries by Path which have information of the file. Here as you can see the first column has the name of the file along with its path, the second column will let you know the type of that file either JS, CSS or image, and the last column contains the information regarding its group (from where this file belongs) which we called categories in AEM.


For more about clientLibs please refer: http://blogs.adobe.com/experiencedelivers/experience-management/clientlibs-explained-example/

علم

علم


ﺍﯾﮏ ﺍﺳﺘﺎﺩ ﺗﮭﺎ ﻭﮦ ﺍﮐﺜﺮ ﺍﭘﻨﮯ ﺷﺎﮔﺮﺩﻭﮞ ﺳﮯ ﮐﮩﺎ ﮐﺮﺗﺎ ﺗﮭﺎ ﮐﮧ ﯾﮧ ﺩﯾﻦ ﺑﮍﺍ ﻗﯿﻤﺘﯽ ﮨﮯ۔ ﺍﯾﮏ ﺭﻭﺯ ﺍﯾﮏ ﻃﺎﻟﺐ ﻋﻠﻢ ﮐﺎ ﺟﻮﺗﺎ ﭘﮭﭧ ﮔﯿﺎ۔ ﻭﮦ ﻣﻮﭼﯽ ﮐﮯ ﭘﺎﺱ ﮔﯿﺎ ﺍﻭﺭ ﮐﮩﺎ :  ﻣﯿﺮﺍ ﺟﻮﺗﺎ ﻣﺮﻣﺖ ﮐﺮﺩﻭ۔ ﺍﺱ ﮐﮯ ﺑﺪﻟﮧ ﻣﯿﮟ ، ﻣﯿﮟ ﺗﻤﮩﯿﮟ ﺩﯾﻦ ﮐﺎ ﺍﯾﮏ ﻣﺴﺌﻠﮧ ﺑﺘﺎﺅﮞ ﮔﺎ۔
ﻣﻮﭼﯽ ﻧﮯ ﮐﮩﺎ : ﺍﭘﻨﺎ ﻣﺴﺌﻠﮧ ﺭﮐﮫ ﺍﭘﻨﮯ ﭘﺎﺱ۔ ﻣﺠﮭﮯ ﭘﯿﺴﮯ ﺩﮮ۔
ﻃﺎﻟﺐِ ﻋﻠﻢ ﻧﮯ ﮐﮩﺎ : ﻣﯿﺮﮮ ﭘﺎﺱ ﭘﯿﺴﮯ ﺗﻮﻧﮩﯿﮟ ﮨﯿﮟ۔
ﻣﻮﭼﯽ ﮐﺴﯽ ﺻﻮﺭﺕ ﻧﮧ ﻣﺎﻧﺎ۔ ﺍﻭﺭ ﺑﻐﯿﺮ ﭘﯿﺴﮯ ﮐﮯ ﺟﻮﺗﺎ ﻣﺮﻣﺖ ﻧﮧ ﮐﯿﺎ۔ﻃﺎﻟﺐِ ﻋﻠﻢ ﺍﭘﻨﮯ ﺍﺳﺘﺎﺩ ﮐﮯ ﭘﺎﺱ ﮔﯿﺎ ﺍﻭﺭ ﺳﺎﺭﺍ ﻭﺍﻗﻌﮧ ﺳُﻨﺎ ﮐﺮ ﮐﮩﺎ 
ﻟﻮﮔﻮﮞ ﮐﮯ ﻧﺰﺩﯾﮏ ﺩﯾﻦ ﮐﯽ ﻗﯿﻤﺖ ﮐﭽﮫ ﺑﮭﯽ ﻧﮩﯿﮟ۔ ﺍﺳﺘﺎﺩ ﻋﻘﻞ ﻣﻨﺪ ﺗﮭﮯ : ﻃﺎﻟﺐِ ﻋﻠﻢ ﺳﮯ ﮐﮩﺎ 
ﺍﭼﮭﺎ ﺗﻢ ﺍﯾﺴﺎ ﮐﺮﻭ : ﻣﯿﮟ ﺗﻤﮩﯿﮟ ﺍﯾﮏ ﻣﻮﺗﯽ ﺩﯾﺘﺎ ﮨﻮﮞ ﺗﻢ ﺳﺒﺰﯼ ﻣﻨﮉﯼ ﺟﺎ ﮐﺮ ﺍﺱ ﮐﯽ ﻗﯿﻤﺖ ﻣﻌﻠﻮﻡ ﮐﺮﻭ۔
ﻭﮦ ﻃﺎﻟﺐِ ﻋﻠﻢ ﻣﻮﺗﯽ ﻟﮯ ﮐﺮ ﺳﺒﺰﯼ ﻣﻨﮉﯼ ﭘﮩﻨﭽﺎ ﺍﻭﺭ ﺍﯾﮏ ﺳﺒﺰﯼ ﻓﺮﻭﺵ ﺳﮯ ﮐﮩﺎ 
ﺍﺱ ﻣﻮﺗﯽ ﮐﯽ ﻗﯿﻤﺖ ﻟﮕﺎﺅ۔ﺍﺱ ﻧﮯ ﮐﮩﺎ ﮐﮧ ﺗﻢ ﺍﺱ ﮐﮯ ﺑﺪﻟﮯﯾﮩﺎﮞ ﺳﮯ ﺩﻭ ﺗﯿﻦ ﻟﯿﻤﻮﮞ ﺍُﭨﮭﺎ ﻟﻮ۔ﺍﺱ ﻣﻮﺗﯽ ﺳﮯ ﻣﯿﺮﮮ ﺑﭽﮯ ﮐﮭﯿﻠﯿﮟ ﮔﮯ۔ ﻭﮦ ﺑﭽﮧ ﺍﺳﺘﺎﺩ ﮐﮯ ﭘﺎﺱ ﺁﯾﺎ ﺍﻭﺭ ﮐﮩﺎ : ﺍﺱ ﻣﻮﺗﯽ ﮐﯽ ﻗﯿﻤﺖ ﺩﻭ ﯾﺎ ﺗﯿﻦ ﻟﯿﻤﻮﮞ ﮨﮯ۔
ﺍﺳﺘﺎﺩ ﻧﮯ ﮐﮩﺎ 
ﺍﭼﮭﺎ ﺍﺏ ﺗﻢ ﺍﺱ ﮐﯽ ﻗﯿﻤﺖ ﺳُﻨﺎﺭ ﺳﮯ ﻣﻌﻠﻮﻡ ﮐﺮﻭ۔ﻭﮦ ﮔﯿﺎ ﺍﻭﺭ ﭘﮩﻠﯽ ﮨﯽ ﺩﮐﺎﻥ ﭘﺮ ﺟﺐ ﺍﺱ ﻧﮯ ﻣﻮﺗﯽ ﺩﮐﮭﺎﯾﺎ ﺗﻮ ﺩﮐﺎﻥ ﺩﺍﺭ ﺣﯿﺮﺍﻥ ﺭﮦ ﮔﯿﺎ۔
ﺍﺱ ﻧﮯ ﮐﮩﺎ ﺍﮔﺮ ﺗﻢ ﻣﯿﺮﯼ ﭘﻮﺭﯼ ﺩﮐﺎﻥ ﺑﮭﯽ ﻟﮯ ﻟﻮ ﺗﻮ ﺑﮭﯽ ﺍﺱ ﻣﻮﺗﯽ ﮐﯽ ﻗﯿﻤﺖ ﭘﻮﺭﯼ ﻧﮧ ﮨﻮﮔﯽ۔ ﻃﺎﻟﺐِ ﻋﻠﻢ ﻧﮯ ﺍﭘﻨﮯ ﺍﺳﺘﺎﺩ ﮐﮯ ﭘﺎﺱ ﺁﮐﺮ ﻣﺎﺟﺮﺍ ﺳُﻨﺎﯾﺎ۔ ﺍﺳﺘﺎﺩ ﻧﮯ ﮐﮩﺎ 
ﺑﭽﮯ ! ﮨﺮ ﭼﯿﺰ ﮐﯽ ﻗﯿﻤﺖ ﺍﺱ ﮐﯽ ﻣﻨﮉﯼ ﻣﯿﮟ ﻟﮕﺘﯽ ﮨﮯ۔ ﺩﯾﻦ ﮐﯽ ﻗﯿﻤﺖ ﺍﻟﻠﮧ ﮐﯽ ﻣﻨﮉﯼ ﻣﯿﮟ ﻟﮕﺘﯽ ﮨﮯ۔ﺍﺱ ﻗﯿﻤﺖ ﮐﻮ ﺍﮨﻞِ ﻋﻠﻢ ﮨﯽ ﺳﻤﺠﮭﺘﮯ ﮨﯿﮟ۔ ﺟﺎﮨﻞ ﮐﯿﺎ ﺟﺎﻧﮯ ﺩﯾﻦ ﮐﯽ ﻗﯿﻤﺖ ﮐﯿﺎ ﮨﮯ ۔

Student registration form in HTML

Create a simple student registration form using HTML. This form should have option to fill the following:
  1. Student Name
  2. Student Email
  3. Program Type
  4. Interested in doing which course
  5. Day preference
  6. Submit and Clear button  

Below is the HTML code. You could copy and paste the complete content and run in your machine.

You HTML form will look like as below:

Student registration form


Hope this helps you to create and understand the different input fields of HTML and how to develop a HTML form using all kind of input fields.

World has been defeated by few people

WORLD AND RULERS

How this world has been defeated by few people. there are only very few people who are wise and able to read the books and facts, if I will give a percentage then it could be the 19% of the world population, rest 81 percent of the world population are Sheep. They don't want to read they want to listen summary only. They curious to listen thousand pages of story in a single page; that's why media and other story tellers are more success in this world because 81 percent of world population standing in that queue and waiting for the story to get summarize. Reading power is the capacity which enhance your thinking skill,if you read the complete story then you can put your own thought into it and analyse the things by your own way but when you listen to a summary it means that person will summarize the story by his own way and told you only those part which he/she think okay and in favor or against him or his ideology and the methodology. 

If we talk about the philosophy and the Philosopher's even in the current world they used to read thousands of the books and those reading helps that persons to become a philosopher by acquiring the knowledge of previous people; which give power to analyse, fight and deal with the situation and provide his own view or suggestion on those issues and talk. Why every organisation wants to hire a experience person? because they have experience to deal with situation, and from their previous experience they know how I handled that situation last and in future if this will come again then I can easily resolve that. But in today's world most of the people don't want to read since they don't have the time to read they are very busy with their electronic gadgets and they are very busy with there social network profiles where mostly people discuss rubbish.

So before reaching to any conclusion I recommend you people not solution of blindly follow what others are saying or telling to you go ahead read some related article for the content use your mind and analyse the thing since you are the most precious honour thing if you take of this universe.

Does current NDA govt making us FOOL?

Rs 4 price raise every month till the entire SUBSIDY is wiped out.

Does govt of India playing and making FOOL to their Citizens? In my point of view YES, govt is making us fool since we as a civilian never talk about development and don't dare to question current govt. And we are going towards imperialism as Britishers did 200 years ago with us. Current govt is also looking forward and tied their self with corporate, and raising unnecessary prices and taxes on citizen. 
The government has asked state oil firms to raise cooking gas prices by Rs 4 every month till the entire subsidy — about Rs 87 for a 14.2 kg cylinder in Delhi — is wiped out. The government has already removed price controls on most fuels. 
Read more at:
http://economictimes.indiatimes.com/articleshow/59846159.cms

Yesterday GoI decided to hike LPG cylinder price Rs 4/month. Is it a solution something why every month they will increase four rupees? Does petroleum price hike in international market predicted by these ministers? so they have decided to increase the LPG cylinder price every month. Who is ruling us either govt which we have elected or the corporate who given money to them? There are lots of things which we need to analyse and ask our govt, WHY?

References:

1. http://www.financialexpress.com/market/commodities/lpg-price-hike-government-orders-lpg-prices-to-be-hiked-by-rs-4-per-month/787995/
2. http://economictimes.indiatimes.com/industry/energy/oil-gas/lpg-prices-to-be-hiked-by-rs-4-per-month-as-centre-pushes-to-end-subsidies/articleshow/59846159.cms
3. http://www.hindustantimes.com/india-news/centre-orders-lpg-price-to-be-hiked-by-rs-4-per-month/story-W4gh9K71MSAmaI2sgjzYsN.html