Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env bash
hash docker &>/dev/null;
if [ $? -eq 0 ]; then
alias d="docker"
function docker-rm-untagged-imgs() {
[[ $1 == "force" ]] && OPTS="--force" || OPTS="";
docker images | grep "^<none>" | awk '{print "docker rmi '$OPTS' "$3}' | sh
}
import unittest
from unittest.mock import patch, call
class MyQueue(object):
def send(self, message):
pass
from functools import wraps
def my_decorator(f):
@wraps(f)
def wrapper(*args, **kwds):
print('Calling decorated function')
return f(*args, **kwds)
return wrapper
import queue
from threading import Thread
class Worker(Thread):
def __init__(self, q, other_arg, *args, **kwargs):
self.q = q
self.other_arg = other_arg
super().__init__(*args, **kwargs)
import time
from queue import Queue
from threading import Thread
def threaded(f, daemon=False):
def wrapped_f(q, *args, **kwargs):
"""this function calls the decorated function and puts the
result in a queue"""
@meganlkm
meganlkm / thread-queue-1.py
Created May 19, 2020 18:33
Thread/Queue Example
import random
import time
from queue import Queue
from threading import Thread
WORKERS = 2
class Worker(Thread):
#!/usr/local/bin/bash
if [ -f /etc/os-release ]; then
# freedesktop.org and systemd
. /etc/os-release
OS=$NAME
VER=$VERSION_ID
elif type lsb_release >/dev/null 2>&1; then
# linuxbase.org
OS=$(lsb_release -si)
@meganlkm
meganlkm / app.py
Created May 22, 2018 15:09
download a rendered template as a StringIO object in a Flask app
from StringIO import StringIO
from flask import Flask, render_template, send_file
app = Flask(__name__)
@app.route('/bootstrap')
def bootstrap():
str_io = StringIO()
@meganlkm
meganlkm / allsalt-dev-setup.sh
Created January 21, 2018 21:46
setup a salt-master and some minions for salt development and testing
#!/usr/bin/env bash
# clone the minions branch of the allsalt repo
git clone -b minions git@github.com:intuitivetechnologygroup/allsalt.git
# build the containers
cd allsalt
make build-debian
make build-centos-minion
make build-ubuntu-minion
"""
example sls:
merge_reactor_config:
module.run:
- name: conf_manip.merge
- origin: /etc/salt/master.d/reactor.conf
- source: /srv/salt/mystate/files/reactor.conf
"""
import filecmp