topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Wednesday November 12, 2025, 12:30 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 24 25 26 27 28 [29] 30 31 32 33 34 ... 309next
701
Living Room / Re: Ghacks looks at software giveaway sites
« Last post by MilesAhead on July 28, 2016, 01:55 PM »
Now if I can get time enough each day to look through the pages

I know there's quite a bit to read.  I wish too there was written some hints about which giveaway sites have better licensing set up with the software publishers.  For example I got Wise Care 365 Pro on one site.  A one year license.  But 2 months before the license was to expire I got a nag screen every time I ran it.  I took it off and got the same program from another giveaway site.  No nag screen.  I guess that's what user discussion is for.  Those on the supply side are not likely to note such differences.  ;)
702
Mini-Reviews by Members / Re: BrowserSelect - mini mini review.
« Last post by MilesAhead on July 28, 2016, 12:34 PM »
@Armando I see the bit about rules to bypass Browser Select and go right to the chosen browser.  But did you run across a key bypass?  Like hold down shift while launching to go to default browser or whatever?  There doesn't seem to be a forum on github or I am just not familiar with using it.
703
Living Room / Re: Ghacks looks at software giveaway sites
« Last post by MilesAhead on July 28, 2016, 10:27 AM »
I have bookmarked it  :Thmbsup:

It would be good if we can automate search on all these links for deal of the day and present one page with it. DC snack, anyone ?

Regards,

Anand


Short of that there is a pretty good round-up updated several times a week on Giveaway Radar

One thing I like about it, if the "giveaway" on a particular site is set up so that it requires posting in a forum for a limited number of licenses or some other tactic that excludes non-regulars, Giveaway Radar notes it in large red letters.  That saves me from looking through the BS only to find all 50 slots were filled 15 seconds after the software giveaway was announced, as often happens on these "contests."

704
Living Room / Re: What books are you reading?
« Last post by MilesAhead on July 27, 2016, 01:56 PM »


I just picked it up at the library.  This is the same author who wrote The Dark Fields, which was the impetus for the Limitless movie.  After finishing that novel I saw why the word "dark" was in the title.

If this one holds my attention in similar fashion then I'm likely to read all the fiction available from Glynn.  I'll find out later this afternoon.
705
General Software Discussion / Re: BingThing 1.4.0.0 guilty pleasure
« Last post by MilesAhead on July 27, 2016, 12:21 PM »
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.  :)

706
Mini-Reviews by Members / Re: BrowserSelect - mini mini review.
« Last post by MilesAhead on July 26, 2016, 04:33 PM »
Related but different, from MilesAhead (I haven't used it):

Hey tomos.  :)

Thanks for mentioning it.  The main thing holding me back is struggling with the List management.
Filtering the history as every character is typed into the input is just too busy.  I may steal code from FolderCache and just have it so that the list may be sorted MRU or alpha.  The ListBox seems a really touchy object.  Doing things that seem simple make it prone to crashing.  But eventually I should get it in a usable shape.

About a year ago I toyed with the idea of having BrowserBunch become the "default browser" so that clicking on a link would let you choose a browser auto-magically.  But the registry stuff is a nightmare.  I guarantee tangling with the registry settings is more time than coding the UI and browser launching.  Besides, from the review, I could not likely improve on the mechanism used by Browser Select.  Instead I am trying to make it simple to select url or search text most anywhere and conveniently put it into a browser selection utility.  Eliminating the manual copy/paste speeds it up and removes most of the tedium.

I'll post another version once I get the ListBox stuff reworked.  :)


Eventually I will whip it into shape.  :)

Edit:  I have worked on the program and stabilized it quite a bit.  You can download 1.4.0.0 attachment from this post

Meanwhile I think I may try BrowserSelect and see how the two play together.  :)

707
Living Room / Re: What books are you reading?
« Last post by MilesAhead on July 25, 2016, 04:47 PM »
Well, the D programming language was done in this spirit.  There is a good book or two on it.  I never thought it would survive but it has.  Still didn't feel "perfect" to me.

That reminds me of the good old days when Al Stevens of Dr. Dobb's Journal came out with D-flat as a retort to C#.  :)  It's hard to believe there are no programming magazines anymore.  Just "blogs" that disappear or lie fallow, and programming forums.  At least Code Project seems to be hanging in there.

There was something nice about holding up a hard copy magazine to show someone though.  It made it seem real.

708
General Software Discussion / Re: BingThing 1.2.0.0 guilty pleasure
« Last post by MilesAhead on July 25, 2016, 04:30 PM »
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 [Select]
  1. #b::
  2. ^#b::
  3. UseClipSave := (A_ThisHotkey = "^#b")
  4. If (UseClipSave)
  5.     ClipSave := Clipboard
  6.   Clipboard := ""
  7.   Send,^c
  8.   Run, C:\Utils\BingThing\BingThing.exe %Clipboard%
  9.   If (UseClipSave)
  10.   {
  11.     Clipboard := ClipSave
  12.     ClipSave = ; free memory
  13.   }
  14. return
709
Living Room / Re: What books are you reading?
« Last post by MilesAhead on July 25, 2016, 03:47 PM »
What we need is a new language, inspired by C++ and taking the lessons learned from these new C++ versions, but free from the historical burdens.


Hmmm, awkward to type but it sounds like ++C--.  New C++ with the obsolete stuff amputated.  :)
710
...it is very possible there was corruption in that driver (i.e. it was running for President.) ...
-Steven Avery (July 22, 2016, 12:33 AM)
Very droll, but arguably not unnecessarily unkind towards politicos...

It trumps any pun I was considering I must say.  :)
711
Living Room / Re: What books are you reading?
« Last post by MilesAhead on July 23, 2016, 07:27 AM »


I just started the novel that was the basis of the movie Limitless.

The Dark Fields by Alan Glynn

I am still only about six chapters in.  The writing style is fine. I just wish the font was a bit darker.

Edit: I have about 20 pages left to read.  If you liked the move Limitless definitely read this book.  Several things that drove me crazy in the movie were handled much more logically and made much more sense in the novel.


712
Living Room / Re: Movies you've seen lately
« Last post by MilesAhead on July 22, 2016, 12:41 PM »
(Nevermind.  For some reason I posted here instead of the books thread.  Must be a caffeine deficiency.  :)   )
713
Found Deals and Discounts / Re: [100% discount] Glary Utilities Pro 5.5
« Last post by MilesAhead on July 22, 2016, 07:47 AM »
From the SoS web site... " It is a jack-of-all-trades-but-master-of-none system utility that includes over 20 functions you would normally require individual software for..."

Master of none, eh? Hardly a ringing endorsement  ;D


-cranioscopical (July 21, 2016, 06:35 PM)

I noticed that myself.  I guess the reviewer is not on commission.  :)
714
General Software Discussion / BingThing 1.6.1.0 guilty pleasure
« Last post by MilesAhead on July 21, 2016, 03:04 PM »
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 [Select]
  1. ^#b::
  2.     ClipSave := Clipboard
  3.     Clipboard := ""
  4.     Send,^c
  5.     ClipWait,2
  6. ; set the path to BingThing.exe on your system
  7.     Run, C:\Utils\BingThing\BingThing.exe %Clipboard%
  8.     Clipboard := ClipSave
  9.      ClipSave = ; free memory
  10. return
[/s]

See the script included in the Zip File download




715
Hope this is viewable...

Hmm, speaking of transvestites, it occurred to me that a single male, if he was a transvestite born in the U S of A, and 35 years of age, if elected President he could serve as both President and First Lady.  Hopefully not at the same time.  It would be too weird to be at a White House dinner hosted by Max and Maxine like the old Red Skelton bit.  :)
716
Found Deals and Discounts / Re: [100% discount] Glary Utilities Pro 5.5
« Last post by MilesAhead on July 21, 2016, 10:40 AM »
After looking at it more, it's only for a year. I may have missed that on the registration page, after you register and look at the Manage License dialog again, it'll say the expiration date and how many days left. Just FYI

I probably should have mentioned it.  But most of these Pro giveaways seem to be a one year deal.  Before I look on the various giveaway sites I go to GiveawayRadar to see what's new.  Limited licenses are usually posted in red under the description of the software.  I wish they also had a Yes/No if the software shows a nag screen when the license is close to expiration.  One I was using brought up the nag screen when you ran the program, then closed the program.  That's really annoying making you run it again!  :)

717
Found Deals and Discounts / Re: [100% discount] Glary Utilities Pro 5.5
« Last post by MilesAhead on July 21, 2016, 06:45 AM »
Thanks for that, downloaded and installed.

 :Thmbsup:
718
Found Deals and Discounts / [100% discount] Glary Utilities Pro 5.5
« Last post by MilesAhead on July 20, 2016, 03:36 PM »
http://sharewareonsa...y-utilities-pro-sale

2 days 11 hours yadda yadda left to download and install.

I decided to try it this time.  It has some stuff the Wise Care 365 has such as removing internet history traces, defrag registry etc..

Also it has duplicate file find and some other stuff.  It wants to start with Windows but you can turn that off in Settings.  At least it is configured with automatic mode Off as default.

The last PCMag review is a few years old.  But Softpedia spoke well of it.  If I run into anything really nasty I will post.  If you haven't done ShareWare OnSale before they ask for email address and a short profile.  But it is very short.  Mainly they are interested in your job title.  I just put Student and they gave me the software anyway.  :)

Edit: One suggestion.. hang onto the page from ShareWare OnSale until you Register the software because it tells you exactly in what menu the registration dialog is. It is not under About as most software has it.  You can waste time trying to find the dialog if you just
  it.             :)


719
Hmm, all the font sites I checked only had variations on the theme of colored outline with white innards.  Besides, I don't know how you could select more than one color in font settings in an editor or word processor.  Unless they have settings I haven't experienced they all have one doodad to select font color when you select the font and size.
720
I must confess I am at a loss for words.  :)

really?  not even a clue?

I know how to catch the criminal.  If he got Agamemnon's second cousin correct then he has to be a Greek Lit Major.  Or be packing a Dell Crossword Dictionary.  I hear they are searching backpacks for the Dell Dictionaries with all the terrorism these days.
721
The Wayback Machine may be worth a shot.  If the software publisher hasn't asked them to pull the pages.
722
General Software Discussion / Re: Chrome, your friendly spyware browser
« Last post by MilesAhead on July 19, 2016, 03:59 PM »
Just as a matter of interest, isn't Chrome based on Chromium?

Would it not be better, (as in less tracking, etc), to use Chromium?

I don't use either, hence the question.was


Yes, chromium is the open source browser that is the basis of google chrome.  For a couple of years I used chromium portable snapshots.  It loaded quickly and was very fast.  The original issue that made me aware of it was that google chrome had a unique identifier that was accessible to the web server when you used chrome.  So other flavors of chrome such as SRWare Iron started popping up that did not have this ID built in.  After finding some extensions did not work as I wanted with the Iron flavor I figured I would go right to the horse's mouth and use chromium.  It was fine for a couple of years.  Then I started having issues.  I forget what they were now.  The upshot was I went back to Firefox.

Now Firefox is such a dog off the disk that I use SlimJet(yet another chrome flavor) as my default.  I was on the chromium email list for a while.  But it became obvious they were going in a direction I did not like and they were not going to turn off the road because of my objections.  The usual plot starring Peter Lorre.  For a time chromium portable snapped off the disk and roared.  But then the inevitable code bloat ensued.
723
I found this page:
http://en.freedownlo...s-Free-Reporter.html

But I did not finish downloading once I saw "demo" as part of the filename.
724
Do you know the name of the installer/zip?  Sometimes a search on the exact filename gets a lucky hit on a university server that is publicly accessible.
725
At least it didn't leave him puzzled...  :)

I must confess I am at a loss for words.  :)
Pages: prev1 ... 24 25 26 27 28 [29] 30 31 32 33 34 ... 309next