bike gears are numbered now? Is 1 high, or 8? I press the little button at the front to pop one gear up, and push that big thumb lever to push the chain back up the cassette, it's intuitive. If I need to check if the bike is in the right gear (not concerned exactly which one) I pedal a little. What product manager added _numbers_ to bike gears?
The Nightmare Bicycle
41–50 of 75 posts
Re: The Nightmare Bicycle
#42I like to consult the table that explains what every program really does for any washing machines that I use :) I want relatively short, more water than minimum, medium-gentle agitation, medium RPM spin dry. It has many names.
Same query, but for my dryer. Particularly the "Jeans" program. It is explicitly stated on every pair of jeans which I own that I should never attempt this. And yet, the program exists. Did they find a workaround? Or are they selling an empty promise?
Re: The Nightmare Bicycle
#43Interesting that the tech these days is going in the opposite direction. These trends to hide technical details (e.g. files on iPhone) can get really frustrating when it doesn't work. Almost a mockery.
Apple's hate for the concept of files has me up in arms ever since I realized this is why my parents are so confused anytime anything on their iPhone doesn't work.
Re: The Nightmare Bicycle
#44Re: The Nightmare Bicycle
#45bike gears are numbered now? Is 1 high, or 8? I press the little button at the front to pop one gear up, and push that big thumb lever to push the chain back up the cassette, it's intuitive. If I need to check if the bike is in the right gear (not concerned exactly which one) I pedal a little. What product manager added _numbers_ to bike gears?
Re: The Nightmare Bicycle
#46One-based indexing is an example of this. It's always argued as being familiar, as if people learning to program couldn't deal with adding 1.
Meanwhile off-by-one errors are ludicrously common… People can learn to deal with adding 1, but it’s still a cognitive encumbrance that loads us down and makes life harder. Not that I’m advocating for one-based indexing. At this point consistency is more important than whatever the easier solution is.
For example what is the index of pixel X,Y in an image buffer? X + Ystride right? Nope! It's X + (Y-1)stride.
What's the range of the Ith block of N elements? [in, in + n)? Nope! It's [(i-1)n+1, in].
I have to deal with that nonsense in Matlab all the time. Nightmare.
Re: The Nightmare Bicycle
#47Earlier quoted context omitted.
No, zero based indexing just is based on how arrays actually work. It has nothing to do with resources being scarce. You have an address for the beginning of the array and an offset. The first element has no offset so you use zero. Therefore you naturally end up with zero indexing.
Yeah but why wasn't that converted to human 1 based indexing at the machine code level or assembly in early machines? Maybe because they didn't want to "hide the bicycle gears"?
Re: The Nightmare Bicycle
#48One-based indexing is an example of this. It's always argued as being familiar, as if people learning to program couldn't deal with adding 1.
Meanwhile off-by-one errors are ludicrously common… People can learn to deal with adding 1, but it’s still a cognitive encumbrance that loads us down and makes life harder. Not that I’m advocating for one-based indexing. At this point consistency is more important than whatever the easier solution is.
Re: The Nightmare Bicycle
#49bike gears are numbered now? Is 1 high, or 8? I press the little button at the front to pop one gear up, and push that big thumb lever to push the chain back up the cassette, it's intuitive. If I need to check if the bike is in the right gear (not concerned exactly which one) I pedal a little. What product manager added _numbers_ to bike gears?
I have had bikes that did not have numbers, but at least had indicators giving you an approximation where you're at. I sometimes miss that on my road bike when I'm not sure if I should change the gear on the front or not. When you ride enough you get a feel for it, but again not everyone does that.
Re: The Nightmare Bicycle
#50bike gears are numbered now? Is 1 high, or 8? I press the little button at the front to pop one gear up, and push that big thumb lever to push the chain back up the cassette, it's intuitive. If I need to check if the bike is in the right gear (not concerned exactly which one) I pedal a little. What product manager added _numbers_ to bike gears?
Low numbers for low speeds, same as car gears.