Skip to content

Instantly share code, notes, and snippets.

View theinhumaneme's full-sized avatar
🐒
monke

Kalyan Mudumby theinhumaneme

🐒
monke
View GitHub Profile
{ stdenv, lib, appimageTools, fetchurl}:
let
pname = "houdoku";
version = "2.16.0";
src = fetchurl {
url = "https://github.com/xgi/houdoku/releases/download/v${version}/Houdoku-${version}.AppImage";
hash = "sha256-P9f8t5K6c9hF/qe0Fqv5pAgB3rjya9FswV6sPF1ykOg=";
};
@theinhumaneme
theinhumaneme / mailgun-migrate.py
Last active May 19, 2025 08:30
mailgun template migration to different accounts
import json
import requests
import os
# Path to the JSON file containing the template data
TEMPLATES_FILE = "templates.json"
# Source and destination Mailgun API keys and domains
# The Script uses Basic Auth Read More -> https://documentation.mailgun.com/docs/mailgun/api-reference/authentication/
networks:
monitoring:
external: true
services:
alertmanager:
image: prom/alertmanager:v0.27.0
container_name: alertmanager
restart: unless-stopped
ports:
- "9093:9093"