seen from China

seen from Malaysia
seen from Germany

seen from Canada

seen from Canada

seen from Canada
seen from Indonesia
seen from Russia
seen from United States
seen from United States
seen from Germany

seen from Vietnam
seen from Canada

seen from United States

seen from United States
seen from United States
seen from United Kingdom
seen from Canada
seen from United States

seen from United States
Developer Toolbox: IntelliJ IDEA - what to ignore from the .idea folder
IntelliJ creates the .idea folder for each project (in directory based project format). If you want to share IDE workspaces with other developers, you need to share this folder, but not everything in it. You should ignore:
workspace.xml - this file will change pretty frequently and it stores user specific settings.
tasks.xml - user specific settings.
For most up-to-date information refer to IntelliJ documentation.
Add the following to your .gitignore file:
.idea/workspace.xml .idea/tasks.xml
Developer Toolbox: make Sublime Text 2 your default git editor
In order to make Sublime Text 2 your default git editor just do:
git config --global core.editor "subl -n -w"
Here I assume you created a symbolic link named subl in your /usr/local/bin directory:
/usr/local/bin/subl -> /Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl
Option -n instructs Sublime to open the file in a new window whilst option -w above instructs Sublime to wait for the file to be closed before returning.