Wednesday, December 10, 2008

How to zoom picture


Before you understand this topic, you might be see image on side. That picture was change after edit with me by Photoshop.

How to zoom picture with high resolution ?

I want to help you by this step :

First, choose picture whatever you like. Then the second step, please you open a Photoshop application. After you open it, drag your picture that you was choose or click File - Open (choose picture).

Third step is click Image - image size, you can see that have dialog box in out layer. You can type between width and height. More and more type a number, you'll get bigger than the last picture

Notice ! : don't type and change resolution


Bravo !

That's my expression ! You will be able profesional editor.

Sunday, October 19, 2008

Indonesia Title in the world


The Republic of Indonesia (pronounced /ˌɪndoʊˈniːziə/, /ˌɪndəˈniːʒə/) (Indonesian: Republik Indonesia), is a country in Southeast Asia. Comprising 17,508 islands, it is the world's largest archipelagic state. With a population of 222 million people in 2006, it is the world's fourth most populous country and the most populous Muslim-majority nation; however, no reference is made to Islam in the Indonesian constitution. Indonesia is a republic, with an elected legislature and president. The nation's capital city is Jakarta. The country shares land borders with Papua New Guinea, East Timor and Malaysia. Other neighboring countries include Singapore, the Philippines, Australia, and the Indian territory of the Andaman and Nicobar Islands.

The Indonesian archipelago has been an important trade region since at least the seventh century, when the Srivijaya Kingdom traded with China and India. Local rulers gradually adopted Indian cultural, religious and political models from the early centuries CE, and Hindu and Buddhist kingdoms flourished. Indonesian history has been influenced by foreign powers drawn to its natural resources. Muslim traders brought Islam, and European powers fought one another to monopolize trade in the Spice Islands of Maluku during the Age of Discovery. Following three and a half centuries of Dutch colonialism, Indonesia secured its independence after World War II. Indonesia's history has since been turbulent, with challenges posed by natural disasters, corruption, separatism, a democratization process, and periods of rapid economic change.

Across its many islands, Indonesia consists of distinct ethnic, linguistic, and religious groups. The Javanese are the largest and most politically dominant ethnic group. As a unitary state and a nation, Indonesia has developed a shared identity defined by a national language, ethnic diversity, religious pluralism within a majority Muslim population, and a history of colonialism and rebellion against it. Indonesia's national motto, "Bhinneka tunggal ika" ("Unity in Diversity" literally, "many, yet one"), articulates the diversity that shapes the country. However, sectarian tensions and separatism have led to violent confrontations that have undermined political and economic stability. Despite its large population and densely populated regions, Indonesia has vast areas of wilderness that support the world's second highest level of biodiversity. The country is richly endowed with natural resources, yet poverty is a defining feature of contemporary Indonesia.

Persamaan kuadrat JAVA

Buatlah sebuah Class yang berisi persamaan kuadrat a*x^2+b*x+c=0 (ingat rumus
D = b*b - 4*a*c)
dengan variable a,b,c,D bertipe double, a = 4, b = -13,c = -12



public class persamaan
{
public static void main(String[] args)
{
double a = 4;
double b = -13;
double c = -12;
double D = b*b - 4*a*c;
double x1, x2;
System.out.println("Persamaan kuadrat a*x^2+b*x+c=0, di mana");
System.out.println("a = " + a);
System.out.println("b = " + b);
System.out.println("c = " + c);
System.out.println("dengan menerapkan rumus ABC diketahui bahwa
: ");
if(D<0)
{
System.out.println("Akar-akar persamaan imaginer.");
}
else
if(D==0)
{
System.out.println("Akar-akar persamaan nyata tetapi
kembar.");
x1 = -b/(2*a);
System.out.println("x1 = x2 = " + x1);
}
else
{
System.out.println("Akar-akar persamaan nyata dan
berbeda.");
x1 = (-b+Math.sqrt(D))/(2*a);
x2 = (-b-Math.sqrt(D))/(2*a);
System.out.println("x1 = " + x1 + " x2 = " + x2);
}
}
}