Earlier quoted context omitted.
It was removed from Microsoft code too. This is an old snapshot of the code, almost two decades old. Since the 2002 TWC initiative, anything from easter eggs to things like that are all very strongly banned, and actively get removed as they're discovered.
Not surprising. No fun is allowed anywhere anymore. just dull flat interfaces with grey and black colors. people can say what they want about windows xp and vista but they had soul. todays OSes are souless. Looking at you windows 10..
Comments by a developer inside the Windows Media Player source code
51–60 of 135 posts
Re: Comments by a developer inside the Windows Media Player source code
#52Earlier quoted context omitted.
It was removed from Microsoft code too. This is an old snapshot of the code, almost two decades old. Since the 2002 TWC initiative, anything from easter eggs to things like that are all very strongly banned, and actively get removed as they're discovered.
Not surprising. No fun is allowed anywhere anymore. just dull flat interfaces with grey and black colors. people can say what they want about windows xp and vista but they had soul. todays OSes are souless. Looking at you windows 10..
Re: Comments by a developer inside the Windows Media Player source code
#53Earlier quoted context omitted.
> But key events should be on key-down Why? I like how keyup is less ambiguous: it avoids the question “what do I do if the user is holding the key down?” I also like being able to hold the key down to cue up a command and then at the right time, pull my hand away to execute crisply. For video editing mainly. I’m not saying keyup is the only answer. Just that there isn’t one obvious answer.
Keydowns have the physical button analogue: when you press a physical button, it immediately closes the contact, it doesn't wait until you lift your finger again. Not saying key down is better than key up, there are certainly arguments for both.
Re: Comments by a developer inside the Windows Media Player source code
#54Earlier quoted context omitted.
I’ve read at least several hundred books in English, and probably hundreds of thousands of news stories and blog posts, and don’t recall encountering it before. It seems to appear mostly in searches for its definition and gre prep...
Try, say, Google ngram. Would you say that, for example, “disharmonious” is a rare word? Graph them together. Pulchritude is not even moderately rare.
Re: Comments by a developer inside the Windows Media Player source code
#55Earlier quoted context omitted.
Keydowns have the physical button analogue: when you press a physical button, it immediately closes the contact, it doesn't wait until you lift your finger again. Not saying key down is better than key up, there are certainly arguments for both.
Can’t physical buttons work either way, depending whether you want to break a normally closed circuit or close a normally open circuit.
Re: Comments by a developer inside the Windows Media Player source code
#56Earlier quoted context omitted.
I think you’re mistaken, YouTube (in all the forms I use it with a keyboard at least) supports spacebar as a pause key. Your browser might try to pop you down half a page if the thing that is selected or highlighted on the page is not the video player itself though. But it works 100% of the time in fullscreen.
YouTube's keyboard handling is Insanely Intuitive™, I must absolutely agree. Usefully, the up/down keys don't change the volume unless the player is also focused. What's incredibly sad is that j/k/l were agreed upon to rewind/pause/forward the video, and these generally work unless you're in a textbox... but dedicated keys were not similarly approved to control the volume. -- My current winner for Absolutely Favorite…
j is down and k is up in vim
Re: Comments by a developer inside the Windows Media Player source code
#57This is why I love open source. In LibreOffice, cruft like this is often removed due to the embarrassment factor.
Re: Comments by a developer inside the Windows Media Player source code
#58The bug here is in media player to listen on key-up events. Mouse-button-up makes sense because the user can move the mouse to cancel the click. But key events should be on key-down and that's how it is done most of the time. So if you use key-up you run into these problems.
Should they, in general? If you want to press a key combination, you never press the two keys at exactly the same time. So, if key events were on key-down, you would have to press modifiers before letters to type capital letters, use keyboard shortcuts, etc. I think that would be annoying and slow typists down.
It also rules out using bare modifier key presses as input methods, but that is less of an impact.
Re: Comments by a developer inside the Windows Media Player source code
#59> so we need to add yet more ugliness in the form of assembler to an app which is already hardly a paragon of pulchritude Throwing some serious vocab shade in these comments, love it.
Re: Comments by a developer inside the Windows Media Player source code
#60The bug here is in media player to listen on key-up events. Mouse-button-up makes sense because the user can move the mouse to cancel the click. But key events should be on key-down and that's how it is done most of the time. So if you use key-up you run into these problems.
“But key events should be on key-down” Should they, in general? If you want to press a key combination, you never press the two keys at exactly the same time. So, if key events were on key-down, you would have to press modifiers before letters to type capital letters, use keyboard shortcuts, etc. I think that would be annoying and slow typists down. It also rules out using bare modifier key presses as input methods,…
Do people who want a capital 'A' ever intentionally type A-Shift instead of Shift-A? I've never heard of it before.