(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
// | |
// NSURL+FavoritesList.h | |
// FavoritesListTester | |
// | |
// Appends the URL to the end of the Favorite Items or Favorite Volumes list | |
// (found in the side bar of Finder windows and open/save dialogs, etc.) | |
// | |
// Notes: | |
// | |
// 1. Must be a file URL. |
{ | |
"agency" : | |
{ | |
"agency_id" : "ART", | |
"agency_name" : "Arlington Transit", | |
"agency_url": "http://www.arlingtontransit.com/", | |
"agency_timezone" : "America/New_York" | |
}, | |
"routes" : |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
Index:
Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.