Android developer challenge 2

Android developer challenge 2

 

 There is 10 categories, a application should be part of any one category, this should be done within August 2009.

 

 

First round

  1. In late of August, users with Android handset and access to Android Market can download the application for the contest and judge them. 
  2. The users test the application and rate the application, on some set of criteria.
  3. From result of the first round, 20 application from each 10 categories will go to the second round.

Second round

  1. Android users will now be able to download the 20 applications selected in 10 categories, and evaluate like done in first round.
  2. This community vote (Android users ranking of application) will be considered for 45%.
  3. Google judges will evaluate the application for 55%.

Prizes
Prizes for each 10 category

  • 1st prize US$100,000
  • 2nd prize US$50,000
  • 3rd prize US$25,000

 

Prize across all category

  • 1st prize US$150,000
  • 2st prize US$50,000
  • 3st prize US$25,000

From http://code.google.com/android/adc/

Share
Tagged with:
 



ASUS P6T7 WS SuperComputer Workstation Motherboard

ASUS P6T7 WS SuperComputer Workstation Motherboard

Asus yesterday launched the most powerfull parallel computing solution with its ASUS P6T7 WS SuperComputer motherboard.

Specification
Supported CPU – Socket LGA1366
Chipset – Intel x58/ICH10R NVIDA nForce200x2 chipset
RAM – 6xDIMM slots (Maximum RAM size 24GB)
Expansion slots – 7xPCIe 2.0×16 (3xPCIe 2.0×16 @x16/x8, 3xPCIe 2.0×16@x8, 1xPCIe 2.0×16)
CUDA support – 3 NVIDIA Tesla cards + 1 NVIDIA Quadra card upto 960 cores
Storage – 6xSATA@3Gb/s, 2xSAS Ports, 2xeSATA 3Gb/s
Audio – 8-channel high definition audio CODEC
LAN – Realtek 8111c Dual Gb LAN
USB – 12xUSB 2.0 ports

Share
Tagged with:
 

The main function

On May 12, 2009, in linux, linux articles, linux programming, by mahesh
0


The main function is the first program that gets executed when the program starts, what else is so important about this? good, there are some more to learn about this main function lets start.

the prototype
int main()
or
int main(int argc, char *argv[])
or
int main(int argc, char **argv)
or
int main(int argc, char **argv, char *env[])
or
int main(int argc, char **argv, char **env)

Note: char ** and char *[] are the same
Is the last two prototypes valid? yes, it is valid. We will discuss later

(more…)

Share
Tagged with: