This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
skaff.py | |
Script to generate project structures based on skaff.yaml. | |
""" | |
from typing import Dict, List | |
import yaml | |
import sys | |
import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#ifndef THREADPOOL_HPP_INCLUDED | |
#define THREADPOOL_HPP_INCLUDED | |
#include <vector> | |
#include <queue> | |
#include <thread> | |
#include <mutex> | |
#include <condition_variable> | |
#include <functional> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#ifndef PERFORMANCE_HPP_INCLUDED | |
#define PERFORMANCE_HPP_INCLUDED | |
#include <chrono> | |
#include <map> | |
#include <string> | |
#include <iostream> | |
#include <format> |