Add >> /var/log/myjob.log 2>&1 to capture everything
Essential commands:
crontab -l โ list all jobs
crontab -r โ remove all jobs
crontab -u user โ edit another user's crontab
grep CRON /var/log/syslog โ check if jobs ran
Save this thread. What do you use cron for? ๐
Cron jobs look intimidating until you understand the pattern.
Here's the complete practical setup in one thread ๐งต
The format is always 5 fields:
minute hour day month weekday
That's it. Every cron expression is just these five numbers (or symbols) separated by spaces.
Save and exit โ it runs automatically
No restart needed. It's live immediately.
Two mistakes beginners make:
Using relative paths (python3) โ cron doesn't load your shell PATH. Always use absolute paths (/usr/bin/python3)
Not redirecting output โ silent failures are invisible
The 4 characters that do all the work:
* โ every value ("every minute", "every hour")
, โ list (1,15 = 1st and 15th)
- โ range (9-17 = 9am to 5pm)
/ โ step (*/15 = every 15 units)
The expressions you'll actually use:
* * * * * โ every minute
*/5 * * * * โ every 5 minutes
Every line of code is a liability. It has to be read, tested, debugged, and maintained forever.
Delete more. Ship less. Build better.
Whatโs the best refactor youโve ever done? ๐
#SoftwareEngineering#CodeQuality#DevLife#CleanCode#CodeWithDee 100DaysOfCode Programming
Happy New Week โจ
Another week to try againโฆ but hopefully with less stress this time.
No more scattered tools.
No more confusion.
Just simpler selling.
Oja is coming.
Join the waitlist.
Make selling easier with Oja.
the complete devops engineer skills map
9 domains. here's everything that's actually in the job:
version control, ci/cd, container, cloud, iac, observability, security, scripting, practice.
which domain are you deepening right now?
07 ยท Feedback loop โ user data and errors โ new requirements
Skip any one of these and the system leaks.
AI does not replace the architecture. It operates within it.
Save this. Share it with your team.
Which part of this is missing in your workflow?
#AIEngineering#Software
Hereโs the map I wish I had starting out.
Most people think AI-assisted development looks like:
Developer โ AI tool โ Done โ
The real architecture has seven stages, and AI sits inside the pipeline, not on top of it: