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 June 16, 2025 10:47
mailgun template migration to different accounts
#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-3.0-or-later
#
# Copyright (C) 2024 Kalyan Mudumby <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
networks:
monitoring:
external: true
services:
alertmanager:
image: prom/alertmanager:v0.27.0
container_name: alertmanager
restart: unless-stopped
ports:
- "9093:9093"