ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

Main Area and Open Discussion > General Software Discussion

BingThing 1.6.1.0 guilty pleasure

(1/3) > >>

MilesAhead:
BingThing 1.5.8.0 is now on my page:  MilesAheadSoftware
I believe it is in a usable condition now.  Tooltips should explain most functions.  For more detail see the included Readme.txt file.

I haven't posted this software on my site yet.  It probably needs an incremental search or filtering feature.  That may take awhile.  But it is meant to do some of the stuff I tried to do with BrowserBunch while also letting me search Bing(the guilty pleasure is naming it BingThing so I could not exactly have it use google.)

I notice browsers are very slow loading lately.  For those who leave the browser open all the time that may not matter.  But the way I roll is to close the browser when not using it and open it when I need something.  So I wrote BingThing to make it easier to have something feed the address line of the browser via the command line rather than waiting 45 seconds for Firefox or whatever it is to let me type into the field.

A nice feature is that it uses Single Instance to transfer the command line options to the first instance.  This simplifies using it with a hotkey program.  My ahk general purpose hotkey saves the current clipboard text, then sends Control c to copy the highlighted text in the active window.  Then is restores the saved text to the clipboard after launching BingThing.exe with the selected text.  If nothing is selected that is OK.  Either a new BingThing process starts, or if it is already running, it activates and gets the focus.

Anything on the command tail BingThing copies to the Input Line ready for either search or launch.  As shown in the screen shot, if you have browsers set to open urls in new tabs and they support multiple urls on the command line, such as Firefox or chrome or opera, then it will open multiple sites by just typing the domains on the same line.

BingThing saves the most recently used 128 url/search items.  The file handling is still a bit rough.  But at least there is some history.

Like browser bunch it starts with multiple blank buttons.  I expanded these to 8 over browser bunch's 6.  Pressing a blank button will associate a browser with that button and stick its icon on the button, just like browser bunch did.

There are still a few bugs but I thought I would post it in case anyone would like to play around with it.  I have a feeling the incremental search filtering in the history will be a pita so I am putting it off for now.  :)

Edit: I may have left out the most important bit of info to clarify using BingThing.  If the radio button Launch is selected, whatever browser button you push will be launched with a command tail of whatever is in the Input Line.  If the Search radio button is selected, then the contents of the Input Line are added to the Bing search string.  Any spaces are replaced with "%20" to avoid the command tail being chopped short by cmd.exe seeing a space character.

Bing supports the "site" parameter so for example if you wish to search Walmart for baseball caps you may type "site:walmart.com baseball caps" in the Input Line, make sure the Search radio is selected, then press the button for the Browser you wish to use for that particular search.  I find it handy for videos as some sites work better with Firefox when trying to play flash video but espn3.com seems to prefer Opera.  Also if you have your hotkey thing going you can copy from most any other program such as another browser or editor and open one of your browsers to the url.

For grins here is the section I use for hotkey.  I use Control Winkey b, but you can change it how you like:


--- Code: Autohotkey ---^#b::    ClipSave := Clipboard    Clipboard := ""    Send,^c    ClipWait,2; set the path to BingThing.exe on your system    Run, C:\Utils\BingThing\BingThing.exe %Clipboard%    Clipboard := ClipSave     ClipSave = ; free memoryreturn[/s]

See the script included in the Zip File download




MilesAhead:
I tried various ways to filter or search the ListBox and none are smooth.  So for the time being BingThing will plateau.  But I did add a wrinkle to the AHK hotkey trigger that may be generally useful.  I use Winkey b to copy to clipboard without saving the previous clipboard contents.  And Control Winkey b that saves and restores the clipboard text contents around the copy operation.

The rationale being there may be times when it is convenient to paste the same copied link or text multiple times.  Here is the new AHK snippet


--- Code: Autohotkey ---#b::^#b::UseClipSave := (A_ThisHotkey = "^#b")If (UseClipSave)    ClipSave := Clipboard  Clipboard := ""  Send,^c  ClipWait,2  Run, C:\Utils\BingThing\BingThing.exe %Clipboard%  If (UseClipSave)  {    Clipboard := ClipSave    ClipSave = ; free memory  }return

MilesAhead:
OK here is a bit better version of BingThing to try.  Please read the Readme.txt for info.  Also hover the mouse on the controls for Tooltip help.  Pressing F1 brings up the About Box.

As I mentioned, incremental search while typing is too busy for this application.  To search the history I added a Filter List Button.  If the Input Line is empty, pressing Filter List will display the entire history(so as to undo a previous filter.)  If text is in the Input Line any history line containing the sub-string will be displayed.

At this point I am not sure if things will get confused if you delete lines while displaying a filtered list.  But I tried it a couple of times and it did not seem to break anything.  But only casually tested so far.

OK, I don't want to reproduce the entire readme here.  The attached zip has the 1.4.0.0 version.  It works much better if you also use the included ahk hotkey snippet.  Select any text is nearly any program, hit the hotkey, and BingThing is up with the text in the Input Line.

Please let me know if weird stuff happens.  :)

Also please keep the index.html file in the same folder as BingThing.exe.
It makes it easier to guess the default browser.  :)

MilesAhead:
Attached is the latest version of BingThing.  1.5.2.0.

Changes:

I start with a List of only one blank item for history.  Then the file is read and added.  Then any blanks are remove before filling the List control.  This should get rid of blank lines in the history.


The Filter List Button is now set as the Default Button.  While typing in the Input Line hitting Enter will filter the list without necessitating taking your fingers from the keyboard.

The latest zip file is attached to this post.

MilesAhead:
BingThing rev 1.5.3.0  Fixed bug where search strings with %20 instead of spaces were added to history.

Navigation

[0] Message Index

[#] Next page

Go to full version