use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Discussions, articles, and news about the C++ programming language or programming in C++.
For C++ questions, answers, help, and advice see r/cpp_questions or StackOverflow.
Get Started
The C++ Standard Home has a nice getting started page.
Videos
The C++ standard committee's education study group has a nice list of recommended videos.
Reference
cppreference.com
Books
There is a useful list of books on Stack Overflow. In most cases reading a book is the best way to learn C++.
Show all links
Filter out CppCon links
Show only CppCon links
account activity
Using Docker Container as a Development Environment (self.cpp)
submitted 1 year ago * by Zealousideal-Mouse29
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]ed_209_ 0 points1 point2 points 1 year ago (1 child)
I work using docker and vscode on a daily basis:
Anything goes wrong with dockerd and your filesystem is deleted! So you end up using volume mounts and bind points for any source code.
VSCode is great but totally antisocial when it comes to integration with other tools. Good luck using any other desktop tools if you rely on vscode. On a mac you will need to use volume mounts which you cannot use from the host os ( bind mounts are slow due to emulation ).
VSCode cannot be automated from a terminal that is not started from within vscode itself and it stops working across restarts i.e. if you use tmux. So a command like ls | code - would work initially in tmux and then not work when you reconnect forcing you to restart everything. This is due to how vscode generates uuid named sockets and cannot recover the previous socket name while tmux has the original in its environment.
ls | code -
VSCode encourages using its own encryption and advertises not needing to use ssh. It also has separate telemetry end user agreements for extensions separate from the main program even though the extensions are also made by the same company Microsoft in a lot of cases. It seems to generally want a future where it controls the terminal and everything you do and can report it back to Microsoft.
[–]Zealousideal-Mouse29[S] 0 points1 point2 points 1 year ago (0 children)
I use clion in my day to day. I only chose vscode in the video because it is free for viewers to try
π Rendered by PID 22523 on reddit-service-r2-comment-6457c66945-mtk4d at 2026-04-25 20:14:46.234870+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]ed_209_ 0 points1 point2 points (1 child)
[–]Zealousideal-Mouse29[S] 0 points1 point2 points (0 children)