일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- javascript
- DATABASE
- Windows
- 노드
- script
- hamonikr
- 아틀라시안
- JS
- 자바
- java
- Atlassian
- 설정
- install
- postgres
- 우분투
- 리눅스
- ubuntu
- python
- 3.0
- Linux
- 스크립트
- PostgreSQL
- 하모니카
- DB
- node
- 윈도우
- 설치
- 자바스크립트
- 데이터베이스
- 파이썬
- Today
- Total
목록JS (13)
LukeHan 의 잡다한 기술 블로그
function startTimer(duration, display){ var timer = duration, seconds; var interval = setInterval(function(){ seconds = parseInt(timer % 60, 10); seconds = seconds < 10 ? "0" + seconds : seconds; display.textContent = seconds; if(timer === 0){ clearInterval(interval); } if(--timer < 0){ timer = duration; } }, 1000); } startTimer(60, document.querySelector('#timeCount'));
javascript 를 사용하여 개발 중 일정 시간 지연시간을 적용할 필요가 있었다. for(var i=0; i
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..
브라우저 에서 앱 관리 화면 접속 후 F12 를 입력하여 Console 화면에서 아래 코드 실행 var list = document.querySelectorAll('#upm-manage-container .upm-plugin-row'); for(var i=0; i
var type = navigator.appName; var lang = navigator.userLanguage; if(type=="Netscape") lang = navigator.language // 국가코드에서 앞 2글자만 자름 var lang = lang.substr(0,2); if(lang == "en"){ // 영어인 경우 window.location.replace('/en/index.html'); } else if (lang == "de"){ // 독일어인 경우 window.location.replace('/de/index.html'); } else if (lang == "es"){ // 스페인어 인 경우 window.location.replace('/es/index.html'); } el..
해당 문서는 Gerrit 3.x 버전에서 진행하였습니다. Document Document for Plugin(jar) : https://gerrit-review.googlesource.com/Documentation/dev-plugins.html Document for js : https://gerrit-review.googlesource.com/Documentation/pg-plugin-dev.html 공식 문서 상 gerrit 은 jar 파일 및 javascript 로 Plugin 개발 및 적용이 가능하다. Make js Plugin /** * @Date 2022.02.08 * @Auther LukeHan { // your codes ... }); 위의 코드는 javascript Plugin 의 Sk..