일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ubuntu
- JS
- Atlassian
- python
- 설치
- 자바스크립트
- 하모니카
- java
- 우분투
- postgres
- Windows
- Linux
- DATABASE
- DB
- javascript
- hamonikr
- 데이터베이스
- 아틀라시안
- 스크립트
- script
- 리눅스
- node
- 윈도우
- 설정
- 파이썬
- PostgreSQL
- 자바
- 3.0
- install
- 노드
- Today
- Total
목록전체 글 (191)
LukeHan 의 잡다한 기술 블로그
// byte to hex function toHexString(byteArray){ return Array.from(byteArray, function(byte){ return ('0' + (byte & 0xFF).toString(16)).slice(-2); }).join('') } // number to hex function dec2hex(num){ hexString = num.toString(16); return hexString; } // hex to number function hex2dec(hexString){ num = parseInt(hexString, 16); return num; } // char to ascii function char2ascii(numStr){ return numS..
//package.json { "name": "application", "version": "1.0.0", "description": "Desktop Application!", "main": "main.js", "scripts": { "start": "electron .", "build": "electron-builder --windows nsis:ia32" }, "author": "GitHub", "license": "CC0-1.0", "devDependencies": { "electron": "^23.1.2" } } // main.js const { app } = require('electron'); console.log(app.getVersion()); console.log(app.getName()..
NVM 이란? Node Version Manager 의 약자이고 여러 버전의 Node.js 설치 및 버전 관리를 지원해 주는 도구 Node.js 설치하기 이전에는 n 패키지를 통해 Node.js 설치를 지원하였으나, 더 이상 Windows 를 지원하지 않는다고 한다. 아래의 링크에서 직접 다운로드하여 설치 진행한다. Node.js Download : https://nodejs.org/en/ NVM for Windows 다운로드 Windows 용 NVM 은 아래의 Github 페이지에서 다운로드 받는다. NVM for Windows Github : https://github.com/coreybutler/nvm-windows Github 페이지의 README.md 항목을 확인해 보면 위와 같이 'Downlo..
개발 진행 중 다른 repository 에 있는 commit 을 가져와야 하는 일이 있어 아래와 같이 정리한다. 동일 repository의 다른 branch 일 경우 git의 cherry pick 기능을 사용해서 브랜치의 커밋포인트를 적용 할 수 있는데, 다른 repository의 커밋 포인트를 땡겨와야 할 경우, 아래 명령어를 실행해서 이를 진행 할 수 있다. # 1. 기존 브랜치 clone git clone git@github.com:sample/sample-project.git # 2. cherry pick을 하고자 하는 다른 repository 추가하면서 repo의 가칭까지 정해준다 ("sample2") git remote add sample2 git://github.com/sample2/samp..
서브모듈 추가하기 메인으로 사용하는 저장소에서 서브모듈을 사용하고 싶다면 아래와 같이 명령어를 사용하여 추가할 수 있다. git submodule add 위와 같이 명령어를 사용하면 .gitmodules에 서브모듈이 아래처럼 추가된다. [submodule "sample-submodule"] path = sample-submodule url = https://github.com/user-id/sample-submodule git status 명령어를 사용하면 두가지가 추가된 것을 확인할 수 있다. 서브모듈 업데이트 서브모듈이 외부에서 업데이트가 되었을 때 현재 사용하려는 메인 깃에도 반영하기 위해 아래와 같이 명령어를 입력한다. git submodule update 서브모듈 제거 git submodule ..
... atlassian-plugin.xml 파일에 위와 같이 web-section 을 추가한다. https://your.domain.net:7990/plugins/servlet/upm?web.panels 위와 같이 url 뒤에 ?web.panels 를 추가한다. url 을 입력하면 위와 같이 화면에 location 정보 및 key 정보를 확인할 수 있다. 해당 정보를 참고하여 필요한 위치에 web-section 을 추가한다. 참고 https://developer.atlassian.com/server/bitbucket/reference/web-fragments/ https://developer.atlassian.com/server/bitbucket/reference/web-resource-contexts..