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
setTimeout(function() { | |
var encoded = 'eycptqkGmkx|ys=s'; | |
var decoded = Array.prototype.map.call(encoded, function(c, i) { | |
return String.fromCharCode(c.charCodeAt(0) - i); | |
}).join(''); | |
$('#contact').html($('<a></a>') | |
.attr('href', 'mailto:' + decoded) | |
.text(decoded)); | |
}, 3000) |
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
# coding:utf-8 | |
import argparse | |
import base64 | |
import json | |
from googleapiclient import discovery | |
import httplib2 | |
import Tkinter as tk | |
import tkFileDialog |
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 face_recognition | |
import cv2 | |
from multiprocessing import Process, Manager, cpu_count | |
import time | |
import numpy | |
# This is a little bit complicated (but fast) example of running face recognition on live video from your webcam. | |
# This example is using multiprocess. |
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
const exec = require('child_process').execSync | |
const isWindows = require('is-windows') | |
let Encoding | |
if (isWindows()) { | |
Encoding = require('encoding-japanese') | |
} | |
function hiraToKana(str) { | |
return str.replace(/[\u3041-\u3096]/g, function(match) { | |
var chr = match.charCodeAt(0) + 0x60; |
OlderNewer