2016/10/26

Node-RED function editorのカーソル位置がおかしい (chrome)

Node-REDのfunction nodeのeditorのカーソル位置がおかしく,まともに編集できない.
どうも使っているフォントのせいだったらしく,Chromeのフォント設定で

  • Standard font: Meiryo UI
  • Serif font: Times New Roman
  • Sans-serif font: Arial
  • Fixed-width font: Consolas

にしたら直った.(全部をこの設定にする必要があるか,一部だけでいいのかは未検証)

2016/10/08

jQuery getJSON 複数同時取得

複数のJSONファイルを読み込んで,全てが取得できてから処理をしたいとき
$.when(
    $.getJSON('a.json'),
    $.getJSON('b.json')
).done(function(data_a, data_b) {
    a = data_a[0];
    b = data_b[0];
    ...
});
参考:http://www.tam-tam.co.jp/tipsnote/javascript/post5807.html

2016/05/03

SimpleCV installation on Windows

http://www.simplecv.org/download/
からダウンロードして実行,だけではうまくいかなかったのでメモ

環境: Windows 7 Enterprise
Python 2.7.10をインストール済み

Python 2.7.3をインストールしようとするので,キャンセル
(キャンセルしても,SimpleCV自体のインストールは何事もなく進む)

easy_install PIL がそんなもん見つからない,となってこけているので,
http://www.pythonware.com/products/pil/
ここから Python Imaging Library 1.1.7 for Python 2.7 をダウンロードしてインストール

easy_install cython が  Microsoft Visual C++ 9.0 is required でこけているので,
出力されたメッセージ通り http://aka.ms/vcpython27 からMicrosoft Visual C++ Compiler for Python 2.7をダウンロードしてインストールし,再度 easy_install cython を実行