본문 바로가기

[Etc] 와이파이 공유기 제조사 별 접속 정보 공유기제조사 관리자페이지 접속 주소 관리자 접속 정보 포트포워딩 설정메뉴 경로 IPTIME(아이피타임) 192.168.0.1 admin / admin 관리도구 > 고급설정 > NAT/라우터 관리 > 포트 포워드설정 ASUS(아수스) 192.168.0.1 admin / admin NAT설정 > 가상 서버 D-LINK(디링크) 192.168.0.1 admin / - 고급 >> 포트 포워딩 or 가상 서버 NetGear(넷기어) 192.168.0.1 admin / 1234 or password 고급 > 포트 포워딩 > Add Custom Service ZIO(지오) 192.168.10.1 - NAT > 포트포워딩 설정 Samsung(삼성) 192.168.123.254 admin / - 고급설정 > 포워딩 / ..
[jQuery] 무료 차트(chart) 플러그인 정리 무료 차트(chart) 플러그인 1. chart.js https://www.chartjs.org/ Chart.js | Open source HTML5 Charts for your website New in 2.0 New chart axis types Plot complex, sparse datasets on date time, logarithmic or even entirely custom scales with ease. www.chartjs.org 2. 구글차트 https://developers.google.com/chart Charts | Google Developers Interactive charts for browsers and mobile devices. developers.google.com..
[Android] Android WebView 디버깅 1. 테스트를 진행할 단말기의 디버깅 모드를 활성화 한후 PC 에 연결 https://search.naver.com/search.naver?where=nexearch&sm=top_hty&fbm=0&ie=utf8&query=android+%EB%94%94%EB%B2%84%EA%B9%85+%EB%AA%A8%EB%93%9C android 디버깅 모드 : 네이버 통합검색 'android 디버깅 모드'의 네이버 통합검색 결과입니다. search.naver.com 2. 아래와 같이 웹뷰의 디버깅 모드를 활성화 mWebView.setWebContentsDebuggingEnabled(true); 3. Chrome 에서 chrome://inspect/#devices 링크로 접속 https://search.naver.co..
[Android] 카카오 로그인 시 에러 Android 에서 카카오 로그인 연동 시 하기와 같이 에러 발생하면서 로그인이 불가능한 상태가 발생한다. 2021-09-23 11:00:36.327 4851-4851/? E/AndroidRuntime: FATAL EXCEPTION: main Process: kr.co.test, PID: 4851 java.lang.RuntimeException: Unable to create application kr.co.test.utils.GlobalApplication: java.lang.NullPointerException: Argument 'cacheName' cannot be null at android.app.ActivityThread.handleBindApplication(ActivityThread.jav..
[Web] 소스 코드 정렬해주는 사이트 정보 http://tools.arantius.com/tabifier Tools - Tabifier (HTML and CSS code beautifier) - arantius.com Tabifier The tabifier is a tool to properly indent computer code. The style it produces is a mix of my personal preferences for indentation plus what I could manage to make a program produce from dirty source. The tabifier currently supports CSS, HTML, and tools.arantius.com - JS 정렬해주는 사이트 http://js..
[Javascript] 무료 그리드 라이브러리 정보 - SlickGrid : 대용량 데이터에 적합 https://github.com/6pac/SlickGrid GitHub - 6pac/SlickGrid: A lightning fast JavaScript grid/spreadsheet A lightning fast JavaScript grid/spreadsheet. Contribute to 6pac/SlickGrid development by creating an account on GitHub. github.com - ToastUi Grid https://ui.toast.com/tui-grid TOAST UI :: Make Your Web Delicious! The TOAST UI Is Free Open-source JavaScript UI Librari..
[ Android ] a webview method was called on thread 'javabridge' 에러가 발생했을 때 안드로이드 Webview에서 Javascript를 호출할 때 하기와 같이 ll WebView methods must be called on the same thread.라는 메시지가 뜰 때 있습니다. W/WebView: java.lang.Throwable: A WebView method was called on thread 'JavaBridge'. All WebView methods must be called on the same thread. (Expected Looper Looper (main, tid 2) {b815192} called on Looper (JavaBridge, tid 1239) {8687233}, FYI main Looper is Looper (main, tid 2) {b815192..
[Tomcat] Spring Profile 지정하기 tomcat/bin 디렉토리 - Linux setenv.sh 파일 생성 후 아래와 같이 작성 JAVA_OPTS="$JAVA_OPTS -Dspring.profiles.active={profile_name}" - Window setenv.bat 파일 생성 후 아래와 같이 작성 JAVA_OPTS=%JAVA_OPTS% -Dspring.profiles.active={profile_name}