If you came to this post through Google or through other means, it would be best to download the code as shown in
If you came to this post through Google or through other means, it would be best to download the code as shown in
One of the most useful VIM plugins for me is the NERDTree. This is one reason why I cannot migrate to emacs even though I really love their ensime plugin. That usefulness is further augmented by integrating Ack to it.…
In my Getting Started with Appcelerator Titanium post, I mentioned about an exception I am encountering when selecting the version 2.0 of Appcelerator Titanium. /build/iphone/Classes/NetworkModule.m:252:44: error: use of undeclared identifier ‘UIRemoteNotificationTypeNewsstandContentAvailability’ Apparently, this is being caused by an incompatible XCode…
Vim is a very indispensable tool for me. But VIM extensions are very hard to manage, and managing the VimL scripts is also difficult to learn with scarce resources. First, why cant we download a plugin as easy as a…
I am in a researching binge today on how to run a terminal inside vim because of my interest to RubyMotion’s Terminal based workflow. In my previous post, I taught you how to install the VimShell In this post, I…
Vim offers tremendous productivity gain. It would be great to execute the shell inside it to increase it further. This article will teach you how to do just that. I am using pathogen. If you want to follow this post,…
RubyMotion is making a lot of news in the technology scene lately and for good reason. It makes developing IOS apps extremely easy. I use Appcelerator Titanium as my mobile development environment of choice, where my workflow is Edit the file…
Since last July, Xamarin has been working on porting Java to C# using Sharpen. A couple of days ago, they have finally released it. Looking at the graph below, we can see how they improved the performance significantly. C# is…
Command-T for VIM is a very useful utility to easily browse through files in combination with NERDTree. Unfortunately it is quite difficult to make it work. Vim: Caught deadly signal SEGVVim: Finished.Segmentation fault In principle, the reason this is happening…
If you came to this post through Google or through other means, you can get the code for the previous post using the following git command. $ git clone git@github.com:HugeAim/titanium-list-app.git$ git checkout part5 In this series you learned how to…