
seen from Malaysia

seen from China

seen from Japan

seen from Malaysia
seen from United States
seen from United States
seen from China

seen from United States
seen from Türkiye

seen from United States
seen from United States

seen from Türkiye

seen from Malaysia
seen from T1

seen from Malaysia
seen from T1

seen from Kazakhstan
seen from United States
seen from T1
seen from Romania
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.