I discover a cool stuff this morning. Can you access to JayceOoi.cm? It is a typo you would say. It should be JayceOoi.com not JayceOoi.cm. But if you really try to enter JayceOoi.cm in browser. It will route you to agoga.com. Try that with JayceOoi.cm, Intel.cm or any other .com name you can think of. It should route you to agoga.com too.
Yeah… Kevin Ham is the man that did all of this. He tries to catch all the traffic generated from typo when we key in the website address. Normally, we will put .com but sometime .cm by mistake. Then, he got 1 hit from you already. ![]()
Below is the source code that will send email in Chinese or other character than English.
using System.Net.Mail;
MailMessage oMsg = new MailMessage();
oMsg.From = new MailAddress(”Email”, “Name”);
oMsg.To.Add(new MailAddress(”Email”,”Name”));
oMsg.Subject = “subject”;
oMsg.Body = “Chinese character”;
oMsg.BodyEncoding = System.Text.Encoding.GetEncoding( “utf-8″ );
SmtpClient c = new SmtpClient(”SMTP”);
c.Send(oMsg);
You can find more character set recognition at Microsoft page here.
Related topics:
Send email with attachment c# source code
RSS (Really Simple Syndication) is a web feed formats used to publish frequently updated digital content, such as blogs, news feeds or podcasts. But what is RSS? I never heard before. ![]()
By viewing on RSS, we as a reader can easily know the website that we visit is updated with latest news / stuff or not. This will save our time not to login to the website main page to check on the update. We can do so by simply click on the feed button like below. As you can see, “JayceOoi.com on the first page of Google!!!” is on the first of the RSS list, follow by “(rel=”nofollow”) on hyperlinks will not improve your website rank”. After I publish this post, there will be “What is RSS?” on top of them. Therefore, reader will know that Jayce Ooi’s Paradise has new post already.

There are a lot of ways to subscribe RSS. I use Firefox Live Bookmarks for my example above. You can subscribe it through email.
Below are some way to subscribe to Jayce Ooi’s Paradise.
Yeah… Finally, Jayce Ooi’s Paradise manages to get itself listed on the first page on Google when search using keyword - ‘jayce’.
It started at page 6. Then after few weeks when I checked again. Jayce Ooi’s Paradise already reach 2nd page at 2nd place. Today, I checked again. It reach first page already!!! While 3rd page on MSN and 7th page on Yahoo. ![]()
Thanks everyone that link to Jayce Ooi’s Paradise. It makes Jayce Ooi’s Paradise manages to be listed on Google first page. I will keep posting valuable post. Share knowledge that I have to everyone. Target == 1st place, 1st page on every search engine. ![]()

1st page on Google

3nd page on MSN

7th page on Yahoo
17 May
Posted by Jayce as Programming, Web - 68 views
(rel=”nofollow”) on hyperlinks will not improve your website rank? Is this true? Yes. It will not improve your website ranking as search engine will ignore it when it find (rel=”nofollow”) on hyperlinks.
Therefore, do not bother to leave comment at blog which have this (rel=”nofollow”) on their hyperlinks.
I did that a lot before I read this post. ![]()
Related topics:
DoFollow added… NoFollow removed… =)