전체 글(21)
-
[Notice] 블로그 이전 계획
Google Search Console 버그로 검색 엔진에 Blog 노출이 안되는 상황입니다.통계에서 확인된 인기 글만 남기고 모든 글을 삭제했습니다.추후에 html/css 를 직접 제작할 예정이며이전될 블로그가 개설 되면 여기에 공지하겠습니다. 감사합니다.
2025.02.18 -
[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