What are some significant differences to expect when switching to an alternative, and can that affect gaming compatibility and performance?

  • KeithD@lemmy.nz
    link
    fedilink
    arrow-up
    0
    ·
    17 days ago

    For adding a quick thing to make something happen at a specific time, I can add a cron job in a couple of minutes. To add a timer takes creating a couple of files with syntax that took me a while to look up last time I needed it, and running a command. Then debugging. Sure, the timer has benefits, but cron jobs are still simpler.

    On the bright side, there’s actually a “crontab -t” command that apparently can be used to generate timer files from a crontab line, which I hadn’t known of before today.

    • mholiv@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      17 days ago

      That’s because you know cron. If you knew timers equally as well they would be easier. And they let you handle the edge cases (retry, randomness, tracking, logs etc) without the need for a custom script.

      Once you factor in the production edge cases I think timers are clearly easier. You get all of it for free.