Warning: Don’t paste code into the DevTools Console that you don’t understand or haven’t reviewed yourself. This could allow attackers to steal your identity or take control of your computer. Please type “allow pasting” below and press Enter to allow pasting. 크롬이 보안상 붙여넣기 막아놓은 것. allow pasting 타이핑 후, 엔터. 붙여넣기가 가능해짐.
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..