본문 바로가기

人 煙403

특정 브라우저에서 라인 바뀌는 경계에 있는 한글의 자모가 분리되는 경우 테이블 폭 제약에 따라 긴 본문이 두줄에 걸쳐 출력되었는데 아래와 같은 현상이 발견되었다.원문1한글나라 좋은나라발생현상12한글나라 좋으ㄴ나라 해당 부분은 특정 컴퓨터의 특정 브라우저 ( Chrome 43.0 / IE 11 ) 에서 드물게 발생하였는데 아래와 같이 해결하였다12345/* before */word-break: break-all; /* after */word-break: break-word; 2015. 7. 3.
[JSP] XML declaration allowed only at the start of the document JSP 결과 페이지가 XML일때 브라우저 상에서 제목과 같은 메시지를 자주 보게 된다.이는 XML 윗부분에 whitespace가 추가되었기 때문에 발생한다. 12위와 같은 코드는 newline 이 발생되며, 아래와 같이 제거할 수 있다.1234 2015. 1. 27.
C++ Errors error LNK2019: __imp_WSAStartup12345678910111213LINK : xxxxxxxxxxxxxxxxxxxxx(를) 찾을 수 없거나 마지막 증분 링크에 의해 빌드되지 않았습니다. 전체 링크를 수행하고 있습니다.xxxxxx : error LNK2019: __imp_htons 외부 기호(참조 위치: "public: static int __cdecl ifs::core::wpl::Marshal::encode(void *,unsigned short)" (?encode@Marshal@wpl@core@ifs@@SAHPEAXG@Z) 함수)에서 확인하지 못했습니다.) : error LNK2001: __imp_htons 외부 기호를 확인할 수 없습니다.1>ifs100_test.lib(Marsha.. 2014. 11. 5.
iTerm Tips How to change encoding typePress ⌘ + i in the iTerm window.Click ‘Terminal’ tab.Select what you want in the ‘Character Encoding’ field. 2014. 7. 3.