Replacing crontab with elixir

There seems to be some confusion here. I don’t replace cronjobs with mix scripts. What I tend to do, when it’s possible, is run periodical jobs straight from the system itself. I.e. I spawn a process which will periodically execute a job. This is not always possible (or simple), but when it is (and IME it often is), then you can consolidate more of the implementation of the system into a single place.