본문 바로가기

분류 전체보기301

python if문 b,c =input("테스트").split(); if(b == c): print(True); else: print(False); print(b, c); 2019. 8. 27.
Google Cloud VM으로 하려다가 구글 클라우드 무료로 되길래 갈아탐. mRemoteNG를 다운로드 받고, putty 설정을 해주면 된다. https://mremoteng.org/download Download The next generation of mRemote, open source, tabbed, multi-protocol, remote connections manager. mremoteng.org https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html Download PuTTY: latest release (0.72) This page contains download links for the latest released version of PuTTY. C.. 2019. 8. 11.
22# CQRS 채용공고에서 CQRS라는 개념을 보고 호기심에 찾아봤다. 현재 쓰고 있는 방식과 어떤 부분이 다르나 확인했더니 기본적인 사용 아키텍쳐가 살짝 다르다. 서버를 하면서 오류가 나면 명확하게 알 수 있는 장점이 있었다. 하지만 입력를 완료하고 바로 유저 정보를 조회를 하면 커넥션에 대한 리소스는 줄어들 것이다. 이해한 정보로 예제 코드를 작성해봤다. CQRS Style // Command and Query Responsibility Segregation private static void CQRSStyle() { //회원가입 Int64 userKey = CQRSInsert(); //결과물을 받아야 하지만 생략. CQRSSelect(userKey); } private static Int64 CQRSInsert(.. 2019. 8. 9.
Windows10 VMware Device/Credentia 오류 VMware에서 Centos를 설치하려고 실행했는데 VMware Workstation and Device/Credential Guard are not compatible. VMware Workstation can be run after disabling Device/Credential Guard. Please visit http://www.vmware.com/go/turnoff_CG_DG for more details. 이런 오류가 발생하고 실행이 되질 않는다. 장치 보안에서 핵심 격리도 해보고 레지스트리에서 정보도 찾아봤지만 내 컴퓨터에선 보이질 않았음. 가장 도움이 된 리플은 다음이었다. 참고 사이트 https://communities.vmware.com/thread/584231 Device/Cred.. 2019. 8. 4.