Skip to main content

Mrs: Geometry

 Mariam Marzeckani

In 2014, I saw a picture posted by my brilliant Friend from Damietta. The picture I saw was for a woman with an exceptional sought and immensely an exceptional mind. I could not hide my happiness when I discovered that she is a mathematician.

 For a long time I had a 
horrible idea about Math and inconvenience thought that there is no place for a woman in Math's stuff. Therefore, in this moment I had implied feeling inside, a deep voice told me I was wrong. Now, you see a superwoman got a super prize in super field.

She was brilliant. She helped me omitting some drastic ideas out of my mind. I followed every news talked about her, every prize she is nominated for.
 I turned my chosen path in my secondary stage learning for her. I did choose mathematical path I imagined it has to be a chance to meet her and work with someday.

 For 3 years, her photo still in my phone, PC or laptop cover. She always stimulated me, a young, beautiful, mother, Muslim, married woman could do all of these implementing. I was eager to know" how!" or maybe reach this point someday. Unfortunately, she went to another but better place, I pray for her every night before sleeping. , but I actually I had wondered why the only one I really fascinated with goes forever!  


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