Skip to content

Instantly share code, notes, and snippets.

View pvkarthikk's full-sized avatar
💭
I may be slow to respond.

Karthik Venkatesh pvkarthikk

💭
I may be slow to respond.
View GitHub Profile
"""
skaff.py
Script to generate project structures based on skaff.yaml.
"""
from typing import Dict, List
import yaml
import sys
import os
#pragma once
#ifndef THREADPOOL_HPP_INCLUDED
#define THREADPOOL_HPP_INCLUDED
#include <vector>
#include <queue>
#include <thread>
#include <mutex>
#include <condition_variable>
#include <functional>
@pvkarthikk
pvkarthikk / performance.hpp
Last active March 8, 2025 13:28
performance monitor for cpp function
#pragma once
#ifndef PERFORMANCE_HPP_INCLUDED
#define PERFORMANCE_HPP_INCLUDED
#include <chrono>
#include <map>
#include <string>
#include <iostream>
#include <format>