While ago : “조금 전에” 또는 “아까, 아까전에” 등 ( 발음이 왈라고~ 라고 들림 )
-
-
실패 노트를 작성하자..
진행 한 일에 대해 실패 노트를 작성하자.
어떤 것을, 누가, 어떻게, 했는지 그리고 그 결과가 어떻게 일어 났는지 적자..
그리고 그 일이 반복되지 않기 위해서 어떻게 해야 하는지에 대해서 최대한 상세하게 적어 보자..
-
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 th ...
-
OSX에서 공백이 존재하는 PATH를 $PATH에 넣기..
여러 가지 방법이 있지만.. 가장 효율 적인 방법은.. /Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin <<– 이렇게 나오는 걸.. /Applications/Visual Studio Code.app/Contents/Resources/app/bin 로 바꿔서 e ...
-
C++ Development using Visual Studio Code, CMake and LLDB
this article are captured as “https://medium.com/audelabs/c-development-using-visual-studio-code-cmake-and-lldb-d0f13d38c563“
I’ve been working for almost a year implementing micro-services on ...
-
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/Releas ...
-
centos7] Adding to Firwwall rules
Adding to Firwwall rules
sudo iptables -I INPUT -p tcp --dport 3030 -j ACCEPT sudo service iptables save
-
화일명 일괄 소문자 변경
for i in *; do mv $i `echo $i | tr [:upper:] [:lower:]`; done
-
POCO 라이브러리로 MYSQL Query시에 “unknown field type” 오류
원인은.. POCO에서 MYSQL의 TIMESTAMP 타입을 지원 하지 않아서 생긴 문제.
이를 해결 하기 위해서 POCO라이브러리 소스를 아래와 같이 수정 한 후에 재 컴파일 해준다.
POCO 소스 폴더에서 Data/MySQL/src/ResultMetadata.cpp 의 내용을 아래와 같이 수정 std::size_t f ...
-
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 printf(“input co ...