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 / countdown_time.py
Created November 5, 2010 17:37
countdown time
#!/usr/bin/env python
import datetime
import time
end = datetime.datetime(2010,11,6,11,30)
while 1:
time.sleep(0.8)
print '\r\n' * 30
@toomore
toomore / iiqy
Created September 3, 2010 14:20
抓取最近上市或是上櫃公司資料
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 抓取最近上市或是上櫃公司資料
# By Toomore
class iiqy(object):
def __init__(self, t, page):
'''
t:
@toomore
toomore / sm.py
Created November 7, 2009 13:40
screen message
#!/usr/bin/python
# encoding:utf8
# vlshow.py
# Copyright (C) 2006 Joachim Breitner
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
@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 / 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"
)