Developing C# on Linux [closed]

MonoDevelop, the IDE associated with Mono Project should be enough for C# development on Linux. Now I don’t know any good profilers and other tools for C# development on Linux. But then again mind you, that C# is a language more native to windows. You are better developing C# apps for windows than for linux. … Read more

Bash script plugin for Eclipse? [closed]

ShellEd looks promising, does syntax highlighting, and has positive reviews, although I’ve not tried it myself. It was approved for distro inclusion by Redhat. There’s a little more info on the ShellEd plugin page on the Eclipse site, and installation instructions on their wiki. Note that if you’re not running an up-to-date version of Eclipse … Read more

Hiding Duplicate Toolbars Items in Eclipse

I’ve been having the same problem since upgrading to Oxygen. I haven’t been able to reliably reproduce the issue. The workaround suggested by @howlger has helped and is less intrusive than blowing away the entire workspace: Close Eclipse. In the Eclipse workspace directory, delete the .metadata\.plugins\org.eclipse.e4.workbench\workbench.xmi file or just rename it so you can bring … Read more

Python and Intellisense

This blog entry explains setting Vim up as a Python IDE, he covers Intellisense-like functionality: (source: dispatched.ch) This is standard in Vim 7. There are a number of other very useful plugins for python development in Vim, such as Pyflakes which checks code on the fly and Python_fn.vim which provides functionality for manipulating python indentation … Read more

How do I autoindent in Netbeans?

Shortcut: Windows: Alt+Shift+F Mac OS X: Ctrl+Shift+F (note: it’s Ctrl and not ⌘) On using above shortcut, NetBeans indents your selection. If nothing’s selected, it indents the whole file. You can even format multiple files/folders at a time! In the Projects window/sidebar, if you select one or more folders or files and use the shortcut, … Read more