Messages - perlguy [ switch to compact view ]

Pages: [1] 2 3 4 5 6next
1
Screenshot Captor / Re: Small pictures when pasting into a new e-mail
« on: November 04, 2011, 04:49 PM »
Sweet.  Much appreciated.

2
Screenshot Captor / Re: Small pictures when pasting into a new e-mail
« on: November 03, 2011, 02:10 AM »
A cmdline option for minicap, to set dpi would be perfect.

As for hotkey and SC... yeah, I know that's the typical use... probably 99+% of people would use it that way. But most of my capturing is regions, not window/object/fullscreen... so point-click feels more natural, especially for the less frequent use (don't have to think about what the hotkey is or navigate a menu to get to the desired action).

3
Before jumping all over the extension author about silent updates... make sure you know exactly how firerfox itself is configured to update any/all extensions.  If FF is set to have extensions auto-update as the default, then *you* have to tell it which extensions you want to be notified of updates before they are install.  It's not really his fault if FF did it on your behalf.  Personally, I'm glad he backed out the change - whether it was because of the backlash, or because of hijacking.   And I have now reverted (again) to manual updates only, for all extensions. (default = no updates, and all extensions reset to default update policy).

4
Screenshot Captor / Re: Small pictures when pasting into a new e-mail
« on: November 02, 2011, 11:06 PM »
Hey Mouser. I've seen lots of replies about ScreenshotCaptor and DPI settings - so I now understand what's going on, but it's minicap, not SC, that I'm having a problem with. 

Is there any way to set DPI for minicap? 

While writing down all the things that didn't make sense about the magnification level needed to get the image back to normal (313%)... it hit me: minicap is capturing at 300dpi, and sure enough, 313% of 96 == 300. I'm guessing that 300dpi is the default value in windows or some library you are using, for clipboard images? Even if you don't add a setting in minicap to adjust DPI, could you change the default to 96 (the usual value for XP)... or query the O/S for the current display's DPI?  (I know, that could get tricky, e.g. across multiple displays set to different values - if that's even possible with Windows).

I don't take many screenshots, so I don't normally keep anything running just for that.  And while I really love FARR (the most used 3rd party program I use with XP - bar none), I still prefer MWSnap to ScreenshotCaptor when doing more than minicap is suited to.  It may seem silly, but the one thing I find lacking in SC is a primary toolbar (one for main actions, not the paint widget tool pallete).  If not for that, I'd have dumped mwsnap a long time ago.  Reviewing the features again, SC is definitely more capable than MWsnap in other respects.

Maybe this sums it up better... there's no one-click way to trigger a capture with SC (hold-drag-release on a menu doesn't count :P )...  it just doesn't "feel" as smooth when compared to the other tool.

I'll probably go back to minicap for the occasional captures I do... now that I've found the right image "zoom" level to use in office apps.

FYI, the only thing I've found "wrong" in SC so far are some of the controls not looking quite right with XP styles. Prime example is the preview window - the tabs for Zoom/Nav are styled (for XP), but are too small to allow the text to show up, and even the rounded glass effect is clipped.  It might look a bit dated without theme/style support, but it definitely looks more polished that way (as your screenshots look).  With styles enabled, the GUI appearance is very inconsistent.  There are other interface issues too... like when you start resize the window smaller than the contained controls... they get clipped, instead of forcing a minimum window size.  And the gradients on the various menu/toolbar areas don't mesh well...resulting in a busier interface than if they were all flat.

Screenshot - 11_2_2011 , 8_19_29 PM.png


So...  I'd give minicap a 10/10 rating if not for the dpi issue with Office apps (and others).

SC, 8/10 strictly on aesthetics (-1 for lack of main toolbar, and -1 for appearance). If it had a user customizable toolbar, I'd give it 11/10.  :D


I hope I don't come across as "bashing"' your app... it's truly not meant that way. Constructive criticism is more like it... with the hope that either minicap gets DPI fixed... or SC gets at least a default "capture" button (user selectable for which mode) in the main window. :)

....

I also just noticed that I missed out on donating anything to DC last year... an oversight that I've already corrected.

Thanks again for the amazing work (for your apps AND the DC site in general).

Jim

5
ProxySwitcherLite - free. full version is for $$$, but if all you need is quick switcher for proxies, works great.

http://www.proxyswitcher.com/download.html

For most day-to-day home-to-work-and-back situations, I wrote a proxy-auto-config file that uses a name lookup to detect if I was inside the corporate network or not, and set the proxy accordingly.  This works great for anything that supports PAC files. Not so great for those apps  that only understand hostname:port proxy settings.

snippet from my PAC file demostrating the name lookup logic.

function FindProxyForURL(url, host)
{
        if (! isResolvable("somehost.somecorp.com")) { return "DIRECT"; }
        // fastest return, with no proxy, if not on corp network

        return "PROXY proxy.domain:8080; proxy2.domain:8080";
}

My actual pac is a few hundred lines long because of really tortuous network routing because of how our overall corp network grew.  So different internal sites need to route differently - some DIRECT, and some thru various internal proxies.  Think multiple cycles of acquisitions and mergers and no corporate wide network overhaul at the end... in some cases, we have multiple nat translations going on to get from one part of the company to another... I get dizzy just thinking about it.

Another option is to use a local proxy on your laptop that can (when appropriate) chain to an upstream proxy - the idea being that all browsers and the O/S itself point at your personal proxy, and you change that one proxy server to go direct, or chain, as needed.  I'd recommend delegate (http://www.delegate.org/).  It can be a bit overwhelming to configure the first time because of all the options... but it's extremely powerful.

There's also proxomitron (http://www.proxomitron.info/ or http://www.sankey.ws/proxomitron.html) - which is no longer actively developed (author discontinued it, and then died a year later), but might suit your needs.

If not for the bizarre network I have to deal with at work, I'd probably stick with 2 different delegate configs, that I switch between. I wrote an AHK script to restart the daemon with the desired configuation - just kills any running delegate.exe processes, and starts up a new one with the config I specify on the command line.  I actually use this method for apps that don't support PAC files (most non-browser network apps).

Whew... that went on much longer than I expected!

If you have any questions on any of my suggestions, I'd be happy to help.

--perlguy

Pages: [1] 2 3 4 5 6next
Go to full version