This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- [ ] sous les pavés le mariage | |
- [ ] union libre démission ! | |
- [ ] des alliances mais pas de syndicats de flic ! | |
- [ ] Rends l’amour ! | |
- [ ] Vous pouvez embrasser la mariée ! | |
- [ ] Qu’il se taise à jamais | |
- [ ] Plus d’amour moins de co2 | |
- [ ] des pastèques pour tous ! | |
- [ ] oui | |
- [ ] des pastèques pour tous ! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package minimal; | |
#if client | |
import tink.web.proxy.Remote; | |
import tink.url.Host; | |
import tink.http.clients.JsClient; | |
import tink.web.proxy.Remote.RemoteEndpoint; | |
import js.Browser.document as doc; | |
using tink.CoreApi; | |
import coconut.Ui.hxx; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import haxe.Timer; | |
using DateTools; | |
class Main extends hxd.App { | |
var txt:h2d.Text; | |
var fui:h2d.Flow; | |
var paused:Bool; | |
var music:hxd.snd.Channel; | |
var times = [[0, 20], [1, 20], [20, 0], [30, 0]]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
build.hxml | |
-main App | |
-lib erazor | |
--connect 6000 | |
--times | |
--each | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@:remove | |
@:autoBuild(SkipSerializeMacro.build()) | |
interface ISkipSerialize {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import haxe.macro.Context; | |
import haxe.macro.Expr; | |
import Test.Mac.getMyName; | |
class Test { | |
static var pup="3ze"; | |
var plop:String; | |
static function main() { | |
new Test(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static function cocoize() | |
{ | |
trace( "cocoize"); | |
var fields = Context.getBuildFields(); | |
//parsing fields | |
for ( f in fields){ | |
//parsing metas | |
for ( m in f.meta){ | |
//meta name | |
switch (m.name){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Main | |
{ | |
public function new() | |
{ | |
trace("hello"); | |
var g=new SubOB(); | |
trace(g.pull); | |
g.pull="over"; | |
trace(g.pull); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// In short, it turns the following code (spoilers!!) | |
macro { someFunction(lorem, ipsum, dolor); } | |
// into the following structure (pay no attention to "pos" for now) | |
{ | |
expr => EBlock([ | |
{ | |
expr => ECall( | |
{ | |
expr => EConst(CIdent(someFunction)), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef WebGLProgram = { }; | |
typedef WebGLShader = { }; | |
typedef WebGLUniformLocation = { }; | |
typedef WebGLRenderingContext = { }; | |
typedef VertexBuffer = { }; | |
typedef IndexBuffer = { }; | |
typedef Capabilities = { public var maxTexturesImageUnits : Float; public var maxTextureSize : Float; public var maxCubemapTextureSize : Float; public var maxRenderTextureSize : Float; }; | |
extern class Engine { | |
public function constructor( canvas : HTMLCanvasElement, antialias : Bool ) : Dynamic; |
NewerOlder