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
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 |
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
export interface Browser { | |
name:string, | |
version:any, | |
osversion:string, | |
tablet:boolean, | |
mobile:boolean, | |
opera:boolean, | |
chromeBook:boolean, | |
chrome:boolean, | |
yandexbrowser:boolean, |
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 * as THREE from 'three'; | |
const FONT_FAMILY:string = 'Open Sans'; | |
export enum TextAlign { | |
NONE, | |
START, | |
END, | |
LEFT, | |
CENTER, |
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 {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 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 UIClickOutside = function(container, onClickOutside){ | |
var $container = $(container); | |
this.bind = function(){ | |
$(document).on('mouseup.UIClickOutside', function (e){ | |
if (!$container.is(e.target) && $container.has(e.target).length === 0){ | |
if(onClickOutside) onClickOutside(e.target); | |
} | |
}); | |
}; |
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
<link rel="import" href="../google-map/google-map.html"> | |
<link rel="import" href="../notification-elements/notification-alert.html"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<link rel="import" href="../paper-calculator/paper-calculator.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { |
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
#user nobody; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; |
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
(function ($) { | |
$.fn.KVNum = function (method) { | |
var settings = { | |
}; | |
function process($input){ | |
var input = $($input)[0]; | |
var value = $input.val(), |
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 Templates = function(){ | |
this.tmpls = {}; | |
function renderer(html, data){ | |
for (var p in data) { | |
if (data.hasOwnProperty(p)) { | |
html = html.replace(new RegExp('%' + p + '%', 'g'), data[p]); | |
} | |
} |
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
function humanizeDate(date, output_with_time) { | |
if(!(Object.prototype.toString.call(date) === "[object Date]")){ | |
var t = date.split(/[- :]/); | |
date = new Date(t[0], t[1] - 1, t[2], t[3], t[4], t[5]); | |
} | |
if (!date) { | |
return '—'; | |
} |
NewerOlder