<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>ejake.net</title>
    <link rel="alternate" type="text/html" href="http://ejake.net/" />
    <link rel="self" type="application/atom+xml" href="http://ejake.net/atom.xml" />
    <id>tag:ejake.net,2008-03-23://1</id>
    <updated>2008-03-28T06:55:03Z</updated>
    <subtitle>work hard,play hard.</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Open Source 4.1</generator>

<entry>
    <title>搞笑视频收集</title>
    <link rel="alternate" type="text/html" href="http://ejake.net/2008/03/funny-video-collection.html" />
    <id>tag:ejake.net,2008://1.3</id>

    <published>2008-03-28T06:42:03Z</published>
    <updated>2008-03-28T06:55:03Z</updated>

    <summary> 世纪最强魔术（留意他的表情）...</summary>
    <author>
        <name>Jake</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://ejake.net/">
        <![CDATA[ <ul>
<li>
<h4>世纪最强魔术（留意他的表情）</h4>
<div>
<embed src="http://player.youku.com/player.php/sid/XMzY2MzY=/v.swf" quality="high" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" align="middle" height="400" width="480">
</div>
</li>
</ul>]]>
        
    </content>
</entry>

<entry>
    <title>ajax sample code</title>
    <link rel="alternate" type="text/html" href="http://ejake.net/2008/03/xmlhttprequest.html" />
    <id>tag:ejake.net,2008://1.2</id>

    <published>2008-03-24T08:21:16Z</published>
    <updated>2008-03-24T08:42:35Z</updated>

    <summary> var _XHR = null; try { _XHR = new ActiveXObject(&quot;Msxml2.XMLHTTP&quot;); } catch (e) { try { _XHR = new ActiveXObject(&quot;Microsoft.XMLHTTP&quot;); } catch (e) { try { _XHR = new XMLHttpRequest(); } catch(e) {} } } if (_XHR == null)...</summary>
    <author>
        <name>Jake</name>
        
    </author>
    
    <category term="javascript" label="javascript" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en-US" xml:base="http://ejake.net/">
        <![CDATA[ <textarea name="code" class="javascript">var _XHR = null;
try { _XHR = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {
    try { _XHR = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {
	try { _XHR = new XMLHttpRequest(); } catch(e) {}
    }
}
if (_XHR == null) throw new Error('XMLHttpRequest not supported');
_XHR.onreadystatechange = function(){
    if (_XHR.readyState == 4 &amp;&amp; _XHR.status == 200) {
	alert(_XHR.responseText);
    }
}
_XHR.open("POST", 'url.php', true);/* true:asynchronous;false:synchronous */
_XHR.setRequestHeader('Content-type', 'application/x-www-form-urlencoded; charset=utf-8');
_XHR.send('name=helloworld');
</textarea>]]>
        
    </content>
</entry>

<entry>
    <title>Java Learning Note</title>
    <link rel="alternate" type="text/html" href="http://ejake.net/2008/03/java-learning-note.html" />
    <id>tag:ejake.net,2008://1.1</id>

    <published>2008-03-23T14:30:53Z</published>
    <updated>2008-03-24T16:36:03Z</updated>

    <summary>一个Java程序就是一个具有main方法的类。例如： public class helloworld{ public static void main(String[] args){ System.out.println(&quot;hello world!&quot;); } } Java程序先被编译成字节码，然后由Java虚拟机解释执行。程序中类的定义应该在一个独立的文件中，而且文件的名字应该和类的名字一样。...</summary>
    <author>
        <name>Jake</name>
        
    </author>
    
    <category term="java" label="java" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en-US" xml:base="http://ejake.net/">
        <![CDATA[<p>一个Java程序就是一个具有main方法的类。例如：</p>
<p>
<textarea name="code" class="java" rows="4">public class helloworld{
	public static void main(String[] args){
		System.out.println("hello world!");
	}
}
</textarea></p>
<p>Java程序先被编译成字节码，然后由Java虚拟机解释执行。程序中类的定义应该在一个独立的文件中，而且文件的名字应该和类的名字一样。<br /></p>]]>
        
    </content>
</entry>

</feed>
