OS X Setup TextWrangler as your default editor for Git

Mar 9, 2012 by

TextWrangler already installs the command line utility “edit” so the hardest pard is done, if you did not install it for some reason, then just go to “TextWrangler –> Install Command Line Tools…” and you should be all set with this part.

To make Git play nice (or should I rather say TextWrangler play nice with Git), we need to properly set it up as the default editor for Git. And luckily it’s as easy as

git config --global core.editor "edit --wait --resume "$@""
read more

Related Posts

Share This

Mobile advertising by the numbers – inforgraphics from InnerActive

Feb 3, 2012 by

An interesting infographic from the mobile advertising provider and mediation company – InnerActive was produced encompassing the timeline between the last year’s MWC in Barcelona and this year’s MWC.

 

read more

Related Posts

Share This

Keyboard shortcut to switch tabs in Safari

Jan 13, 2012 by

If you are using Chrome and Firefox and well pretty much any other popular browser, you are used to switching tabs with CMD+number which switches to the desired tab e.g. CMD+1 will switch to the first tab (including the pinned ones for Chrome). This however does not work for Safari.

For safari to cycle between tabs use CMD+SHIFT+Left/Right

read more

Related Posts

Tags

Share This

Installing/Updating BlackBerry Eclipse SDK – problem with authentication

Dec 14, 2011 by

If you are getting an error similar to the error below while trying to install and/or update BlackBerry SDK as a plugin for Eclipse

An error occurred while collecting items to be installed session context was:
(profile=AppceleratorProfile, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).
Unable to read repository at:
Unable to read repository at https://swdownloads.blackberry.com/Downloads/auth/contactFormPreload.do?code=
...

You are in luck!

Your problems are over as you found the solution. All you need to do is to clear the “Secure Storage” contents. To do that go to

Windows -> Preferences

Type secure, drill down to find the org.eclipse.equinox.p2.repository, expand this, and you will see the swdownloads.blackberry.com. Select this entry and delete it. This should resolve the issue next time you try to update/install the plugin you should be asked again for your credentials to the BlackBerry developer portal and once you put them in the installation should proceed normally.

Here’s how it looks in Eclipse:

read more

Related Posts

Share This

Eclipse marking SVN changes like Netbeans

Dec 9, 2011 by

Eclipse is a great tool that I have been using for mmm… wow (!!!) probably about 7 years now and the most amazing thing about it is of course all the plugins that can really extend the functionality of the basic editor and make it highly personalized. This is great, but some things should just be in a good IDE. Like built in SVN integration. Seriously, why do I need to install a plugin for something so basic? Netbeans is another great IDE, but I use it less as most my development environments come from dedicated Eclipse plugins and while it is possible to do the development in Netbeans it is not as convenient and straightforward and this is what we the pragmatic programmers usually prefer.

So one nice thing I got used to in Netbeans is how it colors the changes that I made in the editor if the file is under version control (e.g. SVN). After I used Netbeans for a while and got to like this feature, when I got back to Eclipse I kinda missed it. It’s nice and convenient. Quite non obtrusive i.e. it doesn’t get in your way – you may not even be noticing this if you don’t know about it.

Anyways, turns out that it is quite easy to enable similar functionality for Eclipse, alas you have to have SVN plugin I suppose for the “diff” to work. Just follow the screenshot if you want to enable coloring of SVN changes in Eclipse similar to Netbeans.

Here’s how it will look (you can change colors if you want)

read more

Tags

Share This