분류 전체보기 516

[ FLUTTER ] CocoaPods 오류

sudo gem uninstall cocoapods sudo gem install cocoapods https://smilehugo.tistory.com/entry/cocoapods-installed-but-not-initialized CocoaPods 설치한 후 초기화가 안될 때 (Flutter MacOS 셋업) Flutter(1.9.1+hotflix.2)를 맥OS에 설치를 할때 CocoaPods 설치한 후 초기화(Initialize)를 실행하면 아무런 표시가 안뜨는 것을 확인할 수 있고 flutter doctor를 실행해서 현재 flutter 셋업 상태를 확인할 때,.. smilehugo.tistory.com

Team/난감했던 이슈들 거북 2021.10.26

[ MYSQL ] DATETIME Null값 체크

증상 DATETIME 수정이 일어난 경우 0000-00-00 이 기본 값으로 입력됨 해결 UNIXTIME 기준으로 검증한다 IF(UNIX_TIMESTAMP(O.delivery_complete_time) = 0,'미입력', O.delivery_complete_time) AS delivery_complete_time 관련링크 https://stackoverflow.com/questions/559590/selecting-empty-mysql-datetime-fields Selecting empty mysql datetime fields Is there a better way to select empty datetime fields than this? SELECT * FROM `table` WHERE `date..

DB/MYSQL 라넌.B 2021.10.21

[ REACT ] 메뉴 활성화 적용 NavLink

증상 state를 사용해서 활성메뉴를 검증하는 경우 페이지 새로고침하였을때 상태값이 초기화 되는 이슈 발견 초기 렌더시에 URL을 파싱해서 활성을 처리하는 경우 페이지 이동시 상태가 변경되지 않는 이슈 발견 해결책 NavLink 사용 import { NavLink } from 'react-router-dom'; about // Or specifing active style about // If you use deep routes and you need an exact match about 관련링크 https://stackoverflow.com/questions/42297728/react-js-implement-menu-highlight-active-link/54235985

FE/React 거북 2021.10.20

[ AWS ] Process default has been unhealthy for 20 minutes (Target.ResponseCodeMismatch)

https://lhy.kr/elb-healthcheck-for-django Elastic Beanstalk의 Django 애플리케이션에서 발생하는 ELB Health check 4xx에러 해결 최근 Django프로젝트를 배포할 때는 항상 Docker와 AWS Elastic Beanstalk을 사용하고 있다. 이번 포스팅에서는 Elastic Beanstalk에 Django애플리케이션을 배포할 때, Elastic Load Balancing서비스에서 Health check가 실 lhy.kr AWS elastic beanstalk 100.0 % of the requests are erroring with HTTP 4xx AWS elastic beanstalk 100.0 % of the requests are e..

BE/AWS HEON.D 2021.10.19