본문 바로가기
반응형

전체 글216

OneDrive 탐색기에서 안 보이게 하기 1. 실행창(윈도우+R)에서 regedit 2. 아래 경로로 이동 HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace 삭제하려는 OneDrive폴더를 삭제한다 2022. 6. 28.
NestJs TypeORM로 DB 2개 이상 연결하기 1. module 추가 nest g module 모듈명 추가하려는 DB의 모듈 이름을 터미널 창에 입력하면 자동으로 Module이 만들어진다 2. app.module.ts 에 추가할 DB 정보 추가 TypeOrmModule.forRoot({ type: 'mysql', host: '', port: 3306, username: '', password: '', database: '', entities: [__dirname + '/**/*.entity.{js,ts}'], synchronize: false, }) 연결할 DB정보를 추가한다 Module은 1번 과정에서 자동으로 추가됨 3. Entity 추가 파일.entity.ts 파일 추가 import { Entity, Column, PrimaryGenerated.. 2022. 6. 28.
[TypeOrmModule] Unable to connect to the database. Retrying (5)... +3137msQueryFailedError: ER_FK_COLUMN_CANNOT_CHANGE_CHILD: Cannot change column 'id': used in a foreign key constraint 에러 해결 app.module.ts파일의 synchreonize: false로 변경한다 2022. 6. 16.
yarn : 이 시스템에서 스크립트를 실행할 수 없으므로 C:\Users\user\AppData\Roaming\npm\yarn.ps1 파일을 로드할 수 없습니다. 에러 해결 yarn : 이 시스템에서 스크립트를 실행할 수 없으므로 C:\Users\user\AppData\Roaming\npm\yarn.ps1 파일을 로드할 수 없습니다. 자세한 내용은 about_Execution_Policies(https://go.microsoft.com/fwlink/?LinkID=135170)를 참조하십시오.위치 줄:1 문자:1 Windows PowerShell을 관리자 권한으로 실행 get-help Set-ExecutionPolicy y 입력 Set-ExecutionPolicy RemoteSigned y 입력 권한을 설정해주고 다시 yarn명령어 사용하면 해결된걸 확인할 수 있다 2022. 6. 16.
node_modules/@types/express/index.d.ts:58:29 에러 해결 npm 사용 시 npm update @types/express-serve-static-core --depth 2 npm update @types/serve-static --depth 2 yarn 사용 시 yarn add @types/express@4.17.8 yarn 명령어 사용 시에는 package-lock.json파일에 @types/express 버전이 바뀌는것을 확인 2022. 6. 16.
윈도우10(Windows10) 한컴 입력키 삭제 키보드 설정이 한컴 입력기로 계속 변경이 되어서 삭제하기로 했다 1. Win - 언어 설정 2. 기본 언어 설정 - 한국어 클릭 - 옵션 3. 한컴 입력기 누른 뒤 제거 2022. 6. 14.
Kotlin LocalDateTime 날짜, 시간 계산하기 날짜와 시간 둘 다 사용 가능한 LocalDateTime 현재 시간에서 하루 뒤 날짜를 더하려면 val tomorrow = LocalDateTime.now().plusDays(1) 년: plusYears() 월: plusMonths() 주: plusWeeks() 일: plusDays() 시: plusHours() 분: plusMinutes() 초: plusSeconds() 어제 날짜를 구하려면 val yesterday = LocalDateTime.now().minusDays(1) 2022. 6. 10.
[안드로이드/JAVA] gif파일 만들기, animation-list 사용 [res - drawable] 폴더 안에 animation-list xml파일 추가 duration은 지속시간 1000이 1초 [res - layout] android:src 속성에 waiting.xml 파일 추가 애니메이션 효과가 나지 않는다면 gif 실행하는 코드에 AnimationDrawable을 start 해줘야 한다 ImageView waitingImage = (ImageView) mVg_Main.findViewById(R.id.waiting); AnimationDrawable ImageAnimation = (AnimationDrawable) waitingImage.getDrawable(); ImageAnimation.start(); 2022. 5. 9.
Identify and stop the process that's listening on port 8080 or configure this application to listen on another port. 해결 에러 코드: Identify and stop the process that's listening on port 8080 or configure this application to listen on another port. 터미널 창에서 아래 코드 입력 netstat -ano | findstr 8080 taskkill /F /pid 실행중인pid 해결 다시 실행하면 잘 작동한다 2022. 4. 28.
반응형