<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;CkQGSXk9cCp7ImA9WhRaE0Q.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651</id><updated>2012-02-16T19:05:28.768+08:00</updated><category term="Personal" /><category term="Travel and Adventure" /><category term="Awesome" /><category term="Joke" /><category term="Health" /><category term="Movie" /><category term="Software and Internet" /><category term="BIg News" /><title>Hakuna Matata</title><subtitle type="html">Don't worry be happy :)</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://wjijie.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>44</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/blogspot/iMrx" /><feedburner:info uri="blogspot/imrx" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;A08CRn0yfSp7ImA9WhZWGEo.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-6450660542716050336</id><published>2011-05-20T10:44:00.003+08:00</published><updated>2011-05-20T16:24:27.395+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-05-20T16:24:27.395+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Software and Internet" /><title>Multiple SSL with Virtual Hosts Using SNI</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/-Jq743zv90yLTQF9SFomHFD72mE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-Jq743zv90yLTQF9SFomHFD72mE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/-Jq743zv90yLTQF9SFomHFD72mE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-Jq743zv90yLTQF9SFomHFD72mE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;b&gt;Summary&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Using name-based virtual hosts with SSL adds another layer of complication. Without the SNI extension, it's not generally possible (though a subset of virtual host might work). With SNI, it's necessary to consider the configuration carefully to ensure security is maintained.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;The Problem&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
The problem with using named virtual hosts over SSL is that named virtual hosts rely on knowing what hostname is being requested, and the request can't be read until the SSL connection is established. The ordinary behavior, then, is that the SSL connection is set up using the configuration in the default virtual host for the address where the connection was received.&lt;br /&gt;
&lt;br /&gt;
While Apache can renegotiate the SSL connection later after seeing the hostname in the request (and does), that's too late to pick the right server certificate to use to match the request hostname during the initial handshake, resulting in browser warnings/errors about certificates having the wrong hostname in them.&lt;br /&gt;
&lt;br /&gt;
And while it's possible to put multiple hostnames in a modern certificate and just use that one certificate in the default vhost, there are many hosting providers who are hosting far too many sites on a single address for that to be practical for them.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Prerequisites to use SNI&lt;/b&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Use OpenSSL 0.9.8f or later&lt;/li&gt;
&lt;li&gt;Build OpenSSL with the TLS Extensions option enabled (option enable-tlsext; OpenSSL 0.9.8k and later has this enabled by default).&lt;/li&gt;
&lt;li&gt;Apache must have been built with that OpenSSL (./configure --with-ssl=/path/to/your/openssl). In that case, mod_ssl will automatically detect the availability of the TLS extensions and support SNI.&lt;/li&gt;
&lt;li&gt;Apache must use that OpenSSL at run-time, which might require setting LD_LIBRARY_PATH or equivalent to point to that OpenSSL, maybe in bin/envvars. (You'll get unresolved symbol errors at Apache startup if Apache was built with SNI but isn't finding the right openssl libraries at run-time.)&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
How can you tell if your Apache build supports SNI? If you configure multiple name-based virtual hosts for an address where SSL is configured, and SNI isn't built into your Apache, then upon Apache startup a message like "You should not use name-based virtual hosts in conjunction with SSL!!" will occur in the error log. If SNI is built in, then the error log will show "[warn] Init: Name-based SSL virtual hosts only work for clients with TLS server name indication support (RFC 4366)".&lt;br /&gt;
&lt;br /&gt;
The client browser must also support SNI. Here are some browsers that do:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Mozilla Firefox 2.0 or later&lt;/li&gt;
&lt;li&gt;Opera 8.0 or later (with TLS 1.1 enabled)&lt;/li&gt;
&lt;li&gt;Internet Explorer 7.0 or later (on Vista, not XP)&lt;/li&gt;
&lt;li&gt;Google Chrome&lt;/li&gt;
&lt;li&gt;Safari 3.2.1 on Mac OS X 10.5.6&lt;/li&gt;
&lt;/ul&gt;&lt;b&gt;Environment variables&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
When Apache supports SNI and the client provided the hostname using SNI, the new environment variable SSL_TLS_SNI will be set to the hostname that the client provided.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Scenarios&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
SNI/Request hostname mismatch, or SNI provides hostname and request doesn't.&lt;br /&gt;
This is a browser bug. Apache will reject the request with a 400-type error.&lt;br /&gt;
Client doesn't support SNI.&lt;br /&gt;
&lt;br /&gt;
If Apache has SNI support, and a request without the SNI hostname is received for a name-based virtual host over SSL, and SSLStrictSNIVHostCheck is on, it will be rejected (403) and this message logged:&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;[error] No hostname was provided via SNI for a name based virtual host&lt;br /&gt;
&lt;br /&gt;
If SSLStrictSNIVHostCheck is off, then the request will be handled as if the server did not have SNI support; see above.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Example configuration&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
# Ensure that Apache listens on port 443&lt;br /&gt;
Listen 443&lt;br /&gt;
&amp;nbsp; &lt;br /&gt;
# Listen for virtual host requests on all IP addresses&lt;br /&gt;
NameVirtualHost *:443&lt;br /&gt;
&lt;br /&gt;
# Go ahead and accept connections for these vhosts&lt;br /&gt;
# from non-SNI clients&lt;br /&gt;
SSLStrictSNIVHostCheck off&lt;br /&gt;
&lt;br /&gt;
&lt;virtualhost *:443=""&gt;&lt;/virtualhost&gt;&lt;br /&gt;
&amp;nbsp; # Because this virtual host is defined first, it will&lt;br /&gt;
&amp;nbsp; # be used as the default if the hostname is not received&lt;br /&gt;
&amp;nbsp; # in the SSL handshake, e.g. if the browser doesn't support&lt;br /&gt;
&amp;nbsp; # SNI.&lt;br /&gt;
&amp;nbsp; DocumentRoot /www/example1&lt;br /&gt;
&amp;nbsp; ServerName www.example.com&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; # Other directives here&lt;br /&gt;
&lt;virtualhost *:443=""&gt;&lt;/virtualhost&gt;&lt;br /&gt;
&amp;nbsp; DocumentRoot /www/example2&lt;br /&gt;
&amp;nbsp; ServerName www.example2.org&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; # Other directives here&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;For more please refer:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://wiki.apache.org/httpd/NameBasedSSLVHostsWithSNI"&gt;http://wiki.apache.org/httpd/NameBasedSSLVHostsWithSNI&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.modssl.org/docs/2.8/ssl_intro.html"&gt;http://www.modssl.org/docs/2.8/ssl_intro.html&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-6450660542716050336?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/eYprt5wE0EA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/6450660542716050336/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2011/05/multiple-ssl-with-virtual-hosts-using.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/6450660542716050336?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/6450660542716050336?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/eYprt5wE0EA/multiple-ssl-with-virtual-hosts-using.html" title="Multiple SSL with Virtual Hosts Using SNI" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2011/05/multiple-ssl-with-virtual-hosts-using.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0MNQ3w7fSp7ImA9Wx9aGEw.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-6678622240764532544</id><published>2011-03-11T11:51:00.000+08:00</published><updated>2011-03-11T11:51:32.205+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-11T11:51:32.205+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Health" /><title>Head Massage</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/npYtBdZeOmREjJic1RppWEe6GyI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/npYtBdZeOmREjJic1RppWEe6GyI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/npYtBdZeOmREjJic1RppWEe6GyI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/npYtBdZeOmREjJic1RppWEe6GyI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;Self massage might be helpful when doctor is not around, no harm to try :)&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/-PL2abeqWmTU/TXmcBO5tjrI/AAAAAAAAAIA/uaC4gfdJeI0/s1600/massage.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="https://lh3.googleusercontent.com/-PL2abeqWmTU/TXmcBO5tjrI/AAAAAAAAAIA/uaC4gfdJeI0/s320/massage.jpg" width="218" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-6678622240764532544?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/i-qAa0ayZYM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/6678622240764532544/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2011/03/head-massage.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/6678622240764532544?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/6678622240764532544?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/i-qAa0ayZYM/head-massage.html" title="Head Massage" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://lh3.googleusercontent.com/-PL2abeqWmTU/TXmcBO5tjrI/AAAAAAAAAIA/uaC4gfdJeI0/s72-c/massage.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2011/03/head-massage.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QNRHs8eCp7ImA9Wx9aGEw.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-5290456801213011380</id><published>2011-03-11T11:49:00.000+08:00</published><updated>2011-03-11T11:49:55.570+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-11T11:49:55.570+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Health" /><title>Sensory touches at the bottom of your foot</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/CB6Jb-DRKyOxw3-7X0zS0xwBQxY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/CB6Jb-DRKyOxw3-7X0zS0xwBQxY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/CB6Jb-DRKyOxw3-7X0zS0xwBQxY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/CB6Jb-DRKyOxw3-7X0zS0xwBQxY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;The Organs of your body have their sensory touches at the bottom of your foot, if you massage these points you will find relief from aches and pains as you can see the heart is on the left foot.&lt;br /&gt;
&lt;br /&gt;
Typically they are shown as points and arrows to show which organ it connects to.&lt;br /&gt;
It is indeed correct since the nerves connected to these organs terminate here.&lt;br /&gt;
This is covered in great details in Acupressure studies or textbooks.&lt;br /&gt;
God created our body so well that he thought of even this. He made us walk so that we will always be pressing these pressure points and thus keeping these organs activated at all times.&lt;br /&gt;
&lt;br /&gt;
So, keep walking...&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-C0tSEEylof8/TXmb0WcjQcI/AAAAAAAAAH8/dkNdfdQMei4/s1600/foot.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="309" src="https://lh6.googleusercontent.com/-C0tSEEylof8/TXmb0WcjQcI/AAAAAAAAAH8/dkNdfdQMei4/s320/foot.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-5290456801213011380?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/HOutZKGpncY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/5290456801213011380/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2011/03/sensory-touches-at-bottom-of-your-foot.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/5290456801213011380?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/5290456801213011380?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/HOutZKGpncY/sensory-touches-at-bottom-of-your-foot.html" title="Sensory touches at the bottom of your foot" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://lh6.googleusercontent.com/-C0tSEEylof8/TXmb0WcjQcI/AAAAAAAAAH8/dkNdfdQMei4/s72-c/foot.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2011/03/sensory-touches-at-bottom-of-your-foot.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0cARnc-eyp7ImA9Wx9aF04.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-409594342196807675</id><published>2011-03-09T19:57:00.002+08:00</published><updated>2011-03-10T13:30:47.953+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-10T13:30:47.953+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Awesome" /><title>The Incredible Climbing Mountain Goats</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/sYyseYQtEHL-bcM7Sr-wT4-5XeU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sYyseYQtEHL-bcM7Sr-wT4-5XeU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/sYyseYQtEHL-bcM7Sr-wT4-5XeU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sYyseYQtEHL-bcM7Sr-wT4-5XeU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;span class="Apple-style-span" style="color: #5b6265; font-family: arial; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; line-height: 20px;"&gt;&lt;b&gt;The Incredible Climbing Mountain Goats&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="color: #5b6265; font-family: arial; font-size: 12px; line-height: 20px;"&gt;You might think you have mad mountain-climbing skills, but nature’s got you beat. I don’t know how they do it, but these mountain goats climb on to the most precarious places.&lt;/div&gt;&lt;div style="color: #5b6265; font-family: arial; font-size: 12px; line-height: 20px;"&gt;Living in mountainous regions around North America,&amp;nbsp;&lt;strong&gt;mountain goats&lt;/strong&gt;&amp;nbsp;can be found at altitudes of up to 13,000 feet, climbing cliffs all day long, in search of food. Thanks to their cloven hooves, each featuring two widely-spaced toes that provide great balance, mountain goats can challenge any seasoned climber and probably best him.&lt;/div&gt;&lt;div style="color: #5b6265; font-family: arial; font-size: 12px; line-height: 20px;"&gt;Their double-layered, thick white coats provide camouflage in snowy settings, but the altitude they can reach provides enough protection from most predators. And if they happen to run into trouble, they can jump 12 feet in one leap, and reach a safe point. Just check out the pics to get an idea of their climbing capabilities.&lt;/div&gt;&lt;div style="color: #5b6265; font-family: arial; font-size: 12px; line-height: 20px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-uCbC5cNN3ho/TXd9iLkeWiI/AAAAAAAAAHk/xjZe08c3cBM/s1600/mountain-goat1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="https://lh6.googleusercontent.com/-uCbC5cNN3ho/TXd9iLkeWiI/AAAAAAAAAHk/xjZe08c3cBM/s320/mountain-goat1.jpg" width="213" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/-kVWlFBqJuPY/TXd98ZXXVMI/AAAAAAAAAHo/Z3KGChCbBrg/s1600/mountain-goat8.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="https://lh4.googleusercontent.com/-kVWlFBqJuPY/TXd98ZXXVMI/AAAAAAAAAHo/Z3KGChCbBrg/s320/mountain-goat8.jpg" width="207" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/-TDiAaTPM-LA/TXd988iIu-I/AAAAAAAAAHs/Z_vgi2yktG0/s1600/mountain-goat3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="213" src="https://lh3.googleusercontent.com/-TDiAaTPM-LA/TXd988iIu-I/AAAAAAAAAHs/Z_vgi2yktG0/s320/mountain-goat3.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh5.googleusercontent.com/-h0cJA83jESs/TXd9-gqnrdI/AAAAAAAAAHw/Md_8QFCJ_J0/s1600/mountain-goat4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="https://lh5.googleusercontent.com/-h0cJA83jESs/TXd9-gqnrdI/AAAAAAAAAHw/Md_8QFCJ_J0/s320/mountain-goat4.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-Chpe4kEawCY/TXd-C0EXUWI/AAAAAAAAAH0/XDNJoaacP5U/s1600/mountain-goat6.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="214" src="https://lh6.googleusercontent.com/-Chpe4kEawCY/TXd-C0EXUWI/AAAAAAAAAH0/XDNJoaacP5U/s320/mountain-goat6.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div style="color: #5b6265; font-family: arial; font-size: 12px; line-height: 20px; text-align: center;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/-bt5cSt3sgJI/TXd-FlcSCcI/AAAAAAAAAH4/9g9B1Q1CN7Y/s1600/mountain-goat7.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="228" src="https://lh4.googleusercontent.com/-bt5cSt3sgJI/TXd-FlcSCcI/AAAAAAAAAH4/9g9B1Q1CN7Y/s320/mountain-goat7.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div style="color: #5b6265; font-family: arial; font-size: 12px; line-height: 20px; text-align: center;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;object width="320" height="266" class="BLOGGER-youtube-video" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" data-thumbnail-src="http://3.gvt0.com/vi/zamF3Y-rBxM/0.jpg"&gt;&lt;param name="movie" value="http://www.youtube.com/v/zamF3Y-rBxM&amp;fs=1&amp;source=uds" /&gt;&lt;param name="bgcolor" value="#FFFFFF" /&gt;&lt;embed width="320" height="266" src="http://www.youtube.com/v/zamF3Y-rBxM&amp;fs=1&amp;source=uds" type="application/x-shockwave-flash"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div style="color: #5b6265; font-family: arial; font-size: 12px; line-height: 20px; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div style="color: #5b6265; font-family: arial; font-size: 12px; line-height: 20px; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-409594342196807675?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/5rO0VrMZhrs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/409594342196807675/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2011/03/incredible-climbing-mountain-goats.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/409594342196807675?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/409594342196807675?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/5rO0VrMZhrs/incredible-climbing-mountain-goats.html" title="The Incredible Climbing Mountain Goats" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://lh6.googleusercontent.com/-uCbC5cNN3ho/TXd9iLkeWiI/AAAAAAAAAHk/xjZe08c3cBM/s72-c/mountain-goat1.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2011/03/incredible-climbing-mountain-goats.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QASHk7cCp7ImA9Wx9aFUo.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-774324390246062186</id><published>2011-03-08T17:09:00.000+08:00</published><updated>2011-03-08T17:09:09.708+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-08T17:09:09.708+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Joke" /><title>I spent 3 second to found something in this picture and made me laugh!</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/yySVo_3lPGsi02-Ox7sC9duWFis/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yySVo_3lPGsi02-Ox7sC9duWFis/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/yySVo_3lPGsi02-Ox7sC9duWFis/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yySVo_3lPGsi02-Ox7sC9duWFis/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh5.googleusercontent.com/-EpJcRR2SYoo/TXXxnQkCpuI/AAAAAAAAAHg/iJcasJtZ4Ok/s1600/funny.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="189" src="https://lh5.googleusercontent.com/-EpJcRR2SYoo/TXXxnQkCpuI/AAAAAAAAAHg/iJcasJtZ4Ok/s320/funny.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
I spent 3 second to found something funny in this picture and made me laugh! &amp;nbsp;Some people could take more times... you must stare at the photo before you laugh! :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-774324390246062186?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/3Qrp4gooUZg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/774324390246062186/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2011/03/i-spent-3-second-to-found-something-in.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/774324390246062186?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/774324390246062186?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/3Qrp4gooUZg/i-spent-3-second-to-found-something-in.html" title="I spent 3 second to found something in this picture and made me laugh!" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://lh5.googleusercontent.com/-EpJcRR2SYoo/TXXxnQkCpuI/AAAAAAAAAHg/iJcasJtZ4Ok/s72-c/funny.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2011/03/i-spent-3-second-to-found-something-in.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MAQH0_fip7ImA9Wx9WFUQ.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-192013590194601569</id><published>2011-01-21T16:44:00.000+08:00</published><updated>2011-01-21T16:44:01.346+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-01-21T16:44:01.346+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Health" /><title>超实用60条日常生活冷知识</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/6BOY1TsqVIsPf7CBc_iSuHt9cNw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/6BOY1TsqVIsPf7CBc_iSuHt9cNw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/6BOY1TsqVIsPf7CBc_iSuHt9cNw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/6BOY1TsqVIsPf7CBc_iSuHt9cNw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;1.吃了辣的东西，感觉就要被辣死了，就往嘴里放上少许盐，含一下，吐掉，漱下口，就不辣了&lt;br /&gt;
&lt;br /&gt;
2.牙齿黄，可以把花生嚼碎后含在嘴里，并刷牙三分钟，很有效；&lt;br /&gt;
&lt;br /&gt;
3.若有小面积皮肤损伤或者烧伤、烫伤，抹上少许牙膏，可立即止血止痛；&lt;br /&gt;
&lt;br /&gt;
4.经常装茶的杯子里面留下难看的茶渍，用牙膏洗之，非常干净；&lt;br /&gt;
&lt;br /&gt;
5.仰头点眼药水时微微张嘴，这样眼睛就不会乱眨了；&lt;br /&gt;
&lt;br /&gt;
6.嘴里有溃疡，就用维生素C贴在溃疡处，等它溶化后溃疡基本就好了；&lt;br /&gt;
&lt;br /&gt;
7.眼睛进了小灰尘，闭上眼睛用力咳嗽几下，灰尘就会自己出来；&lt;br /&gt;
&lt;br /&gt;
8.洗完脸后，用手指沾些细盐在鼻头两侧轻轻按摩，然后再用清水冲洗，黑头和粉刺就会清除干净，毛细孔也会变&lt;br /&gt;
&lt;br /&gt;
9.刚刚被蚊子咬完时，涂上肥皂就不会痒了；&lt;br /&gt;
&lt;br /&gt;
10.如果嗓子、牙龈发炎了，在晚上把西瓜切成小块，沾着盐吃，记得一定要是晚上，当时症状就会减轻，第二天就好了；&lt;br /&gt;
&lt;br /&gt;
11.吹风机对着标签吹，等吹到商标的胶热了，就可以很容易的把标签撕下来；&lt;br /&gt;
&lt;br /&gt;
12.旅行带衣服时如果怕压起褶皱，可以把每件衣服都卷成卷；&lt;br /&gt;
&lt;br /&gt;
13.打打嗝时就喝点醋，立杆见影；&lt;br /&gt;
&lt;br /&gt;
14.吃了有异味的东西，如大蒜、臭豆腐，吃几颗花生米就好了；&lt;br /&gt;
&lt;br /&gt;
15.治疗咳嗽，特别是干咳，晚上睡觉前，用纯芝麻香油煎鸡蛋，油放稍多些，什么调味料都不要放，趁热吃过就去睡觉，连吃几天效果很明显；&lt;br /&gt;
&lt;br /&gt;
16.手腕长粗的MM想带较细的手镯，就不能硬带，应把手上套上一个塑料袋再带上手镯，非常好带，也不会把手弄疼，取下也是同样的方法；&lt;br /&gt;
&lt;br /&gt;
17.栗子皮难剥，先把外壳剥掉，再把它放进微波炉转一下，拿出后趁热一搓，皮就掉了；&lt;br /&gt;
&lt;br /&gt;
18.插花时，在水里滴上一滴洗洁精，可以维持好几天；&lt;br /&gt;
&lt;br /&gt;
19.把核桃放进锅里蒸十分钟，取出放在凉水里再砸开，就能取出完整的桃核仁了；&lt;br /&gt;
&lt;br /&gt;
20.把虾仁放进碗里，加一点精盐、食用碱粉，用手抓搓一会儿后用清水浸泡，然后再用清水冲洗，即能使炒出的虾仁透明如水晶，爽嫩可口； &lt;br /&gt;
&lt;br /&gt;
21.炒肉时，先把肉用小苏打水浸泡十几分钟，倒掉水，再入味，炒出来会很嫩滑；&lt;br /&gt;
&lt;br /&gt;
22.将残茶叶浸入水中数天后，浇在植物根部，可促进植物生长；&lt;br /&gt;
&lt;br /&gt;
23.把残茶叶晒干，放到厕所或者沟渠里燃熏，可消除恶臭，具有驱除蚊子苍蝇的功能&lt;br /&gt;
&lt;br /&gt;
24.夹生饭重煮法：可用筷子在饭内扎些直通锅底的孔，洒入少许黄酒重焖，&lt;br /&gt;
&lt;br /&gt;
25.若只表面夹生，只要将表层翻到中间再焖即可；&lt;br /&gt;
&lt;br /&gt;
26.巧除纱窗油腻：将洗衣服、吸烟剩下的烟头一起放在水里，待溶解后，拿来擦玻璃窗、纱窗，效果真不错；&lt;br /&gt;
&lt;br /&gt;
27.只要在珠宝盒中放上一节小小的粉笔，即可让首饰常保光泽；&lt;br /&gt;
&lt;br /&gt;
28.桌子、瓶子表面的不干胶痕迹用风油精可以擦拭；&lt;br /&gt;
&lt;br /&gt;
29.出门时随时在包里带一节小的干电池，若裙子带静电，就把电池的正极在裙子上面擦几下即可去掉静电； &lt;br /&gt;
&lt;br /&gt;
30.不管是鞋子的哪个地方磨到了你的脚，你就在鞋子磨脚的地方涂一点点白酒，保证就不磨脚了；&lt;br /&gt;
&lt;br /&gt;
31.亨调蔬菜时，如果必须要焯，焯好菜的水最好尽量利用。如做水饺的菜，焯好的水可适量放在肉馅里，这样既保证营养，又使水饺馅味美有汤；&lt;br /&gt;
&lt;br /&gt;
32.夏天足部容易出汗，每天用淡盐水泡脚可有效应对汗脚；&lt;br /&gt;
&lt;br /&gt;
33.夏天游泳后晒晒太阳，可防肌肤劳损等疾病发生；&lt;br /&gt;
&lt;br /&gt;
34.夏天枕头易受潮滋生霉菌，时常曝晒枕芯有利健康；&lt;br /&gt;
&lt;br /&gt;
35.多吃薏米小豆粥等潮湿健脾，可防暑湿；&lt;br /&gt;
&lt;br /&gt;
36.防失眠：睡前少讲太多话，忌饮浓茶，睡前勿大用脑，可用热水加醋洗脚；&lt;br /&gt;
&lt;br /&gt;
37.金银花有疏散风湿功效，金银花水煎取汁凉后与蜂蜜冲调可解暑；&lt;br /&gt;
&lt;br /&gt;
38.吃过于肥腻的食物后喝茶，能刺激自律神经，促进脂肪代谢；&lt;br /&gt;
&lt;br /&gt;
39.睡眠不足会变笨，一天需要睡眠八小时，有午睡习惯可延缓衰老；&lt;br /&gt;
&lt;br /&gt;
40.双手易变得干燥粗糙，用醋泡手十分钟可护肤；&lt;br /&gt;
&lt;br /&gt;
41.夏天擦拭凉席，用滴加了花露水的清水擦拭凉席，可使凉席保持清爽洁净。当然，擦拭时最好沿着凉席纹路进行，以便花露水渗透到凉席的纹路缝隙，这样清凉舒适的感觉会更持久；&lt;br /&gt;
&lt;br /&gt;
42.早餐多食西红柿、柠檬酸等酸性蔬菜和水果，有益于养肝；&lt;br /&gt;
&lt;br /&gt;
43.爽身止痒洗头或洗澡时，在水中加五六滴花露水，能起到很好的清凉除菌、祛痱止痒作用；&lt;br /&gt;
&lt;br /&gt;
44.葡萄含有睡眠辅助激素，常食有助睡眠；&lt;br /&gt;
&lt;br /&gt;
45.夏天多喝番茄汤既可获得养料，又能补充水分，番茄汤应烧好并冷却后再喝，所含番茄红素有一定的抗前列腺癌和保护心肌的功效，最适合于男子；吃酸性物质马上刷牙会损害牙齿健康；&lt;br /&gt;
&lt;br /&gt;
46.因外伤碰破皮肉时，在伤处涂上牙膏进行消炎、止血，再包扎，作为临时急救药，以药物牙膏效果最为显著；&lt;br /&gt;
&lt;br /&gt;
47.将白醋喷洒在菜板上，放上半小时后再洗，不但能杀菌，还能除味；&lt;br /&gt;
&lt;br /&gt;
48.喝酸奶能解酒后烦躁，酸奶能保护胃黏膜、延缓酒精吸收，并且含钙丰富，对缓解酒后烦躁尤其有&lt;br /&gt;
&lt;br /&gt;
49.皮鞋包皮放久了发霉时，可用软布蘸酒精加水（1：1）溶液擦拭即可；&lt;br /&gt;
&lt;br /&gt;
50.发生头痛、头晕时，可在太阳穴涂上牙膏，因为牙膏含有薄荷脑、丁香油可镇痛；&lt;br /&gt;
&lt;br /&gt;
51.蜡烛冷冻二十四小时后，再插到生日蛋糕上，点燃时不会流下烛油；&lt;br /&gt;
&lt;br /&gt;
52.白色衣裤洗后易泛黄，可取一盆清水，滴上二三滴蓝墨水，将洗过的衣裤在浸泡一刻钟，不必拧干，就放在太阳下晒，即可洁白干净；&lt;br /&gt;
&lt;br /&gt;
53.过多食用生葱蒜会刺激口腔肠胃，不利健康，最好加一点醋再食用；&lt;br /&gt;
&lt;br /&gt;
54.及时补充水分但应少喝果汁、可乐、雪碧、汽水等饮料，含有较多的糖精和电解质，喝多了会对肠胃产生不良刺激，影响消化和食欲。因此夏天应多喝白开水或淡盐（糖）水；&lt;br /&gt;
&lt;br /&gt;
55.每天早晨用豆腐摩擦面部几分钟，坚持一个月，面部会变得很滋润；&lt;br /&gt;
&lt;br /&gt;
56.空调室内温差不宜超过五度，即使天气再热，空调室内温度也不宜到24度以下；&lt;br /&gt;
&lt;br /&gt;
57.加酶洗衣粉剂放在温水中需要较长的分解时间才能使洗衣效果更佳；&lt;br /&gt;
&lt;br /&gt;
58.夏天，人的活动时间变长，出汗多，耗能过大，应适当多吃鸡、鸭、瘦肉、鱼类、蛋类等营养食品，以满足人体的代谢需要；&lt;br /&gt;
&lt;br /&gt;
59.头痛时把苹果磨成泥状涂在纱布上，贴在头痛处，症状可减轻；&lt;br /&gt;
&lt;br /&gt;
60.皮包上有污渍，可以用棉花蘸风油精擦拭.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-192013590194601569?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/bcldXpI_Wqg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/192013590194601569/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2011/01/60.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/192013590194601569?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/192013590194601569?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/bcldXpI_Wqg/60.html" title="超实用60条日常生活冷知识" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2011/01/60.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUYAQHg8eip7ImA9Wx9XE00.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-5715816503935236202</id><published>2011-01-06T16:38:00.001+08:00</published><updated>2011-01-06T16:39:01.672+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-01-06T16:39:01.672+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="BIg News" /><title>以后旅游一定不要买“玉”</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/0mOLY5SVZO4DSlC7v6V7bGzHHKM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/0mOLY5SVZO4DSlC7v6V7bGzHHKM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/0mOLY5SVZO4DSlC7v6V7bGzHHKM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/0mOLY5SVZO4DSlC7v6V7bGzHHKM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="-webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: large;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 18pt; font-weight: bold;"&gt;以后旅游一定不要买&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: green; font-family: 宋体; font-size: x-large;"&gt;&lt;span style="color: green; font-size: 24pt; font-weight: bold;"&gt;“&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: green; font-family: SimSun; font-size: x-large;"&gt;&lt;span lang="ZH-CN" style="color: green; font-family: SimSun; font-size: 24pt; font-weight: bold;"&gt;玉&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: green; font-family: 宋体; font-size: x-large;"&gt;&lt;span style="color: green; font-size: 24pt; font-weight: bold;"&gt;”&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style="color: red; font-family: SimSun; font-size: large;"&gt;&lt;span lang="ZH-CN" style="color: red; font-family: SimSun; font-size: 18pt; font-weight: bold;"&gt;太恐怖了&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: red; font-family: Arial; font-size: large;"&gt;&lt;span style="color: red; font-family: Arial; font-size: 18pt; font-weight: bold;"&gt;!&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: Arial; font-size: large;"&gt;&lt;span style="color: blue; font-family: Arial; font-size: 18pt; font-weight: bold;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="-webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;/div&gt;&lt;table border="0" cellpadding="0" style="-webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0.75pt; padding-left: 0.75pt; padding-right: 0.75pt; padding-top: 0.75pt;" valign="top"&gt;&lt;div id="aeaoofnhgocdbnbeljkmbjdmhbcokfdb-mousedown" style="font-family: arial, sans-serif;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: Arial; font-size: small;"&gt;&lt;span style="color: blue; font-family: Arial; font-size: 12pt; font-weight: bold;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-weight: bold;"&gt;很多朋友对翡翠的知识并不是太了解，&lt;wbr&gt;&lt;/wbr&gt;有时候认为很实惠的买了个宝贝，殊不知是买了个危害，&lt;wbr&gt;&lt;/wbr&gt;钱花了无所谓，但是戴在身上的却是会长期释放毒素及放射性元素的&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: Arial;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: Arial; font-weight: bold;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-weight: bold;"&gt;高致癌&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: 宋体;"&gt;&lt;span style="color: blue; font-weight: bold;"&gt;“&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-weight: bold;"&gt;宝贝&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: 宋体;"&gt;&lt;span style="color: blue; font-weight: bold;"&gt;”&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-weight: bold;"&gt;，下面先让各位看看恐怖的翡翠洗底过程&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style="font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: blue; font-family: Arial; font-size: medium;"&gt;&lt;span style="color: blue; font-family: Arial; font-size: 13.5pt; font-weight: bold;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;俗称的石头料，没水、没底、没色！&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://2.bp.blogspot.com/_PbZT7lnWzEA/TSV-BlgQ61I/AAAAAAAAAG8/fM4SnL9EE78/s1600/ATT00001.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="249" src="http://2.bp.blogspot.com/_PbZT7lnWzEA/TSV-BlgQ61I/AAAAAAAAAG8/fM4SnL9EE78/s320/ATT00001.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-weight: bold;"&gt;恐怖！用强酸以及包含大量放射元素的化学制剂浸泡石料半个月！&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://2.bp.blogspot.com/_PbZT7lnWzEA/TSV-TeqzEWI/AAAAAAAAAHA/HoBlAl0BRr0/s1600/ATT00002.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="239" src="http://2.bp.blogspot.com/_PbZT7lnWzEA/TSV-TeqzEWI/AAAAAAAAAHA/HoBlAl0BRr0/s320/ATT00002.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;化学物洗涤后的效果！&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://2.bp.blogspot.com/_PbZT7lnWzEA/TSV-e9FJzRI/AAAAAAAAAHE/d2Wu5NmtBNo/s1600/ATT00003.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="238" src="http://2.bp.blogspot.com/_PbZT7lnWzEA/TSV-e9FJzRI/AAAAAAAAAHE/d2Wu5NmtBNo/s320/ATT00003.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;对洗过底的石料人工加色&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://4.bp.blogspot.com/_PbZT7lnWzEA/TSV-o_1hI3I/AAAAAAAAAHI/1QbsL8-0ddg/s1600/ATT00004.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="211" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/TSV-o_1hI3I/AAAAAAAAAHI/1QbsL8-0ddg/s320/ATT00004.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;进入真空高压注胶机，再次用剧毒的化学物品注胶！&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://4.bp.blogspot.com/_PbZT7lnWzEA/TSV-yCVYdLI/AAAAAAAAAHM/U3kHhYk7PyM/s1600/ATT00005.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="220" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/TSV-yCVYdLI/AAAAAAAAAHM/U3kHhYk7PyM/s320/ATT00005.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;注胶过程同样需要几天时间！&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://4.bp.blogspot.com/_PbZT7lnWzEA/TSV_JqQUEuI/AAAAAAAAAHQ/m2GYXWO3htU/s1600/ATT00006.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="238" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/TSV_JqQUEuI/AAAAAAAAAHQ/m2GYXWO3htU/s320/ATT00006.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;半成品出炉，原来的毛料已经有水色了！&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://2.bp.blogspot.com/_PbZT7lnWzEA/TSV_S3nxF5I/AAAAAAAAAHU/H0Q1Q6GLeXg/s1600/ATT00007.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="214" src="http://2.bp.blogspot.com/_PbZT7lnWzEA/TSV_S3nxF5I/AAAAAAAAAHU/H0Q1Q6GLeXg/s320/ATT00007.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;成品展示！一般市场价叫个&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: Arial; font-size: medium;"&gt;&lt;span style="color: blue; font-family: Arial; font-size: 13.5pt; font-weight: bold;"&gt;7&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;、&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: Arial; font-size: medium;"&gt;&lt;span style="color: blue; font-family: Arial; font-size: 13.5pt; font-weight: bold;"&gt;8&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;万，还价就卖！&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style="font-family: Arial;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://2.bp.blogspot.com/_PbZT7lnWzEA/TSV_S3nxF5I/AAAAAAAAAHU/H0Q1Q6GLeXg/s1600/ATT00007.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="214" src="http://2.bp.blogspot.com/_PbZT7lnWzEA/TSV_S3nxF5I/AAAAAAAAAHU/H0Q1Q6GLeXg/s320/ATT00007.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;span style="font-family: Arial;"&gt;&lt;span style="font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-size: 13.5pt; font-weight: bold;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&lt;span style="color: blue; font-family: SimSun;"&gt;&lt;span lang="ZH-CN" style="color: blue; font-family: SimSun; font-weight: bold;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div id="aeaoofnhgocdbnbeljkmbjdmhbcokfdb-mousedown"&gt;&lt;span class="Apple-style-span" style="color: blue; font-family: SimSun; font-size: medium;"&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-5715816503935236202?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/ChkWSTZH9Os" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/5715816503935236202/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2011/01/blog-post_06.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/5715816503935236202?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/5715816503935236202?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/ChkWSTZH9Os/blog-post_06.html" title="以后旅游一定不要买“玉”" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_PbZT7lnWzEA/TSV-BlgQ61I/AAAAAAAAAG8/fM4SnL9EE78/s72-c/ATT00001.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2011/01/blog-post_06.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C08BQXw9fip7ImA9Wx9XE00.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-2334806038754620017</id><published>2011-01-06T16:17:00.002+08:00</published><updated>2011-01-06T16:17:30.266+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-01-06T16:17:30.266+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Personal" /><title>人生沒有太多的等待，只有趁現在！</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/cROezC6zHeh1zSYQYbmJ0T09qHs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cROezC6zHeh1zSYQYbmJ0T09qHs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/cROezC6zHeh1zSYQYbmJ0T09qHs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cROezC6zHeh1zSYQYbmJ0T09qHs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;span class="Apple-style-span" style="-webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; color: #2a2a2a; font-family: 'Segoe UI', Tahoma, Verdana, Arial, sans-serif; font-size: 14px; line-height: 17px;"&gt;&lt;span id="aeaoofnhgocdbnbeljkmbjdmhbcokfdb-mousedown" style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;有一個年輕人，大學畢業後準備報考研究所，並同時應&lt;/span&gt;&lt;span style="font-family: Batang; font-size: medium; line-height: normal;"&gt;徵了一&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;份非常嚮往的工作，&lt;/span&gt;&amp;nbsp;&lt;br style="line-height: 17px;" /&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;然而，似乎天不&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;從人願，他研究所沒有考上，原先最嚮往的工作也沒有&lt;/span&gt;&lt;span style="font-family: Batang; font-size: medium; line-height: normal;"&gt;錄取，&lt;/span&gt;&amp;nbsp;&lt;br style="line-height: 17px;" /&gt;&lt;span style="font-family: Batang; font-size: medium; line-height: normal;"&gt;還跟女朋友分手。他受不了精神上的打擊，整個人變得極&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;為憂鬱、退縮。&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;好朋友介紹他去向一位心理治療師求助，他憂愁地&lt;/span&gt;&lt;span style="font-family: Batang; font-size: medium; line-height: normal;"&gt;說：&lt;/span&gt;&amp;nbsp;&lt;br style="line-height: 17px;" /&gt;&lt;span style="font-family: Batang; font-size: medium; line-height: normal;"&gt;「我的&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;研究所沒考上，想要的工作沒&lt;/span&gt;&lt;span style="font-family: Batang; font-size: medium; line-height: normal;"&gt;錄&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;取，女朋友也告吹了，這些我都失去了，&lt;/span&gt;&amp;nbsp;&lt;br style="line-height: 17px;" /&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;我現在什麼都沒有了！」&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;在跟治療師傾訴完自己的不幸之後，治療師耐心、微笑地問了他幾個問題：&lt;/span&gt;&amp;nbsp;&lt;br style="line-height: 17px;" /&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;「怎麼會什麼都沒有&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;呢？想一想，五年前的你，有大學文憑嗎？」&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;「沒有。」&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;「對！所以，現在的你，比起五年前，多了張大學文憑！」&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;「五年前的你，有一技之長嗎？」&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;「沒有。」&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;「所以，現在的你，至少在工作實力上，比起五年前要好了很多！」&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;「五年前，你有跟你剛分手的女朋友在一起嗎？」&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;「也沒有。」&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;「所以，現在的你也沒有比以前慘，不但如此，你還在大學裡交到了一群死黨！」&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;接著，治療師用一種興奮的口氣對他&lt;/span&gt;&lt;span style="font-family: Batang; font-size: medium; line-height: normal;"&gt;說：「想一想，這五年來&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;你不但沒有失去很多，&lt;/span&gt;&amp;nbsp;&lt;br style="line-height: 17px;" /&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;反而得到了&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;很多，你的生命中，多了很多原本沒有的東西！你的收穫多大啊！」&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;年輕人頓時豁然開朗。&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;其實，又何止是這個年輕人呢？&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;人，都很容易把焦點給定在自己所「失去」的東西，都很喜歡用『減法』&lt;/span&gt;&amp;nbsp;&lt;br style="line-height: 17px;" /&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;來看自己的人生、生&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;活。&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;然而，人生該是『加法』！&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;該多用『加法』的角度來看自己的生活，多看自己所「得到」的，&lt;/span&gt;&amp;nbsp;&lt;br style="line-height: 17px;" /&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;少看自己所錯失的，必會讓您&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;有許多意想不到的驚喜與感動。&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;很多人都會陷入『減法』的人生觀，以至於現代人的憂鬱症&lt;/span&gt;&lt;span style="font-family: Batang; font-size: medium; line-height: normal;"&gt;狀越趨嚴重，&lt;/span&gt;&amp;nbsp;&lt;br style="line-height: 17px;" /&gt;&lt;span style="font-family: Batang; font-size: medium; line-height: normal;"&gt;甚至憂鬱症還被&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;"&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;世界&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;衛生組織&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;"&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;（&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;WHO&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;）&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;給預言為人類「二十一世紀第三大疾病」！&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;此現象的嚴重可見一般。&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="font-family: sans-serif; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;故人生應該要多用&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;"&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;加法&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;"&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;，少用&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;"&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;減法&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;"&lt;/span&gt;&lt;span style="font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;。&lt;/span&gt;&lt;span style="font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="color: blue; font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;b style="font-weight: bold; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;人生沒有太多的應該，只有感恩；&lt;/b&gt;&lt;/span&gt;&lt;span style="color: blue; font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&lt;b style="font-weight: bold; line-height: 24px;"&gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style="color: blue; font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;b style="font-weight: bold; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;人生沒有太多的擔心，只有放下；&lt;/b&gt;&lt;/span&gt;&lt;span style="color: blue; font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&lt;b style="font-weight: bold; line-height: 24px;"&gt;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;span style="color: blue; font-family: 'MS Mincho'; font-size: medium; line-height: normal;"&gt;&lt;b style="font-weight: bold; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;人生沒有太多的等待，只有趁現在！&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-2334806038754620017?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/R5NG_3hGfFc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/2334806038754620017/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2011/01/blog-post.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/2334806038754620017?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/2334806038754620017?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/R5NG_3hGfFc/blog-post.html" title="人生沒有太多的等待，只有趁現在！" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2011/01/blog-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUMASHgycSp7ImA9Wx9REkQ.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-7966137917004467886</id><published>2010-12-14T10:24:00.000+08:00</published><updated>2010-12-14T10:24:09.699+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-12-14T10:24:09.699+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Health" /><title>Car Air-conditioning - MUST READ!!  汽車的空調----必讀！！</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RSMHYoXObDmkQywl7yHERi5_5HU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RSMHYoXObDmkQywl7yHERi5_5HU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RSMHYoXObDmkQywl7yHERi5_5HU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RSMHYoXObDmkQywl7yHERi5_5HU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;span class="Apple-style-span" style="color: #2a2a2a; font-family: 'times new roman', 'new york', times, serif, 新細明體; font-size: 16px; line-height: 20px;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxgmail_quote" style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxgmail_quote" style="line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxMsoNormal" style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span id="aeaoofnhgocdbnbeljkmbjdmhbcokfdb-mousedown" lang="EN-US" style="color: #c20000; font-size: 13.5pt; font-weight: normal; line-height: 24px;"&gt;No wonder more folks are dying from cancer than ever before. We wonder where this stuff comes from but here is an example that explains a lot of the cancer causing incidents. &amp;nbsp;Hmmm. Many people are in their cars first thing in the morning and the last thing at night, 7 days a week. As I read this, it makes me feel guilty and ill. Please pass this on to as many people as possible. Guess its not too late to make some changes&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;span lang="EN-US" style="line-height: 20px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/i&gt;&lt;/div&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;/i&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxMsoNormal" style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;怪不得比起從前，有越來越多鄉親死於癌症，在我們都還不清楚癌症是從哪兒來之際，有個實例顯示出許多癌症都是意外&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;/div&gt;&lt;/i&gt;&lt;div style="line-height: 20px;"&gt;&lt;/div&gt;&lt;div class="ecxyiv1374411490ecxMsoNormal" style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;發生的。嗯，許多人早上第一件事和晚上最後一件事都是待在汽車裡，一周&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;7&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;天。當我讀到這個，感到又難過又愧疚。請盡&lt;/span&gt;&lt;/i&gt;&lt;span lang="EN-US" style="line-height: 20px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxMsoNormal" style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;可能地把這訊息傳給大家，希望還來得及做些改變。&lt;/span&gt;&lt;/i&gt;&lt;span lang="EN-US" style="line-height: 20px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxMsoNormal" style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;span style="line-height: 20px; text-decoration: underline;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;/span&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="line-height: 20px; text-decoration: underline;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 13.5pt; font-weight: normal; line-height: 24px;"&gt;Please do NOT turn on A/C as soon as you enter the car&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;.&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 13.5pt; font-weight: normal; line-height: 24px;"&gt;Open the &amp;nbsp;windows after you enter your car and turn ON the AC after a couple of minutes.&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="color: red; font-size: 14pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;進入車內不要馬上打開空調，先打開車窗通風幾分鐘，才打開空調。&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="line-height: 20px; text-decoration: underline;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;Here's why&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;:&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;以下是原因：&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;According to a research, the&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; line-height: 24px;"&gt;car dashboard&lt;b style="font-weight: bold; line-height: 24px;"&gt;&lt;span style="font-weight: normal; line-height: 24px;"&gt;, sofa, air freshener emit Benzene, a Cancer causing toxin&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;br style="line-height: 24px;" /&gt;&lt;b style="font-weight: bold; line-height: 24px;"&gt;&lt;span style="font-weight: normal; line-height: 24px;"&gt;(carcinogen - take time to observe the smell of heated plastic in your car).&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span lang="EN-US" style="line-height: 20px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxMsoNormal" style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;根據研究，汽車的儀表板。沙發。空氣濾清器會釋放&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;“&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;苯&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;”&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;，產生毒素而致癌。&lt;/span&gt;&lt;/i&gt;&lt;span lang="EN-US" style="line-height: 20px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxMsoNormal" style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;（致癌物質&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;——&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;花一點時間去觀察你的車里的塑膠製品高溫時產生的氣味。）&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;In addition to causing cancer, Benzene poisons your bones, causes anemia and reduces&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; line-height: 24px;"&gt;white blood cells&lt;b style="font-weight: bold; line-height: 24px;"&gt;&lt;span style="font-weight: normal; line-height: 24px;"&gt;.&lt;/span&gt;&lt;/b&gt;&lt;br style="line-height: 24px;" /&gt;&lt;b style="font-weight: bold; line-height: 24px;"&gt;&lt;span style="font-weight: normal; line-height: 24px;"&gt;Prolonged exposure will cause Leukemia, increasing the risk of cancer.&lt;/span&gt;&lt;/b&gt;&lt;br style="line-height: 24px;" /&gt;&lt;b style="font-weight: bold; line-height: 24px;"&gt;&lt;span style="font-weight: normal; line-height: 24px;"&gt;Can also cause miscarriage.&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span lang="EN-US" style="line-height: 20px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxMsoNormal" style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;除了致癌之外，&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;”&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;苯&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;“&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;還會侵蝕我們的骨骼，造成貧血和降低白血球數量。長期曝露其中會導致白血病，大大增加罹癌的&lt;/span&gt;&lt;/i&gt;&lt;span lang="EN-US" style="line-height: 20px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxMsoNormal" style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;風險，也可能導致流產。&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;Acceptable Benzene level indoors is 50m g per sq.ft. A car parked indoors with windows closed will contain 400-800 mg of Benzene.&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;苯&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;”&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;每平方英尺的可接受水平為&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;50&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;毫克。若停車在室內又窗戶緊閉，則產生&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;400-800&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;毫克的&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;“&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;苯&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;”&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;。&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;If parked outdoors under the sun at a temperature above 60 degrees F, the Benzene level goes up to 2000-4000 mg, 40 times the acceptable level.&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;若停在戶外大太陽下溫度超過&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 13.5pt; line-height: 24px;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;60&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;℉&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&amp;nbsp;(&amp;nbsp; 15.5&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;℃&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&amp;nbsp;)&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;，&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;“&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;苯&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;”&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;就上升至&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;2000-4000&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;毫克，超出允許量的&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;40&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;倍！&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;People who get into the car, keeping windows closed will inevitably inhale, in quick succession, excessive amounts of the toxin.&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;人們只要進入車內而又車窗緊閉，將會無法避免快速連續地吸入過量的毒素。&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;Benzene is a toxin that affects your kidney and liver.. What's worse, it is extremely difficult for your body to expel this toxic stuff.&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;“&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;苯&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;”&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;是那種會影響你的腎臟和肝臟的毒素，更糟糕的是，你的身體想把這種有毒物質排擠出去是極度困難的。&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;So friends, please open the windows and door of your car - give time for interior to air out -dispel the deadly stuff - before you enter.&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="line-height: 20px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxMsoNormal" style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;所以朋友們，進入汽車之前，請把你車子的門窗打開，給點時間讓車內的空氣&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;--&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;致命的東西排出。&lt;/span&gt;&lt;/i&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="line-height: 20px; text-decoration: underline;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;Thought&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;:&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="line-height: 20px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxMsoNormal" style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; font-weight: normal; line-height: 24px;"&gt;想想：&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&lt;br style="line-height: 24px;" /&gt;&lt;/span&gt;&lt;/i&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;'When someone shares something of value with you and you benefit from it, you have a moral obligation to share it&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="line-height: 20px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;div class="ecxyiv1374411490ecxMsoNormal" style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;span lang="EN-US" style="color: #104160; font-size: 14pt; font-weight: normal; line-height: 24px;"&gt;with others.'&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;span lang="EN-US" style="line-height: 20px;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;/div&gt;&lt;span style="font-size: small; line-height: 20px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;當有人把有價值的東西分享給你，而你又從中得到利益時，你有一份道德義務分享給其他人，不是嗎？&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;&lt;span class="Apple-style-span" style="color: #2a2a2a; font-family: 'times new roman', 'new york', times, serif, 新細明體; font-size: 16px; line-height: 20px;"&gt;&lt;span style="font-size: small; line-height: 20px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: blue; font-size: 13.5pt; line-height: 24px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-7966137917004467886?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/1hHpsxYShc4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/7966137917004467886/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/12/car-air-conditioning-must-read.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/7966137917004467886?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/7966137917004467886?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/1hHpsxYShc4/car-air-conditioning-must-read.html" title="Car Air-conditioning - MUST READ!!  汽車的空調----必讀！！" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/12/car-air-conditioning-must-read.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0YFQngzfip7ImA9Wx5aEEw.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-3376308230571976018</id><published>2010-11-06T10:38:00.000+08:00</published><updated>2010-11-06T10:38:33.686+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-11-06T10:38:33.686+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Awesome" /><title>Lee Kuan Yew</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/0AlenNU9ufPQHVQ8ZUgDliQrLe0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/0AlenNU9ufPQHVQ8ZUgDliQrLe0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/0AlenNU9ufPQHVQ8ZUgDliQrLe0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/0AlenNU9ufPQHVQ8ZUgDliQrLe0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;span class="Apple-style-span" style="font-family: 'times new roman', 'new york', times, serif;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;Very unusual for a Malay to write this. Even more so, if he is the nephew of Dr Mahatir&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;br style="line-height: 20px;" /&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;span style="font-family: Arial; line-height: normal;"&gt;&lt;/span&gt;&amp;nbsp;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;span style="font-family: Arial; font-size: medium; line-height: normal;"&gt;The undermentioned article written by Mahathir's own nephew is really interesting to read. It is very brave of him&amp;nbsp;to pen&amp;nbsp;this article and it is true on what he wrote&lt;/span&gt;&lt;/div&gt;&lt;blockquote dir="ltr" style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-left: 5px; margin-right: 0px; padding-left: 5px; padding-right: 0px;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.ameinfo.com/images/news/1/29621-Lee.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://www.ameinfo.com/images/news/1/29621-Lee.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;b style="font-weight: bold; line-height: 20px;"&gt;&lt;i style="font-style: italic; line-height: 20px;"&gt;&lt;span style="color: navy; font-size: 10pt; line-height: 17px;"&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&amp;nbsp;&lt;/div&gt;&lt;div style="line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;div lang="EN-SG" style="line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;table border="0" cellpadding="0" cellspacing="0" style="line-height: 20px;"&gt;&lt;tbody style="line-height: 20px;"&gt;
&lt;tr style="line-height: 20px;"&gt;&lt;td style="line-height: 20px; padding-bottom: 0cm; padding-left: 0cm; padding-right: 0cm; padding-top: 0cm;" valign="top"&gt;&lt;div style="line-height: 20px;"&gt;&lt;span style="font-size: large; line-height: normal;"&gt;&lt;span style="color: red; line-height: 31px;"&gt;Lee Kuan Yew at 87– His Passion for Singapore Still Burns&lt;/span&gt;:&amp;nbsp;&lt;/span&gt;&lt;div style="line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;div style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;&lt;i style="font-style: italic; line-height: 23px;"&gt;By Ahmad Mustapha&lt;/i&gt;&amp;nbsp;&lt;i style="font-style: italic; line-height: 23px;"&gt;Hassan*&lt;/i&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;Singapore’s Minister Mentor, Lee Kuan Yew, who was Singapore ‘s founding father, has always been very direct in his comments. This was the man who outsmarted the communists in Singapore (with the innocent help of Malaya then and the willing help of the British) and who later outwitted the British and outpaced Malaysia in all spheres.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;div style="line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;&lt;strong style="font-weight: bold; line-height: 23px;"&gt;Passion for Singapore&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;Singapore practices corrupt-free meritocracy and Malaysia discriminatory affirmative action. The former attracted all the best brains and the latter chased out all the brains. The Singapore cabinet consists of dedicated and intelligent technocrats whereas Malaysia has one of the most unwieldy cabinets. Not only that, brain wise it was below par not even good for the kampong.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;With that kind of composition, one that is very brainy, naturally Singapore , with no natural resources could outstrip Malaysia in every aspect of development. Malaysia, on the other hand, was too much preoccupied with its Malayness and the illusory ‘Ketuanan Melayu’ and was also more interested in useless mega iconic development rather than real social and economic development.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;Whenever Kuan Yew utters anything that deemed to be a slight on Malaysia, voices were raised admonishing him. Malaysia would never dare to face reality. That Singapore had shown that it could survive was a slap on those who believed that Singapore would fold up once it left Malaysia. Therefore it was natural that these doomsayers would try to rationalise their utterances to be in their favour to combat on whatever Kuan Yew commented. It’s political jealousy.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;Singapore achieved its development status without any fanfare. But here in Malaysia, a development that was deceptive was proclaimed as having achieved development status. It was trumpeted as an achievement that befits first world status. This was self delusion. Malaysians are led to believe into a make believe world, a dream world. The leaders who themselves tend to believe in their own fabricated world did not realise the people were not taken in by this kind of illusion.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;Lee Kuan Yew believed in calling a spade a spade. I was there in Singapore when the People’s Action Party won the elections in 1959. He was forthright in his briefing to party members as to what was expected of them and what Singapore would face in the future. Ideologically, I did not agree with him. We in the University of Malaya Socialist Club had a different interpretation of socialist reconstruction. But he was a pragmatist and wanted to bring development and welfare to the Singaporeans. Well! He succeeded.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;Malaysia was so much embroiled in racial politics and due to the fear of losing political power, all actions taken by the main party in power was never targeted towards bringing wealth to all. Wealth was distributed to the chosen few only. They were the cronies and the backers of the party leadership to perpetuate their own selfish ends.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;Seeing the efficiency and the progress achieved by Singapore caused the Malaysian leadership to suffer from an inferiority complex. That Malaysia should suffer from this complex was of its own making.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;In a recent interview, Kuan Yew said that Malaysia could have done better if only it treated its minority Chinese and Indian population fairly. Instead they were completely marginalised and many of the best brains left the country in drove. He added that Singapore was a standing indictment to what Malaysia could have done differently. He just hit the nail right there on the head.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;Malaysia recently celebrated its 50th (now 53rd ) year of independence with a bagful of uncertainties. The racial divide has become more acute. The number of Malay graduates unemployed is on the increase. And this aspect can be very explosive. But sad to see that no positive actions have been taken to address these social ills.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;Various excuses were given by Malaysian leaders why Singapore had far outstripped Malaysia in all aspects of social and economic advancement. Singapore was small, they rationalised and therefore easy to manage. Singapore was not a state but merely an island.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;There was one other aspect that Malaysia practises and that is to politicise all aspects of life. All government organs and machinery were ‘UMNO-ised’. This was to ensure that the party will remain in power. Thus there was this misconception by the instruments of government as to what national interest is and what UMNO vested interest is.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;UMNO vested interest only benefited a few and not the whole nation. But due to the UMNO-isation of the various instruments of government, the country under the present administration had equated UMNO vested interest as being that of national interest. Thus development became an avenue of making money and not for the benefit of the people.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;The fight against corruption took a back seat. Transparency was put on hold. And the instruments of government took it to be of national interest to cater to the vested interest of UMNO. Enforcement of various enactments and laws was selective. Thus a ‘palace’ in Kelang, APs cronies and close-one-eye UMNO MPs could exist without proper procedure. Corruption infested all govt departments, the worse is the Police and lately even in the Judiciary.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;Singapore did not politicise its instruments of government. If ever politicisation took place, it is guided by national interest. To be efficient and to be the best in the region was of paramount importance. Thus all the elements like corruption, lackadaisical attitude towards work and other black elements, which would retard such an aim, were eliminated. Singapore naturally had placed the right priority in it’s pursuit to achieve what is best for its people. This is the major difference between these two independent countries.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;Malaysia in its various attempts to cover up its failures embarked on several diversions. It wanted its citizens to be proud that the country had the tallest twin-tower in the world, although the structure was designed and built by foreigners. Its now a white-elephant wasting away. It achieved in sending a man into space at an exorbitant price. For what purpose? These are what the Malays of old would say “menang sorak” (hollow victories).&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;It should be realised that administering a country can be likened to managing a corporate entity. If the management is efficient and dedicated and know what they are doing, the company will prosper. The reverse will be if the management is poor and bad. The company will go bust.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;There are five countries around this region. There is Malaysia, and then Indonesia. To the east there is the Philippines and then there is that small enclave called the Sultanate of Brunei. All these four countries have abundance of natural resources but none can lay claim to have used all these resources to benefit the people. Poverty was rampant and independence had not brought in any significant benefits to the people.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;But tiny Singapore without any resources at all managed to bring development to its citizens. It had one of the best public MRT transport systems and airlines in the world and it is a very clean city state. Their universities, health care, ports are among the best in the world.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;It is impossible to compare what Singapore has achieved to what all these four countries had so far achieved. It was actually poor management and corruption, and nothing more. Everything is done for the vested interest of the few.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px; margin-bottom: 1.35em; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: justify;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="font-size: medium; line-height: normal;"&gt;Malaysia, Indonesia and the Philippines and the Sultanate of Brunei need good management teams. They would not be able to do this on their own steam. I would advise that they call on Kuan Yew to show them what good governance is. Why look East to Japan when it is just next door across the causeway.&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div style="color: #2a2a2a; font-size: 16px; line-height: 20px;"&gt;&lt;/div&gt;&lt;span class="Apple-style-span" style="color: #2a2a2a;"&gt;&lt;span class="Apple-style-span" style="line-height: 20px;"&gt;&lt;span class="Apple-style-span" style="color: #999999; font-size: 16px;"&gt;&lt;strong style="font-weight: bold; line-height: 20px;"&gt;&lt;span style="color: black; font-size: medium; line-height: normal;"&gt;(The writer is a nephew of Malaysia’s Mahathir Mohamad. The article is published the way we received it by email from another source. It&amp;nbsp; first appeared under the title Lee Kuan Yew at 84, the fire still burns on the Internet last year, but the message is still as powerful this year. And maybe that is why the story is being re-circulated now as the grand old man of Singapore chalks up another year. Btw, LKY was born on September 16, 1923. Many happy returns and good health to him! – Malaysia Chronicle)&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-3376308230571976018?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/ijn9CCCah1w" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/3376308230571976018/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/11/lee-kuan-yew.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/3376308230571976018?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/3376308230571976018?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/ijn9CCCah1w/lee-kuan-yew.html" title="Lee Kuan Yew" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/11/lee-kuan-yew.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0UARn0-cSp7ImA9Wx5aEEw.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-3203024296889026647</id><published>2010-10-30T15:11:00.003+08:00</published><updated>2010-11-06T10:40:47.359+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-11-06T10:40:47.359+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Software and Internet" /><title>極少人知道手機的隱密功能</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/zrjGYzz9p_39Ctq5DEQeru2rRRQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zrjGYzz9p_39Ctq5DEQeru2rRRQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/zrjGYzz9p_39Ctq5DEQeru2rRRQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zrjGYzz9p_39Ctq5DEQeru2rRRQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;１、當不喜歡別人打攪自己的時候，又不想關機，給大家一個辦法，使自己的號碼變成空號。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;輸入＊＊２１＊９９９９９９＃，按打電話時候的撥出鍵。當別人撥打你的電話時候就你的號碼就變成空號了。再輸入＃＃２１＃，在按撥出鍵 又正常了。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;PS：這個功能電訊公司是不收費的，應該是手機號碼的一個漏洞。可以當場實驗，如果覺得好用就轉給你好友，以後不想接聽那個令你傷心的她/或他的電話的時候，就用得到了。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;２、識別手機質量的好壞先按＊＃０６＃，然後在你的手機上會出現一個序列號給你，你就數到第七個和第八個數。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;假如你的第七個和第八個數是下面對應的兩個數，那麼你的手機質量的好壞就確定了。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;０２or２０是很差的手機&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;０８or８０是好一點兒的手機&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;０１or１０是非常好的手機&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;００代表是原產公司生產的，是質量最好的手機（原裝手機）&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;１３代表是阿賽拜疆生產的，是非常非常差的手機&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;３、隱形的備用電池你的手機電量不足了，為了讓它能夠繼續使用，按＊３３７０＃鍵，手機會重新啟動，啟動完畢後，你就會發現電量增加了５０%。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;這部分隱藏的備用電量用完了你就必須得充電了，再次充電的時候，隱形的備用電池也同時充電，下次電量低的時候又可以用這個方法。知道這個在緊急情況下如果手機電量不足非常管用。&amp;nbsp;&amp;nbsp;&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;◎&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;車用遙控器落在車裡了？&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;你的車用遙控能打開吧？如果可以，在你有一天將車用遙控器落在車里而且備用的遙控又在家裡的話，你會發現有個手機真方便，用手機撥通家里人的手機，將你的手機拿在離車門一英尺的地方，同時家里人拿著遙控器在他的手機旁邊按響遙控器上的開鎖鍵，這邊你的車門就可以打開了。這個方法不管你把車開得離家有多遠都奏效。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;◎&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;緊急情況&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;全世界的手機都可以撥打的共同緊急救援號碼是１１２，假如你發現自己所在的地區無手機信號覆蓋，同時你又遇到了緊急狀況，用你的手機撥打１１２準沒錯，因為這時候你的手機會自動搜索所有可用的網絡並建立起緊急呼叫。特別有趣的是，即使你的手機是在鍵盤鎖定的狀態，你同樣可以撥打１１２。試試吧！&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;◎&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;手機被偷了？&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;有個辦法讓小偷也用不了，嘿嘿！查看手機的序列號，只需鍵入＊＃０６＃，１５位序列號會出現在手機屏幕上，全世界的每一台手機都有一個獨一無二的序列號，把這個序列號記錄下來並保存好。有一天如果你的手機不幸被偷了，打電話給手機提供商，並提供你的手機序列號，他們會幫你把手機屏蔽，這樣即使小偷換了ＳＩＭ卡，仍然無法使用，你的手機對小偷來說變得一無是處。如果全世界每個手機持有者都這麼做，那麼偷手機就沒有意義了。在澳洲，警方甚至建立了一個被盜手機數據庫，如果你的手機被找到了，就可以歸還給你了。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;◎&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;日常維護必用：&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;１、手機電池不要等到沒電才充電&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;一般我們都會有一種想法就是手機的電池電力要全部放完再充電比較好基本上是沒錯的，因為我們在以前使用的充電電池大部分是鎳氫（ＮｉＨ）電池，而鎳氫電池有所謂的記憶效應若不放完電再充的話會導致電池壽命急速減少。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;因此我們才會用到最後一滴電才開始充電。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;但現在的手機及一般ＩＡ產品大部分都用鋰（Ｌｉ）電池，而鋰電池的話就沒有記憶效應的問題。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;若大家還是等到全部用完電後再充的話反而會使得鋰電池內部的化學物質無法反應而壽命減少。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;最好的方法就是沒事就充電讓它隨時隨地保持最佳滿格狀態，這樣你的電池就可用的又長又久喔。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;這是從廠商那得到的訊息，並經過本身測試而得。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;２、當手機正在充電時，請勿接電話&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;原因是手機在充電時，來電接聽的話會有潛在的危險。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;印度有一個３１歲在保險公司任職業務經理的年輕人，十幾天前在手機還接著充電器的時候接聽電話，過了幾秒大量的電流經過手機，這個年輕人被摔落到地面，家人發現時，手指燒傷&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;、&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;心跳微弱&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;、&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;已經失去意識&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;經緊急送到醫院後，醫生宣佈到院死亡。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;行動電話是目前大家最常使用的現代發明&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;然而，我們也必須要警覺到儀器致死的危險。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;３、手機剩一格時不要使用&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;收訊滿格與只剩一格時相比&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;發射強度竟然相差１０００倍以上&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;所以常講手機的人要注意哦！^0 ^&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;大家都知道手機的電磁波一直是讓人擔心的問題&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;而手機的設計為了在收訊較差的地區仍能保有相當的通話質量&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;會加強手機的電磁波發射強度&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;當收訊滿格與只剩一格時相比&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;發射強度竟然相差１０００倍以上&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;電磁波強度高達０.６Ｗ（瓦特）&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;０.６Ｗ究竟有多強呢？&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;我無法具體描述它對你的腦袋會有什么不良影響&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;但可以換成兩個例子來比較：&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;（１）把喇叭直徑約４公分左右的小型收音機音量開到最大然後貼在耳朵上&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;那樣的噪音能量一般為０.２５Ｗ&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;不到０.５Ｗ。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;（２）把手指頭放在輸出強度０.１Ｗ的雷射光前面（相當於光纖網絡的幹線能量）幾秒鐘內你會有灼痛的感覺&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;你能長時間忍受上述這兩種狀況嗎？&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;◎&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;手機一進水，請切記不要作任何按鍵動作，尤其是關機（一按任何動作，水馬上會跟著電路板流串），正確的方法為馬上打開外蓋，直接將電池拿下，直接強迫斷電，可保主機板不被水侵襲。&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;這個常識非常重要，故轉告各位，使大家的手機可用久一點。學一學吧！以後以備不時之需啊！&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;◎&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;如何讓手機電池起死回生當你的行動電話電池使用時間變短（記憶效應或老化）時&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;你是否會再買一顆電池來更換呢？下次當你碰到這種情況時請省下你的錢&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，告訴你一個很有效的方法不妨試試看：&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;（１）把電池用報紙包起來再放進塑料袋裹包好放入冷凍庫三天（報紙可吸收多餘水份）&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;（２）三天後取出常溫下放二天&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;（３）二天後將電池充電&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;充飽後裝進行動電話裹測試（預估可救回８０%～９０%）本訊息由知名電池廠商工程師透&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;根據測試過的朋友指出效果相當有效！&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;至於有沒有效果&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;反正電池快沒用了&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;而且冰箱人人有&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;，&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;各位朋友不妨試試看吧！&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;◎&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;給你的手機做個ＣＰＲ吧！&amp;nbsp;&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;手機是否常斷電？&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;或是明明充飽了電沒多久就又沒電了？&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;一定懷疑過是不是手機的壽命終了？&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;別擔心，它只是一時"心跳停止"，只要一塊小小的橡皮擦就能起死回生了！&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;把電池取出後用橡皮擦把電池上的接點（黃銅片）擦乾淨，再裝回手機上，你會發現真是太神奇了！&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;它竟然活過來了！&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;還像顆新的呢！&lt;/strong&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: collapse; color: #31365f; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 16px; line-height: 25px;"&gt;&lt;strong style="font-style: normal; font-weight: bold; line-height: normal; text-align: left; word-wrap: break-word;"&gt;真的很有用，提供大家做參考！&lt;/strong&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-3203024296889026647?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/UWf7HY4Vhv4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/3203024296889026647/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/10/blog-post_30.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/3203024296889026647?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/3203024296889026647?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/UWf7HY4Vhv4/blog-post_30.html" title="極少人知道手機的隱密功能" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/10/blog-post_30.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEcMSXs5eyp7ImA9Wx5UFUg.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-3413328162394492158</id><published>2010-10-20T13:21:00.000+08:00</published><updated>2010-10-20T13:21:28.523+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-20T13:21:28.523+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Health" /><title>如何辨别搀假蜂蜜</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/aDxfIeoesHF7H2H9KZRqd5GHd5Y/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aDxfIeoesHF7H2H9KZRqd5GHd5Y/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/aDxfIeoesHF7H2H9KZRqd5GHd5Y/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aDxfIeoesHF7H2H9KZRqd5GHd5Y/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://lady.people.com.cn/mediafile/200805/04/P200805041321272606510663.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://lady.people.com.cn/mediafile/200805/04/P200805041321272606510663.jpg" width="255" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;table cellpadding="0" cellspacing="0" style="border-collapse: collapse; color: #31365f; empty-cells: show; font-family: Verdana, Helvetica, Arial, sans-serif, Simsun; font-size: 17px; line-height: normal; margin-left: 1px; table-layout: fixed; width: 960px; word-wrap: break-word;"&gt;&lt;tbody style="line-height: normal; word-wrap: break-word;"&gt;
&lt;tr style="line-height: normal; word-wrap: break-word;"&gt;&lt;td class="t_msgfont" id="postmessage_78602392" style="color: #31365f; font-size: 16px; font: normal normal normal 14px/1.6em Verdana, Helvetica, Arial, sans-serif, Simsun; line-height: 1.6em; word-wrap: break-word;"&gt;&lt;span style="color: white; line-height: normal; word-wrap: break-word;"&gt;&lt;span style="font-family: Tahoma, Verdana; line-height: normal; word-wrap: break-word;"&gt;&lt;span style="font-size: 12px; line-height: normal; word-wrap: break-word;"&gt;&lt;span style="color: black; line-height: normal; word-wrap: break-word;"&gt;&lt;b&gt;如何辨别搀假蜂蜜&lt;/b&gt;&lt;/span&gt;&lt;span style="color: black; line-height: normal; word-wrap: break-word;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-size: 12px; line-height: normal; word-wrap: break-word;"&gt;&lt;span style="color: black; line-height: normal; word-wrap: break-word;"&gt;在市场出售的各种蜂蜜中，特别是一些小贩上门推销的散装蜂蜜中，有一些蜂蜜搀了假。搀假主要是搀糖、水和淀粉，有的蜂蜜还含有杂质，质地不纯。只要掌握一定的鉴别方法，蜂蜜搀假是可以看出来的。　　&lt;br /&gt;
&lt;br /&gt;
1、将蜂蜜滴在白纸上，如果蜂蜜渐渐渗开，说明搀有蔗糖和水。搀有糖的蜂蜜其透明度较差，不清亮，呈混浊状，花香味亦差。搀红糖的蜂蜜颜色显深；搀白糖的蜂蜜颜色浅白。&lt;br /&gt;
2、搀有面粉、淀粉或玉米粉的蜂蜜，色泽较混浊，味道也不够甜。将少量蜂蜜放入杯中，加适量水煮沸，待冷却后滴入几滴黄酒摇匀，如果溶液变成蓝色或红色、紫色，说明蜂蜜中搀有淀粉类物质。&lt;br /&gt;
&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;3、用烧红的铁丝插入蜂蜜中，如果铁丝上附有黏物，说明蜂蜜中有杂质。如果铁丝上仍很光滑说明没有杂质&lt;/span&gt;&lt;span style="color: black; line-height: normal; word-wrap: break-word;"&gt;&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;4、取一分蜂蜜，加入两分冷开水及四分95％的酒精，混匀后置放一昼夜，如无杂质沉淀，说明品质纯正。&lt;br style="line-height: normal; word-wrap: break-word;" /&gt;5、用筷子挑起蜂蜜能拉成长丝的，且丝断会自动回缩呈球状者为上品&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-3413328162394492158?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/DTKOz469K3A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/3413328162394492158/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/10/blog-post.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/3413328162394492158?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/3413328162394492158?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/DTKOz469K3A/blog-post.html" title="如何辨别搀假蜂蜜" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/10/blog-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUECSX46cSp7ImA9Wx5SFkU.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-6293010250865023804</id><published>2010-08-13T15:14:00.000+08:00</published><updated>2010-08-13T15:14:28.019+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-08-13T15:14:28.019+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Health" /><title>清洗腎臟的簡單方法 Simple Kidney's Cleanser - Health Care</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/d9qRBeA72f4KU39w2IGOehYTVno/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/d9qRBeA72f4KU39w2IGOehYTVno/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/d9qRBeA72f4KU39w2IGOehYTVno/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/d9qRBeA72f4KU39w2IGOehYTVno/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.potomacvegetablefarms.com/images/veggies/italian-parsley.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="211" src="http://www.potomacvegetablefarms.com/images/veggies/italian-parsley.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style="color: red; font-family: PMingLiU;"&gt;&lt;span id="aeaoofnhgocdbnbeljkmbjdmhbcokfdb-mousedown" style="color: red; font-family: PMingLiU;"&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: red; font-family: PMingLiU;"&gt;&lt;span id="aeaoofnhgocdbnbeljkmbjdmhbcokfdb-mousedown" style="color: red; font-family: PMingLiU;"&gt;&lt;span class="Apple-style-span" style="font-size: x-large;"&gt;&lt;b&gt;Simple Kidney's Cleanser - Health Care&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div id=""&gt;&lt;strong&gt;&lt;b&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #3333ff; font-family: PMingLiU; font-size: 14pt;"&gt;清洗&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/strong&gt;&lt;b&gt;&lt;span style="color: #3333ff; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #3333ff; font-family: SimSun; font-size: 14pt; font-weight: bold;"&gt;腎臟的&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;strong&gt;&lt;b&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #3333ff; font-family: PMingLiU; font-size: 14pt;"&gt;簡單&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/strong&gt;&lt;b&gt;&lt;span style="color: #3333ff; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #3333ff; font-family: SimSun; font-size: 14pt; font-weight: bold;"&gt;方法&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #3333ff; font-size: medium;"&gt;&lt;span style="color: #3333ff; font-size: 14pt; font-weight: bold;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #3333ff; font-size: medium;"&gt;&lt;span style="color: #3333ff; font-size: 14pt;"&gt;&lt;br /&gt;
It is vegetables, should try it at home.&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;b&gt;&lt;span style="color: #009900; font-family: PMingLiU; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #009900; font-family: PMingLiU; font-size: 14pt; font-weight: bold;"&gt;只用蔬菜，可以在家裡嘗試。&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span lang="ZH-TW"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: medium;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: 14pt;"&gt;CLEAN YOUR KIDNEYS WITH LESS THAN $1.00&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;b&gt;&lt;span style="color: #339999; font-family: PMingLiU; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #339999; font-family: PMingLiU; font-size: 14pt; font-weight: bold;"&gt;用不到&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #339999; font-size: medium;"&gt;&lt;span style="color: #339999; font-size: 14pt; font-weight: bold;"&gt;&amp;nbsp;$ 1.00&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #339999; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #339999; font-family: SimSun; font-size: 14pt; font-weight: bold;"&gt;美金&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #339999; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #339999; font-size: 14pt; font-weight: bold;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #339999; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #339999; font-family: SimSun; font-size: 14pt; font-weight: bold;"&gt;就可清洗你的腎臟&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #339999; font-size: medium;"&gt;&lt;span style="color: #339999; font-size: 14pt; font-weight: bold;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: medium;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: 14pt;"&gt;Years passes by and our kidneys are filtering the blood by removing salt, poison and any unwanted entering our body. With time, the salt accumulates and this needs to undergo cleaning treatments.&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-size: 14pt;"&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;b&gt;&lt;span style="color: #009900; font-family: PMingLiU; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #009900; font-family: PMingLiU; font-size: 14pt; font-weight: bold;"&gt;多年來，我們的腎臟過濾血液，排除進入我們的身體的鹽，&lt;wbr&gt;&lt;/wbr&gt;毒素及任何不需要的物質。隨著時日，鹽毒積累，&lt;wbr&gt;&lt;/wbr&gt;必須進行清潔處理。&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span lang="ZH-TW"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: medium;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: 14pt;"&gt;How are we going to do this?&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;b&gt;&lt;span style="color: #009900; font-family: PMingLiU; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #009900; font-family: PMingLiU; font-size: 14pt; font-weight: bold;"&gt;我們要怎樣做呢？&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #009900; font-size: medium;"&gt;&lt;span style="color: #009900; font-size: 14pt; font-weight: bold;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: medium;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: 14pt;"&gt;It is very easy, first take a bunch of parsley and wash it clean .&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;b&gt;&lt;span style="color: #009900; font-family: PMingLiU; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #009900; font-family: PMingLiU; font-size: 14pt; font-weight: bold;"&gt;非常容易，首先拿一把&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: red; font-family: SimSun; font-size: medium;"&gt;&lt;span id="" lang="ZH-TW" style="color: red; font-family: SimSun; font-size: 14pt; font-weight: bold;"&gt;荷蘭芹&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #009900; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #009900; font-family: SimSun; font-size: 14pt; font-weight: bold;"&gt;，洗乾淨。&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #3333ff; font-size: medium;"&gt;&lt;span style="color: #3333ff; font-size: 14pt;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: medium;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: 14pt;"&gt;Then cut it in small pieces and put it in a pot and pour clean water and boil it for ten minutes and let it cool down and then filter it and pour in a clean bottle and keep it inside refrigerator to cool.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;b&gt;&lt;span style="color: #009900; font-family: PMingLiU; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #009900; font-family: PMingLiU; font-size: 14pt; font-weight: bold;"&gt;切成小塊，放在鍋子裡，注入乾淨的水煮&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #009900; font-size: medium;"&gt;&lt;span style="color: #009900; font-size: 14pt; font-weight: bold;"&gt;10&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #009900; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #009900; font-family: SimSun; font-size: 14pt; font-weight: bold;"&gt;分鐘，&lt;wbr&gt;&lt;/wbr&gt;冷卻後過濾到一個乾淨的瓶子，存放冰箱。&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span lang="ZH-TW"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: medium;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: 14pt;"&gt;Drink one glass daily and you will notice all salt and other accumulated poison coming out of your kidney by urination. Also you will be able to notice the difference which you never felt before&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-size: 14pt;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;b&gt;&lt;span style="color: red; font-family: PMingLiU; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: red; font-family: PMingLiU; font-size: 14pt; font-weight: bold;"&gt;每天喝一杯，&lt;wbr&gt;&lt;/wbr&gt;你會發現你腎臟裡所有積累的鹽和其他毒素都經由尿液排出體外&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #009900; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #009900; font-family: SimSun; font-size: 14pt; font-weight: bold;"&gt;。&lt;wbr&gt;&lt;/wbr&gt;而且感覺身體和以前完全不同。&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span lang="ZH-TW"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: medium;"&gt;&lt;span style="color: #3333ff; font-family: PMingLiU; font-size: 14pt;"&gt;Parsley is known as best cleaning treatment for kidneys and it is natural!&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="font-family: arial, sans-serif; font-size: 15px;"&gt;&lt;b&gt;&lt;span style="color: #009900; font-family: PMingLiU; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #009900; font-family: PMingLiU; font-size: 14pt; font-weight: bold;"&gt;人們很早就曉得&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: red; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: red; font-family: SimSun; font-size: 14pt; font-weight: bold;"&gt;荷蘭芹&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #009900; font-family: SimSun; font-size: medium;"&gt;&lt;span lang="ZH-TW" style="color: #009900; font-family: SimSun; font-size: 14pt; font-weight: bold;"&gt;是最佳腎臟清洗劑，而且它是天然的。&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-6293010250865023804?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/4sI24ZYBlbs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/6293010250865023804/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/08/simple-kidneys-cleanser-health-care.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/6293010250865023804?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/6293010250865023804?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/4sI24ZYBlbs/simple-kidneys-cleanser-health-care.html" title="清洗腎臟的簡單方法 Simple Kidney's Cleanser - Health Care" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/08/simple-kidneys-cleanser-health-care.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUAHSHgyeSp7ImA9WxFRGU4.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-5502031749977460057</id><published>2010-05-04T09:48:00.000+08:00</published><updated>2010-05-04T09:48:59.691+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-04T09:48:59.691+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Awesome" /><title>Photo which can convulse your soul</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/jIFIs4t4JEpucohZMUSzrBP0Kfk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jIFIs4t4JEpucohZMUSzrBP0Kfk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/jIFIs4t4JEpucohZMUSzrBP0Kfk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jIFIs4t4JEpucohZMUSzrBP0Kfk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://pic.people.com.cn/mediafile/200912/25/F200912250815042661326986.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="207" src="http://pic.people.com.cn/mediafile/200912/25/F200912250815042661326986.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;27 December 2007, terrorist attacked at Pakistan&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://pic.people.com.cn/mediafile/200912/25/F200912250815082677226287.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://pic.people.com.cn/mediafile/200912/25/F200912250815082677226287.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&amp;nbsp;11 of March 2004, at Spain Madrid&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://pic.people.com.cn/mediafile/200912/25/F200912250815122248712268.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="165" src="http://pic.people.com.cn/mediafile/200912/25/F200912250815122248712268.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://pic.people.com.cn/mediafile/200912/25/F200912250815231763369551.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="210" src="http://pic.people.com.cn/mediafile/200912/25/F200912250815231763369551.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://pic.people.com.cn/mediafile/200912/25/F200912250815052580828328.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="213" src="http://pic.people.com.cn/mediafile/200912/25/F200912250815052580828328.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://pic.people.com.cn/mediafile/200912/25/F200912250815075400118111.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="212" src="http://pic.people.com.cn/mediafile/200912/25/F200912250815075400118111.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://pic.people.com.cn/mediafile/200912/25/F200912250815162459327591.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://pic.people.com.cn/mediafile/200912/25/F200912250815162459327591.jpg" width="253" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://pic.people.com.cn/mediafile/200912/25/F200912250815171024716713.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="214" src="http://pic.people.com.cn/mediafile/200912/25/F200912250815171024716713.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://pic.people.com.cn/mediafile/200912/25/F200912250815181824911549.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="212" src="http://pic.people.com.cn/mediafile/200912/25/F200912250815181824911549.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://pic.people.com.cn/mediafile/200912/25/F200912250815185596676254.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="266" src="http://pic.people.com.cn/mediafile/200912/25/F200912250815185596676254.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-5502031749977460057?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/D3wkCh3el1A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/5502031749977460057/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/05/photo-which-can-convulse-your-soul.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/5502031749977460057?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/5502031749977460057?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/D3wkCh3el1A/photo-which-can-convulse-your-soul.html" title="Photo which can convulse your soul" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/05/photo-which-can-convulse-your-soul.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0UFRHY4fSp7ImA9WxFSEU8.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-5481221848708316500</id><published>2010-04-10T11:43:00.002+08:00</published><updated>2010-04-13T11:26:55.835+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-13T11:26:55.835+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Health" /><title>醫學系研究所的實驗報告...祈願大家都健康</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/jTFlSl4nb-si-pVJzJ-OOc9V7WY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jTFlSl4nb-si-pVJzJ-OOc9V7WY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/jTFlSl4nb-si-pVJzJ-OOc9V7WY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jTFlSl4nb-si-pVJzJ-OOc9V7WY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="post-header"&gt;&lt;/div&gt;&lt;b&gt;易產生致癌病毒的食物：(惡物)&lt;/b&gt;&lt;br /&gt;
============================&lt;br /&gt;
一、用 烤的玉米不能吃，百分之百 有毒※肝癌&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
二、過期 的食物〈有黴菌〉，含有黃菊毒素〈肝癌〉，&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 一定要吃新鮮的食物，不要捨不得丟。&lt;br /&gt;
&lt;br /&gt;
三、香 腸、熱狗都是致癌物。&lt;br /&gt;
&lt;br /&gt;
四、吃花枝，魷魚就不要吃紅蘿蔔 〈在胃裡中和會形成亞硝酸〉。&lt;br /&gt;
&lt;br /&gt;
五、烤焦的部份都要去掉，很毒。&lt;br /&gt;
&lt;br /&gt;
六、莖類的植物〈如馬鈴薯〉發芽就有毒。&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
對身體有益的食物：(良物)&lt;/b&gt;&lt;br /&gt;
========================&lt;br /&gt;
一、綠茶可多喝，可防癌。&lt;br /&gt;
&lt;br /&gt;
二、養樂多可防胃癌,大腸癌。&lt;br /&gt;
&lt;br /&gt;
三、大蒜證實可防癌,效果很好。&lt;br /&gt;
&lt;br /&gt;
四、聖女 小蕃茄可防癌。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;奶茶少喝喔 !!!&lt;/b&gt;&lt;br /&gt;
==============&lt;br /&gt;
你愛喝奶茶嗎？如果你是愛喝奶茶的人請注意囉∼&lt;br /&gt;
&lt;br /&gt;
營養師答：&lt;br /&gt;
奶茶是高糖、高油、高熱量，沒有營養價值可言，是 一種垃圾食物。&lt;br /&gt;
&lt;br /&gt;
奶茶加的奶精，多由椰子油製成，喝多了容易發 胖，脂肪容易堆積在肚子上，形成中廣體形，很多習慣喝奶茶的人想要減肥，第一件事就是戒奶茶。&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
椰子油中含大量飽和脂肪酸，會加速體內製造膽固醇，血脂肪也會急速上升，形成血管硬化，長期大量飲用，容易罹患高血壓、糖尿病等慢性病。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
曾有統計數字顯示，大量飲用奶茶超過三個 月，血脂肪及膽固醇都會升高。&lt;br /&gt;
&lt;br /&gt;
奶茶只是油和糖的結合，因為奶精並非牛奶製 成品，奶茶中又有大量糖分，幾乎不含鈣質，根本無法補充鈣質，還對身體有很大的傷害。&amp;nbsp; &lt;br /&gt;
奶茶最好不要天天喝，一週頂多喝個一、兩杯解個饞即可‧&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;八種去脂減肥的食物&lt;/b&gt;&lt;br /&gt;
=============================================&lt;br /&gt;
現代人的飲食多半太過豐富，以致於越來越多人營養過剩身材走樣。&amp;nbsp; &lt;br /&gt;
吃，如果選擇正確，那麼您非但不會胖，而且還能幫助您去脂呢。&lt;br /&gt;
快來看看吧∼&lt;br /&gt;
&lt;br /&gt;
＊ 凍豆腐：&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 根據報導，凍豆腐能吸收胃腸道以及全身組織 的脂肪，有利脂肪的排泄喔。&lt;br /&gt;
&amp;nbsp; &lt;br /&gt;
＊ 綠豆芽：&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 含有較高的磷、鐵之外，主要含有大量的水 份，多吃綠豆芽，也不容易讓脂肪在皮下形成。&lt;br /&gt;
&lt;br /&gt;
＊ 鳳梨：&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 鳳梨含有蛋白質分解酵素，具有分解魚、肉的 功能，吃過大餐後可以吃些鳳梨。但是體質不適合吃太涼食物的人，要儘量少吃。&lt;br /&gt;
&lt;br /&gt;
＊ 薏仁：&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 薏仁除了美白治痘外，對水腫型的肥胖也很有幫助喔（孕婦除外∼要禁吃）&lt;br /&gt;
&lt;br /&gt;
＊烏賊：&lt;br /&gt;
&amp;nbsp; 烏賊的脂肪含量，每 100g 才有 0.7g ，吃了它要變胖是很困難的。&lt;br /&gt;
&lt;br /&gt;
＊木瓜：&lt;br /&gt;
&amp;nbsp; 木瓜有輕微的興奮作用。&lt;br /&gt;
&amp;nbsp; 本草綱目記載：木瓜可以去水腫、治腳氣病。&lt;br /&gt;
&lt;br /&gt;
＊陳皮：&lt;br /&gt;
&amp;nbsp; 漢方中的陳皮，對脾肺很好，而且可以幫助消化、排除胃部賬氣、減少腹部脂肪的堆積。但是如果您有心臟或血管毛病的人最好少吃。&lt;br /&gt;
&lt;br /&gt;
＊ 竹筍：&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 竹筍的特色是低脂、低糖、多粗纖維，可防止 便祕。不過竹筍有難溶性的草酸鈣，胃潰瘍的人不可多吃。&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;下班後紓解壓力的八個方法！&lt;/b&gt;&lt;br /&gt;
=============================================&lt;br /&gt;
上了一天的班，當你拖著疲憊的身子回到家中，如果不懂得如何利用有限的時間做有效的放鬆，日復一日，時間久了會改變人體的免疫系統，使你對抗疾病的免疫能力降低，可能從小到感冒、頭痛、腸胃不適，大到甚至產生潛在的致癌因子、或是過勞所導致的心臟、腦血管的疾病。&lt;br /&gt;
&lt;br /&gt;
所以身為工作忙碌的現代人，不能不注意自己的 壓力紓解之道喔！&lt;br /&gt;
&lt;br /&gt;
如何解壓比較好呢？&lt;br /&gt;
&lt;br /&gt;
以下就是告訴您如何利用週一到週五晚間的短短幾個 小 時做有效的放鬆，才能提供您隔一天上班的工作效率。&lt;br /&gt;
&lt;br /&gt;
1.泡個熱水澡，水溫高約在37到39度左右,可有效的放鬆繃緊的肌肉與神經。&lt;br /&gt;
&lt;br /&gt;
2.換上寬鬆的衣物，以棉質為主的家居服。女生也請卸除內衣，可著深色的家居服。&lt;br /&gt;
&lt;br /&gt;
3.室 內燈光以黃色為主,不易刺激眼球，較能舒緩眼部的壓力，也能緩和室內氣氛。&lt;br /&gt;
&lt;br /&gt;
4.晚餐時以清淡食物為主。避免吃辛辣、油炸食物, 或是停留在胃中時間較長的高蛋白高熱量食物, 以免增加胃腸的負擔。&lt;br /&gt;
&lt;br /&gt;
5.晚餐後可來點不含酒精、不含咖啡因 等刺激性物質的飲料。&lt;br /&gt;
&lt;br /&gt;
6.睡前將腿抬高，或是腳下墊個枕頭30度、45度或是90度都可。 可有效緩解因為長期的站立或坐姿所造成的下肢血循不良而腫脹。&lt;br /&gt;
&lt;br /&gt;
7.盡量在晚間十一點到凌晨兩點上床 入睡.如果你真的有很多公事未完成必須通宵的時候， 可以 先去睡到兩點以後再起床，因為 十一 點到兩點這個時間是人體&amp;nbsp; 經脈運行至肝、膽， 若這個時間沒有得到適當的休息，時間久了這兩個器官的不健康就會表現在皮膚上，如粗糙、黑斑、青春痘、黑眼圈的問題。&lt;br /&gt;
&lt;br /&gt;
8.睡前可以聽一些古典音樂或是輕音樂,避免心情過度亢奮所導致的夜夢過多。如果你常為失眠所苦,臨睡前聽個巴哈的郭德堡變奏曲是個不錯的選擇喔！&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-5481221848708316500?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/pyX2e3bDR44" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/5481221848708316500/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/04/blog-post.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/5481221848708316500?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/5481221848708316500?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/pyX2e3bDR44/blog-post.html" title="醫學系研究所的實驗報告...祈願大家都健康" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/04/blog-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEANQHs_eSp7ImA9WxBaE00.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-4123634375830886155</id><published>2010-03-07T22:29:00.001+08:00</published><updated>2010-03-23T09:13:11.541+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-23T09:13:11.541+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Awesome" /><title>摄影师Greg du Toit</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/dIzHhG3lEdwApkaoG8BGyJ1tUds/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dIzHhG3lEdwApkaoG8BGyJ1tUds/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/dIzHhG3lEdwApkaoG8BGyJ1tUds/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dIzHhG3lEdwApkaoG8BGyJ1tUds/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;什么是摄影精神？野生动物摄影师Greg duToit以“不要命”的精神在肯尼亚东非大裂谷拍摄到了这些野生动物喝水的美丽瞬间。他曾在这些动物的饮水地长时间蹲点，然后因染上数种疾病而在床上 躺了好几个月。Toit为了拍摄这些照片进行了近一年的尝试：在动物饮水点附近挖掘“战壕”以藏身拍摄，但最后都以失败而告终。最后他决定冒险，于是带着 相机爬进了污浊的水塘里，只把头和相机露出水面，于是便获得了一种独特的“青蛙眼睛的视角”。&lt;br /&gt;
&lt;br /&gt;
为了拍摄狮子等大型猫科动物的图片，他曾经半潜在水中呆了270个小时。为此这位摄影师付出了巨大的代价——他染上了血吸虫病、两次疟疾和数种寄生虫。不过那些一生只有一次机会拍摄到的狮子、斑马、疣猪和狒狒等动物影像也许已经足以让他忘却疾病的痛苦。&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;b&gt;&amp;nbsp;摄影师Greg du Toit&lt;/b&gt; &lt;/div&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://gbpic.chinareviewnews.com/upload/201003/2/101245544.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="207" src="http://gbpic.chinareviewnews.com/upload/201003/2/101245544.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;b&gt;在水塘边饮水的猫科动物&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&amp;nbsp;&lt;a href="http://img2.cache.netease.com/cnews/2010/3/2/2010030209083634a15.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="209" src="http://img2.cache.netease.com/cnews/2010/3/2/2010030209083634a15.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&amp;nbsp;&lt;a href="http://img1.cache.netease.com/cnews/2010/3/2/20100302090836e61ae.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="215" src="http://img1.cache.netease.com/cnews/2010/3/2/20100302090836e61ae.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&amp;nbsp;&lt;a href="http://img1.cache.netease.com/cnews/2010/3/2/20100302090832dc9b8.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="173" src="http://img1.cache.netease.com/cnews/2010/3/2/20100302090832dc9b8.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://gbpic.chinareviewnews.com/upload/201003/2/101245550.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="207" src="http://gbpic.chinareviewnews.com/upload/201003/2/101245550.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://gbpic.chinareviewnews.com/upload/201003/2/101245552.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://gbpic.chinareviewnews.com/upload/201003/2/101245552.jpg" width="212" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-4123634375830886155?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/hfkuvEWHtFc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/4123634375830886155/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/03/greg-du-toit.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/4123634375830886155?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/4123634375830886155?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/hfkuvEWHtFc/greg-du-toit.html" title="摄影师Greg du Toit" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/03/greg-du-toit.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUYFRH04fSp7ImA9WxBbEEQ.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-7410617002614471226</id><published>2010-03-05T21:10:00.009+08:00</published><updated>2010-03-09T09:11:55.335+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-09T09:11:55.335+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="BIg News" /><title>World Wide shame  in COSTA RICA</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/8mCpt-jhiKb1_ByoLCFLHeaH1Is/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8mCpt-jhiKb1_ByoLCFLHeaH1Is/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/8mCpt-jhiKb1_ByoLCFLHeaH1Is/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8mCpt-jhiKb1_ByoLCFLHeaH1Is/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="color: #cc0000; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;Our Turtles are very close on becoming Extinct!!!&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;span style="font-family: Verdana,sans-serif; font-size: large;"&gt;&lt;b&gt;On the beaches of Costa Rica... short sighted or desperate.&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: Verdana,sans-serif; font-size: large;"&gt;&lt;span style="font-size: small;"&gt;Well i did not wonder on this issue because human are always trying to strive and fight for their life being survive in this planet. Because of demanding therefore those turtles became prey.&lt;/span&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Verdana,sans-serif; font-size: large;"&gt;&lt;b&gt; &lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style="color: #000099; font-family: Courier New; font-size: small;"&gt;&lt;span style="color: #000099; font-family: 'Courier New'; font-size: 12pt;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_PbZT7lnWzEA/S5ECVj90zRI/AAAAAAAAAFc/KI1SF82GR6w/s1600-h/ATT6442228.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_PbZT7lnWzEA/S5ECVj90zRI/AAAAAAAAAFc/KI1SF82GR6w/s320/ATT6442228.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;&lt;span style="color: #000099; font-family: Courier New; font-size: small;"&gt;&lt;span style="color: #000099; font-family: 'Courier New'; font-size: 12pt;"&gt;I never seen so many turtles in my life even it's just a photo! &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style="color: #000099; font-family: Courier New; font-size: small;"&gt;&lt;span style="color: #000099; font-family: 'Courier New'; font-size: 12pt;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_PbZT7lnWzEA/S5EEs-Khy-I/AAAAAAAAAFk/lMVwOu5-ZW0/s1600-h/ATT6442229.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/S5EEs-Khy-I/AAAAAAAAAFk/lMVwOu5-ZW0/s320/ATT6442229.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_PbZT7lnWzEA/S5EIXO5VWbI/AAAAAAAAAFs/CgLCB0WNO7Y/s1600-h/ATT6442226.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_PbZT7lnWzEA/S5EIXO5VWbI/AAAAAAAAAFs/CgLCB0WNO7Y/s320/ATT6442226.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;a href="http://1.bp.blogspot.com/_PbZT7lnWzEA/S5EL0jNn-KI/AAAAAAAAAF0/eygT8yuCnsU/s1600-h/ATT6442231.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_PbZT7lnWzEA/S5EL0jNn-KI/AAAAAAAAAF0/eygT8yuCnsU/s320/ATT6442231.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_PbZT7lnWzEA/S5EOZQIjUmI/AAAAAAAAAF8/vJYaVXG3id0/s1600-h/ATT6442232.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/S5EOZQIjUmI/AAAAAAAAAF8/vJYaVXG3id0/s320/ATT6442232.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_PbZT7lnWzEA/S5EWQy_RaJI/AAAAAAAAAGM/P6F6CjD136s/s1600-h/ATT6442227.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/S5EWQy_RaJI/AAAAAAAAAGM/P6F6CjD136s/s320/ATT6442227.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_PbZT7lnWzEA/S5EWqzNe_QI/AAAAAAAAAGU/-uvmffVHQ4U/s1600-h/ATT6442235.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_PbZT7lnWzEA/S5EWqzNe_QI/AAAAAAAAAGU/-uvmffVHQ4U/s320/ATT6442235.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style="color: #000099; font-family: Courier New; font-size: small;"&gt;&lt;span style="color: #000099; font-family: 'Courier New'; font-size: 12pt;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-7410617002614471226?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/D3yehK1N62A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/7410617002614471226/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/03/world-wide-shame-in-costa-rica.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/7410617002614471226?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/7410617002614471226?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/D3yehK1N62A/world-wide-shame-in-costa-rica.html" title="World Wide shame  in COSTA RICA" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_PbZT7lnWzEA/S5ECVj90zRI/AAAAAAAAAFc/KI1SF82GR6w/s72-c/ATT6442228.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/03/world-wide-shame-in-costa-rica.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkMGQXk4fyp7ImA9WxBUFUk.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-7708234905400870049</id><published>2010-03-02T23:40:00.000+08:00</published><updated>2010-03-02T23:40:20.737+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-02T23:40:20.737+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Joke" /><title>Donald Duck</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/GUBLN1n-LdlMU4U3ohai8zcOTKw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GUBLN1n-LdlMU4U3ohai8zcOTKw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/GUBLN1n-LdlMU4U3ohai8zcOTKw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GUBLN1n-LdlMU4U3ohai8zcOTKw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://man-over-board.com/wp-content/uploads/2010/03/cid_002401caac5c99ca4860CF96C414@cumminse650086.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://man-over-board.com/wp-content/uploads/2010/03/cid_002401caac5c99ca4860CF96C414@cumminse650086.jpg" width="156" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;Do not know why this photo just made me laugh a lot...&amp;nbsp; =D &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-7708234905400870049?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/FRVzDJx0jiU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/7708234905400870049/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/03/donald-duck.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/7708234905400870049?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/7708234905400870049?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/FRVzDJx0jiU/donald-duck.html" title="Donald Duck" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/03/donald-duck.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkcFR30yeSp7ImA9WxBVGUo.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-3634073748924116717</id><published>2010-02-24T09:07:00.001+08:00</published><updated>2010-02-24T09:13:36.391+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-24T09:13:36.391+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Health" /><title>開車前---最好先開窗</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/nZBUfuO5QHkoBWiDbEckN1KMts8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/nZBUfuO5QHkoBWiDbEckN1KMts8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/nZBUfuO5QHkoBWiDbEckN1KMts8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/nZBUfuO5QHkoBWiDbEckN1KMts8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;span style="font-size: 18pt;"&gt;&lt;b&gt;開車前&lt;span lang="EN-US"&gt;---&lt;/span&gt;最好先開窗&lt;/b&gt;&lt;span lang="EN-US"&gt;&lt;br /&gt;
&lt;/span&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: 18pt;"&gt;&lt;span style="color: red;"&gt;你怕血癌嗎？&lt;/span&gt;開車前&lt;span lang="EN-US"&gt;-&lt;/span&gt;最好先開窗，開車的民眾要注意，根據美國加州大學的研究發現，汽車的儀表板、沙發、內裝和芳香劑，會揮發致癌物質&lt;span style="color: red;"&gt;「苯」。&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: 18pt;"&gt;&lt;span style="color: red;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span lang="EN-US"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="color: red;"&gt;苯&lt;/span&gt;類化合物是很強的致癌物質，也是很強的骨髓毒性物質，它會造成一般人的貧血或者是白血球稀少，長期暴露的話，得到白血病，就是血癌的風險大為增加，有些孕婦還會因此流產。&lt;span lang="EN-US"&gt;&lt;br /&gt;
&lt;/span&gt;和室內每立方公尺苯的正常標準值&lt;span lang="EN-US"&gt;50&lt;/span&gt;微克相比，室溫下的密閉汽車裡含有&lt;span lang="EN-US"&gt;400&lt;/span&gt;到&lt;span lang="EN-US"&gt;800&lt;/span&gt;微克的苯，如果在太陽下曝曬&lt;span lang="EN-US"&gt;1&lt;/span&gt;小時，溫度超過攝氏&lt;span lang="EN-US"&gt;60&lt;/span&gt;度，苯含量更高達&lt;span lang="EN-US"&gt;2&lt;/span&gt;千到&lt;span lang="EN-US"&gt;4&lt;/span&gt;千微克，是正常標準的&lt;span lang="EN-US"&gt;40&lt;/span&gt;倍以上，開車族不能倖免吸入過量的苯。&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: 18pt;"&gt;&lt;span lang="EN-US"&gt;&lt;br /&gt;
&lt;/span&gt;林口長庚毒物科主任林傑樑：&lt;span style="color: red;"&gt;「你的愛車停在太陽底下超過１個鐘頭，甚至不需要１個鐘頭，要切記，一定要把窗戶搖開把門打開，讓這些有毒氣體揮散掉以後，你才能夠開車。」&lt;/span&gt;醫師指出，「苯」屬於肝腎代謝的有毒化學物質，人體很難自然排出，只能提醒民眾在開車前請先開窗。&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-3634073748924116717?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/RbquNEUfFkU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/3634073748924116717/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/02/blog-post.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/3634073748924116717?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/3634073748924116717?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/RbquNEUfFkU/blog-post.html" title="開車前---最好先開窗" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/02/blog-post.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEcFRXg-eip7ImA9WxBVGUw.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-4254987561542185581</id><published>2010-02-23T16:00:00.000+08:00</published><updated>2010-02-23T16:00:14.652+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-23T16:00:14.652+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Software and Internet" /><title>大企业在后端使用Linux的十大常见方式</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/96Od_O6-O1_-stiuTPSuNdD8v50/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/96Od_O6-O1_-stiuTPSuNdD8v50/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/96Od_O6-O1_-stiuTPSuNdD8v50/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/96Od_O6-O1_-stiuTPSuNdD8v50/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;span class="fa" style="color: red;"&gt;摘要：&lt;/span&gt;&lt;span style="color: #38761d;"&gt;世界上最大的技术支持、软件和硬件公司每天使用Linux完成各种任务与解决方案，那么这些大公 司究竟是怎么使用Linux的呢？其实并不神秘，本文为你揭晓答案，大多数公司都不会使用Linux作为桌面操作系统，主要是用于后端服务器操作系统，经 过这些大公司的大胆尝试，许多事实证明Linux完全可以担负起关键任务计算应用，并且有很多Linux系统从开始运行至今从未宕过机，100%的正常运 行时间让人无不惊叹，当然你也可以做到。&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #38761d;"&gt;&amp;nbsp;&lt;/span&gt; &lt;br /&gt;
&lt;b&gt;1、虚拟化&lt;/b&gt;&lt;br /&gt;
从桌面虚拟化到云，现在又回到桌面虚拟化，VMware是虚拟化产品做得最早也是目前最好的一家公司，现在它的主要产品也是基于Linux的，另外Citrix，Red Hat以及微软也是VMware的有力竞争者。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2、数据库服务器&lt;/b&gt;&lt;br /&gt;
Oracle和IBM都有企业级软件运行在Linux上，为什么？因为它们在Linux上可以工作得很好，Linux自身消耗的资源很少，因此它不 会和数据库进行资源的抢夺，一个RDBMS需要一个稳定的，无内存泄露的，快速磁盘I/O和无CPU竞争的操作系统，Linux就是这样的系统，世界上已 经有很多开发人员使用LAMP(Linux，Apache，MySQL和Perl/PHP/Python)和 LAPP(Linux，Apache，PostgreSQL，Perl/PHP/Python)作为开发平台，也有很多关键应用系统是这么部署的。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;3、Web服务器&lt;/b&gt;&lt;br /&gt;
我想现在任何人都知道Apache是世界上用的最多的Web服务器吧，至少最近10年是大家公认的事实上的Web服务器标准，那么它运行在什么平台上呢？答案是所有的平台都支持，但超过90%的Apache都是搭配Linux运行的。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;4、应用服务器&lt;/b&gt;&lt;br /&gt;
Tomcat，Geronimo，WebSphere和WebLogic都是Java应用服务器，Linux为这些服务提供了一个稳定的，内存消耗 很小的，可长时间运行的平台。IBM和Oracle也都非常支持Linux，它们也逐渐将Linux作为其软件系统的首要运行平台。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;5、跳转盒(Jump box)&lt;/b&gt;&lt;br /&gt;
对于企业而言，跳转盒是一个为公共网络(如互联网)到安全网络(如客户部)提供的网关，这样一个廉价的系统也可以为大量的用户提供服务，而相对应的Windows系统需要成千上万美元的终端服务访问许可和客户端访问许可，并且对硬件的要求更高。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;6、日志服务器&lt;/b&gt;&lt;br /&gt;
Linux是处理和存储日志文件的绝佳平台，听起来这是一个低级的任务，但它的低成本，低硬件要求，和高性能是任何需要日志服务的人的首选平台，大公司也经常使用Linux作为日志服务的低成本平台。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;7、开发平台&lt;/b&gt;&lt;br /&gt;
Linux下有许多开发工具，如Eclipse、C、C++、Mono、Python、Perl、PHP等，毫无疑问，Linux是世界上最流行的开发平台，它包含了成千上万的免费开发软件，这对于全球开发者都是一个好消息。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;8、监控服务&lt;/b&gt;&lt;br /&gt;
如果你要做网络监控或系统性能监测，那么Linux是一个不错的选择，大公司一般使用淘汰下来的硬件设备和自由软件搭建监控系统，如Orca和 Sysstat都是Linux上不错的监控方案，IT专业人员利用它们可以实现自动化监控，无论你的网络是大是小，它们都能应付自如。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;9、Google搜索设备&lt;/b&gt;&lt;br /&gt;
Google在Linux平台上构建起搜索设备，如果你的公司在使用这种设备，那么你就在使用Linux，但Google使用的Linux非常特殊，专门进行了定制和优化。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;10、入侵检测系统&lt;/b&gt;&lt;br /&gt;
Linux天生就是一个完美的入侵检测服务平台，因为它是免费的，且可以运行在很多种硬件平台上，同时也是开源爱好者喜欢的平台，Linux上最著名的入侵防御和检测系统要数Snort，它也是开源且免费的。&lt;br /&gt;
&lt;br /&gt;
下面的话引自Snort网站：&lt;br /&gt;
Snort是由Sourcefire开发的开源网络入侵防御/检测系统(IDS/IPS)，结合了签名、协议和基于异常的检测，Snort是世界上部署最广泛的IDS/IPS，数以百万计的下载量和超过270,000位注册用户，Snort已经成为事实上的IPS标准。&lt;br /&gt;
如果你还没有使用Snort，你应该尝试一下。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;总结&lt;/b&gt;&lt;br /&gt;
通过上面10种Linux使用方式，相信你不会再觉得Linux是在夹缝中求生存，Linux也不只是为桌面，家庭用户及小公司而存在的，它在大公司中同样受到重用。&lt;br /&gt;
你在你的公司是怎么使用Linux的呢？是个实验性的平台，还是一台DIY路由器，防火墙？欢迎发表你的意见和想法!&lt;br /&gt;
&lt;div style="color: black;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="color: #38761d;"&gt;&lt;b style="color: black;"&gt;References: http://os.51cto.com&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #38761d;"&gt;&lt;b style="color: black;"&gt;&amp;nbsp;&lt;/b&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-4254987561542185581?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/pygCA7fq0IM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/4254987561542185581/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/02/linux.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/4254987561542185581?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/4254987561542185581?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/pygCA7fq0IM/linux.html" title="大企业在后端使用Linux的十大常见方式" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/02/linux.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUYBQnc8eSp7ImA9WxBWGEw.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-5033834868035970785</id><published>2010-02-10T23:42:00.002+08:00</published><updated>2010-02-10T23:52:33.971+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-10T23:52:33.971+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="BIg News" /><title>Scammer Companies in Malaysia, Beware!</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/SSM3ju0KP2eib5pdvxNrHYweHuk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SSM3ju0KP2eib5pdvxNrHYweHuk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/SSM3ju0KP2eib5pdvxNrHYweHuk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SSM3ju0KP2eib5pdvxNrHYweHuk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;b style="color: #38761d;"&gt;BIg NewsToday sudden received&amp;nbsp; an email on the scammer companies in Malaysia, surprisingly some of them are quick famous. Some I still can remember my friends they have told me how much they have invest and will earn in short time. I am pity of my friends and hope by posting the email here can help the people who start to find some information about those companies.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b style="color: red;"&gt;In addition to the recent highlight by the mass media, here is some good compilation of suspicious business scams.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
1. The Cafe Scams – Island Red Cafe &amp;amp; Stevens Corner&lt;br /&gt;
2. Sunshine Empire &lt;no bnm="" busted="" by="" in="" longer="" operation="" since=""&gt;&lt;br /&gt;
3. MobilWallet&lt;br /&gt;
4. Water Business – Oxygenated and Alkaline Water Products&lt;br /&gt;
5. Car Fuel Booster – K-Link&lt;br /&gt;
6. Perfumery Products&lt;br /&gt;
7. Energy Products&lt;br /&gt;
8. Hi-Tech Products&lt;br /&gt;
9. Investment Schemes &lt;no bnm="" busted="" by="" in="" longer="" operation="" since=""&gt;&lt;br /&gt;
10. GoldQuest&lt;br /&gt;
11. Numerogy &amp;amp; Fortune Telling&lt;br /&gt;
12. MJ – Life&lt;br /&gt;
13. Seaweed Venture Scams&lt;br /&gt;
14. MXM (Previously MGM)&lt;br /&gt;
15. Gano Excel &lt;br /&gt;
16. NuLife (HK)&lt;br /&gt;
17. Arowana Fish Breeding&lt;br /&gt;
18. EasyPha-max&lt;br /&gt;
19. ACe Scube (Malaysia) Sdn. Bhd&lt;/no&gt;&lt;/no&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b style="color: red;"&gt;References: &lt;/b&gt;&lt;br /&gt;
http://www.kidbuxblog.com/talk-business/scammer-companies-in-malaysia-beware&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-5033834868035970785?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/5IMM5Ql5vyM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/5033834868035970785/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/02/scammer-companies-in-malaysia-beware.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/5033834868035970785?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/5033834868035970785?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/5IMM5Ql5vyM/scammer-companies-in-malaysia-beware.html" title="Scammer Companies in Malaysia, Beware!" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/02/scammer-companies-in-malaysia-beware.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkENQH86fip7ImA9WxBWEkQ.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-768671316786208846</id><published>2010-02-04T21:08:00.004+08:00</published><updated>2010-02-04T21:38:11.116+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-04T21:38:11.116+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Awesome" /><title>The Day of “立春“ . The egg will able to stand!</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/-aQtbRljewDLCrz94jsTFWrEoVo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-aQtbRljewDLCrz94jsTFWrEoVo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/-aQtbRljewDLCrz94jsTFWrEoVo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-aQtbRljewDLCrz94jsTFWrEoVo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;The photo was taken on ( Thursday ) 4 February 2010. At the beginning i was thinking that&amp;nbsp;&amp;nbsp; “立春“&amp;nbsp; means the first day of spring but never know that the egg will be able to stand up at the day! I don't believe what people said at internet well i did an experiment to prove that is a truth....&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_PbZT7lnWzEA/S2rFJpmMPOI/AAAAAAAAAFM/jFdsdUD9fE8/s1600-h/1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="300" src="http://3.bp.blogspot.com/_PbZT7lnWzEA/S2rFJpmMPOI/AAAAAAAAAFM/jFdsdUD9fE8/s400/1.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;my photo&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_PbZT7lnWzEA/S2rH7Q8nE4I/AAAAAAAAAFU/mQOunwcfHkI/s1600-h/2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="400" src="http://1.bp.blogspot.com/_PbZT7lnWzEA/S2rH7Q8nE4I/AAAAAAAAAFU/mQOunwcfHkI/s400/2.jpg" width="271" /&gt;&lt;/a&gt;&lt;/div&gt;my photo&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i92.photobucket.com/albums/l10/aeiou77/IMG_1588.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" src="http://i92.photobucket.com/albums/l10/aeiou77/IMG_1588.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;others photo&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Video ^____^&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;object height="344" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/wjg6PnMQAWw&amp;hl=en&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/wjg6PnMQAWw&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-768671316786208846?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/PEc9C5Jooh0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/768671316786208846/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/02/day-of-egg-will-able-to-stand.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/768671316786208846?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/768671316786208846?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/PEc9C5Jooh0/day-of-egg-will-able-to-stand.html" title="The Day of “立春“ . The egg will able to stand!" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_PbZT7lnWzEA/S2rFJpmMPOI/AAAAAAAAAFM/jFdsdUD9fE8/s72-c/1.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/02/day-of-egg-will-able-to-stand.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUYBRH0yfCp7ImA9WxBWGEw.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-411526695556165730</id><published>2010-02-04T10:46:00.004+08:00</published><updated>2010-02-10T23:52:35.394+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-10T23:52:35.394+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="BIg News" /><title>It's time to wake up ...........  our future is gone.....</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/_YO5Z5GlFDoNu3_xEO8h2SLxafA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_YO5Z5GlFDoNu3_xEO8h2SLxafA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/_YO5Z5GlFDoNu3_xEO8h2SLxafA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_YO5Z5GlFDoNu3_xEO8h2SLxafA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;你是否和我一樣，發覺身邊的親戚和朋友，似乎少了許多。 &lt;br /&gt;
&lt;br /&gt;
I wonder you feel the same as me, all the sudden I realized friends and relatives around me seems to get less and less.&lt;br /&gt;
&lt;br /&gt;
以往接近過年時，各種聚餐排得滿滿的，而今年，似乎沒聲沒息。 &lt;br /&gt;
&lt;br /&gt;
Those years when the New Year drew near, all sorts of gathering appointments almost completely filled the diaries, but this year seems so quiet.&lt;br /&gt;
&lt;br /&gt;
即使是平常日子，電話少了，與大家見面也少了。 &lt;br /&gt;
&lt;br /&gt;
Even in nromal time, phone calls become less and less, face to face meet up also become much less.&lt;br /&gt;
&lt;br /&gt;
也許，大家各忙各的；或者，目前流行“宅生活”，儘量避免出門。 &lt;br /&gt;
&lt;br /&gt;
Perhaps, everybody is busy with their own tihings, or perhaps, nowadays people prefer to stay in.&lt;br /&gt;
&lt;br /&gt;
也不盡然如此。再想一想，很多老友和親戚，已經不在了。嗟！大吉利是，他們都還好好的，只是離開了馬來西亞。 &lt;br /&gt;
&lt;br /&gt;
However, it is not entirely like this, thinking further, actually old friends and relatives are not around any more. God bless, they are still alive and well, they just left the country, Malaysia.&lt;br /&gt;
&lt;br /&gt;
去了中國大陸開工廠；王子不做工程師，移民到澳洲開小食檔；阿風離開本地大學，去香港做講師；青蛙去了台灣，開展事業第二春；還有的到了美國、英國，唔，還有去印尼的……。 &lt;br /&gt;
&lt;br /&gt;
They have gone to China to set factory; ah Wang quit his engineer job and migrated to Australia to set up his little food store business, ah Fong left the local University went to Hong Kong as a lecturer. 'Frog' went to Taiwan to pursue his second career life. Others went to Americia, England, even Indonesia...&lt;br /&gt;
&lt;br /&gt;
起初，以為這只是個別現象，逐漸的，旁人也有同樣發現；原來，這不是個別現象，而是社會現象；這不是少數，而是相當大的數目。 &lt;br /&gt;
&lt;br /&gt;
At first, I thought these are individual cases, but gradually, people around me realized the same, these are not individual cases but a general symptoms of our society. they are not small numbers but the pretty big indeed.&lt;br /&gt;
&lt;br /&gt;
外交部早前披露了一個數字，說明這個現象是多麼真實，多麼貼近。 &lt;br /&gt;
&lt;br /&gt;
Department of Foreign Affairs released the figures earlier, it confirmed the situation is real.&lt;br /&gt;
&lt;br /&gt;
從去年3月到今年9月，已經有30萬大馬人移民他國；其中20萬人是今年1月到8月出走的數目。 &lt;br /&gt;
&lt;br /&gt;
From March 2008 thru September 2009, a total of 300,000 Malaysian migrated to other countries, among them 200,000 left between Jan - Aug 2009. (in 8 months)&lt;br /&gt;
&lt;br /&gt;
累積下來，已經有超過200萬大馬人移民，接近今天印尼外勞在大馬的人口。&lt;br /&gt;
&lt;br /&gt;
Cummulatively, there are 2 million Malaysian migrated, this figure is close to the number of Indonesian workers in Malaysia today. &lt;br /&gt;
&lt;br /&gt;
不同的是，移居他國的大馬人，多是專業人士、中產階級。 &lt;br /&gt;
&lt;br /&gt;
The difference are, those migrated are mostly professional and middle class people.&lt;br /&gt;
&lt;br /&gt;
他們有很多出走的理由，追求事業發展，為了孩子前途，尋找個人更大空間……，概括一句：對馬來西亞失望。 &lt;br /&gt;
&lt;br /&gt;
They have many reasons to leave: pursue career development, for the future of their children, in search of better life and environment... In one sentence, they lost hope of Malaysia.&lt;br /&gt;
&lt;br /&gt;
50年前，大家說，馬來西亞真好，好過香港，甚至日本。 &lt;br /&gt;
&lt;br /&gt;
50 years ago people said: Malaysia is very good, better than Hong Kong and even Japan.&lt;br /&gt;
&lt;br /&gt;
30年前，大家說，馬來西亞還不錯，比得上韓國、台灣（不提香港和日本了）。 &lt;br /&gt;
&lt;br /&gt;
30 years ago people said: Malaysia is not bad, comparable to S. Korea and Taiwan. (No mention of Hong Kong and Japan any more).&lt;br /&gt;
&lt;br /&gt;
20年前，大家說，馬來西亞還可以，至少超越中國、泰國（不能和台、韓比了）。 &lt;br /&gt;
&lt;br /&gt;
20 years ago people said: Malaysia can do la, at least better than China and Thailand (Cannot compare with Taiwan and Korea lah)&lt;br /&gt;
&lt;br /&gt;
10年前，大家說，馬來西亞再差，還不至於像越南、印尼（中國已是不同級別）。 &lt;br /&gt;
&lt;br /&gt;
10 years ago poeple said: No matter how bad Malaysia is, cannot be worse than Vietnam and Indonesia ko-ah. (China is already in a different category).&lt;br /&gt;
&lt;br /&gt;
今日，越南和印尼的經濟成長率遙遙領先大馬，社會活力和知識發展也勝過一籌；距離愈來愈近了。&lt;br /&gt;
&lt;br /&gt;
Today, the economic growth rate of Vietnam and Indonesia already far exceeded Malaysia, Social activity and intellectual development of the country is also better, the gap between us and them is closing up.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
怕甚麼，還有菲律賓和柬埔寨、緬甸。 &lt;br /&gt;
&lt;br /&gt;
Why worry? there are still Philipines, Cambodia and Myanmar behind us.&lt;br /&gt;
&lt;br /&gt;
但是，一位經濟學家最近到菲律賓考察之後，認為再過20年，大馬可以取代菲律賓，出口馬籍女傭到全世界了。 &lt;br /&gt;
&lt;br /&gt;
However, according to an economist who recently surveyed Phillipines, he think in 20 years' time, Malaysia can replace Phillipines to become the World exporter of Malaysian maids.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
半個世紀以來，馬來西亞是在大宅院裡，用封建方式，分配祖宗家業，消耗社會資源，浪費和逼走人才；不談競爭力，忽略生產力，討厭績效制。 &lt;br /&gt;
&lt;br /&gt;
Over half the century, Malaysians live in the big old imperial housing complex, closed up and survive on properties left behind by the ancestor; continue to consume up social resources, wasteful, and drive away talents; they never talk about competitiveness, totally neglect productivity, and hate meritocracy.&lt;br /&gt;
&lt;br /&gt;
亞洲金融風暴來襲時，大馬把門關起來，以為避過一劫，有人還自我陶醉，自以為是天才策略。 &lt;br /&gt;
&lt;br /&gt;
When Asia economic storm hit in 1997, Malaysia closed their doors, thinking we beautifully avoided a disaster, there even think of themselves as genius, being able to handle the situation so well.&lt;br /&gt;
&lt;br /&gt;
然而，其它國家面對風暴，走出風暴，進行體質改革，跨步向前，登上另一個水平；大馬卻還在原地踏步。&lt;br /&gt;
&lt;br /&gt;
However, just look at other countries in our neighbourhood, they stand up, face the storm, and walk out of the storm. They overhaul the system, improve the processes and march forward, they moved up to a new level. And Malaysia, still walking on the spot.&lt;br /&gt;
&lt;br /&gt;
馬來西亞，該醒一醒了。 &lt;br /&gt;
&lt;br /&gt;
Dear Malaysia, it's time to wake up! We are very very late now!&lt;br /&gt;
&lt;br /&gt;
For original article, please see link below:&lt;br /&gt;
&lt;br /&gt;
http://opinions.sinchew-i.com/node/12566&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-411526695556165730?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/M5qJfWyrl8g" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/411526695556165730/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/02/its-time-to-wake-up-our-future-is-gone.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/411526695556165730?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/411526695556165730?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/M5qJfWyrl8g/its-time-to-wake-up-our-future-is-gone.html" title="It's time to wake up ...........  our future is gone....." /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/02/its-time-to-wake-up-our-future-is-gone.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEABRXo6eip7ImA9WxBWEkg.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-8374729832060549497</id><published>2010-02-01T16:22:00.003+08:00</published><updated>2010-02-04T11:05:54.412+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-04T11:05:54.412+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Awesome" /><title>你不可不知道的 18 位改變網際網路名人</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9khDtIkGJrkQicSGzAXpS71qWPM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9khDtIkGJrkQicSGzAXpS71qWPM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9khDtIkGJrkQicSGzAXpS71qWPM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9khDtIkGJrkQicSGzAXpS71qWPM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;18 位對網際網路有重大影響的人物，如果你還不知道這些人，剛好可以順便補充一下你的知識；如果你已經知道這些人，但是不知道他們的長相，那剛好來看看照片&lt;img alt=":)" class="wp-smiley" src="http://mmdays.com/wp-includes/images/smilies/icon_smile.gif" /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Larry Page &amp;amp; Sergey Brin&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://www.wired.com/images/article/full/2007/09/Sergey_Brin_Larry_Page_580x.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="250" src="http://www.wired.com/images/article/full/2007/09/Sergey_Brin_Larry_Page_580x.jpg" width="320" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Google 搜尋引擎的創辦人，左邊是 Larry 右邊是 Sergey，無庸置疑地，Google 的 Search Engine 以及它所帶來的 Business Model 還有科技都在快速地改變我們所認知的網路以及軟體產業。 &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;Tim Berners-Lee&amp;nbsp;&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://www.intentblog.com/archives/Sir%20Tim%20Berners-Lee.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://www.intentblog.com/archives/Sir%20Tim%20Berners-Lee.png" /&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;全球互聯網 WWW 的創辦人，他的偉大並不僅止於互聯網的規格制定，還在於他無私的奉獻。他並沒有因為參與 WWW 的發明而致富，他反而在 1994 年加入了 MIT 的非營利機構 W3C (WWW Consortium)， 然後成為機構領導人，並致力於維護 WWW 的公平與公開性。(編按: 我們的世界需要多一點這種人)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Mark Zuckerberg&amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://www.absolutelynew.com/videos/EMAIL/nov/images/facebook-mark-zuckerberg.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="188" src="http://www.absolutelynew.com/videos/EMAIL/nov/images/facebook-mark-zuckerberg.jpg" width="320" /&gt;&lt;/a&gt;&amp;nbsp; &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;美國大型社交網路 &lt;a href="http://www.facebook.com/"&gt;Facebook&lt;/a&gt; 的創辦人，他的社交網路固然成功，但是更為令人佩服的是他的觀念: 開放平台 (Open Platform)，瞧瞧我們的無名小站就沒有如此的胸襟。因為開放平台的概念，讓 Web 上面的服務更能借力使力，也讓整個餅被做大了，更加貫徹了互聯網上面的 “流通” 概念。&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;Matt Mullenweg&lt;/b&gt; &lt;/div&gt;&lt;a href="http://farm2.static.flickr.com/1170/865998551_3af0c0cf5f.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="211" src="http://farm2.static.flickr.com/1170/865998551_3af0c0cf5f.jpg" width="320" /&gt;&lt;/a&gt;&amp;nbsp; &lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://wordpress.org/"&gt;Wordpress&lt;/a&gt; 的創辦人。這還用說嗎? MMDays 一開始就是在 Wordpress 上面撰寫，即使搬出來了，也是用 Wordpress 架設。Wordpress 對個人發行有著重大的影響。&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;Bram Cohen&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt; &lt;a href="http://gfx.dagbladet.no/pub/artikkel/4/44/447/447456/BramCohenAP.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://gfx.dagbladet.no/pub/artikkel/4/44/447/447456/BramCohenAP.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://www.bittorrent.com/"&gt;BitTorrent 的創辦人&lt;/a&gt;，我想很多從事數位製造的公司應該很想把這個傢伙丟到外太空去。關於 BT 的一系列詳細介紹，可以看 &lt;a href="http://mmdays.com/2007/04/06/bt1/"&gt;Mr. Friday 精采的文章&lt;/a&gt;。&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;Pierre Omidyar&lt;/b&gt;&lt;/div&gt;&lt;a href="http://images.forbes.com/media/lists/10/2006/KQM6.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="217" src="http://images.forbes.com/media/lists/10/2006/KQM6.jpg" width="320" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;a href="http://www.ebay.com/"&gt;eBay&lt;/a&gt; 的創辦人。以當時的想法，是一個讓人跌破眼鏡的 Business Model。當時大家都想，人性如此邪惡，上了網站匿名之後應該會更加邪惡才是，還好 eBay 證實了我們的人性還沒有差到那麼誇張的地方去。就此打開了 C2C 電子商務的領域了。 &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;Mike Morhaime&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.pcguru.hu/pcguru/img/hirek/morhaime.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://www.pcguru.hu/pcguru/img/hirek/morhaime.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;WOW (World of Warcraft) 的製作創辦人，同時也是鼎鼎大名 Blizzard Entertainment 的總裁。魔獸爭霸開啟了如此大規模的多人在線角色扮演類網絡遊戲 (MMORPG)，讓一群又一群的年輕人沉醉在網路的世界裡面。也啟發了如 SecondLife 虛擬世界的構想。(其實，我並不贊成網路遊戲成癮…) &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;Jimmy Wales&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;a href="http://www.spiegel.de/img/0,1020,501737,00.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="214" src="http://www.spiegel.de/img/0,1020,501737,00.jpg" width="320" /&gt;&lt;/a&gt;&amp;nbsp; &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;Wikipedia 的創辦人。想到 Wikipedia 就會想到群眾知識，以及開放內容 (Open Content)，知識的免費以及方便取得，全是因為 Wikipedia 這個先鋒的概念。(編按: 我們的世界也需要多一點這種人) &lt;/div&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;b&gt; &lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Chad Hurley &amp;amp; Steve Chen&lt;/b&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://cache.eb.com/eb/image?id=97103&amp;amp;rendTypeId=4" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="193" src="http://cache.eb.com/eb/image?id=97103&amp;amp;rendTypeId=4" width="320" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&amp;nbsp;YouTube 的創辦人，左邊是 Chad Hurley，右邊是 Steve Chen。YouTube 的崛起，實現了網路電視的概念，現在沒有人敢說在網路上面看影片是一件愚蠢加上不可能的事情。不過，同樣的，又加速了網路智慧財產的問題，在 YouTube 上面可是有一堆有版權的影片。 &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;b&gt;Jeff Preston Bezos&lt;/b&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;a href="http://www.famousentrepreneur.info/pics/jeffbezos.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://www.famousentrepreneur.info/pics/jeffbezos.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&amp;nbsp;Amazon 線上書店的創辦人。當時創辦 Amazon 大家也是不看好，一直在幫他倒數，結果他成功了。現在 Amazon 則是更加積極地當一個互聯網上面的軍火商，最近推出的 Amazon Web Services 則是瞄準了許多網路創業家的平台代管服務。&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;Shawn Fanning&amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style="font-weight: normal;"&gt;我們怎麼可以忘了如此傳奇的駭客，正因為他在 1999 年創立的 Napster 讓 P2P 的技術以及精神得以發揚光大，也燃起了所謂了的智慧財產觀念在網路上面的適用性問題。傳統的實體獲利模式可以完全套用在數位影音上面嗎? 面對現實吧，我買 Ian Rogers 的單。 &lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Kevin Rose&lt;/b&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;b style="font-weight: normal;"&gt;Digg 的創辦人，Digg 的創新概念是 “群眾智慧”，任何文章都可以被丟上網站上面公評，由群眾選出所謂的 “熱文”。&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Craig Newmark&lt;/b&gt;&lt;br /&gt;
&lt;b style="font-weight: normal;"&gt;Craigslist 的創辦人。全球最大也是最早的分類廣告網站。讓我引述一下智慧羅網的描述: “你可以把craigslist想成是一塊布告欄，只是這是網際網路上一塊非常巨大的布告欄。任何人需要任何東西，都可以來布告欄前面，看看別人貼出來的告示，或者把自己需要的東西貼上去。就是那麼湊巧，往往有人能夠滿足你的需求。” 所以他開啟了一種非常特殊的廣告領域。&amp;nbsp;&lt;/b&gt;&lt;b style="font-weight: normal;"&gt; &lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;David Filo &amp;amp; Jerry Yang&lt;/b&gt;&lt;br /&gt;
Yahoo! 的創辦人，左邊是 David Filo 右邊是 Jerry Yang。以入口網站概念，獨霸了當時網際網路好一陣子，連 Yahoo! 這個超級賺錢的概念都可以在當時的電影裡面看見，不亞於時下的 Google。不過，科技業就是如此，風水輪流轉，Yahoo! 錯失了搜尋引擎的戰場，現在又被 Microsoft 逼嫁，不知道 Yahoo! 是不是能夠再造第二春啊。&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Jack Ma&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;b style="font-weight: normal;"&gt;阿里巴巴的創辦人。馬雲對中國互聯網網有重大的影響。我對馬雲的好感是來自於馬雲的這一句話: “我不會在網絡遊戲投一分錢，我不想看到我的兒子在我做的遊戲裡面沉迷!“，我希望他能夠一直信守他的承諾。他的這句話，讓他看起更像是一個企業家而不是一個生意人。他的對比，就讓我想到了 Bill Gates，Bill Gates 也是不讓他的小孩玩電動，不過這位仁兄似乎非常鼓勵大家去買他的 XBOX。己所不欲，勿施於人啊。&amp;nbsp;&lt;/b&gt;&lt;b style="font-weight: normal;"&gt;&amp;nbsp;&lt;/b&gt;&lt;/b&gt;&lt;b style="font-weight: normal;"&gt;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: red;"&gt;誰會是下一個互聯網英雄?&amp;nbsp; &lt;/span&gt;&lt;b style="font-weight: normal;"&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b style="font-weight: normal;"&gt;&lt;b&gt;JACK WONG J.J :)&lt;/b&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-8374729832060549497?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/WJZ2ZaO0rgI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/8374729832060549497/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/02/18.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/8374729832060549497?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/8374729832060549497?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/WJZ2ZaO0rgI/18.html" title="你不可不知道的 18 位改變網際網路名人" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://farm2.static.flickr.com/1170/865998551_3af0c0cf5f_t.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/02/18.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck4NRng4fip7ImA9WxBQFEU.&quot;"><id>tag:blogger.com,1999:blog-613411729936907651.post-5708321659543029006</id><published>2010-01-14T22:31:00.005+08:00</published><updated>2010-01-14T22:56:37.636+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-01-14T22:56:37.636+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Awesome" /><title>Atomic Boom</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/johoWjRZ0cfBqqzD3Upbf3yUgs0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/johoWjRZ0cfBqqzD3Upbf3yUgs0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/johoWjRZ0cfBqqzD3Upbf3yUgs0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/johoWjRZ0cfBqqzD3Upbf3yUgs0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_PbZT7lnWzEA/S08qEScPE_I/AAAAAAAAAD0/IBbl9XdbkpM/s1600-h/5SO74K8S05RQ0001.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_PbZT7lnWzEA/S08qEScPE_I/AAAAAAAAAD0/IBbl9XdbkpM/s320/5SO74K8S05RQ0001.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
罗伯特·奥本海默——“原子弹之父”:1954年1月1日，奥本海默是曼哈顿项目的科学指导员，也正是曼哈顿项目发明了原子弹。奥本海默是一位非常杰出的 物理学家和理论家，他通常把当今这个时代看作是(1)一个不负责任的科学家狂妄自大的带着不受控制把人类带到原子核造成的最终毁灭的道路上。(2)当人意 识到他的想法和见解被右翼的军事家们误用为自己谋取邪恶的利益时，这个敏感的导引头将会被触发。当然，这两个观点都有些不合理，而且过度单纯人类以及他的 遗产。&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_PbZT7lnWzEA/S08u8e5QURI/AAAAAAAAAEc/5iPwIz4yERc/s1600-h/5SO73UHN05RQ0001.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_PbZT7lnWzEA/S08u8e5QURI/AAAAAAAAAEc/5iPwIz4yERc/s320/5SO73UHN05RQ0001.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;News&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_PbZT7lnWzEA/S08rAMvGR8I/AAAAAAAAAEE/vLsFndH5VXk/s1600-h/5SO73OOB05RQ0001.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/S08rAMvGR8I/AAAAAAAAAEE/vLsFndH5VXk/s320/5SO73OOB05RQ0001.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;Observation and learn.&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_PbZT7lnWzEA/S08sfp0hVbI/AAAAAAAAAEM/-ZoZrUIa6TU/s1600-h/5SO74J6705RQ0001.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_PbZT7lnWzEA/S08sfp0hVbI/AAAAAAAAAEM/-ZoZrUIa6TU/s320/5SO74J6705RQ0001.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;Nuclear Boom test at year 1951&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://1.bp.blogspot.com/_PbZT7lnWzEA/S08tdRtKy-I/AAAAAAAAAEU/fs5FGyRu1rY/s1600-h/5SO74I3P05RQ0001.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_PbZT7lnWzEA/S08tdRtKy-I/AAAAAAAAAEU/fs5FGyRu1rY/s320/5SO74I3P05RQ0001.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;Mushroom ...&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_PbZT7lnWzEA/S08vQwHFK8I/AAAAAAAAAEk/355yIuvBlEQ/s1600-h/5SO74DR405RQ0001.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_PbZT7lnWzEA/S08vQwHFK8I/AAAAAAAAAEk/355yIuvBlEQ/s320/5SO74DR405RQ0001.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;how beautiful was it...&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_PbZT7lnWzEA/S08vacbgn2I/AAAAAAAAAEs/0XEh5dkc2AE/s1600-h/5SO742T705RQ0001.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_PbZT7lnWzEA/S08vacbgn2I/AAAAAAAAAEs/0XEh5dkc2AE/s320/5SO742T705RQ0001.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://3.bp.blogspot.com/_PbZT7lnWzEA/S08vnXR81_I/AAAAAAAAAE0/4liB80P6a1Y/s1600-h/5SO745V705RQ0001.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_PbZT7lnWzEA/S08vnXR81_I/AAAAAAAAAE0/4liB80P6a1Y/s320/5SO745V705RQ0001.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;wonderful moment but harmful for out earth...&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://1.bp.blogspot.com/_PbZT7lnWzEA/S08vp-3A0MI/AAAAAAAAAE8/zYUC_NnrAYg/s1600-h/5SO749B605RQ0001.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_PbZT7lnWzEA/S08vp-3A0MI/AAAAAAAAAE8/zYUC_NnrAYg/s320/5SO749B605RQ0001.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;Used for testing &lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/613411729936907651-5708321659543029006?l=wjijie.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/iMrx/~4/vbPhR0imZEI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://wjijie.blogspot.com/feeds/5708321659543029006/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://wjijie.blogspot.com/2010/01/195411-12.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/5708321659543029006?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/613411729936907651/posts/default/5708321659543029006?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/iMrx/~3/vbPhR0imZEI/195411-12.html" title="Atomic Boom" /><author><name>Jack Wong</name><uri>http://www.blogger.com/profile/01546526427487136455</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/_PbZT7lnWzEA/SvjLVFYB1DI/AAAAAAAAAAM/8Cg6zkT8GyE/S220/Hakuna-Matata-Disney-135876.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_PbZT7lnWzEA/S08qEScPE_I/AAAAAAAAAD0/IBbl9XdbkpM/s72-c/5SO74K8S05RQ0001.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://wjijie.blogspot.com/2010/01/195411-12.html</feedburner:origLink></entry></feed>

