Do 10 pushups, 10 situps and 10 air squats EMOM for 20 minutes.
Do 10 pushups, 10 situps and 10 air squats EMOM for 20 minutes.
Do the following circuit for 2-3 mins each move for 5-10 seconds. Then rest 1 min, do 5-10 rounds.
Do 5-10 rounds.
Repeat each move for 1 minute: 10 secs work, 10 secs rest.
Do 6 rounds for a 30 minutes workout.
For 10 mins do the following circuits:
I tried to remove a bucket from an S3 compatible object store. The trouble is that it wasn’t empty, there were lots of objects inside. I tried minio’s client:
mc rm --recursive --dangerous --force exo/somebucket
But it just seemed to stall after removing ~100 objects. The solution is to run it using timeout in a loop, eg.
while true; do timeout 10 mc rm --recursive --dangerous --force exo/somebucket; done