Messages - Hirudin [ switch to compact view ]

Pages: prev1 ... 6 7 8 9 10 [11] 12 13 14 15 16 ... 108next
51
MilesAhead, I hope you don't mind if I post this. If you do just send me a PM or something and I'll delete it ASAP.

I wrote one of these for myself also. It's extremely useful!

Mine uses Winkey+c to copy the text then waits for you to hit another key for what type of search you want to do...
A - ask.com (I thought about trying out this search engine)
D - Dictionary (dictionary.reference.com)
E - eBay
F - acronym finder
G - Google
P - Pricegrabber
T - Thesaurus (thesaurus.reference.com)
U - UPS (for tracking numbers, I've been planning to make this also "figure out" what kind of tracking number is highlighted and take you to FedEx, UPS, or USPS as necessary)
W - Wikipedia

It sometimes didn't work right in Vista, I think there was some kind of issue with it watching the clipboard, but in the Windows 7 RC it has worked perfectly so far.

I bet if you look at the script you'll see that it's very easy to customize...
AHK script
;I'm calling this version 1.0 - sorry, I don't think I'll ever include a changelog
           #c::
         CB = %Clipboard%
         Send ^c
         Phrase = %Clipboard%
         Clipboard = %CB%
         Input, SingleKey, L1 T3
;   ////////Replace Tabs and Line Breaks with Spaces
         StringReplace, Phrase, Phrase, `r, %A_Space%, All
         StringReplace, Phrase, Phrase, `n, %A_Space%, All
         StringReplace, Phrase, Phrase, %A_TAB%, %A_Space%, All
;   ////////Get rid of multiple spaces
         Loop
       {
       StringReplace, Phrase, Phrase, %A_SPACE%%A_SPACE%, %A_SPACE%, All
       StringGetPos, SpaceDouble, Phrase, %A_SPACE%%A_SPACE%, L1
       If SpaceDouble < 0
     {
     Break
     }
       }
;   ////////Ask
         If SingleKey = a
       {
       StringReplace, Phrase, Phrase, %A_SPACE%, +, All
       Run http://www.ask.com/web?q=`%22%Phrase%`%22
       }
;   ////////Dictionary
         Else If SingleKey = d
       {
       StringReplace, Phrase, Phrase, %A_SPACE%, `%20, All
       Run http://dictionary.reference.com/browse/%Phrase%
       }
;   ////////eBay
         Else If SingleKey = e
       {
       StringReplace, Phrase, Phrase, %A_SPACE%, -, All
       Run http://search.ebay.com/%Phrase%
       }
;   ////////Acronym Finder
         Else If SingleKey = f
       {
       StringReplace, Phrase, Phrase, %A_SPACE%, +, All
       Run http://www.acronymfinder.com/af-query.asp?Acronym=%Phrase%
       }
;   ////////Google
         Else If SingleKey = g
       {
       StringReplace, Phrase, Phrase, %A_SPACE%, +, All
       Run http://www.google.com/search?q=`%22%Phrase%`%22
       }
;   ////////PriceGrabber
         Else If SingleKey = p
       {
       StringReplace, Phrase, Phrase, %A_SPACE%, +, All
       Run http://www.pricegrabber.com/search.php?form_keyword=%Phrase%
       }
;   ////////Thesaurus
         Else If SingleKey = t
       {
       StringReplace, Phrase, Phrase, %A_SPACE%, `%20, All
       Run http://thesaurus.reference.com/browse/%Phrase%
       }
;   ////////UPS
         Else If SingleKey = u
       {
       StringReplace, Phrase, Phrase, %A_SPACE%, `%20, All
       Run http://wwwapps.ups.com/WebTracking/processInputRequest?tracknum=%Phrase%
       }
;   ////////Wikipedia
         Else If SingleKey = w
       {
       StringReplace, Phrase, Phrase, %A_SPACE%, +, All
       Run http://en.wikipedia.org/wiki/Special:Search?search=`%22%Phrase%`%22
       }
         Else
       {
       MsgBox Ended
       Exit
       }
         Reload
           return


52
...
And definitely a  :down: on the blind deletion thing.
Well duh!

Sorry, I meant that you would also be on the phone with her while that was being done.

Her: Windows is 15 gb
You: Don't delete that
later...
Her: Users\Whoever\Music is 55gb
You: OK, open that folder
Her: 'The Mighty Mighty Bosstones'? I don't like them any more
You: Highlight that folder and delete it
... and so on

If there is seriously 70 gb of data on that machine and she doesn't know what it could be there better be SOMETHING that can be safely deleted.
To put it a different way: What can take up that much space? Music, video, games, and maybe a few programs. If she's not a music or video collector and her Users\Whoever\Video folder is overflowing it's a safe bet you can find something in there that can be deleted.

If she doesn't want to delete The Mighty Mighty Bosstones or anything else, it's time to invest in an external HDD.

53
I was going to suggest turning off system restore too.

How many folders could they possibly have? I'd go into the folder options and make sure everything (system and hidden files/folders) is visible. Then go one by one to find the folder(s) in the root that is(are) exorbitantly large and start deleting.

Maybe WMP (or iTunes or some other media management program) is automatically copying every CD she plays with her computer or something?

54
General Software Discussion / Re: MP3 Info Extension?
« on: June 13, 2009, 02:44 AM »
It's only some VBR files right? Is there any pattern to which files work and which don't?

Here's a screenshot of Windows 7 displaying some files I ripped using LAME 3.97 (or maybe 3.98, IIRC) using "preset extreme"...
Screenshot - 6_13_2009 , 1_38_09 AM.png

55
General Software Discussion / Re: MP3 Info Extension?
« on: June 11, 2009, 04:05 AM »
I used to use that, it was one of my "must installs". Now I've been using dedicated tagging programs for so long I don't really remember all the things it did.

Lets see, I know it had a feature that you could mouse over an MP3 (or maybe many MP3s?) and it would display the tag information (artist, album, title, length, etc.). I'm pretty sure Vista does this by itself.

You could also highlight a bunch of songs, right click on them, and edit their tags.

What feature(s) do you use most? Maybe we can come up with some software that can do something similar.

Pages: prev1 ... 6 7 8 9 10 [11] 12 13 14 15 16 ... 108next
Go to full version