Earlier quoted context omitted.
altgr-z still opens nvidia's bar instead of, you know, just typing ż. In 2021, not 2004.
Wait you mean the GeForce Experience overlay? I must have reassigned that right after installation so I didn't remember. But at least this one warrants having a hotkey in the first place!
While posting to Tumblr, E and W keys just stopped working
211–220 of 270 posts
Re: While posting to Tumblr, E and W keys just stopped working
#212These hotkeys in websites are an utter curse. So many times I've started typing in Jira, then something weird happened that caused my keystrokes to be interpreted by the page instead of entered into a comment box ... then the ticket gets reopened, unassigned, etc.
Github has (or maybe had) some hotkey that not only opens a clunky browser-based text editor, but also forks the repo under your account. Then you have to go back and manually delete the repo that you didn't intend to fork. Ugh! Also a lot of web-based code editors override the standard Ctrl/Cmd-L shortcut ("go to URL bar") to mean "go to line". It's nice having IDE-like affordances, I guess, but not when it interfer…
Re: While posting to Tumblr, E and W keys just stopped working
#213Earlier quoted context omitted.
On MacOS if you remap your capslock to control there is a race condition on the login screen. If you use the control/capslock key to wake up your laptop and manage to time it right, you can enable capslock but not have a way to disable it (unless you remapped another key to capslock (why?)).
Funny, I just had a version of this happen to me this morning on iPad OS using a folio keyboard. I had just upgraded to iPadOS 15 and the caps-lock-as-control setting reverted to the default. I went into settings and changed it back, but I did so with caps lock accidentially enabled. This left the folio keyboard stuck in caps lock. I had to go back into settings, set caps lock back to caps lock, press the caps lock k…
Re: While posting to Tumblr, E and W keys just stopped working
#214Earlier quoted context omitted.
So the concept is you would click through to every post to read it? I have to admit I never twigged on this, because it seems insane.
No, again, it was not meant to be a traditional comment section. It was not a discussion thread for casual readers, especially via the blog view. If you wanted a normal comment system, you could use Disqus embeds, or just use a traditional blogging software. The reblog system was a way for Tumblr users to publicly respond to things, and allow that response to be visible to the responder's followers. The original post…
Re: While posting to Tumblr, E and W keys just stopped working
#215Earlier quoted context omitted.
> One day, Windows wouldn't let me type the letter p. > It ended up being the last straw that pushed me to Ubuntu, and I've never looked back. On Ubuntu, that would be: $ Q=$($(echo /usr/bin/*rintf) \\x70) $ echo hel$Q help right?
$ echo hel$'\x70' help
Re: While posting to Tumblr, E and W keys just stopped working
#216These hotkeys in websites are an utter curse. So many times I've started typing in Jira, then something weird happened that caused my keystrokes to be interpreted by the page instead of entered into a comment box ... then the ticket gets reopened, unassigned, etc.
So many times I've started typing in bash, and then realised that my focus has been on a website instead, which starts doing some ridiculous stuff in response. There's no way to discover hotkey functionality otherwise, of course, because "thou shalt not discover" is a modern UX guideline.
Re: While posting to Tumblr, E and W keys just stopped working
#217I feel like in a thread like this, Asana deserves a shout-out for utterly fucking up the UX in any firefox version I've tried, up to and including nightly. Typing in the various text input fields has ~1s of lag. It's a TEXT FIELD for fuck's sake!
Since a few years ago ruining text fields seems to be a rite of passage for front-end developers. I echo the Asana issue and I also noticed Slab (some kind of Notion alternative) both managed to make text lag.
If you have free time, I'd pop open Chrome Dev Tools, run a performance monitor on both and try to diff out what each of those products do that cause the additional input lag (if there's no code obfuscation).
Re: While posting to Tumblr, E and W keys just stopped working
#218Earlier quoted context omitted.
just seems to happen more often in JS... :|
If you were writing pure JS you'd probably need to intentionally delay text entry with setTimeout/etc to achieve this effect - I don't think you can achieve this outcome by accident. The problem is that the front-end ecosystem encourages pulling in megabytes of third-party crap for every little thing (including poorly reinventing existing browser functionality) and the result is that some interaction between all that…
Re: While posting to Tumblr, E and W keys just stopped working
#219Re: While posting to Tumblr, E and W keys just stopped working
#220Earlier quoted context omitted.
Notepad++ has a toolbar option that will uppercase all the currently selected text. Write a paragraph normally and then uppercase it with one click.
Lots of tools have this. IntelliJ has it mapped to ctrl shift U by default I think.