This folder contains userscript js files with metadata keys for user script engines like Greasemonkey or Violentmonkey.
You can find more info about supported metadata keys on Greasemonkey wiki and on Greasy Fork sites.
package; | |
enum CbTypeAlias | |
{ | |
PLAYER; ENEMY; ITEM; | |
} |
/* | |
NOTE: | |
it is only part of actual syntax and contains | |
task configurations for web-ext console command, | |
not a whole tasks.json! | |
MORE: | |
web-ext repo: |
This folder contains userscript js files with metadata keys for user script engines like Greasemonkey or Violentmonkey.
You can find more info about supported metadata keys on Greasemonkey wiki and on Greasy Fork sites.
// ==UserScript== | |
// @name EmuParadise download script | |
// @version 1 | |
// @description Downloads games directly after clicking their name | |
// @author Eptun | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @match https://www.emuparadise.me/*/*/* | |
// @grant none | |
// ==/UserScript== |
For now there is no way to select theme for code editor. So it is needed to do it manualy (with some tweaks) via VM's settings. VM use CodeMirror - there you can find more themes.
Replace new theme classes with VM's predefined .cm-s-eclipse
. Note: that can be not enough due to selectors' specifity.
class Future { | |
static final PENDING = 1; | |
static final FULL = 2; | |
var state:Int = PENDING; | |
var result:Any = null; | |
var next:Array<Any->Void> = []; | |
public function new(){} |
Link: https://try.haxe.org/#782Ea8D1
12:34:38:706 Test.hx:15:,testing...
12:34:52:920 Test.hx:48:,AVERAGE results:
12:34:52:921 Test.hx:50:,test "null check" took 0.07856666666666662 seconds
12:34:52:921 Test.hx:50:,test "null with empty" took 0.2395333333333334 seconds
12:34:52:921 Test.hx:50:,test "only empty" took 0.15176666666666686 seconds