While ago : “조금 전에” 또는 “아까, 아까전에” 등 ( 발음이 왈라고~ 라고 들림 )
- Category Archives Uncategorized
-
-
실패 노트를 작성하자..
진행 한 일에 대해 실패 노트를 작성하자. 어떤 것을, 누가, 어떻게, 했는지 그리고 그 결과가 어떻게 일어 났는지 적자.. 그리고 그 일이 반복되지 않기 위해서 어떻게 해야 하는지에 대해서 최대한 상세하게 적어 보자..
-
GitLab Password Reset
GitLab Default Password First up, if you were naughty and didn’t change your GitLab default password then try these: Username: root Password: 5iveL!fe If that works, make changing the root passw…
-
OSX에서 공백이 존재하는 PATH를 $PATH에 넣기..
여러 가지 방법이 있지만.. 가장 효율 적인 방법은.. /Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin <<– 이렇게 나오는 걸.. /Applications/Visual Studio Code.app/Content…
-
Making to Linux for Dev. Env.
g++ testcasa.cpp -std=c++11 -I /home/johnny/casablanca/Release/include -L /home/johnny/casablanca/Release/build.release/Binaries -lcpprest export LD_LIBRARY_PATH=/home/johnny/casablanca/Release/build….
-
POCO 라이브러리로 MYSQL Query시에 “unknown field type” 오류
원인은.. POCO에서 MYSQL의 TIMESTAMP 타입을 지원 하지 않아서 생긴 문제. 이를 해결 하기 위해서 POCO라이브러리 소스를 아래와 같이 수정 한 후에 재 컴파일 해준다. POCO 소스 폴더에서 Data/MySQL/src/ResultMetadata.cpp 의 내용을 아래와 같이 수정 std::size_t fieldSize(const MYSQ…
-
c++ how to handling to arguments
#include <stdio.h> #include <stdlib.h> // exit() int main(int argc, char* argv[]) { if (argc == 1) { fputs(“Error no inputs..\n”, stderr); exit(1); } // print options count pr…
-
c++ key input
#include <iostream> using std::cout; using std::cin; int main() { char thing; cin >> thing; if (thing == ‘a’) cout << “You pressed ‘a’!\n”; else cout << “You pressed not-‘a’: “…
-
JQuery with Bootstrap
http://maczniak.github.io/bootstrap/javascript.html and Collapse navigator http://zetawiki.com/wiki/부트스트랩_내비게이션바_자동접기_navbar-collapse 목차 1 개요 2 예시 3 같이 보기 4 참고 자료 개요[편집] Co…