rabbitfoot530's diary

読んだ本と、プログラムに関することのメモです。好きな言語は、C++, Python, Golang, TypeScript。数学・物理・学習理論も好きです。

2012-04-08から1日間の記事一覧

スペルチェック

aspellを使う // mac sudo port install aspell aspell-dict-en // linux sudo aptitude install aspell aspell-dict-en echo "lang en_US" >> ~/.aspell.conf 後は、~/.emacsに下記を書いて、簡単呼び出し (global-set-key "\M-j" 'ispell)

ValueError: unknown locale: UTF-8

Terminal > Preferences... > Settings > AdvancedSet local environment variables on startup

boost::mutex

boost::threadでmutexロックを使うsync.hpp #include <boost/thread.hpp> #include <boost/thread/condition.hpp> class Sync { private: static boost::mutex _thread_mutex; static boost::condition _thread_cond; public: static int do(); }; sync.cpp #include "sync.hpp" boost::mutex Sync::_thread</boost/thread/condition.hpp></boost/thread.hpp>…