Skip to content

Instantly share code, notes, and snippets.

View nlyan2025's full-sized avatar

Andrew nlyan2025

  • London, England
View GitHub Profile
@nlyan2025
nlyan2025 / variant.cpp
Last active September 21, 2017 23:23
#include <boost/mpl/at.hpp>
#include <boost/mpl/size.hpp>
#include <boost/variant/variant.hpp>
#include <type_traits>
namespace {
template <size_t N>
struct emplace_nth_helper {
template <typename Variant>
#include <type_traits>
#include <algorithm>
#include <iterator>
#include <stdexcept>
#include <cassert>
#include <cstring>
#include <endian.h>
// TODO: Add 2 byte, 4 byte read_le
// Check everything works with other word sizes.
[andrew@zuul network]$ cat guest.network
[Match]
Name=guest0
[Network]
Address=192.168.3.1/24
[andrew@zuul network]$ cat guest0.netdev
[NetDev]
Name=guest0
Kind=vlan
@nlyan2025
nlyan2025 / build_openssl_dylib.sh
Created January 4, 2017 08:52 — forked from tmiz/build_openssl_dylib.sh
Build latest OpenSSL Universal Binary on OSX
#!/bin/bash
OPENSSL_VERSION="1.0.1g"
curl -O http://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz
tar -xvzf openssl-$OPENSSL_VERSION.tar.gz
mv openssl-$OPENSSL_VERSION openssl_i386
tar -xvzf openssl-$OPENSSL_VERSION.tar.gz
mv openssl-$OPENSSL_VERSION openssl_x86_64
cd openssl_i386
@nlyan2025
nlyan2025 / with.cc
Last active January 18, 2016 21:39
Pythons 'with' statement in C++
#include <type_traits>
template <template <typename...> class With, typename T> inline
decltype(auto)
make_with_guard (T& value) {
return With<T>(value);
}
#define PP_CAT(A, B) PP_CAT_X(A, B)
#define PP_CAT_X(A, B) A ## B