Skip to content

Instantly share code, notes, and snippets.

View zhangalex's full-sized avatar

Alex Zhang zhangalex

  • China
View GitHub Profile
@mrichman
mrichman / main.go
Last active December 28, 2021 08:20
AWS Lambda function in Go to resize an image uploaded to S3. Uses https://github.com/apex/apex
package main
import (
"bytes"
"image/jpeg"
"log"
"path"
"strings"
apex "github.com/apex/go-apex"