﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>语源科技BlogJava-Love is love, work is need.</title><link>http://www.blogjava.net/mai-q/</link><description>Pay my all effort  for a memorable life story.</description><language>zh-cn</language><lastBuildDate>Sun, 12 Apr 2026 06:04:54 GMT</lastBuildDate><pubDate>Sun, 12 Apr 2026 06:04:54 GMT</pubDate><ttl>60</ttl><item><title>FlexBible Read note 001</title><link>http://www.blogjava.net/mai-q/archive/2010/04/21/318992.html</link><dc:creator>Mai Qi</dc:creator><author>Mai Qi</author><pubDate>Wed, 21 Apr 2010 07:48:00 GMT</pubDate><guid>http://www.blogjava.net/mai-q/archive/2010/04/21/318992.html</guid><wfw:comment>http://www.blogjava.net/mai-q/comments/318992.html</wfw:comment><comments>http://www.blogjava.net/mai-q/archive/2010/04/21/318992.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/mai-q/comments/commentRss/318992.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/mai-q/services/trackbacks/318992.html</trackback:ping><description><![CDATA[<h4>II.1.Each MXML component extends,or id derived from, an existing ActionScript class. </h4> <h4>II.2. In an MXML component, each property that you want to be bindable needs its own [Bindable] tag. </h4> <p>With ActionScript class definitions, you can mark all the class's properties as bindable with a single instance of the [Bindable] metadata tag placed before the class declaration.  <h4>II.3.compc for libraries generation. </h4> <p>####page.256 23:22 2010-3-17  <h4>II.4.Navigator containers / View states </h4> <p>Navigator containers : Move from one view to another.<br>View states: change an existing view.  <p>NOTE:<br>&nbsp;&nbsp;&nbsp; Q&amp;A<br>&nbsp;&nbsp;&nbsp; Q:How to handling navigator container sizing?<br>&nbsp;&nbsp;&nbsp; A:3 ways:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1.Set the Set the navigator container's dimensions to specific pixel or percentage dimensions, and then set the nested container sizes to 100 percent height and width.Each of the nested view containers then resizes to fill the available space in the navigator container.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2.Set the nested containers to specific pixel dimensions, and set the navigator container's 'resizeToContent' property to true.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CAUTION:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Setting resizeToContent to true forces the navigator container to re-measure and<br>re-draw itself as the user navigates through the application. This can cause interesting<br>and unintended visual effects, particularly when the navigator container has a visible border or<br>background.  <h4>II.5.Backslash and Forwardslash character </h4> <p>Do not usint backslash character '\' as separator in the path to an application asset, you should always using forwardslash character '/' as separator.  <h4>II.6.New line</h4> <p><br>ActionScript:&nbsp;&nbsp;&nbsp; '\n'<br>MXML&nbsp;&nbsp;&nbsp; :&nbsp;&nbsp;&nbsp; "&amp;#13;"  <h4>II.7.ActionScript basic access control</h4> <p><br>&nbsp;&nbsp;&nbsp; public&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; private<br>&nbsp;&nbsp;&nbsp; protected&nbsp;&nbsp;&nbsp; class and it subclass, note this is different from Java, which is allowed access in same package.<br>&nbsp;&nbsp;&nbsp; internal&nbsp;&nbsp;&nbsp;&nbsp; the default access specifier that allowed all other class which in the same package can access it.<br>&nbsp;&nbsp;&nbsp; BUT, if above default namespace is not suit for you, you can create your namespace. <br>&nbsp; <h6>&nbsp;&nbsp; III.1.To define an namespace, you have two choice: omit the URI or not, like:</h6> <p><br>&nbsp;&nbsp;&nbsp; namespace myzoo;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; or<br>&nbsp;&nbsp;&nbsp; namespace myzoo = "<a href="http://www.myzoo.com&quot;;">http://www.myzoo.com";</a><br>&nbsp;&nbsp;&nbsp; once the namespace defined, in its using scope, it can't be redefined.<br>&nbsp;&nbsp;&nbsp; So, what the scope it control?<br>&nbsp;&nbsp;&nbsp; e.g,:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; package org.mai {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; namespace maizoo;&nbsp; //means internal.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; package org.mai {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public namespace maizoo; //means it can be accessed by other class which it improved it.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> <h6>&nbsp;&nbsp;&nbsp; III.2. Applying namespaces</h6> <p><br>&nbsp;&nbsp;&nbsp; e.g,:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; namespace maizoo;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; class MaiClass{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; maizoo myFunction(){};<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; the namespace can be placed in front of variable, constant, function, but class.  <h6>&nbsp;&nbsp;&nbsp; III.3.Refrencing namespaces</h6> <p><br>&nbsp;&nbsp;&nbsp; Unlike the default namespaces, (public, private...etc;), which they are controled by context, the user defined namespace must be specified by user himself. Still, you can using the keyword 'use namespace' to simplicified it.(Like you did in C++!)<br>&nbsp;&nbsp;&nbsp; use namespace maizoo;<br>&nbsp;&nbsp;&nbsp; myFunction();<br>&nbsp;&nbsp;&nbsp; or<br>&nbsp;&nbsp;&nbsp; maizoo::myFunction();<br> <h4>II.8.The variable scope </h4> <p>&nbsp;&nbsp;&nbsp; ActionScript, unlike C++ or Java, doesn't have a 'block level scope', which means that if your declare a variable in a block, the variable is also available in anywhere of the function which the block belong to.<br>&nbsp;&nbsp;&nbsp; e.g,:<br>&nbsp;&nbsp;&nbsp; public function do:void(){<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for(var i:int = 0; i &lt; 20 ; i++){<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var m:String = i + "xxx";<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; trance(m); // also avaiable here!<br>&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; Because laking the block level scope variable scope, the compiler is ( almost is ) can understand how many variable is in some function, this is called 'hoisting', which can be thought as the compiler move all the variables declared to the top of an function. NOTE: the assignment will not be hositing, so the follow is easy understandable:  <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; trace(num);&nbsp;&nbsp;&nbsp; // output NaN;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var num:Number = 20;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; trace(num);// will outout 20.<br> <h4>II.9. Default value </h4> <table border="0" cellspacing="0" cellpadding="2" width="400"> <tbody> <tr> <td valign="top" width="200">DataType</td> <td valign="top" width="200">Value</td></tr> <tr> <td valign="top" width="200">Boolean</td> <td valign="top" width="200">false</td></tr> <tr> <td valign="top" width="200">int</td> <td valign="top" width="200">0</td></tr> <tr> <td valign="top" width="200">uint</td> <td valign="top" width="200">0</td></tr> <tr> <td valign="top" width="200">Numbwer</td> <td valign="top" width="200">NaN</td></tr> <tr> <td valign="top" width="200">* </td> <td valign="top" width="200">undefined</td></tr> <tr> <td valign="top" width="200">Object</td> <td valign="top" width="200">null</td></tr> <tr> <td valign="top" width="200">String</td> <td valign="top" width="200">null</td></tr> <tr> <td valign="top" width="200">All Other Class</td> <td valign="top" width="200">null</td></tr></tbody></table> <p>&nbsp; <h4>II.10. is / instanceof /as </h4> <h6>&nbsp;&nbsp;&nbsp; III.1.is / instanceof&nbsp;&nbsp;&nbsp; :: return Boolean.</h6><br> <p>&nbsp;&nbsp;&nbsp; is : can check an object is an instance of an class or an inherit from some class or it is implement of some interface.  <p>&nbsp;&nbsp;&nbsp; instanceof: as well as 'is' but will be return false if using check an interface.<br> <h6>&nbsp;&nbsp;&nbsp; III.2. as</h6> <p><br>&nbsp;&nbsp;&nbsp; as : is return an string or null, to check an object is a member of a given data type.<br>&nbsp;&nbsp;&nbsp; e.g,:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var a:Sprite = new Sprite();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; trace( a as Sprite);&nbsp;&nbsp;&nbsp; //[Object Sprite]<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; trace( a as IEDispatch);&nbsp;&nbsp;&nbsp; //[Object Sprite]<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; trace( a as Number);&nbsp;&nbsp;&nbsp; //null  <h4>II.11. Dynamic class and Sealed class </h4> <p>Dynamic class is a class which it's object can add method or variable at runtime. This is like javascript prototype but more strict.  <p>But method added by this way is not have the ability to access the private variable.(NEED CHECKED!)  <p>####page 83,proAS_Flex3 23:36 2010-3-23<br> <h4>II.12.Function Expressions and Statements </h4> <p>Thinking following example:  <p>class MaiZoo{<br>&nbsp;&nbsp;&nbsp; var maiFunc = function(){};<br>&nbsp;&nbsp;&nbsp; function maiStateFunc(){};<br>}  <p>var maiZoo:MaiZoo = new MaiZoo();<br>maiZoo.maiFunc(); //Error in 'Strick' mode;Ok in standard mode<br>maiZoo.maiStateFunc();&nbsp;&nbsp;&nbsp; // Works fine in both mode.  <p>If you wanna call an expression function in strick mode, the workaround way is:  <p>maiZoo['maiFunc']();&nbsp;&nbsp;&nbsp; //Guess what? like EL hah? And this is real a javascript way:)  <p>Both satuation above code works fine.  <p>Second way, you can declare whole class as 'dynamic',this way allow you call function express in strick mode, but this way will sacrifice the strick checking and if you attempt to access an undefined property for an instance,the compiler will not generate an error.(?)  <h6>&nbsp;&nbsp;&nbsp; III.1.Live sope</h6> <p><br>&nbsp;&nbsp;&nbsp; The different between function expression and function statement is that the function statement is exist throughtout the scope in which they are defined, INCLUDING IN THE STATEMENTS THAT APPEAR BEFORE THE FUNCTION STATEMENT!!!  <p>But the function expression is not. So the following code will generate an error:  <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; expressionFunc(); //Runtime Error  <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var expressionFunc:Function= function(){};  <p>&nbsp;&nbsp;&nbsp; and if we using:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; statementFunc(); //OK<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; function statementFunc():void{};<br> <h6>&nbsp;&nbsp;&nbsp; III.2. Delete property</h6> <p><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dynamic class Obj{};<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var myObj:Obj = new Obj();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; myObj.expressionFunc = function(){};<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; delete myObj.expressionFunc;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; myObj.expressionFunc();&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //Error; cause the function is 'anonymous', it's just GONE!<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //BUT..<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; function stateFunc():void{}<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; myObj.stateFunc = stateFunc;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; delete stateFunc;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //No effect.&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; stateFunc();&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //Still working, lalala~<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; delete myObj.stateFunc;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; myObj.steteFunc();&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Error!<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; stateFunc();&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //Haha, Nondead!<br> <h4>II.13.Function ! Function! Function! </h4> <p>&nbsp;&nbsp;&nbsp; All thing is object, so all the function call is pass by refrence, BUT, for primer type, they works as if pass by value.  <p>&nbsp;&nbsp;&nbsp; Have fixed argument(s) function has an imply object called 'arguments'<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1. arguments is an array that contain all actual arguments the function be passed.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2. arguments.length<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3. arguments.callee is an refrence to the function itself. so if you are using an anonymous function, you know how to do if you want do a recursion.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4. if you named your parameter 'arguments', it will overwrite the arguments, so you cry means nothing!<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ...(rest)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; this is an way to define an function that not have the fixed but variable arguments.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; e.g,:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; function doX(... args):void{}<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; also, you can using (rest) as the way 'arguments' do in normal function, but they DONT HAVE an 'callee' attribute.<br>####page 101,proAS_Flex3 23:36 2010-3-23 22:19 2010-3-24</p><img src ="http://www.blogjava.net/mai-q/aggbug/318992.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/mai-q/" target="_blank">Mai Qi</a> 2010-04-21 15:48 <a href="http://www.blogjava.net/mai-q/archive/2010/04/21/318992.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Write blog, the windows live way.</title><link>http://www.blogjava.net/mai-q/archive/2009/10/12/297868.html</link><dc:creator>Mai Qi</dc:creator><author>Mai Qi</author><pubDate>Mon, 12 Oct 2009 03:49:00 GMT</pubDate><guid>http://www.blogjava.net/mai-q/archive/2009/10/12/297868.html</guid><wfw:comment>http://www.blogjava.net/mai-q/comments/297868.html</wfw:comment><comments>http://www.blogjava.net/mai-q/archive/2009/10/12/297868.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/mai-q/comments/commentRss/297868.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/mai-q/services/trackbacks/297868.html</trackback:ping><description><![CDATA[<p>First test for write blog using m$ live writer.</p> <p>If this setting works fine, I’ll see the result porperly.</p> <p>The web service of metaBlogAPI is:</p> <p><a href="http://yourname.blogjava.net/services/metaweblog.aspx">http://<em>yourname</em>.blogjava.net/services/metaweblog.aspx</a></p> <p>and next next next…</p><img src ="http://www.blogjava.net/mai-q/aggbug/297868.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/mai-q/" target="_blank">Mai Qi</a> 2009-10-12 11:49 <a href="http://www.blogjava.net/mai-q/archive/2009/10/12/297868.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Yeah, Again and Again</title><link>http://www.blogjava.net/mai-q/archive/2009/05/27/278188.html</link><dc:creator>Mai Qi</dc:creator><author>Mai Qi</author><pubDate>Wed, 27 May 2009 05:51:00 GMT</pubDate><guid>http://www.blogjava.net/mai-q/archive/2009/05/27/278188.html</guid><wfw:comment>http://www.blogjava.net/mai-q/comments/278188.html</wfw:comment><comments>http://www.blogjava.net/mai-q/archive/2009/05/27/278188.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/mai-q/comments/commentRss/278188.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/mai-q/services/trackbacks/278188.html</trackback:ping><description><![CDATA[When you have some work experience about programming, you&#8217;ll find that you can&#8217;t inform normal company&#8217;s interview questions like &#8220;How to parse an int value from a String&#8221;. You know how to do that but it doesn&#8217;t mean you can write down the answer rightly. This is very common. OK, frankly speaking, I&#8217;m talk about myself. I was face that badly feeling interview yesterday,&nbsp; and on the same day I&#8217;m also losing something that I was thought that can&#8217;t be lose so quickly and&#8230; that day is coming, I have nothing to argue, no power for complain, because I&#8217;m the badly of all. Obversely, the follower thing is defeat me badly. One should never arrogant even when he is at his best, and what time is my best? I don&#8217;t know. When that day is coming, please note me let me know that, so I can happy and enjoy it secretly. No more speaking, I&#8217;m sad, really, deeply...<br />
God. Now I know why so many person calls you name. Some one always needs some powerful person that helps them from their life time. But where are you? If you can let me know the location that you are, please send me the axis by email, so I can google map it by firefox...<br />
<br />
<br />
<img src ="http://www.blogjava.net/mai-q/aggbug/278188.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/mai-q/" target="_blank">Mai Qi</a> 2009-05-27 13:51 <a href="http://www.blogjava.net/mai-q/archive/2009/05/27/278188.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Rain, But Happy.</title><link>http://www.blogjava.net/mai-q/archive/2009/04/24/267349.html</link><dc:creator>Mai Qi</dc:creator><author>Mai Qi</author><pubDate>Fri, 24 Apr 2009 06:06:00 GMT</pubDate><guid>http://www.blogjava.net/mai-q/archive/2009/04/24/267349.html</guid><wfw:comment>http://www.blogjava.net/mai-q/comments/267349.html</wfw:comment><comments>http://www.blogjava.net/mai-q/archive/2009/04/24/267349.html#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://www.blogjava.net/mai-q/comments/commentRss/267349.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/mai-q/services/trackbacks/267349.html</trackback:ping><description><![CDATA[I&#8217;m not sure it is or it is NOT in future, but for now, I can say I find out a way to release myself from the uncomfortable situation.&nbsp; Yes, I refresh myself, reborn my heart or in another way saying, I know how to do and how to make things happen, what I can controlled, who I am, what my love is and how to extend the value it has. This was hard for me in past, but things are different from now on.<br />
<br />
When that thing happened, I feel like a man that no one cares. Actually this is not true. Really not true. As that words say: &#8220;Some one closed door, we still have the windows. &#8221;<br />
<br />
Don&#8217;t waste your time on valueless thing, look at your heart and suffer the whole world in it. No one can make you feel bad, and the happy things are everywhere. Live is good, taste more as you can.<br />
<br />
The next thing is to defeat my weakness, force me to do things. I&#8217;m a man, so, to be a really man. Haha!<br />
<br />
<img src ="http://www.blogjava.net/mai-q/aggbug/267349.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/mai-q/" target="_blank">Mai Qi</a> 2009-04-24 14:06 <a href="http://www.blogjava.net/mai-q/archive/2009/04/24/267349.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Attacting!</title><link>http://www.blogjava.net/mai-q/archive/2008/12/11/245714.html</link><dc:creator>Mai Qi</dc:creator><author>Mai Qi</author><pubDate>Thu, 11 Dec 2008 07:47:00 GMT</pubDate><guid>http://www.blogjava.net/mai-q/archive/2008/12/11/245714.html</guid><wfw:comment>http://www.blogjava.net/mai-q/comments/245714.html</wfw:comment><comments>http://www.blogjava.net/mai-q/archive/2008/12/11/245714.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/mai-q/comments/commentRss/245714.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/mai-q/services/trackbacks/245714.html</trackback:ping><description><![CDATA[<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="ProgId" content="Word.Document" />
<meta name="Generator" content="Microsoft Word 11" />
<meta name="Originator" content="Microsoft Word 11" />
<link rel="File-List" href="file:///C:%5CDOCUME%7E1%5Cmai%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml" /><!--[if gte mso 9]><xml>
<w:WordDocument>
<w:View>Normal</w:View>
<w:Zoom>0</w:Zoom>
<w:PunctuationKerning/>
<w:DrawingGridVerticalSpacing>7.8 磅</w:DrawingGridVerticalSpacing>
<w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery>
<w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery>
<w:ValidateAgainstSchemas/>
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
<w:Compatibility>
<w:SpaceForUL/>
<w:BalanceSingleByteDoubleByteWidth/>
<w:DoNotLeaveBackslashAlone/>
<w:ULTrailSpace/>
<w:DoNotExpandShiftReturn/>
<w:AdjustLineHeightInTable/>
<w:BreakWrappedTables/>
<w:SnapToGridInCell/>
<w:WrapTextWithPunct/>
<w:UseAsianBreakRules/>
<w:DontGrowAutofit/>
<w:UseFELayout/>
</w:Compatibility>
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
</w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:LatentStyles deflockedstate="false" latentstylecount="156">
</w:LatentStyles>
</xml><![endif]--><style>
<!-- /* Font Definitions */
@font-face
{font-family:宋体;
panose-1:2 1 6 0 3 1 1 1 1 1;
mso-font-alt:SimSun;
mso-font-charset:134;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:3 135135232 16 0 262145 0;}
@font-face
{font-family:"\@宋体";
panose-1:2 1 6 0 3 1 1 1 1 1;
mso-font-charset:134;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:3 135135232 16 0 262145 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-parent:"";
margin:0cm;
margin-bottom:.0001pt;
text-align:justify;
text-justify:inter-ideograph;
mso-pagination:none;
font-size:10.5pt;
mso-bidi-font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:宋体;
mso-font-kerning:1.0pt;}
/* Page Definitions */
@page
{mso-page-border-surround-header:no;
mso-page-border-surround-footer:no;}
@page Section1
{size:595.3pt 841.9pt;
margin:72.0pt 90.0pt 72.0pt 90.0pt;
mso-header-margin:42.55pt;
mso-footer-margin:49.6pt;
mso-paper-source:0;
layout-grid:15.6pt;}
div.Section1
{page:Section1;}
-->
</style><!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:普通表格;
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-parent:"";
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-para-margin:0cm;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
mso-ansi-language:#0400;
mso-fareast-language:#0400;
mso-bidi-language:#0400;}
</style>
<![endif]-->
<p class="MsoNormal"><span lang="EN-US">Ok, whether this time is the right time I
don&#8217;t know, but I just need reload myself. Every time when I thinking why I&#8217;m
here and what I&#8217;ll do the answer is always &#8220;Keep going boy, never look back
because you are the man who will control every situation that hardest in before
but now it is nothing and easy to passed by. In another way of saying, it means
I&#8217;ll success vanquish my fear today in tomorrow that I faced again.&#8221; Now, those
words will be added some thing new, which is &#8220;whatever I was fear is, I&#8217;ll
solve it NOW, never to waiting it appear again. I&#8217;ll destroy it just now, not
tomorrow.&#8221; I find my location myself, I set my axis myself, and I&#8217;ll keep my
road to be the best man myself. Never to wait someone&#8217;s helped, never to beg
someone&#8217;s sympathy. You are the ONE who not stronger, you&#8217;ll ever worth to be
helped. We don&#8217;t need only help; we just need help each other. Everything can
be getting by exchanged, if you have the things that other needing. </span></p>
<p class="MsoNormal"><span lang="EN-US">Never lose you faith. You are the man. Keep
going! </span></p>
<img src ="http://www.blogjava.net/mai-q/aggbug/245714.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/mai-q/" target="_blank">Mai Qi</a> 2008-12-11 15:47 <a href="http://www.blogjava.net/mai-q/archive/2008/12/11/245714.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Tired but still fine.</title><link>http://www.blogjava.net/mai-q/archive/2008/10/12/233811.html</link><dc:creator>Mai Qi</dc:creator><author>Mai Qi</author><pubDate>Sat, 11 Oct 2008 16:02:00 GMT</pubDate><guid>http://www.blogjava.net/mai-q/archive/2008/10/12/233811.html</guid><wfw:comment>http://www.blogjava.net/mai-q/comments/233811.html</wfw:comment><comments>http://www.blogjava.net/mai-q/archive/2008/10/12/233811.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/mai-q/comments/commentRss/233811.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/mai-q/services/trackbacks/233811.html</trackback:ping><description><![CDATA[<p class="MsoNormal"><span lang="EN-US">Some time I find myself forgot things very
easy, something I&#8217;ve down before, study before, but just can remember a little.
Why? Is this means I&#8217;m old or I&#8217;m greed? I don&#8217;t know. Everyday&#8217;s work expend my
energy a lot, everyday&#8217;s simple little thing head up makes me can&#8217;t thinking
for things I liked, or digest what I studied in spare time. Follow some one
doesn&#8217;t know how to help you plan your work, or maybe this man very clear how
to plan me to work for him, so I couldn&#8217;t know what I&#8217;ve doing next, everything
is particle, pitch, what the whole thing is? I don&#8217;t know. And if you not urge
me do things like a machine not a human, a worker, or an engineer, I&#8217;ll very appreciate
you.</span></p>
<p class="MsoNormal"><span lang="EN-US">Another thing is, just as is, I must make
myself know how to balance work and rest. Life is gift, can&#8217;t waste valueless.</span></p>
<img src ="http://www.blogjava.net/mai-q/aggbug/233811.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/mai-q/" target="_blank">Mai Qi</a> 2008-10-12 00:02 <a href="http://www.blogjava.net/mai-q/archive/2008/10/12/233811.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Hi, I come!</title><link>http://www.blogjava.net/mai-q/archive/2008/09/11/228450.html</link><dc:creator>Mai Qi</dc:creator><author>Mai Qi</author><pubDate>Thu, 11 Sep 2008 13:27:00 GMT</pubDate><guid>http://www.blogjava.net/mai-q/archive/2008/09/11/228450.html</guid><wfw:comment>http://www.blogjava.net/mai-q/comments/228450.html</wfw:comment><comments>http://www.blogjava.net/mai-q/archive/2008/09/11/228450.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/mai-q/comments/commentRss/228450.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/mai-q/services/trackbacks/228450.html</trackback:ping><description><![CDATA[<p>&nbsp; </p>
<p>I know I&#8217;m stupid enough. I thought in past I do a lot bad thing and waste a lot of time doing so I&#8217;m here and feel sadly some time. But fun thing is I still can found things make me happy, a lots of time at least, I know, that means I still know what love is. If I keep my heart open and share my knowledge, I can get new friend that also simple in some area and kind to other like me, is that true or not? &nbsp;Hehe, you judge it. Life is a gift, what I seeking for? This is a big question, a big subject for everybody, so some time I was tired for finding that question which never can be answered, and choose a best question that can make me simple and simple again. </p>
<p>This area is just a place that keeps my note and, as you see, puts my complaint. I&#8217;m the king here, but god is still over my head. So look out your mouth, my friend. </p>
<img src ="http://www.blogjava.net/mai-q/aggbug/228450.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/mai-q/" target="_blank">Mai Qi</a> 2008-09-11 21:27 <a href="http://www.blogjava.net/mai-q/archive/2008/09/11/228450.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>