프로그램언어 사용 순위 2013-05
TIOBE에서 순위를 학인하면 된다. TIOBE(http://www.tiobe.com/)에서 상단 메뉴중 Paper&Info 메뉴에서 Tiobe Index 를 선택하면 프로그램 언어의 순위를 확인할 수 있다.
TIOBE에서 순위를 학인하면 된다. TIOBE(http://www.tiobe.com/)에서 상단 메뉴중 Paper&Info 메뉴에서 Tiobe Index 를 선택하면 프로그램 언어의 순위를 확인할 수 있다.
아파치의 httpd-user.conf 파일 맨 하단에 #DOS 공격 보안 모듈입니다. #1초동안 5 개 페이지 요청 또는 1초 동안 75개 파일 요청시 #10초동안 403 메세지를 뿌리며 제한합니다. […]
실무에서 권장되는 사용 패턴 작업 응답 코드 응답 메서드 응답 Body 생성(Create) 201 CreatedAtAction() 생성된 데이터 조회(Read) 200 Ok() 데이터 업데이트(Update) 200 Ok() 업데이트된 데이터 […]
1.Grid 종류 1. jqGrid 바로가기:https://free-jqgrid.github.io/examples/index.htmlhttp://www.trirand.net/default.aspx 바로가기:http://www.trirand.com/blog/jqgrid/jqgrid.html 2. RealGrid service.realgrid.com/wheretogo
바로 가기 : http://arshaw.com/fullcalendar/
맥 주소와 IP주소를 수집하고 회사에 비용청구 하고 있습니다. 외국계 악덕 기업에 넘어가더니 악덕법무법인을 통해서 비용청구 하고 있습니다. 지우더라도 3년간 IP를 보관한다고 하네요. 한 SW업계 관계자는 […]
바로 가기 : https://developers.google.com/youtube/youtube_player_demo
필요에 따른 mysql dump 방법 1. database 전체 데이터베이스 dump
1 2 3 |
# mysqldump -u root -p –all-databases > db.sql |
2. 특정 테이블만 dump
1 2 3 |
# mysqldump -u root -p db명 talbe1 table2 > table.sql |
3. 스키마(테이블구조만) dump
1 2 3 |
# mysqldump –no-data db명 > db.sql |
4. 데이터만(테이블구조 제외) dump
1 2 3 |
# mysqldump -u root -p –no-create db명 > db.sql |
Apache 인증을 이용해서, /home/doe/public_html/ 디렉토리에 접근 할때 사용자 인증 걸기 1. httpd.conf 파일에 디렉토리 권한 설정 <Directory “/home/doe/public_html”> Options FollowSymLinks AllowOverride AuthConfig 2. .htaccess 파일 […]
[사진]"조사 받고 오겠다"는 지우고 허위날조, 법적대응은 동그라미 | Daum 미디어다음.
http://qmail.kldp.net/phpbb/viewtopic.php?t=7589&p=18566 . 특정 호스트 메일 포워드 : if [ “$SENDER” = “xxx@abc.com” ]; then forward this@test.com ; exit 99 ; fi | /var/qmail/bin/preline /usr/bin/procmail -p […]
J2Y :: ubuntu에서 mod_rewrite 활성화 시키기.
http://dexpot.de/index.php?id=download http://winsplit-revolution.com/download
/etc/rc.d/init.d/qmail restart /etc/rc.d/init.d/spamassassin restart
ail-scanner와 SpamAssassin의 조 via Qmail-scanner + SpamAssassin을 통한 스팸 필터링 구현(메일제목에 스팸 태그 설정) :: 네이버 블로그.
서버 – [Qmail] 릴레이 동작 규칙 – tcp.smtp & rcpthosts 파일 작동 관계.
/home/vpopmail/etc/ defaultdomain #파일 test.com /var/qmail/control/ defaultdomain #파일 내용 수정 test.com test1.com test2.com test3.com test4.com /var/qmail/control/ virtualdomains 파일 내용 수정 #virtualdomain:기본도메인 test1.co.kr:test.co.kr test2.co.kr:test.co.kr test3.co.kr:test.co.kr test4.co.kr:test.co.kr /var/qmail/supervise/qmail-smtpd […]
//요일구하기 public static string GetDay(string FLI_DAY) { string tempGetDay = string.Empty; switch (FLI_DAY) { case “MO”: tempGetDay = “월”; break; case “TU”: tempGetDay = “화”; […]
하루동안 띄우지 않는 소스 팝업창 안에 들어갈 소스는 아래와 같습니다
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<script language="javascript" type="text/javascript"> <!-- // 창닫기 function closeWin(winName, expiredays) { setCookie( winName, "done" , expiredays); var obj = eval( "window." + winName ); obj.style.display = "none"; } function closeWinAt00(winName, expiredays) { setCookieAt00( winName, "done" , expiredays); var obj = eval( "window." + winName ); obj.style.display = "none"; } --> </script> <input type="checkbox" name="close" value="OK" onclick="javascript:closeWin('div_laypopup', 1);"/>하루동안 이 창을 열지 않음 <!-- <input type="checkbox" name="close" value="OK" onclick="javascript:closeWinAt00('div_laypopup', 1);"/>오늘만 이 창을 열지 않음 --> |
Main 페이지 소스
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 31 32 33 34 35 36 37 38 |
<script language="javascript" type="text/javascript"> <!-- // 쿠키 가져오기 function getCookie( name ) { var nameOfCookie = name + "="; var x = 0; while ( x <= document.cookie.length ) { var y = (x+nameOfCookie.length); if ( document.cookie.substring( x, y ) == nameOfCookie ) { if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 ) endOfCookie = document.cookie.length; return unescape( document.cookie.substring( y, endOfCookie ) ); } x = document.cookie.indexOf( " ", x ) + 1; if ( x == 0 ) break; } return ""; } function goPop(no){ var winName = "Popup1"; var blnCookie = getCookie( winName ); //alert( blnCookie); if( !blnCookie ) { window.open('http://www.test/test.asp?no=123','Popup1','width=760,height=1000,status=no,left=0,top=0,scrollbars=yes,resizable=no, menubar=no'); } } //setTimeout(goPop,1000); </script> |
[javascript] 오늘 하루동안 이 창을 열지 않음 ( 팝업,레이어팝업 ) […]
Copyright © 2025 | WordPress Theme by MH Themes