• @[email protected]
    link
    fedilink
    2210 months ago

    I can spend 2 minutes scanning a page for a certain word every time I need to search for something.

    But I’m very happy somebody spent the time to code Ctrl+F.

    • @[email protected]
      link
      fedilink
      1110 months ago

      Ctrl+f code has to be some of the most efficient automation ever written. Time spent was probably about day and the time saved in work hours is probably in the trillions at this point.

  • @[email protected]
    link
    fedilink
    3110 months ago

    And if it’s a task that will need to be done thousands of times a month or even year, you should thank them for it.

  • @[email protected]
    link
    fedilink
    1310 months ago

    If you choose to do a task manually over and over instead of automating it, you might as well go dig ditches and hammer nails.

  • @[email protected]
    link
    fedilink
    1810 months ago

    Yes, but since it runs automatically every day and emails my team the results, I don’t have to remember to do it on my own. I don’t even have to be working that day. Taking “my ADHD memory” out of the system is always a win.

    • I'll be on [email protected]
      link
      fedilink
      English
      210 months ago

      Accessibility in general seems to be a huge benefit to automation a lot of people here including op are overlooking, which is a great shame but unfortunately not surprising…

  • Boozilla
    link
    fedilink
    English
    6410 months ago

    Automation also cuts down on mistakes.

    Or greatly amplifies them if you coded it wrong.

    • @[email protected]
      link
      fedilink
      1510 months ago
      Test 1:
      Locking process.
      Unexpected error encountered. Exiting immediately.
      
      Test 2:
      Waiting for process unlock to proceed. 
      
      Test 3:
      Waiting for process unlock to proceed. 
      
      Test ...
      
    • dch82OP
      link
      fedilink
      410 months ago

      Any shell is the duct tape of computers.

      The best engineers can do anything with duct tape.

  • @[email protected]
    link
    fedilink
    3610 months ago

    Yeah, and you build skills and reusable code base that’ll be useful for automating/ simplifying future tasks 😎

    Some years of this, you get to the point where you can solve damn near everything quickly and people think you’re some magical shit-wizard

    • @[email protected]
      link
      fedilink
      English
      610 months ago

      you get to the point where you can solve damn near everything quickly and people think you’re some magical shit-wizard

      This is basically my work life, and its almost a problem because I’m the first guy people call when they need something done.

      The perils of being competent. /s

      • @[email protected]
        link
        fedilink
        410 months ago

        Fucking competence. I wish I was bumbling fool with severe Dunning-Kruger more often than I care to admit.

  • AmbiguousProps
    link
    fedilink
    English
    8510 months ago

    Hey, if it ends up saving time and stress after those two days it was worthwhile.

      • @[email protected]
        link
        fedilink
        1010 months ago

        There’s something really satisfying about running a script that you know would save time. Even if the overall time is probably a negative.

        I wrote a script that would log me into our AWS EKS stuff. I typically would have to copy these 7 lines and look up which cluster version I’d need. One of my lines just pulls all the clusters and I use fzf to select the cluster I wanted. Takes away all the pain and makes me feel smug. Love it.

    • @[email protected]
      link
      fedilink
      English
      11
      edit-2
      10 months ago

      It’s a two minute task, but it happens randomly between the hours of “romantic dinner with my wife” and “ten minutes after the baby finally went down for a nap”.

  • @[email protected]
    link
    fedilink
    310 months ago

    Sometimes I’ve gone the other way. My manager complained once that I didn’t automate a task to get business metrics, and I responded to say that it currently takes me 1 minute to pull the metrics and paste them into a spreadsheet and print a PDF. Automating this would take at least several days, for a slide that changes constantly, and where the data often requires a deep dive into why the data is how it is. What’s the point in automating something that I already need to manually look at?

    They raised it with our PM, and their response was “fair, I wish I hadn’t bothered to automate things last year”.

    If the cost would give a higher benefit, sure, automate it so that it spits out a spreadsheet every week and do the manual stuff separately - but automating something “because you can” is junior level shit. My time is valuable, let me work on stuff that actually matters.

  • @[email protected]
    link
    fedilink
    1110 months ago

    Non automated tasks remain in the inbox for a week, so spending 2 days automating them means they’re finished earlier.

  • Destide
    link
    fedilink
    English
    1610 months ago

    A two minute task done with 0 errors and once it’s done that 1440 times it’s a net positive

  • @[email protected]
    link
    fedilink
    910 months ago

    One more advantage is that you now have the full process well documented (via code) and if you realize some change is needed you can repeat the task quickly.

    • @[email protected]
      link
      fedilink
      1510 months ago

      Doesn’t even have to be the case. A 2min task done every (work)day, takes up a bit over 7 hours/year. After 2½ years it will be a benefit to have automated it!

      • LeadersAtWork
        link
        fedilink
        610 months ago

        The benefit of automating is really measured in hair loss and extra time to grab another coffee.

      • @[email protected]
        link
        fedilink
        110 months ago

        Only if the requirements stay the same for 2.5 years. Otherwise there’s probably another week of time trying to update the initial work, then just throwing it away and making a new solution that’s theoretically easier to update.

        • Codex
          link
          fedilink
          310 months ago

          If changing requirements mean you need to update the script, then updating the script is part of your job. QED. I don’t see the problem with a little job security.

          • @[email protected]
            link
            fedilink
            English
            2
            edit-2
            10 months ago

            Yeah, just add it to the ‘amount of work you are putting’.

            When setting up git hooks for my project, I looked at other’s OSS hooks first. That shaved off significant hours off of my Research.