에러 처리

    (Window) VCS CommandNotFoundException

    npm, node, typescript 등등 설치했는데 VCS가 인식하지 못하는 문제. 이거는 환경변수 문제인데 설치 경로를 착각해서 환경변수에 넣었는데도 왜 안되지...? 하고 있었다 ㅎㅎ 1. npm list -g 2. 위에 명령어로 나온 경로를 환경변수에 추가해주자.

    (window)반응형 구현 시 인터넷 창의 즉각적인 변화를 확인하고 싶을 때

    반응형 구현 할 때, 인터넷 창을 줄이면서 실시간으로 변하는 모습을 확인하고 싶을 때 고급 시스템 설정 보기 - 설정 - 마우스로 끄는 동한 창 내용 표시 체크

    [Django] django.db.migrations.exceptions.CircularDependencyError

    https://stackoverflow.com/questions/40705237/django-db-migrations-exceptions-circulardependencyerror django.db.migrations.exceptions.CircularDependencyError I have a problem with Django migrations on empty DB. When I want to migrate I have a circular dependency error. Circular dependency error between two apps that related by foreign keys /firstapp/mo... stackoverflow.com 서로 다른 앱이 있을 때 각각 앱의 모델이..

    [C++] Invalid Comparator

    오랜만에 C++ 를 쓰면서 우선순위 큐에 쓸 compare 구조체를 작성하는데 이렇게 하는거였나? 하면서 짰더니 정말 터무니없는 코드를 짜고 말았다. 🤔 Clion에서 실행하면 invalid comparator 에러가 뜨고 온라인 디버거로 실행하면 제대로 출력되니 답답한 상황이었는데 결론부터 말하자면 이렇다. (X) struct cmp { bool operator()(order a, order b) { if(a.price > b.price) return true; return a.name > b.name; } }; (O) struct cmp { bool operator()(order a, order b) { if(a.price != b.price) return a.price > b.price; retur..