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...