일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- install
- 리눅스
- 하모니카
- javascript
- DATABASE
- 3.0
- 우분투
- 자바스크립트
- 파이썬
- Linux
- 노드
- Atlassian
- hamonikr
- 설치
- Windows
- 윈도우
- python
- node
- 데이터베이스
- 자바
- script
- JS
- postgres
- PostgreSQL
- 스크립트
- java
- ubuntu
- 설정
- DB
- 아틀라시안
- Today
- Total
목록전체 글 (195)
LukeHan 의 잡다한 기술 블로그
function setCookie(name, value, exp){ var date = new Date(); date.setTime(date.getTime() + exp*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + date.toUTCString() + ';path=/'; }; function getCookie(name){ var value = document.cookie.match('(^|;) ?' + name + '=([^;]*)(;|$)'); return value? value[2] : null; };
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
개발 진행 중 object 의 key 와 value 을 배열로 출력할 필요가 있어 아래와 같이 정리해 둔다. const obj = { a: 'luke' , b: 35 , c: true , d: {} }; 위와 같은 형식의 데이터 배열을 준비한다. console.log(Object.keys(obj)); // Array ["a", "b", "c", "d"] 위와 같이 Object.keys 메서드를 활용하면 key 정보를 배열로 출력 할 수 있다. console.log(Object.values(obj)); // Array ["luke", 35, true, Object { }] 위와 같이 Object.values 메서드를 활용하면 value 정보를 배열로 출력 할 수 있다. for(var key of Objec..
// 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()..