This file contains 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
const daysPerMonth = [ | |
31, | |
28, | |
31, | |
30, | |
31, | |
30, | |
31, | |
31, | |
30, |
This file contains 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
()([t[lÅ[eèéẻẽẹêá»áº¿á»ƒá»…ệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ] | |
LÅ[eèéẻẽẹêá»áº¿á»ƒá»…ệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ] | |
][a[eèéẻẽẹêá»áº¿á»ƒá»…ệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ] | |
[\s]+[eèéẻẽẹêá»áº¿á»ƒá»…ệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ] | |
¡[eèéẻẽẹêá»áº¿á»ƒá»…ệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ] | |
[eèéẻẽẹêá»áº¿á»ƒá»…ệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ] | |
£[eèéẻẽẹêá»áº¿á»ƒá»…ệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ] | |
£[eèéẻẽẹêá»áº¿á»ƒá»…ệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ] | |
[eèéẻẽẹêá»áº¿á»ƒá»…ệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ] | |
¡[eèéẻẽẹêá»áº¿á»ƒá»…ệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ] |
This file contains 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
80 Position: | |
'Dessin du premier plan | |
IF dir = 1 THEN pos$ = LEFT$(piece$, 3) | |
IF dir = 2 THEN pos$ = RIGHT$(piece$, 3) | |
IF dir = 3 THEN pos$ = RIGHT$(piece$, 2) + LEFT$(piece$, 1) | |
IF dir = 4 THEN pos$ = RIGHT$(piece$, 1) + LEFT$(piece$, 2) | |
IF LEFT$(pos$, 1) = "1" THEN | |
LINE (10, 10)-(134, 76) | |
LINE -(134, 274) | |
LINE -(10, 340) |
This file contains 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 ( | |
"math" | |
"strings" | |
) | |
func levenshteinDistance(s string, t string) int { | |
// degenerate cases | |
s = strings.ToLower(s) | |
t = strings.ToLower(t) | |
if (s == t) { return 0 } |
This file contains 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
// Extracts base URL from location of current document. | |
function extractBaseUrl() { | |
// Get URL without query path | |
var url = [location.protocol, '//', location.host, location.pathname].join(''); | |
// Remove filename if present | |
var f = url.substr(url.lastIndexOf("/") + 1).toLowerCase(); | |
if (f.indexOf('.html') >= 0 || f.indexOf('.htm') >= 0 || f.indexOf('.php')) { | |
url = url.substr(0, url.length - f.length); | |
} | |
// Add last slash if missing |
This file contains 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
if (typeof(console) === 'undefined') { | |
var functionNames = ['info', 'error', 'warn', 'dir', 'trace', 'log', 'assert']; | |
console = {}; | |
for (var i = 0; i < functionNames.length; i++) console[functionNames[i]] = function(){}; | |
} |
This file contains 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
Show hidden characters
[ | |
{ "keys": ["ctrl+shift+x"], "command": "tidy_xml" }, | |
{ "keys": ["ctrl+shift+j"], "command": "prettify_json" } | |
] |
NewerOlder