| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- ethers type
- ethers v6
- 러스트기초
- cloud hsm 사용하기
- vue기초
- 티스토리챌린지
- Vue
- 오블완
- SBT표준
- cloud hsm 서명
- 머신러닝기초
- erc4337
- 계정추상화
- 스마트컨트렉트 예약어 함수이름 중복
- 컨트렉트 동일한 함수이름 호출
- cloud hsm
- 러스트 기초 학습
- Vue.js
- erc4337 contract
- ethers websocket
- ambiguous function description
- git rebase
- ethers typescript
- 러스트 기초
- rust 기초
- redux toolkit 설명
- 스마트컨트렉트 함수이름 중복 호출
- 체인의정석
- redux 기초
- 스마트 컨트렉트 함수이름 중복
- Today
- Total
목록전체 글 (529)
체인의정석
https://www.npmjs.com/package/eslint-plugin-security eslint-plugin-security Security rules for eslint www.npmjs.com eslint plugin security 사용 , 보안성을 향상시켜주는 모듈 사용방법은 위의 링크에 제시된 대로 .eslintrc 파일에 extends와 plugins를 추가시켜주니 작동이 되었다. npm run build를 실행하고 나니 새로운 problem이 생겼다. Generic Object Injection Sinkeslint(security/detect-object-injection) https://stackoverflow.com/questions/51715616/how-to-fix-coda..
오늘은 Toobusy.js를 사용해 보기 위한 서치를 해보았다. https://www.npmjs.com/package/toobusy-js toobusy-js Don't fall over when your Node.JS server is too busy. Now without native dependencies! www.npmjs.com Node-Toobusy What happens when your service is overwhelmed with traffic? Your server can do one of two things: Stop working, or... Keep serving as many requests as possible This library helps you do the latter..
차근차근 살펴본 결과 node-oracledb의 모듈을 체크해보라는 글을 발견했고 https://stackoverflow.com/questions/61153033/error-dpi-1047-cannot-locate-a-64-bit-oracle-client-library-in-nodejs Error: DPI-1047: Cannot locate a 64-bit Oracle Client library in NodeJS I recently need oracle db connectivity within my nodejs application. There is an official add-on node-oracledb powered by oracle. While integrating this add-on in my..
헤매다 보니까 이제 도커 명령어가 조금은 익숙해졌다. 로컬에 있는 파일을 도커로 옮기는 법은 생각보다 간단했다. docker cp /Users/lambda256/Downloads/instantclient-basiclite-linux.x64-21.3.0.0.0.zip oracle:/ 이렇게 로컬에 있는 경로에 cp를 두고 컨테이너 이름: 경로 를 해주는 것이다. 진짜 들어갔는지 확인을 해보면 (base) lambda256@ethan ~ % docker exec -it oracle bin/bash root@c025c1e0b2b4:/# ls bin dev etc instantclient-basiclite-linux.x64-21.3.0.0.0.zip lib media opt oracle-instantclient..
https://blogs.oracle.com/opal/docker-for-oracle-database-applications-in-nodejs-and-python-part-1 여기 저기 살펴보다 드디어 신빙성 있어보이는 블로그를 발견했다. 이번엔 제발 되기를 이미지 설치 후 $ sudo docker image pull oraclelinux:7-slim 설치된 이미지 확인하기 $ sudo docker images REPOSITORY TAG IMAGE ID CREATED SIZE oraclelinux 7-slim 874477adb545 3 weeks ago 118MB 홈페이지에 있는 그림을 보니 이해가 더 잘갔다. 파이썬 노드 PHP , go , ruby 등등의 표준적인 아키텍쳐들은 Oracle client..
------ 타 블로그 출저 정리글 ------------ 1. tar로 압축하기 > tar -cvf [파일명.tar] [폴더명] ex) abc라는 폴더를 aaa.tar로 압축하고자 한다면 > tar -cvf aaa.tar abc 2. tar 압축 풀기 > tar -xvf [파일명.tar] ex) aaa.tar라는 tar파일 압축을 풀고자 한다면 > tar -xvf aaa.tar 3. tar.gz로 압축하기 > tar -zcvf [파일명.tar.gz] [폴더명] ex) abc라는 폴더를 aaa.tar.gz로 압축하고자 한다면 > tar -zcvf aaa.tar.gz abc 4. tar.gz 압축 풀기 > tar -zxvf [파일명.tar.gz] ex) aaa.tar.gz라는 tar.gz파일 압축을 풀고자..
이더리움 노드에 있는 데이터를 S3에서 DB로 이전 시키기 위하여 시험삼아 몇개의 데이터 파일을 옮기고 걸린 시간도 측정하는 업무를 받았다. 다음과 같이 S3에 있는 파일이 0000000000001 , 0000000000002 라고 되어 있을 때 padStart를 사용하여 숫자를 0으로 채워줘서 파일이름을 만들어 주고 반복문을 돌려서 각 데이터베이스 쿼리에 로드를 시켜줄 수 있다. 또한 performace.now()를 아래와 같이 사용하여 각 실행별로 시간이 얼마나 걸리는지도 측정할 수 있다. async loadFromS3(_idx: string) { const sql = `쿼리문 ${_idx}` var t0 = performance.now() await this.database.query(sql,nul..
https://wookoa.tistory.com/239 [Oracle 12c] ORA-65096: invalid common user or role name 오류 전체적인 구조를 변경해서일까 Oracle 12c를 사용하면서 여러가지 오류에 직면하게 된다. 사용자 생성 방법이나 규칙이 조금 변했다. 일반적인 사용자 생성 스크립트로는 에러에 직면한다. ORA-65096 wookoa.tistory.com 다음과 같이 ORA-65096: invalid common user or role name 오류가 날 경우 SQL> create user root identified by oracle; create user root identified by oracle * ERROR at line 1: ORA-65096: i..