- seti-ui
- monokai-shade
- highlight-selected
- docblockr
- open-recent
- tab-switcher, with config: `'atom-workspace':
Automatic cpp/h generation w/cmake: https://github.com/shaochuan/cmake-protobuf-example
| #include <LightGBM/config.h> | |
| #include <LightGBM/dataset_loader.h> | |
| #include <LightGBM/boosting.h> | |
| #include <LightGBM/objective_function.h> | |
| #include <LightGBM/metric.h> | |
| #include <LightGBM/utils/common.h> | |
| #include <iostream> | |
| #include <random> | |
| #include <algorithm> |
This contains useful reminders for me from C++11.
Read more here, but basically
virtual void f() = 0; // pure virtualhttp://learngitbranching.js.org/
git grep -p '<whatever>' $(git rev-list --all)
git checkout B1
| #include "MyClass.h" | |
| class MyClass::Impl | |
| { | |
| // etc.. | |
| }; | |
| MyClass::MyClass() | |
| : m_pimpl(new Impl()) |
| Syntax theme .xml, copy to /usr/share/qtcreator/styles |
| # | |
| # Sets Prezto options. | |
| # | |
| # Authors: | |
| # Sorin Ionescu <[email protected]> | |
| # | |
| # | |
| # General | |
| # |
| #include <thread> | |
| #include <atomic> | |
| #include <cstdio> | |
| #include <chrono> | |
| #include <memory> | |
| #include <sigslot/signal.hpp> |