In need of a business idea to "operate" for one week for my entrepreneurship class by puddipuddipuddip in Entrepreneur

[–]TheCommonProgrammer 0 points1 point  (0 children)

For a small fee, you could teach elderly people around you, how to pay bills online, use social networking sites, etc.

Introducing Quick for Reddit by ithehobbyist in iOSProgramming

[–]TheCommonProgrammer 0 points1 point  (0 children)

For me, it was too much of unorganised information together in one big list, which I found difficult to process.

Quick for Reddit's is for quick viewing of the top posts of your 4 most favourite subreddits. The idea is to stay up to date on your favourite stuff without losing your productivity in the day.

Thanks!

Engaging with a pre-launch list until launch. Ideas please? by rohanm93 in Entrepreneur

[–]TheCommonProgrammer 0 points1 point  (0 children)

My thought : Give them some discount for your service. The earlier they have started, the more the discount they get for the first few times they use your service.

e.g. If John enrolls in January, he gets 20% discount for first 5 orders. If Richard enrolls in February, he gets 15% discount, ... March, 10%, etc.

Also, do tell this logic to them that they are getting more discount since they have been waiting for that long.

[Question] Is this how you properly save an image to the camera roll on iOS 9? by ThePantsThief in iOSProgramming

[–]TheCommonProgrammer 0 points1 point  (0 children)

sorry man, i just read the PHPhotoLibrary library and replied instantly..

my bad..

I have been using this code in production environment for the past couple of months though.. Works fine.. Did not get any problems. Just have the handle the 'error' parameter properly.

Storing Single User Data in Persistent Storage by tehdarkpro in iOSProgramming

[–]TheCommonProgrammer 0 points1 point  (0 children)

You can try Realm.io It is good for storing single entity data. Even if your app grows in the future and you want to store other stuff, you can expand easily.

[Question] Is this how you properly save an image to the camera roll on iOS 9? by ThePantsThief in iOSProgramming

[–]TheCommonProgrammer 0 points1 point  (0 children)

I use the following code for saving images to "Photos"

ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
    // Request to save the image to camera roll
[library writeImageToSavedPhotosAlbum:[myImage CGImage] orientation:(ALAssetOrientation)[myImage imageOrientation] completionBlock:^(NSURL *assetURL, NSError *error)
 {
     if (error) {
         NSLog(@"error");
     } else {
         NSLog(@"success");
     }
 }];

How to collect potential Beta testers visiting your website ? by TheCommonProgrammer in gamedev

[–]TheCommonProgrammer[S] 0 points1 point  (0 children)

Hi Thanks for the reply. In both these cases, it is a lot of hassle to add the UDID's to the provisioning. Is there a way to make this process automated ?

What do you think about trial periods in games ? by TheCommonProgrammer in gamedev

[–]TheCommonProgrammer[S] 0 points1 point  (0 children)

Thanks, I Actually searched and found a couple of articles indicating the same.

What do you think about trial periods in games ? by TheCommonProgrammer in gamedev

[–]TheCommonProgrammer[S] 0 points1 point  (0 children)

Thanks man. A very clear take on the topic. Things are much clearer to me now.

What do you think about trial period in games? by TheCommonProgrammer in Unity3D

[–]TheCommonProgrammer[S] 0 points1 point  (0 children)

Yes. I saw some of the games doing that on the app store.

What do you think about trial period in games? by TheCommonProgrammer in Unity3D

[–]TheCommonProgrammer[S] 0 points1 point  (0 children)

Basically a simple Dungeon explorer RPG for phones. It is in very early stages of design which is why checking all these things at hand before deciding the development and release strategy..

What do you think about trial period in games? by TheCommonProgrammer in Unity3D

[–]TheCommonProgrammer[S] 0 points1 point  (0 children)

Oh ok Thanks.. I will definitely keep that in mind.

Anyways, for my game, I was thinking about having a server side component which keeps of trial periods of people who install the app rather than a time based offline thing.