Thursday, March 12, 2015

MyStory - My experience in learning English.

Playing games in English for learning English.
 - It helped me nothing. but I enjoyed playing game.

Reading CNN news for learning English.
 - It has helped me to have some knowledge.
 - I can also have ability to read in English more.

Reading comic book for learning English.
 - It helped me a few. but if you read loudly, It will help you a lot.

Watching TV drama with subscript for learning English.
 - It also helped me nothing.  It was my mistake.
 - But I have watched movies without subscript, that has helped me listening.
 - I recommend you to use Youtube.

Meeting a native speaker for learning English.
 - This is the best way.
 - But if you don't study English usually, It is useless.

Studying with English books and reading loudly for learning English.
 - This is also the best way.
 - I have been doing this way when I have time.

Wednesday, March 4, 2015

Linux - How to change DHCP for STATIC - 3

@ This is a DHCP set automatically when it is installed.


@ This is a static IP address changed.

Tuesday, February 24, 2015

Eclipse - How to install the plugin which convert 2 byte words for Unicode automatically.

@Select Help > Install New Software.. in the menu
@ Check the PropertiesEditor above the picture.
Read and accept the license agreements, then click Finish.
     If you get a security warning saying that the authenticity or validity of the software can't be established, Just click OK.

@ Select Preferences in the menu.
@ Select General > Editers > File Associations in the side menu.
@ Select *.properties in the File Types Box.
@ Select PropertiesEditor in the Associated editors and Click the Default on the right button.

Friday, February 6, 2015

Git - The current branch is not configured for pull

Sometime you see the error like the following message.

Solve:
You tell Git the explicit branch you want to pull.
You need to add this to your .git/config
--------------------------------------------------
[branch "master"]
  remote = origin
  merge = refs/heads/master

-------------------------------------------------

Wednesday, November 19, 2014

Mysql - There is a good tool to arrange SQL easily

WWW - Wow

@ I was in trouble to have a complicated Sql.
@ But I searched for a good tool to help arranging Sql on Internet.
@ I found the following good tool.

http://www.dpriver.com/pp/sqlformat.htm

Tuesday, November 18, 2014

Git - How to change an author committed to your repository.


@ This command can change your author.
$ git commit --amend --author="New Author Name <email@address.com>"