Skip to content

Instantly share code, notes, and snippets.

View coa00's full-sized avatar

cohe aoki coa00

View GitHub Profile
@coa00
coa00 / file0.txt
Last active October 29, 2015 08:25
raspberry Piにnode.jsをいれてみる。 ref: http://qiita.com/coa00@github/items/7276d65f7732bbc8b3c6
curl -L git.io/nodebrew | perl - setup
@coa00
coa00 / file0.txt
Last active September 28, 2015 05:14
iOS Simulatorが起動しなくて本当にこまった話 ref: http://qiita.com/coa00@github/items/6ae2766a2991424fd144
/private/tmp
@coa00
coa00 / file0.txt
Last active November 2, 2015 02:04
Xcode7.0にしたらv0.8.4のビルドが通らなくなった ref: http://qiita.com/coa00@github/items/c91adb9505e72d057da9
OF/of_v0.8.4_osx_release/libs/openFrameworks/utils/ofURLFileLoader.cpp:45:10: 'openssl/opensslconf.h' file not found
@coa00
coa00 / file0.txt
Last active August 26, 2015 05:14
cssファイルをjavascriptにまとめる。 ref: http://qiita.com/coa00@github/items/8ea2c233afd9c1e50cfd
css/
hoge.css
js/
fuga.js
test.js
@coa00
coa00 / file0.css
Last active August 29, 2015 14:28
cssファイル使わずにjavascriptのみで簡単にスタイルをあてる。 ref: http://qiita.com/coa00@github/items/29c6d2b65f1ec19529da
.hoge {
background-color: #fff;
}
.hoge:hover {
border: 1px solid #0097cf;
}