Google AdSense tracks extraterrestrial visits to your site

Google AdSense now can track the visitors beyond the earth. After you login to your AdSense account, you will be able to see how many visits to your site are from the other planets and how much revenue those visits have generated. Unfortunately, my blog site is not that popular, so it didn’t attract many extraterrestrial visits, thus didn’t generate any revenue. How about your site?  

When was the last time you used a disk?

Do you still remember when you used a disk last time? Or do you even know what a floppy disk or zip disk is? I don’t recall when was the last time I used a floppy disk, though I have a box of floppy disks lying there. But I remember it was in 2002 when I used a zip disk to transfer some “large” amount of files. So what is the next in line to […]

[FIXED] High memory usage in Windows 8.1

Are you experiencing high memory usage issue in Windows 8? Does you windows 8 use 90% of your memory and eventually crashes with the blue screen of death? This post will give your solution to fix it easily.

High memory usage in Windows 8.1 Pro – Again

In my previous post regarding the high memory usage issue with my new HP Envy laptop, which runs on Windows 8.1 Pro with 8GB RAM, I disabled Ndu.sys which, according to some people’s experience, was said to be the culprit. However, Ndu.sys does not seem to be the root cause of my issue because the high memory usage issue came back again yesterday, and eventually my computer crashed with a blue screen shown below.   […]

Build ASP.NET CustomValidator to validate credit card numbers

When accepting credit card payment in your web application, the best practice is to validate customer’s credit card number before sending it to the payment gateway. This post will show you how to use ASP.NET CustomValidator to check if a credit card number is well-formatted or randomly generated by using Luhn algorithm.

Add days, months and years in JavaScript

There is no built-in function that will let you add days, months, or years to a date, so this post will show you how to write your own function to accomplish the task.