|
2
|
Main Area and Open Discussion / Living Room / Re: Kudos/Respect for Mouser
|
on: May 19, 2013, 02:51:36 PM
|
As much as I appreciate the sentiment, I don't think I have much to do with this being a nice place to hang out -- things just happened and we are stuck with each other.. I feel lucky that so many interesting characters have decided to call this place their home.
There's a lot to be said for creating a welcoming place that can attract - and hold the interest of - so many interesting and talented people. It's not pure coincidence. I haven't progressed in improving the site to a new content management system and that there are still some very rough edges on the site You can say that, but I constantly visit forums that are so... how to describe it... primitive and awkward for handling even basic forum-type tasks, that I am always glad to be back here. (Which I am, every day, in contrast to most other places I could spend time!) So - thanks very much!!
|
|
|
|
|
4
|
DonationCoder.com Software / Clipboard Help+Spell / Re: CHS and REXX
|
on: May 13, 2013, 08:06:53 PM
|
|
FWIW I always prefer Regina REXX for scripting (although I am not a CHS user and don't know how it interacts). It's just an executable, plus a library file or two, no installation required.
Do you have a preferred flavor of REXX?
|
|
|
|
|
6
|
DonationCoder.com Software / Screenshot Captor / Re: Previous version?
|
on: May 11, 2013, 07:43:03 AM
|
Hmm, I don't see that behavior when pasting into Word 2013. I get a normal size and aspect bitmap. Regarding the ini file location, I remember I had to edit something to put that file in a non-redirected folder but I can't remember where that was... at any rate it was noted in a thread here (although I couldn't find it in a quick search). It was simple once I found the right post. I guess fixing that up would be a nice checkbox option during installation, in case Mouser needs anything else to keep him busy... 
|
|
|
|
|
7
|
Main Area and Open Discussion / Living Room / Re: New PC double-take
|
on: May 07, 2013, 05:40:15 AM
|
the disincentives seem to include the sorts of thing you mentioned above, and others - e.g., the dropping of ClearType functionality (ergonomics is kind of important).
Yeah, and the lack of ClearType is only part of that. Outlook, for example, uses way too much white space. And I mean just that - white space, no borders or boundaries, no visual cues about where one thing starts and another stops, borders that are just thin line boxes. Very large sender names, all spread out too much. I guess the idea is it will work better that way when you are navigating with your finger. (I navigate my finger to them somewhat differently though.  )
|
|
|
|
|
8
|
Main Area and Open Discussion / Living Room / Re: New PC double-take
|
on: May 06, 2013, 05:09:42 AM
|
|
To be honest I don't do much movie watching on my PC, but it came with PowerDVD installed which does the necessary.
On the other hand, I installed Win 8 N edition (sans media code) on my test box, so maybe I'll need to locate the media add-in and give it a spin.
|
|
|
|
|
9
|
Main Area and Open Discussion / Living Room / Re: New PC double-take
|
on: May 05, 2013, 08:05:31 PM
|
With a couple minor omissions
NT was a minor omission?  FWIW I haven't seen any Win 7 boxes in the weekly flyers here for several months now. That said, I don't find 8 so annoying... my main home PC came with it installed (it was an emergency replacement), and once I put a start menu utility on it has behaved much like 7. I just recently brought up a test box with win 8 on it so I could get more familiar with how things get done.
|
|
|
|
|
10
|
Main Area and Open Discussion / Living Room / New PC double-take
|
on: May 05, 2013, 09:21:28 AM
|
This caught my eye in this week's Staples flyer: [attachthumb=1] What does this mean? Did Staples find a cache of older boxes that were lost in the warehouse behind the paper? A trailer that never got unloaded? More importantly, how fast do you think people will snap them up?  Of course, the market for all-in-one boxes might not be particularly operating system aware...
|
|
|
|
|
13
|
DonationCoder.com Software / Post New Requests Here / Re: Patch to Disable ACL access-control-lists
|
on: April 29, 2013, 07:32:45 PM
|
I have a feeling that setacl.exe could probably do what you want with regard to the file system and registry. (The link is to the documentation, which you would surely want.) There is also a GUI version that is a free trial for 30 days. I did a little scripting with setacl.exe years ago and I recall being very careful in exactly what I asked it to do... Of course I would suggest getting a very good backup of your system before applying anything. Two copies on different devices. And testing a full restore ahead of time. 
|
|
|
|
|
14
|
Main Area and Open Discussion / General Software Discussion / Re: Combining Batch Files
|
on: April 27, 2013, 08:38:14 AM
|
Pilgrim, what I posted was basically the same as your comment #1 link. From looking at the thread in the second link, is your intention that you want one script to do both your Internet_ON and Internet_OFF scripts? If so we could pull the guts from your two scripts and put them into this framework, or just change this to call your existing batch files. This would be the first option, with everything in one place: Formatted for Text with the GeSHI Syntax Highlighter [ copy or print] rem Check if our flag file exists and act accordingly if exist internet_is_on.txt goto running rem Turning Internet items ON echo hah>internet_is_on.txt start "" "C:\Program Files\D4\D4.exe" sleep 1 start "" "C:\Program Files\Sandboxie\SbieCtrl.exe" sleep 1 start "" "C:\Program Files\PeerBlock\peerblock.exe" sleep 3 devcon enable *DEV_001C* goto alldone :running rem Internet is ON, turn it all OFF now del internet_is_on.txt taskkill /F /IM peerblock.exe taskkill /F /IM SbieCtrl.exe taskkill /F /IM D4.exe devcon disable *DEV_001C* :alldone
That said, when you reboot your computer the status of the programs and device might be out of sync with the "internet_is_on.txt" flag file. If that happens you should be able to just run the script an extra time to get everything in sync.
|
|
|
|
|
17
|
DonationCoder.com Software / Screenshot Captor / Re: Auto Email Screenshot
|
on: April 25, 2013, 08:17:57 PM
|
Here is a sample of the 3-liner I used (slightly obfuscated): Formatted for Text with the GeSHI Syntax Highlighter [ copy or print] @for /f %%i in ('datex.exe -f yyyymmddhhnn') do @set mydt=%%i wkhtmltopdf.exe --page-size Letter http://prtg/sensor.htm^?gr188=1^&timeout=60^&id=188^&position=0 d:\storage\ntt-graphs-%mydt%.pdf blat.exe - -to you1@domain.com,you2@domain.com -subject "emailed web page" -from sender@domain.com -attach d:\storage\ntt-graphs-%mydt%.pdf -body "graph attached"
Datex.exe is from Bill Stewart's siteBlat is from the Blat sitewkhtmltopdf is from this Google Code page
|
|
|
|
|
19
|
DonationCoder.com Software / Screenshot Captor / Re: Auto Email Screenshot
|
on: April 24, 2013, 09:17:21 PM
|
|
Easy to do with a batch file and two utilities. wkhtmltopdf (or wkhtmltoimage) to pull the web page, then blat to send it on. From what I remember it took some testing to figure out the command line for the wk stuff (I can check at work, I used it to do some monitoring a few years ago) but it wasn't too hard. Blat is the command line mailer bomb. Oh yeah, and a scheduled task to run the batch file.
|
|
|
|
|
22
|
Main Area and Open Discussion / Living Room / Re: The Coffee/Caffeine Thread!
|
on: April 21, 2013, 07:59:27 PM
|
|
We used to have a local Barney's (well, not too far away, anyway) that carried actual Jamaican Blue Mountain for awhile. Expensive, but it was the real deal - either that or they mixed in some crack or something. I couldn't afford it very often, and I haven't seen it in years (and not only couldn't afford it now, but also would expect a ripoff if I tried sourcing it over the Internet).
|
|
|
|
|
23
|
Main Area and Open Discussion / Living Room / Re: Show us a photo of your mutt or other creatures..
|
on: April 21, 2013, 12:11:06 PM
|
Yes, indeed. (Even the cats we have had were rescues.) A year after we were married my wife and I adopted as a companion for our Golden a wonderful 10-year old girl, Rae-Rae, who had been living in the rescue kennel for almost a year because she was old, she had unsightly (though benign) tumors on her teats, and she had horrible teeth. But she had beautiful deep brown eyes that sparkled and laughed at us and she delighted in our attention. She was a true angel  . We had her for three years before a cancer took her from us suddenly, less than a month after we lost our golden retriever. Since then we have taken in mostly tough sells - one big girl who was terrified of the wind and the feel of grass under her feet, another girl who was dropped off after she had damaged her back from a fall and couldn't walk properly. One girl we adopted, also 10, had developed bone cancer; she was with us for almost two months and had just started feeling happy and excited when her humans came home when things came to a head. Johnson had developed seizures, and Athena was 9 when her owner became tired of her. Our times with our dogs are short, but that's just a reason to treasure every moment. I think that lesson has helped us with our kids, who we adopted in our late 40s; there are often times when I have to grit my teeth and tell myself "treasure this moment!" 
|
|
|
|
|