Create TOC

2011년 8월 9일

OS/X - iPhone 동기화 때 AddressbookSync가 1GB 이상의 메모리를 사용하면서 종료되지 않을 때

iPhone 동기화 때 AddressbookSync가 1GB 이상의 메모리 (내 시스템에서는 2.3GB)를 사용하면서 동기화가 끝나도 제대로 종료되지 않을 때가 있다.

하나의 주소록에 많은 전화번호가 등록되어 있을 때 발생하는 문제로 보인다. 내 경우 the call 4 iphone 앱을 이용해서 스팸 전화번호를 등록해 두었는데, 등록한 번호를 모두 삭제한 후에 문제가 해결되었다.

2011년 8월 1일

Opera/clien.net 글꼴 변경하기

Opera 10.x 부터 clien.net 사이트에 들어가면 한글 글꼴이 명조로 표시되는 경우가 있다.

User Java Script 기능을 활성화하고 User JavaScript File경로를 지정한 다음, 해당 경로에 아래 내용의 fixclien.user.js 파일을 만들면 clien 글꼴이 나눔 고딕 으로 고정된다.

// ==UserScript==
// @name          fix clien
// @description   fix font for Opera
// @include       http://clien.career.co.kr/*
// ==/UserScript==

(function (){
function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

var scripts = document.getElementsByTagName('body')[0];
if (!scripts) return;
scripts = scripts.getElementsByTagName('script');
if (!scripts) return;

addGlobalStyle("body, td, p, input, button, textarea, select, td a, .c1, .member, #account dd, .view_content, .ct { font-family: NanumGothic, \"나눔고딕\", sans-serif; }")
})();

적용 전에는 아래와 같지만,

적용 후에는 아래와 같이 변경된다.