Clear Cache Blog Web, code, miscellaneous

Changing User Preferences on Sublime Text 3

Changing User Preferences on Sublime Text 3

Sublime Text 3 is a fantastic text editor! To change user preferences, click on Sublime Text > Preferences -> Settings - Default.

Here are the default settings. So, open Sublime Text > Preferences > Settings - User and override the options.

Save file and settings will be applied.

Removing .DS_Store Files from Git Repositories

Removing .DS_Store Files from Git Repositories

.DS_Store are files created on OS X systems to store Finder configurations. To remove .DS_Store files from your git repository, create a .gitignore file on your repository and enter the filename to be ignored. Example:

.DS_Store

Now, just remove .DS_Store from your master repository. If you want a script to remove .DS_Store files from your folders, you can use this script. ;)

Hello World

Hello World

Nothing better than a "hello world" for the first post. ;)