일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 아두이노
- 히라가나연습
- 몸매사진관리
- 녹보수 꽃
- myip
- 포켓몬
- 몽산포 자동차야영장
- 우분투
- 안드로이드
- 오토캠핑
- 리눅스 명령어
- 전남영광가마미해수욕장
- 스토어
- 헬스 운동 세트 타이머
- 옥션 이벤트
- 팔영산자동차야영장
- 광주 쌍암공원
- 도심캠핑
- 히라가나읽기연습
- 쌍암공원 버섯
- 우분투 OTP 연동
- 쌍암공원 무지개
- 광주여행
- 내장야영장
- 몽돌해변
- 모바일쿠폰관리
- vgrant
- 담양온천야외수영장
- 주정차시간알림
- 이벤트
- Today
- Total
KimsFactory*
로그 메시지가 깨질때 -Duser.language=en -Duser.region=us log4j 설정 지정 -Dlog4j.configurationFile=classpath:log4j2-dev.xml log4j 메시지 디버그 -Dlog4j2.debug=true
compose_version = '1.0.1' 에서 1.1.1 로 변경시에 > Task :app:kaptGenerateStubsDebugKotlin w: Runtime JAR files in the classpath should have the same version. These files were found in the classpath: C:/Users/user/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.5.30/5fd47535cc85f9e24996f939c2de6583991481b0/kotlin-stdlib-jdk8-1.5.30.jar (version 1.5) C:/Users/user/.gradle/cac..
Interactive switching mode sudo update-alternatives --config php Manual Switching From PHP 5.6 => PHP 7.1 Default PHP 5.6 is set on your system and you need to switch to PHP 7.1. Apache: $ sudo a2dismod php5.6 $ sudo a2enmod php7.1 $ sudo service apache2 restart Command Line: $ sudo update-alternatives --set php /usr/bin/php7.1 From PHP 7.1 => PHP 5.6 Default PHP 7.1 is set on your system and yo..
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 { implementation 'com.google.firebase:firebase-analytics:17.2.2' implementation 'com.google.firebase:firebase-crashlytics:17.0.0-beta01' }
Edit Filter Configuration Log Tag: ^((?!eglCodecCommon).)*$ 추가
[순서] 1. 새로 CLOB 필드를 추가하고 2. 데이터 원래필드 데이터로 업데이트하고 3. 원래필드 삭제하고 4. 바꿀필드를 원래필드명으로 변경 ALTER TABLE 테이블명 ADD (바꿀필드 CLOB); UPDATE 테이블명 SET 바꿀필드 = 원래필드; ALTER TABLE 테이블명 DROP COLUMN 원래필드; ALTER TABLE 테이블명 RENAME COLUMN 바꿀필드 TO 원래필드;
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()) { alert(message); input.focus(); return false; } break; case 'radio' : console.log('checked value : '+$('input:radio[name='..
가상머신(VirtualBox) 설치 https://www.virtualbox.org/wiki/Downloads Vagrant 설치 https://www.vagrantup.com/downloads.html Vagrant Box 검색 https://app.vagrantup.com/boxes/search Vagrantfile 생성(Vagrant 설정파일) $ vagrant init Vagrantfile 수정 ... # config.vm.box = "base" # 기존 내용 주석후 필요한 박스 이름을 입력 config.vm.box = "ubuntu/xenial64" ... Vagrant 실행 $ vagrant up 터미널 접속 $ vagrant ssh 웹서버 설정 (주석해제) ... config.vm.netwo..
명령프롬프트를 관리자 권한으로 실행 C:\WINDOWS\system32>bcdedit Windows 부팅 관리자 -------------------- identifier {bootmgr} device partition=\Device\HarddiskVolume1 description Windows Boot Manager locale ko-KR inherit {globalsettings} default {current} resumeobject {8779194d-58a2-11e8-8208-daf60c4e4853} displayorder {current} toolsdisplayorder {memdiag} timeout 30 Windows 부팅 로더 ------------------- identifier {cur..