This file contains hidden or 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 ; | |
import flixel.util.FlxSignal; | |
class SignalTest { | |
var signal0:FlxSignal; | |
function callbackEmpty1() {} | |
public function new() { |
This file contains hidden or 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
/** | |
* Ludei Multiplayer Adapter: | |
* | |
* Turns Based Match | |
* | |
* @see https://github.com/ludei/cocoonjs-demos/tree/master/Multiplayer | |
* @dependancies cocoon.js | |
* | |
*/ | |
var Match = (function(){ |
This file contains hidden or 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
/* | |
A C-program for MT19937, with initialization improved 2002/1/26. | |
Coded by Takuji Nishimura and Makoto Matsumoto. | |
Before using, initialize the state by using init_genrand(seed) | |
or init_by_array(init_key, key_length). | |
Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, | |
All rights reserved. |
This file contains hidden or 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
/** | |
From the demo: | |
http://www.lostdecadegames.com/how-to-make-a-simple-html5-canvas-game/ | |
*/ | |
#include <cheerp/client.h> | |
#include <cheerp/clientlib.h> | |
#include <cheerp/webgl.h> | |
#include <iostream> |
This file contains hidden or 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
asm = require('./bits_asm.js') | |
class Bits | |
SIZE = 1024; | |
bits: null | |
asm: null | |
constructor:(nbits=0) -> |
This file contains hidden or 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
#+--------------------------------------------------------------------+ | |
#| Gruntfile.coffee | |
#+--------------------------------------------------------------------+ | |
#| Copyright DarkOverlordOfData (c) 2014 | |
#+--------------------------------------------------------------------+ | |
#| | |
#| dart-like workflow | |
#| | |
#| dart-like is free software; you can copy, modify, and distribute | |
#| it under the terms of the MIT License |
This file contains hidden or 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 'package:play_phaser/phaser.dart' as Phaser; | |
void main() { | |
new Game(); | |
} | |
class Game extends Phaser.State { | |
var platforms; |
This file contains hidden or 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
#!/usr/bin/env coffee | |
#+--------------------------------------------------------------------+ | |
#| | |
#| 'Tis file be part 'o Arg | |
#| | |
#| Arg! be free software; ye can copy, modify, 'n distribute | |
#| it under th' terms 'o th' MIT License | |
#| | |
#+--------------------------------------------------------------------+ |
This file contains hidden or 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
# | |
# Lightweight CommonJS module manager | |
# | |
# The page still needs to load the modules explicitly and in the | |
# correct order. Modular creates only the Define/Require semantics. | |
# | |
# | |
# define 'module_name', (module) -> | |
# define 'module_name', (exports) -> | |
# define 'module_name', (require) -> |
This file contains hidden or 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
Sub PdfToText() | |
Dim answer | |
Dim source As String | |
Dim dest As String | |
Dim exe As String | |
Dim wsh As Object | |
Set wsh = VBA.CreateObject("WScript.Shell") | |
answer = Application.GetOpenFilename(Title:="Please choose a file to import", FileFilter:="PDF Files *.pdf (*.pdf),") |