<?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;C0YBRXw5eCp7ImA9WhRRFEk.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106</id><updated>2011-11-28T08:45:54.220+08:00</updated><category term="Cars" /><category term="Internet Online Business" /><category term="Trading" /><category term="My Favorite Songs" /><category term="Parenting" /><category term="My Opinion" /><category term="Entertainment" /><category term="Management" /><category term="Science" /><category term="general" /><category term="safety" /><category term="Arts" /><category term="Blogging" /><category term="Computer Laptops" /><category term="Games" /><category term="Food" /><category term="Mobile Phone" /><category term="Beauty" /><category term="Software" /><category term="My little precious" /><category term="living" /><category term="health" /><category term="Shanghai" /><category term="Web SEO" /><category term="humor" /><category term="Windows 7" /><title>Jasswin's Blog</title><subtitle type="html">Brazil Guaruja Beach 炸薯条好好吃！</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://jasswin.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>135</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/JasswinsBlog" /><feedburner:info uri="jasswinsblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;A04CQHo7eSp7ImA9WhZVEkw.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-5926252776332233999</id><published>2011-05-24T14:52:00.000+08:00</published><updated>2011-05-24T14:52:41.401+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-05-24T14:52:41.401+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Software" /><title>Java Application Server Performance Tuning (i.e. JBoss, Weblogic, Apache, Tomcat)</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RhKIMl94a_vsFAX1EREoSQBvrFc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RhKIMl94a_vsFAX1EREoSQBvrFc/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/RhKIMl94a_vsFAX1EREoSQBvrFc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RhKIMl94a_vsFAX1EREoSQBvrFc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;There are many Java application running on top of JBoss, Weblogic, Apache, Tomcat, etc. But at the end, a lot of people looking for performance tuning and there is one key area we need to take note. To minimize Java out of memory issue, better way to manage GC garbage collection, adjust needed Java JVM run time memory based on hardware physical memory, operating system, etc. Below some sharing is based on one of the e-Commerce project that I tuned on the Java application server before, and so far it getting better, stable and improve a lot without downtime for few weeks. It able to handle more than 5000 hits PV at same time without giving us any worry.&lt;br /&gt;
&lt;br /&gt;
This is based on Redhat Linux Ent 5 64bit, 2 x CPU, 32GB Memory environment.There are similar way if you want to change in Microsoft Windows Server, but some changes in registry end. I won't explain too much here, as you can find those info easily from Internet. Below just a reference for those people spend a lot of time to look for Java JVM or JBoss or Weblogic or Apache or Tomcat application server tuning, and please adjust accordingly based on your environment and requirement from hardware, software, application server, operating systems, etc. Note: Most important thing is you need to finetune your coding, as below won't make your application fly... :)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1. Change /etc/security/limits.conf&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
* - nofile 65536&lt;br /&gt;
root soft nofile 4096&lt;br /&gt;
root hard nofile 65536&lt;br /&gt;
&lt;br /&gt;
If you want to change it temporary, then you can use below command:-&lt;br /&gt;
ulimit -Hn 65536&lt;br /&gt;
ulimit -Sn 4096&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2. Change /proc/sys/net/ipv4/ip_local_port_range&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
1024 65535 &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;3. Change /etc/sysctl.conf&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
kernel.shmall = 4294967296&lt;br /&gt;
kernel.shmmax = 4294967296 (68719476736 if more than 4G memory)&lt;br /&gt;
kernel.shmmni = 4096&lt;br /&gt;
kernel.sem = 250 32000 100 128&lt;br /&gt;
net.core.rmem_default = 262144 &lt;br /&gt;
net.core.wmem_default = 262144&lt;br /&gt;
net.core.wmem_max = 1048576&lt;br /&gt;
fs.aio-max-nr = 65536&lt;br /&gt;
fs.file-max = 6815744&lt;br /&gt;
net.ipv4.ip_local_port_range = 1024 65000&lt;br /&gt;
net.core.rmem_max = 4194304&lt;br /&gt;
&lt;br /&gt;
net.ipv4.tcp_fin_timeout = 15&lt;br /&gt;
net.ipv4.tcp_keepalive_time = 300&lt;br /&gt;
net.ipv4.tcp_keepalive_probes=2&lt;br /&gt;
net.ipv4.tcp_keepalive_intvl=2&lt;br /&gt;
net.ipv4.tcp_syncookies = 1&lt;br /&gt;
net.ipv4.tcp_tw_reuse = 1&lt;br /&gt;
net.ipv4.tcp_tw_recycle = 1&lt;br /&gt;
net.core.netdev_max_backlog =8096&lt;br /&gt;
net.ipv4.tcp_max_tw_buckets = 5000&lt;br /&gt;
net.ipv4.tcp_max_syn_backlog = 8192&lt;br /&gt;
net.ipv4.route.gc_timeout = 100&lt;br /&gt;
net.ipv4.tcp_syn_retries = 1&lt;br /&gt;
net.ipv4.tcp_synack_retries = 1&lt;br /&gt;
net.ipv4.tcp_timestamps = 0 &lt;br /&gt;
net.ipv4.tcp_sack = 0 &lt;br /&gt;
net.ipv4.tcp_window_scaling = 0&lt;br /&gt;
&lt;br /&gt;
You can activate the changes immediately using below command:-&lt;br /&gt;
/sbin/sysctl -p&lt;br /&gt;
/etc/rc.d/init.d/network restart&lt;br /&gt;
&lt;b&gt;4. Java JVM run.conf tuning changes (if physical memory less than 4GB, then better set to 3072; in my environment, i am using 24GB setting)&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;i&gt;JRockit JDK 64bit (Realtime)&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
-Xms8192m -Xmx8192m -Xns512m -XgcPrio:deterministic -XpauseTarget=30ms -XXnosystemgc -Xgc:singlecon -XXlazyUnlocking -XXcallProfiling&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;i&gt;JRockit JDK 64bit (Other)&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
-Xms8192m -Xmx8192m -Xgc:gencon -XXnosystemgc -XXtlasize:min=3k -XXkeeparearatio=0 -Xns:48m -XXlazyUnlocking -XXcallProfiling -XlargePages -XXcompactRatio:1&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;i&gt;Other JDK 64bit&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
-server -Xms8192m -Xmx8192m -Xmn512m -XX:PermSize=512m -XX:MaxPermSize=512m -Xss256k -XX:SurvivorRatio=8 -XX:MaxTenuringThreshold=7 -XX:GCTimeRatio=19 -Xnoclassgc -XX:+DisableExplicitGC -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:+CMSPermGenSweepingEnabled -XX:+UseCMSCompactAtFullCollection -XX:CMSFullGCsBeforeCompaction=0 -XX:+CMSClassUnloadingEnabled -XX:-CMSParallelRemarkEnabled -XX:+UseCMSInitiatingOccupancyOnly -XX:CMSInitiatingOccupancyFraction=70 -XX:SoftRefLRUPolicyMSPerMB=0 -XX:LargePageSizeInBytes=128m -XX:+UseFastAccessorMethods -XX:+PrintClassHistogram -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+PrintGCApplicationConcurrentTime -XX:+PrintGCApplicationStoppedTime&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;5. Change on database connection (if using Oracle - oracle-ds.xml)&lt;/b&gt; (remember to put in &amp;lt; &amp;amp; &amp;gt;)&lt;br /&gt;
&lt;blockquote&gt;min-pool-size&amp;gt;20&lt;/blockquote&gt;&lt;br /&gt;
&lt;blockquote&gt;max-pool-size&amp;gt;200&lt;/blockquote&gt;&lt;br /&gt;
&lt;blockquote&gt;blocking-timeout-millis&amp;gt;50000millis&lt;/blockquote&gt;&lt;br /&gt;
&lt;blockquote&gt;idel-timeout-minutes&amp;gt;10idel-timeout-minutes&lt;/blockquote&gt;&lt;br /&gt;
&lt;blockquote&gt;check-valid-connection-sql&amp;gt;select 1 from dualsql&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt;6. Change on Java application server http connector (i.e. server.xml)&lt;/b&gt; (remember to put in &amp;lt; &amp;amp; &amp;gt;)&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;Connector protocol="HTTP/1.1" port="8080" address="${jboss.bind.address}" &lt;br /&gt;
maxThreads="1024" strategy="ms" maxHttpHeaderSize="8192" minSpareThreads="100" maxSpareThreads="250"&lt;br /&gt;
emptySessionPath="true" maxKeepAliveRequests="1" enableLookups="false" acceptCount="2048" connectionTimeout="10000" disableUploadTimeout="true" redirectPort="8443" URIEncoding="UTF-8" compression="1" compressableMimeType="text/html,text/xml,text/css,text/javascript, application/x-javascript,application/javascript"&lt;/blockquote&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;
There are some reference on this setting, and hope it help.&lt;br /&gt;
&lt;br /&gt;
Memory&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Connections&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; maxThreads&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; acceptCount&lt;br /&gt;
24G &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; above 1500 &amp;nbsp; &amp;nbsp;&amp;nbsp; 4096~8192 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4096~8192&lt;br /&gt;
16G&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1200~1500 &amp;nbsp; &amp;nbsp; &amp;nbsp; 2048 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2048&lt;br /&gt;
&lt;br /&gt;
12G&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1000~1200&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1526&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2048&lt;br /&gt;
8G &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 300~1000 &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 1024 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2048 &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &lt;br /&gt;
4G &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; below 300 &amp;nbsp; &amp;nbsp; &amp;nbsp; 512 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 1024&lt;br /&gt;
2G&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; below 100&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 256&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 512&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;7. Change on httpd.conf if using other Web server i.e. Apache&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;IfModule prefork.c&amp;gt;&lt;br /&gt;
StartServers      10&lt;br /&gt;
MinSpareServers   10&lt;br /&gt;
MaxSpareServers   15&lt;br /&gt;
ServerLimit     2000&lt;br /&gt;
MaxClients      1000&lt;br /&gt;
MaxRequestsPerChild 10000&lt;br /&gt;
IfModule&amp;gt;&lt;br /&gt;
&amp;lt;IfModule worker.c&amp;gt;&lt;br /&gt;
StartServers         3&lt;br /&gt;
MaxClients        2000&lt;br /&gt;
ServerLimit        25&lt;br /&gt;
MinSpareThreads     50&lt;br /&gt;
MaxSpareThreads    200 &lt;br /&gt;
ThreadsPerChild    100&lt;br /&gt;
MaxRequestsPerChild  0&lt;br /&gt;
IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
So, above Java tuning setting been tested before, and hope it help on your research or testing environment and even run in production once you tested ok. Below some checking command help you to see some info.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;i&gt;To check the connections:-&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
netstat -ant | grep 8080 | wc -l &lt;br /&gt;
netstat -ant | grep 8080 | awk '{print $6}' | sort | uniq -c | sort -n&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ps -ef | grep java (to find the id, i.e. 10122)&lt;br /&gt;
jstack 10122&lt;br /&gt;
jstat -gcutil 10122 1000 or jstat -gc 10122 1000&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;b style="color: orange;"&gt;Never Try! Never Know! Just Try This Java Tuning Setting!&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/8499405264120315106-5926252776332233999?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/gelHx2qfrdo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/5926252776332233999/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=5926252776332233999&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/5926252776332233999?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/5926252776332233999?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/gelHx2qfrdo/java-application-server-performance.html" title="Java Application Server Performance Tuning (i.e. JBoss, Weblogic, Apache, Tomcat)" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2011/05/java-application-server-performance.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEAAQXc5fCp7ImA9WxFTFE0.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-8283996427546651334</id><published>2010-04-05T02:45:00.000+08:00</published><updated>2010-04-05T02:45:40.924+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-05T02:45:40.924+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Shanghai" /><category scheme="http://www.blogger.com/atom/ns#" term="Software" /><title>Free Tool Funshion to Watch Movie</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/COOd-Is2T6VTft8W7scOwzPLhzk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/COOd-Is2T6VTft8W7scOwzPLhzk/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/COOd-Is2T6VTft8W7scOwzPLhzk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/COOd-Is2T6VTft8W7scOwzPLhzk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;There are a lot of free tool to download and watch movie, TV, carton channel, etc if we don't have cable or satelite&amp;nbsp;TV device install at home or the channel been blocked or need to pay extra. Recently, I use a new program to watch movie, and even the new season for 'Heroes', and it is called &lt;b&gt;Funshion 风行&amp;nbsp;&lt;/b&gt;(http://www.funshion.com/english/index.html). Although I do have &lt;b&gt;PPStream &lt;/b&gt;and &lt;b&gt;PPLive &lt;/b&gt;installed!&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Funshion is kind of using torrent concept that we can watch the movie while it is still downloading from backend. If the Internet line is slow, then the movie will freeze time to time. In this case, you can let it download first then watch it later. GOOD thing is the Funshion is like browser base that allow you to look at those movie's picture, as the page is show in Chinese word. Delete the movie after watch it if you don't have enough harddisk space, just right click and select 'Remove'...&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;i&gt;Is Funshion better than PPStream and PPLive?&lt;/i&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Usually the new movie will be show in PPStream or PPLive first but the quality is on compressed version, and there do have more movie, TV show, carton, etc too. Usually I use PPstream or PPLive to watch carton, TV programs, and use Funshion to watch movie as for better quality.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Since I have 2MB ADSL Internet line at Shanghai using China Telecom, and so far using Funshion without any problem and consider very smooth like I watch from the DVD... but not sure other country...&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;Try Funshion! Watch Move!&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-8283996427546651334?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/KdnOAZs_SxQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/8283996427546651334/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=8283996427546651334&amp;isPopup=true" title="30 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/8283996427546651334?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/8283996427546651334?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/KdnOAZs_SxQ/free-tool-funshion-to-watch-movie.html" title="Free Tool Funshion to Watch Movie" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>30</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2010/04/free-tool-funshion-to-watch-movie.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MBSX09cSp7ImA9WxBWF0w.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-3079132731228922122</id><published>2010-02-09T20:44:00.000+08:00</published><updated>2010-02-09T20:44:18.369+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-09T20:44:18.369+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Shanghai" /><category scheme="http://www.blogger.com/atom/ns#" term="Software" /><title>Free VPN Tool for Friends</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/uBgRd7X5y9ln-9atKxJ-KBJUR-o/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/uBgRd7X5y9ln-9atKxJ-KBJUR-o/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/uBgRd7X5y9ln-9atKxJ-KBJUR-o/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/uBgRd7X5y9ln-9atKxJ-KBJUR-o/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;Since move to China Shanghai for few weeks, and found that there are a lot of available tools for us to access many blocked websites from China. It really help me a lot, and today I am using this free VPN tool (飞易VPN共享器) to join the US VPN, then access to Blogger to post my 1st article after move. Thanks my friend share this great info to me.&lt;br /&gt;
&lt;br /&gt;
You all can visit this website (&lt;a href="http://www.feiyisoft.cn/pro/vpn/" target="_blank"&gt;http://www.feiyisoft.cn/pro/&lt;wbr&gt;&lt;/wbr&gt;vpn/&lt;/a&gt; &lt;span lang="ZH-CN" style="font-family: SimSun;"&gt;)&lt;/span&gt; to download this tool 飞易VPN共享器. After download, then you can find that there are a lot of countries VPN IP address that you can connect to it. If you are plan to visit some of the famous websites like (Hulu, Facebook, Twitter, Blogger, etc), then you can choose the US IP address. The main problem for this tool is all Chinese word, and may be you need your friend help to translate for you or do some translate from Internet then..&lt;br /&gt;
&lt;br /&gt;
Wow, really fast when I watch the movie from Hulu website (www.hulu.com) in Shanghai.. hahaha.. will share with you all when got other great tool.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-3079132731228922122?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/aYhY2pDBE94" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/3079132731228922122/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=3079132731228922122&amp;isPopup=true" title="5 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/3079132731228922122?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/3079132731228922122?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/aYhY2pDBE94/free-vpn-tool-for-friends.html" title="Free VPN Tool for Friends" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>5</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2010/02/free-vpn-tool-for-friends.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0MBRXc6eyp7ImA9WxNUFU8.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-1031978507867805545</id><published>2009-11-07T00:37:00.001+08:00</published><updated>2009-11-07T00:37:34.913+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-11-07T00:37:34.913+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Shanghai" /><category scheme="http://www.blogger.com/atom/ns#" term="living" /><title>First Time Come to Shanghai</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/rZtVs0QNnLilXoO5-Ocw3FjSfQ8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/rZtVs0QNnLilXoO5-Ocw3FjSfQ8/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/rZtVs0QNnLilXoO5-Ocw3FjSfQ8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/rZtVs0QNnLilXoO5-Ocw3FjSfQ8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/SvRQxbX2XYI/AAAAAAAAA7I/AgJXSs8OcrI/s1600-h/30102009%28018%29%5B5%5D.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="30102009(018)" border="0" alt="30102009(018)" src="http://lh6.ggpht.com/_KlMNPMnIRbE/SvRQyrj7FII/AAAAAAAAA7M/TXZujUAWnBw/30102009%28018%29_thumb%5B3%5D.jpg?imgmax=800" width="244" height="245" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;This is my first time come to &lt;strong&gt;Shanghai&lt;/strong&gt;, and found that I am not able to access a lot of websites from China (example like Facebook, Youtube, Twitter, Wordpress, Blogger, etc), including my Google blog &lt;a href="http://jasswin.blogspot.com"&gt;http://jasswin.blogspot.com&lt;/a&gt;, but Hong Kong no problem (I am in Hong Kong Regal Airport Hotel now, price is HKD 900 per night and the room is big). I try use some free public proxy in China, but still have the same issue, and think back that I better don't use those free proxy, as it will capture my detail without notify me. &lt;em&gt;Be Safe in Internet!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;When I reached Shanghai Pudong Airport around 5pm on Wednesday 28/Oct/2009, the Shanghai weather here is not too cold and not so hot. &lt;em&gt;Great!&lt;/em&gt; As I know in Shanghai always traffic jam, then I quickly went to take a taxi to my Renaissance Hotel. It took 2.5 hours to reach Renaissance Shanghai Zhongshan Park Hotel (&lt;em&gt;A great Hotel&lt;/em&gt;), and paid for CNY 197 (taxi). I did asked from my friends and know that usually take around an hour plus from airport to hotel and around CNY 150 ~ 190, but if traffic jam then it will be same as my case or more. All the way from Shanghai Pudong Airport to Renaissance Hotel, I told you the people in Shanghai drive like crazy, and really scare me. Next time better take Maglev (very fast train and only take around 6 ~ 7 minutes reach 龙阳路 Longyang Road from Shanghai Pudong Airport, then we can take LRT line 2 to other places, and is just opposite the building).&lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;Shanghai is a big city, and a lot of giant and beautiful buildings, and a lot of cars too. One important point is the Shanghai transportation is well developed and convenient, just like Singapore. You can get a taxi easily, take LRT to many places, and the bus here is quite clean too. Only the people here still have a lot of space to grow and learn. The people in Singapore or Japan are more polite even they live in those big cities compare Shanghai. I really hope the people here can improve on their attitude and behavior as much as they can in order to compete with other countries and cities. The city image is not only from environment only, a good place to work or live is related to the culture and the people living style too. &lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;So, I think to have a great and successful Shanghai World Expo 2010 event, is not only need to renovate the buildings, beauty the city, minimize traffic jam to improve on transportation services, and there is one important key area that is need to improve the quality of their citizens living style and culture as well. I like Xiamen people, they are nice and friendly, and really provide good services in restaurants, shopping centers, stores, hotels, and even the taxi driver. &lt;em&gt;Xiamen is quite similar to Penang, but it develop faster than Penang now! Government play a good role!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;I took a lot of photos in Shanghai using my Nokia 6120 classic (image quality not good), and visited few famous shopping places, went to visit the house with agents to know the prices and environment, tried many restaurants and local food, checked on the education info / school prices and courses, checked the necessity daily or monthly used product prices in Zhongshan Park Carrefour, visited two big wet markets, went to zhongshan Park, and a lot more. Really very busy for that few days in Shanghai in order to get know more about Shanghai beside a lot of meetings in the office or hotel, and I will share to my friends and post it in my blog later.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;If everything ok to move, and at the time China government still block those famous websites and I can’t access to my this Google blog, then I will use the new Baidu Jasswin blog &lt;/em&gt;&lt;a href="http://hi.baidu.com/jasswin"&gt;&lt;em&gt;http://hi.baidu.com/jasswin&lt;/em&gt;&lt;/a&gt;&lt;em&gt; that I registered it in Shanghai Hotel last week to share my new life and experience moving forward. If I have chance to access the Google Blogger, then will copy back to this my original blog space. Now, I still can access it in my country !!! :)&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;As For Now! Shanghai! A Place To Work But Not For Long-Term Living! Future Not Sure!&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-1031978507867805545?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/lK2Xakvp77M" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/1031978507867805545/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=1031978507867805545&amp;isPopup=true" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/1031978507867805545?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/1031978507867805545?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/lK2Xakvp77M/first-time-come-to-shanghai.html" title="First Time Come to Shanghai" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/_KlMNPMnIRbE/SvRQyrj7FII/AAAAAAAAA7M/TXZujUAWnBw/s72-c/30102009%28018%29_thumb%5B3%5D.jpg?imgmax=800" height="72" width="72" /><thr:total>2</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/11/first-time-come-to-shanghai.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0YCSHs8cSp7ImA9WxNVFEs.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-3705386480665339421</id><published>2009-10-25T16:59:00.001+08:00</published><updated>2009-10-25T16:59:29.579+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-25T16:59:29.579+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Software" /><title>Skype Full Download Offline Installer</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/tzzTGi938JLzkrcMRJSf_2j-UKs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tzzTGi938JLzkrcMRJSf_2j-UKs/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/tzzTGi938JLzkrcMRJSf_2j-UKs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tzzTGi938JLzkrcMRJSf_2j-UKs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/SuQTbIkaybI/AAAAAAAAA7A/G_MwhSQMiR8/s1600-h/Skype%20Full%20Download%20Offline%20Installer%5B3%5D.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Skype Full Download Offline Installer" border="0" alt="Skype Full Download Offline Installer" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SuQTcKVYerI/AAAAAAAAA7E/xnt7rpd5A7c/Skype%20Full%20Download%20Offline%20Installer_thumb%5B1%5D.jpg?imgmax=800" width="150" height="325" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;All this while I am using the MSN, Yahoo Messenger and Google Talk to talk to my friends from different countries, and due to certain policy, and some of the country or their office not able to use the MSN, Yahoo Messenger or Google Talk, so that last few days we seek for another alternative solution, then tested a great tool is &lt;strong&gt;Skype&lt;/strong&gt;. To download the Skype is very easy, and just need to search from Google for Skype download, then you can get it from Skype official website to download the mini installer, but not a full download copy. Most of the office are blocking us to install it using mini installer through the proxy, so we need to use the full copy of Skype Installer.&lt;/p&gt;  &lt;p&gt;If you want to distribute for your friends with standalone full version so called offline Skype full installer, then you can refer to below link to download it. During installation or after setup, we can change the display language just using one button (under Tools –&amp;gt; Change Language), example change from English to Chinese, or other language that you preferred. Simple, and easy to use.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Skype Official site mini download installer (for Windows version) link: &lt;a href="http://www.skype.com/intl/en/download/skype/windows/"&gt;Skype for Windows&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Skype full download installer (Standalone Offline version) link: &lt;a href="http://download.skype.com/partner/trackable299/SkypeSetupFull.exe"&gt;Skype Full Installer&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;*Note: After installed, you can click on ‘Help’ –&amp;gt; ‘Check for Updates’ to download and install the latest Skype version for more features and bug fixed.&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;When I try to use the Skype to call my friends from China, Taiwan, and US, the quality is fantastic, and just now I installed it in another computer to try it out within the same network. Wow, just same as what we are using the normal phone, and the quality really good.&lt;/p&gt;  &lt;p&gt;I will start ask my friends use the Skype now, and it is not only save money if you want to talk to someone who has the Internet access, and even we can buy the Skype credit to call to another normal circuit phone or Mobile phone around the world. We can &lt;a href="http://www.skype.com/intl/en/shop/"&gt;buy the Skype credit&lt;/a&gt; online though Credit Card or PayPal account. It really proved that the VoIP (Voice over IP) is get improve a lot compare to last few years back.&lt;/p&gt;  &lt;p&gt;I believe the ISP (Internet Service Provider) already established their service with Mobile Service Providers to reduce the cost using VoIP, and once the International Infrastructure backbone upgraded to 10GB bandwidth across countries, then by that time we can talk to our friends face to face using this type of tool like real time performance through cam.&lt;/p&gt;  &lt;p&gt;Skype not only support Windows (including the Windows 7) OS, and we can use it on Mac OS, Linux operating system, and even we can download it into Mobile phone like iPhone, Nokia N8x series, or other type of Windows Mobile based phone. Skype already partnered with a lot of Service Provider to provide a lot of great services, and it really benefit to us. Daily, there are more than million of Skype users are using Skype at the same time, but they still can maintain the quality of the service. &lt;em&gt;Skype, Good Job!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Skype Offline Full Download! Ease for Distribution!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-3705386480665339421?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/rO4iVSzTw2g" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/3705386480665339421/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=3705386480665339421&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/3705386480665339421?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/3705386480665339421?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/rO4iVSzTw2g/skype-full-download-offline-installer.html" title="Skype Full Download Offline Installer" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/_KlMNPMnIRbE/SuQTcKVYerI/AAAAAAAAA7E/xnt7rpd5A7c/s72-c/Skype%20Full%20Download%20Offline%20Installer_thumb%5B1%5D.jpg?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/10/skype-full-download-offline-installer.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C04GSXk_fCp7ImA9WxNVEEg.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-9027012773111363429</id><published>2009-10-20T23:18:00.001+08:00</published><updated>2009-10-20T23:18:48.744+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-20T23:18:48.744+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="health" /><title>Many reasons for us to stop Smoking</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Z7oOE7jw95Rs0eFBwUnV3JzwuDQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Z7oOE7jw95Rs0eFBwUnV3JzwuDQ/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/Z7oOE7jw95Rs0eFBwUnV3JzwuDQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Z7oOE7jw95Rs0eFBwUnV3JzwuDQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Malaysia have been increased the price for the cigarette for many times since last two years, the purpose is to reduce the rate of smokers, and put in the control / policy for the advertisement and today we won’t see the cigarette advertisement in most of the media channels.&lt;/p&gt;  &lt;p&gt;I have been took the SALEM for many years, and yesterday I have to pay RM9.30 for 1 pack. Today, I am start thinking that is it the right time to stop smoking now. As I read one article many years before, and know that if we stop smoke before age 35 years old, then should not have huge impact to our health. To stop smoking, it really need to put in a lot of effort, as I did try it before and stop smoking for a year in last few years back till I joined one of the IT solution company then start smoking again till now.&lt;/p&gt;  &lt;p&gt;Few of my friends did try to stop smoking as well, but after few weeks or months, then they start smoke again, because of friends. This is one of the key show stopper for most of the people, so I am thinking that if I want to stop smoking, then mean that I have to learn how to reject from my friend, but still go out with them, or follow them to smoking area, and even in clubbing time without smoke. Sound like very difficult!&lt;/p&gt;  &lt;p&gt;My friend did ask me why am I like to smoke, and usually I did ask myself too, but I don’t have a good reason I need to smoke, but in other side, I am really care my health now, as after certain age, most of the people start look for better health, and save more money. My answer always is I don’t know, then my friend ask to stop since without any reason to smoke, and can save a lot of money a year too. I believe a lot of people has the same answer too, as they can’t find a good reason for the smoking, and how smoke can help them. They are your good friends if they advise you stop smoking!&lt;/p&gt;  &lt;p&gt;In Malaysia, almost every box of cigarette printed with various type of cancel pictures to advise people stop to smoke, and I total agree this is a good solution as I am one of the smoker start think about health after look at the picture every time I smoke. At the same time, I believe tourist will have the same concern too, as I got a lot of feedback from our friends that other countries didn’t implement this. It really make them stop buy the cigarette in Malaysia, but some of them will buy from the Airport duty free store before enter to our country.&lt;/p&gt;  &lt;p&gt;There are many reasons for us to stop smoking, and it is not only help ourselves and even good for our family health. I won’t say how it benefit us, and we just simply search from Google or Yahoo then will know all of them. The most important thing now is you need to ask yourself why you want to stop smoking, how confidence you can make it and when you want to start? If you don’t have answer now, then never mind and try to ask those questions every morning until you know it, then only you can really stop smoking without any influence from your friends and environment.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Stop Smoking! Better Health! Save Money!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;&amp;#160;&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-9027012773111363429?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/PX61lvVFBQg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/9027012773111363429/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=9027012773111363429&amp;isPopup=true" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/9027012773111363429?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/9027012773111363429?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/PX61lvVFBQg/many-reasons-for-us-to-stop-smoking.html" title="Many reasons for us to stop Smoking" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>3</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/10/many-reasons-for-us-to-stop-smoking.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkQNQH8zcSp7ImA9WxNWGEo.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-2821783407935158297</id><published>2009-10-18T21:59:00.001+08:00</published><updated>2009-10-18T21:59:51.189+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-18T21:59:51.189+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Mobile Phone" /><title>Dell Mini Smartphone compete Apple iPhone &amp; Nokia?</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/xGamVDFt7C7TkbV_Hg4Vz_DELKk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xGamVDFt7C7TkbV_Hg4Vz_DELKk/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/xGamVDFt7C7TkbV_Hg4Vz_DELKk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xGamVDFt7C7TkbV_Hg4Vz_DELKk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;a href="http://lh6.ggpht.com/_KlMNPMnIRbE/StsfUve0VII/AAAAAAAAA64/aHKK_xYN6vM/s1600-h/Dell%20Mini%20Smartphone%20vs%20iPhone%20and%20Nokia%5B100%5D.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Dell Mini Smartphone vs iPhone and Nokia" border="0" alt="Dell Mini Smartphone vs iPhone and Nokia" src="http://lh4.ggpht.com/_KlMNPMnIRbE/StsfVV3v3CI/AAAAAAAAA68/KV5TOhf7JCU/Dell%20Mini%20Smartphone%20vs%20iPhone%20and%20Nokia_thumb%5B98%5D.jpg?imgmax=800" width="244" height="231" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Dell recently move very fast to expand their business, outsourcing to contract manufacturers, acquired IT services provider Perot Systems for $3.9 billion, and next may be is to launch Dell Mini Smartphone (using Google Android OS) to United State with AT&amp;amp;T mobile network operator early next year based on &lt;em&gt;Wall Street Journal&lt;/em&gt; (WSL) reports. By that time, Dell Mini Smartphone really can compete with major AT&amp;amp;T subscribers Apple iPhone, next Nokia Smartphone still is a BIG question.&lt;/p&gt;  &lt;p&gt;Dell acquired Perot System, so that it able to provide the IT solution service which able to compete with HP, and for the mobile phone market is still a huge opportunity as future most of the people will use the Smartphone rather than carry the Computer Laptops or Netbooks. Because, the famous Smartphone already built in the key applications which people use it every day (i.e. email apps, Internet browsers, music and video players, office used applications like word / excel / powerpoint, PDF viewer, and some famous interact portal like Facebook / Twitter / MySpace, world maps, etc), with Camera / Video recorder features, and most important is 3G or Wireless ready and able to access to Internet anytime anywhere. The Smartphone really convenient than Netbooks in future with more storage capacity and hologram readiness in next few years.&lt;/p&gt;  &lt;p&gt;I believe Dell start sell Mobile Phone, is same as Nokia start on Computer Netbooks marketing strategy, as Apple already has their market share on both, and especially since Apple launched the iPod then follow by iPhone to become a key leader on this daily used technology device company.&lt;/p&gt;  &lt;p&gt;We all can see the recent business trend has change, last few years most of the companies try to invent the new technology by themselves and try to release into market as soon as other competitors to gain the market share. But recent years, those key players already move their focus on the marketing and sales strategies, and outsource the R&amp;amp;D to other companies or merge with well established new technology companies to provide the new services and products to their customers within short period of times.&lt;/p&gt;  &lt;p&gt;By next year, if new Dell Smartphone has more features and functionalities compare to Apple iPhone or Nokia Smartphone with good marketing strategies, then may be it can take over 5 to 10 percents of market share within a year in US to become of one of the famous Mobile phone provider.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Dell Mini Smartphone! Enter Mobile Phone World!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-2821783407935158297?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/m4pYxniSAw8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/2821783407935158297/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=2821783407935158297&amp;isPopup=true" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/2821783407935158297?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/2821783407935158297?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/m4pYxniSAw8/dell-mini-smartphone-compete-apple.html" title="Dell Mini Smartphone compete Apple iPhone &amp;amp; Nokia?" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/_KlMNPMnIRbE/StsfVV3v3CI/AAAAAAAAA68/KV5TOhf7JCU/s72-c/Dell%20Mini%20Smartphone%20vs%20iPhone%20and%20Nokia_thumb%5B98%5D.jpg?imgmax=800" height="72" width="72" /><thr:total>2</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/10/dell-mini-smartphone-compete-apple.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cERXw_fCp7ImA9WxNWGUk.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-1241172819562081216</id><published>2009-10-12T00:32:00.001+08:00</published><updated>2009-10-19T16:30:04.244+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-19T16:30:04.244+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Games" /><title>Facebook Cafe World Tips and Tricks</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/uduvHDJVPcL8LYy1Scx5rE-1lj4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/uduvHDJVPcL8LYy1Scx5rE-1lj4/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/uduvHDJVPcL8LYy1Scx5rE-1lj4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/uduvHDJVPcL8LYy1Scx5rE-1lj4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/StIIlLllsJI/AAAAAAAAA6k/iRNRczyn-1A/s1600-h/Cafe%20World%20Logo%5B2%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Cafe World Logo" border="0" alt="Cafe World Logo" src="http://lh6.ggpht.com/_KlMNPMnIRbE/StIIlyGAB1I/AAAAAAAAA6o/st4o9ct-F2g/Cafe%20World%20Logo_thumb.jpg?imgmax=800" width="244" height="140" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;I am believe you may like the Facebook Cafe World game if you are playing the Restaurant City for after few months. You can earn coins as tips from your friends in Cafe World which is not same as Restaurant City. I saw most of my friends start play the Cafe World, and I just start try to play it and not bad, is quite fun and has different technique too. Lets share with you what I found, then we can play it together to pass time.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Facebook Cafe World Tips and Tricks:-&lt;/strong&gt;&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;This is not same as Restaurant City, so you can’t use the island table design in Cafe World, as they people not clever enough move in your round table. Mean time, you can put your table like class room design first, and once I found a better idea, then will share with you.&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Cafe World Table" border="0" alt="Cafe World Table" src="http://lh3.ggpht.com/_KlMNPMnIRbE/StIImoQi5UI/AAAAAAAAA6s/pTDFXxt906w/Cafe%20World%20Table_thumb.jpg?imgmax=800" width="244" height="191" /&gt; &lt;/li&gt;    &lt;li&gt;If you are not able to play Cafe World all the time, then you need to check when is your next available time to play, then choose the right dish in your cookbook to match your time based on the ‘Ready in:’. &lt;/li&gt;    &lt;li&gt;In order to gain more money, one of the important point is you need to keep on open your Cafe World without close it to ramp your Cafe World rank, so that every customer give you good feedback and attract more customer to your Cafe Restaurant. &lt;/li&gt;    &lt;li&gt;If you want to speed up your level, then you need to spend more time to play game and choose the dish with 5 mins or 15 mins one, although you get much coins, but you gain Cafe experience point faster. &lt;/li&gt;    &lt;li&gt;You can get reward if you always visit your friends Cafe shop, you will gain extra 5 cafe points and 20 coins. So, in another word is try to invite your friends to play the Cafe World to be your Cafe World neighbor, then if one day you can visit more than 50 friends, the you will increase your Cafe World Level faster to get next level up.&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/StIInd18mII/AAAAAAAAA6w/5tN4dFPCsuE/s1600-h/Cafe%20World%20Reward%5B2%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Cafe World Reward" border="0" alt="Cafe World Reward" src="http://lh3.ggpht.com/_KlMNPMnIRbE/StIIoMFciII/AAAAAAAAA60/7CvTpIBF0Co/Cafe%20World%20Reward_thumb.jpg?imgmax=800" width="244" height="157" /&gt;&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;You need to expand your Cafe size, so that you can put more tables to serve your Cafe customer to gain more coins, but you need to remember to put your tables near your counters, and counters near the stoves, and try to keep your waiter and chef movement less than 8 steps for better performance. &lt;/li&gt;    &lt;li&gt;One important point is before you use your gift to get more coins, lets make sure all your tables full with customers first then only use it, so that you won’t waste your gift for just 1 or 2 customers with less return. If not just keep your gift first, until you expand your Cafe to bigger size. &lt;/li&gt;    &lt;li&gt;If you have a lot of money, then you can purchase the dish to cook, then delete it again, and buy then cook again. for example, you can buy pizza for 5 hours using 400 coins, then each time you buy and cook, you can gain at least 21 exp, then you delete it and buy again. Using this method, you can gain a lot of experience within short time to next level.&lt;/li&gt;    &lt;li&gt;I did mention use the class room table design is good way to attract more customer, but the first row near your counter can leave middle empty space so that your waiters can pass through it to next row of table. If you want to use the island table design, then don’t close your table with your counter, you can leave both end table a space between your counter and your island table design.&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;I always say the time management is very important, as I don’t want my friends put too much time to play game without take care other things, especially your family and try not to play it during office office, unless is during lunch time then should be reasonable.&lt;/p&gt;  &lt;p&gt;I do write some of the Facebook games tips and tricks, and you can refer to my ‘Games’ category.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Facebook Cafe World! Lets Call Your Friends@Cafe World!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-1241172819562081216?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/xNK-RHEJKbU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/1241172819562081216/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=1241172819562081216&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/1241172819562081216?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/1241172819562081216?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/xNK-RHEJKbU/facebook-cafe-world-tips-and-tricks.html" title="Facebook Cafe World Tips and Tricks" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/_KlMNPMnIRbE/StIIlyGAB1I/AAAAAAAAA6o/st4o9ct-F2g/s72-c/Cafe%20World%20Logo_thumb.jpg?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/10/facebook-cafe-world-tips-and-tricks.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUIHQX85eCp7ImA9WxNXGEk.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-4484440743043147496</id><published>2009-10-06T23:38:00.001+08:00</published><updated>2009-10-06T23:38:50.120+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-06T23:38:50.120+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Food" /><title>Penang Restaurant – Hard Rock Hotel Penang Starz Diner</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/sOPZa_3tPoW5yIXNYOANhxa2cZo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sOPZa_3tPoW5yIXNYOANhxa2cZo/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/sOPZa_3tPoW5yIXNYOANhxa2cZo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sOPZa_3tPoW5yIXNYOANhxa2cZo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/SstkSmgeTdI/AAAAAAAAA5M/rrpdWMl1Hi8/s1600-h/Hard%20Rock%20Hotel%20Penang%5B3%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Hard Rock Hotel Penang" border="0" alt="Hard Rock Hotel Penang" src="http://lh6.ggpht.com/_KlMNPMnIRbE/SstkTbCti2I/AAAAAAAAA5Q/peSZ_KzGfmU/Hard%20Rock%20Hotel%20Penang_thumb%5B1%5D.jpg?imgmax=800" width="244" height="245" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Last few days, we had team lunch at Hard Rock Hotel Penang Starz Diner restaurant. We choose Hard Rock Hotel Starz Diner as a lot of people promote the food is good in the Internet, especially the International cuisine buffet dinner, comfortable environment, able to view the Starz Diner chefs to cook and serve, and the price is reasonable compare to other expensive restaurants in other Penang Hotel.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/SstkUNiI_pI/AAAAAAAAA5U/kfee661F4F0/s1600-h/Hard%20Rock%20Hotel%20Penang%20Guitar%5B2%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Hard Rock Hotel Penang Guitar" border="0" alt="Hard Rock Hotel Penang Guitar" src="http://lh3.ggpht.com/_KlMNPMnIRbE/SstkUl0BtbI/AAAAAAAAA5Y/ySa_4GjkGqE/Hard%20Rock%20Hotel%20Penang%20Guitar_thumb.jpg?imgmax=800" width="184" height="244" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;One of our colleague called Hard Rock Hotel Penang and requested for the seat reservation, the the receptionist told him is fully booked. So, I checked from Internet and found another contact then called Hard Rock Hotel Penang again, then request them to transfer the call to Starz Diner Restaurant. The lady told me their restaurant is not fully booked, and they do have buffet dinner (International cuisine) on Friday and Saturday. The price per pax is RM78++ (half price for kids). So, I requested her to send me the buffet menu, some photos, contact, etc and provided my email address, and she said will send to me in another half an hour before lunchtime. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/SstkVdB-PgI/AAAAAAAAA5c/HmmHCWIw3MQ/s1600-h/Hard%20Rock%20Penang%20Pool%20Drink%5B4%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Hard Rock Penang Pool Drink" border="0" alt="Hard Rock Penang Pool Drink" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SstkWN2p8QI/AAAAAAAAA5g/qFGYL1vn9no/Hard%20Rock%20Penang%20Pool%20Drink_thumb%5B2%5D.jpg?imgmax=800" width="250" height="190" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Around 3pm on that day, I give them a call again, and they said will send to me as they have problem on the email system. Until today, I didn’t receive any email from them, but we already tried the food in Starz Diner restaurant, and is not the buffet dinner.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/SstkW4p1MyI/AAAAAAAAA5k/3RSt-5gUEm0/s1600-h/Hard%20Rock%20Starz%20Diner%5B3%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Hard Rock Starz Diner" border="0" alt="Hard Rock Starz Diner" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SstkXgUC2iI/AAAAAAAAA5o/ksuEEu_R3Ao/Hard%20Rock%20Starz%20Diner_thumb%5B1%5D.jpg?imgmax=800" width="264" height="204" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;We enjoyed our time in Starz Diner restaurant, had some fun activities in Hard Rock Hotel Penang, the food presentation is great, but the taste… ai… below some feedbacks after lunch..&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/SstkYbx4LkI/AAAAAAAAA5s/z-E1AZhy0L0/s1600-h/Hard%20Rock%20Starz%20Diner%20Table%5B6%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Hard Rock Starz Diner Table" border="0" alt="Hard Rock Starz Diner Table" src="http://lh6.ggpht.com/_KlMNPMnIRbE/SstkZH9WFbI/AAAAAAAAA5w/HGBIsxaLmPk/Hard%20Rock%20Starz%20Diner%20Table_thumb%5B2%5D.jpg?imgmax=800" width="278" height="331" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Feedback 1: The FOOD looks yummy…&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;div style="padding-bottom: 0px; padding-left: 0px; width: 364px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:66721397-FF69-4ca6-AEC4-17E6B3208830:9051a7e6-e7ea-47e0-adb7-e40e09e31b29" class="wlWriterEditableSmartContent"&gt;&lt;a style="border:0px" href="http://cid-12a92578762716d2.skydrive.live.com/redir.aspx?page=browse&amp;amp;resid=12A92578762716D2!141&amp;amp;ct=photos&amp;amp;authkey=CVnQkYZ!SLo%24"&gt;&lt;img style="border:0px" alt="View Hard Rock Hotel Penang Starz Diner Lunch" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SstkaWOch-I/AAAAAAAAA50/F7w84whBHD0/InlineRepresentation79879c0c-f2e8-43cf-b190-53e0e73de77e%5B5%5D.jpg?imgmax=800" /&gt;&lt;/a&gt;&lt;div style="width:360px;text-align:right;" &gt;&lt;a href="http://cid-12a92578762716d2.skydrive.live.com/redir.aspx?page=browse&amp;amp;resid=12A92578762716D2!141&amp;amp;ct=photos&amp;amp;authkey=CVnQkYZ!SLo%24"&gt;View Full Album&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Feedback 2: Vegetarian set is not vegetarian food…&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh6.ggpht.com/_KlMNPMnIRbE/SstkbA_GE4I/AAAAAAAAA54/3J7Fg2vZq2I/s1600-h/Hard%20Rock%20Starz%20Diner%20Vegetarian%5B2%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Hard Rock Starz Diner Vegetarian" border="0" alt="Hard Rock Starz Diner Vegetarian" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sstkb2JSH9I/AAAAAAAAA58/lTCUQEWZx9M/Hard%20Rock%20Starz%20Diner%20Vegetarian_thumb.jpg?imgmax=800" width="244" height="184" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Feedback 3: Taste like rubber…&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/SstkciW6ZFI/AAAAAAAAA6A/1oYSgIXuKsg/s1600-h/Hard%20Rock%20Starz%20Diner%20Meat%5B2%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Hard Rock Starz Diner Meat" border="0" alt="Hard Rock Starz Diner Meat" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SstkdKHoA9I/AAAAAAAAA6E/K9N_pN7ikDE/Hard%20Rock%20Starz%20Diner%20Meat_thumb.jpg?imgmax=800" width="244" height="184" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Feedback 4: Not fresh and Sushi King one is better, only 12+ …&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/Sstkdy_d4xI/AAAAAAAAA6I/NbWl75_HBVg/s1600-h/Hard%20Rock%20Starz%20Diner%20Salmon%5B2%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Hard Rock Starz Diner Salmon" border="0" alt="Hard Rock Starz Diner Salmon" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SstkevO291I/AAAAAAAAA6M/COti_SrKgqY/Hard%20Rock%20Starz%20Diner%20Salmon_thumb.jpg?imgmax=800" width="244" height="184" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Feedback 5: Price not equal to food quality…&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh6.ggpht.com/_KlMNPMnIRbE/SstkfQlFkSI/AAAAAAAAA6Q/65u5OU_e2xQ/s1600-h/Hard%20Rock%20Starz%20Diner%20Food%20Quality%5B2%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Hard Rock Starz Diner Food Quality" border="0" alt="Hard Rock Starz Diner Food Quality" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SstkgEJ5XyI/AAAAAAAAA6U/1LcW0dRxSww/Hard%20Rock%20Starz%20Diner%20Food%20Quality_thumb.jpg?imgmax=800" width="244" height="184" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Feedback 6: Is it same chef for buffet dinner? if same then better not to try, 78++ not cheap… &lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sstkg-NgpjI/AAAAAAAAA6Y/osAzGSm5bcc/s1600-h/Hard%20Rock%20Starz%20Diner%20Fish%5B5%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Hard Rock Starz Diner Fish" border="0" alt="Hard Rock Starz Diner Fish" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sstkhr4L6hI/AAAAAAAAA6c/8qiIIlI-1a0/Hard%20Rock%20Starz%20Diner%20Fish_thumb%5B1%5D.jpg?imgmax=800" width="244" height="184" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;May be still new for them and they need time to improve. I am planning to try the Starz Diner buffet dinner with my family then buy Hard Rock T-shirt, as there are still a lot of people give the good feedback in the Internet. I really hope Starz Diner can gather more feedbacks and comments from their customers then improve it ASAP, as there are many great restaurants in Penang and a lot of choices too.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:66721397-FF69-4ca6-AEC4-17E6B3208830:23c02541-e77e-47cc-a5e2-2e4ea38996ce" class="wlWriterEditableSmartContent"&gt;&lt;a style="border:0px" href="http://cid-12a92578762716d2.skydrive.live.com/redir.aspx?page=browse&amp;amp;resid=12A92578762716D2!145&amp;amp;ct=photos&amp;amp;authkey=cejCP2Ichdg%24"&gt;&lt;img style="border:0px" alt="View Hard Rock Hotel Penang" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SstkiCcl-MI/AAAAAAAAA6g/uO0aaNRIVGg/InlineRepresentation02627543-acd1-4517-9306-991f8d6c6dc7%5B17%5D.jpg?imgmax=800" /&gt;&lt;/a&gt;&lt;div style="width:421px;text-align:right;" &gt;&lt;a href="http://cid-12a92578762716d2.skydrive.live.com/redir.aspx?page=browse&amp;amp;resid=12A92578762716D2!145&amp;amp;ct=photos&amp;amp;authkey=cejCP2Ichdg%24"&gt;View Full Album&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Penang Restaurant Name: Hard Rock Hotel Penang - Starz Diner&lt;/p&gt;  &lt;p&gt;Hotel Address: Batu Ferringhi Beach, 11100, Penang, Malaysia&lt;/p&gt;  &lt;p&gt;Hotel Contact Number: 604-881 1711 (request transfer to Starz Diner)&lt;/p&gt;  &lt;p&gt;Hotel Fax Number: 04-881 2155&lt;/p&gt;  &lt;p&gt;Starz Diner Opening Hours:    &lt;br /&gt;6.30am – 11.00pm, Sunday – Thursday     &lt;br /&gt;6.30am – 4.00am, Friday - Saturday&lt;/p&gt;  &lt;p&gt;Website: &lt;a title="http://penang.hardrockhotels.net/starz-diner.php" href="http://penang.hardrockhotels.net/starz-diner.php"&gt;http://penang.hardrockhotels.net/starz-diner.php&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Hard Rock Hotel Penang Starz Diner! Need Improvement!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;font size="1"&gt;&lt;em&gt;Noted: Above pictures are captured by Keith Tan who love to take photo, enjoy food and make joke.&lt;/em&gt;&lt;/font&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-4484440743043147496?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/naLJP3z994Y" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/4484440743043147496/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=4484440743043147496&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/4484440743043147496?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/4484440743043147496?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/naLJP3z994Y/penang-restaurant-hard-rock-hotel.html" title="Penang Restaurant – Hard Rock Hotel Penang Starz Diner" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/_KlMNPMnIRbE/SstkTbCti2I/AAAAAAAAA5Q/peSZ_KzGfmU/s72-c/Hard%20Rock%20Hotel%20Penang_thumb%5B1%5D.jpg?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/10/penang-restaurant-hard-rock-hotel.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUYHSHs7cCp7ImA9WxNXFko.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-4093785041439512809</id><published>2009-10-05T00:18:00.001+08:00</published><updated>2009-10-05T00:18:59.508+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-05T00:18:59.508+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Mobile Phone" /><category scheme="http://www.blogger.com/atom/ns#" term="My Opinion" /><title>Half of AT&amp;T’s iPhone Users wish to change Provider if possible</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fgnYPjm49dZYo3tTcmyryzeMuy0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fgnYPjm49dZYo3tTcmyryzeMuy0/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/fgnYPjm49dZYo3tTcmyryzeMuy0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fgnYPjm49dZYo3tTcmyryzeMuy0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/SsjK7WO3NlI/AAAAAAAAA5E/IwNl8sXbSgg/s1600-h/AT%26T%20Iphone%20Users%5B3%5D.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="AT&amp;amp;T Iphone Users" border="0" alt="AT&amp;amp;T Iphone Users" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SsjK8ajGITI/AAAAAAAAA5I/-QOHvLLGyrQ/AT%26T%20Iphone%20Users_thumb%5B1%5D.jpg?imgmax=800" width="244" height="219" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;AT&amp;amp;T has been working with Apple for quite sometime, and most of the smartphone AT&amp;amp;T customers are using the Apple iPhone. This is definitely increase the sales for these both giant companies, and Apple iPhone already become one of the best smartphone used by a lot of people. But recently the CFI Group survey results show that the half of the AT&amp;amp;T’s iPhone users wish to change to another service provider if possible, in order to have a stable 3G network or wireless service in United State.&lt;/p&gt;  &lt;p&gt;The reports show that most of the AT&amp;amp;T subscribers not satisfy their service, and especially they always have the problem to connect to 3G network or wireless service, or the speed of Internet is too slow. They do complained a lot to AT&amp;amp;T service center, but they always not admit is their problem. In another way, they said the company plan to spend number of billion dollar to expand and upgrade their broadband infrastructure to provide better service to their customers and get ready for the business grow.&lt;/p&gt;  &lt;p&gt;Another point of view, today with the great iPhone features and applications / games developed for iPhone, it really change a way for people to use the Internet rather to carry another computer laptops or Netbooks on the road, as it is really convenient and user friendly. Possible this is one of the reason that million of smartphone users access the Internet at the same time and generate huge network activities and cause the AT&amp;amp;T network not stable.&lt;/p&gt;  &lt;p&gt;So far in U.S., AT&amp;amp;T is the only one offering the iPhone with the existing deal with Apple. If they are under estimate their competitors capability, and with the bad customer satisfaction, then AT&amp;amp;T may loss their customers within these few years. After they spend so much on their infrastructure in next 1 or 2 years, then the return may take longer if the customers switch to other service provider, and the competitors really provide good service to their subscribers.&lt;/p&gt;  &lt;p&gt;There are a lot of programs available in the Internet for people to download and crack the Apple iPhone firmware in order to support other mobile service provider SIM card. Some of the mobile phone retailer provide this type of service to their customer, even they have a special card to put between SIM card and the phone socket to crack the system to support other mobile service provider network. If the user has different lines (subscribe from different providers or from his / her family or friends), then they may try it out to decide whether they need to change or not.&lt;/p&gt;  &lt;p&gt;So, I believe once the contract end for the existing AT&amp;amp;T’s iPhone subscribers, then they may switch to other mobile service provide if AT&amp;amp;T haven’t upgrade and improve their 3G network or wireless infrastructure within next 12 months, and customer still experience on the slow network traffic or intermittent service drop under AT&amp;amp;T network coverage.&lt;/p&gt;  &lt;p&gt;Before the situation turn to very bad, and really hope that AT&amp;amp;T able to come out a solution or extra free service to retain their customers to increase their satisfaction first in order to buy time for them to upgrade and improve their network coverage and broadband service. &lt;em&gt;AT&amp;amp;T smart decision make billion!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;AT&amp;amp;T’s iPhone Users! Be Patient!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-4093785041439512809?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/wx9VKG7nfgs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/4093785041439512809/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=4093785041439512809&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/4093785041439512809?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/4093785041439512809?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/wx9VKG7nfgs/half-of-at-iphone-users-wish-to-change.html" title="Half of AT&amp;amp;T’s iPhone Users wish to change Provider if possible" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/_KlMNPMnIRbE/SsjK8ajGITI/AAAAAAAAA5I/-QOHvLLGyrQ/s72-c/AT%26T%20Iphone%20Users_thumb%5B1%5D.jpg?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/10/half-of-at-iphone-users-wish-to-change.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0UBRngyeyp7ImA9WxNXFUU.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-3667827352345693051</id><published>2009-10-04T01:00:00.001+08:00</published><updated>2009-10-04T01:00:57.693+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-04T01:00:57.693+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="health" /><title>Some Viagra has Side Effects and look for Impotence Treatment</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Ap6oumdrTsZrRZ__ck_52W06mXo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Ap6oumdrTsZrRZ__ck_52W06mXo/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/Ap6oumdrTsZrRZ__ck_52W06mXo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Ap6oumdrTsZrRZ__ck_52W06mXo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/SseDQxUVI_I/AAAAAAAAA40/zHHKw14o5do/s1600-h/Viagra%5B15%5D.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Viagra" border="0" alt="Viagra" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SseDSCI4_MI/AAAAAAAAA44/Ckh10ETByOU/Viagra_thumb%5B13%5D.jpg?imgmax=800" width="244" height="215" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;I just get to know more on Viagra side effects yesterday from my friend (lets call him Doctor Tan) for the Mooncake Festival gathering. Thanks for the ‘moon cake’ for me to learn more for the Viagra side effects, as you may not know that if take too much moon cake with wine, and curry chicken at the same time, then it will have something like Viagra effect, but it won’t have any side effects compare to Viagra. Then I ask few questions, as I read the sexual dysfunctions article before. &lt;em&gt;Doctor Tan told us this possible is one of the impotence treatment. Ha ha ha…&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;Few of us laugh many times when we talked about this Viagra topic, and no girl really want to near us for that half an hour. Doctor Tan told us recently he got few patients took too much Viagra and caused them got side effects. Most of them get the Viagra from illegal market or online store without consult doctor, and usually they got advise from friends, then just bought it. Serious one have to take a week off and rest at home, then get series of treatments and many type of medicines from Doctor. At the end, they have to spend more money to recover and get back their health, and told the Doctor how much Viagra he took, when to use it, what type of symptoms after take the Viagra, even they have to tell the Doctor the whole progress before / after took the Viagra.&lt;/p&gt;  &lt;p&gt;They’re not feel shame to look for Doctor when they are having the Viagra side effects, then I think why don’t you consult your Doctor to introduce the right Viagra for you, or where to get the recommended or proven good Viagra without side effects, or seek for better impotence treatment. This is serious, and don’t simply listen from your friends then just use it, unless / at least your friend is Doctor.&lt;/p&gt;  &lt;p&gt;Doctor Tan told us is not everyone suitable to take Viagra, and Viagra has different categories, different ingredients, and different grades vs prices from the suppliers. Some people don’t have the sexual dysfunction problem, but they take Viagra to improve their performance for the sports activities, or even some countries the Doctor choose and use the right Viagra for the altitude sickness. &lt;em&gt;We never hear this before until Doctor Tan told us yesterday!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;Below are few questions and answers that we discussed yesterday night, and I think the best answer is you consult your Doctor who you can trusted.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;When is the best time to take Viagra before lovemaking?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Doctor Tan told us the best is before 1 ~ 3 hours, and we need to have basic sexual stimulation (physical touch or logical imagination) then it will help to make a men erection.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;What is the possible Viagra side effects?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Doctor Tan told us, most of the men took Viagra has mild headache after few hours, and some of them have stomach pain, body turn warm, thirst, or worse case is their muscle very pain and can’t relax, visual got problem, vomiting, itching skin, diarrhea, then need to seek for treatment from Doctor.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;How much for the Viagra in the market?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Doctor Tan told us those recommended Viagra price is around MYR 20 ~ 60, and is depend on the usage or our health situation.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;What type of food not to mix with Viagra?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Doctor Tan told us when we take the Viagra before 4 hours or within 12 hours, try avoid to take too much of bacon or hot dogs (especially cured meats), as certain chemical from Viagra and those food may kill us if we are weak.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Can we take Viagra everyday?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Doctor Tan told us there are certain type of Viagra that is save for us to use it daily, but need to control on number of dose.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;What type of food combine with Viagra for more effectiveness?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Doctor Tan told us try to get more wheat, milk and nut, as this type of food contains Vitamin E, and is good for our blood circulation. The best is consult doctor first if we plan to take Viagra with Vitamin E food, as is not everyone is suitable and depend on our health.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Can I buy Viagra from online store without consult Doctor?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Doctor Tan told us we can buy the Viagra from online, but need to check through those companies profile and history, or can send them an email to ask for detail. The best still is consult from our Doctor, and he will guide us where to get the Viagra and which type of Viagra brand is suitable for us.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;What need to avoid for better performance if take the Viagra?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Doctor Tan told us try to avoid smoke and alcohol, have a good rest, and without heavy exercise before sex.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Who can not take the Viagra?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Doctor Tan told us if we have any records of stroke, heart diseases, high blood pressure, asthma, migraine headache, anemia then we try not to take the Viagra and better look for the natural impotence treatment.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;This is really a good session with my friends during this Mid-Autumn Festival and learn a lot from them, and usually we won’t get so much information without a friend who is Doctor. We do make a lot of jokes during that time, even talk about the sex toys available in many countries or online store, and they are really open-minded, but not our country. &lt;em&gt;We all laugh and laugh! :)&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Other information:-&lt;/strong&gt;&lt;/p&gt;  &lt;h5&gt;&lt;a href="http://jasswin.blogspot.com/2009/09/understand-more-on-vitamins-for-our.html"&gt;Understand More on Vitamins for Our Health&lt;/a&gt;&lt;/h5&gt;  &lt;h5&gt;&lt;a href="http://jasswin.blogspot.com/2009/09/suffer-from-sexual-dysfunctions.html"&gt;Suffer from Sexual Dysfunctions (Impotence or Loss of Sexual Power)?&lt;/a&gt;&lt;/h5&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Some Viagra has Side Effects! Look for Better Impotence Treatment!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-3667827352345693051?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/PPrpYBX2inU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/3667827352345693051/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=3667827352345693051&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/3667827352345693051?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/3667827352345693051?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/PPrpYBX2inU/some-viagra-has-side-effects-and-look.html" title="Some Viagra has Side Effects and look for Impotence Treatment" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/_KlMNPMnIRbE/SseDSCI4_MI/AAAAAAAAA44/Ckh10ETByOU/s72-c/Viagra_thumb%5B13%5D.jpg?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/10/some-viagra-has-side-effects-and-look.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkUFRXs8cSp7ImA9WxNXFEQ.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-7796912945747035402</id><published>2009-10-02T21:30:00.001+08:00</published><updated>2009-10-02T21:30:14.579+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-02T21:30:14.579+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="general" /><title>Mid-Autumn Festival 2009 with Great Moon Cake &amp; Lantern</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5Vrp8iGNkfg7ZmRBPOdwcorUXok/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5Vrp8iGNkfg7ZmRBPOdwcorUXok/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/5Vrp8iGNkfg7ZmRBPOdwcorUXok/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5Vrp8iGNkfg7ZmRBPOdwcorUXok/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/SsX_oFUbvYI/AAAAAAAAA4I/ywpdXJ3u-FY/s1600-h/image%5B17%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Moon Cake" border="0" alt="Moon Cake" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SsX_tNLWhGI/AAAAAAAAA4Q/PuzKg1TeWLs/image_thumb%5B15%5D.png?imgmax=800" width="184" height="325" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Tomorrow (3/Oct/2009) is Mid-Autumn festival 2009 (中秋節 2009), and there are a lot of people start gather together tonight to have a pre Mid-Autumn festival party to eat and taste the different type of moon cakes, and children will play the lanterns then walk around their house. Actually, we are having the great moon cake (just received it from China Beijing) &amp;amp; play the lanterns now, and at the same time we celebrate birthday for our niece. :)&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/SsX_51QPk8I/AAAAAAAAA4U/nNpnMavgzfI/s1600-h/image%5B26%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Moon Cake" border="0" alt="Moon Cake" src="http://lh6.ggpht.com/_KlMNPMnIRbE/SsX_8JMYz2I/AAAAAAAAA4Y/TVU1iPdv5DI/image_thumb%5B22%5D.png?imgmax=800" width="205" height="212" /&gt;&lt;/a&gt; Mid-Autumn Festival (Moon Festival) is a big day for China, and most of the companies and government departments off from 1/Oct/2009 ~ 8/Oct/2009 as holidays, and there have great celebration like moon cake competition, lantern competition, etc in different area and cities. My friends from Xiamen told me that Moon Festival is more important than Chinese New Year, and that why they do have long holidays. Usually they will gather within these few days for below activities.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Eat different type of moon cakes&lt;/li&gt;    &lt;li&gt;Chit chat with their family and friends outside under the moon&lt;/li&gt;    &lt;li&gt;Play lanterns and light up the candles around their house&lt;/li&gt;    &lt;li&gt;Some people will try the floating sky lanterns&lt;/li&gt;    &lt;li&gt;Tell the ‘Chang E’ (嫦娥) story to their children&lt;/li&gt;    &lt;li&gt;Visit temples&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Same as Penang Autocity, tomorrow there will have a lantern show and celebration (may have lantern competition as well) from around 7pm ~ 11:30pm. So, we plan to have our dinner at Sushi King, then visit the show to get free lantern for our children to play, at the same time they can see various type of lantern design and enjoy the show over there. &lt;em&gt;You can bring your family and friend there to enjoy the Lantern Festival or Mooncake Festival!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/SsYAEjVESSI/AAAAAAAAA4c/Zxrmc_zvAXc/s1600-h/image%5B34%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Lanterns" border="0" alt="Lanterns" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SsYAHPlqO6I/AAAAAAAAA4g/NBjaunqQL5U/image_thumb%5B31%5D.png?imgmax=800" width="198" height="248" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/SsYAN9vBL2I/AAAAAAAAA4k/YJQ62Wi39gU/s1600-h/image%5B54%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Lanterns" border="0" alt="Lanterns" src="http://lh3.ggpht.com/_KlMNPMnIRbE/SsYAQJdw2PI/AAAAAAAAA4o/z3O7-taZ4sQ/image_thumb%5B59%5D.png?imgmax=800" width="209" height="253" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/SsYAV1IVV-I/AAAAAAAAA4s/-UQX8rGRRXE/s1600-h/image%5B58%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Lanterns" border="0" alt="Lanterns" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SsYAZPaVv0I/AAAAAAAAA4w/XlUHnI7tFgA/image_thumb%5B63%5D.png?imgmax=800" width="213" height="400" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Happy Mid-Autumn Festival 2009! Lets Enjoy Moon Cake and Play Lantern!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-7796912945747035402?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/nX9SGAV8YOQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/7796912945747035402/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=7796912945747035402&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/7796912945747035402?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/7796912945747035402?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/nX9SGAV8YOQ/mid-autumn-festival-2009-with-great.html" title="Mid-Autumn Festival 2009 with Great Moon Cake &amp;amp; Lantern" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/_KlMNPMnIRbE/SsX_tNLWhGI/AAAAAAAAA4Q/PuzKg1TeWLs/s72-c/image_thumb%5B15%5D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/10/mid-autumn-festival-2009-with-great.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEYDQnsyeip7ImA9WxNXFEw.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-9201271916281713626</id><published>2009-10-01T23:49:00.001+08:00</published><updated>2009-10-01T23:49:33.592+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-01T23:49:33.592+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="general" /><title>Philippines Flood - Need Your Help and Donation</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/dD8D_uTxiqwwPEhWk_lwPW5WvlY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dD8D_uTxiqwwPEhWk_lwPW5WvlY/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/dD8D_uTxiqwwPEhWk_lwPW5WvlY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dD8D_uTxiqwwPEhWk_lwPW5WvlY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/SsTPhillrNI/AAAAAAAAA4A/Jb0b7gVxaaY/s1600-h/image%5B4%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Philippines Flood" border="0" alt="Philippines Flood" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SsTPjE2IREI/AAAAAAAAA4E/3rLz0QoAs7M/image_thumb%5B2%5D.png?imgmax=800" width="248" height="142" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p align="center"&gt;&lt;font size="1"&gt;People wade in the chest deep floodwater Sunday, Sept. 27, 2009 in suburban Cainta, east of Manila, Philippines (&lt;/font&gt;&lt;font size="1"&gt;Mike Alquinto / AP Photo)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;Since last few days the Typhoon Ketsana (locally called ‘Ondoy’) attacked Philippines, there are more than 300 people been killed and hundred thousands of people have to leave their home. Philippines flood already caused more than 400,000 refugees are looking for shelter in public buildings, schools, etc. There are more than 1.8 million people have been impacted, especially the residents in Manila. They really need your help and donation, at least the food and water is the must for them.&lt;/p&gt;  &lt;p&gt;Now, they are worry another storm (Typhoon Parma) may attack the Philippines again, possible reach in another two or three days. If it is happen in next few days, then it really make the current situation become worse, because they predict the Typhoon Parma could be more powerful than Typhoon Ketsana (Ondoy). Lets pray for them!&lt;/p&gt;  &lt;p&gt;If you are not able to be onsite to help them, then may be you can try to donate online or offline, and you can ask your family or friends make the donation as well. This is not only used to get more food, water, clothes, medicine, etc to them, and it can be used to rebuild their infrastructure, houses, etc, and help those hundred thousand people able to get through their difficult time. &lt;em&gt;If you are one of them, then you also hope that someone can help you!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Few methods to make donations to help Philippines flood:-&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;1. Direct your donations to &lt;strong&gt;RedCross Philippine&lt;/strong&gt;-    &lt;br /&gt;&lt;a href="http://www.redcross.org.ph/Site/PNRC/Default.aspx?S=48&amp;amp;SS=972"&gt;http://www.redcross.org.ph/Site/PNRC/Default.aspx?S=48&amp;amp;SS=972&lt;/a&gt;    &lt;br /&gt;Choose “Typhoon Ondoy”&lt;/p&gt;  &lt;p&gt;2. Donate via &lt;strong&gt;UNICEF USA&lt;/strong&gt; – To donate to the ongoing emergency relief efforts in the Philippines, please visit: &lt;a href="http://www.unicefusa.org/donate/Philippines"&gt;www.unicefusa.org/donate/Philippines&lt;/a&gt; or call 1.800.4UNICEF.&lt;/p&gt;  &lt;p&gt;3. Donate via – &lt;strong&gt;World Food Program&lt;/strong&gt;    &lt;br /&gt;&lt;a href="https://www.wfp.org/donate/ondoy"&gt;Help the Philippines Weather the Storm&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;4. You can also donate thru &lt;strong&gt;Ayala Foundation&lt;/strong&gt;:    &lt;br /&gt;&lt;a href="https://www.myayala.com/ayalafoundation/ayalafoundation.asp"&gt;https://www.myayala.com/ayalafoundation/ayalafoundation.asp&lt;/a&gt;&lt;/p&gt; 5. Donations may be designated as “Philippines floods” and sent to &lt;strong&gt;PWRDF&lt;/strong&gt; at 80 Hayden St. , Toronto, Ont., M4Y 3G2. They can also be sent electronically through CanadaHelps.   &lt;br /&gt;For credit card donations, contact Ricky de Castro, PWRDF grants administrator, at 1-866-308-7973 or at (416) 924-9199 ext. 318.  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Philippines Flood! Need Your Help and Donation!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-9201271916281713626?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/hEqfvmV2v_8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/9201271916281713626/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=9201271916281713626&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/9201271916281713626?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/9201271916281713626?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/hEqfvmV2v_8/philippines-flood-need-your-help-and.html" title="Philippines Flood - Need Your Help and Donation" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/_KlMNPMnIRbE/SsTPjE2IREI/AAAAAAAAA4E/3rLz0QoAs7M/s72-c/image_thumb%5B2%5D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/10/philippines-flood-need-your-help-and.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUEFQ3szeyp7ImA9WxNXFE0.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-5591841511781064687</id><published>2009-10-01T22:33:00.001+08:00</published><updated>2009-10-01T22:33:32.583+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-01T22:33:32.583+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="health" /><title>H1N1 (Influenza A) Vaccine Ready by Next Week and around 7 Million Doses</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5v0JydVmGlEk8j7hPVx9TaahopA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5v0JydVmGlEk8j7hPVx9TaahopA/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/5v0JydVmGlEk8j7hPVx9TaahopA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5v0JydVmGlEk8j7hPVx9TaahopA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/SsS9t3eBsaI/AAAAAAAAA34/wJd-pW_65_c/s1600-h/image%5B6%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="H1N1 Vaccine" border="0" alt="H1N1 Vaccine" src="http://lh6.ggpht.com/_KlMNPMnIRbE/SsS9u9yyLLI/AAAAAAAAA38/YgN_5aNLj9w/image_thumb%5B2%5D.png?imgmax=800" width="168" height="267" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;This is a good news that the H1N1 (Influenza A or Swine Flu) vaccine will be ready by next week and few H1N1 vaccine makers already start to ship the H1N1 vaccine (around 7 million doses) to various distribution centers.&lt;/p&gt;  &lt;p&gt;As this is the first batch of H1N1 vaccine and only around 7 million doses, so mostly it will be provided to H1N1 high risk group people first.&lt;/p&gt;  &lt;ul&gt;   &lt;ul&gt;     &lt;li&gt;Senior citizen age from 65 years and older (more than 60 years old need to take note) &lt;/li&gt;      &lt;li&gt;Children below age 5 years (below 10 years old need to take note) &lt;/li&gt;      &lt;li&gt;People on long-term aspirin therapy &lt;/li&gt;      &lt;li&gt;Pregnant women &lt;/li&gt;      &lt;li&gt;People with &lt;a href="http://knowledge2kids.blogspot.com/2009/08/why-do-some-people-suffer-from-asthma.html"&gt;asthma&lt;/a&gt;, organ failure, diabetes mellitus, and other disease &lt;/li&gt;      &lt;li&gt;People leave near by or in the nursing home or other chronic care facilities &lt;/li&gt;      &lt;li&gt;People work in crowded areas like shopping centers, airports, governments service centers, tourists areas, restaurants, hotels, etc &lt;/li&gt;   &lt;/ul&gt; &lt;/ul&gt;  &lt;p&gt;National Institutes of Health mentioned that this H1N1 vaccine so far didn’t have any serious side effects and most of the testers have been immunized with good results.&lt;/p&gt;  &lt;p&gt;Although a lot of people still worry about the side effects if take the H1N1 vaccine, and most of the feedback is wait and see the effect from other people first then only decide to take the H1N1 vaccine. But, there are certain group of people really want to take the H1N1 vaccine first, as this is the best precaution and even some of the rich people are willing to pay for it to be the first batch of people to get the H1N1 vaccine.&lt;/p&gt;  &lt;p&gt;If you need to know where to get the H1N1 vaccine, then you can check with your government hospital, or local public health department. So far they didn’t announce the location or distribution center yet, and they plan to publish this information on Flu.gov once is it available.&lt;/p&gt;  &lt;p&gt;I think you better take the H1N1 vaccine even you are not fall in the H1N1 high risk group, as you may not know when you will be get infected by H1N1 virus, and once you have been infected then it will spread to your family and friends. You need to take care yourself first, then only can take care your children or senior citizens. &lt;em&gt;Try to get H1N1 vaccine as early as you can! :)&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Other related H1N1 topics:-&lt;/p&gt;  &lt;h5&gt;&lt;a href="http://jasswin.blogspot.com/2009/08/influenza-h1n1-high-risk-group-and-h1n1.html"&gt;Influenza A (H1N1) High Risk Group And H1N1 Symptoms And List of Hospitals&lt;/a&gt;&lt;/h5&gt;  &lt;h5&gt;&lt;a href="http://jasswin.blogspot.com/2009/07/h1n1-influenza-vs-common-flu.html"&gt;H1N1 (Influenza A) vs Common Flu&lt;/a&gt;&lt;/h5&gt;  &lt;h5&gt;&lt;a href="http://jasswin.blogspot.com/2009/09/dont-panic-swine-flu-h1n1-10-things-you.html"&gt;Don’t Panic! Swine Flu (H1N1) – 10 Things You Need to Know&lt;/a&gt;&lt;/h5&gt;  &lt;h5&gt;&lt;a href="http://jasswin.blogspot.com/2009/09/good-news-one-dose-of-swine-flu-h1n1.html"&gt;Good News – One Dose of Swine Flu (Influenza A, H1N1) Vaccine Works&lt;/a&gt;&lt;/h5&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;H1N1 Vaccine! 7 Million Doses! First Batch of People Get H1N1 Precaution!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-5591841511781064687?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/6E2rXT1XzZw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/5591841511781064687/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=5591841511781064687&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/5591841511781064687?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/5591841511781064687?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/6E2rXT1XzZw/h1n1-influenza-vaccine-ready-by-next.html" title="H1N1 (Influenza A) Vaccine Ready by Next Week and around 7 Million Doses" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/_KlMNPMnIRbE/SsS9u9yyLLI/AAAAAAAAA38/YgN_5aNLj9w/s72-c/image_thumb%5B2%5D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/10/h1n1-influenza-vaccine-ready-by-next.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck8CQXg4cCp7ImA9WxNXE08.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-2447376323483688316</id><published>2009-09-29T22:51:00.002+08:00</published><updated>2009-09-30T22:27:40.638+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-30T22:27:40.638+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cars" /><category scheme="http://www.blogger.com/atom/ns#" term="My Opinion" /><title>Petrol RON 95 vs 97 Price is Cheaper but Under Power for Most of the Cars</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5dyG-TM5kiOK5Tm4TSxq_Wd3M_k/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5dyG-TM5kiOK5Tm4TSxq_Wd3M_k/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/5dyG-TM5kiOK5Tm4TSxq_Wd3M_k/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5dyG-TM5kiOK5Tm4TSxq_Wd3M_k/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/SsIgEnf8qAI/AAAAAAAAA3w/7yAoNX5l7iw/s1600-h/image%5B13%5D.png"&gt;&lt;img alt="RON 95" border="0" height="202" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SsIgGOBtsxI/AAAAAAAAA30/J67tdLttun0/image_thumb%5B10%5D.png?imgmax=800" style="border: 0px none; display: block; float: none; margin-left: auto; margin-right: auto;" title="RON 95" width="195" /&gt;&lt;/a&gt; &lt;br /&gt;
&lt;br /&gt;
A lot of people already tried to use the Petrol RON 95 since Malaysia implemented it from 1st of September 2009, but after compare the Petrol RON 95 vs 97, the price is cheaper than RON 97, but a lot of cars performance is under power. In another word, you may get the same price vs mileage if you are using the RON 95 now versus you used the RON 97 previously.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Existing price for Petrol RON below:-&lt;/b&gt;&lt;br /&gt;
RON 95 = RM1.80/litre&lt;br /&gt;
RON 97 = RM2.05/litre&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;RON = Research Octane Number&lt;/b&gt;. RON is a rating number and a way to rate the petrol in a test engine with condition, then get the rating number after compare the results for mixtures of iso-octane &amp;amp; n-heptane. If you see the higher RON number, mean the petrol have higher resistance toward pre-ignition or detonation. Most of the F1 racing cars or Airplane are using the RON 100 or greater RON / MON / AKI.&lt;br /&gt;
&lt;br /&gt;
So, it means that &lt;br /&gt;
&lt;i&gt;&lt;b&gt;RON 95 = MON 85-86 = AKI 90-91&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
Today, I had lunch with my friends and we talked about this Petrol RON 95. All of us already tried the RON 95, but our conclusion is the price for RON 95 is cheaper, but we all agreed the car performance really underpowered. They also share the experience from his / her friends or family, and so far most of them not really like the RON 95. If you are using below car models, then you may need to monitor it as most of the people (friends or friend of friends) complain the car is under power after use the RON 95. If you compare the price (full tank / mileage) for RON 95 vs RON 97&amp;nbsp; after few tries and the result is not much different, then propose you to use back the RON 97, as is good for your car engine for long run and better performance.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Car Models (especially Car with Automatic Transmission):-&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;Proton Savvy, Perodua Myvi, Proton Wira, Honda Civic, Honda City, KIA Optima, NAZA RIA, Nissan SENTRA, Perodua Kelisa, Proton Waja, Toyota Vios, Proton Saga, Proton Persona, Perodua Kenari, Nissan Cefiro, Naza Suria, Kia Spectra&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
Replace the RON 92 to RON 95, although provide a better Petrol quality for most of the transportation, but if most of the cars consume the Petrol RON 95 fuel more than RON 97 fuel, then means that it put the burden back to us and help the Petrol companies gain more profit. I think this is the strategies from Petrol companies and government, as if government try to control them not to increase the petrol price, then I believe this is another way to help the Petrol companies. &lt;i&gt;We use it, we pay it, they gain it! :)&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;em&gt;Below is the list of Malaysia Petroleum  Companies:-&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;&lt;u&gt;Shell (Shell Malaysia Trading Sdn Bhd)&lt;/u&gt;&lt;/strong&gt; ~ &lt;a href="http://www.shell.com.my/"&gt;http://www.shell.com.my/&lt;/a&gt;&lt;br /&gt;
Bangunan Shell Malaysia, Off Jalan Semantan, Damansara Heights, 50490 Kuala  Lumpur &lt;br /&gt;
Tel: 1 300 88 1808 (Customer Service Centre), 1 800 88 3899  (Emergency), 03 2095 9144, Fax: 03 2091 2957&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;u&gt;Petronas&lt;/u&gt;&lt;/strong&gt; ~ &lt;a href="http://www.petronas.com.my/"&gt;http://www.petronas.com.my/&lt;/a&gt;&lt;br /&gt;
Tower 1, Petronas Twin Towers, Kuala Lumpur City Centre, 50088 Kuala Lumpur  &lt;br /&gt;
Tel: 03 2026 5000, Fax: 03 2026 5050&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;u&gt;Exxon Mobil Corporation (Esso, Mobil)&lt;/u&gt;&lt;/strong&gt; ~ &lt;a href="http://www.esso.com.my/"&gt;http://www.esso.com.my/&lt;/a&gt;&lt;br /&gt;
Level 16, Menara ExxonMobil, Kuala Lumpur City Centre, 50088 Kuala Lumpur  &lt;br /&gt;
Tel: 03 2053 3000, 1 300 88 0323 (Smiles Customer Service Hotline) &lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;u&gt;Caltex (Caltex Oil Malaysia Limited)&lt;/u&gt;&lt;/strong&gt; ~ &lt;a href="http://www.caltex.com.my/"&gt;http://www.caltex.com.my/&lt;/a&gt;&lt;br /&gt;
Level 3, Tower &amp;amp; Annex, Menara Millennium, 8, Jalan Damanlela, Bukit  Damansara, 50490 Kuala Lumpur &lt;br /&gt;
Tel: 1 800 88 3188 (Hotline), 03 2289 6688, 03  2730 6988, Fax: 03 2289 6608&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;u&gt;Castrol (Premier Lubricants (Malaysia) Sdn Bhd)&lt;/u&gt;&lt;/strong&gt; ~ &lt;a href="http://www.castrol.com/"&gt;http://www.castrol.com/&lt;/a&gt;&lt;br /&gt;
Level 35, Menara Maxis, Kuala Lumpur City Centre (KLCC), 50088 Kuala Lumpur  &lt;br /&gt;
Tel: 03 2059 5555, Fax: 03 2059 5560&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;&lt;u&gt;BHP (Bousted Petroleum Marketing)&lt;/u&gt;&lt;/strong&gt; ~ &lt;a href="http://www.bhpetrol.com.my/"&gt;http://www.bhpetrol.com.my/&lt;/a&gt;&lt;br /&gt;
Level 31, Menara Maxis, Kuala Lumpur City Centre, 50088 Kuala Lumpur &lt;br /&gt;
Tel:  1 800 18 8888&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div align="center"&gt;&lt;b&gt;&lt;span style="color: #ff8000;"&gt;Petrol RON 95! You Need More Power! You Pay More!&lt;/span&gt;&lt;/b&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/8499405264120315106-2447376323483688316?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/imXXjWvVZTI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/2447376323483688316/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=2447376323483688316&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/2447376323483688316?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/2447376323483688316?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/imXXjWvVZTI/petrol-ron-95-vs-97-price-is-cheaper_29.html" title="Petrol RON 95 vs 97 Price is Cheaper but Under Power for Most of the Cars" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/_KlMNPMnIRbE/SsIgGOBtsxI/AAAAAAAAA30/J67tdLttun0/s72-c/image_thumb%5B10%5D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/09/petrol-ron-95-vs-97-price-is-cheaper_29.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE4GRnw6fyp7ImA9WxNXEEs.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-2780698204868231194</id><published>2009-09-27T22:48:00.001+08:00</published><updated>2009-09-27T22:48:47.217+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-27T22:48:47.217+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="general" /><category scheme="http://www.blogger.com/atom/ns#" term="My Opinion" /><category scheme="http://www.blogger.com/atom/ns#" term="Internet Online Business" /><title>6.4兆禮券怎賠？HOLA買單恐倒店 (64 Hundred Million Vouchers? HOLA Possible Bankrupt)</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/mwCvtG6yahM_rm5Q-0layBpUdbk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mwCvtG6yahM_rm5Q-0layBpUdbk/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/mwCvtG6yahM_rm5Q-0layBpUdbk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mwCvtG6yahM_rm5Q-0layBpUdbk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr97RnTXSYI/AAAAAAAAA3Y/Nog3zNUpEjA/s1600-h/image%5B2%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Hola" border="0" alt="Hola" src="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr97TSsuf2I/AAAAAAAAA3c/HY-GSvFG3Yk/image_thumb.png?imgmax=800" width="244" height="168" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;自稱「遭駭客入侵」的HOLA和樂家居館，似乎跟2次標錯價的戴爾電腦，成了難兄難弟。兩家業者都在「假日出包」，戴爾最後拿產品全年打8折，跟消費者和解，HOLA這回面對「64億張」千元禮券的不正常交易，如果真要全賠，必須掏出6.4兆，怕出清資產都不夠賠。 &lt;/p&gt;  &lt;p&gt;假日客潮照樣賣力消費，HOLA自稱網路不正常交易的64億千元禮券，是被駭客攻擊！巧就巧在，HOLA網站週日凌晨出包，戴爾官網2次標錯價，發生在週五晚上跟週六，莫非假日網管有漏洞？出了包，代價可不小，戴爾當初想發折價券，消保官確認定「沒誠意」，開罰百萬，最後戴爾拿全年產品打8折和解，如果HOLA循戴爾模式賠，很可能開放線上產品8折，或賠面額最低的100元電子商品券，萬筆訂單，可能認賠100萬消災，畢竟，資本額4.2億的HOLA，如果全賠，恐怕會倒店，11家店賠光光，也付不出6.4兆。 &lt;/p&gt;  &lt;p&gt;消基會認為，如果業者HOLA最後沒辦法舉證自己是受害者，就必須對下單者負責。消基會董事長謝天仁：「像戴爾這個事件裡面，不只人家會認為，用這個(標錯價)事件在炒作，甚至於有人在懷疑，用這樣的方式得到消費者資料，來達到它促銷的相關目的。」 消基會提醒，消費者如果只下1張單、買1張HOLA禮券，被保障的機會相對變高，如果惡意大量下單，想利用網站疏漏獲利，恐怕只會等到一場空。 &lt;/p&gt;  &lt;p&gt;Link: &lt;em&gt;&lt;a href="http://times.hinet.net/times/article.do?newsid=2386866&amp;amp;option=financen"&gt;http://times.hinet.net/times/article.do?newsid=2386866&amp;amp;option=financen&lt;/a&gt; &lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Another case happen again after Dell, that HOLA website released 64 hundred million electronic vouchers (thousand dollar) for their customers. They said that possible attached by Hacker, but don’t have any prove yet. Dell has to discount 20% for those products for whole year due to the wrong pricing listed in the Internet, so this time we are not sure how HOLA to handle it. If HOLA need to pay all the vouchers, then HOLA might bankrupt as the total asset of HOLA not enough to pay 6.4 trillion dollar (Unihan Definition for Taiwan). WOW! &lt;/p&gt;  &lt;p&gt;If HOLA not able to prove that is not their mistake, then they have to provide a solution for their customers. Even they follow the Dell method to provide 20% discount, or give the minimum voucher or coupon (hundred dollar), then with 11 x HOLA shops still not able to pay to their customers with 64 hundred million vouchers. &lt;/p&gt;  &lt;p&gt;If HOLA bankrupt, then it will impact to thousand workers and their suppliers seriously, especially during slow economic market. Oh man!&lt;/p&gt;  &lt;p&gt;This is show that we really need to be careful if doing the Internet online business, and this is one the serious example from Dell and HOLA. The leak of Internet security will cause our business loss million of dollar, or even in worse situation then may ‘close shop’. So, IT play a very important role in this modern day, and without IT with the latest technologies and strategies, then you will not able to compete with your competitors. &lt;em&gt;Not sure Insurance can cover or not? Possible is a good opportunity for Insurance company!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;font color="#ff8000"&gt;&lt;strong&gt;64 Hundred Million HOLA Electronic Vouchers! Lets see how HOLA resolve it!&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-2780698204868231194?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/3Qr25oaOq40" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/2780698204868231194/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=2780698204868231194&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/2780698204868231194?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/2780698204868231194?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/3Qr25oaOq40/64hola-64-hundred-million-vouchers-hola.html" title="6.4兆禮券怎賠？HOLA買單恐倒店 (64 Hundred Million Vouchers? HOLA Possible Bankrupt)" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr97TSsuf2I/AAAAAAAAA3c/HY-GSvFG3Yk/s72-c/image_thumb.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/09/64hola-64-hundred-million-vouchers-hola.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUYFSH44cSp7ImA9WxNQGUo.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-6106152682710633467</id><published>2009-09-26T19:07:00.003+08:00</published><updated>2009-09-26T22:58:39.039+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-26T22:58:39.039+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Windows 7" /><category scheme="http://www.blogger.com/atom/ns#" term="Software" /><title>Windows 7 Shortcut Keys (Hotkeys) for Advanced Users</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/KlgREZ5LdgknTTQkYkPedRukFfU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KlgREZ5LdgknTTQkYkPedRukFfU/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/KlgREZ5LdgknTTQkYkPedRukFfU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KlgREZ5LdgknTTQkYkPedRukFfU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh6.ggpht.com/_KlMNPMnIRbE/Sr319ppuhKI/AAAAAAAAA3A/X2XLhusl_7E/s1600-h/Windows%207%20Shortcut%20Keys%20Hotkeys%20for%20Advanced%20Users%5B4%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Windows 7 Shortcut Keys Hotkeys for Advanced Users" border="0" alt="Windows 7 Shortcut Keys Hotkeys for Advanced Users" src="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31-fw4PtI/AAAAAAAAA3E/aq28ApgOGXQ/Windows%207%20Shortcut%20Keys%20Hotkeys%20for%20Advanced%20Users_thumb%5B2%5D.jpg?imgmax=800" width="284" height="287" /&gt;&lt;/a&gt;    &lt;br /&gt;    &lt;br /&gt;Microsoft already released Windows 7 OEM final version to computer companies for home and business users, and there are thousands of users are using the Windows 7 with evaluation copy, and start to upgrade or buy the new licensed Windows 7 for their existing computer as the performance is really fantastic compare to previous Windows Vista. You can get the new computers or laptops with Windows 7 (OEM version), and if they haven’t ship with Windows 7 for your new Netbooks or Notebooks, then you can request them (i.e. Dell, HP, Lenovo, Acer, Asus, IBM, etc) to provide free upgrade once available before you place the order. As I am one of the Windows 7 user, and most of the time I am using the shortcut keys to minimize the mouse move, less clicks and save time, so I try to research and compile the &lt;b&gt;Windows 7 shortcut keys (Hotkeys) for advanced users&lt;/b&gt; here.    &lt;br /&gt;&lt;/p&gt;  &lt;p&gt;A lot of Windows 7 shortcut keys (Hotkeys) are using the Windows key (&lt;a href="http://jasswin.blogspot.com/"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3I/L_8prD-f3_c/windowskey%5B4%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt;), and most of the keyboards are designed to use for Microsoft Windows OS. If you are seldom to use the shortcut keys, then you can try and practice to use the Windows 7 shortcut keys once your PC installed with Windows 7, and it really make you use the computer much more faster. &lt;i&gt;Try and see!&lt;/i&gt;    &lt;br /&gt;&lt;i&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;&lt;i&gt;&lt;b&gt;Below most common used Windows 7 Keyboard shortcuts get from this &lt;/b&gt;&lt;a href="http://www.microsoft.com/nz/digitallife/basics/windows-7-shortcut-keys.mspx#"&gt;link&lt;/a&gt;&lt;b&gt;:-&lt;/b&gt;&lt;/i&gt;    &lt;br /&gt;&lt;/p&gt;  &lt;h5&gt;General hotkeys&lt;/h5&gt;  &lt;table style="width: 585px" border="1" cellspacing="0" cellpadding="2"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + Up arrow          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Maximizes the current windows         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + Down arrow          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Restore or minimize the current window         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + Left arrow          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Snap the current window to the left half of your screen         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + Right arrow          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Snap the current window to the right half of your screen         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + Shift + Left arrow          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Moves the current windows to the left screen, when running dual monitors         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + Shift + Right arrow          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Moves the current windows to the right screen, when running dual monitors         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + Home          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Minimises or Restores all but the current window         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + T          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Focuses on the taskbar, you can then use the arrow keys and enter to select          &lt;br /&gt;Pressing it again will cycle through items.           &lt;br /&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + Shift + T cycles backwards          &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + Tab          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Cycle through your open applications in 3D         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;Alt + Tab         &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Cycle through your open applications in 2D         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + Space bar (hold keys)          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Peek at the desktop         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://jasswin.blogspot.com/"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + D          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Show the desktop         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + M          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Minimize the current windows         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + G          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Bring your gadgets to the top of your applications         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + P          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Presentation and external display options         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + U          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Open Ease of Access center         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + X          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Mobility Center enabling quick access to features like wi-fi         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + [a number key 1-5]          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Launches the program from the task bar corresponding to that number key. Example:-          &lt;br /&gt;&lt;a href="http://jasswin.blogspot.com/"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + 1 -- Launches the first application on the task bar          &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + +          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Zoom in         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + -          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Zoom out         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="199"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + L          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="384"&gt;Lock your PC back to the login screen         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;  &lt;h5&gt;Taskbar modifiers used in conjuntion with the mouse&lt;/h5&gt;  &lt;table style="width: 584px" border="1" cellspacing="0" cellpadding="2"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="200"&gt;Shift + Click on icon          &lt;br /&gt;or Middle Click on icon          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="382"&gt;Opens a new instance of application         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="200"&gt;Ctrl + Shift + Click on icon          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="382"&gt;Open a new instance of application with admin privileges         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="200"&gt;Shift + Right click on icon         &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="382"&gt;Show the window menu (restore/minimize/move)          &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="200"&gt;Ctrl + Click on grouped icon         &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="382"&gt;Cycle between the windows/tabs in the group         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;br /&gt;  &lt;h5&gt;Windows Explorer shortcut keys&lt;/h5&gt;  &lt;table style="width: 585px" border="1" cellspacing="0" cellpadding="2"&gt;&lt;tbody&gt;     &lt;tr&gt;       &lt;td valign="top" width="200"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + E           &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="383"&gt;Start Windows Explorer         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="200"&gt;&lt;a href="http://jasswin.blogspot.com/"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + F          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="383"&gt;Open a Search Window         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="200"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31_aZAe2I/AAAAAAAAA3M/UrxKC6pdn-U/s1600-h/windowskey%5B3%5D.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="windowskey" border="0" alt="windowskey" src="http://lh5.ggpht.com/_KlMNPMnIRbE/Sr31-yyUGZI/AAAAAAAAA3Q/wSkjUtUlS6Y/windowskey_thumb%5B1%5D.png?imgmax=800" width="21" height="20" /&gt;&lt;/a&gt; + R          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="383"&gt;Open the Run command         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="200"&gt;Alt + P          &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="383"&gt;Show or hide the preview pane         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;      &lt;tr&gt;       &lt;td valign="top" width="200"&gt;Ctrl + + (number pad + only)         &lt;br /&gt;&lt;/td&gt;        &lt;td valign="top" width="383"&gt;Resize all the columns in details view         &lt;br /&gt;&lt;/td&gt;     &lt;/tr&gt;   &lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;   &lt;br /&gt;    &lt;br /&gt;&lt;b&gt;&lt;i&gt;Below is the full list of Windows 7 keyboard shortcut keys (Hotkeys) from Microsoft (&lt;a href="http://windows.microsoft.com/en-US/Windows7/Keyboard-shortcuts"&gt;link&lt;/a&gt;):-&lt;/i&gt;&lt;/b&gt;    &lt;br /&gt;&lt;b&gt;&lt;span style="color: grey"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="color: grey"&gt;Ease of Access keyboard shortcuts&lt;/span&gt; &lt;/b&gt;    &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Right Shift for eight seconds: Turn Filter Keys on and off     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Left Alt + Left Shift + PrtScn (or PrtScn): Turn High Contrast on or off     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Left Alt + Left Shift + Num Lock: Turn Mouse Keys on or off     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Shift five times: Turn Sticky Keys on or off     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Num Lock for five seconds: Turn Toggle Keys on or off     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + U: Open the Ease of Access Center     &lt;br /&gt;&lt;b&gt;&lt;span style="color: grey"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="color: grey"&gt;General keyboard shortcuts&lt;/span&gt;&lt;/b&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F1: Display Help     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + C (or Ctrl + Insert): Copy the selected item     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + X: Cut the selected item     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + V (or Shift + Insert): Paste the selected item     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Z: Undo an action     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Y: Redo an action     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Delete (or Ctrl + D): Delete the selected item and move it to the Recycle Bin     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Shift + Delete: Delete the selected item without moving it to the Recycle Bin first     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F2: Rename the selected item     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Right Arrow: Move the cursor to the beginning of the next word     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Left Arrow: Move the cursor to the beginning of the previous word     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Down Arrow: Move the cursor to the beginning of the next paragraph     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Up Arrow: Move the cursor to the beginning of the previous paragraph     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift with an arrow key: Select a block of text     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Shift + any arrow key: Select more than one item in a window or on the desktop, or select text within a document     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + any arrow key + Spacebar: Select multiple individual items in a window or on the desktop     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + A: Select all items in a document or window     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F3: Search for a file or folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Enter: Display properties for the selected item     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + F4: Close the active item, or exit the active program     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Spacebar: Open the shortcut menu for the active window     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + F4: Close the active document (in programs that allow you to have multiple documents open simultaneously)     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Tab: Switch between open items     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + Tab: Use the arrow keys to switch between open items     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Mouse scroll wheel: Change the size of icons on the desktop     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Tab: Cycle through programs on the taskbar by using Aero Flip 3-D     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl+ Windows logo key + Tab: Use the arrow keys to cycle through programs on the taskbar by using Aero Flip 3-D     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Esc: Cycle through items in the order in which they were opened     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F6: Cycle through screen elements in a window or on the desktop     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F4: Display the address bar list in Windows Explorer     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Shift + F10: Display the shortcut menu for the selected item     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Esc: Open the Start menu     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + underlined letter: Display the corresponding menu     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + underlined letter: Perform the menu command (or other underlined command)     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F10: Activate the menu bar in the active program     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Right Arrow: Open the next menu to the right, or open a submenu     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Left Arrow: Open the next menu to the left, or close a submenu     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F5 (or Ctrl + R): Refresh the active window     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Up Arrow: View the folder one level up in Windows Explorer     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Esc: Cancel the current task     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + Esc: Open Task Manager     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Shift when you insert a CD: Prevent the CD from automatically playing     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Left Alt + Shift: Switch the input language when multiple input languages are enabled     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + ShiftL: Switch the keyboard layout when multiple keyboard layouts are enabled     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Right or Left Ctrl + Shift: Change the reading direction of text in right-to-left reading languages     &lt;br /&gt;&lt;b&gt;&lt;span style="color: grey"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="color: grey"&gt;Dialog box keyboard shortcuts&lt;/span&gt;&lt;/b&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Tab: Move forward through tabs     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + Tab: Move back through tabs     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Tab: Move forward through options     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Shift + Tab: Move back through options     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + underlined letter: Perform the command (or select the option) that goes with that letter     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Enter: Replaces clicking the mouse for many selected commands     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Spacebar: Select or clear the check box if the active option is a check box     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Arrow keys: Select a button if the active option is a group of option buttons     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F1: Display Help     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F4: Display the items in the active list     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Backspace: Open a folder one level up if a folder is selected in the Save As or Open dialog box     &lt;br /&gt;&lt;span style="color: grey"&gt;&lt;b&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="color: grey"&gt;&lt;b&gt;Windows logo key keyboard shortcuts&lt;/b&gt;&lt;/span&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key: Open or close the Start menu.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Pause: Display the System Properties dialog box.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + D: Display the desktop.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + M: Minimize all windows.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Shift + M: Restore minimized windows to the desktop.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + E: Open Computer.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + F: Search for a file or folder.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Windows logo key + F: Search for computers (if you’re on a network).     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + L: Lock your computer or switch users.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + R: Open the Run dialog box.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + T: Cycle through programs on the taskbar.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + number: Start the program pinned to the taskbar in the position indicated by the number. If the program is already running, switch to that program.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Shift + Windows logo key + number: Start a new instance of the program pinned to the taskbar in the position indicated by the number.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Windows logo key + number: Switch to the last active window of the program pinned to the taskbar in the position indicated by the number.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Windows logo key + number: Open the Jump List for the program pinned to the taskbar in the position indicated by the number.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Tab: Cycle through programs on the taskbar by using Aero Flip 3-D.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl+Windows logo key + Tab: Use the arrow keys to cycle through programs on the taskbar by using Aero Flip 3-D.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl+Windows logo key + B: Switch to the program that displayed a message in the notification area.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Spacebar: Preview the desktop.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Up Arrow: Maximize the window.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Left Arrow: Maximize the window to the left side of the screen.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Right Arrow: Maximize the window to the right side of the screen.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Down Arrow: Minimize the window.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Home: Minimize all but the active window.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Shift + Up Arrow: Stretch the window to the top and bottom of the screen.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Shift+ Left Arrow or Right Arrow: Move a window from one monitor to another.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + P: Choose a presentation display mode.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + G: Cycle through gadgets.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + U: Open Ease of Access Center.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + X: Open Windows Mobility Center.     &lt;br /&gt;&lt;b&gt;&lt;span style="color: grey"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="color: grey"&gt;Windows Explorer keyboard shortcuts&lt;/span&gt;&lt;/b&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + N: Open a new window     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + W: Close the current window     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + N: Create a new folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * End: Display the bottom of the active window     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Home: Display the top of the active window     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F11: Maximize or minimize the active window     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Period (.): Rotate a picture clockwise     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Comma (,): Rotate a picture counter-clockwise     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Num Lock + Asterisk (*) on numeric keypad: Display all subfolders under the selected folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Num Lock + Plus Sign (+) on numeric keypad: Display the contents of the selected folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Num Lock + Minus Sign (-) on numeric keypad: Collapse the selected folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Left Arrow: Collapse the current selection (if it’s expanded), or select the parent folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Enter: Open the Properties dialog box for the selected item     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + P: Display the preview pane     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Left Arrow: View the previous folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Backspace: View the previous folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Right Arrow: Display the current selection (if it’s collapsed), or select the first subfolder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Right Arrow: View the next folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Up Arrow: View the parent folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + E: Display all folders above the selected folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Mouse scroll wheel: Change the size and appearance of file and folder icons     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + D: Select the address bar     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + E: Select the search box     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + F: Select the search box     &lt;br /&gt;&lt;b&gt;&lt;span style="color: grey"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="color: grey"&gt;Taskbar keyboard shortcuts&lt;/span&gt;&lt;/b&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Shift + Click on a taskbar button: Open a program or quickly open another instance of a program     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + Click on a taskbar button: Open a program as an administrator     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Shift + Right-click on a taskbar button: Show the window menu for the program     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Shift + Right-click on a grouped taskbar button: Show the window menu for the group     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Click on a grouped taskbar button: Cycle through the windows of the group     &lt;br /&gt;&lt;b&gt;&lt;span style="color: grey"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="color: grey"&gt;Magnifier keyboard shortcuts&lt;/span&gt;&lt;/b&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Plus Sign or Minus Sign: Zoom in or out     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + Spacebar: Preview the desktop in full-screen mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + F: Switch to full-screen mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + L: Switch to lens mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + D: Switch to docked mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + I: Invert colors     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + arrow keys: Pan in the direction of the arrow keys     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + R: Resize the lens     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Windows logo key + Esc: Exit Magnifier     &lt;br /&gt;&lt;b&gt;&lt;span style="color: grey"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="color: grey"&gt;Remote Desktop Connection keyboard shortcuts&lt;/span&gt;&lt;/b&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Page Up: Move between programs from left to right.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Page Down: Move between programs from right to left.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Insert: Cycle through programs in the order that they were started in.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Home: Display the Start menu.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + Break: Switch between a window and full screen.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + End: Display the Windows Security dialog box.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Delete: Display the system menu.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + Minus Sign (-) on the numeric keypad: Place a copy of the active window, within the client, on the Terminal server clipboard (provides the same functionality as pressing Alt + PrtScn on a local computer).     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + Plus Sign (+) on the numeric keypad: Place a copy of the entire client window area on the Terminal server clipboard (provides the same functionality as pressing PrtScn on a local computer).     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + Right Arrow: “Tab” out of the Remote Desktop controls to a control in the host program (for example, a button or a text box). Useful when the Remote Desktop controls are embedded in another (host) program.     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Alt + Left Arrow: “Tab” out of the Remote Desktop controls to a control in the host program (for example, a button or a text box). Useful when the Remote Desktop controls are embedded in another (host) program.     &lt;br /&gt;&lt;b&gt;&lt;span style="color: grey"&gt;Paint keyboard shortcuts&lt;/span&gt;&lt;/b&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + N: Create a new picture     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + O: Open an existing picture     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + S: Save changes to a picture     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F12: Save the picture as a new file     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + P: Print a picture     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + F4: Close a picture and its Paint window     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Z: Undo a change     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Y: Redo a change     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + A: Select the entire picture     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + X: Cut a selection     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + C: Copy a selection to the Clipboard     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + V: Paste a selection from the Clipboard     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Right Arrow: Move the selection or active shape right by one pixel     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Left Arrow: Move the selection or active shape left by one pixel     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Down Arrow: Move the selection or active shape down by one pixel     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Up Arrow: Move the selection or active shape up by one pixel     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Esc: Cancel a selection     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Delete: Delete a selection     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + B: Bold selected text     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + +: Increase the width of a brush, line, or shape outline by one pixel     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + -: Decrease the width of a brush, line, or shape outline by one pixel     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + I: Italicize selected text     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + U: Underline selected text     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + E: Open the Properties dialog box     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + W: Open the Resize and Skew dialog box     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Page Up: Zoom in     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Page Down: Zoom out     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F11: View a picture in full-screen mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + R: Show or hide the ruler     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + G: Show or hide gridlines     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F10 or Alt: Display keytips     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Shift + F10: Show the current shortcut menu     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F1: Open Paint Help     &lt;br /&gt;&lt;b&gt;&lt;span style="color: grey"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="color: grey"&gt;WordPad keyboard shortcuts&lt;/span&gt;&lt;/b&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + N: Create a new document     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + O: Open an existing document     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + S: Save changes to a document     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F12: Save the document as a new file     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + P: Print a document     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + F4: Close WordPad     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Z: Undo a change     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Y: Redo a change     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + A: Select the entire document     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + X: Cut a selection     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + C: Copy a selection to the Clipboard     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + V: Paste a selection from the Clipboard     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + B: Make selected text bold     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + I: Italicize selected text     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + U: Underline selected text     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + =: Make selected text subscript     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + =: Make selected text superscript     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + L: Align text left     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + E Align text center     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + R:: Align text right     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + J: Justify text     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + 1: Set single line spacing     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + 2: Set double line spacing     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + 5: Set line spacing to 1.5     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + &amp;gt;: Increase the font size     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + &amp;lt;: Decrease the font size     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + A: Change characters to all capitals     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + L: Change the bullet style     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + D: Insert a Microsoft Paint drawing     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + F: Find text in a document     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F3: Find the next instance of the text in the Find dialog box     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + H: Replace text in a document     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Left Arrow: Move the cursor one word to the left     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Right Arrow: Move the cursor one word to the right     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Up Arrow: Move the cursor to the line above     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Down Arrow: Move the cursor to the line below     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Home: Move to the beginning of the document     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + End: Move to the end of the document     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Page Up: Move up one page     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Page Down: Move down one page     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Delete: Delete the next word     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F10: Display keytips     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Shift + F10: Show the current shortcut menu     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F1: Open WordPad Help     &lt;br /&gt;&lt;b&gt;&lt;span style="color: grey"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="color: grey"&gt;Calculator keyboard shortcuts&lt;/span&gt;&lt;/b&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + 1: Switch to Standard mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + 2: Switch to Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + 3: Switch to Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + 4: Switch to Statistics mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + E: Open date calculations     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + H: Turn calculation history on or off     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + U: Open unit conversion     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + C: Calculate or solve date calculations and worksheets     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F1: Open Calculator Help     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Q: Press the M- button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + P: Press the M+ button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + M: Press the MS button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + R: Press the MR button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + L: Press the MC button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * %: Press the % button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F9: Press the +/– button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * /: Press the / button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * *: Press the * button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * +: Press the + button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * -: Press the – button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * R: Press the 1/× button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * @: Press the square root button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * 0-9: Press the number buttons (0-9)     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * =: Press the = button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * .: Press the . (decimal point) button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Backspace: Press the backspace button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Esc: Press the C button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Del: Press the CE button     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + D: Clear the calculation history     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F2: Edit the calculation history     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Up Arrow key: Navigate up in the calculation history     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Down Arrow key: Navigate down in the calculation history     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Esc: Cancel editing the calculation history     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Enter: Recalculate the calculation history after editing     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F3: Select Degrees in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F4: Select Radians in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F5: Select Grads in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * I: Press the Inv button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * D: Press the Mod button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + S: Press the sinh button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + O: Press the cosh button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + T: Press the tanh button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * (: Press the ( button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * ): Press the ) button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * N: Press the ln button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * ;: Press the Int button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * S: Press the sin button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * O: Press the cos button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * T: Press the tan button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * M: Press the dms button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * P: Press the pi button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * V: Press the F-E button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * X: Press the Exp button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Q: Press the x^2 button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Y: Press the x^y button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * #: Press the x^3 button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * L: Press the log button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * !: Press the n! button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Y: Press the y√x button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + B: Press the 3√x button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + G: Press the 10x button in Scientific mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F5: Select Hex in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F6: Select Dec in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F7: Select Oct in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F8: Select Bin in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F12: Select Qword in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F2: Select Dword in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F3: Select Word in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F4: Select Byte in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * K: Press the RoR button in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * J: Press the RoL button in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * &amp;lt;: Press the Lsh button in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * &amp;gt;: Press the Rsh button in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * %: Press the Mod button in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * (: Press the ( button in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * ): Press the ) button in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * |: Press the Or button in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * ^: Press the Xor button in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * ~: Press the Not button in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * &amp;amp;: Press the And button in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * A-F: Press the A-F buttons in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Spacebar: Toggles the bit value in Programmer mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * A: Press the Average button in Statistics mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + A: Press the Average Sq button in Statistics mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * S: Press the Sum button in Statistics mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + S: Press the Sum Sq button in Statistics mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * T: Press the S.D. button in Statistics mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + T: Press the Inv S.D. button in Statistics mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * D: Press the CAD button in Statistics mode     &lt;br /&gt;&lt;b&gt;&lt;span style="color: grey"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="color: grey"&gt;Windows Journal keyboard shortcuts&lt;/span&gt;&lt;/b&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + N: Start a new note     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + O: Open a recently used note     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + S: Save changes to a note     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + V: Move a note to a specific folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + P: Print a note     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + F4: Close a note and its Journal window     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Z: Undo a change     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Y: Redo a change     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + A: Select all items on a page     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + X: Cut a selection     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + C: Copy a selection to the Clipboard     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + V: Paste a selection from the Clipboard     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Esc: Cancel a selection     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Delete: Delete a selection     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + F: Start a basic find     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + G: Go to a page     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F5: Refresh find results     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F5: Refresh the note list     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F6: Toggle between a note list and a note     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + Shift + C: Display a shortcut menu for column headings in a note list     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F11: View a note in full-screen mode     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F1: Open Journal Help     &lt;br /&gt;&lt;b&gt;&lt;span style="color: grey"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;span style="color: grey"&gt;Windows Help viewer keyboard shortcuts&lt;/span&gt;&lt;/b&gt;     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + C: Display the Table of Contents     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + N: Display the Connection Settings menu     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F10: Display the Options menu     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Left Arrow: Move back to the previously viewed topic     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Right Arrow: Move forward to the next (previously viewed) topic     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + A: Display the customer support page     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Alt + Home: Display the Help and Support home page     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Home: Move to the beginning of a topic     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * End: Move to the end of a topic     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + F: Search the current topic     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * Ctrl + P: Print a topic     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160; * F3: Move the cursor to the search box    &lt;br /&gt;    &lt;br /&gt;There are a lot of Windows 7 shortcut keys (Hotkeys) that you need to remember in order to use it, so actually you can print it out and stick on your cubicle or save it as your Windows desktop wallpaper. Thanks for Microsoft developers to create those friendly and useful Windows 7 shortcut keys (Hotkeys) for us to speed up the use of computer and complete more tasks within short time. &lt;i&gt;Be the Windows 7 advanced users using shortcut keys!      &lt;br /&gt;&lt;/i&gt;    &lt;br /&gt;    &lt;br /&gt;Other related topics on Microsoft Windows 7:-    &lt;br /&gt;- &lt;a href="http://jasswin.blogspot.com/2009/08/windows-7-ultimate-product-key-leak.html"&gt;&lt;i&gt;Windows 7&lt;/i&gt; Ultimate Product Key Leak Before Release&lt;/a&gt;    &lt;br /&gt;- &lt;a href="http://jasswin.blogspot.com/2009/07/windows-7-has-apple-iphone-3g-s-touch.html"&gt;&lt;i&gt;Windows 7&lt;/i&gt; has Apple iPhone 3G S Touch-Screen Features&lt;/a&gt;    &lt;br /&gt;- &lt;a href="http://jasswin.blogspot.com/2009/09/first-nokia-booklet-3g-mini-laptops.html"&gt;First Nokia Booklet 3G Mini Laptops with &lt;i&gt;Windows 7&lt;/i&gt;&lt;/a&gt;    &lt;br /&gt;    &lt;br /&gt;    &lt;br /&gt;&lt;/p&gt;  &lt;div align="center"&gt;&lt;b&gt;&lt;span style="color: #ff8000"&gt;Windows 7 Shortcut Keys! Hotkeys for Advanced Users! Save Time!&lt;/span&gt;&lt;/b&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/8499405264120315106-6106152682710633467?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/jP_o9UGA2lY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/6106152682710633467/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=6106152682710633467&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/6106152682710633467?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/6106152682710633467?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/jP_o9UGA2lY/windows-7-shortcut-keys-hotkeys-for.html" title="Windows 7 Shortcut Keys (Hotkeys) for Advanced Users" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh3.ggpht.com/_KlMNPMnIRbE/Sr31-fw4PtI/AAAAAAAAA3E/aq28ApgOGXQ/s72-c/Windows%207%20Shortcut%20Keys%20Hotkeys%20for%20Advanced%20Users_thumb%5B2%5D.jpg?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/09/windows-7-shortcut-keys-hotkeys-for.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D08DQ3s6eip7ImA9WxNQGEQ.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-4622914346995413325</id><published>2009-09-26T00:24:00.001+08:00</published><updated>2009-09-26T00:24:32.512+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-26T00:24:32.512+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Blogging" /><title>Lets Think and Start a Niche Blog</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/np8O_wl4Lt-7zvpKz8JcoeVcEp8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/np8O_wl4Lt-7zvpKz8JcoeVcEp8/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/np8O_wl4Lt-7zvpKz8JcoeVcEp8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/np8O_wl4Lt-7zvpKz8JcoeVcEp8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Recently, I read some of the blogging books and internet blogging techniques sites, and a lot of professional blogger always propose us to write a niche blog and try to make it more on specific area and topic. This is good for the blog reader know your blog main target and topics that you will share and post in your blog. They will always come back to visit your blog to become your blog follower. They can interact with you in your niche blog through publish some comments, and share with you their own experiences on those specific topics, and no matter the comment is good or bad, but at least you know their feedback. &lt;em&gt;Lets think and start a niche blog!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;Professional bloggers said that most of the top 10 blogs in Technorati or other blog search engine are niche blogs and really write a lot of related good articles on it. They are not only earn a lot of money from their blog website, even they make a lot of friends who have the same interests and time to time they organize the gathering parties. Some of them become best friends after few years.&lt;/p&gt;  &lt;p&gt;A lot of people start blogging on their personal blog first, and most of them just share their daily life activities, experiences, photos, fun and humor topics, etc. Their blog posts are really wide and not organize. They do have their own blog followers and keep visit to their blogs, or subscribe the blog feed to get latest update through blog reader tool or email. It means that they write blog is not for making money, is more to express themselves and share with their friends on various topics which he or she like. &lt;em&gt;Exactly same as my blog now! I write any topics that I want, and is not a niche blog.&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;Why I start read those professional blogger books or websites, as I start see my blog can make some money, and although is very little, but it prove that blogging can make money, and at the same time I can share any information anytime that I like. May be you are not believe that a lot of professional bloggers can make more than USD 50,000 a year, and even some of the professional bloggers can earn more than USD 100,000 per year, and just blogging full time without go to get a 5 days 8 office hours work. Actually, y&lt;em&gt;our already know that you will not get money or salary if you are not working based on traditional working lifestyle&lt;/em&gt;. But, their life really flexible, and even without do anything, the money still come in everyday, and it will keep increasing on their income, if he or she put in extra effort on it later. &lt;em&gt;They are really pro on blogging! They always mention niche blog can make more money!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;In order to reach there, the professional blogger really told us that is not easy, and it will not just happen it within 1 day or 1 year. We need to do a lot of homework to source for a niche topic that we can write and non-stop (most of the people stop or lack of new posts or ideas after few months), and must be really attractive as they are thousand of similar blogs available in the Internet and already established.&lt;/p&gt;  &lt;p&gt;So, I can’t show you that niche blog can get more traffics with more followers, then can make more money, as I never try it before. Even I try it, and only know the results after few months or years. But, this is true in the blogging world as professional bloggers already prove and share with us in their secrets of blogging books and niche blog sites. &lt;em&gt;Lets think and start a niche blog! &lt;/em&gt;&lt;em&gt;&lt;a href="http://jasswin.blogspot.com/2009/07/blogging-can-make-money.html"&gt;Blogging can make money&lt;/a&gt; that I wrote before, and just a very basic on it. You need to learn and read more on blogging techniques if you want to generate more income!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Niche Blog! More Followers! More Traffic! More Money!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-4622914346995413325?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/G34aLcIuSBA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/4622914346995413325/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=4622914346995413325&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/4622914346995413325?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/4622914346995413325?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/G34aLcIuSBA/lets-think-and-start-niche-blog.html" title="Lets Think and Start a Niche Blog" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/09/lets-think-and-start-niche-blog.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEYDRHw7cCp7ImA9WxNQGE0.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-8834734877662865637</id><published>2009-09-24T22:22:00.001+08:00</published><updated>2009-09-24T22:22:55.208+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-24T22:22:55.208+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="health" /><title>Choose and Use the Contraceptive Pill in the Right Way</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/qAVmA_w_uQLV48OZ6rP5KM_pgIo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qAVmA_w_uQLV48OZ6rP5KM_pgIo/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/qAVmA_w_uQLV48OZ6rP5KM_pgIo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qAVmA_w_uQLV48OZ6rP5KM_pgIo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;#160;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/SruAs9m6LiI/AAAAAAAAA1c/gM0tvZZ2zhU/s1600-h/image%5B61%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Contraceptive Pill" border="0" alt="Contraceptive Pill" src="http://lh6.ggpht.com/_KlMNPMnIRbE/SruAvRblOjI/AAAAAAAAA1k/mwI5B4c5RZk/image_thumb%5B69%5D.png?imgmax=800" width="240" height="207" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;There are million of women take the &lt;strong&gt;contraceptive pill&lt;/strong&gt; (some people called it ‘&lt;strong&gt;Birth Control Pill&lt;/strong&gt;’ or most of the people just called it ‘&lt;strong&gt;Pill&lt;/strong&gt;’) everyday, and already consider is one of the top 10 drugs used in the world and generate a lot of profit for the healthcare providers every year. That’s why a lot of contraceptive pill products available in the market and we have to know which pill product is good, so that we can choose and use the contraceptive pill in the right way, as it is related to our health due to hormone change by taking the pill.&lt;/p&gt;  &lt;p&gt;Although after many years (since the first pill from year 1960 in US) of research and improvement on the oral contraceptive pill and really save for us to use it. But, most the pill contain the female hormones (Estrogen and Progestogen) to prevent your ovaries process the egg growth and release. It is similar the women stop the maturation and release eggs during pregnancy. At the same time, the pill also thicken the mucus from your cervix as a barrier to sperm and change the lining of womb (Endometrium) to less suitable for implantation of fertilized egg, and reduce sperm transport in the upper genital tract. &lt;em&gt;So, we need to seek for more information, especially consult your doctor!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;Most of the pill products come with 21 tablets, and you have to take one pill each day (for 21 days), the stop for next 7 days. The most important point is you need to know in what / when / how the situation is suitable for you to use the pill.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Available to be used:-&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;No smoking or taking drugs women&lt;/li&gt;    &lt;li&gt;Healthy women and can take up till menopause&lt;/li&gt;    &lt;li&gt;Planned with high protection against pregnancy&lt;/li&gt;    &lt;li&gt;Irregular menstrual cycle&lt;/li&gt;    &lt;li&gt;Undergone an abortion&lt;/li&gt;    &lt;li&gt;Severe menstrual cramps&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Don’t be used:-&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Pregnancy&lt;/li&gt;    &lt;li&gt;Any type of cancer&lt;/li&gt;    &lt;li&gt;Diabetes&lt;/li&gt;    &lt;li&gt;Unexplained vaginal bleeding&lt;/li&gt;    &lt;li&gt;Migraines&lt;/li&gt;    &lt;li&gt;During breast feeding&lt;/li&gt;    &lt;li&gt;A smoker and over age 35 years old&lt;/li&gt;    &lt;li&gt;If have any family records of high blood pressure, stroke, high cholesterol, gallstones, diabetes, or blood clotting problems&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;As you know that the pill won’t help to protect you from sexuality transmitted HIV (AIDS) or diseases, so proposed you to use the condoms or other vaginal methods beside you take the pill. You can keep your pill in a place that you will easily notice, so that you can take it daily without miss after breakfast or dinner.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Before you choose a contraceptive pill, is good for you to know the facts of most of the doctor recommended pill:-&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;It won’t cause your weight gain&lt;/li&gt;    &lt;li&gt;It won’t delay or cause you early menopause&lt;/li&gt;    &lt;li&gt;It allow you to take the pill until menopause&lt;/li&gt;    &lt;li&gt;It won’t affect your fertility after you stopped&lt;/li&gt;    &lt;li&gt;It won’t cause acne and even can help to reduce acne and oily skin&lt;/li&gt;    &lt;li&gt;It allow you to take the pill even you have uterine fibroids in most of the cases&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;We are not the doctor, so mean that even a lot of articles or information related to contraceptive pill available in the Internet, magazines, booklets, and friends, but I still propose you to read more from other, and the best is check and consult your trusted doctor to give you the right advise. &lt;strong&gt;&lt;em&gt;Choose and&lt;/em&gt; &lt;em&gt;Use the Contraceptive Pill in the Right Way! :)&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Contraceptive Pill! Birth Control Pill! Enjoy Your Life!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-8834734877662865637?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/5KmEVk1mJz0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/8834734877662865637/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=8834734877662865637&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/8834734877662865637?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/8834734877662865637?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/5KmEVk1mJz0/choose-and-use-contraceptive-pill-in.html" title="Choose and Use the Contraceptive Pill in the Right Way" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/_KlMNPMnIRbE/SruAvRblOjI/AAAAAAAAA1k/mwI5B4c5RZk/s72-c/image_thumb%5B69%5D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/09/choose-and-use-contraceptive-pill-in.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUMBRHs9fip7ImA9WxNQF0w.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-2776475185733353495</id><published>2009-09-23T22:50:00.001+08:00</published><updated>2009-09-23T22:50:55.566+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-23T22:50:55.566+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Beauty" /><title>Always hide your face due to Melasma</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/zMelmq8Vq4375Wr0DuYxyjl1lIE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zMelmq8Vq4375Wr0DuYxyjl1lIE/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/zMelmq8Vq4375Wr0DuYxyjl1lIE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zMelmq8Vq4375Wr0DuYxyjl1lIE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/Sro1X_xbeYI/AAAAAAAAA1U/1EFDcu_eo28/s1600-h/image25.png"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Melasma" border="0" alt="Melasma" src="http://lh6.ggpht.com/_KlMNPMnIRbE/Sro1uBoj1qI/AAAAAAAAA1Y/cav7BvWjMl0/image_thumb23.png?imgmax=800" width="195" height="147" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;There are many people embarrassed by their skin especially their face due to Melasma, and I believe you always hide your face if you are lady. If you have Melasma, and you have to know the sun protection is one of the main effective natural treatment. There are many reasons trigger for Melasma, and the major root cause is exposure to sunlight.&lt;/p&gt;  &lt;p&gt;You not need too worry now, as a lot of professional dermatologists have a series of Melasma treatment programs to cure it using various solutions and medication based on your skin type and situation. So, before you go for any treatment, try to use the broad-spectrum (UVA + UVB) sunscreen with SPF 30, take umbrella, and wear hats or sun glasses first, until you really find a good healthcare providers for your Melasma treatment.&lt;/p&gt;  &lt;p&gt;Just now mentioned that exposure to sunlight is one of the major reason caused the Melasma, and there are few more reasons as below:-&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Use of oral contraceptive pills &lt;/li&gt;    &lt;li&gt;Pregnancy &lt;em&gt;(That is why some people called ‘Melasma’ is ‘Mask of Pregnancy’)&lt;/em&gt; &lt;/li&gt;    &lt;li&gt;Genetic influence &lt;/li&gt;    &lt;li&gt;Post menopausal &lt;/li&gt;    &lt;li&gt;Drugs &lt;/li&gt;    &lt;li&gt;In-proper use of cosmetic &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;So, if you start notice your nose, forehead, upper lip, chin, cheeks or other part of your body has brown skin discoloration, then you might have Melasma. This is because your body system over produce the melanin, and mostly happen on women now a day. &lt;em&gt;You have to take care your skin and even after Melasma treatment!&lt;/em&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;You can look at below article on how to have a healthy skin from your food / meal.&lt;/p&gt;  &lt;h5&gt;&lt;a href="http://jasswin.blogspot.com/2009/09/young-looking-skin-without-supplement.html"&gt;Young-looking Skin without Supplement!&lt;/a&gt;&lt;/h5&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Melasma Treatment! Sun Protection!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-2776475185733353495?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/cMBXUtdtZAw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/2776475185733353495/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=2776475185733353495&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/2776475185733353495?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/2776475185733353495?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/cMBXUtdtZAw/always-hide-your-face-due-to-melasma.html" title="Always hide your face due to Melasma" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh6.ggpht.com/_KlMNPMnIRbE/Sro1uBoj1qI/AAAAAAAAA1Y/cav7BvWjMl0/s72-c/image_thumb23.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/09/always-hide-your-face-due-to-melasma.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUQBRHs7cCp7ImA9WxNQFk8.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-2323882749170000888</id><published>2009-09-22T21:08:00.001+08:00</published><updated>2009-09-22T21:49:15.508+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-22T21:49:15.508+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Beauty" /><category scheme="http://www.blogger.com/atom/ns#" term="Food" /><category scheme="http://www.blogger.com/atom/ns#" term="health" /><title>Kinohimitsu J’pan D’Tox Tea Peppermint Reviews</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/gCMhV_D7BINzDVYXzkLW7tmAtvo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/gCMhV_D7BINzDVYXzkLW7tmAtvo/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/gCMhV_D7BINzDVYXzkLW7tmAtvo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/gCMhV_D7BINzDVYXzkLW7tmAtvo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/SrjMOYt3X_I/AAAAAAAAA1I/Hw8aSJbbqk0/s1600-h/Kinohimitsu%20J%27pan%20D%27Tox%20Tea%20Peppermint%5B6%5D.jpg"&gt;&lt;img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Kinohimitsu J&amp;#39;pan D&amp;#39;Tox Tea Peppermint" border="0" alt="Kinohimitsu J&amp;#39;pan D&amp;#39;Tox Tea Peppermint" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SrjMPCqHb2I/AAAAAAAAA1M/RydE-6dl4ps/Kinohimitsu%20J%27pan%20D%27Tox%20Tea%20Peppermint_thumb%5B4%5D.jpg?imgmax=800" width="244" height="208" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;We are taking the &lt;strong&gt;Kinohimitsu J’pan D’Tox Tea Peppermint&lt;/strong&gt; more than 12 months, and always drink the J’pan D’Tox Tea more than 3 times per week after dinner. To be honest, it is quite expensive per pack if I compare the price to other normal range of Chinese tea (&lt;em&gt;i.e. Tieh Kuan Yin, Pu-erh, etc&lt;/em&gt;). But if compare to the mid range of Chinese tea (&lt;em&gt;I bought few good Ten Fu Tieh Kwan Yin, Pu-erh, Tung Ting Oolong Tea from China trip&lt;/em&gt;), then Tung Ting Oolong Tea is much more expensive than J’pan D’Tox Tea.&lt;/p&gt;  &lt;p&gt;We get to know the Kinohimitsu J’pan D’Tox Tea is because we try find the Kinohimitsu Health Pad in shopping centre last year, then saw this product, as my friend told me the Kinohimitsu Health Pad is good for our health and it can absorb our bad energy and neutral our body system. During that time, it is under promotion period, then we bought two box of Kinohimitsu J’pan D’Tox Tea with different taste (&lt;em&gt;Ginger and Peppermint&lt;/em&gt;).&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Kinohimitsu J’pan D’Tox Tea Ginger&lt;/strong&gt; – My wife only tried once, and I have finished all tea bags within two months. After that, we didn’t buy this again, as we are not really like the taste of it. May be this is good for senior citizens.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Kinohimitsu J’pan D’Tox Tea Peppermint&lt;/strong&gt; – First few times we drink, and we are not really like the taste as we follow the instructions to steep tea bag per cup for 5 mins, and it is too strong for us as we never try it before. After that, we steep it less than 2 mins and drink it for around 3 ~ 4 cups per tea bag, then slowly we like the taste and drink this tea until today. &lt;em&gt;I am drinking the J’pan D’Tox Tea now and write the Kinohimitsu J’pan D’Tox Tea Peppermint reviews!!! :)&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;The reasons we continue drink the J’pan D’Tox Tea as below experiences:-&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Some time drink too much Chinese tea, and will feel like hity internally, but J’pan D’Tox Tea doesn’t give us this problem. &lt;/li&gt;    &lt;li&gt;If I ate too much fried chicken, then I will feel better after drink the J’pan D’Tox Tea. &lt;/li&gt;    &lt;li&gt;We don’t know it is true that J’pan D’Tox Tea can help to clear our body toxin or not, but it really help us next morning in the toilet. &lt;/li&gt;    &lt;li&gt;It is very convenient to carry in the bag, and we can drink it for few cups and the taste still good. &lt;/li&gt;    &lt;li&gt;I feel good and refresh after drink the J’pan D’Tox Tea, especially when I have to sleep late, think too much works related projects, and after heavy meal. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Kinohimitsu J’pan D’Tox Tea Peppermint Ingredients:-&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Peppermint Leaves, Orange Peel, Rosehips Fruit, Uva Ursi, Chamomile Flower, Althea Root (Mashmallow), Buckthorn Bark &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;Features &amp;amp; Benefits get from Kinohimitsu.com&lt;/strong&gt; (&lt;a title="http://www.kinohimitsu.com/kinohimitsu_jpan_dtox_tea" href="http://www.kinohimitsu.com/kinohimitsu_jpan_dtox_tea"&gt;http://www.kinohimitsu.com/kinohimitsu_jpan_dtox_tea&lt;/a&gt;):-&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Promotes regular bowel movement &lt;/li&gt;    &lt;li&gt;Elimates harmful waste from bowels &lt;/li&gt;    &lt;li&gt;Good flavour that is also ideal for serving quests &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;Kinohimitsu J’pan D’Tox Tea Price:-&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Avg less than RM25.00 per box (14 x (tea bag x 2g)) &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;If you have chance to try, then drink it for few times and see you like it or not. Or, if you are looking the D’Tox tea for your health, then may be you can buy 1 box first and try it out. &lt;em&gt;Don’t mix drink it with other D’Tox products, as I am not sure any side effects or not!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Kinohimitsu J’pan D’Tox Tea Peppermint! D’Tox Tea After Meal!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-2323882749170000888?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/wm5ZY_Oty7U" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/2323882749170000888/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=2323882749170000888&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/2323882749170000888?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/2323882749170000888?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/wm5ZY_Oty7U/kinohimitsu-jpan-dtox-tea-peppermint.html" title="Kinohimitsu J’pan D’Tox Tea Peppermint Reviews" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/_KlMNPMnIRbE/SrjMPCqHb2I/AAAAAAAAA1M/RydE-6dl4ps/s72-c/Kinohimitsu%20J%27pan%20D%27Tox%20Tea%20Peppermint_thumb%5B4%5D.jpg?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/09/kinohimitsu-jpan-dtox-tea-peppermint.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkEAQ3YyeSp7ImA9WxNQFU8.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-8343160329108567540</id><published>2009-09-21T18:17:00.001+08:00</published><updated>2009-09-21T18:24:02.891+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-21T18:24:02.891+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Management" /><category scheme="http://www.blogger.com/atom/ns#" term="Software" /><title>Block Facebook during Office Hours?</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/lDrDzuOToZsW1mqfe_MRyA602s0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lDrDzuOToZsW1mqfe_MRyA602s0/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/lDrDzuOToZsW1mqfe_MRyA602s0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lDrDzuOToZsW1mqfe_MRyA602s0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh6.ggpht.com/_KlMNPMnIRbE/SrdSryejrjI/AAAAAAAAA1A/L4XSz9_7DHg/s1600-h/Block%20Facebook%20Office%20Hours%5B4%5D.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Block Facebook during Office Hours" border="0" alt="Block Facebook during Office Hours" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SrdSst0K7uI/AAAAAAAAA1E/VVQviv-v1Zs/Block%20Facebook%20Office%20Hours_thumb%5B2%5D.jpg?imgmax=800" width="279" height="255" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;There are many people and organizations start to re-assess the Internet access for Facebook in the office, government service centre, and even in school or university. Their management are gathering from different parties for their concern and feedback and there might be the possibility of implementing new IT policy to block Facebook during office hours, just like a lot of organizations block the Instant Messaging access during office hours.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Why need to block Facebook during office hours?&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;Very simple answer, and you try to look around in your office or an area with Internet access, then you will notice a lot of people are using the Facebook to play online games which are free, or chat with their friends in Facebook.&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;Many online game developers or companies have designed and published a lot of great online flash games in Facebook, and time to time release the new features or upgrade for the existing game or introduce the new flash games. They make a lot of money through Facebook advertisement.&lt;/p&gt;  &lt;p&gt;&lt;em&gt;&lt;strong&gt;A lot of people has been addicted for those famous Facebook games!&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;Below few famous Facebook flash games that most of the users are playing during their working hours, and they have to spend a lot of time to play / keep it running (minimize the Internet browsers) to level up their game character by gain more experience / coins:-&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;em&gt;Pet Society&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;Farmtown&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;Restaurant City&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;Fish World&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;Country Story&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;Barn Buddy&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;Mob Wars&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;Mafia Wars&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;Sorority&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;FarmVille&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;Mahjong&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;a lot more…&lt;/em&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;From management point of view, the employees are spending their paid times to play games without benefit to their organization. This is a serious situation, as people usually spread and influence their friends to join and play, show their achievement and publish it in Facebook wall. When you play too much games with long hours, then you will be getting tired, your mind always pop-up games screens, reduce your concentration, or even getting worse and fall sick or got eye diseases, and then indirectly impact to organization because of your health situation, decision making and customer services.&lt;/p&gt;  &lt;p&gt;If people use the Facebook to build the relationship with their customers, and improve the company image or generate more sales, then is fine for them to use the Facebook during office hours. But recently, with the free Facebook games and applications, most of them no longer spend their time to use it in the right ways to help the organization. &lt;em&gt;This is a bad image if someone from other departments or companies see their employees post their game info in Facebook wall during office hour! So free, nothing to do!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;If a lot of organizations from different countries start block the Facebook.com during their office hours, then the main impact is the Facebook, as their one of the major income is from the advertisement through games and applications. Not much impact to Facebook users, as they just back to normal and still can play it after working hours. Not much impact to organization, as their employees can concentrate their work, and even it can free up their network bandwidth to use for other purposes, reduce the cost of bill as games utilize a lot of computer CPU power, and meet the GREEN concept.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Facebook better start think a good solution to assist those organization now! You save them, they save you! Win Win Situation!&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;For example, if Facebook doesn’t want those organizations block the whole domain name (facebook.com) from their web proxy system, then they can configure all the games or applications under the different sub-domain name based on various categories, and introduce the URL purpose and types to everyone. So that those organization can block certain Facebook sub-domain URL during their office hours like (games.facebook.com or apps.facebook.com) rather than block the whole Facebook domain name, if their web proxy has this capability. &lt;/p&gt;  &lt;p&gt;Another option that Facebook can implement an intelligent service (session control) that allow the games to be played based on their age, occupation, location, country or state’s public holidays, and source of IP address. It may not 100% help for those organization, but at least they know and still save to use the Facebook for other purpose, rather for their employees to play Facebook online games during office hours. &lt;em&gt;Facebook may be has better ideas then! :)&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;If you are one of the people who playing games during the office hours, then imagine if you are the boss or a management member, and would you like your employees to play game during office hours and you have to pay them at the same time! Unless you still can deliver and even more without impact organization, then may be you can discuss with your management for special approval! :)&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Block Facebook Online Games &amp;amp; Applcations! Improve Organization Productivity &amp;amp; Services!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-8343160329108567540?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/CpGt-LmtRCE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/8343160329108567540/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=8343160329108567540&amp;isPopup=true" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/8343160329108567540?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/8343160329108567540?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/CpGt-LmtRCE/block-facebook-during-office-hours.html" title="Block Facebook during Office Hours?" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh4.ggpht.com/_KlMNPMnIRbE/SrdSst0K7uI/AAAAAAAAA1E/VVQviv-v1Zs/s72-c/Block%20Facebook%20Office%20Hours_thumb%5B2%5D.jpg?imgmax=800" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/09/block-facebook-during-office-hours.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkIFRng5fSp7ImA9WxNQFEg.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-8206714418792440604</id><published>2009-09-20T22:54:00.001+08:00</published><updated>2009-09-20T22:55:17.625+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-20T22:55:17.625+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Mobile Phone" /><category scheme="http://www.blogger.com/atom/ns#" term="Computer Laptops" /><title>First Nokia Booklet 3G Mini Laptops with Windows 7</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/6kFmmjv8Z3hLjrSyU1LAYHqbeOs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/6kFmmjv8Z3hLjrSyU1LAYHqbeOs/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/6kFmmjv8Z3hLjrSyU1LAYHqbeOs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/6kFmmjv8Z3hLjrSyU1LAYHqbeOs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh6.ggpht.com/_KlMNPMnIRbE/SrZB425Q5DI/AAAAAAAAA0w/Lh0DS_JPbbM/s1600-h/image%5B27%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Nokia Booklet 3G" border="0" alt="Nokia Booklet 3G" src="http://lh3.ggpht.com/_KlMNPMnIRbE/SrZB6I-s9YI/AAAAAAAAA04/tsOTW1JPtyw/image_thumb%5B17%5D.png?imgmax=800" width="172" height="229" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Wow, after Nokia enter to mobile world for more than 20 years, and now Nokia start release the first Nokia Booklet 3G (Mini Laptops or Netbooks) with Microsoft Windows 7 into Personal Computer world in year 2009. This is another change for Nokia again, as Nokia introduced the first handheld phone (Mobira Cityman 900) on year 1987, and now year 2009 Nokia release first mini laptops (Netbooks) to cover the PC market with latest computer trends. &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="right"&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/SrZB7O_wUZI/AAAAAAAAA0Q/EiJDsNzhl8k/s1600-h/image%5B22%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="Nokia Booklet 3G" border="0" alt="Nokia Booklet 3G" align="left" src="http://lh6.ggpht.com/_KlMNPMnIRbE/SrZB8GhT1LI/AAAAAAAAA0U/5spkKEa2xxw/image_thumb%5B12%5D.png?imgmax=800" width="143" height="143" /&gt;&lt;/a&gt;&amp;#160;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/SrZB-BgM8CI/AAAAAAAAA0Y/ExhPOedOPLY/s1600-h/image%5B24%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="Nokia Booklet 3G" border="0" alt="Nokia Booklet 3G" align="left" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SrZB_b64iRI/AAAAAAAAA0c/62wwWyBzD8E/image_thumb%5B14%5D.png?imgmax=800" width="147" height="147" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/SrZCANPmMHI/AAAAAAAAA0g/cFRpEoBySKw/s1600-h/image%5B23%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="Nokia Booklet 3G" border="0" alt="Nokia Booklet 3G" align="left" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SrZCBTIxADI/AAAAAAAAA0k/4YlM_nwO8iY/image_thumb%5B13%5D.png?imgmax=800" width="149" height="149" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/SrZCCUvkJEI/AAAAAAAAA0o/m7WU-NbYRfg/s1600-h/image%5B25%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Nokia Booklet 3G" border="0" alt="Nokia Booklet 3G" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SrZCDRz9svI/AAAAAAAAA0s/kYaLszi2eW4/image_thumb%5B15%5D.png?imgmax=800" width="140" height="140" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Nokia will make a new success history again based on the Nokia previous company profile with all the success stories using technologies, marketing strategies and strong customers relationship. &lt;/p&gt;  &lt;p&gt;I am wondering why Nokia start to involve in personal computer business? It come out many questions in my mind, and really want to know how the Nokia management or leadership think, what is their business strategy, and how Nokia compete with other PC market leaders like (Dell, HP, Acer, Apple, IBM, ASUS, etc)?&lt;/p&gt;  &lt;p&gt;With the ODM business model, and I think Nokia will outsource it to ODM to build and ship to their third party logistic hubs or retail stores, then sell to customers directly. As this is the fastest way to build and release the new and latest PC without setup additional productions line or factories with huge costs and resources. May be Nokia will not step into customize computer spec services till they have all the resources and technologies in place. Another point is Nokia really care for their employees as they create more opportunities for them to move to new roles without retrain too many people during this slow or bad economic market.&lt;/p&gt;  &lt;p&gt;No matter how, the Mini Laptops or Netbooks won’t replace our daily used mobile phone, and impossible for us to carry the Mini Laptops or Netbooks to make or receive call daily 24 hours. Um, I should not say is ‘impossible’! we should invent the new technology by combination with mobile phone and laptops to a new device that we can carry it everyday, example a small device with hologram technology for us to use it like phone, computer, music player, payment services and health infrared indicator, or more. &lt;em&gt;If have chance, really want to join this program to make it happen!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;Just a joke, imagine you see a lot of people in the coffee shops carry the different colors of Mini Laptops or Netbooks near their face and talk to other parties using both hands! :)&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Nokia Booklet 3G! Your Left Right Hand!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-8206714418792440604?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/Sw6jKQmt3lM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/8206714418792440604/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=8206714418792440604&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/8206714418792440604?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/8206714418792440604?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/Sw6jKQmt3lM/first-nokia-booklet-3g-mini-laptops.html" title="First Nokia Booklet 3G Mini Laptops with Windows 7" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh3.ggpht.com/_KlMNPMnIRbE/SrZB6I-s9YI/AAAAAAAAA04/tsOTW1JPtyw/s72-c/image_thumb%5B17%5D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/09/first-nokia-booklet-3g-mini-laptops.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEADQH07cCp7ImA9WxNQE0U.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-8014894859400161977</id><published>2009-09-20T01:52:00.001+08:00</published><updated>2009-09-20T01:52:51.308+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-20T01:52:51.308+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Food" /><category scheme="http://www.blogger.com/atom/ns#" term="health" /><title>Understand More on Vitamins for Our Health</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/sveIwRTDwCQ40KpvgIDazb-NqMI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sveIwRTDwCQ40KpvgIDazb-NqMI/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/sveIwRTDwCQ40KpvgIDazb-NqMI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sveIwRTDwCQ40KpvgIDazb-NqMI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh4.ggpht.com/_KlMNPMnIRbE/SrUaaQqdNkI/AAAAAAAAA0A/RgZ4H_bpEVY/s1600-h/image%5B5%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Vitamins" border="0" alt="Vitamins" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SrUacUmW4AI/AAAAAAAAA0E/OmrlIQGLBhE/image_thumb%5B8%5D.png?imgmax=800" width="244" height="220" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;There are many types of vitamins supplements in the markets, and a lot of the people just listen from friends or know a bit of vitamins knowledge, then take the vitamins supplement daily into their body. Most of them are not get advise from doctors or lack of research, and then it come to one day only seek for help when their situation turn to serious, and sometime is already too late. So, you have to understand more on vitamins usage, how the vitamins help on our body, where and how to get the vitamins from our daily foods, and different symptoms if lack of vitamins. If you take the vitamins supplement, and please use it in the right way and right choice. &lt;em&gt;Get more advise first!&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;Vitamins can be divided into two types (fat-soluble and water-soluble), and mostly the vitamins can’t be manufactured or synthesized by the organism, and improper absorptions results in specific deficiency disease. Vitamins A, D, E and K are fat soluble which are not easily lost by ordinary cooking methods, so mostly can get it from liver. Vitamins B Complex and C are water soluble which is dissolved easily in cooking water and can’t be stored in our body, so we need to take it daily. &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Lets understand more on vitamins for our health and disease as below list of vitamins:-&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vitamin A&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;It is known as ‘&lt;em&gt;Anti-Opathalmic&lt;/em&gt;’, and it is needed for our body growth and vitality. Vitamin A is good to resist the infections to our eyes, stomach, lungs and intestines. It can prevent the most of the eye diseases cases, smooth our skin and hair, extend our life and youthfulness. Usually, it used for the treatment in influenza, night blindness, skin disorders, colds, eye diseases and defective gums and teeth. Ave daily 5,000 (adults) and 2,600 (children) based on international units.&lt;/p&gt;  &lt;p&gt;We can get the Vitamin A from liver, fish liver oil, curds, butter, cheese, egg yolk, spinach, lettuce, carrot, cabbage, tomato, prune, mango, papaya, apricot, peach, almond or more.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vitamin B1&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;It is known as ‘&lt;em&gt;Thiamine&lt;/em&gt;’, or called anti-ageing vitamin, and it is important for our nervous system functionality, good for our digestion, the regulation of carbohydrates, protect our heart muscle, prevent constipation, and stimulate our brain action. Usually, it used in the treatment for surgery, stress and illness, digestive disorder, mental depression, or even use it during pregnancy. Ave daily 2 mg (adults) and 1.2 mg (children).&lt;/p&gt;  &lt;p&gt;The sources for Vitamin B1 can get it from wheat germ, yeast, cereal, nuts, pea, whole grain, milk, egg, banana, apple and other.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vitamin B2&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;It is known as ‘&lt;em&gt;Riboflavin&lt;/em&gt;’, or other people called it ‘Vitamin G’, and it is good for our eye, skin, hair, and nail. Vitamin B2 can help to eliminate sore lips, tongue and mouth, and at the same time to metabolize carbohydrates, protein and fats. It used in treatment for nervous depression, nutritional cataracts or eye ailments, and some use it in high blood pressure. Ave daily 1.6 ~ 2.6 mg (adults) and 0.6 ~ 1 mg (children).&lt;/p&gt;  &lt;p&gt;We can get the Vitamin B2 from milk, cheese, egg, wheat germ, almond, sunflower, tomato, citrus fruit and other.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vitamin B3&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;It is known as ‘&lt;em&gt;Niacin&lt;/em&gt;’, and it is essential for proper functioning for the nervous system, carbohydrate and protein metabolism, and synthesis of sex hormones, insulin, cortisone and thyroxin. It is usually used in treatment for migraine and high blood pressure (caused by nervousness, high cholesterol and arteriosclerosis), skin eruptions, mental depression, insomnia, chronic headache, digestives disorders and anemia. Ave daily 12 ~ 20 mg (adults) and 4.8 ~ 12 mg (children).&lt;/p&gt;  &lt;p&gt;The Vitamin B3 is contained in liver, fish, peanut, whole wheat, dates, prune, tomato and other.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vitamin B5&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;It is known as ‘&lt;em&gt;Pantothenic Acid&lt;/em&gt;’, and it is help for our body cell building, development of the central nervous system, conversion of fatty and sugar to energy, protect against physical and mental stresses and toxins, increase the production of cortisone, and increase vitality. It is used in treatment for insomnia, low blood pressure, low blood sugar, loss of hair, hypoglycemia, blood and skin disorders. Ave daily 30 ~ 50 mg.&lt;/p&gt;  &lt;p&gt;The major sources of Vitamin B5 are whole grain, cereal, liver, pea, bean, peanut, egg yolk and other.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vitamin B6&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;It is known as ‘&lt;em&gt;Pyridoxine&lt;/em&gt;’, and it is good in the absorption of fast and proteins, prevent nervous and skin disorder, and protect against degenerative diseases. Today, mostly used in the treatment for migraine headache, heart disease, anaemia, and getting more scientists to do more Vitamin B6 research on those related to asthma, hyperactive children, kidney stone, blood clots and nervous disorder. Ave daily 2.0 mg (adults) and 0.2 mg (children).&lt;/p&gt;  &lt;p&gt;Mostly can get it from yeast, wheat, bran, wheat germ, cereal, banana, walnut, soya bean, milk, egg, liver, fresh vegetables and other.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vitamin B9&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;It is known as ‘&lt;em&gt;Folic Acid&lt;/em&gt;’, and with the B12 it is necessary for the formation of red blood cells, help on healing process, and aids protein metabolism. People used it in treatment for skin disorder, loss of hair, some of anaemia, fatigue and mental depression. Some of scientists believe that folic acid is contraindicated in cancer and leukemia. Ave daily 0.4 mg.&lt;/p&gt;  &lt;p&gt;We can the Vitamin B9 from spinach, mushroom, nut, peanut, liver and more.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vitamin B12&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;It is known as ‘&lt;em&gt;Cyanocobalamin&lt;/em&gt;’, and it is the only vitamin that contains essential mineral elements to help on functioning of the central nervous system, production and regeneration of red blood cells, proper utilization of fat, carbohydrates and protein for body building, and improve our concentration, memory and balance. It is very important and widely used in treatment for fatigue, lack of concentration, poor appetite, depression, insomnia, poor memory, lose of energy and mental disorder. Ave daily 3 mcg.&lt;/p&gt;  &lt;p&gt;We can get the vitamin B12 from kidney, liver, meat, milk, egg, banana, peanut and other.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vitamin C&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;It is known as ‘&lt;em&gt;Ascorbic Acid&lt;/em&gt;’, and it is important for the growth and maintenance of all our body tissues, protect against infections and all forms of stress, prevent and cure the common cold, decrease blood cholesterol, and protect against harmful effects of toxic chemicals. Mostly used in treatment of colds, neutralize various toxins in our body, speed healing process, increase sexual vitality, prevent premature ageing, and anaemia. As the vitamin C is one of the least toxic vitamin, so it is save to use in high doses. Ave daily 50 ~ 70 mg (adults) and 30 ~ 50 mg (children).&lt;/p&gt;  &lt;p&gt;The vitamin C can be found in citrus fruits, berries, lemon, tomato, potato, green gram, and other.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vitamin D&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;It is known as ‘&lt;em&gt;Calciferol&lt;/em&gt;’, and it is needed for our bone and teeth formation, assimilation of calcium, phosphorus and other minerals, and functioning of the thyroid gland. People use it in the treatment for muscular fatigue, constipation and nervousness. But it can be toxic if taken over doses, especially for children. Signs of toxicity are unusual thirst, itching skin, vomiting, sore eyes, diarrhea, urinary urgency. Ave daily 400 ~ 500 international units.&lt;/p&gt;  &lt;p&gt;This vitamin D can be found in the rays of the sun, fish, egg, milk, butter, and other.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vitamin E&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;It is known as ‘&lt;em&gt;Tocopherol&lt;/em&gt;’, and it is essential for our proper functions, fertility and physical vigour, to prevent unsaturated fatty acids, sex hormones and fat soluble vitamins, and prevent heart diseases, asthma, arthritis, and improve blood circulation. It has been used in treatment for diseases of the muscle, different type of paralysis, increase male and female fertility and helps to restore male potency. Ave daily 100 ~ 200 international units.&lt;/p&gt;  &lt;p&gt;We always can get it from wheat, cereal, germ, milk, egg, nut and other.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vitamin K&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Is is known as ‘&lt;em&gt;Phylloquinone&lt;/em&gt;’, and it is needed for proper clotting of blood, reduce excessive menstrual flow, prevention of bleeding and normal liver functions. It is usually used in treatment for vitality, intestines, and colitis.&lt;/p&gt;  &lt;p&gt;The vitamin K is contained in egg yolk, alfalfa, yogurt, cow’s milk, spinach, cauliflower, tomato, cabbage and other.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;You can always based on the above vitamins information &lt;em&gt;(great info from Bakhru)&lt;/em&gt; and the sources of vitamins to beneficial our body and have a good health, and especially this is great information if you are the one always cook for your family, friends and customers.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Use of Vitamins! Food of Body!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-8014894859400161977?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/5FIzk6hrN_w" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/8014894859400161977/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=8014894859400161977&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/8014894859400161977?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/8014894859400161977?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/5FIzk6hrN_w/understand-more-on-vitamins-for-our.html" title="Understand More on Vitamins for Our Health" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/_KlMNPMnIRbE/SrUacUmW4AI/AAAAAAAAA0E/OmrlIQGLBhE/s72-c/image_thumb%5B8%5D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/09/understand-more-on-vitamins-for-our.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE8FQXc8fSp7ImA9WxNQEks.&quot;"><id>tag:blogger.com,1999:blog-8499405264120315106.post-3614766857501245768</id><published>2009-09-18T16:33:00.001+08:00</published><updated>2009-09-18T16:33:30.975+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-18T16:33:30.975+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Beauty" /><category scheme="http://www.blogger.com/atom/ns#" term="health" /><title>Young-looking Skin without Supplement!</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/7eGYGTVy3LnbmtYrtdEnj7ltK0I/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/7eGYGTVy3LnbmtYrtdEnj7ltK0I/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/7eGYGTVy3LnbmtYrtdEnj7ltK0I/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/7eGYGTVy3LnbmtYrtdEnj7ltK0I/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/SrNFffkksnI/AAAAAAAAAzA/f7_5F0_zDm0/s1600-h/image%5B32%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Young-looking Skin Like Baby" border="0" alt="Young-looking Skin Like Baby" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SrNFi4BSPiI/AAAAAAAAAzE/XXDRtaPGsJ0/image_thumb%5B16%5D.png?imgmax=800" width="244" height="244" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;I believe everyone like their skin looks and feels well, and it is not only for lady, and even men wish to have it too, especially in our modern life today. So, expects said that from our eating habits or diet, and it will reflect our skin directly. This is not only to beauty our skin, and the most important is help on our health, because if you are not healthy, then your skin’s health will be impacted as well.&lt;/p&gt;  &lt;p&gt;You just need to remember below great food when you shop in the market, so that you always can pick and buy the great foods to feed your skin and make yourself has young-looking skin without supplement if you can.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh6.ggpht.com/_KlMNPMnIRbE/SrNFms0wrEI/AAAAAAAAAzI/pogEXgPt8kM/s1600-h/image%5B3%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SrNFnnbuMvI/AAAAAAAAAzM/E6whXtGMNI8/image_thumb%5B1%5D.png?imgmax=800" width="153" height="110" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;Grapes&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;When talk about grape, then the first impression is the ‘red wine’ which has a lot of benefits for our health. Actually the resveratrol is better than vitamins E and C to help on protection against free radical damages, and it can be found in grapes skin. Another good news is the grape (especially purple grape) can help us to reduce the water retention in our body , so that it won’t make us feel heavy and swollen.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/SrNFohC7juI/AAAAAAAAAzQ/HqEstOX0Y30/s1600-h/image%5B7%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SrNFpZOwwFI/AAAAAAAAAzU/gHwsuWOvjBg/image_thumb%5B3%5D.png?imgmax=800" width="146" height="108" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;Green Tea&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;You will notice that most of the Japanese look young with great skin, and a lot of great skincare products come from Japan. Scientists already confirmed the green tea is rich in antioxidants and proven to reduce the damage of sunburn and risk of skin cancer, and the most important is the green tea can reactivate drying skin cells.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/SrNFr0NUsUI/AAAAAAAAAzY/w9eaYWzZwgU/s1600-h/image%5B11%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://lh4.ggpht.com/_KlMNPMnIRbE/SrNFswDR6jI/AAAAAAAAAzc/v0pQqkNQbNw/image_thumb%5B5%5D.png?imgmax=800" width="150" height="117" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;Carrots&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Carrots are superior source of biotin, fibre, potassium, thiamine and vitamins A, C, K and B6. Vitamin A is very important for healthy skin to help on developing and maintaining our skin cells and if lack of it, then it can cause dry skin.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh5.ggpht.com/_KlMNPMnIRbE/SrNFuz9ihgI/AAAAAAAAAzg/Ritu6yhuPLk/s1600-h/image%5B20%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://lh3.ggpht.com/_KlMNPMnIRbE/SrNFv_AsqSI/AAAAAAAAAzk/AYGFBJ65dXU/image_thumb%5B10%5D.png?imgmax=800" width="147" height="152" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;Olives&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Today, getting more Asian use the olive oil, as it really has a lot of benefits for our skin like make it more smooth, heals dry, brittle nails, radiant complexion, soften cuticles, and even can improve our hair more shine and conditions. But you need to know that the olive oil has few grades, and the best one is ‘extra virgin’, because is the least processed. With the vitamin E and antioxidants come from olive oil, it help to maintain our skin more elastic and firm, at the same time it give you a good health protection naturally against the sun with its anti-UV damage properties.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/SrNFxDhDXMI/AAAAAAAAAzo/_FBlN2f9t9U/s1600-h/image%5B24%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://lh6.ggpht.com/_KlMNPMnIRbE/SrNFyOImNZI/AAAAAAAAAzs/-IrHLEkSZr8/image_thumb%5B12%5D.png?imgmax=800" width="145" height="127" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;Pomegranate&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Scientists already show that the pomegranate contains a very high level of polyphenols, especially the pomegranate juice is one of the popular antioxidants with some other free radical-fighting elements to protect our skin in an environment with harsh polluted. One of the famous ingredient to be used for skincare product.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh3.ggpht.com/_KlMNPMnIRbE/SrNF1WoOg2I/AAAAAAAAAzw/4iUiB1hides/s1600-h/image%5B28%5D.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://lh5.ggpht.com/_KlMNPMnIRbE/SrNF2UWIlzI/AAAAAAAAAz0/bp1xZ_za3J4/image_thumb%5B14%5D.png?imgmax=800" width="144" height="133" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;Salmon&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Omege-3 (fatty acids from Salmon) is great to maintain our healthy cell membranes by keeping out harmful substances, and it can reduce our body’s production of inflammatory agents that can damage our skin, so that the bad stuff doesn’t get left behind in our body. The healthy fatty acids is a key ingredients in archiving healthy, smooth and more radiant skin.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;So, beside above major great food (lets call it ‘&lt;strong&gt;&lt;em&gt;GG-COPS&lt;/em&gt;&lt;/strong&gt;’) help on our skin, and there are number of vegetables and fruits with high &lt;em&gt;&lt;strong&gt;Oxygen Radical Absorbance Capacity (ORAC)&lt;/strong&gt;&lt;/em&gt;, or in another way called ‘&lt;em&gt;antioxidant&lt;/em&gt;’ that you need to have in your daily breakfast, lunch, dinner or tea time with other calcium-rich, low-fat foods, etc.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Vegetables:-&lt;/strong&gt; &lt;em&gt;Eggplant, Corn, Onions, Red bell peppers, Beets, Broccoli flowers, Spinach, Kale, Alfalfa sprouts, Brussels sprouts&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Fruits:-&lt;/strong&gt; &lt;em&gt;Oranges, Red grapes, Plums, Cherries, Prunes, Blackberries, Blueberries, Strawberries, Raspberries, Raisins&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;Last, but not least, just to share with you that the new research show that eating ‘&lt;strong&gt;grapefruit&lt;/strong&gt;’ can increase breast cancer risk, especially for post-menopausal women. This is because the grapefruit contains compounds that block the production of an enzyme that helps our body metabolize estrogen. &lt;strong&gt;Drink more fruit juice a week to beauty your skin and good for your health! :)&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p align="center"&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Beautiful Skin! Young-Looking Skin!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8499405264120315106-3614766857501245768?l=jasswin.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/JasswinsBlog/~4/-UTqN7Sc18c" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://jasswin.blogspot.com/feeds/3614766857501245768/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=8499405264120315106&amp;postID=3614766857501245768&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/3614766857501245768?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8499405264120315106/posts/default/3614766857501245768?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/JasswinsBlog/~3/-UTqN7Sc18c/young-looking-skin-without-supplement.html" title="Young-looking Skin without Supplement!" /><author><name>Jasswin</name><uri>http://www.blogger.com/profile/02707616725078077517</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://lh5.ggpht.com/_KlMNPMnIRbE/SrNFi4BSPiI/AAAAAAAAAzE/XXDRtaPGsJ0/s72-c/image_thumb%5B16%5D.png?imgmax=800" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://jasswin.blogspot.com/2009/09/young-looking-skin-without-supplement.html</feedburner:origLink></entry></feed>

