Saturday 20 October 2012

Stunning Dress PSD

Download this stunning Dresses PSD..

  • Almost all Photo Studios use this PSD.

  • Take your portrait photo with normal dress and attach one of your favorite dress.

    change your dress to different types of suits, police uniforms, different formal  dresses, Indian traditional dresses etc etc..

  • You might not have found this  PSD before.

    I hope it will be very use full to photographers and Photoshop geeks.

    dress psd


     Download the psd here

    enjoy..

     

How to run java programs using command prompt



A video tutorial on How to run java programs using command prompt by my friend Bharath




Enjoy :P

Friday 19 October 2012

Avengers for Nokia s60V5

Download Avengers for Nokia s60V5

 

Click here to download

tested in Nokia C5-03

enjoy..



Amazon jewels flash game for Nokia S60V5

Download Amazon jewels flash game for Nokia S60V5

Its very nice time pass game..


 

Click here to download

tested in Nokia C5-03

Enjoy..

Cannon Rats HD for Nokia S60V5

Cannon Rats HD for Nokia S60v5

Its a very nice game similar to Angry Birds. But it takes very less memory than Angry Birds..


 Click here to Download

tested in Nokia c5-03

enjoy..

Monday 15 October 2012

Photoshop PSD's

Download Photoshop Document File and give your photo an amazing touch...

Click to download: 

1.Nature psd 

 

 

2.Bird Wings psd

nature psd


4.Bird wings2


 

Enjoy photoshoping. . .

Assassin's Creed II HD for Nokia s60V5

Assassin's Creed II HD for Nokia s60V5 HD for S60v5

 Download Assassin's Creed II here

Download Assassin's Creed II here

game tested with nokia c5-03 

Wrath of Titans for Nokia s60v5

Download Wrath of Titans for Nokia s60v5

Download Wrath of Titans here


wt snapshot1

wt snapshot2




Download Wrath of Titans here

Game tested in nokia c5-03

Picsel Smart Office for Nokia s60 v5 (Working)

Picsel Smart Office was created to deliver the next generation of Office on mobile. Truly extending the office decision making capabilities of the mobile worker, this application is the next leap forward in document viewing and editing. Picsel Smart Office is built upon the company’s long standing heritage of accurate content replication and Zoom and Pan technology. The application also features the new signature Picsel User Interface and 3D Stereoscopic support!

download Picsel Smart Office here

Open and edit/create any Microsoft office  documents , pdf file, images, smooth interface, 3d view of all documents etc etc...

Picsel Smart Office snapshot

 

download Picsel Smart Office here

App tested in nokia C5-03

Sunday 14 October 2012

how to swap two numbers without using temporary variable and without using arithmetic operators.?

In previous post i had mentioned about how to swap two numbers without using temporary variable. But how to swap two numbers without using temporary variable as well as without using arithmetic operators.?

You might  have seen this question in any of the coding competitions or technical interviews.

It can be done using xor  operator

So i think its quite tricky than the previous question (previous post). Because students will not be familiar with these kind of operators. 

So i think it might be helpful for many students or coding geeks..

 

The code for the same is given below:

 

#include
void main()
{
    //swapping without using temporary variable
    //as well as without using arithmetic operators
    int a=100,b=200;


    printf("\nBefore swapping a:%d, b=%d",a,b);

    a=a^b;
    b=a^b;
    a=a^b;

    printf("\nAfter swapping a:%d, b=%d",a,b);

    getch();

}


output: 


Before swapping a:100, b=200
After swapping a:200, b=100

Also see my previous post on how to swap two numbers without using temporary variable and using arithmetic operators. 


how to swap two numbers without using temporary variable.?

Its very easy to swap two numbers using temporary variable. but how to swap without using temporary variable.?

This is one of the question in most of the coding competitions and technical interviews.

So i think it might be helpful for many students or coding geeks..

It can be done using arithmetic operators

The code for the same is given below:

 

#include
void main()
{
    //swapping without using temporary variable
    //but usng arithmetic operators
    int a=15,b=20;
    clrscr();

    printf("\nBefore swapping a:%d, b=%d",a,b);

    a=a+b;
    b=a-b;
    a=a-b;

    printf("\nAfter swapping a:%d, b=%d",a,b);

    getch();

}


output:

 Before swapping a:15, b=20