I hereby claim:
- I am tml on github.
- I am tml (https://keybase.io/tml) on keybase.
- I have a public key whose fingerprint is 6A6F 1772 9604 4CEB 9AD1 B003 6757 45F0 8555 A11E
To claim this, I am signing this object:
[alias] | |
co = checkout | |
ci = commit -a | |
br = branch | |
me = merge --no-ff | |
undo = reset --hard ORIG_HEAD | |
st = status | |
stat = status | |
up = pull --rebase | |
unstage = reset HEAD -- |
set ts=4 | |
set sm | |
set wraplen=150 | |
set nowrapscan |
I hereby claim:
To claim this, I am signing this object:
function parse(str) { | |
var ir = Packages.jdk.nashorn.internal.ir; | |
var runtime = Packages.jdk.nashorn.internal.runtime; | |
var parser = Packages.jdk.nashorn.internal.parser; | |
var context = runtime.Context.getContext(); | |
var source = new runtime.Source('test', str); | |
var node = new parser.Parser(context.getEnv(), source, new runtime.Context.ThrowErrorManager(), true).parse(); | |
var lexContext = new ir.LexicalContext(); |
Note 1: The following CQ curl commands assumes a admin:admin username and password. | |
Note 2: For Windows/Powershell users: use two "" when doing a -F cURL command. | |
Example: -F"":operation=delete"" | |
Note 3: Quotes around name of package (or name of zip file, or jar) should be included. | |
Uninstall a bundle (use http://localhost:4505/system/console/bundles to access the Apache Felix web console) | |
curl -u admin:admin -daction=uninstall http://localhost:4505/system/console/bundles/"name of bundle" | |
Install a bundle | |
curl -u admin:admin -F action=install -F bundlestartlevel=20 -F |
(defn queue | |
[& c] | |
(into | |
(clojure.lang.PersistentQueue/EMPTY) | |
c)) | |
(defn k-combos | |
[k r] | |
(if (zero? k) nil | |
(letfn |
Prerequisites:
Software components used:
IMPORTANT! Remember to check out the wiki page at https://github.com/bebraw/jswiki/wiki/Game-Engines for the most up to date version. There's also a "notes" column in the table but it simply does not fit there... Check out the raw version to see it.
This table contains primarily HTML5 based game engines and frameworks. You might also want to check out the [[Feature Matrix|Game-Engine-Feature-Matrix]], [[Game Resources]] and [[Scene Graphs]].
Name | Size (KB) | License | Type | Unit Tests | Docs | Repository | Notes |
---|---|---|---|---|---|---|---|
Akihabara | 453 | GPL2, MIT | Classic Repro | no | API | github | Intended for making classic arcade-style games in JS+HTML5 |
AllBinary Platform | Platform Dependent | AllBinary | 2D/2.5D/3D | n |
/* | |
* Copyright (c) 2001-2008 | |
* DecisionSoft Limited. All rights reserved. | |
* Copyright (c) 2004-2008 | |
* Oracle. All rights reserved. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* |