일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JS
- 윈도우
- 3.0
- postgres
- 리눅스
- DATABASE
- 자바스크립트
- install
- Atlassian
- Linux
- 스크립트
- Windows
- 우분투
- java
- hamonikr
- 하모니카
- 노드
- 설치
- 파이썬
- script
- ubuntu
- 자바
- 설정
- python
- 데이터베이스
- node
- PostgreSQL
- 아틀라시안
- javascript
- DB
- Today
- Total
목록전체 글 (195)
LukeHan 의 잡다한 기술 블로그

git project 를 clone 하여 IntelliJ 에서 Open 하였으나 프로젝트 하위 폴더를 인식하지 못하는 경우가 발생 하였다. 좌측 상단 'File > Project Structure' 메뉴 클릭 실행 Project Structure 창 좌측 'Project Settings > Modules' 클릭 실행 후 우측 화면의 좌측 상단에 있는 '+' 를 클릭 실행한다. '+' 를 클릭 실행하면 위와 같이 Add 창이 나타나는데 'Import Module' 을 클릭 실행한다. import 설정 창이 나타나면 해당 프로젝트 폴더를 선택한 후 확인 버튼을 클릭 실행하면 폴더가 추가된 것을 확인할 수 있다.
브라우저 에서 앱 관리 화면 접속 후 F12 를 입력하여 Console 화면에서 아래 코드 실행 var list = document.querySelectorAll('#upm-manage-container .upm-plugin-row'); for(var i=0; i

이 문서는 Confluence 에서 Access 로그를 확인하여 접속 Browser 정보를 획득하는 방법입니다. 출력 코드 아래 코드를 확인 대상 서버의 Confluence 의 Access 로그가 있는 폴더에 추가한 후 실행합니다. #!/bin/bash echo "[$(date +%y%m%d_%H%M%S)] Start" # config export_log_file_for_customer="get_access_browser_list_$(date +%y%m%d_%H%M%S).log" export_log_file="get_access_browser_list_$(date +%y%m%d_%H%M%S).log" log_file="conf_access_log.2022-" last_month=07 cnt=05 #Sta..
개발 환경 구성 중 데이터를 import 하는 경우가 발생하는데, 이 경우 MS SQL 설치 시 Express 버전을 제외한 버전을 설치하기를 권장합니다. Express 버전 사용 시 라이선스 정책으로 인해 한 Database 당 최대 10240Mb 를 지원하여 'PRIMARY' 디스크 공간 부족 문제가 발생합니다. 참고 : https://knowledge.autodesk.com/ko/support/vault-products/troubleshooting/caas/sfdcarticles/sfdcarticles/KOR/Vault-SQL-Server-Express-limit-reached.html MSSQL 2014 : https://www.microsoft.com/ko-kr/download/confirmat..
해결책은 u261보다 오래된 Java 8 버전 또는 7.0.0보다 큰 Confluence 버전을 사용하는 것 참고 : https://community.developer.atlassian.com/t/confluence-template-plugin-tutorial-404-error/40928 https://stackoverflow.com/questions/63290222/atlassian-confluence-sdk-problem-starting-app-404
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..