From a comment: Try opening a large file with Notepad on a contemporary machine. The window must not be full screen. When loaded, mark all text using the mouse (the keyboard works as well, it just needs more manual skill). While still holding the button down (and marking) move the mouse down, so the text gets marked and scrolled. Now compare the scroll speed while holding the mouse still versus wiggling it. Depending…
Why did moving the mouse cursor cause Windows 95 to run more quickly?
61–70 of 201 posts
Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#62Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#63Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#64This wasn't just restricted to COM port based I/O either. Back then I had a Logitech bus mouse. The mouse was connected directly to an ISA card, and didn't use the COM ports as most mice did back then. (I needed the extra COM port/IRQ for my modems.) I too witnessed the 'windows is running slow when installing' bug. I often would use the mouse cursor to 'mark' the position of the loading bar (we really are spoiled fo…
>I too witnessed the 'windows is running slow when installing' bug. I often would use the mouse cursor to 'mark' the position of the loading bar (we really are spoiled for speed these days). Most software doesn't feel any faster compared to Windows 95 (see Wirth's law). Also most shitware does not display a loading bar anymore, instead you get some spinning stuff that's just an animation.
In fairness, that's because users constantly complained about loading bars not being accurate (they'd freeze, change speeds, stop right at the end etc.), but having a "true" loading bar that proceeds smoothly basically requires solving the Halting Problem. So out it went.
Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#65Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#66Here I was thinking this was some sort of urban myth caused by superstitions in an age with less abundance of easily accessible tech information. Guess I owe my dad an apology now.
Me too. What a humbling slap-in-the-face, no? Sometimes when an idea sounds silly, and comes from a less technical person, one might disregard it even though it's easily testable/provable.
- Open Office won't print on Tuesdays: https://bugs.launchpad.net/ubuntu/+source/cupsys/+bug/255161...
- Can't send email more than 500 miles: http://web.mit.edu/jemorris/humor/500-miles
Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#67So in today's world... why do so many PCs emit a slight sound when moving the mouse. I know that there are high frequencies involved and periphery is one of the worst perpetrators of electromagnetic interference, but I still find that strange. And what exactly is emitting the sound here?
Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#68So in today's world... why do so many PCs emit a slight sound when moving the mouse. I know that there are high frequencies involved and periphery is one of the worst perpetrators of electromagnetic interference, but I still find that strange. And what exactly is emitting the sound here?
A work around if you have a motherboard that is particularly bad about this is to use the digital audio output (S/PDIF via an optical or RCA jack) to connect an external amplifier or you could stream it via software. This tends to only be an option if the machine is stationary and not terribly realistic for people with a laptop on the go.
Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#69Earlier quoted context omitted.
What ? I still do that at least once a week/month. Last time it was for the linux dropbox updater, last week. I am also a fan of using another window so I can use the mouse and still have a marker to monitor progress.
I guess what has changed is me, not the computing environment. When I was young, I easily grew impatient when things were going slow. Nowadays I still kinda feel nervous, but not to the point to warrant such bookkeeping methods.
Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#70 import ctypes, time
def move(x, y):
ctypes.windll.user32.SetCursorPos(x, y)
for x in range(10000000):
move(0, 0)
time.sleep(0.01)
move(1, 1)
... and all was well.(When I upgraded to a 4K monitor things got worse and the cursor fiddle doesn't help).