0

Cleaning Macbook Pro Superdrive

My Macbook Pro’s superdrive was death, it was ejecting every cd/dvd when I insert it. Since new macbook’s unibody is not easy to dissemble every time to to clean something.So, easiest way to clean it, Philips Lazer Lens Cleaner which works very well. I wasn’t expected to get my drive back.

0

Simulating Wireless Sensor Network with OMNet++ on Mac OS X Lion

There are several network simulators available which are design for different purposes. Quick google will result survey papers discussing these simulator both advantages, disadvantages and usage areas. After deep diving into these simulator environments, OMNeT++ is the best logical option for simulating WSN (Wireless Sensor Networks). OMNeT++ is available as commercial and academic uses and actively developed.

Also, OMNeT++ provides infrastructure to develop components top off on it and WSN is available as 3rd party component. OMNeT++ models are available in its website. Mixim is a modeling framework for mobility and fixed networks which is necessary simulating wireless networks with OMNeT++.

OMNeT++ 4.2.1 and MiXiM 2.2.1 is greatly integrated and works well under Mac OS X Lion. After installing OMNeT++ MiXiM is imported into workspace and compiled under OMNeT++. To be able to compile and build tools latest XCode version is needed.

0

Status Update

I’m still getting Semantic Web topic suggestions emails from MS/PhD students however, I’m not working on Semantic Web directly, for some reasons I changed my main focus to Computer Networks and Networking related topics.

Currently, carrying out an NFC (Near Field Communication) R&D project supported by Minister of Science, Industry and Technology. My PhD thesis supposed to be on NFC related subject, I have some ideas on Health Care Systems and NFC but not finalized yet.

Also, trying to finish a paper for ICNFI 2012.

0

Making Rounded UIView’ on iPhone

I have started developing (mainly) iPhone apps late 2009 and I feel like I have some experience on iOS platform that I can share. I won’t be doing tutorial serias but just some tips and tricks.

Let’s start with some ui tips, there are 2 ways to make rounded views in iPhone. One is using layers which is inefficient way, second is using quartz in drawRect.

Using layers is really simple;


YourView *vw = [[YourView alloc] initWithFrame:CGRectMake(20, 20, 80, 80)];
vw.layer.cornerRadius = 16;
vw.layer.masksToBounds = YES;

simple. The right way is to handle in drawRect;

UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:self.bounds byRoundingCorners:UIRectCornerAllCorners cornerRadii:CGSizeMake(16.0, 16.0)]; //Add a bezier path
[path addClip]; // and clip

Both two will same view.

0

iPhone 4S Camera Test 3

I see my blog turns into iPhone Blog but I like this device :) This weekend I took some photos from my new toy :) new photos are taken in a cloudy day. I’ll try to take samples from different light conditions.

0

iPhone 4S Video Test

Here is a sample video take by iPhone 4S.

You have to visit this link to see it in full HD.

0

iPhone 4S Camera Test 2

Here some photos taken by iPhone 4S.

0

About iPhone 4S Sim Failure & Batter Usage

There are hundreds of posts & thousands of page views about iPhone 4S Batter Life at Apple Support Forums. A few days, I’ve faced same problems a few days like I had no sim and sim failure errors, network losses and a few hours with full charge ! It seems problem is related directly with Apple but still there are solutions, at least two things worked for me;

1 – Changing SIM card with new one ( currently 64Kb micro sim ) solved network loss and sim failure errors.
2 – Turning off a few location based services;

  • Settings -> Location Services On -> Siri Off
  • Settings -> Location Services -> System Services -> Cell Network Search & Compass Calibration is On and everything else Off.

The result is surprising, my iphone batter is 70 % with 1 day standby and 1 hour usage.

Update

You can still have 2 days standby with a few hours usage.

0

iPhone 4S Camera Test 1

New iPhone’s camera is much better than expected, still I’m playing with camera. So, Its too early to evaluate and compare with other devices. What I want is to share two photos taken through this device.

0

Finally iPhone 4S is Here

Siri is amazing ….

Pages ... 1 2 3 4 5 6 7 8 9 10 11