(Technical) Whimsical Writings of the Web
Vim Tips for Java #4: Use 'Tab' for Syntax Completion
Note: This tip has been updated, please see Tab Completion for Vim (Updated) instead.
Vim Tips for Java #3: Use Omni-Completion (or Intellisense) for syntax completion
As much as I like vim, Netbeans trumps it when we talk about automatic syntax completion.
Passing variable length arguments to a Java Method
It is not well known fact that Java can actually handle variable length arguments passed to its method calls.
Vim Tips for Java #2: Using exuberant-ctags
ctags is a great tool for programmers. It creates an index to your source code to allow you to trawl through them for cross referencing.
Famous Nerds In Computer Science: Alan Turing
It isn’t too uncommon to find these images of captchas on websites we visit anymore these days, where it is frequently used to identify humans from computer bot spammers.
Vim Tips for Java #1: Build Java files with Ant automatically
Ant is a great tool for compiling large projects with a large number of Java files.
Finding out all processes associated with open sockets
Normally I’ve only used the 'netstat' command to find out what are the sockets opened in the operating system by using '-a' flag, but the new thing I’ve discovered recently is that netstat even allows me to track the processes that are opening them, via the '-p' flag.
Having fun with java.lang.Object
java.lang.Object is the mother of all objects in the Java world.