Skip to content

Instantly share code, notes, and snippets.

View thuanga0024's full-sized avatar

Khắc Thuận thuanga0024

  • Hồ Chí Minh , Việt Nam
View GitHub Profile
@jackcarter
jackcarter / slack_delete.py
Last active November 29, 2023 07:03
Delete Slack files older than 30 days. Rewrite of https://gist.github.com/jamescmartinez/909401b19c0f779fc9c1
import requests
import time
import json
token = ''
#Delete files older than this:
ts_to = int(time.time()) - 30 * 24 * 60 * 60
def list_files():
@buckett
buckett / clean-docker.sh
Created May 19, 2015 11:02
Cleans out old docker images and containers.
#!/bin/bash
# Clean all exited containers
docker ps -qaf status=exited | xargs docker rm
# Remove all unused images
docker images -f dangling=true -q | xargs docker rmi