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
SplineFontDB: 3.0 | |
FontName: Untitled2 | |
FullName: Untitled2 | |
FamilyName: Untitled2 | |
Weight: Regular | |
Copyright: Copyright (c) 2015, be5in | |
UComments: "2015-9-16: Created with FontForge (http://fontforge.org)" | |
Version: 001.000 | |
ItalicAngle: 0 | |
UnderlinePosition: -100 |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Console] | |
"ColorTable00"=dword:00373030 | |
"ColorTable01"=dword:00a86c4f | |
"ColorTable02"=dword:00008000 | |
"ColorTable03"=dword:00b0a800 | |
"ColorTable04"=dword:002d30bc | |
"ColorTable05"=dword:009a5685 | |
"ColorTable06"=dword:002d8da1 |
This file has been truncated, but you can view the full file.
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
SplineFontDB: 3.0 | |
FontName: Descret-Roman | |
FullName: Descret Roman | |
FamilyName: Descret | |
Weight: Medium | |
Copyright: Converted by Andrey V. Panov from TeX fonts | |
Version: 0.1.0 ; ttfautohint (v1.3) | |
ItalicAngle: 0 | |
UnderlinePosition: -150 | |
UnderlineWidth: 50 |
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
function $(C,E,K){if(!(C instanceof Array))return K("string"==typeof C? | |
E[C]:C);switch(C[0]){case"lambda":return K(function(K){return function( | |
){for(var e=Object.create(E),u=0;u<C[1].length;u++)e[C[1][u]]=arguments | |
[u];return $(C[2],e,K)}});case"if":return $(C[1],E,function(e){return e | |
?$(C[2],E,K):$(C[3],E,K)});case"callcc":return $(C[1],E,function(C){var | |
E=function(){return function(C){return K(C)}};return C(E)(E)});case "'" | |
:return K(C[1]);default:return $c(C,E,K)}}function $c(C,E,K){return $(C | |
[0],E,function(e){return $$(C.slice(1),E,function(C){return e(K).apply( | |
null,C)})})}; function $$(C,E,K) {return C.length?$(C[0],E,function(e){ | |
return $$(C.slice(1),E,function(C){return K(C?[e]:[e].concat(C))})}):K( |
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
var upm = 1000; | |
function Point(x, y, on, interpolated){ | |
this.xori = x; | |
this.yori = y; | |
this.xtouch = x; | |
this.ytouch = y; | |
this.touched = false; | |
this.donttouch = false; | |
this.on = on; |
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
// noprotect | |
function Lambda(param, body, e){ | |
this.param = param | |
this.body = body | |
this.env = e | |
}; | |
Lambda.prototype.apply = function(t, args, k0){ | |
var e_ = Object.create(this.env); | |
for(var j = 0; j < this.param.length; j++){ | |
e_[this.param[j]] = args[j]; |
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
function interpret(form, env, k){ | |
if(form instanceof Array){ | |
switch(form[0]){ | |
case 'lambda': { | |
var params = form[1]; | |
var body = form[2]; | |
return k(function(k){ return function() { | |
var e = Object.create(env); | |
for(var j = 0; j < params.length; j++) | |
e[params[j]] = arguments[j]; |
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
var H = 3 | |
var Η = 2 | |
console.log(Η + H) // 5 |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
</body> | |
</html> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
</body> | |
</html> |