Open source project for c++ developer?

后端 未结 14 593
深忆病人
深忆病人 2020-12-22 18:32

I am a vc++ developer (but like Qt) interested in learning from open source project by contributing and reading the code. I use windows as primary development platform. Whic

相关标签:
14条回答
  • 2020-12-22 18:46

    Is chromium a good choice?

    I believe so, yes!

    The source code is IMO very well written, it's a really active project with a lot of work to do and is also interesting in many different ways. Obviously a browser is in itself just a combination of specific libraries, and thus Chromium gives you a nice entry to learn more about them and hopefully contribute evidently. But most importantly it has a big community, is sponsored by a big corporation and has many talented software engineers on its core team.

    • Want to learn how to integrate the V8 javascript engine?
    • Want to learn about rendering/drawing on screen via Skia?
    • Want to learn how to integrate Webkit?
    • Want to learn more about the HTTP protocol / network stack?
    • Want to learn how to sandbox applications?
    • Want to learn about multi-process architecture and IPC?

    There are so many things to do, so you could even contribute things you know while learning stuff you don't.


    I'd like to add; The choice of an open source project to join should be based on:

    1. Your level of expertize
      • What you'd like to learn
      • Quality of the code
      • Maturity of the project
      • Code complexity (not to be confused with readability)

    I only speak for myself here, but as much as I love learning more from too complex projects (file systems, RDBM etc) I find those projects to be less rewarding because of the overwhelming complexity. Try not to learn everything at once, take smaller steps and finish what you start rather than taking larger steps and give up.

    Just my 2c - YMMV


    In case you'd want to try Chromium out, here are links for the design documents:

    • Getting around the source code explains in great detail how the projects tree structure is built.
    • The Engineering design docs explain the architecture, most under the hood and future work
    • The user experience design docs provide insight to everything that touches the user, that is behavior and look.
    • Tech Talk Videos that are very helpful for understanding some key engineering issues and decisions, even if you don't intend to join the chromium project.

    The links above are all taken from the Chromium developer documentation, where even more details can be found.

    Anyway, good luck finding a project that fits your needs!

    0 讨论(0)
  • 2020-12-22 18:51

    I enjoyed working on Code::Blocks. It's not a trivial project, but you should still be able to wrap your head around it to contribute. :)

    The most important thing is work on something you want to work on.

    0 讨论(0)
  • 2020-12-22 18:53

    wxWidgets is better for c++ developers who has knowledge about MFC and Windows. Qt uses MOC compilers to generate c++ code. In wxWidgets you have full control of your code.

    0 讨论(0)
  • 2020-12-22 18:53

    You could try and help with the KDE port to Windows. KDE is a desktop environment which was traditionally at home on Linux/Unix systems, but now has (native) ports to Windows and MacOS X.

    You could help make those applications perform and integrate better with Windows. Working on certain apps would be highly appreciated (e.g. Amarok - an advanced music player, digiKam - an advanced digital photo management application) as they would be good open source options to Windows users.

    You can get a good overview on how to participate on the KDE for Windows TechBase article.

    Anyway, good luck choosing ;-)

    0 讨论(0)
  • 2020-12-22 18:54

    how about webkit about Web browser engine open source project?
    I hope it helps.

    0 讨论(0)
  • 2020-12-22 18:55

    Google has a lot of open-source C++ projects. Specifically, perftools (replacement malloc, heap/CPU profiler) is in need of considerable Windows and x64 expertise.

    http://code.google.com/hosting/projects.html

    0 讨论(0)
提交回复
热议问题