AZOSH Group is created in Facebook……. To join AZOSH group, click here
Archive for March, 2010
I liked this following short animated movie……..
I came across a very good post at iPhone Dev SDK, and it is a very good one
- (void)readPlist
{
NSString *filePath = @”/System/Library/CoreServices/SystemVersion.plist”;
NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:filePath];
NSString *value; value = [plistDict objectForKey:@"ProductVersion"];
/* You could now call the string “value” from somewhere to return the value of the string in the .plist specified, for the specified key. */
}
- (void)writeToPlist
{
NSString *filePath = @”/System/Library/CoreServices/SystemVersion.plist”;
NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:filePath];
[plistDict setValue:@"1.1.1" forKey:@"ProductVersion"];
[plistDict writeToFile:filePath atomically: YES];
/* This would change the firmware version in the plist to 1.1.1 by initing the NSDictionary with the plist, then changing the value of the string in the key “ProductVersion” to what you specified */
}
Last night, I was given farewell by my colleagues at Vahzay. It was fun listening to everyone’s comments and suggestions. We had a great dinner at Gourmet Restaurant in Township, which was creamed with hilarious discussions. I really liked everyone’s participation and it surely will be a memorable one.
Everyone was sharing their experiences with me, and I asked them to try to repeat those words in response of this blog post; so that I can remember every day I spent with them in Vahzay. I will surely miss everyone there. Thanks everyone for your support in all sorts of things we did, either it is official meetings, development, dinners, table tennis, movies, gaming, long walks to mosque, etc etc. I pray for success for everyone.
Special thanx to companies (Alchemy, Tintash and MindStorm Studios) in which I was outsourced for some time, and they became an important asset in my career too. It was great pleasure working with them.
Thanx Vahzay for giving me such great opportunities in such a short time span. I wish our roads will cross again. Take care


