Skip to content

Instantly share code, notes, and snippets.

View toomore's full-sized avatar
:octocat:
coding …

Toomore Chiang toomore

:octocat:
coding …
View GitHub Profile
@toomore
toomore / main.go
Last active August 29, 2015 14:14
goamz ses first try.
package main
import (
"fmt"
"net/mail"
"github.com/goamz/goamz/aws"
"github.com/goamz/goamz/exp/ses"
//"github.com/kr/pretty"
)
@toomore
toomore / find_nginx_conf.sh
Created February 11, 2015 02:20
gdb from the process's memory mappings
# Set pid of nginx master process here
pid=4629
# generate gdb commands from the process's memory mappings using awk
cat /proc/$pid/maps | awk '$6 !~ "^/" {split ($1,addrs,"-"); print "dump memory mem_" addrs[1] " 0x" addrs[1] " 0x" addrs[2] ;}END{print "quit"}' > gdb-commands
# use gdb with the -x option to dump these memory regions to mem_* files
gdb -p $pid -x gdb-commands
# look for some (any) nginx.conf text
@toomore
toomore / keybase.md
Created July 11, 2016 19:23
keybase.md

Keybase proof

I hereby claim:

  • I am toomore on github.
  • I am toomore (https://keybase.io/toomore) on keybase.
  • I have a public key whose fingerprint is 422B 779C D894 982B C41E 85EE 3624 CAD7 8AFC 3169

To claim this, I am signing this object:

@toomore
toomore / render_weeks.py
Created February 13, 2021 14:22
render the weeks of year
import csv
import arrow
def range_week(year):
fmt = 'YYYY-MM-DD'
span = arrow.Arrow.span_range('week', arrow.get(
'%s-01-01' % year), arrow.get('%s-12-31' % year))
with open('./weeks.csv', 'w+') as files:
@toomore
toomore / weeks_2021.csv
Created February 13, 2021 14:24
all weeks of 2021
week start end
W53 2020-12-28 2021-01-03
W01 2021-01-04 2021-01-10
W02 2021-01-11 2021-01-17
W03 2021-01-18 2021-01-24
W04 2021-01-25 2021-01-31
W05 2021-02-01 2021-02-07
W06 2021-02-08 2021-02-14
W07 2021-02-15 2021-02-21
W08 2021-02-22 2021-02-28