Skip to content

Instantly share code, notes, and snippets.

View SquareRoundCurly's full-sized avatar
🌉
We'll burn that bridge when we get there

Lambda λ SquareRoundCurly

🌉
We'll burn that bridge when we get there
View GitHub Profile
@SquareRoundCurly
SquareRoundCurly / gitmoji.md
Last active May 24, 2025 14:02
Github emoji table
Commit type Emoji
Initial commit 🎉 :tada:
Version tag 🔖 :bookmark:
Work in progress 🚧 :construction:
New feature :sparkles:
Bugfix 🐛 :bug:
Hotfix 🩹 :adhesive_bandage:
Critical hotfix 🚑 :ambulance:
Build system 👷 :construction_worker:
@SquareRoundCurly
SquareRoundCurly / Instrument.hpp
Created April 17, 2023 22:24
Simple profiler
#pragma once
#include <string>
#include <chrono>
#include <algorithm>
#include <fstream>
#include <thread>
#define CONCAT_IMPL(x, y) x##y // Helper macro to concatenate two tokens
#define CONCAT(x, y) CONCAT_IMPL(x, y) // Macro to concatenate two tokens