pathパスが通らない時

入れたいものを先頭に配置すると通った

ctrl+shift+bでビルドする設定

visual studio code ctrl+shift+bでビルドする設定 https://newbie-hhyuga.blogspot.jp/2017/05/vscodemingwcc.html

pythonでダンプdump

test = h1.get_detection_setting(128) print dir(test) # test = str(dir(h1.get_available_detection_settings())) print vars(test)

SVNの入れ方

SVNの入れ方Subversive http://www.system-act.com/eclipse/subversive.html

iPad設定

1)アカウントの設定 ->apple id取得、gmailの取得、icloudへの登録(id取得から画像の共有出来るまで時間かかる) 2)appのインストール ->gmail、google photo、line、youtube、iPhoneを探す、楽天、google maps、乗り換え案内 3)諸々の設定 ->メーラーとiclou…

ポインタ

S氏code review

開いたら閉じるを心がける. struct(構造体)とclassの違い,classは基本的にはprivateなメンバ関数(変数) macro,ex.#define IP_ADDRESS1 "10.0.0.20"はC++で使わない.理由は,この項目が型を関係なく全て置き換えてしまうからエラーの原因になるから.代わ…

eclipseにデバッガをインストール

>はまった。できない。 1)brewのインストール ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"2)gdbのインストール brew install gdb 証明書を作成する Keychain Accessを開きます。 (Applications/Utilitiesデ…

vectorクラス、動的配列

動的に配列サイズが拡張される #include <vector> #include <iostream> void printAll(const std::vector<int>&); int main() { using std::vector; vector<int> ary(10); ary[0] = 1; // 配列のような使用が可能 ary.at(1) = 2; // ary[1] = 2とほぼ等価 printAll(ary); ary.resize(2); </int></int></iostream></vector>…

gitへのcommit方法

commitの後にpushするとデータがクラウドにアップデートされる。 commitの段階だとローカルでアップデートされるのみ。

cpp helloworld

#include <iostream> using namespace std; int main() { cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!! return 0; }</iostream>

macでeclipseにcmakeと連動させること [eclipse]

1)cmakeをインストール,https://cmake.org/ コマンドラインで使えるように設定する.GUIのcmakeを開いて設定. 2)eclipse側でprojectでbuildディレクトリを指定. 3)makefileを作りたいフォルダでcmake01.helloworld kuwakichi$ cmake . ゴミと一緒にmakefi…