Search This Blog

Friday, 17 February 2012

Minecraft Pocket Edition

Well, it was out LONG AGO.. But there is an upcoming update..

ITS GOING SURVIVAL... Pocket edition for minecraft is currently creative (without the flying and all types of blocks).

It currently has only a couple of items for free:

  • 6 colors of wool,
  • Stairs
  • Basic blocks ( wood, stone, etc)
etc
I have to say it seems like pocket edition has a great potential.. Though being on your cell phone the max i believe they could do would be to add creepers and farming.. Which sadly would lag for phones who arnt that great

How to get the app (creative [18/2/12])

FOR ANDROID


There are two:
Free
Paid
To get Free:

  • Visit: This
  • Download it (click install)
  • It is sent to your phone for downloading (Just open the market on it)
  • Its installed now and you got it
To get Paid:

  • Visit:this
  • Click the buy button.
  • This will take you to a page to log in (if not logged in)
  • Or Enter your details ... And it will be sent to your phone
  • (Open market to install it.)
  • Now u have it.


More about the app:
Well, Now that you have it .. The controls (for android) will be seen when you press the menu button on your phone.

Ok about the app,
It was initially released for Xperia Play.. Which then was available for all android and was recently released for apple.

Thats about it for the app..
Thanks and keep visiting the blog as many times as you can!
                                        -Potatoes! (Yup.. POTATOES!)

Thursday, 16 February 2012

Java Programs (Printing out ASCII Codes of letters)


class asciiCodes
    {
        public static void main()
        {
            char i;
            char j;
            for(i='a';i<='z';i++)
        {
            System.out.println(i+"       "+(int)i); // The (int) part converts letters to asciiCode
        }
    }
}

Wednesday, 15 February 2012

Program Java Even or Odd


class evenOdd
    {
        public static void main(int no)
        {
           if(no%2==0) // Modulus (dunno how to spell it) find the remainder.. If its an even                              {                                                                                  //number the thing is 0

               System.out.println("Even number");
            }
            else
            {
              System.out.println("Not an even number");
            }
        }
    }

Java Programs

Well, I've been gone for a LONG TIME.... You probably dont care..
Anyway i learnt Java and will be posting some small... tiny.. freaking easy programs...