Skip to content

Instantly share code, notes, and snippets.

View denniskb's full-sized avatar

Dennis Bautembach denniskb

View GitHub Profile
@denniskb
denniskb / yello.jsonc
Last active August 26, 2023 10:03
Yello vscode color theme
{
"name": "Yello",
"type": "dark",
"colors": {
"editor.background": "#2a2a2a",
"editor.foreground": "#fff2cc",
"tab.activeBorder": "#999",
"editorLineNumber.foreground": "#444",
"editorLineNumber.activeForeground": "#fff2cc",
"editorIndentGuide.background": "#292929"
@denniskb
denniskb / loop_over_tuple.cpp
Created July 25, 2023 08:18
Looping over/dynamic indexing of std::tuple in C++17
#include <iostream>
#include <tuple>
#include <type_traits>
#include <utility>
template <int I>
struct constexpr_int{
constexpr operator int() const { return I; }
constexpr constexpr_int<I+1> operator++() const { return {}; }
};
@denniskb
denniskb / aspirinc.json
Last active December 31, 2022 17:42
VSCode "Aspirin C" Color Theme
{
"name": "Aspirin C",
"type": "dark",
"colors": {
"editor.background": "#1c1c1d",
"editor.foreground": "#cdc",
"tab.activeBorder": "#999",
"editorLineNumber.foreground": "#333",
"editorLineNumber.activeForeground": "#ccc",
"editorIndentGuide.background": "#292929"