Earlier quoted context omitted.
Very simply: if it's an even number, it's your left hand. If it's an odd number, it's your right hand. If you want to type a number like 2,467,333 you can do it without looking for the numbers. On qwerty I tend to "lose my footing" when it comes to typing numbers out. But if it's a 2 on programmer-dvorak, it's right hand, index finger. 2468 is each of your four digits, in order. and 1357 is the other hand's digits. H…
> If you want to type a number like 2,467,333 you can do it without looking for the numbers. You don't need a special keyboard layout for that. Any layout at all has the same feature. > On qwerty I tend to "lose my footing" when it comes to typing numbers out. Why not use the numpad?
Just Let Me Write Digits
81–89 of 89 posts
Re: Just Let Me Write Digits
#82Earlier quoted context omitted.
> If you want to type a number like 2,467,333 you can do it without looking for the numbers. You don't need a special keyboard layout for that. Any layout at all has the same feature. > On qwerty I tend to "lose my footing" when it comes to typing numbers out. Why not use the numpad?
What numpad :)?
Re: Just Let Me Write Digits
#83I've always found it weird when a form admonishes you for writing spaces or dashes in e.g. a phone number or credit card number. Hey, implementation, you're a computer! Strip them out automatically on the backend if you don't like them!
Especially in the UK, bank sort codes are typically presented to the user as e.g. 04-00-04 by every banking app or website, but whenever you have to enter them (e.g. to pay someone else) they usually require you to not enter the dashes. Some of the most annoying sites limit the input to 6 characters but don't strip out the dashes, so you'd end up with 04-00- and then it complains. And then there are the ones that imp…
Re: Just Let Me Write Digits
#84Earlier quoted context omitted.
Especially in the UK, bank sort codes are typically presented to the user as e.g. 04-00-04 by every banking app or website, but whenever you have to enter them (e.g. to pay someone else) they usually require you to not enter the dashes. Some of the most annoying sites limit the input to 6 characters but don't strip out the dashes, so you'd end up with 04-00- and then it complains. And then there are the ones that imp…
Hey, Monzo's Sort code, the first one to my knowledge to start with a zero. I spent six months unable to pay my council tax bill because their stupid system was treating the sort code as an integer and therefore dropping the leading zero, on the backend, before
Re: Just Let Me Write Digits
#85As someone who uses Programmer Dvorak I often encounter pages where the js uses `event.code` instead of correct `event.key`. Silent discards of the shift key also affect Programmer Dvorak as the numbers require it.
> Silent discards of the shift key also affect Programmer Dvorak as the numbers require it. That sounds... aggressively unergonomic. Are programmers not expected to frequently use numbers?
Re: Just Let Me Write Digits
#86Earlier quoted context omitted.
Hey, Monzo's Sort code, the first one to my knowledge to start with a zero. I spent six months unable to pay my council tax bill because their stupid system was treating the sort code as an integer and therefore dropping the leading zero, on the backend, before
Hey, Monzo's Sort code, the first one to my knowledge to start with a zero. I spent six months unable to pay my council tax bill because their stupid system was treating the sort code as an integer and therefore dropping the leading zero, on the backend, before validating that it had six digits. At one point they asked me if I'd be willing to sign up for a different bank.
I'm not really sure how these get allocated, but looking through some of my payment recipients, Revolut is also lowish in this block with 04-00-67, but also with leading zeros, Santander has 09-01-32 and 09-01-33, co-op has 08-92-99, Nationwide has 07-01-16, 07-08-06, 07-19-86.
That looks to me almost like potentially a bank can get a sort code block as large as just the first 2 digits, e.g. Nationwide which has been around for a long time and all seem to start 07-. But that doesn't explain then why Monzo and Revolut are both in the 04-00- block.
EDIT: it seems that sort codes are assigned by pay.uk [1] and Wikipedia has a surprising amount of information [2]. Most interestingly, originally banks were 2 digits long, and so each bank had their own 2 digit prefix, and the single digit banks had a zero appended, so e.g. NatWest was originally Westminster (6) and became 60-. There's a whole load of 04- sort codes for "Utility Banks" [3] and Monzo seems to have been the second such bank (BFC is before it, but 04-00-01 is unlisted, so maybe Monzo was the third).
[1] https://www.wearepay.uk/what-we-do/payment-systems/access-to...
Re: Just Let Me Write Digits
#87Earlier quoted context omitted.
What numpad :)?
The only possible answer to that is "get a real keyboard".
Re: Just Let Me Write Digits
#88Earlier quoted context omitted.
In Canada our postal codes are formatted: X#X #X# Where X is a letter and # is a digit. The amount of forms, even on government websites that can't do the unfathomably complicated logic of stripping the space if it doesn't want it is baffling. Regarding your credit card example, in my password manager where I paste my credit card number from, I added a no-spaces copy of the number for me to paste in because practical…
Not having the space looks and feels wrong, and I think the post office would agree. I have a feeling the trend toward space omission was due to fields formatted for US zips.
Fun fact: even the “send a free letter to santa” is compliant by making his postal code “H0H 0H0”
Re: Just Let Me Write Digits
#89I've always found it weird when a form admonishes you for writing spaces or dashes in e.g. a phone number or credit card number. Hey, implementation, you're a computer! Strip them out automatically on the backend if you don't like them!
Stupid, stupid, stupid software coders! Or possibly, a single coder somewhere long ago.