<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>E-Systems Infrastruture Development</title>
	<atom:link href="http://zhangfaqiang.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://zhangfaqiang.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 11 Jun 2009 12:38:40 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='zhangfaqiang.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/1c6686cf008ae6e63c9a46893bf475fe?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>E-Systems Infrastruture Development</title>
		<link>http://zhangfaqiang.wordpress.com</link>
	</image>
			<item>
		<title>Exercise 19: TP monitors and transaction protocols</title>
		<link>http://zhangfaqiang.wordpress.com/2009/06/09/exercise-19-tp-monitors-and-transaction-protocols/</link>
		<comments>http://zhangfaqiang.wordpress.com/2009/06/09/exercise-19-tp-monitors-and-transaction-protocols/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 04:37:36 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Practice Exam]]></category>

		<guid isPermaLink="false">http://zhangfaqiang.wordpress.com/?p=180</guid>
		<description><![CDATA[ 
A description  of the ACID properties of a transaction
According to Guilfoyle Warner (1994),&#8221; When a transaction processing system creates a transaction, it will ensure that the transaction will have certain characteristics. The developers of the components that comprise the transaction are assured that these characteristics are in place. They do not need to manage these [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=180&subd=zhangfaqiang&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="font-size:small;"> </span></p>
<p align="left"><strong>A description  of the ACID properties of a transaction</strong></p>
<p align="left"><strong>According to </strong><span style="font-size:small;"><em><strong>Guilfoyle </strong></em></span><span style="font-size:small;"><em><strong>Warner (1994)</strong></em></span><span style="font-size:small;"><em><strong>,&#8221;</strong></em></span><strong> </strong>When a transaction processing system creates a transaction, it will ensure that the transaction will have certain characteristics. The developers of the components that comprise the transaction are assured that these characteristics are in place. They do not need to manage these characteristics themselves. These characteristics are known as the ACID properties. ACID is an acronym for atomicity, consistency, isolation, and durability.</p>
<h2>Atomicity</h2>
<p>The atomicity property identifies that the transaction is atomic. An <strong>atomic transaction</strong> is either fully completed, or is not begun at all. Any updates that a transaction might affect on a system are completed in their entirety. If for any reason an error occurs and the transaction is unable to complete all of its steps, the then system is returned to the state it was in before the transaction was started. An example of an atomic transaction is an account transfer transaction. The money is removed from account A then placed into account B. If the system fails after removing the money from account A, then the transaction processing system will put the money back into account A, thus returning the system to its original state. This is known as a <strong>rollback</strong>, as we said at the beginning of this chapter..</p>
<h2>Consistency</h2>
<p>A transaction enforces <strong>consistency</strong> in the system state by ensuring that at the end of any transaction the system is in a valid state. If the transaction completes successfully, then all changes to the system will have been properly made, and the system will be in a valid state. If any error occurs in a transaction, then any changes already made will be automatically rolled back. This will return the system to its state before the transaction was started. Since the system was in a consistent state when the transaction was started, it will once again be in a consistent state.</p>
<p>Looking again at the account transfer system, the system is consistent if the total of all accounts is constant. If an error occurs and the money is removed from account A and not added to account B, then the total in all accounts would have changed. The system would no longer be consistent. By rolling back the removal from account A, the total will again be what it should be, and the system back in a consistent state.</p>
<h2>Isolation</h2>
<p>When a transaction runs in <strong>isolation</strong>, it appears to be the only action that the system is carrying out at one time. If there are two transactions that are both performing the same function and are running at the same time, transaction isolation will ensure that each transaction thinks it has exclusive use of the system. This is important in that as the transaction is being executed, the state of the system may not be consistent. The transaction ensures that the system remains consistent after the transaction ends, but during an individual transaction, this may not be the case. If a transaction was not running in isolation, it could access data from the system that may not be consistent. By providing transaction isolation, this is prevented from happening.</p>
<h2>Durability</h2>
<p>A transaction is <strong>durable</strong> in that once it has been successfully completed, all of the changes it made to the system are permanent. There are safeguards that will prevent the loss of information, even in the case of system failure. By logging the steps that the transaction performs, the state of the system can be recreated even if the hardware itself has failed. The concept of durability allows the developer to know that a completed transaction is a permanent part of the system, regardless of what happens to the system later on.</p>
<p><span style="font-size:small;"><strong>Describe a TP monitor environment.</strong> </span></p>
<p><span style="font-size:small;"><strong>T</strong>ele<strong>P</strong>rocessing monitor or <strong>T</strong>ransaction <strong>P</strong>rocessing monitor) A control program that manages the transfer of data between multiple local and remote terminals and the application programs that serve them. It may also include programs that format the terminal screens and validate the data entered.</span></p>
<p>In a distributed client/server environment, a TP monitor provides integrity by ensuring that transactions do not get lost or damaged. It may be placed in a separate machine and used to balance the load between clients and various application servers and database servers. It is also used to create a high availability system by switching a failed transaction to another machine. A TP monitor guarantees that all databases are updated from a single transaction</p>
<p>Examples of popular TP monitors are CICS, a veteran TP monitor used on IBM mainframes and the Unix-based Tuxedo and Encina products.&#8221;</p>
<p><span style="font-size:small;"><strong>Reference:</strong></span></p>
<p><span style="font-size:small;"><em><strong>C. Guilfoyle and E. Warner (1994) “Intelligent Agents: The New Revolution in Software” Ovum</strong></em></span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zhangfaqiang.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zhangfaqiang.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zhangfaqiang.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zhangfaqiang.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zhangfaqiang.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zhangfaqiang.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zhangfaqiang.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zhangfaqiang.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zhangfaqiang.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zhangfaqiang.wordpress.com/180/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=180&subd=zhangfaqiang&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zhangfaqiang.wordpress.com/2009/06/09/exercise-19-tp-monitors-and-transaction-protocols/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4766809f2e2c497f3faaf4501232adc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny</media:title>
		</media:content>
	</item>
		<item>
		<title>Exercise 24: Virtual business worlds and cyberagents</title>
		<link>http://zhangfaqiang.wordpress.com/2009/06/08/exercise-24-virtual-business-worlds-and-cyberagents/</link>
		<comments>http://zhangfaqiang.wordpress.com/2009/06/08/exercise-24-virtual-business-worlds-and-cyberagents/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 10:05:18 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Practice Exam]]></category>

		<guid isPermaLink="false">http://zhangfaqiang.wordpress.com/?p=175</guid>
		<description><![CDATA[1. Describe what software agents are.
Software agents are probably the fastest growing area of Information Technology (IT). They are being used, and touted, for applications as diverse as personalised information management, electronic commerce, interface design, computer games, and management of complex commercial and industrial processes. Despite this proliferation, there is, as yet, no commonly agreed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=175&subd=zhangfaqiang&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>1. Describe what software agents are.</strong></p>
<p>Software agents are probably the fastest growing area of Information Technology (IT). They are being used, and touted, for applications as diverse as personalised information management, electronic commerce, interface design, computer games, and management of complex commercial and industrial processes. Despite this proliferation, there is, as yet, no commonly agreed upon definition of exactly what an agent is — Smith et al. (1994) define it as “a persistent software entity dedicated to a specific purpose”; Selker (1994) takes agents to be “computer programs that simulate a human relationship by doing something that another person could do for you”; and Janca (1995) defines an agent as “asoftware entity to which tasks can be delegated”. To capture this variety, a relatively loose notion of an agent as a self-contained program capable of controlling its own decision making and acting, based on its perception of its environment, in pursuit of one or more objectives will be used here. Within the extant applications, three distinct classes of agent can be identified. At the simplest level, there are “gopher” agents, which execute straightforward tasks based on pre-specified rules and assumptions (eg inform me when the share price deviates by 10% from its mean position or tell me when I need to reorder stock items). The next level of sophistication involves “service performing” agents, which execute a well defined task at the request of a user (eg find me the cheapest flight to Paris or arrange a meeting with the managing director some day next week). Finally, there are “predictive” agents, which volunteer information or services to a user, without being explicitly asked, whenever it is deemed appropriate (eg an agent may monitor newsgroups on the INTERNET and return discussions that it believes to be of interest to the user or a holiday agent may inform its user that a travel firm is offering large discounts on holidays to South Africa knowing that the user is interested in safaris).</p>
<p><em><strong>Reference:J. L. Alty, D. Griffiths, N. R. Jennings, E. H. Mamdani, A. Struthers, and M. E. Wiegand (1994)<br />
“ADEPT &#8211; Advanced Decision Environment for Process Tasks: Overview &amp; Architecture” Proc.<br />
BCS Expert Systems 94 Conference (Applications Track), Cambridge, UK, 359-371.</strong></em></p>
<p><em><strong>C. Guilfoyle and E. Warner (1994) “Intelligent Agents: The New Revolution in Software” Ovum<br />
Report.</strong></em></p>
<p><em><strong>http://www.csc.liv.ac.uk/~mjw/pubs/iee-review96.pdf</strong></em></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zhangfaqiang.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zhangfaqiang.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zhangfaqiang.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zhangfaqiang.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zhangfaqiang.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zhangfaqiang.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zhangfaqiang.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zhangfaqiang.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zhangfaqiang.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zhangfaqiang.wordpress.com/175/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=175&subd=zhangfaqiang&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zhangfaqiang.wordpress.com/2009/06/08/exercise-24-virtual-business-worlds-and-cyberagents/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4766809f2e2c497f3faaf4501232adc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny</media:title>
		</media:content>
	</item>
		<item>
		<title>Exercise 25:M-commerce and the e-wallet: Innovation and mobile devices</title>
		<link>http://zhangfaqiang.wordpress.com/2009/06/07/exercise-25m-commerce-and-the-e-wallet-innovation-and-mobile-devices/</link>
		<comments>http://zhangfaqiang.wordpress.com/2009/06/07/exercise-25m-commerce-and-the-e-wallet-innovation-and-mobile-devices/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 04:58:00 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Practice Exam]]></category>

		<guid isPermaLink="false">http://zhangfaqiang.wordpress.com/?p=169</guid>
		<description><![CDATA[What is meant by a location based service?
A location-based service (LBS) is an information and entertainment service, accessible with mobile devices through the mobile network and utilizing the ability to make use of the geographical position of the mobile device.
LBS services can be used in a variety of contexts, such as health, work, personal life, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=169&subd=zhangfaqiang&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>What is meant by a location based service?</p>
<p>A <strong>location-based service</strong> (LBS) is an information and entertainment service, accessible with mobile devices through the mobile network and utilizing the ability to make use of the geographical position of the mobile device.</p>
<p>LBS services can be used in a variety of contexts, such as health, work, personal life, etc. <sup><a href="http://en.wikipedia.org/wiki/Location-based_service#cite_note-3"></a></sup> LBS services include services to identify a location of a person or object, such as discovering the nearest banking cash machine or the whereabouts of a friend or employee. LBS services include parcel tracking and vehicle tracking services. LBS can include mobile commerce when taking the form of coupons or advertising directed at customers based on their current location. They include personalized weather services and even location-based games. They are an example of telecommunication convergence.</p>
<p>This concept of location based systems is not compliant with the standardized concept of real time locating systems and related local services (RTLS), as noted in ISO/IEC 19762-5 <sup><a href="http://en.wikipedia.org/wiki/Location-based_service#cite_note-4"></a></sup> and ISO/IEC 24730-1.</p>
<p><span>References:</span>&#8220;Foundations of Location Based Services&#8221;, Stefan Steiniger, Moritz Neun and Alistair Edwardes, University of Zurich<strong> </strong></p>
<p><strong></strong>&#8220;Permanent Reference Document SE.23: Location Based Services“</p>
<p><strong>The difference between WAP and SMS services </strong></p>
<p><img class="alignnone size-medium wp-image-172" title="1" src="http://zhangfaqiang.files.wordpress.com/2009/06/1.jpg?w=300&#038;h=167" alt="1" width="300" height="167" /></p>
<p>This diagram illustrates the essential elements of WAP push . There are several ways that messages can be sent to mobile terminals: via PPG using PAP, via a provided access point to the SMSC using a protocol such as SMPP, or via the SMS-enabled terminal using the Mobile Application Part. In WAP push terminology, the sender of the message is called the push initiator.</p>
<p>In terms of the infrastructure provided, the mechanism used by the sender may cause the message to be routed to an SMSC or a push proxy for onward delivery. The PPG is capable of communicating directly to the recipient or using SMS as a delivery mechanism (either as plain text or as WAP push content). The recipient is either a push-capable terminal or a terminal with short messaging capability.</p>
<p>A major advantage of WAP push is the ability for the developer to send “active” content. In other words, depending on the type of content being sent and the application being addressed in the mobile terminal, the content will be presented to the recipient and can be automatically viewed. Even more powerful, the user may “take action” by using a developer-defined soft-key to immediately activate an application to accomplish a specific task, such as downloading a picture, making a purchase, or responding to a marketing offer. Indeed, WAP push may also be used to initiate activity without user intervention.</p>
<p>The Push system provides a superior level of service and features that build upon the experience of SMS. It provides for active content that can be used, in its simplest form, as a novel way of introducing new services, and in its more sophisticated form, to deliver the service itself. Push via the Openwave Push Proxy Gateway provides all the capabilities necessary to communicate to the widest possible group of users, while facilitating the development of applications by providing a single, open-standard push access point.</p>
<p>Reference:http://developer.openwave.com/docs/wappush_vs_sms.pdf</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zhangfaqiang.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zhangfaqiang.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zhangfaqiang.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zhangfaqiang.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zhangfaqiang.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zhangfaqiang.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zhangfaqiang.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zhangfaqiang.wordpress.com/169/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zhangfaqiang.wordpress.com/169/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zhangfaqiang.wordpress.com/169/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=169&subd=zhangfaqiang&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zhangfaqiang.wordpress.com/2009/06/07/exercise-25m-commerce-and-the-e-wallet-innovation-and-mobile-devices/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4766809f2e2c497f3faaf4501232adc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny</media:title>
		</media:content>

		<media:content url="http://zhangfaqiang.files.wordpress.com/2009/06/1.jpg?w=300" medium="image">
			<media:title type="html">1</media:title>
		</media:content>
	</item>
		<item>
		<title>What &#8217;s scapbooking?</title>
		<link>http://zhangfaqiang.wordpress.com/2009/04/19/what-s-scapbooking/</link>
		<comments>http://zhangfaqiang.wordpress.com/2009/04/19/what-s-scapbooking/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 14:03:07 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Scrapbook]]></category>

		<guid isPermaLink="false">http://zhangfaqiang.wordpress.com/?p=163</guid>
		<description><![CDATA[Scrapbooking is a hobby that has been growing in popularity. The underlying goal is to preserve memories in a unique and creative way. A scrapbooker starts with a scrapbook and a set of memories that they want to preserve for the future
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=163&subd=zhangfaqiang&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Scrapbooking is a hobby that has been growing in popularity. The underlying goal is to preserve memories in a unique and creative way. A scrapbooker starts with a scrapbook and a set of memories that they want to preserve for the future</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zhangfaqiang.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zhangfaqiang.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zhangfaqiang.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zhangfaqiang.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zhangfaqiang.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zhangfaqiang.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zhangfaqiang.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zhangfaqiang.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zhangfaqiang.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zhangfaqiang.wordpress.com/163/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=163&subd=zhangfaqiang&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zhangfaqiang.wordpress.com/2009/04/19/what-s-scapbooking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4766809f2e2c497f3faaf4501232adc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny</media:title>
		</media:content>
	</item>
		<item>
		<title>Commentary for E-Commerce</title>
		<link>http://zhangfaqiang.wordpress.com/2009/04/19/commentary-for-e-commerce/</link>
		<comments>http://zhangfaqiang.wordpress.com/2009/04/19/commentary-for-e-commerce/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 13:56:03 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Commentary]]></category>

		<guid isPermaLink="false">http://zhangfaqiang.wordpress.com/?p=157</guid>
		<description><![CDATA[A growing and maturing online shopper base. Roughly 5 million new U.S. households will shop online each of the next five years, creating a total of 63 million U.S. online shopping households in 2008. And as a growing percentage of these households use broadband, they&#8217;ll research more products and shop online more than their dial-up [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=157&subd=zhangfaqiang&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A growing and maturing online shopper base. Roughly 5 million new U.S. households will shop online each of the next five years, creating a total of 63 million U.S. online shopping households in 2008. And as a growing percentage of these households use broadband, they&#8217;ll research more products and shop online more than their dial-up counterparts. Experienced shoppers will also continue to diversify their online purchasing, keeping sales on a steady climb: For the next five years, food and beverage, sporting goods, and home products will grow the fastest, outpacing more mature categories like books and travel.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zhangfaqiang.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zhangfaqiang.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zhangfaqiang.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zhangfaqiang.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zhangfaqiang.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zhangfaqiang.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zhangfaqiang.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zhangfaqiang.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zhangfaqiang.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zhangfaqiang.wordpress.com/157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=157&subd=zhangfaqiang&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zhangfaqiang.wordpress.com/2009/04/19/commentary-for-e-commerce/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4766809f2e2c497f3faaf4501232adc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny</media:title>
		</media:content>
	</item>
		<item>
		<title>Elevator Pitch</title>
		<link>http://zhangfaqiang.wordpress.com/2009/04/17/elevator-pitch/</link>
		<comments>http://zhangfaqiang.wordpress.com/2009/04/17/elevator-pitch/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 05:58:45 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Evaluation Report]]></category>

		<guid isPermaLink="false">http://zhangfaqiang.wordpress.com/?p=145</guid>
		<description><![CDATA[First assessment elevator pitch.&#8212;Audio

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=145&subd=zhangfaqiang&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.box.net/shared/lz58f2nxpb">First assessment elevator pitch.</a>&#8212;Audio</p>
<p><span style="text-align:center; display: block;"><a href="http://zhangfaqiang.wordpress.com/2009/04/17/elevator-pitch/"><img src="http://img.youtube.com/vi/gBdT9_4LOl0/2.jpg" alt="" /></a></span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zhangfaqiang.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zhangfaqiang.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zhangfaqiang.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zhangfaqiang.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zhangfaqiang.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zhangfaqiang.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zhangfaqiang.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zhangfaqiang.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zhangfaqiang.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zhangfaqiang.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=145&subd=zhangfaqiang&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zhangfaqiang.wordpress.com/2009/04/17/elevator-pitch/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4766809f2e2c497f3faaf4501232adc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/gBdT9_4LOl0/2.jpg" medium="image" />
	</item>
		<item>
		<title>Linux Administration</title>
		<link>http://zhangfaqiang.wordpress.com/2009/04/16/linux-administration/</link>
		<comments>http://zhangfaqiang.wordpress.com/2009/04/16/linux-administration/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 11:05:21 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Practice Exam]]></category>

		<guid isPermaLink="false">http://zhangfaqiang.wordpress.com/?p=141</guid>
		<description><![CDATA[
This exam is intended as a simulation of LPI® exam 101 for junior linux administrators (for more information &#8211; www.lpi.org). Technology areas covered include:

Hardware and Architecture
Linux Installation and Package Management
GNU and Unix commands
Devices, Linux File systems, File system Hierarchy Standard
The X Window System

The required passing percentage score for this exam is approximately 60%. The points [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=141&subd=zhangfaqiang&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div class="snap_preview">
<p>This exam is intended as a simulation of LPI<sup>®</sup> exam 101 for junior linux administrators (for more information &#8211; www.lpi.org). Technology areas covered include:</p>
<ul>
<li>Hardware and Architecture</li>
<li>Linux Installation and Package Management</li>
<li>GNU and Unix commands</li>
<li>Devices, Linux File systems, File system Hierarchy Standard</li>
<li>The X Window System</li>
</ul>
<p>The required passing percentage score for this exam is approximately 60%. The points score reported just has one point assigned for every individual question answered correctly (points score above 42 results in a pass mark).</p>
<p>DISCLAIMER: This exam is not endorsed by or associated with any external entity. It is built by the community. LPI<sup>®</sup> is a trademark of the Linux Professional Institute.</p>
<p>Sections:</p>
<ol>
<li>BIOS Configuration 1.101.1</li>
<li>Sound card and Modem configuration 1.101.3</li>
<li>Non-IDE Device configuration 1.101.4</li>
<li>PC expansion card configuration 1.101.5</li>
<li>Communication Devices configuration 1.101.6</li>
<li>USB device configuration 1.101.7</li>
<li>Hard disk partitioning 1.102.1</li>
<li>Boot managers 1.102.2</li>
<li>Compile/install programs from source 1.102.3</li>
<li>Shared libraries 1.102.4</li>
<li>Debian package system 1.102.5</li>
<li>Red Hat Package system (RPM) 1.102.6</li>
<li>Command line basics 1.103.1</li>
<li>Filtering text streams 1.103.2</li>
<li>File management basics 1.103.3</li>
<li>Redirects streams and pipes 1.103.4</li>
<li>OS Process Management 1.103.5</li>
<li>Process priorities 1.103.6</li>
<li>Regular expressions and text file search 1.103.7</li>
<li>vi text editor basics 1.103.8</li>
<li>Partition and filesystem creation 1.104.1</li>
<li>Filesystem integrity 1.104.2</li>
<li>Filesystem mounting and unmounting 1.104.3</li>
<li>Disk quotas 1.104.4</li>
<li>File permissions management 1.104.5</li>
<li>File ownership management 1.104.6</li>
<li>Hard links and symlinks 1.104.7</li>
<li>FHS, finding files and sys. file locations 1.104.8</li>
<li>X Server installation and configuration X11 1.110.1</li>
<li>Display manager configuration 1.110.2</li>
<li>Window manager configuration 1.110.4</li>
</ol>
<p><span style="text-decoration:underline;">Test-run questions:</span> <span>70</span><br />
<span style="text-decoration:underline;">Duration:</span> <span>110</span> minutes<br />
<span style="text-decoration:underline;">Questions available (all/approved):</span> <span>(72/4)</span><br />
<span style="text-decoration:underline;">Status:</span> <span>ALPHA (This exam is incomplete. Some of its sections may not have a sufficient number of questions. The actual number of questions presented may be less than the exam requires. We need your feedback (comments/ratings) during the exam session!)</span></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zhangfaqiang.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zhangfaqiang.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zhangfaqiang.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zhangfaqiang.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zhangfaqiang.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zhangfaqiang.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zhangfaqiang.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zhangfaqiang.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zhangfaqiang.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zhangfaqiang.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=141&subd=zhangfaqiang&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zhangfaqiang.wordpress.com/2009/04/16/linux-administration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4766809f2e2c497f3faaf4501232adc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny</media:title>
		</media:content>
	</item>
		<item>
		<title>Switch</title>
		<link>http://zhangfaqiang.wordpress.com/2009/04/16/switch/</link>
		<comments>http://zhangfaqiang.wordpress.com/2009/04/16/switch/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 09:02:37 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Workshops]]></category>

		<guid isPermaLink="false">http://zhangfaqiang.wordpress.com/?p=132</guid>
		<description><![CDATA[&#60;?php
$subject = &#8220;ITC382&#8243;;
switch ($subject) {
 
 case &#8220;ITC254&#8243;:
 echo &#8220;I am in ITC254 class&#8221;;
 break;
 case &#8220;ITC382&#8243;:
 echo &#8220;I am in ITC382 class&#8221;;
 break;
 default:
 print &#8220;I must have gotten lost again, I am suppose to be in $subject&#8221;;
 break;
}
?&#62;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=132&subd=zhangfaqiang&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&lt;?php</p>
<p>$subject = &#8220;ITC382&#8243;;</p>
<p>switch ($subject) {<br />
 <br />
 case &#8220;ITC254&#8243;:<br />
 echo &#8220;I am in ITC254 class&#8221;;<br />
 break;<br />
 case &#8220;ITC382&#8243;:<br />
 echo &#8220;I am in ITC382 class&#8221;;<br />
 break;<br />
 default:<br />
 print &#8220;I must have gotten lost again, I am suppose to be in $subject&#8221;;<br />
 break;<br />
}<br />
?&gt;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zhangfaqiang.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zhangfaqiang.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zhangfaqiang.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zhangfaqiang.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zhangfaqiang.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zhangfaqiang.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zhangfaqiang.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zhangfaqiang.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zhangfaqiang.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zhangfaqiang.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=132&subd=zhangfaqiang&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zhangfaqiang.wordpress.com/2009/04/16/switch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4766809f2e2c497f3faaf4501232adc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny</media:title>
		</media:content>
	</item>
		<item>
		<title>Array</title>
		<link>http://zhangfaqiang.wordpress.com/2009/04/16/array/</link>
		<comments>http://zhangfaqiang.wordpress.com/2009/04/16/array/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 09:00:49 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Workshops]]></category>

		<guid isPermaLink="false">http://zhangfaqiang.wordpress.com/?p=130</guid>
		<description><![CDATA[&#60;?php
$lecturers = array(&#8220;Yann&#8221;, &#8220;Sam&#8221;, &#8220;Ven Yu&#8221;, &#8220;Tony&#8221;, &#8220;Anitha&#8221;);
echo $lecturers[1] ; // This will print Sams name
?&#62;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=130&subd=zhangfaqiang&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&lt;?php<br />
$lecturers = array(&#8220;Yann&#8221;, &#8220;Sam&#8221;, &#8220;Ven Yu&#8221;, &#8220;Tony&#8221;, &#8220;Anitha&#8221;);<br />
echo $lecturers[1] ; // This will print Sams name<br />
?&gt;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zhangfaqiang.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zhangfaqiang.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zhangfaqiang.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zhangfaqiang.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zhangfaqiang.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zhangfaqiang.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zhangfaqiang.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zhangfaqiang.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zhangfaqiang.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zhangfaqiang.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=130&subd=zhangfaqiang&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zhangfaqiang.wordpress.com/2009/04/16/array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4766809f2e2c497f3faaf4501232adc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding two numbers together</title>
		<link>http://zhangfaqiang.wordpress.com/2009/04/16/adding-two-numbers-together/</link>
		<comments>http://zhangfaqiang.wordpress.com/2009/04/16/adding-two-numbers-together/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 08:59:31 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Workshops]]></category>

		<guid isPermaLink="false">http://zhangfaqiang.wordpress.com/?p=128</guid>
		<description><![CDATA[&#60;?php
// Adding two numbers together
$num1 = 88;
$num2 = 100;
echo &#8220;The first number is&#8221;, $num1;
echo &#8220;The second number is &#8220;,  $num2 ;
echo &#8221; The total is &#8220;, $num1 + $num2;
?&#62;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=128&subd=zhangfaqiang&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&lt;?php<br />
// Adding two numbers together</p>
<p>$num1 = 88;<br />
$num2 = 100;</p>
<p>echo &#8220;The first number is&#8221;, $num1;<br />
echo &#8220;The second number is &#8220;,  $num2 ;</p>
<p>echo &#8221; The total is &#8220;, $num1 + $num2;</p>
<p>?&gt;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/zhangfaqiang.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/zhangfaqiang.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/zhangfaqiang.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/zhangfaqiang.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/zhangfaqiang.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/zhangfaqiang.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/zhangfaqiang.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/zhangfaqiang.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/zhangfaqiang.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/zhangfaqiang.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=zhangfaqiang.wordpress.com&blog=7174729&post=128&subd=zhangfaqiang&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://zhangfaqiang.wordpress.com/2009/04/16/adding-two-numbers-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4766809f2e2c497f3faaf4501232adc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sunny</media:title>
		</media:content>
	</item>
	</channel>
</rss>