SMS Hindi

SMS Hindi is now available on App store. We hope that you would enjoy the app and provide us with any feedback or comments that you may have.

SMS Hindi can be downloaded from
http://itunes.apple.com/us/app/sms-hindi/id478296007?mt=8

Posted in SMS Hindi | Tagged , , , , , , , , | Leave a comment

SMS Nepali

SMS Nepali is now available on App store. We hope that you would enjoy the app and provide us with any feedback or comments that you may have.

SMS Nepali can be downloaded from
http://itunes.apple.com/us/app/sms-nepali/id463110482?mt=8

Posted in Uncategorized | Tagged , , , , , , , , | Leave a comment

XCode – Making objects move

Tutorial 1:

Making objects move.

Once we have the Xcode setup there are three things we need to consider to make the objects move.

  1.  –ViewController.h
  2.  –ViewController.m
  3. –ViewController.xib


Code for --ViewController.h

@interface GeekyLemonOneViewController : UIViewController {
IBOutlet UIImageView *image;
NSTimer *moveObjectTimer;
}

Code for –ViewController.m

-(void) viewDidLoad{
moveObjectTimer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(moveObject) userInfo:nil repeats:YES];
}

-(void) moveObject{
image.center = CGPointMake(image.center.x, image.center.y +5);
}

Lastly, place your image on .xib and attach it to the FileOwner.

Regards,
Deeper-programming

Posted in Uncategorized | Leave a comment

Baghchal available on App store

Baghchal is now available on App store. We hope that you would enjoy the game and provide us with any feedback or comments that you may have.

http://itunes.apple.com/us/app/baghchal/id439564667?mt=8

Have fun playing the game!!

Regards,
Deeper-programming

Posted in Baghchal | Tagged , , , , , , , , , | Leave a comment

Baghchal submitted for approval

We have submitted Baghchal to Apple for approval. If everything goes well we will be able to play Baghchal soon. Fingers crossed.

http://itunes.apple.com/us/app/baghchal/id439564667?mt=8

Regards,
Deeper-programming

Posted in Baghchal | Leave a comment

What is Unobtrusive JavaScript?

If we look at the dictionary, the word obtrusive means “having or showing a disposition to obtrude, as by imposing one-self or one’s opinions on others”. The synonyms are as interfering, meddlesome etc.

Hence, unobtrusive is just the opposite of obtrusive i.e. non interfering or meddlesome.
Unobtrusive Javascript as it suggest just means non-interfering or non-meddlesome javascript.

If we are able to remove the javascript from the source document and place it in an external file, then we are “almost” there to say we have achieved unobtrusive javascript. The reason we stressed almost there is because unobtrusive javascript is a technique where we separate the behaviour layer from the presentation layer.

Posted in Uncategorized | Leave a comment