Skip to content

Instantly share code, notes, and snippets.

View alexisklisch's full-sized avatar
🐷
Focusing

Alexis Fleitas Klisch alexisklisch

🐷
Focusing
View GitHub Profile
@alexisklisch
alexisklisch / devcontainers-on-podman.md
Last active March 4, 2026 02:10
devContainer for Podman
  • .devcontainer/Dockerfile
FROM docker.io/oven/bun:latest

# Add pkgs needed because is not prepared for containered
RUN apt-get update && apt-get install -y \
    curl \
    git \
    procps \
 ca-certificates \
@alexisklisch
alexisklisch / app_s3_test.js
Created September 15, 2024 21:19 — forked from akaz00/app_s3_test.js
s3 upload, download with express (using "@aws-sdk/client-s3")
// s3 버킷 생성은 콘솔에서 진행
// (이름이 전역적으로 고유해야 함)
// IAM 사용자 만들고 엑세스 키 생성하여 연결 (AmazonS3FullAccess 권한 줘야 함)
// https://artiiicy.tistory.com/16
const { S3Client, AbortMultipartUploadCommand, PutObjectCommand, GetObjectCommand } = require("@aws-sdk/client-s3");
const fs = require('fs')
const path = require('path');
require('dotenv').config()
const bucketName = "yubs87-testbucket"
const express = require('express')
@alexisklisch
alexisklisch / outbound-email-with-cloudflare.md
Created October 23, 2023 17:05 — forked from irazasyed/outbound-email-with-cloudflare.md
Using Gmail SMTP with Cloudflare Email Routing: A Step-by-Step Guide

Using Gmail SMTP with Cloudflare Email Routing: Step-by-Step Guide

Learn how to send emails through Gmail SMTP with Cloudflare Email Routing in this comprehensive guide.

Step 1: Enable 2-Factor Authentication

To proceed with this method, ensure that you have enabled two-factor authentication for your Google account. If you haven't done so already, you can follow the link to set it up → Enable 2FA in your Google account.

Step 2: Create an App Password for Mail