Speed up RubyMine 4.5 in Ubuntu - rubymine

I like RubyMine, I'm using only it. But the only thing that makes me be worried is that a performance of RubyMine. It takes too much RAM. So I want to turn off unnecessary functionality to speed up it.
What would you suggest me?

By reading this post below my Rubymine it not easy to freeze:)
Set/Increase Memory Available In Rubymine

Related

Is it possible to optimise index across mac Spotlight, QuickSilver, Eclipse and InstaSearch?

I am using Spotlight, QuickSilver, Eclipse and InstaSearch plugin for eclipse. Each of these modules have search capabilities. I guess each of these modules may be using an index of its own and am wondering if it is possible to coerce all these / some of these applications to use a single index so that we can save CPU cycle time. Is it possible?
After significant research, I have come to to the conclusion that this is not possible.

Is there any plugins to automatically optimize Eclipse.ini file?

it seems to be so tricky to have a really optimized "eclipse.ini" file.
I need to load multiple OSGi projects in the work space and develop and compile them parallel.
I have some tries to optimize the .ini file, but never could be sure this is the best choice.
Do you know any automatic optimizer plugin or gadget which handles the job using system preferences?
Thanks a lot
Optimizer For Eclipse, from ZeroTurnaround helps with this.
What does it help with?
Insufficient memory allocation
Class verification overhead
Excessive indexes and history
Obsolete or slow JDK
Eclipse being out of date
Lengthy build and redeploy times
For more details, check out this article from RebelLabs.
Optimizer For Eclipse, from the jrebel team, does exactly this.

Is Netbeans handling indexing on C code better than Eclipse's CDT?

I am using CDT 8 with indigo. Basically I am quite happy with it except one thing, which is the indexer is too slow and freezes my machine after I edited some files. The code base of the project is quite large, around 2G , but I tried with CScope, it actually indexes pretty fast, ~0.5 hour compared to ~3 hours on eclipse.
I am wondering if netbeans handles indexing better ? of course with an okay code assistant.
Not having used the NetBeans C editor much I can't say what the state of the code completion is. In recent versions of NetBeans (7 onwards) they have started using native file system listeners to detect code changes. I don't think the work is completed yet, however what it should mean is that indexing will become faster with each successive version.

Is there a way to use axdt with eclim?

I've got Eclipse 3.6 + eclim set up and working for PHP and JavaScript.
As I'm slowly moving away from the Flash IDE for my actionscript projects I've sucessfully installed the — limited but working — axdt plugin for Eclipse but eclim doesn't seem to work for actionscript files.
Neither FDT nor Flash Builder nor asdt/axdt being listed anywhere on eclim's site I think as3 is not supported by eclim. Am I Right?
As of now, vrapper is helping me a lot, but is there a workaround — other than buying Flash Builder/FDT/IntelliJ IDEA Ultimate — to this situation ?
Thanks.
Sounds like you are a Linux user, otherwise you would surely know about FlashDevelop (it's experimental now, but you should be able, to an extent, to run it through Wine, too...).
Other than that, I used this for some time and it was OK for what I needed. It has some problems on top of some problems the original has, some features entirely removed, but it's still better then AXDT.
Here are some other suggestions about AS3 editor on Linux: http://flashdevelop.org/community/viewtopic.php?f=9&t=3973 . Unfortunately, they are not as good as commercial solutions for Win / Mac.

Emacs in the era of IDEs

I am relatively new in a software development. I have noticed that in some cases a text editor with extended text processing capabilities (I use Notepad++) gives me a better productivity than an IDE (I use the Eclipse and the Netbeans). In the era of IDEs, does it makes sense to learn emacs (or some other tool that you suggest?)
Yes, and no.
Yes for the exact same reason why a doctor should be able to get an approximate diagnose from your symptoms by using his experience, and not putting the list of symptoms in a google query and find the answer.
Yes for the exact same reason why airliner pilots are taught to fly without fly-by-wire even if all airplanes are today fly-by-wire, so almost everybody is able to keep them flying.
No, because if you need specific tools to make your life easier, such as GUI designers, Intellisense, access to documentation, then clearly Emacs is not enough.
Still, I remember that many developers at Microsoft organized a fund raising for uganda vim children.
Summing up, you need to use what makes you more productive. In many cases, emacs (or vim) is more productive than a huge IDE that makes coffee.
Even if you were using an IDE, it's still useful to know Emacs/VIM. You don't have your IDE around all the time, and while doing something via SSH, you don't really have any other option (yeah you can use nano, but thats not very effective).
When you do software development, you often deal with a lot of text besides code. I may use an IDE for most of my coding, but often I'll use Vim for plain ol' text viewing and manipulation.
Sometimes I need to view code, SQL scripts, XML, CSV, or TXT files. Other times I may want to perform bulk replacements on those files, or extract out certain chunks of text from it.
IDEs are good for writing and refactoring code, but aren't meant to be used for generic text viewing and manipulation. For that, I'd recommend having the full power of something like Emacs or Vim. Notepad++ can be good too.
In short, use the right tool for the job.
Everyone here seems to think that Emacs/Vim are light-weight compared to IDE's. This couldn't be further from the truth. Even the best IDE's do not have the features that Emacs does. In what IDE's can you program completely without moving your hands from the keyboard, read your email, chat with Jabber, run an integrated debugger, view your calendar, program your own functions, and send dbus commands? That's only the surface of what Emacs allows; I'm sure Vim has similar capabilities.
Ignoring productivity completely; remember why you started programming in the first place. You like to create stuff, you like to know how stuff works, you like creating clever solutions to obscure problems, you like tinkering, you like learning new things, you like creating tools that help you do things.
With this in mind the answer is yes, learn it if you think it will add to the delight to your days. Maybe you will also get some work done along the way. Fiddling with eamcs will not make you melt. You might even make a life-long friend of it. Happy Hacking.
Emacs is an IDE. In fact, you could argue it's a whole operating system.
vi, on the other hand, is an editor.
Yes, it makes sense to learn vi, since it's about the only editor you can use on anything vaguely posix, even if the GUI isn't running or the network is incredibly slow (vi is usable at 300 baud). Basically, it's the unix administrator's safety net of an editor. I've used it to rescue myself from broken device drivers on an OS X server that would only come up so far as single user, so even the must GUIfied Unix out there can still be saved by humble vi.
It makes some sense to learn emacs too, but perhaps not quite so much these days.
I would say it helps to learn emacs (or say vim).
Personally I'm comfortable using IDE (eclipse) for Java developement, when I code in perl or python I prefer to use emacs. Also if you are in a resource constriant environment (say) starting an IDE like Eclipse (which would crawl if there is anything less than 1GB RAM) to write a perl script might not be feasible. In such cases a vim would be neat tool of choice.