9 votes

Topic deleted by author

3 comments

  1. [2]
    Comment deleted by author
    Link
    1. Eric_the_Cerise
      Link Parent
      I'm fond of pseudocoding a project in such a way that the pseudocode becomes the documentation as the actual code is written. Agree on Rails. It is a great system, as long as you accept that it's...

      I'm fond of pseudocoding a project in such a way that the pseudocode becomes the documentation as the actual code is written.

      Agree on Rails. It is a great system, as long as you accept that it's way of doing things is the "right" way.

  2. Bamans
    Link
    My recommendation is being wary. If you run into a issue where the web frameworks are preventing you from doing something, I’d be very skeptical of the advice you find online to get around it. For...

    My recommendation is being wary. If you run into a issue where the web frameworks are preventing you from doing something, I’d be very skeptical of the advice you find online to get around it. For example, issues with things like csrf where many of the top answers are to simply turn it off. Many of the defaults in thing like RoR are set the way they are for a reason, and it’s better figure out why, rather than blindly turning them off.

    4 votes
  3. balooga
    Link
    Best practices can be a little subjective but if you're looking for some expert-crafted, opinionated recommendations, a good style guide can be helpful. I've found the ones by Airbnb to be...

    Best practices can be a little subjective but if you're looking for some expert-crafted, opinionated recommendations, a good style guide can be helpful. I've found the ones by Airbnb to be sensible and well-written. Here is a link to the one for Ruby / Rails. Pair that with what others have noted, that Rails has a "right" way of doing things, for best results.

    2 votes