Programming424 [autohotkey] xmind 입력 모드로 변경하기 [autohotkey] xmind 입력 모드로 변경하기 윈도우에서 xmind 사용시 한글 입력에 약간(?)의 불편함이 있습니다. 이처럼 입력모드가 아닌 상태에서 한글이 입력된다. 입력 도중 스페이스바가 눌리면 그때, 입력모드로 변경되면서, 스페이스바는 무시가 되는 상태가 되어 버립니다.이를 방지하고자, 새로운 노드 생성시, 스페이스바를 자동으로 입력하게 하여 입력모드로 변경하는 AHK 스크립트를 작성합니다. #ifWinActive ahk_exe XMind.exe global input_state := False ; tab 또는 enter 를 누르면, 입력 모드로 변경한다. TAB:: changeState() return ENTER:: changeState() return changeState(){ Sen.. 2017. 5. 27. [django] ImportError: cannot import name 'update_contenttypes' ImportError: cannot import name 'update_contenttypes' 장고에서 update_contenttypes 임포트 에러 발생시django.contrib.contenttype.apps.py 를 수정합니다. django 1.11 버전에서 생기는 오류 인것으로 보입니다. from .management import ( inject_rename_contenttypes_operations, # update_contenttypes, create_contenttypes, ) 기존의 update_contenttypes 대신 create_contenttypes로 수정합니다. def ready(self): pre_migrate.connect(inject_rename_contenttypes_.. 2017. 5. 24. JSP list to javascript JSP list to javascript JSP 로 부터 넘어온 리스트 객체를 자바스크립트 리스트 객체로 변환합니다. var obj_list = [ { 'seq' : '${item.seq}' , 'type' : '${item.type}' , 'title' : '${item.title}' , 'content' : '${item.content}' , 'lon_x' : '${item.lon_x}' , 'lat_y' : '${item.lat_y}' } ${not loop.last ? ',' : ''} ]; 리스트를 이용하여 처리합니다. // 이벤트 목록 마커 생성 for (var i = 0, len = obj_list.length; i < len; i++) { var item = obj_list[i]; // c.. 2017. 5. 23. [android] 사진 동영상 불러오기 Android 사진 동영상 불러오기 웹앱 사용 import android.webkit.JavascriptInterface; mWebView.addJavascriptInterface(new AndroidBridge(this), "androidJS"); 클래스 생성 //웹뷰 서버 자바스크립트 연동 private class AndroidBridge { Context context = null; public AndroidBridge(Context context) { this.context = context; } } 갤러리 이미지 호출 //갤러리 이미지 호출 Uri uri = Uri.parse("content://media/external/images/media"); Intent intent = new Inten.. 2017. 5. 19. OpenVPN windows 서버 및 클라이언트 설치 OpenVPN windows 서버 및 클라이언트 설치 서버설정 다운로드 및 설치 OpenVPN 설치파일 다운로드 → 설치 http://openvpn.net/index.php/open-source/downloads.html easy-rsa-old 다운로드 → 압축해제 https://github.com/OpenVPN/easy-rsa-old 커맨드 실행 cmd를 관리자 모드로 실행합니다. windows 폴더에서 커맨드를 실행합니다. 설정파일 초기화 > init-config copy vars.bat.sample vars.bat 1 file(s) copied. 환경변수 설정 > vars 만약 아래와 같은 에러가 발생하면 var.bat 스크립트를 수정합니다. '#' is not recognized a.. 2017. 5. 17. django-celery 장고에 스케쥴 설정 django-celery 장고에 스케쥴 설정 django-celery 설치 pip install django-celery proj/proj/settings.py 수정 INSTALLED_APPS = [ ... 'djcelery', 'kombu.transport.django', ] 데이터베이스 테이블 생성 python manage.py makemigrations python manage.py migrate proj/proj/settings.py 수정 import djcelery djcelery.setup_loader() BROKER_URL = 'django://' CELERYBEAT_SCHEDULER = 'djcelery.schedulers.DatabaseScheduler' proj/app/tasks.py .. 2017. 5. 14. 이전 1 ··· 13 14 15 16 17 18 19 ··· 71 다음