たまにアップデートします
ボタンダブルクリックなどの操作もあるので一度説明書は読んだほうがよい。 サポートからダウンロードできるアプリで本体のファームウェアをアップデートできる。(ファームはネット経由の自動アップデートではないので毎回自分でアプリを更新する)
- 電池フル充電で1時間持たない。40分くらい。
- Nikon純正の互換予備バッテリ必須。
| // to be binded..... | |
| var fnTouchStart = function(e) { console.log("hello i am touch start"); }; | |
| var fnTouchMove = function(e) { console.log("hello i am touch move"); }; | |
| var fnTouchEnd = function(e) { console.log("hello i am touch end"); }; | |
| var fnMouseDown = function(e) { console.log("hello i am mouse down"); }; | |
| var fnMouseMove = function(e) { console.log("hello i am mouse move"); }; | |
| var fnMouseUp = function(e) { console.log("hello i am mouse up"); }; | |
| // register..... | |
| (function() |
Our goal is to run python -c "import caffe" without crashing. For anyone who doesn't spend most of their time with build systems, getting to this point can be extremely difficult on OS X. Instead of providing a list of steps to follow, I'll try to epxlain why each step happens.
This page has OS X specific install instructions.
I assume:
vec2 offSet[4];
offSet[0] = vec2(0.,0.);
offSet[1] = vec2(0.,1.);
offSet[2] = vec2(1.,0.);
offSet[3] = vec2(1.,1.);
vec3 zAxis = normalize( vNormal[0] );
vec3 yAxis = vec3( 0.0, 1.0, 0.0 );
vec3 xAxis = normalize( cross(zAxis, yAxis) );
Extracted from https://github.com/rpavlik/maya2osg/tree/master/src/GLSL
varying vec2 vTexCoord;
varying vec3 vNormal;
varying vec3 vEye;
void main() {
| #!/bin/sh | |
| ### Desktop & Screen Saver | |
| # Desktopを黒に | |
| echo "Change Desctop Pictures" | |
| osascript -e 'tell application "Finder" to set desktop picture to POSIX file "/Library/Desktop Pictures/Solid Colors/Black.png"' | |
| # ScreenSaver Kill | |
| echo "Disable screensaver" |
| // Amazonの注文履歴をTSV形式で出力するスクリプト | |
| // | |
| // 2015-01-01 時点での DOM 構造に対応, GoogleCrome, Opera でテスト済。 | |
| // formatEntry関数を書き換えれば自由な書式で出力できます。 | |
| // | |
| // 参考: | |
| // - Amazonの注文履歴をCSV形式にして出力するスクリプト | |
| // https://gist.github.com/arcatdmz/8500521 | |
| // - Amazon で使った金額の合計を出す奴 (2014 年バージョン) | |
| // https://gist.github.com/polamjag/866a8af775c44b3c1a6d |