Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm a newbie programmer looking to start a niche social network. I'm looking for opinions on what you guys believe is the best language to create it in.

It's a mixed media site with all the usual functions including:

  • profiles
  • user to user messaging
  • new feeds
  • individual user blogs
  • user video/picture galleries

I am not willing to use a white label solution like kickapps/ning and the site needs far more customization than they can offer. The site will be a hub of information for males aged 18-30 and a place for them to learn, connect and contribute in a specific field.

Any thoughts or help would be greatly appreciated. At the moment I'm leaning towards Ruby.

share|improve this question

closed as not constructive by Will Sep 19 '11 at 12:07

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

21 Answers

Just pick one and go for it.

It's more important to get things done than bumble about thinking about the best way to do it.

share|improve this answer
1  
That said we all strive to create a site that will be a success...so not keeping a weather eye on the horizon is never a good idea. Look at a sites like MySpace originally developed in ColdFusion now ported to .NET. It started in CF because the shop (Intermix Media) built pretty much everything in CF. However, when it go so big that they needed more developers they found CF difficult to support - no one developed in CF any more. They moved to .NET and the Enterprise Application blocks provided by Microsoft. Take a look at the book ASP.NET 3.5 Social Networking for more on this topic. – Andrew Siemer Jun 13 '09 at 6:20

There is no 'best' language.

Nothing inherent about PHP/Ruby/.NET/J2EE/Whatever means it will be better or worse - it will depend entirely on the architecture of your solution.

Do what works for you to get something prototyped pretty quickly. Ruby (on Rails) is certainly not a bad choice.

Then optimise later if you need to (which in social networks is a nice problem to have)

share|improve this answer
I want to upvote this twice... – Rob Jan 5 '09 at 19:21

The best language to write a social network is a social network language, something like a DSL specifically designed for this. Unfortunately such a language does not exist (you could write it in LISP).

Other alternatives are php (facebook is written in php) or ruby or python or even java (Hi5) or ASP (myspace).

You can see some arhitecture choice made by large social newtorks

Facebook (php) Friendster (php) Plenty of fish (asp.net) Myspace (asp.net 2.0) Twitter (ruby) or Hi5 (java)

share|improve this answer

Given that you're a self-confessed 'newbie', I don't think the language choice is as important as the technology you will use. Assuming you don't know any languages well, you can't leverage that knowledge when building your application.

I think you should be looking at your requirements, such as:

  • Do I need fast turnaround?
  • Do I want very high scalability?
  • Is 24/7 accessability important?

Even questions like:

  • Can I find any programmers with the skills required?

could make the difference between success and failure of a commercial venture.

share|improve this answer
turnaround is 6 months, scalability is a necessity (but not to more then 1 million members), 24/7 accessibility is important. thank you for the guideline – user51667 Jan 5 '09 at 15:02
@Weenie : what are you talking about? This answer in no way insults the poster. For future reference, don't tell me what to do. Come back when you've answered a few more questions. – Mitch Wheat Feb 15 at 0:05

I don't believe there's anything special about a social networking app that makes it different from any other database-backed web app.

The accepted wisdom is that web apps be written in a framework - Rails, Spring, whatever. Go with whichever one of those you're most comfortable with.

Work on the overall architecture first. You might end up doing things in more than one language. For example you might write a RESTful API in one framework, then write a user-oriented Web interface that backends onto that.

share|improve this answer

If you're looking to teach yourself programming, then the advice is already here: pick a language you like the look of, and go for it.

If you're looking for some technology that will help you with an existing problem, then I would not advise starting from scratch - you will not be able to keep up with demand (bugs, features, etc) from your network users.

I would take a serious look at an existing platform to build your network upon. Ning is the one that springs to mind; I think they let you program in PHP.

I would also consider some of the Google tools, including OpenSocial, AppEngine; these will be programmed with Javascript and Python respectively. Ning and AppEngine will host the server side code for you.

Good luck

share|improve this answer

I think you should go with the language you are most familiar with. Almost any mainstream programming language these days have decent web development frameworks, but you could save a lot of time and brains if you were familiar with the language.

share|improve this answer

I'd lean towards Django/Python. That would allow me to easily integrate with Google App Engine when the project gets large enough that I need lots of servers and storage space.

share|improve this answer

I won't go as far as to say Ruby on Rails is the "best" language/framework for creating a social networking app, but it is pretty darn good. I used this book and learned a ton about RoR and social networking. It covers things like managing users and friendships, profiles, REST, and so on.

RoR book

share|improve this answer
Great Book, prob one of the better rails books out there... – featureBlend Jan 5 '09 at 15:15

If I am not mistaken (I don't use it or much else in terms of social networking) Facebook is done with PHP. MySpace I think is ASP.NET based.

This is supposed to be an example of two of the most commercially successful social networks out there. Maybe picking PHP or ASP/ASP.NET isn't going to be the most ideal, but I don't see how providing a few real-world examples is going to be worse than being told "just pick whatever you are familiar with".

share|improve this answer
yes... but that doesn't mean it's the right way to do it. – Jesse Pepper Jan 5 '09 at 15:04
MySpace was originally old-style ASP, I believe. It would frequently time out or error, 500 error, as it became more popular. I imagine the problems cost a lot to fix - probably a complete rewrite with the problems inherent in having a legacy database. – slim Jan 5 '09 at 15:06
@Slim: You do realize ASP is not a type of database right? – GEOCHET Jan 5 '09 at 15:10
Yes. What I meant was, the existing database would have hindered opportunities for what could be done in the new language. – slim Jan 5 '09 at 15:28
1  
@Slim: How so? How would the database be in any way related to the language/framework used on the site? You seem to be making a logical leap that I cannot follow you on. – GEOCHET Jan 5 '09 at 15:43
show 6 more comments

look at elgg, this is a social network written in php.

It might help.

share|improve this answer

I understand what you meant by your question, but, in reality, most of the main web languages (PHP, Ruby, Python, ASP.net, heck even Perl) will get you where you want without too much of a difference.

The more important questions are:

  • Which language do you feel most comfortable with and have relevant experience with?

  • Which framework would be best for creating a social network? (Symfony, Zend, Rails, Django, etc)

I recommend having a look at http://elgg.org/. It's a PHP-based social networking project, so most of the code will be there for you already.

share|improve this answer

I think you can go with any language you want. PHP, Python, Ruby or Java, just to name a few. The language is not the bottleneck of such applications, but you should use a fast and scalable database like Postgresql, cache as much content as possible in memory (memcached etc.).

share|improve this answer

Based on the requirements

  • Fast turnaround
  • Learnability (since you're a newbie)
  • Scaling till up to 1 million!

You can use ASP.Net Webforms in VB (easier to learn than anything else). For database you'll need something fast, either get MS SQL pro, or get MYSQL/PostGres (don't go for the Express Edition of MS Sql, it's hobbled and will not give you juice for a million members).

That or ANY language that you can work well in is suitable.

share|improve this answer
Winforms? Seriously? – Robert S. Jan 5 '09 at 15:13
i think he meant webforms – Shawn Jan 5 '09 at 15:15
yes, I meant webforms! Oops – Cyril Gupta Jan 5 '09 at 15:18
@Cyril: Was it also somehow a typo that you expect a free edition of MS SQL to support >1 million users? – GEOCHET Jan 5 '09 at 15:20
A free edition of PostreSQL or MySQL should handle a million users, however. Especially combined with memcached. – slim Jan 5 '09 at 15:23
show 1 more comment

Look at Erlang. It is work which this language is designed for.

share|improve this answer

Er, whatever your users speak, surely? ;)

share|improve this answer
Nonconstructive. – Wassim May 27 '11 at 18:15

the site will be a hub of information for males aged 18-30 and a place for them to learn, connect and contribute in a specific field.

Stackoverflow.com matches this definition quite well. ;)

If you like Ruby, use Ruby. Whatever language which has a usable web framework is a fine choice.

share|improve this answer

Just a tip, don't reinvent the wheel. Start from an easily customisable and flexible CMS like Drupal. There is a guide on how to set up a social network with Drupal on drupalfun.

share|improve this answer

Why, assembly, of course.

share|improve this answer

Broken english.

Oh, you mean Programming language.

share|improve this answer
This is not needed. Take this kind of speech elsewhere. – GEOCHET Jan 5 '09 at 20:05
Relax. Just a joke. Were you offended somehow? I apologize if so, but I can't help but think that while offtopic, my comment was innocuous. – Christopher Mahan Jan 5 '09 at 21:29
@Christopher: This community is only interested in helpful answers. Your answer is in no way helpful. That is why it is getting voted down... – GEOCHET Jan 5 '09 at 21:57
I'm not complaining about the voting down. I would have been surprised if it had gone other than it did. I am, however, not too keen on the way you say: "Take this kind of speech elsewhere." That was rather harsh. – Christopher Mahan Jan 5 '09 at 22:25
@Christopher: "Rather harsh" was being a dick about the guy's "broken english". – GEOCHET Jan 5 '09 at 22:36
show 2 more comments

It is Microsoft FoxPro 9. I tried it and it proved like very good RAD. For web deploy use PHP & Dreamweaver. Apache like web server. Forget rest.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.