Skip to content

Instantly share code, notes, and snippets.

@aloysb
aloysb / index.tsx
Created October 25, 2024 00:36
AWS and Mailpit mailing for prod and dev envs.
import { render } from "@react-email/components";
import nodemailer from "nodemailer";
import { EmailVerificationOTP } from "./templates/EmailVerificationOTP";
import aws from "@aws-sdk/client-ses";
import { defaultProvider } from "@aws-sdk/credential-provider-node";
import Mail from "nodemailer/lib/mailer";
// AWS
const provider = defaultProvider({
profile: "profile",
@aloysb
aloysb / main.go
Created October 24, 2024 04:38
Basic rate limiter in Go
package main
import (
"log"
"net/http"
"net/http/httputil"
"net/url"
"sync"
"time"
)
@aloysb
aloysb / AuthStack.ts
Last active December 13, 2023 08:28
SST AuthStack with NextJS
// AuthStack.ts
import { Api, Auth, Stack } from "sst/constructs";
export function AuthStack(stack: Stack) {
const auth = new Auth(stack, "auth", {
authenticator: {
handler: "functions/auth.handler",
},
});