Skip to content

Instantly share code, notes, and snippets.

version: '2'
services:
cardigann:
image: "linuxserver/cardigann"
restart: always
environment:
- PUID=99
- PGID=100
volumes:
- /mnt/user/appdata/mediaserver/cardigann:/config
version: '2'
services:
alertmanager:
image: "prom/alertmanager"
restart: always
command: --config.file=/alertmanager/config/alertmanager.yml --storage.path=/alertmanager/data
volumes:
- /mnt/user/appdata/monitoring/alertmanager:/alertmanager/
alertmanager-bot:
image: "metalmatze/alertmanager-bot:0.3.1"
import datetime
import io
import logging
import os
import pathlib
import math
from telethon.client.users import UserMethods
from telethon import utils, helpers, errors
from telethon.tl import TLObject, types, functions

Keybase proof

I hereby claim:

  • I am zackpollard on github.
  • I am zackpollard (https://keybase.io/zackpollard) on keybase.
  • I have a public key ASCFALASJOLc_g6XVKsrNueDE8UNVUjmjEfs-GdFrS3UhAo

To claim this, I am signing this object:

@zackpollard
zackpollard / Assignment A4
Created October 20, 2014 14:44
Programming for the WWW - Assignment A4
var numArray = [2,5,7,21,2,3,5,2-1,2,4,-21,-31,-2,-52,-5,-2,31];
var positiveArray = [];
/**
*
* The following code removes any negative numbers from an array (testArray)
* when copying it to a new array (newArray).
*
**/