https://stackoverflow.com/questions/24850244/does-c-support-raw-string-literals
-std=gnu11
https://learn.microsoft.com/en-us/cpp/cpp/string-and-character-literals-cpp?view=msvc-170
printf(R"(hello\nworld\n)");
#include <stdio.h>
https://stackoverflow.com/questions/24850244/does-c-support-raw-string-literals
-std=gnu11
https://learn.microsoft.com/en-us/cpp/cpp/string-and-character-literals-cpp?view=msvc-170
printf(R"(hello\nworld\n)");
#include <stdio.h>
git diff --no-prefix master..branch > somefile.diff
enum class Level : std::uint32_t
{
/* user actions malfunctions ....*/
EMERGENCY = (1 << 0), /* system is unusable. A panic condition was reported to all processes. */
CRITICAL = (1 << 1),
FATAL = (1 << 2), /* critical conditions */
ALERT = (1 << 3),
ERROR = (1 << 4), /* action must be taken immediately. A condition that should be corrected immediately. */
WARNING = (1 << 5), /* error conditions */
curl -s 'https://api.github.com/users/jdoe/repos?page=1&per_page=100' | grep \"clone_url\" | awk '{print $2}' | sed -e 's/"//g' -e 's/,//g' | xargs -n1 git clone
curl -s 'https://api.github.com/users/jdoe/repos?page=2&per_page=100' | grep \"clone_url\" | awk '{print $2}' | sed -e 's/"//g' -e 's/,//g' | xargs -n1 git clone
https://olof.tech/how-to-set-up-a-persistent-ramdisk-with-tmpfs-and-rsync/
#!/bin/bash
# QUESTIONG: What's the purpose of this script?
# ANSWER:
# The purpose is to mount a part of the computers RAM to a folder on the harddrive.
# This will make IO to that folder VERY fast. However the content of such a folder
https://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package
"""An auto-increment tool for version strings."""
import sys
import unittest
import click
from click.testing import CliRunner # type: ignore