COLOR PICKER

Saturday, October 31, 2009

Daily computer wallpaper : Lamborghini wallpaper


(1024 x 768)

Click on image for large size and save it into your computer

Saturday, October 17, 2009

Daily computer wallpaper : Ferrari wallpaper


(1024 x 768)

Click on image for large size and save it into your computer

Wednesday, October 14, 2009

Daily computer wallpaper : Bugatti wallpaper


(1024 x 768)

Click on image for large size and save it into your computer

Wednesday, September 23, 2009

Daily computer wallpaper : New York Yankees wallpaper


(1024 x 768)

Click on image for large size and save it into your computer

Monday, September 7, 2009

Daily computer wallpaper : Mozilla Chrome wallpaper


(1024 x 768)

Click on image for large size and save it into your computer

Wednesday, September 2, 2009

Daily computer wallpaper : Why i can't sleep



(1024 x 768)

Click on image for large size and save it into your computer

Sunday, August 23, 2009

Daily computer wallpaper : Windows Vista

Thursday, July 16, 2009

Java radians to degree

*********************************************************************
COMPLETE SOURCE CODE FOR : RadiansToDegree.java
*********************************************************************


public class RadiansToDegree
{
public static void main(String[]args)
{
//radians value
double radians=1.5707963267948966;

//Get degree value for radians value equal to 1.5707963267948966
double degree=Math.toDegrees(radians);

System.out.println(degree);
}
}


*********************************************************************
JUST COMPILE AND EXECUTE IT
*********************************************************************

Java degree to radians

*********************************************************************
COMPLETE SOURCE CODE FOR : DegreeToRadians.java
*********************************************************************


public class DegreeToRadians
{
public static void main(String[]args)
{
//90 degree
double degree=90;

//Get radians value for 90 degree
double radians=Math.toRadians(degree);

System.out.println(radians);
}
}


*********************************************************************
JUST COMPILE AND EXECUTE IT
*********************************************************************

Saturday, July 11, 2009

Daily computer wallpaper : Harry Potter and the Half-Blood Prince


Harry Potter 6 by ~carnado on deviantART



(1280 x 1024)

STEP TO DOWNLOAD
1.Click on image to enter my deviant art site.
2.Click on "Full View".
3.Right click on image and save image into your computer.
I HOPE YOU WILL ENJOY IT

Monday, June 22, 2009

EzIcon

You can use this small tool to convert windows icon file (.ico) to 5 other images format like below

.tga
.bmp
.jpeg
.png
.psd


Click link below to download :
EzIcon.rar

JAutorunKiller

You can use this small tool to remove autorun file(autorun.inf) that usually use by computer viruses to start their program from removable drive. This is not mean autorun file is a malicious file. Autorun file is always use in compact disc when disc creator want executable file in the compact disc execute when user click on cd drive icon.Click link below to download :
JAutorunKiller.jar

Saturday, June 20, 2009

Daily computer wallpaper : Terminator Salvation


(1280 x 1024)

Click on image for large size and save it into your computer

Sunday, June 7, 2009

Daily computer wallpaper : Transformers 2


(1280 x 800)

Click on image for large size and save it into your computer

Tuesday, April 28, 2009

Free java decompiler

This is one of java decompiler that can be use to get java source file (file with .java as it's file extension) from any java class file (file with .class as it's file extension). Class file is a result after compiling process success without any syntax error.

Click link below to download



Wednesday, April 22, 2009

Daily computer wallpaper : Bad superman


(1024 x 768)

Click on image for large size and save it into your computer

Java get binary value from alphabet

Today, i have learned about how to get binary value from alphabet. You can try compile and execute java program below to get all binary value for A-Z and a-z.

*********************************************************************
COMPLETE SOURCE CODE FOR : JavaGetBinaryFromLetter.java
*********************************************************************


public class JavaGetBinaryFromLetter
{
public static void main(String[]args)
{
String a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";

for(int i=0;i<a.length();i++)
{
char b=a.charAt(i);
int temp=(int)b;
String c=Integer.toBinaryString(temp);
System.out.println("BINARY VALUE FOR LETTER "+b+" IS : "+c);
}
}
}


*********************************************************************
JUST COMPILE AND EXECUTE IT
*********************************************************************

Tuesday, April 21, 2009

Flash quote for blogger : Blame



Put into your blog by copy and paste html code below into your blog :

****************************************************************


<embed pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" allowscriptaccess="always" align="middle" type="application/x-shockwave-flash" height="90" src="http://sites.google.com/site/carnado2008/Home/BLAME.swf" width="468"></embed>
<br/>
<a href="http://java2everyone.blogspot.com"><font size="1">powered by JAVA2EVERYONE</font><a/></a></a>


****************************************************************

Saturday, April 18, 2009

Java ternary operator

Today i have learned about ternary operator in java. Before this, when i found it in java code, i will ask myself what it is and what we call it...now i will share with you what i understand about ternary operator.Now, see java code below

************************************************************
COMPLETE SOURCE CODE FOR : JavaTernaryOperator.java
************************************************************


public class JavaTernaryOperator
{
public static void main(String[]args)
{
int a=0;
int b=4;
int c=5;

//THIS IS EXAMPLE OF TERNARY OPERATOR
a=(b>c?b:c);

System.out.println(a);
}
}


************************************************************
JUST COMPILE AND EXECUTE IT
************************************************************

In the java code above, example of ternary operator is a=(b>c?b:c);.So, what it mean ?

This is the answer :
Value a is equal to b if b larger than c or value a is equal to c if b smaller than c.So, java code above has same meaning with java code below.


public class JavaTernaryOperator
{
public static void main(String[]args)
{
int a=0;
int b=4;
int c=5;

if(b>c)
{
a=b;
}
else
{
a=c;
}

System.out.println(a);
}
}


Now, you can choose which one you want to use when write your java program. It seem when we use ternary operator we can make our program more shorter.

Friday, April 17, 2009

Flash quote for blogger : Honesty



Put into your blog by copy and paste html code below into your blog :

****************************************************************


<embed pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" allowscriptaccess="always" align="middle" type="application/x-shockwave-flash" height="90" src="http://sites.google.com/site/carnado2008/Home/fla.swf" width="468"></embed>
<br/>
<a href="http://java2everyone.blogspot.com"><font size="1">powered by JAVA2EVERYONE</font><a/></a></a>


****************************************************************