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
import {Dispatcher} from 'flux'; | |
const DELAY_TIME = 100; | |
export class QDispatcher { | |
private dispatcher:Dispatcher = null; | |
private isProcessing:boolean = false; | |
private actionQueue:any[] = []; | |
constructor() { |
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
import * as THREE from 'three'; | |
const FONT_FAMILY:string = 'Open Sans'; | |
export enum TextAlign { | |
NONE, | |
START, | |
END, | |
LEFT, | |
CENTER, |
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
export interface Browser { | |
name:string, | |
version:any, | |
osversion:string, | |
tablet:boolean, | |
mobile:boolean, | |
opera:boolean, | |
chromeBook:boolean, | |
chrome:boolean, | |
yandexbrowser:boolean, |
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
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
from selenium.webdriver.support.ui import Select | |
import time | |
from datetime import date, timedelta | |
import numpy as np | |
import threading | |
from threading import Lock | |
def alarm(): | |
import os |
OlderNewer