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

Friday, September 19, 2014

MyStory - I have bean attending an event

3 month ago, I started to attend an event for designers and engineers.
Actually it was not only them.
Other industry people attended the event.
I didn't know that so many English foreigners live in Tokyo.
It is a small event. It has been happening every month.
But I can see that many English speakers live in Tokyo.

This is a picture of an engineer who was presenting his new Twitter platform.
I could understand about his Twitter platform.
















This picture was taken of break time.
In the small room, It was crowded.
But They look like they are having fun.
















I have been attending the event.
I would like to make a presentation there some day.
So, I have been practicing presentation.
I am thinking what I should choose as a topic.

Mysql - how to alter a column in a table.

@ Add a column into a table in mysql

@ Varchar
ALTER TABLE table_name ADD new_column_name VARCHAR(45) NULL column_name_being;
@ Smallint or int
ALTER TABLE table_name ADD new_column_name SMALLINT UNSIGNED NULL DEFAULT '0' AFTER column_name_being;