Skip to content

Instantly share code, notes, and snippets.

@gazliddon
gazliddon / quake.md
Last active August 29, 2015 14:26
Quake Season

alt text

Quake Season Is On

I've set up a quake 1 server using the darkplaces dedicated server. You'll need the darkplaces client which you can down load from here.

To join the game you need to connect to www.ruffiangames.com

@gazliddon
gazliddon / gazscratch.md
Created September 5, 2015 18:29
Livecoding Info
@gazliddon
gazliddon / notes.md
Created September 6, 2015 12:02
Livecoding notes

What Is This?

@gazliddon
gazliddon / main.cpp
Last active January 28, 2016 13:31
Function traits
#include <iostream>
#include <tuple>
////////////////////////////////////////////////////////////////////////////////
template<class A, template<class...> class B> struct mp_rename_impl;
template<template<class...> class A, class... T, template<class...> class B>
struct mp_rename_impl<A<T...>, B>
{
using type = B<T...>;
@gazliddon
gazliddon / cons.h
Created February 2, 2016 08:56
everyone ends up writing lisp
#ifndef CONS_H_15URYTVP
#define CONS_H_15URYTVP
#include <tuple>
#include "list.h"
namespace shitlib {
namespace mpl {
namespace detail {
@gazliddon
gazliddon / isa.cpp
Last active March 18, 2016 19:10
asd
#include "isa.h"
#include "six8.h"
#include <map>
#include <unordered_map>
#include <iostream>
namespace six8 {
#include <stdio.h>
#include <string>
#include <iostream>
class ShitString {
public:
ShitString( char const *_str ) : mData( _str ) {
}