자기계발 및 업무생산성42 String의 생성자와 String(byte[] bytes, int offset, int length)와 InputStream 클래스 read(byte[] bytes, int offset, int length) 비교 String 클래스의 생성자인 String(byte[] bytes, int offset, int length)은 byte 배열에서 문자열을 생성하는 역할을 합니다. bytes: 생성할 문자열을 포함하는 byte 배열 offset: byte 배열에서 문자열을 생성할 시작 위치 (배열의 인덱스) length: 생성할 문자열의 길이 즉, byte 배열에서 offset 위치부터 length 길이만큼의 바이트를 읽어 문자열을 생성하는 것입니다. InputStream 클래스의 메소드인 read(byte[] bytes, int offset, int length)는 InputStream에서 바이트를 읽어오는 역할을 합니다. bytes: 읽어온 바이트를 저장할 byte 배열 offset: byte 배열에서 저.. 2023. 3. 30. cuda version에 따른 pip pytorch 설치 명령어 v1.13.1 pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117 v1.12.1 # CUDA 11.6 pip install torch==1.12.1+cu116 torchvision==0.13.1+cu116 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cu116 # CUDA 11.3 pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/w.. 2023. 2. 22. nodejs 설치 후 npm 명령어 입력 시 OpenSSL configuration error가 계속 발생할 때(윈도우10) node.js 16.13.0 LTS 버전을 설치한다. 그럼 바로 해결 Go to the Windows control panel and click on Uninstall a program, select Node.js and click on the uninstall tab to uninstall the node and npm successfully. Restart your system. Then go to https://nodejs.org/en/ to download 16.13.0 LTS version and install it 2023. 1. 19. Error handling response: TypeError: Cannot read properties of undefined (reading 'always') Error handling response: TypeError: Cannot read property 'always' of undefined at chrome-extension://cnfngpgfjllafbghaimjcmailafcdhod/releaseDrag.js:90:49 도대체 이 에러 메세지가 뭘까.. 고민을 많이 했는데, 크롬 확장 프로그램 중에서 Drag-Free(드래그 프리) 때문에 발생되는 오류였다. Drag-Free를 삭제하거나 사용안함으로 설정을 변경하니, 에러 메세지가 안뜬다. 2022. 5. 14. 이전 1 2 3 4 5 ··· 11 다음