topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Thursday November 13, 2025, 11:14 pm
  • 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 ... 150 151 152 153 154 [155] 156 157 158 159 160 ... 309next
3851
I prefer to take mine to the local stream where the village women do their laundry. I dip it in the current a few times, then pound it on a rock to extract the excess water.  :)
3852
General Software Discussion / Re: TEncoder 3.1
« Last post by MilesAhead on November 22, 2012, 11:23 PM »
TEncoder 3.1 The new release has promised updates.  See the change log at sites listed in first post.
3853
Living Room / Re: This is one really neat extension ...
« Last post by MilesAhead on November 21, 2012, 03:16 PM »
Hmm, too bad it has no option to show the right side group on the left instead. But even so, like with a site that has a dark blue background such as Softpedia, I can't see the icons. I can tell I hit it because stuff shifts around. :)

A nice idea. Maybe it will be perfected in time.
3854
Living Room / Re: This is one really neat extension ...
« Last post by MilesAhead on November 21, 2012, 01:30 PM »
Hmm, it conflicts with Speed Dial 2 even if I disable the sidebar. When I mouse over an icon on the right I get the Speed Dial 2 bookmark search form.
3855
Living Room / Re: This is one really neat extension ...
« Last post by MilesAhead on November 21, 2012, 11:43 AM »
Seems for some reason key bindings exist to scroll up and down, but not horizontally in FF. Chrome honors left and right arrow if the horizontal scrollbar is showing. Just thinking rather than depending on an extension for each browser I might be able to hack some mouse hotkeys. I'd only have to send Home and End for Top/Bottom. But all the way right and all the way left is going to be tricky in FF.  Chrome I'll just have to send the left or right arrow repeatedly.

Not as "smooth" as the hover arrows I'm sure though. :)

Gestures aren't for me. I tried even a simple "rocker" gesture Skwire did. I don't have the manual dexterity. It felt really awkward. I don't even like to use context menu if I don't have to.
3856
Living Room / Re: Anything wrong with formatting a USB stick in NTFS?
« Last post by MilesAhead on November 21, 2012, 11:18 AM »
In fact, now that I remember... sync.exe isn't picking up on the write caching. I had the caching disabled for a time and it still flushed them by default. It was last updated in 2006. It probably uses disk capacity to make assumptions.  But since it only uses volume lock API call on NT and later I have no qualms using it still. The SysInternals stuff always seemed pretty solid to me. :)
3857
Living Room / Re: Anything wrong with formatting a USB stick in NTFS?
« Last post by MilesAhead on November 21, 2012, 10:24 AM »
I was talking about sync.exe picking them up as fixed disks. Running it with no params flushes all fixed disks.  That's all. If it does not report flushing the drive letter for the usb when run with no params, you have to specify the drive letter to force it as in
sync F

as I stated earlier

The docks are SIIG USB 3.0.  WD Sata III drives freshly formatted show benchmarks at full speed. I think the fastest rated WD I have is the discontinued 640 GB 64 MB cache model. Sustained transfer is listed at 126 MB/s.  Sequential read/write freshly formatted is 130/138 MB/s Crystal Disk Mark. But CDM considers 1 million bytes a MB for some reason I can't fathom. After all, they have access to a computer to do the math.  :)  But they seem to prefer orders of magnitude.  In any case that comes close to what I'd expect.

I just got a cheap SSD on sale.  I'm using it in the dock for video mux.  Supposedly in a direct Sata III connection it should do 500 MB/s sequential. In the dock I'm getting 170/145 read/write.  But of course the beauty is in the random access.  I can use it for both video source and destination with no thrashing penalty. It's a Kingston. I think they phased it out.. reason for the sale.  But I got a good price.  $70 for 128 GB.  This machine has a plastic cage devised by Satan for the system HD. I saw the video of the tech doing R&R of the drive. Forget it!!  Besides, fast boot isn't the only thing in life. I get good use of the SSD muxing in the dock.  The SSD has the same controller as the other higher priced models. I think the memory is not rated to last as long. Eight years typical use as system disk.

I haven't tried it on W7 yet with the Trim notifications. I'm using it on a Vista machine. But the garbage collector works well enough for my purposes. I did a mux with audio only encode to another video container and I kept killing the job because I changed a setting in the middle and I thought it was picking up the temp file and resuming it was so fast!! I just watch the progress bar go across.

3858
Living Room / Re: Anything wrong with formatting a USB stick in NTFS?
« Last post by MilesAhead on November 21, 2012, 10:07 AM »
But if you're stuck with an old BIOS, you might not be able to toggle the port to hotswap mode

Write caching may be disabled. But since I'm running Sata III bare drives why would I want to take a performance hit?  I have battery backup on the docks.
3859
General Software Discussion / Re: trying chrome
« Last post by MilesAhead on November 21, 2012, 09:50 AM »
If you download Transpose from my hotkeys page
the source is included.

But in cases where the window class is unique you can use that to avoid worrying about the changing window titles. Here's a couple of snippets from Transpose.  Chrome is easy because they only changed the class name once in the last couple of years. Mozilla based programs many just have MozillaWindowClass even if not a browser.

GroupAdd, ChromeGroup, ahk_class Chrome_WidgetWin_0   ;Chrome Browser pre 20.x
GroupAdd, ChromeGroup, ahk_class Chrome_WidgetWin_1   ;Chrome 20.x plus

; later on in the code hotkeys for chrome where I send the default keys
#IfWinActive ahk_group ChromeGroup
^LButton::
  Send, ^+{LButton}
return
#IfWinActive

#IfWinActive ahk_group ChromeGroup
+LButton::
  Send, ^{LButton}
return
#IfWinActive

; #IfWinActive with blank after it just removes the context sensitive nature of the hotkey
; or back to default "applies globally" mode
;
; it's optional. Some use it so they don't have to remember what context that part of the script is in for
; hotkeys that follow

3860
Living Room / Re: A secret society uncovered 250 years later
« Last post by MilesAhead on November 20, 2012, 07:41 PM »
  The first rule of the Masons, you don't talk about the Masons....    :P

Heh heh. I just hope they don't make their own soap and explosives from rich broads' Lipo Leftovers.
3861
Living Room / Re: Anything wrong with formatting a USB stick in NTFS?
« Last post by MilesAhead on November 20, 2012, 07:28 PM »
Inconsistent meaning I invoked it again and again and it almost never told me the drive could now be removed. I liked the eye candy. I wouldn't have stopped using it if it worked for me.

Like many things if it works for you it's great. If not it's a lemon.
3862
General Software Discussion / Re: trying chrome
« Last post by MilesAhead on November 20, 2012, 06:44 PM »
Plus, when you upgrade to Firefox 17 you get the cool new Facebook toolbar.

:wallbash:

I've just updated Firefox to version 17 but found no such toolbar. :-\

From this it sounds like the programming interface is there. Just nobody has done it yet.... I think.  :)

3863
Living Room / Re: Anything wrong with formatting a USB stick in NTFS?
« Last post by MilesAhead on November 20, 2012, 06:40 PM »
^ I use Zentimo (used to be usb safely remove) for that.

I got a free copy of Safely Remove. It was totally inconsistent on my machines. Basically a waste of time hitting the button.

Plus you don't want to "safely remove" hardware that is seen as a fixed drive, like the bare drives in my docks. Flush buffer kill power does it. Sync.exe works on everything, even Win9x. I've been using it since 9x days.
3864
I tried Pale Moon. I downloaded their applet to transfer stuff from FF profile. Could not get it to work. About the only inconsistency I find with WF is it seems to drop more mouse clicks than most. But it came up with all my AddOns working except for Sync* family of AddOns. I just had to change the xpi file for max FF major version number to 16.
3865
Living Room / Re: Anything wrong with formatting a USB stick in NTFS?
« Last post by MilesAhead on November 20, 2012, 05:24 PM »
Sometimes Eject or Safely Remove does not want to function.  Even though the stick will be shown as a removable drive, if you explicitly list the letter, Sync from SystemInternals should flush the data to disk.

I have USB 3.0 docks with caching enabled.  I have sync.exe hooked to F10 function key.  Before I'm going to shut off a dock, I hit F10 a few times to make sure the data is written. Sync works by simply locking the volume.  This triggers Windows to write all data in file buffers to the drive. Couldn't be much safer. I've been using Sync.exe through many flavors of Windows.

By default just running sync.exe at a command prompt flushes all fixed disks. To use with a USB key that has write caching disabled, just specify the drive letter, like
sync  F

without the ':'

The drives in my docks show as fixed disks. The fastest way to see if you have to specify the drive letter is just run sync.exe. It will report the letters of the drives flushed. If it shows your thumb, then no need to specify it.

It couldn't hurt. :)

3866
General Software Discussion / Re: trying chrome
« Last post by MilesAhead on November 20, 2012, 02:54 PM »
Oh, afa the keyboard specializations. I didn't really look into it because I wanted to use the default bindings and make my changes via AHK_L hotkeys.  For example chromium is set to use Control Click to open a tab in the background and Shift Control Click(if I remember correctly) to open in the foreground. I prefer to open tabs in the foreground most of the time. I set ahk hotkey Control Click to send the foreground key combination and Shift Click to send the background key combination if chrome is the active window.
3867
So, would you say you're happy enough with it Miles?

Waterfox seems fine. I only use chromium as secondary now. I added StopAutoplay and AutoFillForms. AFF isn't as good as the chromium form filler. But it's ok.
3868
General Software Discussion / Re: trying chrome
« Last post by MilesAhead on November 20, 2012, 01:42 PM »
There's a Gestures For Chrome

I can't attest to how well it works.  I don't use mouse gestures.

I was using Chromium Snap Shots

That's where you get the most advanced features. I've just gone back to Firefox and I'm using Waterfox on my 64 bit machine.  Most of the snap shots are surprisingly stable. I used the win32 zip files rather than installer.  If you keep backups of your AppData\Local\Chromium folder and the folder that has the executable, you can back off to the previous version. It's important to do this because if the snap shot goes up a major version number and you try to use the local data folder with the older version you copied back over, you may get an error since the older version doesn't know what to make of newer settings.

The most important tweak I found is adding this to the shortcut target line:
--renderer-process-limit=n

as example:
C:\Utils\Chromium\chrome.exe --renderer-process-limit=8

if you don't use a render limit you tend to get about a 1/2 dozen chrome.exe processes plus one for each open tab and running extension. Maybe even more. Experimenting with the number you can decide what number for 'n' is best for you. To get back to default set n to 42(not documented but it used to be the default.)  Once you run it with 42 then you can remove the setting if you want to remain at the old default.

One thing though, the built in bookmark sync totally sucks!! If you are not logged in, delete some bookmarks, then log in, it will restore the bookmarks you just deleted if the original set was in the store online.  Totally brain dead. There's no Up and Down overwrite like they used to have. (If there is, you can't get to it before logging in automatically hoses you by syncing and restoring your deletions.) Nowhere near as good as FF SyncPlaces.

And no, you cannot use FF AddOns. You have to hope the authors also coded one for chrome.
I've gone back to FF as primary since 16.x. It does use a lot of ram, but it seems to launch pretty quickly to a blank page even if the disk is busy. That's the main reason I switched to chromium.

One Extension I do think is better in Chromium is Ginger Grammar Checker. It's the only one I tried that didn't fight with forum editor forms/applets whatever they call what I'm typing into here.

The good news is chromium does a lot on its own. You don't need extensions to play multi-media and it has built in search engine management.  The bad news is if you run a lot of tabs, you'll be running a lot of processes.  The setting I mentioned before helps a bit.

But it is fast and stable.


3869
Living Room / Re: A secret society uncovered 250 years later
« Last post by MilesAhead on November 20, 2012, 09:31 AM »
Stuff like StoneHenge.

Check out what one guy does up in Michigan: http://www.youtube.c.../watch?v=pCvx5gSnfW4

Of course a lot more was necessary for Stonehenge (the stone was quarried and transported a long distance from the site, and the placement was apparently quite precise and particular).  But still, after seeing what one guy can do with 'sticks and stones', it makes Stonehenge seem a lot less 'impossible'.

I've seen similar "documentaries" about the statues on Easter Island. Supposedly some anthropologist dude with a few indigenous workers wielding axes made out of sharp stones roped to sticks cut the stone from the quarry and mounted several statues in a couple of weeks.  Obviously the anthropologist is a disinformation agent for the aliens. They don't want every Tom, Dick and Harry asking them to erect statues to the gods. I mean, look how many are on Easter Island alone?  The things would cover the globe!

3870
Living Room / Re: A secret society uncovered 250 years later
« Last post by MilesAhead on November 20, 2012, 12:12 AM »
Another thing H2 channel loves to carp on is aliens. Supposedly they levitated huge stones to erect buildings beyond the technology of humans. Stuff like StoneHenge.  They speculate the high priests of ancient cultures knew how to communicate telepathically with the "gods" who were really the technologically advanced aliens etc..  They posit the question, will the aliens return?

What I want to know is, how do we know they ever left?  Think about it! With all the weird looking life slithering, walking, swimming, flying around on this planet, if some of them were aliens, how would you know?

The scene is a human being reclining on his front porch. On the wall are a couple of chameleons hanging sideways just watching the guy.  One chameleon thinks to the other "just don't talk to them. They're so stupid they'll never catch on unless you walk right up and introduce yourself."
3871
General Software Discussion / Re: Thoughts on this sort of UI styling?
« Last post by MilesAhead on November 19, 2012, 11:57 PM »
Other than the drop shadow, it seems it's back to flat. Are we heading into another "flat" cycle?

Perhapns the sub text in the "buttons" are only for demo, but it reminds me of the type of help where you have an edit input line with the label Email Address and you press F1 to be told "enter your email address."  It doesn't look horrible, but I don't see the advantage to flat, bland and redundant unless the rest of the interface, such as desktop is all going to be flat. In which case, turn off the drop shadow.

I prefer a bit more color to give the eye something to do other than differentiate shades of gray. Not circus colors... but something.

If the IRS had a push button panel it might look like this one. :)
Top line would be "Pay your Taxes" and the sub text would be
"this is where you pay your taxes."
3872
Living Room / Re: A secret society uncovered 250 years later
« Last post by MilesAhead on November 19, 2012, 10:36 PM »
Hmmm, I'm not sure about the Free Masons, but I've heard a rumor that Night Of The Living Dead is actually a slang term for the Republican National Convention.
3873
Living Room / Re: A secret society uncovered 250 years later
« Last post by MilesAhead on November 19, 2012, 06:59 PM »
it has to take something pretty powerful for an ugly dude like him to score!!
Yeah, but I wonder who's Kissinger now.

-cranioscopical (November 19, 2012, 06:57 PM)

Are you implying he's a cyborg?
3874
Living Room / Re: A secret society uncovered 250 years later
« Last post by MilesAhead on November 19, 2012, 06:14 PM »
Hmm, I couldn't seem to find who was who in the text. So I searched on Masons.  As expected, that did the trick. Seems it's always them.  They are the they that everyone talks about when they say "that's how they get ya'. :)

H2 channel has some fun documentaries were they do everything from discovering America to hiding the Arc of the Covenant to conspiring to throw off the British yoke and make America independent using terrorist tactics etc.. I wonder if Henry Kissinger is a Mason as well as a Trilateral?  He claimed power is the ultimate aphrodisiac. He must be right because it has to take something pretty powerful for an ugly dude like him to score!!
3875
General Software Discussion / Re: TEncoder 3.0
« Last post by MilesAhead on November 19, 2012, 04:54 PM »
Just to update. I got a reply from the author. The codec selection at the top of the options is what determines the container, rather than the profile. The change to set the output container to be in line with the profile type is on the to do list. There may be a guide, but no in depth help docs for the Gui as I guess it's designed to be self-evident. But at least it clears it up for me that it's not a bug or me hitting the wrong button. "Working as designed" as we used to say. :)
Pages: prev1 ... 150 151 152 153 154 [155] 156 157 158 159 160 ... 309next