• 0 Posts
  • 15 Comments
Joined 2 years ago
cake
Cake day: July 2nd, 2023

help-circle



  • Nah. It doesn’t say not to plan. It says to prefer responding to change over planning. Which means both happen but responding to change is more crucial. Or put another way don’t let your plan get in the way of responding to change.

    I’m sure you were being sarcastic, but I get kind of tired of the Agile strawman and people shitting on it. It’s not a complex philosophy yet people extrapolate so much (too much) and then get annoyed when their assumptions don’t pan out well. even performing sprints is an extrapolation, so this meme gets it wrong too.


  • Sorry you’re getting downvoted… I read the article as well and yeah- You’re totally right. This is BS rage bait that isn’t even warranted against Wells Fargo.

    I have 2 coworkers who do the same thing and it is pretty damn irritating cuz they’re on my team, and I legitimately cannot rely on them on a day to day basis to be around to do their job. So I understand the frustration. This shit does ruin WFH for everyone else, directly or indirectly.







  • I absolutely love using git on the command line. I’m comfortable with the commands, and there isn’t much need for clicking since a lot of it is just typing commands, viewing files/diffs, repeat until files are staged, committed, and pushed up. Who needs a GUI for that?

    OTOH, I really like postman for constructing and templating network requests. There are a few helpful panes and forms that just fit better on one screen that I can interact with.

    To say working with GUIs makes someone a worse engineer sounds very short sighted to me. IMO the best engineers are the ones who use tools that maximize their efficiency.



  • I believe index for the classical need to iterate through an array. E.g.

    for (i = 0; I <= arr.length; i++) { var thing = arr[i] … }

    So to me it stands for “index” for array lookup.

    Before map and iterators were implemented in a lot of languages, this was the defacto way to iterate a list. At least this is how I learned it in java/c back in the day. Nowadays I think most OOP languages including java have implemented the “for … in …” Syntax or similar which deprecates this convention.


  • I literally would not work for a company if they made me do story points.

    We do have a scope rule which is intentionally ambiguous, but the idea is a ticket ought not take more than 3 days, and some can be quicker. We expect the average time to meet our velocity and prioritize accordingly. If an effort seems like it will take longer we try to divide it into smaller tickets.

    There may be like 5 tickets a year where this doesn’t hold true and we are ok with it. Nothing to be religious about.

    The other issue is the amount of points it is totally depends on who does the work! It’s a garbage system to estimate work. Makes people think they have some sort of idea that is more misleading and harmful than just saying “I don’t know exactly but you can expect it to get done promptly because we’ve taken proper steps to analyze and break down the work to be bite sized and delivered consistently.”