개발 및 운영124 C++에서 Node.JS 사용하기 (node모듈아님) https://github.com/jc-lab/node-app jc-lab/node-app Embed node.js application with VFS(Virtual File System) - jc-lab/node-app github.com 삽질의 결과!ㅠㅠ 결과는 간단한데 과정이 힘들었음.. 2019. 10. 21. Kubernetes 설치 Kubernetes Master Node 초기화 sysctl 수정 현재 Runtime에 대한 sysctl 변경 $ sudo sysctl net.bridge.bridge-nf-call-iptables=1 vim 으로 sysctl 에 대한 영구 설정 변경 $ sudo vim /etc/sysctl.d/99-sysctl.conf net.bridge.bridge-nf-call-iptables=1 # 추가 kubeadm $ sudo kubeadm init --pod-network-cidr=172.30.0.0/16 --service-cidr=10.244.0.0/16 마지막에 나오는 문장 기억해놓기 kubeadm join 10.0.0.2:6443 --token ssssss.asdasdasdas --discovery-t.. 2019. 9. 24. [C++11] std::bind 로 unique_ptr 넘기기 될줄 알았죠? 안돼요...ㅠㅠ 이 글을 보면 해결책이 있을줄 알았죠? 없어요...^^ 최소한 C++ 자체 라이브러리 안에서는....ㅠㅠ 아래와 같이 따로 만들면은 됩니다! #include #include #include #include class Caller { public: virtual void run() = 0; }; template class Binder : public Caller { protected: F f_; std::size_t args_count_ = std::tuple_size::value; Tuple tuple_; public: Binder(F f, Tuple&& tuple) : f_(f), tuple_(std::move(tuple)) { std::cout 2019. 9. 4. std::function 복사는 비싸다! 테스트코드 #include #include #include #include std::function temp_s; std::unique_ptr temp_u; void test_1() { for(int i=0; i 2019. 9. 4. 자체 메일서버에서 보내는 메일이 스팸으로 갈 때.. https://mxtoolbox.com/domain/ 일단 위 사이트에서 확인해보면 웬만한건 해결방법을 알 수 있다. 나는 몇군데 blacklist가 걸려서 그랬었는데... https://rabbitchris.tistory.com/819 참고하여 해결하였다. 정리하면... SPF, DKIM 설정해야 하고 rDNS (PTR레코드)또한 필수이다. SPF : https://support.google.com/a/answer/33786 DKIM : https://support.google.com/a/answer/174124 PTR레코드 관련.. Kakao https://mail-notice.kakao.com/mboard/notice/7 Daum http://hanmail-notice.daum.net/notice/.. 2019. 8. 29. JCE Provider 개발하기 - JCE Code Signing 인증서 요청 JCE Provider를 개발 및 배포하려면 Oracle으로부터 발급받은 JCE Code Signing Certificate를 통해 클래스들을 서명해야 합니다. 그렇지 않으면 디버깅조차 되지 않습니다. Exception in thread "main" java.lang.SecurityException: JCE cannot authenticate the provider CustomProvider at javax.crypto.Cipher.getInstance(Cipher.java:656) at MyTestMain.main(MyTestMain.java:16) Caused by: java.lang.SecurityException: Cannot verify jar:file:/.... 위와 같은 오류를 보게 됩니다... 2019. 8. 7. 이전 1 ··· 11 12 13 14 15 16 17 ··· 21 다음 반응형