Skip to main content

ليس بالمعتاد أمرًا

ربما يبدو الناجحون  بلهاء حمقى ولكن لا تعلم ماتخفيه افكارهم ، بالمثل فى الأمور قد تبدو غريبة الأطوار
اعتادت آذاننا سماع " أن لكـل مجتهد نصيب ، وأن ليس على الأرض من هو بدون احلام ، ولكن 

ربمـا يجتهد شخصًا جمًا لا ينال الا اللّمم  ربما اجتهاد أحدِهم فُرادى  يحصيه  جُملًا 
ًربـما أننا أخطائنا فى تعرفينا للمجتهد حتى ندّعى له النصيب..يمكن أن يكون أول طريقك فشل و يظل فشلا
 يبقى الحال على ماهو عليه.. ليس بالمعتاد أن تزال الطبقات أو أن تغير الأحوال من شأنها،
ربما تقف ولا يحدث شيئا، ربما تذاكر و ترسب و تعمل و تخسر ربما ليس لك نصيبـًا من الدنيا.
فخيبات آمالنا تتمحور حول اعتقادنا أن " لـكـل مجتهـد نصيـب " دون تعريف واضح من يكون المجتهد أواكيف يصير النصيب ...
"لا يوجد سبب مقنع لاختيارى تلك الصورة سوى اعتقادِ أنى أُشبه تلك الشخصيّة سَخُفًا"


Comments

Popular posts from this blog

Miserable

 This one word could describe my life right now. I am writing this because of the last book I read talking about how to re-organize your life. 32 days ago, my dad has gone. In the beginning, I couldn't cry. Now, I can't stop crying about everything. Everything reminds me of him. His favorite stuff became my nightmare. I dream of him every day, too. One week from his death, I took my exams. I didn't remember how I did in them. I knew they were not how I supposed to do, but I am not aware of how I did. I wish I could have cried when he passed. I wanted to cry a lot but I didn't have the ability to face myself with the fact of his death.  He died between my shoulders. I just saw his color turned to yellow like how my grandpa seemed before death. I heard my brother told him some prayers that a person says before death and I just shouted at him to stop. I spent time squeezing his feet to make him shocked. I even talked to him, I said don't go, don't leave me, not now...

How to upload your work on Github (Easy and Fast)

I had a problem with uploading any of my work on Github. Amr El-Naggar, A friend of mine, helped me to upload it fast.  Here we go! Consider this is the file I want to take some project from to upload on my Github:  Click on the bar to write sth new:  Write "cmd" to pop up your command shell Open your Github Profile > Repositories > New > write the name > Create Copy the URL  Back to your Command shell and write:  (only the first time)  git init git add . git commit -m "Any message to say what you have done in this commit" (only the first time)  git remote add origin xxxxxxxxx (replace xxx with the link of the repo, ex: https://github.com/MennaEwas/Numerical-Labs)  git push -u origin master if you edited any files: git add . git commit -m "Any message to say what you have done in this commit" git push -u origin master You can easily copy and paste the lines You have to see Done!  Check the uploaded Files:  Note: If you want t...

HTML5 in 10!

Hello Friends, it is a recap and I prefer it is not your first time with HTML. Let's discuss some Topics. 10 different topics and you can check for more posts in my blog for HTML. 1. Block and Inline:  Block-level elements begin on a new line, stacking one on top of the other, and occupy any available width. Example ( Paragraph) <div> Inline-level elements do not begin on a new line. They fall into the normal flow of a document Example (Word) <span> 2. HTML comments start with <!-- and end with -->. CSS comments start with /* and end with */. 3. Use <strong> Tag to make your text bold (inline) 4. Use <i> Tag to make your text in italic (inline) 5. Use <em> for emphasizing 6. Building Structure <header> ,  <nav> ,  <article> ,  <section> ,  <aside> , and  <footer>  elements. and not just <div> and they help in structure. They are all block-le...