다른 서비스 데이터 호출 시 이렇게 날짜를 타임스탬프로 받아온다. { "customer_addr": null, "customer_email": null, "customer_id": "customer-id-bdd35d19-7a53-4a94-bc0e-1c5de27d0b21", "customer_name": null, "customer_postcode": null, "customer_tel": null, "inserted": 1699339274, "updated": 1699339275 } 우리 서비스는 LocalDateTime을 표준으로 사용하므로 변환이 필요하다. 아래와 같이 LocalDateTime으로 변환하는 방법은 다양하다. val timestamp: Long = 1699339274 var localD..
macOS 업데이트 이후로 git 브랜치 정보들을 못 불러오길래 터미널에서 git을 때렸다. % git xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun .git 디렉터리 안에는 데이터가 그대로인데 git을 사용 할 수 없다니... 바로 구글링을 해보니 CommandLineTools를 식별하지 못해 발생한 문제라고 한다. xcode-select --install 명령어로 CommandLineTools(command line developer tools)를 설치를 해주면 되는데 % xcod..