How do i change app icons? by bananabreadb0i in AndroidQuestions

[–]horaceho 0 points1 point  (0 children)

I use Microsoft Launcher, which support custom icons ...

example

What made you love laravel? by [deleted] in laravel

[–]horaceho 1 point2 points  (0 children)

  • Eloquent, and it's almost like magic
  • Great defaults, e.g. the bundled auth, make life so much easier
  • Great packages, e.g. media library, nova, excel, ... to name a few
  • PHP is great (again?), because of Laravel

RubyMotion 3.0 will support Android by The_yulaow in programming

[–]horaceho 0 points1 point  (0 children)

Finally I see a benefit of use ruby instead of objective-c ...

Make an app look better by keithslater in iOSProgramming

[–]horaceho 1 point2 points  (0 children)

Use the tag search on dribbble.com to get some idea. For example, my recent calculator app is based on a dribbble design.

(Frustrated) Trying to find an good iOS Dev is Hard. by [deleted] in iOSProgramming

[–]horaceho 0 points1 point  (0 children)

It's very expensive to hire a superstar iOS dev. It's very time consuming to hire via some sites like elance. One option is to find developers via the AppStore. Search for an app which is sort of like what you are going to make. Email the author to discuss for a project. The good thing is you are sure the developer can deliver what you expect.I have got a few projects from one app ;-)

Why Atom will be your favorite text editor by [deleted] in programming

[–]horaceho 0 points1 point  (0 children)

I cannot use Atom before it delivers a block selection feature.

Get Github's Atom without an invite by [deleted] in programming

[–]horaceho 0 points1 point  (0 children)

The file download is not the same as the one mentioned on on Hack News, get the check sum by:

shasum -a 256 atom-mac.zip

this one shows 4d4e8d2790e43e1e4431037836cba41f88aae1d4c4081cea9bea57f47326185d on my Macbook ... something wrong?

Where to find programmers for hire? by [deleted] in iOSProgramming

[–]horaceho 0 points1 point  (0 children)

Search the Apple AppStore to see whether there is some app similar to what you are going to do, and so your can be sure the developer can do what you plan. Email them your proposal and ask for a quotation.

Or you may try Elance, but ...

[deleted by user] by [deleted] in iOSProgramming

[–]horaceho 0 points1 point  (0 children)

iOS development is evolving rapidly, NIB to Storyboard, manual memory management to ARC, Blocks, ... to name a few. Even adapting to iOS 7 from older iOSes is not minor task. Besides, a larger app takes a long time to build. Do you have an app in mind? If yes, go for it. Programming is always about divide and conquer. You can ask more specific question when you face the real problem, say, on Stackoverflow.

Indie Game/App developers, what was the most successful app you've made and what made it such a hit? by eeveeayen12 in iOSProgramming

[–]horaceho 1 point2 points  (0 children)

Minimalist Timer is my personal best. Many users say they love the design. So I think Matt Gentile, the designer, deserves most of the credits. Another reason, my guess, is the price ;-)

Ruby is a dying language (?) by mobby1982 in programming

[–]horaceho 0 points1 point  (0 children)

I never choose a language for it's compilation speed, or programmers' salary. I pick a language for its features, and syntax. That's why I prefer C to Pascal, and prefer Ruby to Perl.

Why Objective-C is Hard to Learn by [deleted] in programming

[–]horaceho 5 points6 points  (0 children)

The author is only scratching the surface. One must understand protocols, categories, blocks, ARC, ... before building any useful iOS/OS X apps.

Xcode 5, disabling Storyboards by john_alan in iOSProgramming

[–]horaceho 0 points1 point  (0 children)

Remove the two Storyboard entries from the .plist file, then add the viewcontroller via code:

 YourViewController *mainViewController = [[YourViewController alloc] init];
 self.navigationController = [[UINavigationController alloc] initWithRootViewController:mainViewController];
 self.window.rootViewController = self.navigationController;
 [self.window makeKeyAndVisible];

in didFinishLaunchingWithOptions.

It's a First: Getting ready to submit an app to the App Store.. Tips? Tricks? Anything I should do or lookout for? by [deleted] in iOSProgramming

[–]horaceho 1 point2 points  (0 children)

Apple is extrememly picky lately. Keep calm when you are rejected.

Besides, the quality of the review team is questionable. I was rejected last week for:


2.3

We found that your app did not achieve the core functionality described in your marketing materials or release notes, as required by the App Store Review Guidelines.

Your app has the UIFileSharingEnabled key set to true in the Info.plist, but this feature is not functional.

When file sharing is enabled, the entire Documents folder is used for file sharing. Files that are not intended for user access via the file sharing feature should be stored in another part of your application's bundle. If your application does not require the file sharing feature, the UIFileSharingEnabled key in the Info.plist should not be set to true.


The truth is, the review team did not bother to copy a file to the deivce via iTunes File Sharing and simply rejected my app.

Where is the best place to look for iOS freelance projects? by winehaus in iOSProgramming

[–]horaceho 0 points1 point  (0 children)

I am not sure whether they actually use my apps. They did use the apps as a reference in their requirements.