Posts

Showing posts from April, 2017

best 10 exchange languages websites for learners

Image
 Language exchange is the best way to learn and improve your language that you need to learn,  so I  collect some common and best websites I have used them personally and I knew amazing friends and built great relations there around the world. if you're a language learner or want to learn any language, you must use this way of learning, so you must use one of these websites at least. Speaky : became a famous exchange website last two years, easy to use, available live chat, and allows you show online users.   Conversation exchange : is a simple website, but very useful because I see the learners there are very serious then you need to use search option to find your language partner. Coeffee : It's like conversation exchange in an additional allows you use a game app to help you learn under the logo "Language practice that's pure fun". lang-8 : doesn't help you to make a connection directly with the partner, but offers you a great way to correc

How to create alias command to customize your own command line

Image
alias command is a simple and useful command, allows you to customize or short your command lines. Terminal interface The following lines will explain how to use alias command with examples The type of alias syntax in short: alias name="value" name: the naming of the code that you will call the line by this name. value: the command that will enter when calling the name, written between two quotation marks"". Examples: alias dir="ls" alias copy="cp" alias rename="mv" alias md="mkdir" alias server='ssh asil@192.168.1.4" alias offer="cd && cd Downloads && gedit offer.txt ; cd" How to create an alias: Open terminal Ctrl+Alt+T Enter "sudo  nano ~/.bashrc" Add your code in new line in the last. Exit and save (Ctrl+X) Enter "source ~/.bashrc" Removing alias: The following command will remove "rename" alias "unali