13 comments

  • Grombobulous44 minutes ago
    I’ve always loved how TextEdit’s “don’t save” button is actually a red button that says “delete” for unsaved text files.<p>There’s no ambiguity there. The user is very well-informed that they’re about to quit and lose the document they were working on.
    • frollogaston3 minutes ago
      Well the same update (Lion?) ruined saving overall. Apple has insisted that apps should never have a &quot;save as.&quot; You can hold opt to do it anyway, but it silently overwrites the original too. Wtf bro.<p>You could make the case that the user could just do a different flow of duplicating the file first, but this is entirely different from how both Mac and Windows have worked for decades, and even the Mac apps by third parties don&#x27;t do it this way.
    • hbn16 minutes ago
      The example of Pages from the article has actually since been changed to do the same thing.<p>Red &quot;Delete&quot; on the far left, then on the far right a gray&#x2F;neutral &quot;Cancel&quot; button, and an orange (the app&#x27;s primary color) &quot;Save&quot;
  • superxpro1236 minutes ago
    We added a clause in our coding standard to make all booleans reference the positive frame of reference only. This happened after I got fed up with dealing with too many if !(!not_has_missing_field) operators. Just.... make everything positive: if (is_field_present)
    • dspillett10 minutes ago
      I try to keep to that, but sometimes the flag is turning on a negative feature, disabling that which is the default and will remain so for compatibility reasons.<p>Sometimes it is worth the effort of going through and changing the logic elsewhere to keep the boolean positive, sometimes that would be too much effort to retest at the time.<p>Another option I like, when I have a config object interpreting things so I&#x27;m reading doing `if (config.IsWhateverThatThingIsEnabled)` then I can just have paired properties to pick from when I want to check IsEnabled or IsDisabled.<p>I&#x27;ve come across code where there is an overide for an option to disable something and the naming plus the logical not really make you think about what is happening…<p><pre><code> if (!OverrideDisabledOptionToBlockAction) {}</code></pre>
    • delichon26 minutes ago
      Agree. And I&#x27;ve been flagging double negatives in PRs for years (e.g. `not undead`). It makes me feel like the Ned Flanders of programmers.<p>But RuboCop detects `!!something`, and I actually like that idiom, because I prefer to convert into true boolean types before passing them to a method, since it makes the intention clear in the code.
  • thefourthchime59 minutes ago
    One of the most influential books I ever read was About Face by Alan Cooper. What he said about this bad modal dialogue is that you should simply not ask the user, and let them undo later.<p>This was heresy at the time, but turned out to be the native user flow for iOS later on. And now it&#x27;s common in web apps.<p><a href="https:&#x2F;&#x2F;www.amazon.com&#x2F;dp&#x2F;1118766571?lv=shuf&amp;channelId=500&amp;plpRedirect=mhFallback" rel="nofollow">https:&#x2F;&#x2F;www.amazon.com&#x2F;dp&#x2F;1118766571?lv=shuf&amp;channelId=500&amp;p...</a>
    • delichon6 minutes ago
      I once heard Cooper talk at a conference. He said that he was indeed the father of Visual Basic, in the sense that he had a little participation at the inception but most of the work was done by someone else. I think you can draw a line between that kind of self deprecation and the ego level required to look through someone else&#x27;s eyes and design good UI.
    • bluGill51 minutes ago
      Remember in 1990 (the pictures are from around then) there wasn&#x27;t unlimited fast disk space. There was a good chance you were saving to a floppy disk which not only was slow, but might not be in the drive all the time. At least in 1990 you could assume a hard drive - but you couldn&#x27;t safely assume there was enough free space on the drive to save anything, since 40mb drives filled fast.<p>35 years latter we live in a different world where you can assume an unlimited fast data connection to a data center. Saving and allowing undo is possible today.
    • TheJoeMan53 minutes ago
      In the world of 2TB SSD’s, it does seem silly to risk inadvertently deleting an important ~2kb word document.
      • SoftTalker28 minutes ago
        It took me quite a while to get used to the &quot;save continuously, keep revision history&quot; of Google Docs, but in that context I&#x27;ve gotten used to it. For something like code, or image edits, etc. I still prefer explicit &quot;Save&quot; or &quot;Save As...&quot; operations that I control, because quite often I get myself boxed into something that I just want to throw away and start over.
      • giantrobot6 minutes ago
        Well we&#x27;re rapidly approaching a world going back to 256GB (or smaller) SSDs because VC money is being used to buy up all semiconductor and HDD output by AI hyperscalers. Everything will end up cloud storage, you&#x27;ll own nothing and like it.<p>Also the minimum Word document is far larger than 2KB. IIRC it&#x27;s about 10x that size for an empty Word document (docx).
  • f1shy13 minutes ago
    This is more or less the reason why bool is not recommended as a type, instead use a enums which add semantic value
  • chuckadams56 minutes ago
    My favorite is apps that offer a way to cancel a long-running operation, where clicking &quot;cancel&quot; on the confirm dialog cancels the cancellation.
    • KineticLensman10 minutes ago
      Sydney Padua&#x27;s awesome, mostly true, steampunk graphic novel &quot;The Thrilling Adventures of Lovelace and Babbage&quot; jokes about the error messages that might have produced by the difference engine. One example occurs when a character tries to stop a sequence that may or may not destroy a precious manuscript:<p><i>Annulation lever activated!<p>Do you wish to continue?<p>Engage STOP lever to continue. Engage CONTINUE lever to stop.<p>Time remaining 5..4..3...</i>
  • SubiculumCode30 minutes ago
    1. LibreOffice&#x27;s recover files dialogue series of steps is frustrating like this.<p>2. Still better than &quot;Yes, Ask me Later&quot; dialogues that are so insulting to users.
    • dspillett5 minutes ago
      Q: Do you think Microsoft¹ understands and respects the idea of consent? A: Yes &#x2F; Ask Again Later<p>--------<p>[1] Or the BBC, or whoever, a great many are guilty of this sort of thing.
    • delichon12 minutes ago
      I agree that such forced choices are insulting. It&#x27;s about the same as also including a disabled &quot;No&quot; button with hover text that reads &quot;disabled because fuck you&quot;.
  • tdeck39 minutes ago
    A program I occasionally use has a &quot;Don&#x27;t close&quot; button in that dialog. Of course I&#x27;m more used to &quot;Don&#x27;t save&quot;, so I often hit it and then am surprised when the program stays open.
  • ccvannorman1 hour ago
    I thought this was going to be about a marketing success example for Aspirin! ... Although, I guess in a roundabout way it was.
  • teeray1 hour ago
    (A)bort? (R)etry? (F)ail?
    • Dwedit1 hour ago
      Rip John C. Dvorak, writer of the Abort&#x2F;Retry&#x2F;Fail column from PC Magazine.<p>On a different note, never underestimate the value of a modal dialog that gives you a chance to retry an IO operation that failed. Loose USB cables and network shares over Wifi can make those happen a lot more often.
      • roryirvine45 minutes ago
        And it came from the days of floppy disks, so we often needed the chance to put the correct disk back in the right drive!
        • doubled11236 minutes ago
          When the game comes on 14 floppy disks, sometimes you forget how to count in the excitement.
          • collingreen17 minutes ago
            Keeping one of the disks from the pile was peak bff&#x2F;sibling rivalry antics. It&#x27;s like keeping out one of the pieces of the puzzle so nobody can finish it but you.
    • adiabatichottub30 minutes ago
      As I remember, standard operating procedure was to retry 4 or 5 times, then turn off the computer and walk away in frustration.
  • tobadzistsini39 minutes ago
    Not understanding the aspirin reference.
    • dragonwriter28 minutes ago
      Aspirin had (though this is increasingly dated) unique cultural currency as a headache medicine for quite a while after it stopped being the overwhelmingly dominant first-line OTC remedy.
    • CPLX35 minutes ago
      Pretty sure &quot;causes Aspirin sales to soar&quot; is an attempt at cleverly saying &quot;gives people headaches&quot;
      • cr3ative24 minutes ago
        Thanks, I also found this unclear.
  • sb05756 minutes ago
    An active &quot;yes&#x2F;no&#x2F;cancel&quot; prompt is a paragon of usability compared to the modern standard of constant yes, except for when it fails with a silent no.
    • SoftTalker35 minutes ago
      &quot;Maybe later...&quot;
      • WalterGR19 minutes ago
        “Maybe later” and variants annoyed me to no end until I realized that the implication is that you’re not making an indelible choice. As with anything, it can be overused, but I personally enjoy not having to think about whether I can change my mind later.
  • flobosg1 hour ago
    (2007)
    • SoftTalker52 minutes ago
      For a site about usability, I was going to gripe about the tiny font, low contrast, and unresponsive layout until I saw that. It does look more suitable at 1024x768.
    • shaftoe4441 hour ago
      Good year
      • baxtr1 hour ago
        Every year was better before 2020!
  • 1970-01-0127 minutes ago
    Great title. Great topic. The tiny details are all here, including the 4th option (X), the Abort&#x2F;Retry&#x2F;Fail link, and they even have RSS! Subscribed.