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
var Ver36 = function() { | |
"use strict"; | |
var N = 18, N2 = N*2; | |
var d18_op; // D18 group operation table | |
var d18_inv; // D18 group inverse | |
var perm; // the permutation decomposed into cycles | |
var a2i,i2a; // ASCII translation tables | |
var NA=0xff; // invalid digit marker in ASCII table | |
// initialization code |
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
# -*- coding: utf-8 -*- | |
import locale | |
import re | |
from flask import Flask, redirect, request | |
app = Flask(__name__) | |
LANGUAGE_CODES = ('fr', 'en', 'zh') | |
DOMAIN_NAME = 'example.com' |