전체 글(20)
-
[vscode] 변수명 일괄 변경법, 자동정렬 단축키
변수명 일괄 변경변수 선택 후 F2 or Ctrl + F2 or Ctrl + Shift + L자동정렬Windows : Ctrl + a → Ctrl + K + FMac : Command + K + F
2024.06.19 -
[Flutter, Dart] How to Use Android Studio, Flutter, Dart in VSCode, Print "Hello, World!", and Fix Errors
Large category colors : This color 1.윈도우 키 > windows powershell > 우클릭 > 관리자 권한으로 실행 Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) 복사 후 붙여넣기(설치 완료되면 choco 입력하면 버전 출력됨)참고 사이트 (..
2024.04.05 -
[게임] A Parking Story 우왁굳이 했던 주차연습게임 다운로드 파일 2024.02.22
-
[키보드] 윈도우10 키보드 반응속도 높이기 레지스트리 편집
1.windows 검색 > 키보드 > 재입력 시간 짧게, 반복 속도 빠름 2.windows + R > regedit 검색 > HKEY_CURRENT_USER 누르고 Ctrl + F > 찾을 내용에 Keyboard Response 검색.AutoRepeatDelay > 200AutoRepeatRate > 1DelayBeforeAcceptance > 0Last Valid Wait > 0*기본값은 원래 (1000,500,1000,1000) 이다. PC마다 다름 3.2번에서 했던거 근처에 있는HKEY_CURRENT_USER / Control Panel / Keyboard 들어가서InitialKeybaordIndicators, KeyboardDelay, KeyboardSpeed > 0*기본값은..
2022.09.19 -
[Python] The answers to Python questions(How to use swap / How to use 2차원 배열(리스트) 초기화 및 값 변경 List Comprehension 를 사용한)
How to use Swapa = 1b = 2print(a,b)a,b = b,aprint(a,b)'''OutPut 1 22 1''' How to use 2차원 배열(리스트) 초기화 및 값 변경, List Comprehension 사용N = 4x_arr = [[0] * 2 for i in range(N)]y_arr = [[0 for j in range(4)] for i in range(4)]x_arr[0][1] = 33y_arr[0][1] = 33print(x_arr)print(y_arr)'''OutPut[[0, 33], [0, 0], [0, 0], [0, 0]][[0, 33, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]Improper usage(값 하나 변경 ..
2021.11.06 -
[한글/hwp] 아래아, 한글/영어 자동 전환 끄기, 형광펜, 취소선, 글자색
1. 아래아 끄기상단 도구 > 글자판 > 글자판 자동 변경 체크 해제2. 한글/영어 자동 전환 끄기상단 도구 > 글자판 > 글자판 바꾸기(Alt + F2) > 현재 글자판 [윈도우 입력기]형광펜 : Ctrl + Q취소선 : ALT + L > ALT + E > ALT + D글자색 : CTRL + M > R (RED 빨강색)
2021.10.26