스마일페이 탈퇴 후 연회비 환불 방법 안내

스마일페이 탈퇴 연회비 환불 안내 스마일페이는 많은 소비자에게 편리한 결제 수단을 제공하는 서비스입니다. 하지만 경우에 따라 사용자가 자신의 계정을 탈퇴하고자 ...
Read more

하나은행 ATM 및 창구에서 통장 카드 없이 현금 인출하는 방법 안내

하나은행에서 카드 없이 현금 인출하기 하나은행은 고객의 편의성을 높이기 위해 다양한 현금 인출 방법을 제공하고 있습니다. 그 중에서도 카드 없이 ...
Read more

VM options (로그 메시지 깨질때, log4j 직접 지정, log4j 디버그)

로그 메시지가 깨질때 -Duser.language=en -Duser.region=us   log4j 설정 지정 -Dlog4j.configurationFile=classpath:log4j2-dev.xml   log4j 메시지 디버그 -Dlog4j2.debug=true
Read more

Android [안드로이드] Runtime JAR files in the classpath should have the same version. 오류 해결

compose_version = ‘1.0.1’ 에서 1.1.1 로 변경시에  > Task :app:kaptGenerateStubsDebugKotlinw: Runtime JAR files in the classpath should have the same ...
Read more

Ubuntu php 버전 변경

Interactive switching mode sudo update-alternatives –config php Manual Switching From PHP 5.6 => PHP 7.1 Default PHP 5.6 is set ...
Read more

Firebase Crashlytics 설정

build.gradle (project)   dependencies {     classpath ‘com.google.firebase:firebase-crashlytics-gradle:2.0.0-beta02’ }   build.gradle(app)   apply plugin: ‘com.google.firebase.crashlytics’   dependencies {   ...
Read more

안드로이드 LogCat E/eglCodeCommon 로그 숨기기

Edit Filter Configuration Log Tag: ^((?!eglCodecCommon).)*$ 추가
Read more

오라클 VARCHAR2 를 CLOB로 변경

[순서] 1. 새로 CLOB 필드를 추가하고 2. 데이터 원래필드 데이터로 업데이트하고 3. 원래필드 삭제하고 4. 바꿀필드를 원래필드명으로 변경   ALTER TABLE 테이블명 ADD (바꿀필드 CLOB); ...
Read more

폼 유효성 검사 스크립트(jQuery)

function fieldValueCheck(field, message) {try {var input = $(‘[name=’+field+’]’).get(0);//console.log(input.tagName+” “+input.type);switch (input.tagName.toLowerCase()) {case ‘input’ :switch (input.type.toLowerCase()) {case ‘file’ :case ‘text’ :if (!$(input).val()) ...
Read more