Skip to content

Instantly share code, notes, and snippets.

View mlaily's full-sized avatar

Melvyn Laïly mlaily

View GitHub Profile
@davidfowl
davidfowl / dotnetlayout.md
Last active April 2, 2025 20:17
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/
@folone
folone / gist:6089236
Last active January 4, 2025 10:32
Table of unicode operators in scalaz 6.0.x
@oktal
oktal / binary-converter.cc
Created May 13, 2013 20:25
Safe compile-time binary converter
#include <iostream>
#include <type_traits>
#include <cassert>
namespace details {
template<typename T> struct DigitValue {
};
template<> struct DigitValue<int> {
static constexpr int v(const int value) { return value; }