PhoneExperienceHost.exe 시작-검색-휴대폰과 연결-우클릭 앱설정-백그라운드 앱 끔. 시작-검색-시작 앱-시작 프로그램 끔. svccare MFC 응용 프로그램 작업 관리자-시작 프로그램-우클릭 파일 위치 열기-경로 확인(C:\Program Files (x86)\infitec) 보안 프로그램인데 프로그램 제거 목록에 없음. 수동 삭제. msedgewebview2.exe // 아웃룩 관련 렌더링 프로세스. 불필요시 삭제. 재설치(https://developer.microsoft.com/ko-kr/microsoft-edge/webview2/?form=MA13LH#download)
DarkNamer// 파일명 변경 프로그램. 파일명 일괄 변경.
16년 9월 기준. compile "org.apache.logging.log4j:log4j-api:${version.log4j}" compile "org.apache.logging.log4j:log4j-core:${version.log4j}" compile "org.apache.logging.log4j:log4j-jcl:${version.log4j}" // commons-logging bridge compile "org.apache.logging.log4j:log4j-1.2-api:${version.log4j}" // 1.x version bridge compile "org.apache.logging.log4j:log4j-slf4j-impl:${version.log4j}" // slf4j bridge h..
escape() 아래 열거된 아스키문자가 아니라면 모두 유니코드 형식으로 변환 ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz 1234567890 @*-_+./ var data = "test&test"; var url = "http://test.com?data="+escape(data); encodeURI() escape()와 비슷한 동작을 하지만 인터넷 주소표시에 쓰이는 특수문자들을 인코딩하지 않음 : ; / = ? & 등의 특수문자는 인코딩이 되지 않음. URL 전체를 인코딩할 때 사용 var url = "http://test.com?data=test"; var encode = encodeURI(url); encodeURIComponent() escap..
import java.net.InetAddress; import java.net.UnknownHostException; import java.util.Scanner; public class Test { public static void main(String[] args) { Scanner scan = new Scanner(System.in); InetAddress inetaddr[] = null; System.out.print("주소 입력 : "); String str = scan.nextLine(); try { inetaddr = InetAddress.getAllByName(str); } catch (UnknownHostException e) { e.printStackTrace(); } for (int..
16년 9월 기준. String url = AppConfig.REQUEST_URL; URL obj = new URL(url); HttpsURLConnection con = (HttpsURLConnection) obj.openConnection(); String userCredentials = AppConfig.APP_CONFIG.get("Authorization"); String basicAuth = "Basic "+new String(new Base64().encode(userCredentials.getBytes())); con.setRequestMethod("POST"); con.setRequestProperty("User-Agent", "Mozilla/5.0"); con.setRequestPrope..
17년 3월 기준. git init // 저장소 생성 git add // 파일 추가 git commit -m 'init' // git commit git clone 주소 // git clone git status // 상태 확인 git remote -v // 원격 저장소 확인 ssh://ossadmin@192.168.100.74/home/ossadmin/oam4_fe_git D:/workspace/oam4_fe_git // git clone 주소 git config --bool core.bare true // push 가능하게 bare로 변경 Git_GUI Rescan // 변경 내용 검색 Stage Changed // 변경 내용 적용 Sign Off // 서명넣기 Commit // 로컬 저장소에 com..
13년 8월 기준. mysql-installer-web-community // 웹에서 다운 mysql-installer-community // 풀 버전 mysql 콘솔 mysql -u root -p Enter password: use garage; select * from garage_info quit; root 패스워드 재설정 mysql stop후에 콘솔창에서 mysqld --skip-grant // 권한 스킵 다른창에서 mysql> use mysql; mysql> UPDATE user SET password=PASSWORD('root') where user='root'; mysql> FLUSH PRIVILEGES; mysql> quit localhost가 아닌 서버 아이피로 접속시에는 root외의 계..
23년 8월 기준. MySQL Workbench(MySQL) SQL Development // SQL 작업하는 페이지 Data Modeling // EER Model 설계 Server Administration // 서버 단위로 관리 EER Diagram으로 DB 설계. File-Export-Forward Engineer SQL Script 에서 sql 형식으로 export Default Schema 미설정 시, 후에 DB 우클릭해서 set as Default Schema 해줘야 함. Query Excute(Ctrl+Enter)시에 커서위치 기준. 공백시 앞에 것 실행. 테이블 우클릭, Alter Table로 컬럼 코멘트 수정. Table Inspector로 전체 코멘트 확인 AWS DB 접속시, Con..