Skip to main content

Eight fast Tricks to practice a new language



If you are always busy and need to practice a new language, here you are some tricks might help you.


Memorize Songs:

Memorizing songs may enable you to form full sentences without needing to think too much in the structure and grammar.

Watch a complete series in this language: 

When I watched 13 reasons why in an English subtitle it helped me to think completely in English. like it is a natural.    

Make your own dictionary: 

Try to write down most of the repeated words or expressions you met during reading or listening to this language. You may forget some of them but this problem solved by the regular revision. 

Turn the whole world around you into this language:

Exchange every single work around you to the new language, take notes in it, talk alone in it, think in it and try to learn your major in it.




Live with it: 

Try to follow news, sports, Talks show, TV shows and Movies. Buy yourself a new book or a novel in this language, have friends from the countries spoken in this language, read about culture and History.
You might follow pages on Facebook and influencers who speak the same language and try to understand their memes and informal talk.

Act!

It is very fast and pretty genius way to practice the language by acting and considering yourself as someone else ,with different life and personality, has various conversations with distinct people.

Write your Diary:

Talking about your daily events and trying to describe every single moment in this language will help you think freely in it. It affects your personality, too.

 Try to relate it to some other goals:

Language can't be a goal, but you can relate it with any other goal like travelling, communicating with a specific foundation, learning a new Science, Reading your favorite book with its original language, winning a scholarship or even acquiring more people.

Try the previous tricks for a month and test your level. Don't forget sending us your feedback!




 




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