• 0 Posts
  • 27 Comments
Joined 11 months ago
cake
Cake day: August 8th, 2024

help-circle




  • When I was a junior, I was given an entire front-end app to develop entirely on my own with very little guidance from the team-lead. It was some ridiculously bad code, especially since it was my first time working with React with basically zero preparation.

    Few months later, project is delivered, I get some time to read docs and guides before starting the next one. Since I was learning theory on what I would practise earlier, I was digesting it extremely fast and it helped me patch up all the holes in my thinking and learn how things should actually be done.

    Soon after the next project came and it was definitely much more of a smooth ride. The code was alright and even the early decisions I made were pretty sustainable much later. It was another project I was working all alone, then some people joined in and I was teaching them, but I would always guide them too much and they weren’t growing very fast.

    Even after a few months, these people were not ready or willing to work independently, which was my personal failure as a mentor. That’s what really assured me that people should be given a lot of space to properly grow.

    My whole career is me working on increasingly larger projects with decreasing assistance. And it’s extremely effective. 4 years in the field and I just became a software architect.











  • ddplf@szmer.infoBanned from communitytoProgrammer Humor@lemmy.mlJust a quick meeting
    link
    fedilink
    arrow-up
    5
    ·
    7 months ago

    Been there, done that. Everyday would start with a 2 hour session of meetings. Daily for 30mins and then 1.5h of refinement. Day by day, for 2 years of me being there.

    It, without an ounce of irony, leaves a fucking scar on you and makes you despise having meeting for the rest of your life.





  • ddplf@szmer.infoBanned from communitytoProgrammer Humor@lemmy.mlTo DRY or not to DRY
    link
    fedilink
    arrow-up
    6
    ·
    8 months ago

    To me, there are two classifications of DRY - one I find harmful, the other very useful.

    First one resembles mathematical extractions, essentially you never allow a single chunk of code to be written twice and you create massive amounts of global util junk. This also creates some bad tight coupling.

    The other is more logical, where you only extract logic in places you want to always change together. Simple and effective.