2013年5月8日 星期三

IE Conditional Comments


Following is from the http://haslayout.net/condcom, more detail can reference it

Overview

IE Conditional Comments (or condcom for short) are special comments that enable authors to use the instructions that only Internet Explorer 5.0 and above on Windows platform will see.

Various types of conditional comments

Regular comment:
<!--This is a comment-->
IE conditional comment:
<!--[if IE]> <![endif]-->
Reversed anti-IE comment:
<!--[if !IE]>--> non-IE HTML Code <!--<![endif]-->
Reversed IE conditional comment (rarely needed):
<!--[if ! lt IE 7]>
    <![IGNORE[--> <![IGNORE[]]>
        Code for browsers that match the if condition
<!--<![endif]-->
In a nutshell, any browser except Internet Explorer on a Windows platform will treat conditional comment as a regular HTML comment. You cannot use condcoms in the CSS code itself. IE conditional comments are useful for hiding or revealing the code to IE, which in turn allows authors to use CSS "hacks" in a more appropriate fashion.



IE9 compatible mode

Problem:
 When you written in web page, if you have some CSS3 code, but the 
 IE9 browser open page using the quirk mode, and you will miss the your style,
 how do you setting the IE9 browser to standard mode??

Solution:
(a)  Before html, you can type the doctype
     <!DOCTYPE html>

(b)  in <head> </head> tag, adding the

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9">



Reference:
DOCTYPE & Quirks Mode
Internet Explorer 9 (IE9) 的相容性檢視

2013年4月29日 星期一

Eclipse package meaning


Problem: what do different packages of eclipse like

Indigo
Helios SR1
Helios
Galileo
Ganymede
Europa


Solution: These are code names for major releases of the Eclipse IDE/platform. For example, I think Galileo was Eclipse 3.5. They started relying heavily on the code names about 4-5 years ago, not sure why - it can be confusing post-release.

Helios is the latest stable release. "SR1" means there's been a service release applied (bug fixes).


source: http://in.answers.yahoo.com/question/index?qid=20110121055244AAEgJAj

2013年2月24日 星期日

R plot png file on centos

Problem:
 When you run R on in primary centOS server, you didn't use the png. It will appear some error "Error in X11...unable to start device PNG".  "
"unable to open connection to X11 display "


Solution:
Install the package
{code}
>yum install libpng-devel.x86_64
{code}

{code}
R
# To avoid the x11 warning
Sys.setenv("DISPLAY"=":0.0")
{code}




Reference:
Install libpng package
Check the png Capabilities of R
R with x11 setting





2013年2月21日 星期四

R package install method

Currently, I only try the local method

For example install HSAUR: A Handbook of Statistical Analyses Using R package

1. Download the package from the cran HSAUR_1.3-0.tar.gz
2. R
>install.packages(file_name_and_path, repos = NULL, type="source")


Reference: How to install R package 
the possible method from network 

2013年2月18日 星期一