Skip to content

Instantly share code, notes, and snippets.

@tbrosman
tbrosman / lime_openfl_build_battleships.md
Last active August 29, 2015 14:22
Known good Lime/OpenFL combinations

Overview

My team and I (Vacuum Tube Games) are working on a game powered by Flixel + OpenFL + Haxe. In our efforts to upgrade to later versions we're keeping track of which builds worked for us. Until this point we've been using lime 0.9.7 + openfl 1.4.0 since they came out until now (May 2015).

Normally release builds work fine regardless of the version pair and usually on all platforms (which is awesome!). However, trying to find a stable version pair for our specific use case (debugging on android) has been not-so-awesome. Because of this we have started keeping track of which versions work for our particular game. Further we think this may be helpful to other developers as we are working with a very common stack. We hope that other developers can benefit from our work and save themselves a few hours of "misses" in their attempt to sink the perfect version set. If you have any comments, questions, improvements, or requests, don't hesitate to comment! This is very much a work-in-progress.

Baseline

@Simn
Simn / Main.hx
Last active February 22, 2021 09:51
New reification examples
class Main {
static function main() {
MyMacro.testReify();
}
}
@bgaff
bgaff / fizzbuzz.cpp
Created April 26, 2012 05:50
FizzBuzz C++: Template Recursion
/*
* fizzbuzz.cpp
*
* Created on: Apr 25, 2012
* Author: Brian Geffon
*
* fizzbuzz solved without looping or conditionals using only template recursion.
*/
#include <iostream>