본문 바로가기

Programming13

HTML5에서 Application Cache 설정하기 가장 기본적인 것만 설명하면 태그에 manifest="manifest파일명"을 추가한다. 그리고 웹서버에 mine-type을 추가한다.tomcat은 web.xml에 다음과 같이 추가한다. manifest text/cache-manifest apache는 httpd.conf 파일에 추가하면 된다. 설정은 ... 2013. 12. 23.
jquery mobile에서 ajax로 데이터를 가져오고 css가 적용 안될때 해당 범위를 trigger 를 이용하여 생성 한다.stackflow에서 가져온 예.. $(document).ready(function(){ $.get(my_url, function(data) { var content = $('div[data-role="content"]').html(data); $('h3').each(function(h3_element) { var coll = $(''); coll.append($(this)); coll.append($('')); content.append(coll); }); content.trigger( "create" ); 2013. 10. 25.
frameset을 사용한 웹페이지에서 jquery 작성하기 http://iainhoult.blogspot.kr/2011/01/using-jquery-with-frames.html 결론은 jquery 코드를 작성하려는 웹페이지가 어디인지 selector에서 지정을 하면 됨. 2013. 9. 25.
안드로이드 개발환경 쉽게 만들기 먼저 안드로이드 개발자 사이트에 접속한다.http://developer.android.com/sdk/index.html 아래의 그림처럼 1번을 클릭하면 안드로이드 SDK 다운로드 화면이 나온다. 2번을 클릭하면 개발환경인 eclipse와 sdk를 압축한 파일을 다운로드 받는다. 다운로드 받은 파일을 C:\에 압축을 푼다. 이미 eclipse를 설치한 사용자라면 3번을 클릭하여 순서대로 설치작업을 진행한다. 단, JAVA SDK는 아래의 사이트에서 다운받아 설치한다.http://www.oracle.com/technetwork/java/javase/downloads/index.html 2013. 1. 23.
How to make php code for sending html email inclued korean ref : http://php.net/manual/en/function.mail.php 1. Insert header data in email$headers = "From: kim@example.com\n" $headers .= "Reply-To: john@example.com"; $headers .= "MIME-Version: 1.0\n"; $headers .= 'Content-type: text/html; charset=UTF-8\n"; $headers .= 'Content-Transfer-Encoding: 8bit\n"; 2. convert email subject using base64_encode $subject = "=?utf-8?B?".base64_encode($subject)."?=\n";.. 2012. 4. 26.
python에서 숫자에 콤마를 넣어서 출력하기 >>> import locale >>> locale.setlocale(locale.LC_ALL, 'en_US') 'en_US' >>> locale.format("%d", 1255000, grouping=True) '1,255,000' 2011. 3. 23.