Eclipse 3.4 ganimede 에서 처음 로딩시 에러가 발생한다.

---------------------------
eclipse.exe - 오디날 찾기 실패
---------------------------
오디날(ordinal) 3873을(를) DLL LIBEAY32.dll에서 찾을 수 없습니다. 
---------------------------
확인   
---------------------------

검색해보니 java 1.6 을 설치하라고 하는 경우도 있으나
내 경우는 Subversive 설치후 발생된 문제로 
JavaHL Connector (Binaries and Implementation) 1.4 와 1.5 둘 다 설치되어서 발생된 문제였다.

Software Updates... > Installed Software 탭에서 찾아 
둘 중 하나를 제거하면 된다. 

ex)
JavaHL 1.4.5 Win32 Binaries (Optional) 
JavaHL 1.5.3 Win32 Binaries (Optional)



Posted by [czar]
,
메일
메신저
달력 - 일정관리

구글 apps로 회사에서 기본 사용하기

메일
구글 gmail 기본사용

메신저
여기에 구글토크 메신저까지 사내 메신저로 굿.

프로젝트관리
관리자가 캘린더추가하고 여기에 사용자 초대해서 사용하고
그러면 해당 캘린더만 사용가능하니까 좋을듯


인트라넷 게시판?
Posted by [czar]
,
Posted by [czar]
,
beyond compare

http://www.scootersoftware.com/

이거 상당히 쓸만한듯~~

지금은 이거 사용중~~
Posted by [czar]
,
javascript 행추가삭제
.

<html>
<script>
    var rowIndex = 1;
    function addFile(form,k){
        if(rowIndex > (5-k)) return false;
        var oCurrentRow,oCurrentCell;
        var sAddingHtml;
        oCurrentRow = insertTable.insertRow();
        rowIndex = oCurrentRow.rowIndex;
        oCurrentCell = oCurrentRow.insertCell();
        rowIndex++;
        oCurrentCell.innerHTML = "<tr><td colspan=4><INPUT class=input TYPE=FILE NAME='filename" +rowIndex + "' size=25></td></tr>";
        form.rowCount.value = rowIndex;
    }
   
    //첨부파일 삭제
    function deleteFile(form){
        if(rowIndex<2){
            return false;
        }else{
            form.rowCount.value = form.rowCount.value - 1;
            rowIndex--;
            insertTable.deleteRow(rowIndex);
        }
    }
   

</script>

<body>

<form name="write">
     <table name='insertTable' id='insertTable' border=0 cellpadding=0 cellspacing=0>
        <tr><td valign=bottom><INPUT type='file' maxLength='100' name='filename1' size='25'></td>
        <td width=100>
        <input type="button" value="추가" onClick="addFile(write,1)" border=0 style='cursor:hand' hspace=4>
        <input type="button" value="삭제" onClick='deleteFile(write)' border=0 style='cursor:hand'>
        </td>
        </tr>
    </table>
    <input type="hidden" name="rowCount" value="1">
    <input type="submit">
    </form>                      
</body>
</html>

Posted by [czar]
,
WARNING: Parameters: Invalid chunk ignored



tomcat작업시 parameter 전송때마다 로그에 기록되는 다음과 같은 메세지 제거 방법
Jun 22, 2008 12:05:15 AM org.apache.tomcat.util.http.Parameters processParameters
WARNING: Parameters: Invalid chunk ignored. remove




1. tomcat설치경로/conf/logging.properties 편집
2. org.apache.tomcat.util.http.Parameters.level
= SEVERE 추가

tomcat 재시작...
Posted by [czar]
,

개발용 폰트

프로그래머가 많이 쓰는 폰트



http://namoda.springnote.com/pages/1944118

Posted by [czar]
,
Posted by [czar]
,
Posted by [czar]
,
Posted by [czar]
,