솔리디티(solidity) 환경 및 디앱(Dapp) 개발 설정
Devel/Blockchain2024. 11. 24. 20:36솔리디티(solidity) 환경 및 디앱(Dapp) 개발 설정

1. nvm 최신 버전 설치curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.4/install.sh | bashsource ~/.bashrc 2. nvm 설치 확인nvm —v 3. nvm으로 Node.js 설치 가능한 LTS 버전 확인nvm ls-remote --lts 4. Node.js LTS 버전 설치nvm install --lts 5. 현재 설치된 Node.js 버전 확인nvm list 6. Node.js 사용 설정nvm use —lts 7. Node.js 및 npm 버전 확인node -vnpm –v 8. truffle 설치- Truffle은 이더리움 기반의 분산 애플리케이션(DApp)을 개발하기 위한 블록체인 프레임워크npm install ..

CocoaPods 1.11.3 out of date (1.13.0 is recommended).
Devel/Mobile2024. 5. 9. 15:45CocoaPods 1.11.3 out of date (1.13.0 is recommended).

flutter doctor 명령어 실행 시 다음과 같은 장애가 발생 CocoaPods 버전 문제로 발생하는 상황pod --version  다음 명령어를 이용해서 업데이트하여 장애 해결sudo gem install cocoapods -n/usr/local/bin

CUDA out of memeory.. 장애 발생 해결 방법
Devel/Deep Learning2024. 5. 3. 15:40CUDA out of memeory.. 장애 발생 해결 방법

[장애 메세지]If reserved memory is >> allocated memory try setting max_split_size_mb to avoid fragmentation. See documentation for Memory Management and PYTORCH_CUDA_ALLOC_CONF [해결 방법]다음과 유사한 방식으로 환경 변수 설정Windows: set 'PYTORCH_CUDA_ALLOC_CONF=max_split_size_mb:512'Linux: export 'PYTORCH_CUDA_ALLOC_CONF=max_split_size_mb:512'

Flutter 실행과 디버깅 방법
Devel/Mobile2024. 1. 28. 00:38Flutter 실행과 디버깅 방법

터미널에서 명령어로 프로젝트 생성 및 실행 flutter create ${project} #프로젝트 생성 flutter run#프로젝트 실행 flutter run -d all #iso, android emulator 동시 실행 # Android Emulator # Cold Boot / Boot 차이 # Cold Boot 완전히 종료 후 재실행 같이 실행 Visual Studio 생성 및 디버깅 모드로 실행하기 Shift + Command + P 누른 후 Flutter 입력 Flutter:New Project 실행 Application 선택 후 프로젝트 생성 경로 지정 Emulator 실행 Flutter: Launch Emulator 실행 프로젝트 실행 Shift + Command + P 누른 후 debu..

VS Code Flutter Extension 목록
Devel/Mobile2024. 1. 13. 22:40VS Code Flutter Extension 목록

1. Flutter, Dart 2. Awesome Flutter Snippets 3. Dart Data Class Generator 4. Error Lens 5. Flutter Tree 6. Pubspec Assist 7. Advanced New File

Flutter 개발 환경 구축 (Mac)
Devel/Mobile2024. 1. 13. 00:18Flutter 개발 환경 구축 (Mac)

1. Flutter SDK 다운로드 https://docs.flutter.dev/get-started/install/macos/mobile-ios?tab=download Start building Flutter iOS apps on macOS Configure your system to develop Flutter mobile apps on macOS and iOS. docs.flutter.dev 2. Flutter SDK 환경 변수 설정 Mac에서 zsh 사용 시 .zshrc 파일에 환경 변수 설정 # Flutter FLUTTER_HOME=/Users/kogun82/Documents/sdk/flutter/current PATH=$FLUTTER_HOME/bin:$PATH 3. Flutter Doctor ..

eclipse 4 rcp process dialog example
Devel/RCP(Rich Client Platform)2020. 9. 16. 14:05eclipse 4 rcp process dialog example

ProgressMonitorDialog progressDialog = new ProgressMonitorDialog(shell); try { progressDialog.run(false, true, new IRunnableWithProgress() { @Override public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException { int workload = 100; // Tell the user what you are doing monitor.beginTask("Copying files", workload); // Do your work for (int i = 0; i < workload; ..

eclipse plug-in RCP 프로젝트 resources  폴더 추가와 파일 읽기
Devel/RCP(Rich Client Platform)2020. 7. 31. 11:28eclipse plug-in RCP 프로젝트 resources 폴더 추가와 파일 읽기

plug-in RCP 프로젝트에 resources 폴더를 추가한다. 생성한 resources 폴더를 classpath에 설정한다. 아래의 코드와 같이 추가한 classpath에 추가된 데이터 파일을 읽을 수 있다. URL url = this.getClass().getClassLoader().getResource("resources"); try { String resourcesPath = FileLocator.toFileURL(url).getPath() + "/application.conf"; String conf = FileUtils.readFileToString(new File(resourcesPath)); } catch (IOException e) { // TODO Auto-generated catc..

image