Friday, February 26, 2010

I have been approved for Google’s AdSense Program…HOORAY…

I applied for this program last late last week and 2 days before I have been approved….Now Google’s advertisements are appearing on all my web sites and I will be paid when people click on those ads…I have put payment on hold so that it will increment and when I have enough USD I will release the hold…HOORAY…

Wednesday, February 24, 2010

Google has approved me for their AdSense service....

Hooray...

Google this afternoon approved me for Google AdSense and Google advertisements are appearing on all my web sites: http://www.guestworm.com , http://www.spygerm.com , http://www.neeservices.com , and finally http://www.guestgerm.com

Now I am eligible for Google AdSense and I will receive monthly pay checks from Google for clicks on those ads...I have made the payments on hold and to receive the payments periodically as lump sums...WOW...Google is really cool!!!

Sunday, February 14, 2010

Last night I started to use Google’s Adwords service…

Last night which is really part of today I have paid and taken google’s adwords…Adwords is google’s main source of revenue generating billions of dollars of revenue to google…

I paid USD 10 ( 5 USD for activation and 5 USD for my bid for one month )…Most web developers ( almost all ) in Maldives don’t use this service because they have to pay…But they are not aware that how cheap it could be ( or how expensive it could be if they decided to bid more )…

There is no minimum limit to paying for google’s adwords service…I am paying only 0.16 USD per day for my advertisement in google search which sums to only 5 USD per month…

So why don’t you use the service…Here is the link: http://adwords.google.com

Aren’t you impressed about my conduct…WHAT A BOAST!!!

Cheers

Friday, February 12, 2010

How to connect your hotmail, MSN mail, or live mail in Outlook…

This is very easy…But one should note that hotmail, msn mail and live mail is web based…But Microsoft offers outlook connector which can be downloaded on this link: http://www.microsoft.com/downloads/details.aspx?FamilyID=9A2279B1-DF0A-46E1-AA93-7D4870871ECF&displaylang=en

The outlook connector enables you to read any type of Windows Live Mail for free…But it requires Outlook 2003 or 2007 in the current version of outlook connector…Also the license to use tells the user should use genuine Microsoft Office but forget this as we are third world country: Maldives.

How to know whether your e-mails are read…

Well there are hacks on the internet which you can use to find out  whether your e-mail’s sent are read by the recipient…But at the time of this blog post none of the famous web e-mails like hotmail, gmail, and yahoo mail offers read reports…

A very simple way of knowing whether your e-mail is read is to use www.readnotify.com service…A trial period is offered where you can send 25 e-mails and than you have to buy a package…I have used the service for sometime but I don’t care much whether my e-mail is read or not…

The service is very simple to use…

Thursday, February 11, 2010

Google’s free tools are the worlds best…

Google offers a range of tools and services which have helped millions of people ( including me ofcourse ) in their private lives…Ofcourse the most used is the search engine itself which made the majority share holders and founders Larry Page and Sergey Brin multi billionaires…

Some of the free tools I am using includes:

Google Analytics at http://www.google.com/analytics/ which offers free and very very detailed statistics of a web site…I am using it on all my domains since last year…

Google Maps at http://maps.google.com which shows maps and integrated satellite pics of any area on the Earth…It is really cool and I have used it to identify the location of a girls house I am after…

Google Webmaster tools at www.google.com/webmasters/tools/ is another free service for webmasters…I am using it…

Google sites at http://sites.google.com/ is a free web hosting service for anyone…My site is at: http://sites.google.com/site/guestworm/

So that’s it…enjoy Google…The world’s most powerful brand name!!!

Monday, February 8, 2010

IBM launches the POWER 7 processor…

IBM today launched it’s new POWER 7 microprocessor…The processor comes in varieties of 4, 6, or 8 cores each core capable of executing 4 software threads…Processor  runs at clock speeds of above 4GHz and will compete Intel’s processors code named Nahalem…The POWER 7 is a Unix processor!!!

Friday, January 29, 2010

Oracle completes acquisition of Sun Microsystems…

On 27 January 2010, Oracle announced that it has completed the acquisition and merger of Sun Microsystems…

Here is Oracles link :  http://www.oracle.com/us/corporate/press/044428

Oracle acquired Sun in April 2009 for about 7 billion USD and had now completed the acquisition…I visited Sun’s web site a minute ago and it directed to Oracle’s web site…

Lets see how Oracle do with Java and SPARC processors and Solaris ( and Solaris based work stations )…

Really great…

Tuesday, January 12, 2010

My blog profile updated…

Dear reader…I have updated my profile to give you more accurate information…Previously I have given my occupation as an intelligence expert which I am not…I have not developed any professional skills in life so I updated this part as a hobbyist software developer which is more accurate…I have removed my Zodiac sings which as a Muslim, I don’t believe in….

So cheers…I hope you enjoy browsing through these blog posts and hope the content is informative, and educational.

Tuesday, January 5, 2010

Delayed justice……

I made a plea to Maldives Police Service on the continued harassment and disturbance I keep receiving from Shumais…Also his mother Wafeesha was also summoned to Capial Police a few weeks back…

Shumais and Wafeesha showed copies of my e-mails I had send to them…

The boys in blue admonished Shumais and his mother about not disturbing me and harassing me…THE QUESTION I ASK FOR MY SELF IS WILL THEY ACCEPT IT AND STOP MAKING ANONYMOUS E-MAILS AND KEEP ADDING ME IN MSN ?…IT IS ABOUT TO BE 6 YEARS SINCE THEY LOST MY GOOD WILL AND FRIENDSHIP…….I hope they understand and stop harassing me!!!

Monday, December 14, 2009

A Java applet that compares 3 integers…

Here is the source code of Java applet I have written which compares 3 integer numbers and outputs the biggest and the smallest number….I wont explain the code…

 

import javax.swing.*;
import java.awt.Graphics;

    public class ComparisionApplet extends JApplet{

           String result;
           String result1;

                   public void init()
                          {

                    int number1;
                    int number2;
                    int number3;

                    String numbera;
                    String numberb;
                    String numberc;

                    numbera = JOptionPane.showInputDialog("Enter first integer:");
                    numberb = JOptionPane.showInputDialog("Enter second integer:");
                    numberc = JOptionPane.showInputDialog("Enter third integer:");

                    number1 = Integer.parseInt(numbera);
                    number2 = Integer.parseInt(numberb);
                    number3 = Integer.parseInt(numberc);

                    if(number1 > number2)
                    if(number1 > number3)
                         {
                         result = number1 + " is the biggest number";
                     }

                    if(number2 > number1)
                    if(number2 > number3)
                       {

                         result = number2 + " is the biggest number";
                     }

                    if(number3 > number1)
                    if(number3 > number2)
                         {

                         result = number3 + " is the biggest number";
                      }

                    if(number1 < number2)
                    if(number1 < number3)
                       {

                        result1 = number1 + " is the smallest number";

                       }

                    if(number2 < number1)
                    if(number2 < number3)
                        {

                         result1 = number2 + " is the smallest number";
                         }

                    if(number3 < number1)
                    if(number3 < number2)
                     {

                       result1 = number3 + " is the smallest number";
                    }

        }

            public void paint(Graphics g)
                    {

               super.paint(g);

                    g.drawString(result,25,70);
                    g.drawString(result1,25,100);

                }

}