분류 전체보기(58)
-
퍼포스 머지 후 전체 히스토리 보기 (P4V: Perforce All History)
퍼포스 머지 후 전체 히스토리 보기 (P4V: Perforce All History) P4V에서 merge / copy 이후 다른 브런치에서의 all histories를 보고 싶다면 다음과 같이 설정을 바꾸면 됩니다. 파일 히스토리 History 탭 > 우측 상단 브랜치 시계 아이콘 버튼 Follow Both Branch and Copy Actions 메뉴 선택 폴더 히스토리 Preferences > Files and History Show changelists integrated into the specified folder (-i) 옵션 체크
2023.03.29 -
유니티 빌드 실패: 페이스북 SDK, openssl 에러 오류
유니티 빌드 실패: 페이스북 SDK, openssl 에러 오류 'openssl'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. Your Android setup is not correct. See Settings in Facebook menu. 원인 페이스북SDK 적용 시, openssl + java SDK 설치 필요 해결 openssl 다운로드 ( Google Code Archive - Long-term storage for Google Code Project Hosting. ) 환경 변수에 추가
2023.03.29 -
유니티 빌드 실패: 안드로이드 SDK NDK 경로 문제 오류 에러 (Unity Buid Error: Android SDK & NDK Path - Burst compilerfailed running)
유니티 빌드 실패: 안드로이드 SDK NDK 경로 문제 오류 에러 (Unity Buid Error: Android SDK & NDK Path - Burst compilerfailed running) BuildFailedException: Burst compiler (1.7.3) failed running stdout: Burst requires the android NDK to be correctly installed (it can be installed via the unity installer add component) in order to build a standalone player for Android with ARMV7A_NEON32 The environment variable ANDROID_..
2023.03.29 -
p4transfer 이스케이핑 버그 (p4transfer escaping bug)
p4transfer 이스케이핑 버그 (p4transfer escaping bug) add 는 -f 옵션으로 @ # 등 가능 sync는 아스키로 변환 해주어야함. (서버에는 변환한 채로 올라감) Helix Core Command-Line (P4) Reference (2022.2) (perforce.com) Helix Core Command-Line (P4) Reference (2022.2) (perforce.com) 예약된 문자 기본적으로 다음 예약된 문자는Helix 서버식별자 또는Helix 서버에서 관리하는 파일 이름에 허용되지 않습니다. @ 날짜, 레이블 이름 또는 변경 목록에 대한 파일 개정 지정자 수 # 파일 수정 번호 * 와일드 카드 ... 와일드카드(재귀) %%1 - %%9 와일드카드(위치) /..
2023.03.29 -
윈도우 디팬던시 트러블 슈팅 해결 툴 (Window dependency tool)
윈도우 디팬던시 트러블 슈팅 해결 툴 (Window dependency tool) GitHub - lucasg/Dependencies: A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues. - GitHub - lucasg/Dependencies: A rewrite of the old legacy softwar... github.com 윈도우 디펜던시 트러블 슈팅 예시 .e..
2023.03.29 -
FastAPI에 모델 (Model) 적용
FastAPI에 모델 (Model) 적용 sqlacodegen을 이용하면 모델 생성 알아서 해줌 pip install sqlacodegen sqlacodegen mysql+pymysql://:@:/ > "./models.py" 결과 # coding: utf-8 from sqlalchemy import Column, ForeignKey, Integer, String from sqlalchemy.orm import relationship from sqlalchemy.ext.declarative import declarative_base Base = declarative_base() metadata = Base.metadata class User(Base): __tablename__ = 'user' UID =..
2023.03.29