Skip to content

Instantly share code, notes, and snippets.

View ymhcanada's full-sized avatar

Youth Mental Health Canada ymhcanada

View GitHub Profile
@ymhcanada
ymhcanada / email-inline-single.py
Created January 8, 2026 08:28
For Canva Emails: Inline local images into a single HTML file for email delivery.
#!/usr/bin/env python3
"""
Inline local images into a single HTML file for email delivery.
- Input: ./email.html
- Images: ./images/<...>
- Output: ./email-single.html
Rewrites:
- <img src="images/...">
@ymhcanada
ymhcanada / chatgpt-forced-project.js
Created September 22, 2025 03:07
Automatically redirect to specified ChatGPT project instead of new chat
// ==UserScript==
// @name ChatGPT Auto Project Redirect
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Automatically redirect to specified ChatGPT project instead of new chat
// @author You
// @match https://chatgpt.com/*
// @grant none
// @run-at document-start
// ==/UserScript==