목록분류 전체보기 (188)
좋은 프로그램은 마음의 여유에서 나온다.
eos 지갑 생성하기 $ cd /path_to_eos/build/programs/cleos $ cleos wallet create Creating wallet: default Save password to use in the future to unlock this wallet. Without password imported keys will not be retrievable. "A MASTER PASSWORD" 이제 default라는 지갑이 keosd안에 있게 되며, 지갑을 생성하면 master password가 나온다. 이 비밀번호는 지갑을 언락(decrypt)하는데 사용된다. 안전한 곳에 저장해놔야함. 지갑 파일 이름은 default.wallet로 생성되고, 기본적으로 keosd ~/eosio-wal..
이오스 nodeos 실행시 다음과 같은 에러가 날 경우 Failed to start a pending block, will try again later 실행 명령어에 --resync를 추가해준다. $ cd build/programs/nodeos $ ./nodeos -e -p eosio --plugin eosio::chain_api_plugin --plugin eosio::history_api_plugin --resync
맥에서 빌드가 실패하여..(다양한 에러,, 해결하면 계속 나와서) 도커를 깔고 ubuntu 16.04 에서 빌드 시도. $ docker run -it ubuntu bash $ apt-get update $ apt-get install libcurl4-gnutls-dev libexpat1-dev gettext libz-dev libssl-dev $ apt-get install git $ apt-get install sudo $ git clone https://github.com/EOSIO/eos --recursive $ cd eos $ ./eosio_build.sh _______ _______ _______ _________ _______ ( ____ \( ___ )( ____ \\__ __/( ___ )..
이오스로 댑 개발 삽질기를 작성할 예정입니다. 개발환경 : MAC PRO OS X 10.13.4 (High Sierra)i7 2.6GHz16GB Memory 파이썬은 3 버전대가 필요하므로 맥에 기본으로 2.7버전이 설치 되어 있기 때문에 pyenv로 버전 변경해서 하는게 좋음. https://jiyeonseo.github.io/2016/07/27/install-pyenv/ 레퍼런스 : https://github.com/EOSIO/eos/wiki/Local-Environment 다루는 용어 및 도구 nodeos : 서버 사이드 블록체인 노드 컴포넌트cleos : 블록체인과 상호작용하거나 지갑을 관리할 수 있는 CLIkeosd : EOS 지갑을 관리하는 컴포넌트 구성요소간의 관계도 출처 : https://..
room 엔티티 클래스에 롬복 어노테이션을 달으면 빌드시 겟터를 찾을 수 없다는 오류가 발생. 디펜던시에 lombo을 먼저 적어주면 해결. compile 'org.projectlombok:lombok:1.16.20' annotationProcessor 'org.projectlombok:lombok:1.16.20'implementation 'android.arch.persistence.room:runtime:1.0.0' annotationProcessor 'android.arch.persistence.room:compiler:1.0.0' https://github.com/rzwitserloot/lombok/issues/1403
안드로이드 스튜디오를 3.1로 업데이트한 후 프로젝트를 만들면 Failed to open zip file.Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)Re-download dependencies and sync project (requires network)Re-download dependencies and sync project (requires network) 위와 같은 오류가 날 경우 그래들 배포 zip 버전을 변경해주면 됨. https://services.gradle.org/distributions/ 에 gradle-4.4-all.zip 도 있는데 왜 안되는걸까? ..
파트2 문서 번역. 학습용 https://github.com/lky1001/SpringBoot2Tutorial/tree/part2
https://github.com/lky1001/SpringBoot2Tutorial 부트 2.0 출시전에 작성된 다음 블로그를 번역한 내용입니다. http://www.baeldung.com/new-spring-boot-2 아래는 피보탈의 슬라이드 영상입니다. https://content.pivotal.io/slides/whats-new-in-spring-boot-2-0
학습용 스프링부트 2.0.0.RELEASE 문서 번역 및 코드 https://github.com/lky1001/SpringBoot2Tutorial/tree/part1
안드로이드 4.4등 특정 버전에서 MultiDex 설정후에 시작 액티비티를 찾을 수 없다는 ClassNotFoundException이 발생함. 같은 이슈 : https://github.com/opendatakit/collect/issues/387 애플리케이션 클래스에 아래 코드 추가 @Override protected void attachBaseContext(Context base) { super.attachBaseContext(base); MultiDex.install(this); } 참고 : https://github.com/srsudar/MamasDelRioAndroid/blob/master/app/src/main/java/org/mamasdelrio/android/application/Collec..