Skip to content

Instantly share code, notes, and snippets.

@frigiddesert
frigiddesert / .env.example
Last active September 3, 2025 23:53 — forked from fowkswe/upload.php
Replacement for sendy's upload.php that sends files to S3 rather than the server. Verified working 2025 with current s3 structure and sendy 6.1.2
# AWS S3 Configuration for Sendy Image Uploads
AWS_ACCESS_KEY_ID=your_aws_access_key_here
AWS_SECRET_ACCESS_KEY=your_aws_secret_key_here
S3_BUCKET=
S3_REGION=
@frigiddesert
frigiddesert / GithubClient.gs
Created January 10, 2025 21:45 — forked from pamelafox/GithubClient.gs
Google Apps Script for committing a file to Github Repo
/* A bare-bones GithubClient, just used for commits */
function GithubClient(owner, repo, username, passwordOrToken) {
this.owner = owner;
this.repo = repo;
this.username = username;
this.passwordOrToken = passwordOrToken;
}
/*