Many of us write opensource code in a void: nobody ever looks at it, uses it nor reviews it. We are the only users and authors.

In order to improve, where can we get our code reviewed? I don’t mean professionally, just from like-minded individuals.

  • stifle867@programming.dev
    link
    fedilink
    arrow-up
    0
    ·
    8 months ago

    This is not an answer to your question but it’s tangentially related.

    Someone I greatly respected ran an open-source project with the policy of merge everything. Completely flip this idea of carefully review, debate and revise every PR. His theory was that it helps to build an open community, and if something breaks someone else will revert that commit. He says that the main branch was almost always stable, a massive improvement to how it was run previously. He passed several years ago and for some reason this reminded me of him.

    I guess what I’m trying to say is if you get something out there that people find useful, the code will be looked at. It doesn’t help you if you’re looking for someone to collaborate sorry.

    • varsock@programming.dev
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      8 months ago

      There is a very effective approach (34:00), that big companies like cloudflare use, to ship a product in a fast and quality way. It bears parallels to what you are describing. In essence engineers should not get hung up in the details to trying to solve everything.

      1. Just build a proof of concept
      2. Discard the prototype no matter what and start from scratch keeping the initial feedback in mind
      3. Build something internally that you yourself will use
      4. Only once something is good enough and is used internally, then release it to beta.

      So that tedious process in trying to flush out all the details before seeing a product (or open source effort) working end to end, might be premature before having the full picture.