2013년 12월 18일 수요일

운전면허 취득일 계산법

면허 번호의 앞 두자리 + 적성검사기간의 앞부분의 월일

 

예를 들어
내 운전면허 정보가 아래와 같다면
강원 04-111111-11
적성검사기간 2018.02.01 ~ 2018.06.28

나의 발급일자(취득일자)는 2004.02.01 이다.

2013년 11월 22일 금요일

Uncaught ReferenceError: 변수 is not defined

Uncaught ReferenceError: 변수 is not defined

크롬에서 볼 때 위와 같은 에러 발생.

예전에 스크립트의 위치를 변경하여 해결 한 적이 있어서 이리저리 위치를 바꿔보고,
jquery 의 ready 안에도 넣어보고 해도 안됨.

문제는 위의 '변수' 부분을 외부 소스를 가져온 부분에 정의 되어 있었는데, 이걸 못 불러온것임.

위치는 제대로 되어 있는 데, 왜 못 불러 올까 한참 찾다보니 현재 접속한 페이지의 url이 https 인데,

자바스크립트를 http로 불러올려고 하면 못 불러옴.

예를 들어 현재 작업 중인 페이지가 https://www.naver.com/test.html 이다. 라고 한다면 자바스크립트 외부 소스를 불러오는 것도

<script type="text/javascript" src="https://www.test.com/test.js"></script>

위와 같이 같이 https로 맞춰주면 제대로 동작한다.

 

아래와 같이 동적으로 치리 해도 됨.
<script language='javascript'>
var targetDomain = 'maps.google.com/maps/api/js?sensor=true';
var targetURL = location.protocol=="https:"?"https://"+targetDomain:"http://"+targetDomain;
document.writeln("<scr"+"ipt language='javascript' src='"+targetURL+"'></scr"+"ipt>");

</script>

2013년 11월 5일 화요일

하드디스크 크기

Small Form Factor SFF(2.5인치-6.35cm)
Large Form Factor LFF(3.5인치-8.89cm)

2013년 10월 10일 목요일

안드로이드 내장 브라우져 iframe 다운로드 문제

iframe 으로 불러온 페이지의 다운로드 링크를 안드로이드 내장 브라우저에서만 다운 받지 못하는 문제가 있다.

헤더값을 변경해 보고, 다운로드 프로그램으로 만들어서 넣어 봐도 다운이 안된다.


구글신이 말씀하시길 target="_blank" 를 넣어 보거라.

구글신님~ 감사합니다~






Android browser won't download pdf file

2013년 9월 26일 목요일

tomcat http를 https 로 redirect

web.xml 파일에 </web-app> 태그 마지막 부분에 추가
<!-- Automatisch alle requests redirecten naar https -->
<security-constraint>
<web-resource-collection>
<web-resource-name>Automatic SSL Forward</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>
CONFIDENTIAL
</transport-guarantee>
</user-data-constraint>
</security-constraint>

출처 : http://sysengineers.wordpress.com/2011/03/16/tomcat-automatic-redirect-https/

2013년 9월 17일 화요일

리눅스 시스템 환경변수파일 읽는 순서

시스템 환경변수파일 읽는 순서

etc/rc.d/rc.sysinit

/etc/rc.d/rcN.d # N은 0-6 사이.
/etc/rc.d/rc.local
/etc/profile
/etc/profile.d/*
/etc/bashrc
$HOME/.bash_profile 
$HOME/.bashrc


 

출처:http://onecellboy.tistory.com/220

2013년 9월 11일 수요일

CreateProcess error=2

외부 프로그램시 아래의 에러 발생.

CreateProcess error=2 파일이나 디렉토리 경로가 틀렸을때 나는 에러.

 

java.io.IOException: Cannot run program " C:\JavaDE\WebStie\someProgram.exe": CreateProcess error=2, ??d?? Æ???; ?; ¼? ¾ø

 

대충 보면 모르는데, 저기 C: 시작하는 부분 앞에 스페이스가 들어가 있음.

스페이스가 들어가면 안됨.