개발

[Jenkins] 설치

1. Jenkins 다운로드  https://www.jenkins.io/download/  “Generic Java package (.war)” 다운로드 2. apache-tomcat 설치  https://tomcat.apache.org/download-10.cgi  apache-tomcat 기동 전 환경변수에 JENKINS_HOME을 추가하여 데이터 디렉토리를 미리 지정한다.  예) -DJENKINS_HOME=D:\jenkins 3. jenkins 접속  http://localhost:8080/jenkins/ 4.Jenkins Plusgin 수동 설치  온라인 상태가 아닐 경우 미리 플러그인을 다운로드 받은 후 아래 메뉴에서 수동으로 설치.  Dashboard > Jenkins 관리 > Plugins > Advanced settings […]

[Jenkins] 설치 더 읽기"

웹사이트 검색 엔진 쿼리

구글https://www.google.com/search?q=%s 구글이미지http://www.google.com/images?q=%s 구글뉴스https://news.google.com/search?q=%s 유튜브https://www.youtube.com/results?search_query=%s 네이버https://search.naver.com/search.naver?sm=tab_hty.top&where=nexearch&query=%s 네이버쇼핑https://search.shopping.naver.com/search/all?query=%s 네이버뉴스https://search.naver.com/search.naver?query=%s&where=news&ie=utf8&sm=nws_hty 나무위키https://namu.wiki/w/%s 네이버지도https://map.naver.com/v5/search/%s 카카오지도https://map.kakao.com/?from=total&nil_suggest=btn&tab=place&q=%s 다나와https://search.danawa.com/dsearch.php?k1=%s 다음https://search.daum.net/search?w=tot&DA=YZR&t__nil_searchbox=btn&sug=&sugo=&sq=&o=&q=%s ■■테스트■■https://www.google.com/search?q=TESThttps://www.google.com/images?q=TESThttps://news.google.com/search?q=TESThttps://www.youtube.com/results?search_query=TESThttps://search.naver.com/search.naver?sm=tab_hty.top&where=nexearch&query=TESThttps://search.shopping.naver.com/search/all?query=TESThttps://search.naver.com/search.naver?query=TEST&where=news&ie=utf8&sm=nws_htyhttps://namu.wiki/w/TESThttps://map.naver.com/v5/search/TESThttps://map.kakao.com/?from=total&nil_suggest=btn&tab=place&q=TESThttps://search.danawa.com/dsearch.php?k1=TESThttps://search.daum.net/search?w=tot&DA=YZR&t__nil_searchbox=btn&sug=&sugo=&sq=&o=&q=TEST

웹사이트 검색 엔진 쿼리 더 읽기"

Dart 기본 문법

출처: https://at0z.tistory.com/155 기본 문법 (티스토리 코드블럭은 Dart를 지원하지 않아 우선 java로 표기합니다)   주석 //주석 /** * 주석 **/ /// 문서주석   문장 명령 단위. 세미콜론 ;으로 끝난다.   변수 data를 담는 상자. 종류는 type, 자료형이라고 함.dart는 int, double, String, bool을 기본 제공.사용자가 직접 타입을 정의할 수 있음. String name; name = “홍길동”; name =

Dart 기본 문법 더 읽기"

JVM(Java) 메모리 옵션 정리

JVM(Java) 메모리 옵션 정리 1. 최대 성능JAVA_OPTS=”-Djava.awt.headless=true -Dfile.encoding=UTF-8 -server -Xms1G -Xmx16G -Xss4m -XX:NewSize=256m -XX:MaxNewSize=512m -XX:+DisableExplicitGC -XX:-UseGCOverheadLimit” 2. 최대 안정 (for WebInspect)JAVA_OPTS=”-Djava.awt.headless=true -Dfile.encoding=UTF-8 -server -Xms1G -Xmx16G -Xss4m -XX:NewSize=256m -XX:MaxNewSize=512m -XX:+CMSClassUnloadingEnabled -Dsun.rmi.dgc.client.gcInterval=60000 -Dsun.rmi.dgc.server.gcInterval=60000 -XX:-UseGCOverheadLimit” ※ -XX:PermSize=512m -XX:MaxPermSize=512m는 Java 8에서 없어짐. ■ Heap영역 : new 연산자로 생성된 객체와 배열을 저장하는 영역으로 GC 대상이 되는 영역이다. 1.Eden, Survivor, Old로

JVM(Java) 메모리 옵션 정리 더 읽기"

내 텍스트 에디터 단축키 바인딩

▶ 기본 편집 키 바인딩 (VSCode 호환)줄 삭제 (Delete Line) Ctrl+Shift+K줄 복사 (Clone Caret Above/Below) Alt+Shift+Up,Down특정 줄 번호로 이동 (Go to Line) Ctrl+G심볼 이동 (Go to Symbol) Ctrl+Shift+O이전 함수 Ctrl+Alt+Up다음 함수 Ctrl+Alt+Down검색 (Find) Ctrl+F치환 (Replace) Ctrl+H다음 찾기 (Find Next) F3앞으로 찾기 (Find Previous) Shift+F3천체 파일 검색 Ctrl+Shift+F천체 파일 치환 Ctrl+Shift+H이전 탭 Ctrl+Tab다음 탭 Ctrl+Shift+Tab전체화면 토글

내 텍스트 에디터 단축키 바인딩 더 읽기"

[PHP] URL 파일 불필요한 정보 삭제

<?php /* URL파일에서 불필요한 라인을 삭제한다. 사용방법: php url_remove_superfluous_info.php "D:\settings\config\favorites\10_my favorites\netflix.url" */ $fp = fopen($argv[1], "r") or die($argv[1] . "Unable to open file! (read)"); $ii = 0; while (!feof($fp)) { $oneline = fgets($fp); $read_str[$ii] = str_replace(array( "\n", "\t", "\r" ) , '', $oneline); $ii++; } fclose($fp); echo $argv[1] . "\n"; $fp = fopen($argv[1], "w") or

[PHP] URL 파일 불필요한 정보 삭제 더 읽기"

[PHP] 소스파일들을 Phar로 묶기

<?php // php.ini에서 phar.readonly = Off 로 설정 후 사용 try { $pharFile = ‘countrycurrency.phar’; // clean up if (file_exists($pharFile)) { unlink($pharFile); } if (file_exists($pharFile . ‘.gz’)) { unlink($pharFile . ‘.gz’); } // create phar $phar = new Phar($pharFile); // start buffering. Mandatory to modify stub to add shebang $phar->startBuffering(); // Create the default stub

[PHP] 소스파일들을 Phar로 묶기 더 읽기"

위로 스크롤