* IIS 관리자 > 요청필터링 > 기능 설정 편집(우측)
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
if(!$('input:radio[name="notice_use"]:checked').val()) {
	$('input:radio[name="notice_use"]:input[value="N"]').attr("checked", true);
}
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<?
/*
-i = input file
-deinterlace = deinterlace pictures
-an = disable audio recording
-ss = start time in the video (seconds)
-t = duration of the recording (seconds)
-r = set frame rate
-y = overwrite existing file
-s = resolution size
-f = force format
*/

// where ffmpeg is located  
$ffmpeg = $_SERVER['DOCUMENT_ROOT'].'/ffmpeg.exe';
//video dir  
$video = $_SERVER['DOCUMENT_ROOT']."/test_media/207.mp4";
//where to save the image  
$image = $_SERVER['DOCUMENT_ROOT']."/test_media/207.jpg";
//time to take screenshot at  
$interval = 100;
//screenshot size  
$size = '640x480';  
//ffmpeg command  
$cmd = "$ffmpeg -i $video -deinterlace -an -ss $interval -f mjpeg -t 1 -r 1 -y -s $size $image 2>&1";

`$cmd`;
?>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<script type='text/javascript'>
// <![CDATA[
// JQuery validate 에러 메시지를 alert으로 표출(해당 스크립트 제거하면 input text 옆에 표시
$.validator.setDefaults({
	onkeyup:false,
	onclick:false,
	onfocusout:false,
	showErrors:function(errorMap, errorList) {
		if(this.numberOfInvalids()){ // show error
			alert(errorList[0].message);
			$(errorList[0].element).focus();
		}
	}
});
//]]>
</script>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
CREATE TABLE dbo.ci_sessions (
	session_id varchar(40) DEFAULT '0' NOT NULL,
	ip_address varchar(16) DEFAULT '0' NOT NULL,
	user_agent varchar(120) NOT NULL,
	last_activity int DEFAULT 0 NOT NULL,
	user_data varchar(max) NOT NULL, -- use varchar(max) instead of MySQL TEXT data type
	PRIMARY KEY (session_id)
)
GO

-- Simalate MySQL 'UNSIGNED' field option
ALTER TABLE dbo.ci_sessions ADD CONSTRAINT last_activity_unsigned
	CHECK (last_activity >= 0)
GO

CREATE INDEX last_activity_idx
ON dbo.ci_sessions (last_activity)
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
http://moople.tistory.com/128

'java, jsp, spring, egov' 카테고리의 다른 글

이클립스에서 ip 방식 변경(IPv6 -> IPv4)  (0) 2016.02.19
jsp 파일 다운로드  (0) 2016.02.04
mod 함수를 이용한 나누기  (0) 2015.01.17
프롬프트(scan) 입력받기  (0) 2015.01.10
기본 메인 메서드  (0) 2015.01.10
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,