Ask HN: What Programming Do I need for a Startup?
With posts today on the youth employment crisis and "why you need a startup" I want to know what I should focus on. In high school and college I did a good bit of HTML on my own. I took C++ classes and decked out my TI-83 with calculator BASIC. I was 1 class short of a CS Minor. Not a complete noob at least.
I've played around with iPhone programming and Eclipse for Android but haven't gone full-bore. What I really want to know is if I have a few ideas, what do I need to realize them?
Say I wanted to make an Instagram clone (I don't). I'd need to know the App OS language and then MySQL or another database for the app to access? Plus a web interface of some kind to also interface with the database. And I feel like PHP or Ruby come into play.
I want to learn and have some background to build on but don't have any idea what it is I need to learn to actually go through the process.
7 comments
[ 2.9 ms ] story [ 26.0 ms ] threadOk. Really stupid question time then. I understand most of what I'm working on for the mobile app.
Am I right about MySQL as a direction for what the app talks to?
I might try another project first that doesn't need outside data to get my feet wet. I may be getting ahead of myself here.
I don't know if this helps, but if I were starting from scratch today I'd choose either Ruby or Python for the web services level. They're fun, easy to learn languages that are powerful enough to get the job done.
To me, anyway, it's like a foreign language. If you try to learn 3 in tandem, you may end up slowing yourself down. Get to a reasonable degree of fluency in one and the others will be easier.
Also, I don't recommend having a mobile app interface with your database directly. Always expose a web service and have it interface with your db. The great part about this work is that it sets you up for exposing a public API in the future, should you decide.
App first with dummy data seems like a doable first step.