Skip to content

Instantly share code, notes, and snippets.

View giwa's full-sized avatar

Ken Takagiwa giwa

  • Nombre Premier
  • Tokyo
View GitHub Profile
@giwa
giwa / file0.txt
Last active March 27, 2020 11:31
Install hive on Mac with Homebrew ref: http://qiita.com/giwa/items/dabf0bb21ae242532423
$ brew update
$ brew install hive
@giwa
giwa / file0.txt
Last active August 29, 2015 14:23
お手軽DeepPacketInspection ref: http://qiita.com/giwa/items/795f56d2137254d7bcdc
$ git clone https://github.com/KimiNewt/pyshark.git
$ cd pyshark/src
$ python setup.py install
@giwa
giwa / file0.txt
Last active August 29, 2015 14:21
Install Nginx 1.8.0 in CentOS 6.6 ref: http://qiita.com/giwa/items/21a1020820234a07a518
vi /etc/yum.repos.d/nginx.repo
@giwa
giwa / file0.txt
Last active August 29, 2015 14:21
Install glog 3.3.0 in CentOS 6.6 ref: http://qiita.com/giwa/items/3bd5c5abf53069eb95b0
$ wget https://google-glog.googlecode.com/files/glog-0.3.3.tar.gz
$ tar xzvf glog-0.3.3.tar.gz
$ svn checkout http://google-glog.googlecode.com/svn/trunk/ google-glog
$ cd google-glog
$ configure
$ make
$ make install
@giwa
giwa / file0.txt
Last active September 3, 2015 08:24
Install MariaDB 10.1 in CentOS 6.6 ref: http://qiita.com/giwa/items/a8bba1901080b7204fc2
$ yum remove mysql
@giwa
giwa / file0.txt
Last active August 29, 2015 14:21
Install libpcap 1.7.3 in CentOS 6.6 ref: http://qiita.com/giwa/items/16db4add0c9339a21c1a
$ yum list | grep libpcap
libpcap.x86_64 14:1.4.0-1.20130826git2dbcaa1.el6
libpcap.i686 14:1.4.0-1.20130826git2dbcaa1.el6
libpcap-devel.i686 14:1.4.0-1.20130826git2dbcaa1.el6
libpcap-devel.x86_64 14:1.4.0-1.20130826git2dbcaa1.el6
@giwa
giwa / file0.txt
Last active December 6, 2023 07:36
Install g++/gcc 4.8.2 in CentOS 6.6 ref: http://qiita.com/giwa/items/28c754d8fc2936c0f6d2
$ wget http://people.centos.org/tru/devtools-2/devtools-2.repo -O /etc/yum.repos.d/devtools-2.repo
$ yum install devtoolset-2-gcc devtoolset-2-binutils
$ yum install devtoolset-2-gcc-c++ devtoolset-2-gcc-gfortran
@giwa
giwa / file0.txt
Created May 24, 2015 17:06
Install git 2.4.1 in CentOS 6.6 ref: http://qiita.com/giwa/items/1b4d417432613100ac38
$ yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-ExtUtils-MakeMaker
$ wget https://www.kernel.org/pub/software/scm/git/git-2.4.1.tar.gz
$ tar -zxf git-2.4.1.tar.gz
$ cd git-2.4.1
$ make prefix=/usr/local all
$ make prefix=/usr/local install
$ git --version
@giwa
giwa / d3bar
Created May 24, 2015 10:10
d3bar
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.bar {
fill: steelblue;
}
.bar:hover {
fill: brown;
@giwa
giwa / file0.txt
Created April 5, 2015 01:58
Python 3.4.3でgmail経由でメールを送る ref: http://qiita.com/giwa/items/f7a91b7b0439b6a958c6
#!/usr/bin/python
import smtplib
from email.mime.text import MIMEText
from email.header import Header
from email.utils import formatdate
class Gmail:
"""