• 0 Posts
  • 28 Comments
Joined 1 year ago
cake
Cake day: July 7th, 2023

help-circle


  • This is so common it has a name, it’s called banner blindness.

    One of the important aspects of interface design is supposed to be not showing alerts for everything, so that when they pop up you feel compelled to pay attention.

    Not long ago a nurse killed an older woman by giving her the wrong medicine; she took accountability but called out that the software they use provides so many alerts that (probably unofficial) policy was to just click through them to get to treating the patient. One of those alerts was a callout that the wrong dosage was selected and she zoomed right by it out of habit.











  • Rails is great for starting an app, you can get something to a functional MVP state in a ridiculously small amount of time. We used to do rapid prototyping where we could be shipping it to the client in like 2-4 weeks. I haven’t found anything that comes close to this elsewhere.

    But you’re right that the big trade off is jumping off is effectively impossible, because Rails is your app. Most criticism that I see (and feel is valid) is that unless you’re willing to do a whole rewrite you will be on Rails forever. I think this is a more reasonable trade off than I see represented online; “long terms Rails is a nightmare” comes up a lot and I don’t think it’s that bad.

    I personally like that we’re seeing options for both strategies here popping up. More options is good for us as devs.


  • I remember learning about how to use this back in the day and what a game changer it was for my workflow.

    Today I like to do all of the commits as I’m working. Maybe dozens or more as I chug along, marking off waypoints rather than logging actual changes. When I’m done a quick interactive rebase cleans up the history to meaningful commits quite nicely.

    The fun part is that I will work with people sometimes who both swear that “rewriting history” is evil and should never be done, but also tell me how useful my commit logs are and want to know how I take such good notes as I go.





  • Nate Cox@programming.devtoRust@programming.devRust without crates.io
    link
    fedilink
    English
    arrow-up
    25
    arrow-down
    1
    ·
    1 year ago

    I don’t understand the complaint here. It sounds like the complaint is that there is a single source for libraries… but the solution provided is “use apt-get”.

    Today, I refuse to use any language that doesn’t ship with a dependency resolver like crates or rubygems. Python taught me that I really want dependencies to be a first class citizen.