Here's a list of the tools that I want to see on any dev computer (windows 7 enterprise) I'm working with.
Ditto - clipboard manager http://ditto-cp.sourceforge.net/
ArsClip - clipboard manager better than Ditto (which has a high-cpu bug) http://www.joejoesoft.com/vcms/97/
Cygwin
Console - for emulating both cygwin and DOS - http://sourceforge.net/projects/console/
Xemacs - editor
WinMerge - file comparison
JDK - java of course
Maven (modify the setting to your needs)
IDE (Idea / Eclipse )
WinRar - unzip / uncompress tool
mRemoteNG - for ssh http://www.mremoteng.org/
Unlocker - for finding process that "handles" a file
Launchy - windows app launcher (like Executor / SlickRun ) - http://www.launchy.net/download.php#windows - or maybe the winner is executor . unclear
KeePass - password manager http://keepass.info/
GoogleDrive
Google Music
Tortoise (SVN )
SlikSVN - for SVN binary as well - http://www.sliksvn.com/en/download
Process Explorer
Apache Directory Studio
to be continued ...
Sunday, June 15, 2014
Monday, June 2, 2014
vi macro - tip
I always wanted to know that: macro on vi ...
http://vim.wikia.com/wiki/Macros
Instructions: To enter a macro, type:
Then, for re-executing the macro :
http://vim.wikia.com/wiki/Macros
Instructions: To enter a macro, type:
q<letter><commands>q
To execute the macro <number> times (once by default), type:
<number>@<letter>
Example: So, the complete process looks like:
qd | start recording to register d |
... | your complex series of commands |
q | stop recording |
@d | execute your macro |
@@ | execute your macro again |
Subscribe to:
Posts (Atom)