Skip to content

Instantly share code, notes, and snippets.

View M0nteCarl0's full-sized avatar
🎰

Alex M0nteCarl0

🎰
View GitHub Profile
@aspose-com-gists
aspose-com-gists / ConvertTTFtoWOFF_CSharp.md
Last active December 7, 2023 02:05
Convert TTF to WOFF using C#
@M0nteCarl0
M0nteCarl0 / CRTP.cpp
Last active July 26, 2024 19:13
Senior Interview Q&A and code examples
#include <iostream>
// Base class using CRTP
template <typename Derived>
class Base {
public:
void doSomething() {
static_cast<Derived*>(this)->implementation();
}