CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 11 of 11
  1. #1
    Join Date
    Jul 2009
    Posts
    46

    Site with massive repository of C++ code?

    Does anyone know of a site that has a huge repository of C++ code that you can use for free? I'm talking about a site that would have literally thousands of C++ algorithms, code snippets, etc. (it could also have other programming languages: PHP, Java, etc). I'm not looking for a bunch of different sites that have some code and if you add them all together, it makes a huge repository, I'm looking for *one* site that would have this all. Thanks.

  2. #2
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: Site with massive repository of C++ code?


  3. #3
    Join Date
    Jul 2009
    Posts
    46

    Re: Site with massive repository of C++ code?

    I'm somewhat familiar with boost, but I was looking for something even bigger. Though, maybe I have just not looked at boost enough. I hear the boost libraries have a bad rep, is that true?

  4. #4
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: Site with massive repository of C++ code?

    Quote Originally Posted by sysop1911 View Post
    I'm somewhat familiar with boost, but I was looking for something even bigger. Though, maybe I have just not looked at boost enough. I hear the boost libraries have a bad rep, is that true?
    The only thing that's bad about them is trying to read the code. Using the libraries is fairly easy if you follow the docs, and they are highly useful.

    Some people get scared when they see too many templates. There's no reason to, though.

  5. #5
    Join Date
    Aug 2000
    Location
    New York, NY, USA
    Posts
    5,656

    Re: Site with massive repository of C++ code?

    Quote Originally Posted by sysop1911 View Post
    Does anyone know of a site that has a huge repository of C++ code that you can use for free? I'm talking about a site that would have literally thousands of C++ algorithms, code snippets, etc. (it could also have other programming languages: PHP, Java, etc). I'm not looking for a bunch of different sites that have some code and if you add them all together, it makes a huge repository, I'm looking for *one* site that would have this all. Thanks.
    http://sourceforge.net/
    Vlad - MS MVP [2007 - 2012] - www.FeinSoftware.com
    Convenience and productivity tools for Microsoft Visual Studio:
    FeinWindows - replacement windows manager for Visual Studio, and more...

  6. #6
    Join Date
    Sep 2004
    Location
    Holland (land of the dope)
    Posts
    4,123

    Re: Site with massive repository of C++ code?


  7. #7
    Join Date
    Jan 2009
    Posts
    1,689

    Re: Site with massive repository of C++ code?


  8. #8
    Join Date
    Jul 2009
    Posts
    46

    Re: Site with massive repository of C++ code?

    Quote Originally Posted by VladimirF View Post
    Does this actually have code or just finished programs?

    Quote Originally Posted by Skizmo View Post
    ;-) Not enough here. Not as complete as I'm looking for

    Quote Originally Posted by ninja9578 View Post
    Looks like mostly Android stuff.

  9. #9
    Join Date
    Jan 2006
    Location
    Singapore
    Posts
    6,765

    Re: Site with massive repository of C++ code?

    Why not just search for and use what you can find when you need it? I find that the best part about large library repositories as used for certain other languages is that it makes installing a library a breeze because there is usually some installation mechanism that goes with it; yet, that does not mean that you cannot install C++ libraries from separate repositories yourself.
    C + C++ Compiler: MinGW port of GCC
    Build + Version Control System: SCons + Bazaar

    Look up a C/C++ Reference and learn How To Ask Questions The Smart Way
    Kindly rate my posts if you found them useful

  10. #10
    Join Date
    Jul 2009
    Posts
    46

    Re: Site with massive repository of C++ code?

    Quote Originally Posted by laserlight View Post
    Why not just search for and use what you can find when you need it? I find that the best part about large library repositories as used for certain other languages is that it makes installing a library a breeze because there is usually some installation mechanism that goes with it; yet, that does not mean that you cannot install C++ libraries from separate repositories yourself.
    Because I want a one-stop-shop for the code.

  11. #11
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: Site with massive repository of C++ code?

    Boost is probably the best you're going to get in terms of a collection of generic libraries with wide applicability. In a specific subject area, there may be other collections which are useful (such as CGAL for computational geometry).

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured