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 know this question gets asked quite a bit but I still have some lingering questions. I want to build a website similar to reddit/digg. I have no experience in web development but am learning php/mysql right now from a book. I would say I got the general understanding of how html,css, javascript will interact with php/mysql to provide the overall website. However, I have some questions on the best way to approach this.

  1. I looked at reddit source code and it seems complicated. I am not trained in computer science although I do work as a simple programmer for ~5 months. When I mean complicated, first, you have to know git, then terminal commands, then make, then python?, then postgre sql, then there are the dependencies like rabbitmq, memcached, subversion, curl, daemontools, cassandra, etc...and that is just reading the first page. Most of these, I have not even heard of!

  2. Then, i googled for creating digg/reddit clone and there are so many frameworks and open source projects with different licenses. It is so overwhelming and it made me realize that I cannot just start coding php/mysql and put nice designs with html/css/javascript.

I guess my question is what would be the approach of kevin rose (founder of digg) or alexis (founder of reddit) would do to build something like this. I can't ask them obviously so I'm asking your take on it. How should I learn and develop if I want to get this to work as a part time project. I just feel that my rate of learning + development is slower than the rate at which the web technology is moving and even the principle of one step at a time may not be good enough.

Thanks!!!

EDIT: when I mean framework, I mean drupal, cakephp, python, wordpress, etc...

Should I just treat it as a learning project and use the bare minimum framework? I tried cakephp and umm...followed the examples and have no idea what I was doing. It seems so magical. Then, I tried zend framework and for some reason, i keep running into errors and issues with their beginner's documentation to get started. When I learn from a book about php and mysql, I understand pretty much 100%. I took the book's last chapter ecommerce code and can modify it to anything I want to and it makes sense to me but seems very very slow for development.

share|improve this question
2  
Those websites were made by teams of experienced programmers, and have been built up over many years of enhanced features and refactored code. If you're new to web development, start with a small personal project and work up from there. It's a pipe dream to think that anybody can start with nothing and make something great. – drudge Feb 12 '11 at 0:02
There is a lot to know to build real world scale applications. It's why good programmers can name their price. It gets easier to keep up the more you know. – amccausl Feb 12 '11 at 0:02
You don't need complexity for a scaling web site. You can typically throw money and hardware at the problem. PHP can be compiled and mirrored onto multiple webservers, proxies and load balancers do the rest. Most importantly you can just use a MySQL server array with replication to cope with traffic. – mario Feb 12 '11 at 0:11

closed as not constructive by joran, Brad Larson Jul 9 '12 at 15:53

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.

4 Answers

These websites are typically created by people with a very vast knowledge in programming and databases that they have built up over years. If you're are getting stuck at just how to start, you most likely lack the technical skill to take on a large project like this. Reddit currently has over a billion impressions a month, even their team is having issues scaling.

If you are really serious I'd suggest looking for a programmer who can do the work for you on some type of equity share or if you're up for it, post your project on Elance or RentaCoder. This is how Kevin Rose started Digg. See this article.

share|improve this answer
I once tried to work with a contractor and he asked for like ~110/hour and then he owns the code...I'm like...uhhh...I need to be able to change the code and adapt it – Yko Feb 12 '11 at 17:10

I actually think this is a great way to learn programming skills. However I think you are trying to take on too many things at once and many of them have nothing to do with actually getting the type of project you want working.

"You have to know git, then terminal commands, then make, then python?, then postgre sql, then there are the dependencies like rabbitmq, memcached, subversion, curl, daemontools, cassandra"

No you do not. None of these are important for you to know at this point. Git and Subversion are helpful but not strictly necessary if you are working alone. All the other technologies listed are if you want to deal with a huge traffic load which you are not ready for anyway. Ignore them and just stick with standard PHP/MYSQL/JS/etc.

"there are so many frameworks and open source projects with different licenses. It is so overwhelming.."

It is very overwhelming and the important thing to realize about programming is that there is no right way to do something. There are always trade offs. You just have to get started. I would avoid using a framework at this point. Instead you should build your first version of the site from scratch. Then pickup a framework and use that for version 2. Once you have built it from scratch you know what the framework is doing behind the scenes and it is more comfortable to use.

"Should I just treat it as a learning project and use the bare minimum framework?"

Yes

I guess my question is what would be the approach of kevin rose (founder of digg) or alexis (founder of reddit) would do to build something like this. I can't ask them obviously so I'm asking your take on it. How should I learn and develop if I want to get this to work as a part time project.

If you want to actually launch a similar site then I think you are in over your head. You need to become a better programmer or hire help. If this is just a fun project to learn programming then you need to have a development environment and time to code. Start building and work through all the problems until you have something that works.

Make sure to work on only one piece at a time and add on to the site as you go. Start with the layout and have that working. Then setup user signup and authentication. Then let the users submit stories. Then let people comment on stories. etc.

Work in small pieces. Don't try to build a digg clone from the ground up or you will fail and don't expect to become fabulously wealthy from building this either, it should be viewed simply as a learning experience.

share|improve this answer
Thanks for the input. I am not building a digg clone exactly but it has a lot of the similar features i am looking for... – Yko Feb 12 '11 at 1:51

If you're looking to make a site, I wouldn't look at a current example and try and work backwards.

First set out a structure of your site, like header, sidebar, etc, then make a list of features you want it to have.

A design is easily available for free online (try googling 'free css templates'), then add in the scripts you want, also through google searches.

Of course, it's a good idea to start with something much smaller first, then eventually work your way up.

share|improve this answer
Thanks so much Jake – Yko Feb 12 '11 at 17:09

Reddit and digg are both highvolume sites, and have "massive" infrastructure behind them to support the traffic. For that, they use many tools to boost performance.

For someone starting out, trying to recreate a digg or a reddit is the wrong way to go. It's like trying to build a 747 without ever having folded a single paper airplane. You'd get overwhelmed with the details before you install even a single screw.

Unless you plan on generating thousands of hits a second with multi-terabytes of data backing your site, don't bother with the "high end" tools - just build a simple site with just PHP, MySQL, and some plain html/css. Once you've got that under your build, start using a templating system, add more features, etc...

share|improve this answer
Thanks so much Marc! – Yko Feb 12 '11 at 17:09

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