• 0 Posts
  • 15 Comments
Joined 5 years ago
cake
Cake day: May 15th, 2019

help-circle




  • I started a practice with my team on our wiki. We have a section named the Oamonomicon, since out system is named OAM. Any sort of weird one off request or problem gets documented there. What were the symptoms? What steps did we use to find the problem? Then if we start seeing a pattern of issues, we have a better idea of how to resolve them.





  • pingveno@lemmy.mltoProgrammer Humor@lemmy.mlSourcery
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 year ago

    I carved business logic out of the Ant build language in my previous (and first) job. It was a long and disgusting challenge driven by a technical lead who had made technical and process decisions that I find pretty questionable. He also wasn’t using a ticket tracker, then blamed it on me when my ADHD brain had trouble keeping track of verbally assigned tasks. Unfortunately I didn’t have the background or heft yet to tell him to get off my back until we had a proper ticket tracker.


  • pingveno@lemmy.mltoProgrammer Humor@lemmy.mlSourcery
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 year ago

    I used to code on the side for fun more. Now the side project is less alluring. Most of that is that I more or less enjoy my on-the-job software development, so I would rather spend my free time doing something else. Before was either college or a job that sucked the joy out of coding. Both left me with a hankering for exploration.





  • pip/easy_install

    Are you sure your knowledge of Python’s package management isn’t out of date? easy_install has been deprecated for years. There are a few mechanisms that the Python community now has for dependency management and installation. My favorite solution is Poetry, which like npm maintains a separate dependency (pyproject.toml) and lock (poetry.lock) file.