This 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 often would use the mouse cursor to 'mark' the position of the loading bar (we really are spoiled for speed these days). This is just me, oh my gosh. I thought I was the only one who did that. But now I come to think about it, it can't be true. It has been a really long time since I used that technique last time...
Why did moving the mouse cursor cause Windows 95 to run more quickly?
121–130 of 201 posts
Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#122When I used to hang out at Radio Shack in the mall to play on a TRS-80's after school, they would draw a pair of asterisks in the corner of the screen and occasionally flash one of them on and off, as they loaded from cassette tape. One of the older kids who hung out there would tell us newer kids that we could speed up loading by repeatedly pressing the up arrow key on the keyboard. Of course us new kids didn't real…
https://en.wikipedia.org/wiki/Placebo_button
Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#123Earlier quoted context omitted.
I've told the exact same story. Weird.
Also $926?
And it was a summer month long binge on PCLink and BBSs...
(I later convinced my highschool to install a CAD network on which we installed a BBS Called Heaven and Hell and ran a warez site from there....
Fun times.
EDIT: Oh -- and it was run on an EverexStep Cube machine... I think it was a 386?
Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#124Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#125I had something that may have been related. In VLC with my old monitor (1920x1080) watching a film it would often flicker painfully. I found moving the mouse continually would make it smooth. A bit of python... 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 wo…
for x in range(10000000):
Why not just use `while True:` ?Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#126Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#127I had something that may have been related. In VLC with my old monitor (1920x1080) watching a film it would often flicker painfully. I found moving the mouse continually would make it smooth. A bit of python... 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 wo…
for x in range(10000000): Why not just use `while True:` ?
Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#128Earlier quoted context omitted.
to be fair, "actual progress" is almost always a misnomer anyway.
True! I know some of the people involved in the windows update bar. Since cpu and dusk are so different across devices it’s hard to know actual time it will take. Instead teams divided their packages into theoretical weights and the progress bar showed the percent of total “weights”. That’s why it can be choppy is packages with few subdivisions have little to interpolate.
I've seen dual progress bars: one for "overall progress" (each one of five tasks fills this bar 20%) and one for the current task (maybe downloading, maybe unpacking, maybe copying, maybe waiting for hardware to reply...)
Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#129Earlier quoted context omitted.
to be fair, "actual progress" is almost always a misnomer anyway.
When I implement progress bars I most often implement "pessimistic progress", so "considering all timeouts, worst case we are 46.5% (of the time) to some result", with an update every few hundreed milliseconds. As possible mix in data from completed subtasks. Nobody ever complains if the process suddenly speeds up because progress was made before the timeout, as long as your initial estimate wasn't absurd (looks at W…
Done in 30s ... I mean 15min ... ah, 10s ... 1hr 7min ...
Oh, come _on_ ...
Re: Why did moving the mouse cursor cause Windows 95 to run more quickly?
#130This reminds me of using NUM LOCK to see if your CPU was responding to the A20 interrupt.
And this reminds me of when I accidentally figured out playing MOD sound files in DOS 6 with a new and especially beautiful STM/MOD player at the time would sound considerably better from my 486's PC speaker if I pressed the pause/break key to literally lock up the system. Apparently the player would buffer enough of the song that even though everything froze up, the sound would continue playing. I couldn't afford a…
4 channels realtime audio + 5 osc's on a 286 out the PC speaker. Phenomenal. Sounded like shit until I got a Sound Blaster, though....