#PidginScript ###or BrahScript
variable assignment => dakine example: dakine name stay "Jon"
NULL => sostay
= operator => stay
!= operator => not
| [ | |
| { "keys": ["super+c"], "command": "noop" }, | |
| { "keys": ["super+c"], "command": "copy", "context": | |
| [ | |
| { "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true } | |
| ] | |
| }, | |
| { "keys": ["super+x"], "command": "noop" }, | |
| { "keys": ["super+x"], "command": "cut", "context": | |
| [ |
| package scenes; | |
| import com.haxepunk.Scene; | |
| class GameScene extends Scene | |
| { | |
| public function new() | |
| { | |
| super(); |
| Propeller Templates | |
| propeller.html | |
| <body> | |
| <div id="content"> | |
| {{ partial 'header' }} | |
| <h1>{{page.name}}</h1> | |
| <span class="question"> |
| // such new game in Flappy Doge | |
| // http://www.dogetek.co/game/ | |
| // plz developer tools in chrome | |
| // much paste in console | |
| // move mouse expert | |
| (function () { | |
| var pos = null; | |
| $(window).mousemove(function (e) { |
#PidginScript ###or BrahScript
variable assignment => dakine example: dakine name stay "Jon"
NULL => sostay
= operator => stay
!= operator => not
| $(function() { | |
| var dict = [ "((_)==jjjj=D", | |
| "((_)=jjjj==D", | |
| "((_)jjjj===D", | |
| "((_)=jjjj==D", | |
| "((_)==jjjj=D", | |
| "((_)===jjjjD", | |
| "((_)==jjjj=D", | |
| "((_)=jjjj==D", | |
| "((_)jjjj===D", |
| /** | |
| * Module dependencies | |
| */ | |
| var express = require('express'), | |
| routes = require('./routes'), | |
| tweets = require('./routes/tweets'), | |
| api = require('./routes/api'), | |
| http = require('http'), | |
| path = require('path'); |
estimated metrics
201ms (drop)
165ms
164ms
170ms
average 166.33
| // 1 | |
| for (var p in parameters){ | |
| if(p.indexOf(SIGNATURE_KEYNAME) === 0){ | |
| delete parameters[p]; | |
| } | |
| } | |
| // 2 |
| import js.Lib; | |
| import js.JQuery; | |
| import js.JQuery.JqEvent; | |
| class Test | |
| { | |
| public function new() | |
| { | |
| new JQuery('body').on('click', 'button.added_after_domready', click_button); | |
| } |