로그인한 상태에서 구글에 접속하면 iGoogle로 연결해서 귀찮다.
이를 비활성하기 위해서 좌측하단에 있는 Classic Home 링크를 클릭하면 된다.
Reference:
https://groups.google.com/a/googleproductforums.com/forum/#!category-topic/websearch/igoogle-personal-homepage/S9wR9b3icpc
로그인한 상태에서 구글에 접속하면 iGoogle로 연결해서 귀찮다.
이를 비활성하기 위해서 좌측하단에 있는 Classic Home 링크를 클릭하면 된다.
Reference:
https://groups.google.com/a/googleproductforums.com/forum/#!category-topic/websearch/igoogle-personal-homepage/S9wR9b3icpc

2월 1일까지 등록 시 50% 할인이라고 하니 서두르시길 ㅎㅎ
References:
http://jco.zdnet.co.kr/12th/default.asp
http://jcoorkr.tistory.com/
티스토리에 Syntax Highlighting 기능을 추가하기 위해 SyntaxHighlighter를 사용할 수 있다.
SyntaxHighlighter는 다음에서 다운로드 받을 수 있다.
http://alexgorbatchev.com/SyntaxHighlighter/download/
티스토리에 SyntaxHighlighter 설치 및 설정은 다음과 같이 할 수 있다.
<!-- Include required JS files -->
<script type="text/javascript" src="./images/shCore.js"></script>
<!--
At least one brush, here we choose JS. You need to include a brush for every
language you want to highlight
-->
<script type="text/javascript" src="./images/shBrushJScript.js"></script>
<!-- Include *at least* the core style and default theme -->
<link href="./images/shCore.css" rel="stylesheet" type="text/css" />
<link href="./images/shThemeDefault.css" rel="stylesheet" type="text/css" />
<!-- Finally, to actually run the highlighter, you need to include this JS on your page -->
<script type="text/javascript">
SyntaxHighlighter.all()
</script>
<!-- You also need to add some content to highlight, but that is covered elsewhere. -->
<pre class="brush: js">
function foo()
{
}
</pre>