일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- DB
- node
- hamonikr
- 데이터베이스
- Atlassian
- 스크립트
- 파이썬
- 우분투
- 하모니카
- JS
- script
- 자바
- java
- 설치
- PostgreSQL
- 자바스크립트
- 3.0
- 윈도우
- 리눅스
- DATABASE
- Linux
- install
- python
- ubuntu
- postgres
- 설정
- Windows
- 노드
- Today
- Total
목록전체 글 (191)
LukeHan 의 잡다한 기술 블로그
개발 관련 문서 작성 중 페이지별 element 정보 목록을 추가할 필요가 있어 아래와 같이 작성하여 사용 하였다. function printElement(elem){ var print = ''; document.querySelectorAll(elem).forEach((ipt)=>{ var txt = ipt.tagName.toLocaleLowerCase(); if('' != ipt.id) txt += '#' + ipt.id; if('' != ipt.className) txt += '.' + ipt.className.replaceAll(' ', '.'); print += txt + '\n'; }); console.log(print);}printElement('input[typ..
npm i html2canvas 위와 같이 입력하여 html2canvas 패키지 설치를 한다. const html2canvas = require('html2canvas'); function saveScreenshot(canvas){ const link = document.createElement("a"); link.download = 'lukehan.png'; canvas.toBlob(function(blob){ link.href = URL.createObjectURL(blob); link.click(); }); } html2canvas(document.body, { allowTaint: true, useCORS: true, scale: 1 }).then(saveScreenshot); 위와 같이 코드를 ..
설정 페이지 이동 우측 상단 프로필 이미지 > Settings 메뉴 클릭 실행 좌측 메뉴 Emails 클릭 실행 메일 추가 설정 Add email address 항목에 추가하고자 하는 메일을 입력한 후 Add 버튼을 클릭 실행한다. 만약 메인으로 사용할 메일을 변경해야 하는 경우 Primary email address 항목에서 등록된 메일 중 사용할 메일을 선택한 후 Save 버튼을 클릭 실행하여 저장한다.
lukehan@lukehan:/etc/apache2/sites-available$ sudo certbot --apache Saving debug log to /var/log/letsencrypt/letsencrypt.log Which names would you like to activate HTTPS for? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1: test.lukehan.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Select the appropriate numbers separated by..
OS : Ubuntu 22.04.2 LTS lukehan@lukehan:/etc/apache2/sites-available$ sudo service apache2 status ● apache2.service - The Apache HTTP Server Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled) Active: active (running) since Fri 2024-03-08 17:11:50 KST; 5min ago Docs: https://httpd.apache.org/docs/2.4/ Process: 3639120 ExecStart=/usr/sbin/apachectl start (code=ex..
Git 설치 Link : https://git-scm.com/downloads 위의 주소로 접속하여 자신의 OS 환경에 맞는 버전을 다운로드 하여 설치한다. 기본 명령어 명령어 설명 예시 clone 저장소를 로컬 환경으로 복제하기 위해 사용한다. git clone https://github.com/lukehan/Pople_Server.git status 현재 local branch 상태를 확인한다. git status add 변경 사항을 commit 하기 위해서 add 한다. add 하지 않은 대상은 commit 에서 제외된다. # 전체 add 하는 경우 git add . # 특정 파일만 add 하는 경우 git add index.html commit add 한 목록을 commit 한다. git 은 co..