Skip to content

Instantly share code, notes, and snippets.

View enoatu's full-sized avatar

enoatu enoatu

  • Tokyo
View GitHub Profile
@enoatu
enoatu / format_create_table.go
Last active December 28, 2023 21:03
format MySQL CREATE TABLE
package main
import (
"bufio"
"fmt"
"os"
"strings"
)
type SqlComment struct {
@enoatu
enoatu / mac_mov_to_gif.sh
Created November 21, 2023 06:15
macの動画キャプチャを圧縮アニメーションGIFにする際によく使うやつ
ffmpeg -i capture.mov -r 24 -s 1280x720 capture.gif