Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to get into some open source projects that use C++. I have looked at some on sourceforge, tried Google Chrome, OpenOffice.org, but they are too hard of projects. I know some C++, but I just want something that will be easy to add to and fix and can help me polish my C++ skills for the bigger projects. Can anyone guide me with this? I have been looking around, but I can't seem to find the project for me.

share|improve this question
+1, interested in this as well as a relatively new C++ programmer – Daniel Sloof Apr 4 '09 at 13:46
1  
+1, also interested in this from a software archaeology standpoint (listen to Software Engineering Radio episode 148 with Dave Thomas). Thanks for posting this question – Anthony Mar 15 '10 at 7:00
1  
C++ is not for beginners. Or the advanced. – jrockway Oct 8 '10 at 20:57

8 Answers

up vote 30 down vote accepted

Sometimes, the best place to start is from scratch. A lot of the open source projects can get very large and complicated (well, not JUST open projects), so if you're interested in contributing, I'd say that you either start your own small project or work on plugins or bug fixes for other projects. Start small and you'll learn along the way. It's difficult to just jump right in without knowing how to swim. After all, the only way to get better at a language is to write programs in it.

share|improve this answer
16  
Don't agree at all. All you learn you learn from someone. – Piotr Dobrogost May 9 '09 at 14:54
6  
But the open source applications aren't for beginners. The developer does the best he can when writing an application, pretty hard for a beginner to understand. – Zippoxer Dec 10 '10 at 19:52

I myself started to contribute to wxWidgets for similar reasons. They have a dedicated page of how to contribute patches and if you look at the Trac page you can easily find a simple bug to fix to get you starting. If you still don't know what to fix, then simply ask on the developer mailing list.

share|improve this answer

http://stackoverflow.com/questions/534311/examples-of-modern-c-in-action
http://stackoverflow.com/questions/109684/what-are-some-examples-of-exceptional-c-open-source-code

look at this similar questions.

Start from small changes or write plugin for some extentiable project. Then try to do bigger change or change part of project ( usualy they are separated on libraries ).

Also you could try to participate in "Google Summer of Code" (http://code.google.com/soc/)

share|improve this answer

WebKit is a good project to work with; it is fairly big, but the code itself is fairly well laid out and easy to work with (I found it much easier to jump right in and start fixing bugs in WebKit than I did in Gecko).

share|improve this answer

You may want to look at Google Chrome for a good example of C++. It is written with an adherence to Google Style Guide, which is a nice reference for C++ coding style.

share|improve this answer
6  
The Google Style Guide is for working with google legacy code. It's NOT "the best C++ practices". – Jimmy J Apr 4 '09 at 14:14
1  
For a long and well-informed discussion on the google style guides see groups.google.com/group/comp.lang.c++.moderated/browse_thread/…; – anon Apr 4 '09 at 14:49
1  
@Jimmy J, the description of the guide now says "The goal of this guide is to manage this complexity by describing in detail the dos and don'ts of writing C++ code. These rules exist to keep the code base manageable while still allowing coders to use C++ language features productively." It might have changed in the two years since your comment. – James McMahon Aug 21 '11 at 2:50

Here's an email I wrote to someone asking for advice on getting started with open source. I am a project leader of a fairly large open source project, with a few years of open source experience behind me.

Well, first and most importantly for getting started with open source, it has to be a piece of software that you use. Do you use any open source software already? You may do but not realise it. See if you can browse through SourceForge (http://sourceforge.net/) and spot something familiar. Perhaps try to look for smaller projects that look easy to work on.

Second, pick your favourite project and get involved with the community. This means: Sign up to their mailing list or forum, look for a bug that you can reproduce on your computer, and get your hands on the source code and try to compile it and run it and make sure the bug still exists in the very latest version.

Thirdly, dig around in the code and try to find where the bug exists, and fix it. Then after you've fixed it for sure, create a "patch" -- which is a small snippet of code that you can send to the mailing list to fix the bug. If you don't know how to make a patch, then ask someone on the mailing list, Google it, there's plenty of help out there for that.

Lastly, repeat the last step until you fix enough bugs that people start remembering you. There's no rule for how many bugs you have to fix before you get their trust, but eventually if you put in enough effort, you may be given commit access or some sort of status in the community. Either way, you'll have submitted enough patches by now to put something on your CV/resume about it, so you'll win in any case.

share|improve this answer

Well you can search for C++ projects on github (search by tag). Understand what each project aims to do and see if it interests you and is also small enough that you can actually contribute to it. Next, you should mail the developer asking him to give you something to work on or a bug to solve. Most developers are really really friendly and will definitely help you contribute to their project.

If you like to get help in abundance, work on a small plugin for a big project and you can ask for help in irc too!

share|improve this answer

Here is my advice

First find something you are interested in (other devs already added reference about projects), Then start working with that tool or library as you gain some experience with that. Then think about how you can extend that. i don't think you just start contributing to any project without learning how to work with it first.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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