일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 마스터링 비트코인
- solidity
- keras
- 암호화폐
- js
- 레디스
- 공개키
- DAPP
- node js
- 개인키
- 개발
- 솔리디티
- 블록체인
- javascript
- 주소
- Ethereum
- 블록체인개발
- python
- 파이썬
- pythonic
- 비트코인
- 마스터링비트코인
- Redis
- 마스터링 이더리움
- smart contract
- 문자열
- 알고리즘
- 백서
- 이더리움
- 스마트컨트랙트
- Today
- Total
목록Today I Learned (13)
개발이야기
* 오늘 생긴 문제 "^"를 구분자로 문자열을 나눠 스트링 배열로 만들려고 하였지만 제대로 쪼개지지 않고 문자열이 유지되면서 0번째 값만 채워지는 상황 지속 * 원인 구분자로 썻던 "^"가 정규표현식 메타문자였다! www.ktword.co.kr/abbr_view.php?m_temp1=5851 정규표현 메타 문자 [정보통신기술용어해설] www.ktword.co.kr * 해결방안 이스케이프 문자인 "\"를 넣으면 해결됩니다. // X String s = "이렇게^하면^되는지 궁금하네요"; String[] s1 = s.split("^"); System.out.println(s1[0]); // 출력값: 이렇게^하면^되는지 궁금하네요 // O String s = "이렇게^하면^되는지 궁금하네요"; String[]..
- 에러 " [ts] Cannot invoke an expression whose type lacks a call signature. Type 'typeof import("/your_project/node_modules/axios/index")' has no compatible call signatures. " - 문제상황 import * as axios from 'axios'; - 해결 방법 import axios from 'axios' 참고 https://github.com/axios/axios/issues/734
node.js 환경에서 서버를 띄우기 위해 nodemon 명령어를 사용하는 중 아래와 같은 에러가 발생했습니다. " Error: EINVAL: invalid argument, unlink ... " 크게 수정한 부분이 없는데 발생한 에러라 디버깅 하는데 어려움을 겪었습니다. 그러던 중 nodemon을 두 곳에서 사용하고 있는 것을 발견했고 한 곳의 연결을 끊으니 위와 같은 오류가 발생하지 않았습니다. 참고 [1] https://stackoverflow.com/questions/47087759/getting-error-einval-invalid-argument-read-for-npm-install-save-dev-esli getting "Error: EINVAL: invalid argument, read"..
Konlpy Error 해결하기 - 에러 문구 "Package kr.lucypark.okt.OktInterface is not Callable” - 에러 상황 Konlpy 를 Pip3 로 설치하고 사용하려는 중 계속 이 에러가 발생하였다. Okt , Kkma 모두 마찬가지였던. - 해결 과정 깃허브에 관련 이슈를 찾아보니 자바 설치 관련 문제였다. (https://github.com/konlpy/konlpy/issues/81?fbclid=IwAR0gHoR0F1u40Sb1jRRGIIqjVI3LCXkRC0-4brP3PvFY7CSXuaJKoNSx0Ro) => 깃허브 주소 자바를 설치하고 환경설정까지 해주자. 자바 설치는 https://www.oracle.com/technetwork/java/javase/dow..
- scala Scala for Data Science Engineering — Part 1 https://towardsdatascience.com/scala-for-data-science-engineering-part-1-6a0a5738d7b0 Learn Scala from 0–60: The Basics https://medium.freecodecamp.org/learning-scala-from-0-60-part-i-dc095d274b78 - Pythonic How to be Pythonic and why you should care https://towardsdatascience.com/how-to-be-pythonic-and-why-you-should-care-188d63a5037e - Coding..
2019 / 03 / 01 git branch 관리 http://amazingguni.github.io/blog/2016/03/git-branch-%EA%B7%9C%EC%B9%99https://git-scm.com/book/ko/v2/Git-%EB%B8%8C%EB%9E%9C%EC%B9%98-%EB%B8%8C%EB%9E%9C%EC%B9%98-%EA%B4%80%EB%A6%AC https://academy.realm.io/kr/posts/360andev-savvas-dalkitsis-using-git-like-a-pro/ https://git-scm.com/book/ko/v2/Appendix-C%3A-Git-%EB%AA%85%EB%A0%B9%EC%96%B4-Branch%EC%99%80-Merge GitHub ..
aws ec2 linux 서버에서 pip3 install 중 다음과 같은 에러가 발생하였습니다. "Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/usr/lib64/python3.6/site-packages/numpy-1.16.1.dist-info' Consider using the `--user` option or check the permissions." permission 관련 에러였습니다. 구글링 검색 결과 다음과 같은 커맨드를 입력하니 제대로 설치가 완료 되었습니다. python3 -m pip install -user "package name" 예시) 제대로 설치가 완료되었습니다!! 레퍼런..
pep8 변수명 설정 convention - Class Names " Class names should normally use the CapWords convention. " class의 이름은 CapWords convention 을 따른다. 즉 첫 글자는 대문자 이어지는 다음 단어가 있으면 다음 단어의 첫 글자 역시 대문자이다. ex ) class CustomLogger: - Function and Variable Names "Function names should be lowercase, with words separated by underscores as necessary to improve readability." 함수명과 변수명은 둘 다 소문자로 쓰는것이 원칙이다. 두 단어를 사용하는 경우 '_..