Skip to content

Instantly share code, notes, and snippets.

View wowh's full-sized avatar

hulk wo wowh

View GitHub Profile
# Amazon Start
52.119.164.121 www.amazon.co.jp
52.119.164.121 amazon.co.jp
54.239.96.187 aftlite-portal-nrt.amazon.co.jp
52.94.210.248 alexa.amazon.co.jp
54.240.251.149 api.amazon.co.jp
52.119.168.241 arap.amazon.co.jp
54.240.248.126 www.artistcentral.amazon.co.jp
54.240.250.160 astore.amazon.co.jp
52.94.211.66 brandregistry.amazon.co.jp
@wowh
wowh / Split.py
Last active August 29, 2015 14:18
SplitHisTable
__author__ = 'hulkwo'
import MySQLdb
import MySQLdb.cursors
import traceback
from collections import defaultdict
conn = MySQLdb.connect(host="192.168.1.218",
user="mysql",
passwd="homewell",
@wowh
wowh / tsvn.bat
Last active October 4, 2015 12:08
tortoisesvn command line bat
@echo off
if "%1"=="log" start tortoiseproc /command:%1 /path:"./%2"
if "%1"=="commit" start tortoiseproc /command:%1 /path:"./%2"
if "%1"=="ci" start tortoiseproc /command:commit /path:"./%2"
if "%1"=="update" start tortoiseproc /command:%1 /path:"./%2"
if "%1"=="diff" start tortoiseproc /command:%1 /path:"./%2"
@wowh
wowh / String.cpp
Created March 13, 2012 05:18
string class
#include "String.h"
#include <string.h>
String::~String(void)
{
delete[] _data;
_data = NULL;
}