Skip to content

Instantly share code, notes, and snippets.

職務経歴書

基本情報

key value
Name akichim
Qiita akichim21

スキル

conda create -n py2 python=2.7 numpy scipy matplotlib pandas pil ipython scikit-learn jupyter
conda create -n py3 python=3.5.1 numpy scipy matplotlib pandas pil ipython scikit-learn jupyter
@akichim21
akichim21 / gist:b066bd8ee7763e718d704200c87e4546
Created April 13, 2016 10:39
line bot api基本セットアップ
gem install rails
git init line-bot-api
rails new line-bot-api
cd line-bot-api
bundle install --without production
curl https://toolbelt.heroku.com/install.sh | sh
echo 'PATH="/usr/local/heroku/bin:$PATH"' >> ~/.bashrc
@akichim21
akichim21 / gist:7749545
Last active December 30, 2015 00:29
CCHttpとJsonでサーバー通信
void GameScene::main {
CCHttpRequest* request = newCCHttpRequest();
request->setUrl("http://sample.com");
request->setRequestType(CCHttpRequest::kHttpGet);
request->setResponseCallback(this, callfuncND_selector(GameScene::onHttpRequestCompleted));
request->setTag("GET sample");
CCHttpClient::getInstance()->send(request);