Showing posts with label of. Show all posts
Showing posts with label of. Show all posts

Thursday, March 12, 2015

Announcing the Archive Feed of the Documents List API

Users of the Google Documents List API have traditionally had to perform individual export operations in order to export their documents. This is quite inefficient, both in terms of time and bandwidth for these operations.

To improve latency for these operations, we have added the Archive Feed to the API. Archives allow users to export a large number of items at once, in single ZIP archives. This feature provides a useful optimization for users, greatly increasing the efficiency of export operations. Additionally, users can receive emails about archives, and choose to download them from a link provided in the email.

This feature had a soft release earlier this year, and we think it’s now ready for prime time. For more information, please see the Archive Feed documentation.

Vic Fryzel profile | twitter | blog

Vic is a Google engineer and open source software developer in the United States. His interests are generally in the artificial intelligence domain, specifically regarding neural networks and machine learning. Hes an amateur robotics and embedded systems engineer, and also maintains a significant interest in the security of software systems and engineering processes behind large software projects.

Thursday, February 26, 2015

Get Thousands of Facebook Likes

By Syed Hassan Ali

Hello Friends today I am going to tell you guys a hidden tip about getting thousands of facebook page likes, facebook photo likes, facebook comments, facebook subscribers, youtube likes, youtube subscribers, google plus, google circle and all other social networks like twitter followers etc in a very easy way.
Social Networking has become a powerful mean of advertising your products as well as personality wise you can make your self famous. But to do that you need a proper tool or platform. Well I have all this for you.
There is a website which allows you to like other people pages, pics and posts etc and in return provide you points. You can use these points to get likes, comments, shares or whatever you want. Just follow the tutorial given below and get thousands of facebook likes.

1:- Click the link given below to sign up


how to get easy facebook page likes
Click Here to Signup to get thousands of Facebook Likes












2:- Register your account

3:- Start liking some pages and earn points

5:- On Pages Manager Post your facebook page url, pic url which ever u want thousands of likes

6:- Give the title

7:- Select the CPC (Cost per Click). Mean how many points you want to give for one like

8:- Enjoy Likes coming to your page

Dont forget to share our post with your friends

Monday, February 16, 2015

Java Program for Addition of two Matrices

import java.util.Scanner; //import Scanner class in our program

class demo
{
public static void main(String...s)
{
int i,j,n,m;
Scanner sc=new Scanner(System.in); //used to read from keyboard

System.out.print("Enter number of rows:");
m=sc.nextInt();
System.out.print("Enter number of columns:");
n=sc.nextInt();

int a1[][]=new int[m][n];
int a2[][]=new int[m][n];
int a3[][]=new int[m][n];

System.out.print("
Enter elements of first matrix:
");

for(i=0;i<m;++i)
for(j=0;j<n;++j)
a1[i][j]=sc.nextInt();

System.out.print("
Enter elements of second matrix:
");

for(i=0;i<m;++i)
for(j=0;j<n;++j)
a2[i][j]=sc.nextInt();

System.out.print("
Addition of Matrices:
");


for(i=0;i<m;++i)
{
for(j=0;j<n;++j)
{
a3[i][j]=a1[i][j]+a2[i][j];
System.out.print(a3[i][j]+" ");
}
System.out.print("
");

}


}
}

Java Program for Addition of two Matrices

Thursday, February 12, 2015

C program to calculate roots of quadratic equation ax 2 bx c 0


C program to calculate roots of quadratic equation ax^2+bx+c=0

#include<stdio.h>
#include<conio.h>
#include<math.h>


void main()
{
float root1,root2,a,b,c,d;
clrscr();
printf("Quadratic Equation is ax^2=bx+c=0");
printf("
Enter values of a,b and c:");

  scanf("%f%f%f",&a,&b,&c);


d=(b*b)-(4*a*c);
if(d>0)
{
printf("
Two real and distinct roots");

root1=(-b+sqrt(d))/(2*a);
root2=(-b-sqrt(d))/(2*a);
printf("
Roots are %f and %f",root1,root2);

}


else
if(d==0)
{
printf("
Two real and equal roots");

root1=root2=-b/(2*a);
printf("
Roots are %f and %f",root1,root2);

}
else
printf("
Roots are COMPLEX and IMAGINARY....!!!");

getch();
}

Tuesday, February 10, 2015

Java program to find sum of digits of a number

Java program to find sum of digits of a number

class sum
{
public static void main(String...s)
{
int n,i,sum=0;
n=Integer.parseInt(s[0]);

while(n!=0)
{
i=n%10;
sum+=i;
n/=10;
}

System.out.println(sum);
}
}