I want to share you all about some of my favorite tools / software’s I use which assist me in my daily development tasks.

CygWin, an opensource project brings linux shell environment to Windows. However, future windows 8 will also bring linux shell as inbuilt in to Window but do not know yet what features will it bring in.

https://www.cygwin.com/

Deskpins, is simple cool freeware application to make a specific window always on top. I use it every day.

http://deskpins.en.softonic.com/

Ditto, is an opensource clipboard manager tool always comes handy when you need it. Cool thing is it allows you to save any type of info (text, media etc) and able to access it.

http://ditto-cp.sourceforge.net/

Stickies, is a free stickies application. It is very simple and has many features which are very helpful and interesting.

http://www.zhornsoftware.co.uk/

CSVed, is an advanced csv editor. It has various functions that you can perform on a csv file. Comes very handy.

http://csved.sjfrancke.nl/

CSVFileView, yet another CSV file viewer. Its very light weight clean and simple.

http://www.nirsoft.net/utils/csv_file_view.html

Notepad++, Opensource text editor for windows. I wish they also release it for Mac.

https://notepad-plus-plus.org/

Nulloy, is a free music player with a wave form. It displays the sound clip in terms of a wave form so you know exactly at which time the sound starts. I looked at all the music players or video applications for such a feature i could only find it here. Please let me know if you know any other tool better than this.

http://nulloy.com/

Putty, free ssh client to connect to linux servers.

http://www.putty.org/

SuperPutty, just an addon to putty which supports multiple tabs. It reads the configuration from Putty.

https://github.com/jimradford/superputty/releases

TCPView, is a tool from sysinternals, allows you to see detailed listings of all TCP and UDP endpoints on your system, including the local and remote addresses and state of TCP connections.

https://technet.microsoft.com/en-us/sysinternals/tcpview.aspx

SoapUI, is a free Testing tool to automate or test webservices.

https://www.soapui.org/

Pidgin, is a free chat client. It supports many chat networks.

https://www.pidgin.im/

ConEmu for windows. This has been my favorite replacement for windows command prompt from almost 3 years and made my developer life easier. With this i could configure my startup directory paths and initial batch files to be executed every time i open ConEmu. My requirement was that, the kind of projects I was working required at least 5 or 6 command to be opened and then some batch files to be executed which sets few environment variables. One window takes care of application server, Another displays “tail -f error.log” application server log (I have also installed cygwin to be able to execute linux commands) and so on.. It also allows to define tasks for different projects. Each task consists of one or more batch commands. for example

> "%windir%\system32\cmd.exe" /k "cd C:\dev\programs\eserver72136\bin"

* "%windir%\system32\cmd.exe" /k "C:\dev\programs\eserver72136\bin\environment.bat && cd C:\dev\programs\eserver72136\bin"

* "%windir%\system32\cmd.exe" /K "C:\dev\programs\eserver72136\bin\environment.bat && cd C:/dev/projects/haefele/sources/eclipsesvn/current/eserver/source/build"

* "%windir%\system32\cmd.exe" /K "C:\dev\programs\eserver72136\bin\environment.bat && cd C:/dev/projects/haefele/sources/eclipsesvn/previous/eserver/source/build"

* "%windir%\system32\cmd.exe" /K "C:\dev\programs\eserver72136\bin\environment.bat && cd C:/dev/projects/haefele/sources/eclipsesvn/current/eserver/source/haefele_dbinit_template/build"

* powershell.exe -new_console:a -noexit -command "cd C:\dev\projects\haefele\sources\eclipsesvn\current\eserver\source"

https://conemu.github.io/