GitHub is a hosting platform for git repositories. It makes it easier to collaborate on, and share, source code of open source projects. There are other similar services:
- GitLab
- BitBucket
# Important directories, relative to this Makefile | |
SRCDIR=src | |
INCDIR=include | |
OBJDIR=build/obj | |
DEPDIR=build/dep | |
# Main Target object/name | |
TARGETDIR=dist | |
TARGET=$(TARGETDIR)/someproject |
It boils down to personal philosophy really. In the same way Microkernel vs Monolithic kernel is.
Sysv init and it's derivatives over the years relies on the 'Unix way' of little independent and autonomous scripts that are created by individual maintainers to help boot strap services using an init daemon. Init has no intelligence though and will go through the provided scripts first come first served. This can cause locks and timeouts as services try to start before other services have completed. Over the years there has been attempts to streamline this dependency hell but only to a limited effect. The init scripts became more and more complex as more a more distros started diverging in what core services the needed to start up.
Systemd took a different approach it made a smarter init daemon that could do more than just run custom scripts. It built a framework with dependency at it's core. It took a standardised configuration file which is very easy to understand and made maintainers fill out the bare minim
/* C/C++ Keywords */ | |
"auto", "break", "case", "continue", "default", "do", "else", "enum", | |
"extern", "for", "goto", "if", "register", "return", "sizeof", "static", | |
"struct", "switch", "typedef", "union", "volatile", "while", "NULL", | |
"alignas", "alignof", "and", "and_eq", "asm", "bitand", "bitor", "class", | |
"compl", "constexpr", "const_cast", "deltype", "delete", "dynamic_cast", | |
"explicit", "export", "false", "friend", "inline", "mutable", "namespace", | |
"new", "noexcept", "not", "not_eq", "nullptr", "operator", "or", "or_eq", | |
"private", "protected", "public", "reinterpret_cast", "static_assert", | |
"static_cast", "template", "this", "thread_local", "throw", "true", "try", |
.code { | |
color: #fff; | |
background-color: #343d44; | |
border-radius: 10px; | |
border: 1px solid #cacaca; | |
line-height: 1.2em; | |
font: 12px Monaco, "Courier New", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace; | |
padding: 10px; | |
overflow: auto; | |
-webkit-border-radius: 3px; |