본문 바로가기

반응형

Story

글씨 길어지는것 자르는 방법 Effect of CSS property text-overflow Each box (DIV element) below contains the following text: We hold these truths to be self-evident, that all people are created equal. Note how the STYLE settings effect the rendering of the text STYLE ="text-overflow : clip; overflow : hidden" We hold these truths to be self-evident, that all people are created equal. STYLE ="text-overflow : ellipsis; overflo.. 더보기
array 객체에 push 메소드가 정의 되지 않았다고 나올때 if(!Array.push) Array.prototype.push=function(){ for(var i=0;i!=arguments.length;i++){ this[this.length]=arguments[i]; } return this.length; } 위와 같이 추가해주고 사용해주면된다. 만일 push 가 존재한다해도 없을경우 추가해주는 부분이기 때문에 그냥 사용해도 무방하다. 더보기
[스크랩] 웹서버 부하 분산을 위한 허접한 로드밸런싱 ^^; 이글은 제가 phpschool에 쓴 팁텍입니다. 이곳에서도 보실 수 있도록 옮긴 것입니다.^^ 웹서버가 그렇게 성능(Xeon 2.4, 스카시HDD, 1G RAM)이 떨어지는 것도 아닌데... 60만명이 넘는 회원을 가진 다음카페 회원들한테 메일한번 쏜 이후로 엄청난 접속에 거의 서버가 멎을 뻔 하였던 경험을 하였습니다. 그래서 생각한 것이 로드밸런싱인데... 허접한 제 실력에 로드밸런싱이란 것은 하기 힘든 작업이었죠.^^ 그래도 어디서 들어본 것은 있는지 문득 생각난 것이 rsync와 Round-Robin이였습니다.^^ 하지만 들어보기만 했지 직접 해 본적은 없어서... 어떻게 해야 할 지 난감하더군요..^^ 어째든 맨땅에 헤딩은 그렇게 시작이 되었습니다.^^ 여기서 많은 분들께 질문도 하고... 여기 .. 더보기
[스크랩] [db]줏어옴.. 달력만들기 쿼리 제 목 날짜 관련 쿼리 입니다. 한달을 요일별로 구함.. 추 천 수 16 조 회 수 3927 작 성 일 2003-12-29 작 성 자 김정식 SELECT SUM(DECODE(A.A2, '1', A.A3, null)) 일요일, SUM(DECODE(A.A2, '2', A.A3, null)) 월요일, SUM(DECODE(A.A2, '3', A.A3, null)) 화요일, SUM(DECODE(A.A2, '4', A.A3, null)) 수요일, SUM(DECODE(A.A2, '5', A.A3, null)) 목요일, SUM(DECODE(A.A2, '6', A.A3, null)) 금요일, SUM(DECODE(A.A2, '7', A.A3, null)) 토요일 FROM ( SELECT rownum + 7 - to_num.. 더보기
Mysql에서 날짜 차이 구하기 Mysql에서 날짜 차이 구하기 특정 날짜부터 오늘까지의 날짜 태어난지 몇일째인지 구할수있다. select to_days(now()) - to_days('2006-06-01'); 반대로 하면 특정날짜까지 몇일이 남았는지도 구할수있다. 더보기
대소문자 가리지 않고 검색하기 Regular Expression Match Operators Operator Description Example ~ Matches regular expression, case sensitive 'thomas' ~ '.*thomas.*' ~* Matches regular expression, case insensitive 'thomas' ~* '.*Thomas.*' !~ Does not match regular expression, case sensitive 'thomas' !~ '.*Thomas.*' !~* Does not match regular expression, case insensitive 'thomas' !~* '.*vadim.*' POSIX regular expressions provide.. 더보기
디비 언어설정때문에 한글정렬이 안될경우 Built-in Conversions Conversion Name [a] Source Encoding Destination Encoding ascii_to_mic SQL_ASCII MULE_INTERNAL ascii_to_utf_8 SQL_ASCII UNICODE big5_to_euc_tw BIG5 EUC_TW big5_to_mic BIG5 MULE_INTERNAL big5_to_utf_8 BIG5 UNICODE euc_cn_to_mic EUC_CN MULE_INTERNAL euc_cn_to_utf_8 EUC_CN UNICODE euc_jp_to_mic EUC_JP MULE_INTERNAL euc_jp_to_sjis EUC_JP SJIS euc_jp_to_utf_8 EUC_JP UNICODE euc_kr.. 더보기
동영상에 자막 넣어서 플레이 시키는 방법 // 윈도우 미디어 플레이어 버전 9 이하때 사용. // 윈도우 미디어 플레이어 버전 9 이상때 사용. // 아래는 자막이 나타날 레이어의 ID 와 색상,너비,높이,위치 설정 // 위 라인에서 레이어의 id 는 CaptioningID="caption" 에서 정의해준 caption 값을 사용했음을 주의 더보기
javascript convert HtmlEntities To Characters function convertHtmlEntitiesToCharacters(theStr) { var newDiv = document.createElement(newDiv); newDiv.innerHTML = theStr; return newDiv.innerHTML; //alert('Entities:\n' + theStr + '\n\nCharacters:\n' + newDiv.innerHTML); } ex) html 태그를 예를들어 와 같은것은 공백을 나타내는대 이것을 공백 문자 그대로 사용하기 위해 사용한다. html 상에 그냥 사용할때는 이런 변환작업이 필요없으나 javascript 등의 경고창에 사용하려면 문자그대로의 값이 필요하다 이럴때 사용하면 된다. 더보기
javascript convert unicode function str_to_unicode(str){ var rtv = ""; for(i=0;i 더보기

반응형