Jun 17 2009

Blogger Backup

Category: Newsadmin @ 11:42 am

The Blogger Backup utility is intended to be a simple utility to backup to local disk your Blogger posts.

Using the GData C# Library, the utility will walk backward in time, from your latest post to your last, saving each post to a local Atom/XML file.

Download Blogger Backup

Tags:


Jun 15 2009

Simple Methods

Category: Javaadmin @ 11:23 am

public class methods {
	public static void main (String[] args)
 
	{
 
	 addition ();
	 multiplication ();	
 
	}
 
	public static void addition()
 
	{
		int no1 = 10;
		int no2 = 15;
		int add = no1+no2;
		System.out.println(add);
	}
 
	public static void multiplication()
 
	{
		int no3 = 12;
		int no4 = 10;
		int mul = no3*no4;
		System.out.println(mul);
	}
}

Tags: , , ,


Jun 11 2009

Temp Converter

Category: Javaadmin @ 12:19 am


//Purpose: Convert a Celsius temperature to Fahrenhit
 
public class tempConverter {
	public static void main(String[] args){
 
		float celsius = 100;
		float fahrenheit;
 
		//convert to Fahrenheit equivalent
		fahrenheit = 32 + ((9* celsius) / 5);
 
		System.out.println("Celsius temperature");
		System.out.println("  " + celsius);
		System.out.println("Equivalent Fahrenheit temperature");
		System.out.println("  " + fahrenheit);
		}
}

Tags: , ,


« Previous PageNext Page »