Favorite Tech tool
Of course first off I have to praise UltraEdit http://www.ultraedit.com/
Absolutely a great text editor... the advanced find and replace features are sweet... the unix style regex makes it awesome... but honestly I don't use that feature that much...
What I find myself using all the time is the search in files feature that actually works... as you would expect it! And the handy dandy Column mode... You could take a list like this...
x.apend somevariable(5) & ","
x.apend somevariable(14) & ","
x.apend somevariable(3) & ","
x.apend somevariable(7) & ","
And column select right before the "s" in somevariable and type trim(
and end up with
x.apend trim( somevariable(5) & ","
x.apend trim( somevariable(14) & ","
x.apend trim( somevariable(3) & ","
x.apend trim( somevariable(7) & ","
Now you might say you could copy and paste that 3 times... ok you are correct... But if the list was say... 20 long... I saved some time... the point is that all these little tiny emprovements or efficiencies add up to minutes and minutes saved by the end of the day...
It is the same as typing speed... 40 wpm guy is at a big dissadvantage to the 80 wpm guy... in terms of ability to crank out code... the 40 wpm guy has to be more efficient to keep up... ultra edit has macro's as well.. .and when editing code where I don't have an IDE with a built in refactor tool I'll write a macro to help me do it... basically highlight the code... and fire off my macro and whamo new empty sub or function or whatever the language calls it... fill in the parameters... jump back to the call and fill it in too... (double click method call... to highlight... ctrl-f to pull up find which already has the function name in it... enter and whamo I am back at the function call... and all I have to do is paste the parameter list into the function call since I put it in my clipboard before leaving)...
Short Keys
Ok so another of my favorite tools is ShortKeys. You can get a copy of the light version at http://www.shortkeys.com/lite.htm
I type my email address a million gazillion times a day... this way I just type ! then @ and whamo out comes my email address... pretty cool... How about my phone number ! and #
basically the tool is a find and replace tool that is always watching your typing.... So putting a replace on a single letter like "I" could be disasterous... :-) I happen to use ! along with another character since I almost never type ! followed by anything except != so I just don't use that one...
Some ones I use are:
!@ email
!# phone number
!W Work Phone
!5 Test MC number
!4 Test Visa Number
!3 Test Amex Number
... you get the idea... it creates a sort of short hand... In the paid version you can load up different sets of "short keys" from files... so if you can load a set of short keys specific to what you are doing...
IOpus IMacros
One thing I do alot of is testing web forms... the next tool is absolutely awesome and a super time save... I don't even need to explain it... just check it out... and whipe the drool off your face...
http://www.iopus.com/imacros/home/?a=5352008&v=5211028
I would imagine... that ultra edit saves me an hour a week when I am working with old vbscript... which has been quite a bit lately...
short keys saves me about a minutes or two every day... so 200 minutes or so a year... not to mention at least 200,000 key strokes a year... (typing my email addres 5 times a day... 23 characters saved each time)
and iopus imacros saves me a tun of time testing applications that require several pages to be tested in a row... plus I can save off my old tests for future use...
I would image this tool saves me 10 minutes to 3 hours a week. Depending on where I am at in the process.
Cool tools...
Oh and one more tool that is just COOL... doesn't really save me time but it makes me happy and that is what it is all about...
http://nerdcave.webs.com/
Allows you to order you task bar... drag things around... group them... so all your IE's are to gether... etc... love this tool...
Absolutely a great text editor... the advanced find and replace features are sweet... the unix style regex makes it awesome... but honestly I don't use that feature that much...
What I find myself using all the time is the search in files feature that actually works... as you would expect it! And the handy dandy Column mode... You could take a list like this...
x.apend somevariable(5) & ","
x.apend somevariable(14) & ","
x.apend somevariable(3) & ","
x.apend somevariable(7) & ","
And column select right before the "s" in somevariable and type trim(
and end up with
x.apend trim( somevariable(5) & ","
x.apend trim( somevariable(14) & ","
x.apend trim( somevariable(3) & ","
x.apend trim( somevariable(7) & ","
Now you might say you could copy and paste that 3 times... ok you are correct... But if the list was say... 20 long... I saved some time... the point is that all these little tiny emprovements or efficiencies add up to minutes and minutes saved by the end of the day...
It is the same as typing speed... 40 wpm guy is at a big dissadvantage to the 80 wpm guy... in terms of ability to crank out code... the 40 wpm guy has to be more efficient to keep up... ultra edit has macro's as well.. .and when editing code where I don't have an IDE with a built in refactor tool I'll write a macro to help me do it... basically highlight the code... and fire off my macro and whamo new empty sub or function or whatever the language calls it... fill in the parameters... jump back to the call and fill it in too... (double click method call... to highlight... ctrl-f to pull up find which already has the function name in it... enter and whamo I am back at the function call... and all I have to do is paste the parameter list into the function call since I put it in my clipboard before leaving)...
Short Keys
Ok so another of my favorite tools is ShortKeys. You can get a copy of the light version at http://www.shortkeys.com/lite.htm
I type my email address a million gazillion times a day... this way I just type ! then @ and whamo out comes my email address... pretty cool... How about my phone number ! and #
basically the tool is a find and replace tool that is always watching your typing.... So putting a replace on a single letter like "I" could be disasterous... :-) I happen to use ! along with another character since I almost never type ! followed by anything except != so I just don't use that one...
Some ones I use are:
!# phone number
!W Work Phone
!5 Test MC number
!4 Test Visa Number
!3 Test Amex Number
... you get the idea... it creates a sort of short hand... In the paid version you can load up different sets of "short keys" from files... so if you can load a set of short keys specific to what you are doing...
IOpus IMacros
One thing I do alot of is testing web forms... the next tool is absolutely awesome and a super time save... I don't even need to explain it... just check it out... and whipe the drool off your face...
http://www.iopus.com/imacros/home/?a=5352008&v=5211028
I would imagine... that ultra edit saves me an hour a week when I am working with old vbscript... which has been quite a bit lately...
short keys saves me about a minutes or two every day... so 200 minutes or so a year... not to mention at least 200,000 key strokes a year... (typing my email addres 5 times a day... 23 characters saved each time)
and iopus imacros saves me a tun of time testing applications that require several pages to be tested in a row... plus I can save off my old tests for future use...
I would image this tool saves me 10 minutes to 3 hours a week. Depending on where I am at in the process.
Cool tools...
Oh and one more tool that is just COOL... doesn't really save me time but it makes me happy and that is what it is all about...
http://nerdcave.webs.com/
Allows you to order you task bar... drag things around... group them... so all your IE's are to gether... etc... love this tool...