﻿<?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>IT博客网-毒菇求Buy-文章分类-Others</title><link>http://www.cnitblog.com/alsan/category/133.html</link><description>Not now, when?</description><language>zh-cn</language><lastBuildDate>Fri, 14 Sep 2007 12:29:50 GMT</lastBuildDate><pubDate>Fri, 14 Sep 2007 12:29:50 GMT</pubDate><ttl>60</ttl><item><title>SVN客户端以SSH方式连接服务器端</title><link>http://www.cnitblog.com/alsan/articles/33312.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Thu, 13 Sep 2007 08:57:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/33312.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/33312.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/33312.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/33312.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/33312.html</trackback:ping><description><![CDATA[<style>ol,li {font-family:Verdana;font-size:12px;}</style>
<ol>
    <li>安装PUTTY，并配置使其能以SSH方式连接SSH服务器（参考PUTTY连SSH的文章）</li>
    <li>安装TortoiseSVN，并测试是否可以svn+ssh://developer/repository的方式连接SVN服务器<br></li>
    <li>安装SVN客户端（for window）</li>
    <li>在Path中增加TortoiseSVN\bin及SVN\bin的路径</li>
    <li>修改C:\Document and Settings\Current User\Application Data\Subversion\config, 將# ssh = $SVN_SSH ssh 改為ssh = TortoisePlink.exe</li>
    <li>测试：在命令模式中输入&#8220;svn list svn+ssh://developer/repository&#8220;，应該会显示repository中的内容</li>
</ol>
<br><br><img src ="http://www.cnitblog.com/alsan/aggbug/33312.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2007-09-13 16:57 <a href="http://www.cnitblog.com/alsan/articles/33312.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Javascript Programming Conventions</title><link>http://www.cnitblog.com/alsan/articles/8069.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Sat, 25 Mar 2006 01:14:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/8069.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/8069.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/8069.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/8069.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/8069.html</trackback:ping><description><![CDATA[
		<p style="FONT-SIZE: 12px; FONT-FAMILY: Verdana">This document follows the basic outline of the Java Programming Conventions Guide, a copy of which may be found at <a href="http://geosoft.no/javastyle.html">http://geosoft.no/javastyle.html</a></p>
		<div style="FONT-SIZE: 16px; COLOR: #800000; FONT-FAMILY: Verdana">Conventions</div>
		<p style="FONT-SIZE: 12px; FONT-FAMILY: Verdana">Any violation to this guide is allowed if it enhances readability.</p>
		<p style="FONT-SIZE: 12px; FONT-FAMILY: Verdana">Guidelines in this document are informed by discussions carried out among the Dojo core developers. The most weight has been given to considerations that impact external developer interaction with Dojo code and APIs. Rules such as whitespace placement are of a much lower order importance fo Dojo developers, but should be followed in the main in order to improve developer coordination.</p>
		<div style="FONT-SIZE: 16px; COLOR: #800000; FONT-FAMILY: Verdana">Quick Reference</div>
		<p style="FONT-SIZE: 12px; FONT-FAMILY: Verdana">Table of core API naming constructs:</p>
		<table style="FONT-SIZE: 12px; FONT-FAMILY: Verdana" border="1">
				<tbody>
						<tr>
								<th>Construct</th>
								<th>Convention</th>
								<th>Comment</th>
						</tr>
						<tr>
								<td>package</td>
								<td>lower</td>
								<td>never multiple words</td>
						</tr>
						<tr>
								<td>class</td>
								<td>UpperLower</td>
								<td> </td>
						</tr>
						<tr>
								<td>public method</td>
								<td>lowerUpper</td>
								<td>whether class or instance method. lower_case() is acceptable only if the particular function is mimicing another API.</td>
						</tr>
						<tr>
								<td>public var</td>
								<td>lowerUpper</td>
								<td> </td>
						</tr>
						<tr>
								<td>constant</td>
								<td>UpperLower or UPPER_LOWER</td>
								<td> </td>
						</tr>
				</tbody>
		</table>
		<p style="FONT-SIZE: 12px; FONT-FAMILY: Verdana">Table of constructs that are not visible in the API, and therefore are optional and carry less weight of enforcement.</p>
		<table style="FONT-SIZE: 12px; FONT-FAMILY: Verdana" border="1">
				<tbody>
						<tr>
								<th>Construct</th>
								<th>Convention</th>
								<th>Comment</th>
						</tr>
						<tr>
								<td>private method</td>
								<td>_lowerUpper</td>
								<td> </td>
						</tr>
						<tr>
								<td>private var</td>
								<td>_lowerUpper</td>
								<td> </td>
						</tr>
						<tr>
								<td>method args</td>
								<td>_lowerUpper, lowerUpper</td>
								<td> </td>
						</tr>
						<tr>
								<td>local vars</td>
								<td>_lowerUpper, lowerUpper</td>
								<td> </td>
						</tr>
				</tbody>
		</table>
		<div style="FONT-SIZE: 16px; COLOR: #800000; FONT-FAMILY: Verdana">Naming Conventions</div>
		<ol style="FONT-SIZE: 12px; FONT-FAMILY: Verdana">
				<li>Names representing packages SHOULD be in all lower case.</li>
				<li>Names representing types (classes) MUST be nouns and written in UpperLower case: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">Account, EventHandler
	</pre></li>
				<li>Constants SHOULD be placed within a single object created as a holder for constants, emulating an Enum; the enum SHOULD be named appropriately, and members SHOULD be named using either UpperLower or UPPER_LOWER case: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">var NodeTypes = {
	Element: 1,
	DOCUMENT: 2
}
	</pre></li>
				<li>Abbreviations and acronyms SHOULD NOT be uppercase when used as a name: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">getInnerHtml(), getXml(), XmlDocument
	</pre></li>
				<li>Names representing methods SHOULD be verbs or verb phrases: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">obj.getSomeValue();
	</pre></li>
				<li>Public class variables MUST be written using upperLower case.</li>
				<li>Private class variables MAY be written using _upperLower (with preceding underscore): <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">var MyClass = function() {
	var _buffer;
	this.doSomething = function() {
	};
}
	</pre></li>
				<li>Variables that are intended to be private, but cannot be based on the semantics of Javascript, SHOULD prepended with a "_" (underscore) char: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">this._somePrivateVariable = statement;
	</pre>NB Note that the above variable also follows the convention for a private variable. </li>
				<li>Generic variables SHOULD have the same name as their type: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">setTopic(topic);	// where topic isTypeOf Topic
	</pre></li>
				<li>All names SHOULD be written in English.</li>
				<li>Variables with a large scope SHOULD have globally unambiguious names, ambiguity MAY be distinguished by package membership. Variables with small or private scope MAY be more terse still.</li>
				<li>The name of the return object is implicit, and SHOULD be avoided in a method name: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">getHandler();	// NOT getEventHandler();
	</pre></li>
				<li>Public names SHOULD be as clear as necessary and SHOULD avoid unclear shortenings and contractions: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">MouseEventHandler	// NOT MseEvtHdlr.
	</pre>Note that, again, any context that can be determined by package membership SHOULD be used when determing if a variable name is clear. For example, a class that represents a mouse event handler: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">myobj.events.mouse.Handler	// NOT myobj.events.mouse.MouseEventHandler
	</pre></li>
				<li>Classes/constructors MAY be named basedon their inheritance pattern, with the base class to the right of the name: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">EventHandler
UIEventHandler
MouseEventHandler
	</pre>NB The base class CAN be dropped from a name if it is obviously implicit in the name: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">MouseEventHandler	// as opposed to MouseUIEventHandler
	</pre></li>
		</ol>
		<div style="FONT-SIZE: 16px; COLOR: #800000; FONT-FAMILY: Verdana">Specific Naming conventions</div>
		<ol style="FONT-SIZE: 12px; FONT-FAMILY: Verdana">
				<li>Ther terms get/set SHOULD NOT used where a field is accessed, unless the variable being accessed is lexically private.</li>
				<li>"is" prefix SHOULD be used for boolean variables and methods.<br />NB, Alternatives include "has", "can" and "should". </li>
				<li>The term "compute" CAN be used in methods where something is computed.</li>
				<li>The term "find" CAN be used in methods where something is looked up.</li>
				<li>Ther terms "initialize" or "init" CAN be used where an object or a concept is established.</li>
				<li>UI Control variables SHOULD be suffixed by the control type, ie: leftComboBox, topScrollPane.</li>
				<li>Plural form MUST be used to name collections.</li>
				<li>"num" prefix or "count" postfix SHOULD be used for variables representing a number of objects.</li>
				<li>Iterator variables SHOULD be called "i", "j", "k", etc.</li>
				<li>Compliment names MUST be used for compliment entities. ie: get/set, add/remove, create/destroy, start/stop, insert/delete, begin/end, etc.</li>
				<li>Abbreviations in names SHOULD be avoided.</li>
				<li>Negated boolean variable names MUST be avoided: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">isNotError	// are UNACCEPTABLE
	</pre></li>
				<li>Exception classes SHOULD be suffixed with "Exception" or "Error"...FIXME (trt) not sure about this?</li>
				<li>Methods returning an object MAY be named after what they return, and methods returning void after what they do.</li>
		</ol>
		<div style="FONT-SIZE: 16px; COLOR: #800000; FONT-FAMILY: Verdana">Files</div>
		<ol style="FONT-SIZE: 12px; FONT-FAMILY: Verdana">
				<li>Class or object-per-file guidelines are not yet determined.</li>
				<li>Tabs (set to 4 spaces) SHOULD be used for indentation.</li>
				<li>If your editor supports "file tags", please append the appropriate tag at the end of the file enable others to effortlessly obey the correct indentation guidelines for that file <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">// vim:ts=4:note:tw=0:
	</pre></li>
				<li>The incompletenes of split line MUST be made obvious: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">var someExpression = Expression1
	+ Expression2
	+ Expression3;
	
var o = someObject.get (
		Expression1,
		Expression2,
		Expression3
	);
	</pre>Note the indentation for expression continuation is indented relative to the variable name, while indentation for parameters is relative to the method being called.<br /><br />Note also the position of the parenthesis in the method call; positioning SHOULD be similar to the use of block notation. </li>
		</ol>
		<div style="FONT-SIZE: 16px; COLOR: #800000; FONT-FAMILY: Verdana">Variables</div>
		<ol style="FONT-SIZE: 12px; FONT-FAMILY: Verdana">
				<li>Variables SHOULD be initialized where they are declared and they SHOULD be declared in the smallest scope possible. A null initialization is acceptable.</li>
				<li>Variables MUST never have a dual meaning.</li>
				<li>Related variables of the same type CAN be declared in a common statement; unrelated variables SHOULD NOT be declared in the same statement.</li>
				<li>Variables SHOULD be kept alive for a short a time as possible.</li>
				<li>Loops/iterative declarations 
<ol><li>Only loop control statements MUST be included in the "for()" construction.</li><li>Loop variables SHOULD be initialized immediately before the loop; loop variables in a "for" statement MAY be initialized in the "for" loop construction.</li><li>The use of "do...while" loops are acceptable (unlike in java)</li><li>The use of "break" and "continue" is not discouraged (unlike in Java)</li></ol></li>
				<li>Conditionals 
<ol><li>Complex conditional expressions SHOULD be avoided; use temporary boolean variables instead.</li><li>The nominal case SHOULD be put in the "if" part and the exception in the "else" part of an "if" statement.</li><li>Executable statements in conditionals MUST be avoided.</li></ol></li>
				<li>Miscellaneous 
<ol><li>The use of magic numbers in the code SHOULD be avoided; they SHOULD be declared using named "constants" instead.</li><li>Floating point constants SHOULD ALWAYS be written with decimal point ant at least one decimal.</li><li>Floating point constants SHOULD ALWAYS be written with a digit before the decimal point.</li></ol></li>
		</ol>
		<div style="FONT-SIZE: 16px; COLOR: #800000; FONT-FAMILY: Verdana">Layout</div>
		<ol style="FONT-SIZE: 12px; FONT-FAMILY: Verdana">
				<li>Block statements 
<ol><li>Block layout SHOULD BE as illustrated below: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">while(!isDone) {
	doSomething();
	isDone = moreToDo();
}
				</pre></li><li>If statements SHOULD have the following form: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">if(someCondition) {
	statements;
} else if(someOtherCondition) {
	statements;
} else {
	statements;
}
				</pre></li><li>for statements SHOULD be have the following form: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">for(initialization; condition; update) {
	statements;
}
				</pre></li><li>while statement SHOULD follow the form in example VI.A.1</li><li>a do...while statement SHOULD have the following form: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">do {
	statements;
} while(condition);
				</pre></li><li>a switch statement SHOULD have the following form: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">switch(condition) {
	case ABC:
		statements;
		// fall through
	case DEF:
		statements;
		break;
	default:
		statements;
		break;
}
				</pre></li><li>a try...catch...finally statement SHOULD have the following form: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">try {
	statements;
} catch(ex) {
	statements;
} finally {
	statements;
}
				</pre></li><li>single statement if-else, while or for MUST NOT be written without brackets, but CAN be written on the same line: <pre style="FONT-SIZE: 12px; COLOR: black; FONT-FAMILY: Courier New , Courier, Monospace; BACKGROUND-COLOR: #ffffff">if(condition) {statement;}
while(condition) {statement;}
for(initialization; condition; update) {statement;}
				</pre></li></ol></li>
				<li>Whitespace 
<ol><li>Conventional operatiors MAY be surrounded by a space (including ternary operatiors).</li><li>Reserved words SHOULD be followed by a space.</li><li>Commas SHOULD be followed by a space.</li><li>Colons MAY be surrounded by a space.</li><li>Semi-colons in for statements SHOULD be followed by a space.</li><li>Semi-colons SHOULD NOT be spreceded by a space.</li><li>Functions/method calls SHOULD NOT be followed by a space. ie:<br />doSomething(someParameter); // NOT doSomething(someParameter) </li><li>Logical units within a block SHOULD be seperated by one blank line.</li><li>Statements MAY be aligned wherever this enhances readability.</li></ol></li>
				<li>Comments 
<ol><li>Tricky code SHOULD not be commented, but rewritten.</li><li>All comments SHOULD be written in English.</li><li>Comments SHOULD be indented relative to their position in the code, preceding or to the right of the code in question.</li><li>The declaration of collection variables SHOULD be followed by a comment stating the common type of the elements in the collection.</li><li>Comments SHOULD be included to explain BLOCKS of code, to explain the point of the following block.</li><li>Comments SHOULD NOT be included for every single line of code.</li></ol></li>
		</ol>
<img src ="http://www.cnitblog.com/alsan/aggbug/8069.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2006-03-25 09:14 <a href="http://www.cnitblog.com/alsan/articles/8069.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>(in)Compatibility between AutoCAD and Visio</title><link>http://www.cnitblog.com/alsan/articles/5055.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Thu, 01 Dec 2005 13:18:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/5055.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/5055.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/5055.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/5055.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/5055.html</trackback:ping><description><![CDATA[<FONT face=Arial color=#000080 size=6>(in)Compatibility between AutoCAD and Visio</FONT> 
<P><FONT face=Arial color=#0000ff size=2><I><A href="http://www.design-drawing.com/contrib/as.htm" target=Link>Adam Stone</A></I></FONT></P>
<P><FONT face=Arial color=#800080 size=2>Comment: Reader Experience: Intermediate</FONT></P>
<P><FONT face=Arial size=2><B>A Visio user reports on his frustrations on getting an AutoCAD drawing into Visio 2000. While trying to figure out Visio's DWG import feature, Adam Stone found answers to his questions -- once he got to the right person at Microsoft.</B></FONT></P>
<P><FONT face=Arial size=2>I have always said, "I would never drive my car over a bridge that was engineered in Visio." On the other hand, I would never use AutoCAD do a simple floor plan layout. The point is to use the right tool for the job at hand. If you are a mechanical engineer or architect, AutoCAD may be the best tool for the job. On the other hand, if you are a space planner, interior designer, or system integrator, then Visio is the better tool to use.</FONT></P>
<P><FONT face=Arial size=2>Before going further, I should admit my bias toward Visio. I have never been able to draw more than a rectangle with AutoCAD, and even that took a week to learn. My only interest in AutoCAD is getting whatever drawing I need -- usually floor plans -- into Visio. Since most floor plans are done in AutoCAD, compatibility between the two software programs is a critical feature. Without this compatibility, Visio is just a Microsoft-friendly drawing package.</FONT></P>
<P><FONT face=Arial size=2>Importing Drawings in Visio 2000 With the release of Visio 2000 Technical Edition, I noticed some unusual issues cropping up with the DWG/DXF file converter. The first issue was the number of options and decisions needed to insert a CAD file. With Visio 5.0, it was a two-click process; with Visio 2000, I have many choices to address, all of them drastically affecting the final output of the drawing. Learn from my pain; follow the steps below to enlightenment:</FONT></P>
<P><FONT face=Arial size=2>Step 1. In Visio, set up the page size and scale to match the CAD drawing scale.&nbsp;</FONT></P>
<P><FONT face=Arial size=2>Step 2. From the Visio menu bar, select the <B>Insert&gt;CAD Drawing </B>command, and browse to the location of the DWG or DXF file. (Note that Visio 2000 also reads IGES and MicroStation DGN files.)&nbsp;</FONT></P>
<P><FONT face=Arial size=2>Step 3. After you select the CAD drawing, Visio displays the <B>CAD Drawing Properties</B> dialog box. Set the <B>CAD Drawing Scale</B> to the scale the CAD drawing was created for. Don't worry about the box with the page and CAD drawing. I have not been able to find a correlation between the actual CAD drawing size and what is represented in the box.</FONT></P>
<P><FONT face=Arial size=2>For whatever reason, the default <B>CAD Drawing Units</B> are set to feet; I found it best to change the units to inches. In addition, uncheck the <B>Lock Position</B> and <B>Lock Cropping</B>.</FONT></P>
<P><IMG height=280 alt="The CAD Drawing Properties dialog box is displayed by Visio 2000" src="http://www.design-drawing.com/visio/AcadVsVisio-1.gif" width=380 border=0><BR><FONT face=Arial size=1>The CAD Drawing Properties dialog box is displayed by Visio 2000</FONT></P>
<P><FONT face=Arial size=2>Step 4. Click the <B>Apply</B> button to "test" the conversion. If you get the dialog box shown below, it means that the scale you chose does not match the drawing. Go back and change the scale. Everything works better if they match. In particular, the scale of the two drawings should match when you plan to use Visio shapes on top of the AutoCAD drawing.</FONT></P>
<P><IMG height=218 alt="The CAD Scale dialog box warns that the scale of the CAD drawing does not match the scale of the Visio drawing." src="http://www.design-drawing.com/visio/AcadVsVisio-2.gif" width=339 border=0><BR><FONT face=Arial size=1>The CAD Scale dialog box warns that the scale of the CAD drawing does not match the scale of the Visio drawing</FONT></P>
<P><FONT face=Arial size=2>Step 5: Click the <B>Layer </B>tab, and adjust layers as needed; you can change the visibility, color, and line thickness of every layer.</FONT></P>
<P><FONT face=Arial size=2>Step 6: Click OK, and you should get a clean CAD drawing in Visio. Center the drawing on the page, and use the <B>View&gt;Layer Properties </B>dialog box's <B>Lock</B> option to lock down the drawing, if desired.</FONT></P>
<P><FONT face=Arial color=#000080 size=4>When You Run Into Problems<BR></FONT><FONT face=Arial size=2>In my experience, this process works about 80% of the time. The problem is what do you do with the other 20%? To my dismay, I found that currently there exists <I>no</I> online, offline, or any other support for AutoCAD incompatibility issues. The solutions in this article were gleaned from hours of tedious trial and error, and gentle prodding to get the folks at the Microsoft Business Tools Division to realize this was a serious issue.</FONT></P>
<P><FONT face=Arial size=2>The most common problem I have seen is when I follow the process above and everything looks great, but I get a cropped or blank drawing. This happens because the last person to use this drawing in the CAD application saved the drawing at a zoomed in view. Visio displays the last-saved view. Believe it or not, I was told by Microsoft that this was a "feature" that would be modified in a future release. The easiest way to solve this problem is to open the drawing in a DWG-compatible application (like AutoCAD or IntelliCAD), and use the <B>Zoom Extents </B>command to show the entire drawing; save the drawing. If you don't have AutoCAD or IntelliCAD, then ask the architect do this for you.</FONT></P>
<P><FONT face=Arial size=2>Another annoying issue is when I insert a drawing and all I get is a blank page, or just parts, of the drawing, such as the title bar or legend. At first, this looked to me like the problem above, but when I tried the zoom-to-extents solution, the drawing remained empty. I found out that the problem is caused by <I>ObjectARX-defined entities</I>, which are proprietary objects defined by AutoCAD programming code (commonly called "proxy objects"). Visio 2000 does not warn me that it cannot display proxy objects. The solution is to save the drawing in AutoCAD as an R12 DXF file. This converts the proxy objects into lines.</FONT></P>
<P><FONT face=Arial size=2>A similar issue crops up (pardon the pun) with AutoCAD drawings saved in "paper space" not "model space." Visio 2000 cannot display an AutoCAD drawing saved in paperspace (called "layout mode" in AutoCAD 2000). Bill Holt is in charge of DWG conversion for Microsoft. He told me that the only way to fix this is to use AutoCAD's <B>Wblock</B> command to export everything in paperspace to a new drawing file, then insert the new file and the original file into Visio to create a composite. (Paperspace and layout mode allow AutoCAD to display multiple 2D and 3D views in a single drawing for plotting purposes.)</FONT></P>
<P><FONT face=Arial size=2>The other major problem was not being able to change the color of layers. Visio allows me to change the color of layers in the AutoCAD drawing, but I found that this often did not work. I found out that the objects must be drawn in AutoCAD using color "Bylayer," which causes objects to take on the color of the layer. If objects are colored with the <B>Color</B> command, then the color cannot be overridden in Visio.</FONT></P>
<P><FONT face=Arial color=#000080 size=4>Helpful AutoCAD Cleanup Commands<BR></FONT><FONT face=Arial size=2>I asked Bill Holt to provide me with a list of commands that I can use to help with problem drawings:</FONT></P>
<UL>
<LI><FONT face=Arial size=2>Clean up drawing by using the <B>Purge All</B> and <B>Audit</B> commands.&nbsp;</FONT> 
<LI><FONT face=Arial size=2>Use the <B>ChProp</B> command to select all entities and set color to BYLAYER. This allow the Visio user to change all the color of entities.&nbsp;</FONT> 
<LI><FONT face=Arial size=2>Set <B>Tilemode</B> = 1 to put the drawing in modelspace.&nbsp;</FONT> 
<LI><FONT face=Arial size=2>Set the view by using the <B>Zoom Extents</B> command.&nbsp;</FONT> 
<LI><FONT face=Arial size=2>Save the drawing as a R14 DWG file. If the file has proxy objects (ObjectARX-defined entities) that are causing a problem, save as R12 DXF.</FONT> </LI></UL>
<P><FONT face=Arial size=2>Special thanks to Bill Holt, Kelly Malone and Scott Campbell of the Microsoft Business Tools Division for putting up with my constant barrage of newbie AutoCAD questions. They are now clearly aware of all the issues and have promised to look further into solving these problems.</FONT></P><img src ="http://www.cnitblog.com/alsan/aggbug/5055.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-12-01 21:18 <a href="http://www.cnitblog.com/alsan/articles/5055.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Sample Resumes - Computer Programmer</title><link>http://www.cnitblog.com/alsan/articles/605.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 23:17:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/605.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/605.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/605.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/605.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/605.html</trackback:ping><description><![CDATA[<DIV align=center>
<TABLE class=MsoNormalTable style="mso-cellspacing: 1.5pt; mso-padding-alt: 5.25pt 5.25pt 5.25pt 5.25pt; mso-border-insideh: .75pt outset windowtext; mso-border-insidev: .75pt outset windowtext" cellPadding=0 border=1>
<TBODY>
<TR style="mso-yfti-lastrow: yes">
<TD style="BORDER-RIGHT: #ece9d8; PADDING-RIGHT: 5.25pt; BORDER-TOP: #ece9d8; PADDING-LEFT: 5.25pt; PADDING-BOTTOM: 5.25pt; BORDER-LEFT: #ece9d8; PADDING-TOP: 5.25pt; BORDER-BOTTOM: #ece9d8; BACKGROUND-COLOR: transparent">
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Gang Xu</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">23 South Xianlie<BR>South China Computer Company<BR><?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:City w:st="on"><st1:place w:st="on">Guangzhou</st1:place></st1:City> 510060<BR>Tel: (020)7776560</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Position Sought:</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> </SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Computer Programmer with a foreign enterprise in <st1:City w:st="on"><st1:place w:st="on">Dalian</st1:place></st1:City></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Qualifications:</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> </SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Four years' work experience operating computers extensively, coupled with educational preparation.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Professional Experience: </SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> </SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Computer Programmer, Sough China Computer Company, <st1:City w:st="on"><st1:place w:st="on">Guangzhou</st1:place></st1:City>, from 1990 to date.<BR>Operate flow-charts, collect business infromation fro management, update methods of operation.<BR>Adept at operating IBM-PC and Compact computers.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Educational Background:</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> <st1:place w:st="on"><st1:PlaceName w:st="on">South</st1:PlaceName> <st1:PlaceName w:st="on">China</st1:PlaceName> <st1:PlaceType w:st="on">University</st1:PlaceType></st1:place> of Technology. B.S. in Computer Science, July 1990. Courses included: Computer Science, Systems Design and Analysis, PASCAL Programming, Operating Systems, COBOL Programming, D-BASE Programming, FORTRAN Programming, Systems Management<BR>Dalian No.34 Middle School, 1981-1986</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">English Proficiency</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">: Fluent in speaking, reading and writing.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Hobbies</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">: Bridge, computer games, boating, swimming.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Personal Data:</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Born: November 29, <st1:chmetcnv w:st="on" TCSC="0" NumberType="1" Negative="False" HasSpace="True" SourceValue="1970" UnitName="in">1970 in</st1:chmetcnv> <st1:City w:st="on"><st1:place w:st="on">Dalian</st1:place></st1:City>; Health: Excellent; Marital Status: Single; Height: <st1:chmetcnv w:st="on" TCSC="0" NumberType="1" Negative="False" HasSpace="False" SourceValue="175" UnitName="cm">175cm</st1:chmetcnv>; Weight: <st1:chmetcnv w:st="on" TCSC="0" NumberType="1" Negative="False" HasSpace="False" SourceValue="68" UnitName="kg">68kg</st1:chmetcnv></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">References:</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> </SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">will be supplied  upon request.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P></TD></TR></TBODY></TABLE></DIV>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: center" align=center><SPAN lang=EN-US style="COLOR: black"><o:p> </o:p></SPAN></P><img src ="http://www.cnitblog.com/alsan/aggbug/605.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-06-28 07:17 <a href="http://www.cnitblog.com/alsan/articles/605.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Sample Resumes - Computer Engineer</title><link>http://www.cnitblog.com/alsan/articles/606.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 23:17:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/606.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/606.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/606.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/606.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/606.html</trackback:ping><description><![CDATA[<DIV align=center>
<TABLE class=MsoNormalTable style="mso-cellspacing: 1.5pt; mso-padding-alt: 5.25pt 5.25pt 5.25pt 5.25pt; mso-border-insideh: .75pt outset windowtext; mso-border-insidev: .75pt outset windowtext" cellPadding=0 border=1>
<TBODY>
<TR style="mso-yfti-lastrow: yes">
<TD style="BORDER-RIGHT: #ece9d8; PADDING-RIGHT: 5.25pt; BORDER-TOP: #ece9d8; PADDING-LEFT: 5.25pt; PADDING-BOTTOM: 5.25pt; BORDER-LEFT: #ece9d8; PADDING-TOP: 5.25pt; BORDER-BOTTOM: #ece9d8; BACKGROUND-COLOR: transparent">
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left" align=left><SPAN lang=EN-US style="COLOR: black">Personal Information:&nbsp;<BR>Name: Biying Jiang<BR>Address: <?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:Street w:st="on"><st1:address w:st="on">99 Zhuguang Road</st1:address></st1:Street>. Apt.403, <st1:City w:st="on">Guangzhou</st1:City> 510110<BR>Sex: Female<BR>Birth date: February 16, 1964<BR>Birth place: <st1:place w:st="on"><st1:City w:st="on">Nanhai</st1:City>, <st1:State w:st="on">Guangdong</st1:State></st1:place><BR>Family: Husband and one son <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Position Applied for:</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> </SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Computer Engineer</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Employment Experience:&nbsp;</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1989 - 1994: Programmer Supervisor, Guangdong Computer Union Company.&nbsp;<BR>Write Computer programs, developing block diagrams, utilizing available software and operating systems, and coding machine instructions. Originate block diagrams, Develop file sizes, programming specifications. Determine appropriate use of tape or disk files, printer, etc. Select in-house software or sub-routines to run in connection with program.<BR>Write machine instructions, test, debug, and assemble program. Document overall system and develop data control procedures. Advise and instruct less experienced programmers and offer operating instructions.<o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1985 - 1989: Programmer<BR><st1:City w:st="on"><st1:place w:st="on">Guangzhou</st1:place></st1:City> computer Software Development Co. Coded well-defined systems logic flow charts into computer machine instructions using COBOL. Coded sub-routines following specifications, file size parameters, block diagrams. Performed maintenance tasks and patching to established, straightforward programs. Documented all programs as completed. Tested, debugged and assembled programs.<o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Educational History:&nbsp;</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'">&nbsp;<o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">B.S. in Computer Science, <st1:PlaceName w:st="on">Zhongshan</st1:PlaceName> <st1:PlaceType w:st="on">University</st1:PlaceType>, <st1:City w:st="on"><st1:place w:st="on">Guangzhou</st1:place></st1:City>, 1981-1985<BR>Guangdong Experimental School - graduated in 1985</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Membership:</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Member of <st1:State w:st="on">Guangdong</st1:State> Sub-division of <st1:country-region w:st="on"><st1:place w:st="on">China</st1:place></st1:country-region> Computer Society</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Technical Qualification</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">: Received Computer Engineer Certificate in 1992.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">References:</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> </SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">provided&nbsp; upon request.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P></TD></TR></TBODY></TABLE></DIV><img src ="http://www.cnitblog.com/alsan/aggbug/606.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-06-28 07:17 <a href="http://www.cnitblog.com/alsan/articles/606.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Sample Resumes - Accounting Personnel</title><link>http://www.cnitblog.com/alsan/articles/604.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 23:16:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/604.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/604.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/604.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/604.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/604.html</trackback:ping><description><![CDATA[<DIV align=center>
<TABLE class=MsoNormalTable style="mso-cellspacing: 1.5pt; mso-padding-alt: 5.25pt 5.25pt 5.25pt 5.25pt; mso-border-insideh: .75pt outset windowtext; mso-border-insidev: .75pt outset windowtext" cellPadding=0 border=1>
<TBODY>
<TR style="mso-yfti-lastrow: yes">
<TD style="BORDER-RIGHT: #ece9d8; PADDING-RIGHT: 5.25pt; BORDER-TOP: #ece9d8; PADDING-LEFT: 5.25pt; PADDING-BOTTOM: 5.25pt; BORDER-LEFT: #ece9d8; PADDING-TOP: 5.25pt; BORDER-BOTTOM: #ece9d8; BACKGROUND-COLOR: transparent">
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Graduating class<BR>Dept. Of <?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:PlaceName w:st="on">Accounting</st1:PlaceName><BR><st1:PlaceName w:st="on">Guangdong</st1:PlaceName> <st1:PlaceType w:st="on">College</st1:PlaceType> of Commerce<BR><st1:City w:st="on"><st1:place w:st="on">Guangzhou</st1:place></st1:City> 510320</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Resume</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Manqing Si</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Personal Data</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Sex: Female. Birth date: <st1:chsdate w:st="on" IsROCDate="False" IsLunarDate="False" Day="17" Month="4" Year="1973">4/17/73</st1:chsdate> Birth place: <st1:City w:st="on"><st1:place w:st="on">Fuzhou</st1:place></st1:City><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Position Wanted</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">To serve as enterprise with foreign investment as a junior accountant.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Qualifications</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">College education in accounting, involving use of computers.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Education</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1991 - 1995: Department of Accounting, <st1:place w:st="on"><st1:PlaceName w:st="on">Guangdong</st1:PlaceName> <st1:PlaceType w:st="on">College</st1:PlaceType></st1:place> of Commerce. Courses included:&nbsp;</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Principles of Accounting<BR>Cost Accounting<BR>Corporate Finance<BR>EDP Accounting<BR>Financial Statements<BR>Analysis<BR>Fundamentals of Bookkeeping<BR>management Accounting<BR>Financial Management<BR>Foreign-oriented Accounting<BR>Industrial Accounting</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1985 - 1991: <st1:City w:st="on"><st1:place w:st="on">Fuzhou</st1:place></st1:City> No.38 Middle School</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Rewards</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">:&nbsp;</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">College Scholarships in 1994 and 1995.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Summer jobs</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">&nbsp;</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Accountant trainee at Avon Products (<st1:City w:st="on"><st1:place w:st="on">Guangzhou</st1:place></st1:City>) Ltd. in 1993 and 1994.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Date of Availability:</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">July 26, 1995</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">References</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">will be provided&nbsp; upon request.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P></TD></TR></TBODY></TABLE></DIV><img src ="http://www.cnitblog.com/alsan/aggbug/604.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-06-28 07:16 <a href="http://www.cnitblog.com/alsan/articles/604.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Sample Resumes - Marketing/Sales Manager</title><link>http://www.cnitblog.com/alsan/articles/603.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 23:15:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/603.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/603.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/603.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/603.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/603.html</trackback:ping><description><![CDATA[<DIV align=center>
<TABLE class=MsoNormalTable style="mso-cellspacing: 1.5pt; mso-padding-alt: 5.25pt 5.25pt 5.25pt 5.25pt; mso-border-insideh: .75pt outset windowtext; mso-border-insidev: .75pt outset windowtext" cellPadding=0 border=1>
<TBODY>
<TR style="mso-yfti-lastrow: yes">
<TD style="BORDER-RIGHT: #ece9d8; PADDING-RIGHT: 5.25pt; BORDER-TOP: #ece9d8; PADDING-LEFT: 5.25pt; PADDING-BOTTOM: 5.25pt; BORDER-LEFT: #ece9d8; PADDING-TOP: 5.25pt; BORDER-BOTTOM: #ece9d8; BACKGROUND-COLOR: transparent">
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'">A Resume of Sifu Zhong&nbsp;</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><?xml:namespace prefix = o /><o:p></o:p></SPAN></P>
<TABLE class=MsoNormalTable style="mso-cellspacing: 1.5pt" cellPadding=0 border=0>
<TBODY>
<TR style="mso-yfti-lastrow: yes">
<TD style="BORDER-RIGHT: #ece9d8; PADDING-RIGHT: 0.75pt; BORDER-TOP: #ece9d8; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; BORDER-LEFT: #ece9d8; WIDTH: 50%; PADDING-TOP: 0.75pt; BORDER-BOTTOM: #ece9d8; BACKGROUND-COLOR: transparent" width="50%">
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US style="COLOR: black; mso-bidi-font-size: 10.0pt">Sales Department</SPAN><SPAN lang=EN-US style="COLOR: black"> <o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Huafeng Foodstuffs Industrial (Group) Company</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Pingsha Administrative District</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Zhuhai 519055</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">(0756)7751352</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P></TD>
<TD style="BORDER-RIGHT: #ece9d8; PADDING-RIGHT: 0.75pt; BORDER-TOP: #ece9d8; PADDING-LEFT: 0.75pt; PADDING-BOTTOM: 0.75pt; BORDER-LEFT: #ece9d8; WIDTH: 50%; PADDING-TOP: 0.75pt; BORDER-BOTTOM: #ece9d8; BACKGROUND-COLOR: transparent" width="50%">
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US style="COLOR: black; mso-bidi-font-size: 10.0pt">Sex: Male</SPAN><SPAN lang=EN-US style="COLOR: black"> <o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Born: Aug.23,1954</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">BirthPlace: <?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:City w:st="on"><st1:place w:st="on">Changsha</st1:place></st1:City></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Marital Status: Married, one child</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Health: strong</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P></TD></TR></TBODY></TABLE>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Job Objective</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">To serve as a sales manager at a Sino-foreign joint venture in <st1:City w:st="on"><st1:place w:st="on">Changsha</st1:place></st1:City></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Reasons for leaving</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">To live with my parents who are advanced in age.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Employment History</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1992 - Present: Sales manager at Zhuhai Huafeng Foodstuffs Industrial (Group) Company. Increased Huafeng Instant Noodles Overseas sales by 25% and domestic sales by 20% in 1993.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1990 - 1991: Assistant to Sales Manager of Guangdong Guli Lockmaking (Group) Company in Zhongshan, Responsible for promoting sales of guli Brand locks in the international market.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1979 - 1989: Salesman at <st1:State w:st="on"><st1:place w:st="on">Hunan</st1:place></st1:State> Machinery &amp; Equipment Imp. &amp; Exp. Company. Responsible for importing machinery &amp; equipment from English-speaking countries and selling them at home.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Education</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1975 - 1978: Majored in International Trade at Beijing Institute of Foreign Trade</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">References</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">will be provided upon request.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P></TD></TR></TBODY></TABLE></DIV><img src ="http://www.cnitblog.com/alsan/aggbug/603.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-06-28 07:15 <a href="http://www.cnitblog.com/alsan/articles/603.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Sample Resumes - Business Manager</title><link>http://www.cnitblog.com/alsan/articles/602.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 23:14:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/602.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/602.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/602.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/602.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/602.html</trackback:ping><description><![CDATA[<DIV align=center>
<TABLE class=MsoNormalTable style="mso-cellspacing: 1.5pt; mso-padding-alt: 5.25pt 5.25pt 5.25pt 5.25pt" cellPadding=0 border=0>
<TBODY>
<TR style="mso-yfti-lastrow: yes">
<TD style="BORDER-RIGHT: #ece9d8; PADDING-RIGHT: 5.25pt; BORDER-TOP: #ece9d8; PADDING-LEFT: 5.25pt; PADDING-BOTTOM: 5.25pt; BORDER-LEFT: #ece9d8; PADDING-TOP: 5.25pt; BORDER-BOTTOM: #ece9d8; BACKGROUND-COLOR: transparent">
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US style="COLOR: black; mso-bidi-font-size: 10.0pt">Building No.3, Apt.602<BR><?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:address w:st="on"><st1:Street w:st="on">1148 North Jiefang Road</st1:Street><BR><st1:City w:st="on">Guangzhou</st1:City></st1:address> 510400</SPAN><SPAN lang=EN-US style="COLOR: black"> <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Resume</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Dahai Zhang&nbsp;</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Objective</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">To work as a general manager in an joint venture enterprise in <st1:City w:st="on"><st1:place w:st="on">Guangzhou</st1:place></st1:City>&nbsp;</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Experience</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">7</SPAN></B><B><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">／</FONT></SPAN></B><B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1988</SPAN></B><B><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">－</FONT></SPAN></B><B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">8</SPAN></B><B><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">／</FONT></SPAN></B><B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1991</SPAN></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Supervisor of Administrative Department of Baiyunshan Pharmaceutical General Factory</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">．</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Responsibilities Included supervision of twenty staff members</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">，</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> planning and directing all phases of departmental operations</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">，</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Preparing work schedules</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">，</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> coordination of all the departments in the factory</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">．</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><BR><BR><B>8</B></SPAN><B><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">／</FONT></SPAN></B><B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1991</SPAN></B><B><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">－</FONT></SPAN></B><B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">present</SPAN></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Vice Director of Guangzhou Administration and Service Center for Enterprises with Foreign Investment. Responsible for Providing guidance for Investment and trading activities</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">，</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Introducing Investment Projects and potential partners</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">，</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> arranging study and inspection tours</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">，</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> organizing business talks.</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Education</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">9</SPAN></B><B><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">／</FONT></SPAN></B><B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1984</SPAN></B><B><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">－</FONT></SPAN></B><B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">7</SPAN></B><B><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">／</FONT></SPAN></B><B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1988</SPAN></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Bachelor of Business Administration at People's University of China (Beijing).<BR><B>9 / 1978-7</B></SPAN><B><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">／</FONT></SPAN></B><B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">1984</SPAN></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Guangzhou NO</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">．</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">34 Middle School</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Foreign Language</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">English</SPAN></B><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">：</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Intermediate In reading and fluent In speaking</SPAN><FONT face="Arial Unicode MS"><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">。</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></FONT></P>
<P style="TEXT-ALIGN: center" align=center><B><U><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Personal Data</SPAN></U></B><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'">Birth date</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">：</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> May 16</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">，</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> 1966 Sex</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">：</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Male Health</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">：</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Excellent<BR>Family Status</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">：</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> Married</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">，</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> one child</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">．</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"><BR>ID Card No</SPAN><SPAN style="FONT-SIZE: 10.5pt; mso-bidi-font-size: 10.0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face="Arial Unicode MS">：</FONT></SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 10.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> 440104660516007</SPAN><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-bidi-font-family: 'Arial Unicode MS'"> </SPAN><SPAN lang=EN-US style="FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'"><o:p></o:p></SPAN></P></TD></TR></TBODY></TABLE><SPAN lang=EN-US style="COLOR: black"><o:p></o:p></SPAN></DIV><img src ="http://www.cnitblog.com/alsan/aggbug/602.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-06-28 07:14 <a href="http://www.cnitblog.com/alsan/articles/602.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>英文求职信常用语</title><link>http://www.cnitblog.com/alsan/articles/601.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 22:59:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/601.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/601.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/601.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/601.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/601.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: 开 头◆My interest in the position of Masonry Supply Manager has prompted me to forward my resume for your review an consideration.◆The sales Manager position advertised in the ...&nbsp;&nbsp;<a href='http://www.cnitblog.com/alsan/articles/601.html'>阅读全文</a><img src ="http://www.cnitblog.com/alsan/aggbug/601.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-06-28 06:59 <a href="http://www.cnitblog.com/alsan/articles/601.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>英文求职信模板六</title><link>http://www.cnitblog.com/alsan/articles/600.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 22:57:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/600.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/600.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/600.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/600.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/600.html</trackback:ping><description><![CDATA[<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: right; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=right><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">April 13,2000<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:address w:st="on"><st1:Street w:st="on"><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">P.O. Box</SPAN></st1:Street><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"> 36</SPAN></st1:address><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"> <st1:PlaceName w:st="on">BIIT</st1:PlaceName> <st1:PlaceType w:st="on">University</st1:PlaceType> <st1:place w:st="on"><st1:City w:st="on">Beijing</st1:City>,<st1:country-region w:st="on">China</st1:country-region></st1:place> 100000<BR><o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>Dear Sir/Madam:<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>Are you searching for a telecommunications manager with expertise in project management and team leadership?<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>I specialize in creating and implementing high-performance strategies that directly impact growth and profitability of large telecommunications companies. In addition to my knowledge of business processes, I also offer proficiency in telecom software development and cutting-edge technologies.<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>I am relocating to Shenzhen and would be interested in opportunities with your firm. Currently, I serve as manager for BIT Company's Information Industry Division. Briefly, some of my accomplishments include:<o:p></o:p></SPAN></P>
<UL type=disc>
<LI class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt"><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">Developed a tool to track and forecast price,quantity,and revenue, which enables client to monitor business performance <o:p></o:p></SPAN></LI>
<LI class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt"><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">Implemented a customized end-to-end testing process and SQL database <o:p></o:p></SPAN></LI></UL>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">My business acumen, technical expertise, and leadership capabilities have contributed to a number of successful projects. The enclosed resume outlines my credentials and accomplishments in greater detail. I would welcome an opportunity to meet with you for a personal interview.<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR><BR>Sincerely,<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>Gu Bin<o:p></o:p></SPAN></P><img src ="http://www.cnitblog.com/alsan/aggbug/600.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-06-28 06:57 <a href="http://www.cnitblog.com/alsan/articles/600.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>英文求职信模板五</title><link>http://www.cnitblog.com/alsan/articles/599.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 22:55:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/599.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/599.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/599.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/599.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/599.html</trackback:ping><description><![CDATA[<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: right; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=right><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">April 13,2000 <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:address w:st="on"><st1:Street w:st="on"><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">P.O. Box</SPAN></st1:Street><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"> 36</SPAN></st1:address><BR><st1:PlaceName w:st="on"><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">BIIT</SPAN></st1:PlaceName><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"> <st1:PlaceType w:st="on">University</st1:PlaceType><BR><st1:place w:st="on"><st1:City w:st="on">Beijing</st1:City>,<st1:country-region w:st="on">China</st1:country-region></st1:place> 100000<BR><o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>Dear Sir/Madam: <o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>Are you searching for a telecommunications manager with expertise in project management and team leadership? <o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>I specialize in creating and implementing high-performance strategies that directly impact growth and profitability of large telecommunications companies. In addition to my knowledge of business processes, I also offer proficiency in telecom software development and cutting-edge technologies. <o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>I am relocating to Shenzhen and would be interested in opportunities with your firm. Currently, I serve as manager for BIT Company's Information Industry Division. Briefly, some of my accomplishments include:<o:p></o:p></SPAN></P>
<UL type=disc>
<LI class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt"><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">Developed a tool to track and forecast price,quantity,and revenue, which enables client to monitor business performance <o:p></o:p></SPAN></LI>
<LI class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt"><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">Implemented a customized end-to-end testing process and SQL database <o:p></o:p></SPAN></LI></UL>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">My business acumen, technical expertise, and leadership capabilities have contributed to a number of successful projects. The enclosed resume outlines my credentials and accomplishments in greater detail. I would welcome an opportunity to meet with you for a personal interview. <o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR><BR>Sincerely,<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>Gu Bin<o:p></o:p></SPAN></P><img src ="http://www.cnitblog.com/alsan/aggbug/599.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-06-28 06:55 <a href="http://www.cnitblog.com/alsan/articles/599.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>英文求职信模板三</title><link>http://www.cnitblog.com/alsan/articles/597.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 22:54:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/597.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/597.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/597.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/597.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/597.html</trackback:ping><description><![CDATA[<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: right; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=right><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">April 13,2000 <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:address w:st="on"><st1:Street w:st="on"><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>P.O. Box</SPAN></st1:Street><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"> 36</SPAN></st1:address><BR><st1:PlaceName w:st="on"><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">BIIT</SPAN></st1:PlaceName><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"> <st1:PlaceType w:st="on">University</st1:PlaceType><BR><st1:place w:st="on"><st1:City w:st="on">Beijing</st1:City>,<st1:country-region w:st="on">China</st1:country-region></st1:place> 100000<BR><o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>Dear Sir/Madam:<BR><BR>Now and then corporations send out feelers for just the right type of creative person. This person must fit very specific criteria. Usually, after all is said and done, the corporation wants a business person who can manage, create and communicate. A seasoned professional who's been around for a while. <o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>If you've been looking for this rare combination of business savvy and design expertise, my background might interest you: <o:p></o:p></SPAN></P>
<UL type=disc>
<LI class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt"><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">Ten years of working experience. Solid background in the management of creative up-and-comers. <o:p></o:p></SPAN></LI>
<LI class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt"><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">Know new technologies that show instant profit, such as CAD/CAM. <o:p></o:p></SPAN></LI></UL>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">This is but a brief summary of my abilities. And there is much, much more to share.I feel I have strong marketable skills in which you would be interested. Please contact me if you would like to hear and see more. <o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR><BR>With many thanks, <o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>Huang Yan<o:p></o:p></SPAN></P><img src ="http://www.cnitblog.com/alsan/aggbug/597.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-06-28 06:54 <a href="http://www.cnitblog.com/alsan/articles/597.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>英文求职信模板二</title><link>http://www.cnitblog.com/alsan/articles/596.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 22:53:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/596.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/596.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/596.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/596.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/596.html</trackback:ping><description><![CDATA[<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: right; mso-pagination: widow-orphan" align=right><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt">April 13,2000 <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>Room 212 Building 343 <BR><?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:PlaceName w:st="on">Tsinghua</st1:PlaceName> <st1:PlaceType w:st="on">University</st1:PlaceType>,<st1:City w:st="on"><st1:place w:st="on">Beijing</st1:place></st1:City> 100084 <BR><o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>Ms. Yang:<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>I was referred to you by Mr. Zhang, a Partner with your <st1:City w:st="on">Beijing</st1:City> office, who informed me that the <st1:City w:st="on"><st1:place w:st="on">Shanghai</st1:place></st1:City> office of your company is actively seeking to hire quality individuals for your Auditor Program.<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>I have more than two years of accounting experience, including interning as an Auditor last year with the <st1:City w:st="on"><st1:place w:st="on">Beijing</st1:place></st1:City> office of CCCC. I will be receiving my MBA this May from <st1:place w:st="on"><st1:PlaceName w:st="on">Tsinghua</st1:PlaceName> <st1:PlaceType w:st="on">University</st1:PlaceType></st1:place>. I am confident that my combination of practical work experience and solid educational experience has prepared me for making an immediate contribution to your company. I understand the level of professionalism and communication required for long-term success in the field. My background and professional approach to business will provide your office with a highly productive Auditor upon completion of your development program.<o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>I will be in the <st1:City w:st="on"><st1:place w:st="on">Shanghai</st1:place></st1:City> area the week of April 16. Please call me at 136001216901 to arrange a convenient time when we may meet to further discuss my background in relation to your needs. I look forward to meeting you then. <o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR><BR>Sincerely, <o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto" align=left><SPAN lang=EN-US style="mso-bidi-font-size: 10.5pt; mso-font-kerning: 0pt"><BR>Cheng Dan <o:p></o:p></SPAN></P><img src ="http://www.cnitblog.com/alsan/aggbug/596.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-06-28 06:53 <a href="http://www.cnitblog.com/alsan/articles/596.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>英文求职信模板一</title><link>http://www.cnitblog.com/alsan/articles/595.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 22:52:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/595.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/595.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/595.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/595.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/595.html</trackback:ping><description><![CDATA[<P style="TEXT-ALIGN: right" align=right><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'">April 13,2000 <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></P>
<P><?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:address w:st="on"><st1:Street w:st="on"><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'">P.O. Box</SPAN></st1:Street><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'"> 36</SPAN></st1:address><BR><st1:PlaceName w:st="on"><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'">Tsinghua</SPAN></st1:PlaceName><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'"> <st1:PlaceType w:st="on">University</st1:PlaceType><BR><st1:place w:st="on"><st1:City w:st="on">Beijing</st1:City>,<st1:country-region w:st="on">China</st1:country-region></st1:place> 100084<o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'">Dear Sir/Madam:<BR>Your advertisement for a Network Maintenance Engineer in the April 10 <I>Student Daily</I> interested me bacause the position that you described sounds exactly like the kind of job I am seeking. <o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'">According to the advertisement ,your position requires top university,Bachelor or above in Computer Science or equivalent field and proficient in Windows NT4.0 and LINUX System. I feel that I am competent to meet the requirements. I will be graduating from Graduate School of Tsinghua University this year with a M.S. degree . My studies have included courses in computer control and management and I designed a control simulation system developed with Microsoft Visual InterDev and SQL Server. <o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'">During my education, I have grasped the principals of my major and skills of practice. Not only have I passed CET-6, but more important I can communicate with others freely in English. My ability to write and speak English is out of question. <o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'">I would appreciate your time in reviewing my enclosed resume and if there is any additional information you require, please contact me.I would welcome an opportunity to meet with you for a personal interview. <o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'">With many thanks, <o:p></o:p></SPAN></P>
<P><SPAN lang=EN-US style="FONT-SIZE: 10.5pt; FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'">Wang Lin<o:p></o:p></SPAN></P><img src ="http://www.cnitblog.com/alsan/aggbug/595.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-06-28 06:52 <a href="http://www.cnitblog.com/alsan/articles/595.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>The titles of common positions</title><link>http://www.cnitblog.com/alsan/articles/594.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 22:51:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/594.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/594.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/594.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/594.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/594.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp; 摘要: Accountant会计员，会计师Mechanical Engineer机械工程师Administration Assistant行政助理Merchandiser买手（商人）Administrator行政主管Messenger信差（邮递员）Apprentice学徒Office...&nbsp;&nbsp;<a href='http://www.cnitblog.com/alsan/articles/594.html'>阅读全文</a><img src ="http://www.cnitblog.com/alsan/aggbug/594.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/alsan/" target="_blank">毒菇求Buy</a> 2005-06-28 06:51 <a href="http://www.cnitblog.com/alsan/articles/594.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Useful wording in application letters</title><link>http://www.cnitblog.com/alsan/articles/593.html</link><dc:creator>毒菇求Buy</dc:creator><author>毒菇求Buy</author><pubDate>Mon, 27 Jun 2005 22:50:00 GMT</pubDate><guid>http://www.cnitblog.com/alsan/articles/593.html</guid><wfw:comment>http://www.cnitblog.com/alsan/comments/593.html</wfw:comment><comments>http://www.cnitblog.com/alsan/articles/593.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/alsan/comments/commentRss/593.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/alsan/services/trackbacks/593.html</trackback:ping><description><![CDATA[<P><FONT face="Arial Unicode MS"><STRONG><SPAN lang=EN-US style="mso-bidi-font-family: 'Arial Unicode MS'">Beginnings </SPAN></STRONG><STRONG><SPAN style="FONT-FAMILY: 'Arial Unicode MS'; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">说明写应征函的起因：</SPAN></STRONG></FONT><SPAN lang=EN-US style="FONT-FAMILY: 'Times New Roman'; mso-bidi-font-family: 'Arial Unicode MS'"><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US><FONT face=Verdana size=2>1. In reply to your advertisement in today's (newspaper), I respectfully offer my services for the situtation.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT face=Verdana><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">拜读今日</SPAN><SPAN lang=EN-US>XX</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报上贵公司广告，本人特此备函应征该职位。</SPAN></FONT></FONT><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>2. Replying to your advertisement in today's issue of the (newspaper), I wish to apply for the position in your esteemed firm.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face=Verdana size=2>拜读贵公司在今日（报章）上广告，特此备函应征贵公司该职位。</FONT></SPAN><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>3. With reference to your advertisement in (newspaper ) of May 2 for a clerk, I oofer myself for the post.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT face=Verdana><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">从<?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:chsdate w:st="on" IsROCDate="False" IsLunarDate="False" Day="2" Month="5" Year="2005">五月二日</st1:chsdate></SPAN><SPAN lang=EN-US>XX</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报上广告栏得知公司招聘一位职员。</SPAN></FONT></FONT><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>4. Please consider me an applicant ofr the position which you advertised in (newspaper) of December 5</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT face=Verdana><FONT size=2><st1:chsdate w:st="on" IsROCDate="False" IsLunarDate="False" Day="5" Month="12" Year="2005"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">十二月五日</SPAN></st1:chsdate><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">贵公司在</SPAN><SPAN lang=EN-US>XX</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报上广告招聘人才，我愿应征，并请给予考虑。</SPAN></FONT></FONT><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>5. In reply to your advertisement in today's (newsaper) for an account, I tender my services.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT face=Verdana><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">拜读今日</SPAN><SPAN lang=EN-US>XX</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报上贵公司的招才广告，本人特此应招会计一职。</SPAN></FONT></FONT><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>6. I should like to apply for the position mentioned in your advertisement in (newspaper) of July 22</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT face=Verdana><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">贵公司<st1:chsdate w:st="on" IsROCDate="False" IsLunarDate="False" Day="22" Month="7" Year="2005">七月二十二日</st1:chsdate>在</SPAN><SPAN lang=EN-US>XX</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报刊登招聘的职位，特此备函应招。</SPAN></FONT></FONT><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>7. I wihs to apply for the position advertised in the enclosed clipping from the (newspaper) of November 12.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT face=Verdana><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">谨随函附上<st1:chsdate w:st="on" IsROCDate="False" IsLunarDate="False" Day="12" Month="11" Year="2005">十一月十二日</st1:chsdate></SPAN><SPAN lang=EN-US>XX</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报贵公司招聘广告，我愿应招此一职位。</SPAN></FONT></FONT><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>8. Having noticed the enclosed advertisement in this morning's newspaper, I wish to apply for the position referred to.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT face=Verdana><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">拜读今日</SPAN><SPAN lang=EN-US>XX</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报广告得知贵公司正在招聘人才，本人附寄剪报申请此一职位。</SPAN></FONT></FONT><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>9. In answer to your advertisement in today's newspaper fro a secretary, I wihs to tender my services.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT face=Verdana><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">阁下在今日</SPAN><SPAN lang=EN-US>XX</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报上刊登招聘秘书广告，本人获悉，特此应招。</SPAN></FONT></FONT><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>10. Learning from mr. S.P. Chen that you are looking for a sales manager, I should like to apply for the position.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face=Verdana size=2>从陈少朋友先生处得悉，贵公司正在招聘一名业务经理，我愿应招此职。</FONT></SPAN><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>11. Your advertisement for a telephone operator in the newspaper of March 8 has interested me, I feel I can fill that position.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT face=Verdana><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">贵公司<st1:chsdate w:st="on" IsROCDate="False" IsLunarDate="False" Day="8" Month="3" Year="2005">三月八日</st1:chsdate>在</SPAN><SPAN lang=EN-US>XX</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报上刊登招聘电话接线员广告，本人拜读极感兴趣，相信能担任此职。</SPAN></FONT></FONT><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>12. I would like to apply for the post of male engineer as advertised in today's newspaper.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT face=Verdana><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">今日</SPAN><SPAN lang=EN-US>XX</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报上所刊登招聘男性工程人员，本人愿意应征此职。</SPAN></FONT></FONT><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>13. On looking over today's newspaper my attention was attracted by your advertisement for a librarian. Now as I am desirous of obtaining such a position, I should like to apply for the same.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT face=Verdana><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">拜读贵公司在本日</SPAN><SPAN lang=EN-US>XX</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报上所刊登的招聘广告，得悉贵公司招聘一位图书馆员。现在本人正寻找这一类职位，特此修函应征。</SPAN></FONT></FONT><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>14. Referring to your advertisement in the newspaper of June 30 for an assistant chemist, I hope to offer my services.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><FONT face=Verdana><FONT size=2><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">贵公司<st1:chsdate w:st="on" IsROCDate="False" IsLunarDate="False" Day="30" Month="6" Year="2005">六月三十日</st1:chsdate>在</SPAN><SPAN lang=EN-US>XX</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">报上刊登招聘助理药剂师，本人特此备函应征。</SPAN></FONT></FONT></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="COLOR: black"><o:p>&nbsp;</o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="COLOR: black">Beginnings for Unsolicited Letters of Application</SPAN></STRONG><SPAN lang=EN-US style="COLOR: black"> <o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">自荐函用语：起头</SPAN></STRONG><SPAN lang=EN-US><BR><BR><FONT face=Verdana size=2>1. Shall you need an experienced desk clerk for your hotel next summer?</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face=Verdana size=2>贵酒店明年暑期是否需要一名有经验的柜台部职员？</FONT></SPAN><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>2. Because I am very desirous of receiving actual experience in accounting during July and August, I am writing to inquire whether you will need the services of a young man with three years of educational training and some part-time experience. Perhaps I could fill in for one of your office staff during the vacation period.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face=Verdana size=2>因我渴望在七、八月间获得会计实务经验，特备函问询你处是否需雇用受过三年训练略有经验的年轻人？在假期中我或可添补贵公司空缺。</FONT></SPAN><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>3. Gentlemen: Attention of Personnel Manager <BR>I am looking for a postion asassistant shipping clerk.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face=Verdana size=2>人事部经理勋鉴：本人正在谋求一份助理船务职员的工作。</FONT></SPAN><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>4. Perhaps there is a position in your organization for an young, experienced, and conscientious secretary stenographer.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face=Verdana size=2>请问贵公司是否需要一名年青、有经验、负责的女秘书兼速记员？</FONT></SPAN><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>5. I want a job. Not any job with any company, but a particular job with your company. Here are my reasons. Your organization is more than just a busienss house. It is an institution in the minds of the local public. It has a reputation for fair play and honesty with both employees and customers alike.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN lang=EN-US><FONT face=Verdana size=2>For the past four years, while specializing in accounting at colege, I have had a secret ambition to work for your organization in the accounting department. I graduate in June. As I write this letter, I do not know that there is an opening at persent, but here are my qualifications which prompt me to make application now.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face=Verdana size=2>本人需要一份工作，不是任何公司的任何工作，而是贵公司的一个职位。贵公司不只是商店，而是大众都知晓的机构。以公正、证实的美誉远近驰名。在大学主修会计四年来，内心早就想到贵公司会计部工作，今年七月即将毕业。写此信时，不知贵公司目前是否有空缺，但是下列的资历促使本人冒昧提出申请。</FONT></SPAN><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>6. As it is nearing the Christmas season, it occurs to me that you many need additional assistance in selling gifts in your shop. I have a whole week before Christmas, from December 18-24, when I might assist you. I could aslo work evenings from six o'clock on, before December 18.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face=Verdana size=2>圣诞节将届，想到贵公司可能需要销售礼物的助理，本人在圣诞节前一周（<st1:chsdate w:st="on" IsROCDate="False" IsLunarDate="False" Day="18" Month="12" Year="2005">十二月十八日</st1:chsdate>至二十四日）有空，可以帮忙。十八日以前每晚六时后也可以。</FONT></SPAN><SPAN lang=EN-US><BR><FONT face=Verdana size=2><BR>7. Gentlemen: Attention of Personnel Manager<BR>Like many other young men, I am looking for a position. I want to get stated, at the bottom, perhaps, but started.</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><FONT face=Verdana size=2>人事部主任：本人和很多年青人一样正在寻找工作。本人想要有个开头，从基层做起。</FONT></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="COLOR: black"><o:p>&nbsp;</o:p></SPAN></STRONG></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN lang=EN-US style="COLOR: black">Introducing Oneself: About Age and Experience</SPAN></STRONG><SPAN lang=EN-US style="COLOR: black"> <o:p></o:p></SPAN></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><STRONG><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">自我介绍：叙述个人年龄、经验</SPAN></STRONG><SPAN lang=EN-US><BR><BR><FONT face=Verdana size