メモメモ2
bashスクリプト内でURLエンコードする†
Jetson TK1のハンズオンセッション†
ls コマンドで秒まで表示する方法†
Ubuntu で gvim を起動すると、 “Unable to create Ubuntu Menu Proxy”と言われる†
ペットの火葬†
CMakeを使ってCUDAのプログラムをコンパイルする方法†
Windows標準のDVDメーカーでDVDビデオを作成する†
退職金が出るのか/出ないのか†
CUDAのコンパイル時にでるwarningをVisualStudioで抑制する†
OpenCVで描画する代わりにOpenGLで描画したい†
ファイルのn行目以降を表示する†
text1
text2
text3
$ tail -n 6 hoge.txt
header3
header4
text1
text2
text3
$ tail -n +6 hoge.txt
text1
text2
text3
}}
対義語・反対語†
SSEやAVX†
「嶺南通」(羊城通)†
SSDの容量を空ける方法†
- 塵も積もれば山となる
- 大量の細かいファイルを削除する説明
Windows Update でログがたまる(Vista, 7)†
git-svn でSSL certificate の問題が出た場合†
Makefile で依存関係を自動的に記述する方法†
インストールしたWindowsのライセンスを別マシンに移行する†
vim のおすすめ†
skip/try specific test in gtest (google test)†
- use gtest_filter option¬e{stackoverflow-googletest-how-to-skip-a-test:GoogleTest: How to skip a test? - Stack Overflow, 2011-08-26投稿, 2011-08-26回答, 2016-01-11更新, 2017-01-05閲覧};¬e{stackoverflow-how-to-specify-multiple-exclusion-filters-in-gtest-filter:googletest - How to specify multiple exclusion filters in --gtest_filter? - Stack Overflow, 2012-12-24投稿, 2012-12-24回答, 2014-08-06更新, 2017-01-05閲覧};¬e{how-to-specify-options-of-gtest:gtest 実行時のオプション - Dr.Yellow's blog, 2015-11-27公開, 2017-01-05閲覧};¬e{advancedguide-of-gtest:上級ガイド — Google Test ドキュメント日本語訳, 2017-01-05閲覧};
- run ONLY "foo" test case
$ ./test --gtest_filter=foo
- run ONLY test cases which start with "foo"
$ ./test --gtest_filter=foo.*
- run ONLY test cases which contain "foo"
$./test --gtest_filter=*foo*
- run ONLY test cases which contain "foo" or "bar"
$./test --gtest_filter=*foo*:*bar*
- run ONLY test cases which don't start with "buzz"
$./test --gtest_filter=-*buzz*
- run "foo" test case but not "foo.bug"
$./test --gtest_filter=foo*-foo.bug*
how to avoid vim to make *.un~ file†