• 0 Posts
  • 2 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle
  • Its not a tech issue, its a finance issue.

    The tech industry has always been highly speculative. What we saw in the 2010s was only made possible through venture capital and high digital advertising budgets.

    Now that there’s uncertainty and investments are expensive due to high interest rates, VC and advertisers are pulling back. As a result, we’re seeing a bunch of business models that have never been viable on their own have to try and support themselves for the first time.


  • I’m a senior at a large tech company - I push all the teams I work with to automate the review process as much as possible. At minimum, teams must have a CI hook on their pull request process that runs a remote dryrun build of the changed packages. The dryrun makes sure the packages compile, pass unit tests and meet linter rules. A failed build blocks the pull request from being merged.

    I try to encourage developers to turn the outcome of every code style discussion into a lint rule that fails the dryrun build when its violated. It saves time by automating something devs were doing manually anyway (reading every line of code to look for their code style pet peeves) and it also makes the dialogue healthier - devs can talk about the team standards and whether the code meets them, instead of making subjective comments about one another’s code style.