Skip to content

Instantly share code, notes, and snippets.

@K90j1
K90j1 / LeapMotionの説明.md
Last active January 4, 2016 03:39
イベントのために調べたLeapMotionのスペックと開発手順

LeapMotionの説明

キーワード

  • 空間ジェスチャー
  • フィジカルコンピューティング
  • NUI(Natural User Interface)

Leap Motion スペック

$ python -v
Python 2.6.1 (r261:67515, Jun 24 2010, 21:47:49)
[GCC 4.2.1 (Apple Inc. build 5646)] on darwin
$ brew -v list
Homebrew 0.9.4
autoconf gettext libtiff node protobuf tree
cmake gfortran libxml2 openssl r unrar
colordiff git mcrypt pcre re2c wget
gd gsl mobile-shell pidof readline zsh
@K90j1
K90j1 / HowDeployRedis-2.6.11.sh
Last active January 3, 2017 18:26
Deploy redis redis-2.6.11 on CentOS i686
$ cat /etc/redhat-release
CentOS release 5.9 (Final)
$ arch
i686
$ cd /usr/local/src
$ sudo wget http://redis.googlecode.com/files/redis-2.6.11.tar.gz
$ sudo tar xzvf redis-2.6.11.tar.gz
$ cd redis-2.6.11
$ sudo make
zmalloc.o: In function `zmalloc_used_memory`:
@K90j1
K90j1 / Paypal
Created December 16, 2012 04:52
The form for web payment standard with Sandbox of Paypal.
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" accept-charset="utf-8">
<input type="hidden" name="business" value="Mail address of Seller" />
<input type="hidden" name="item_name" value="Item Name" />
<input type="hidden" name="amount" value="Item Amount" />
<input type="hidden" name="quantity" value="1" />
<input type="hidden" name="currency_code" value="JPY" />
<input type="hidden" name="lc" value="jp_JP" />
<input type="hidden" name="charset" value="UTF-8" />
<input type="hidden" name="cancel" value="http://example.com/cancel.html" />
<input type="hidden" name="return" value="http://example.com/success.html" />