- OS - High Sierra 10.13
- Tensorflow - 1.4
- Xcode command line tools - 8.2 (Download from here: Xcode - Support - Apple Developer & Switch to different clang version: sudo xcode-select --switch/Library/Developer/CommandLineTools & check version: clang -v)
- Cmake - 3.7
- Bazel - 0.7.0
| <link rel="preload" href="css/global.min.css" as="style" onload="this.rel='stylesheet'"> | |
| <noscript><link rel="stylesheet" href="css/global.min.css"></noscript> | |
| <script> | |
| /*! loadCSS. [c]2017 Filament Group, Inc. MIT License */ | |
| !function(a){"use strict";var b=function(b,c,d){function j(a){if(e.body)return a();setTimeout(function(){j(a)})}function l(){f.addEventListener&&f.removeEventListener("load",l),f.media=d||"all"}var g,e=a.document,f=e.createElement("link");if(c)g=c;else{var h=(e.body||e.getElementsByTagName("head")[0]).childNodes;g=h[h.length-1]}var i=e.styleSheets;f.rel="stylesheet",f.href=b,f.media="only x",j(function(){g.parentNode.insertBefore(f,c?g:g.nextSibling)});var k=function(a){for(var b=f.href,c=i.length;c--;)if(i[c].href===b)return a();setTimeout(function(){k(a)})};return f.addEventListener&&f.addEventListener("load",l),f.onloadcssdefined=k,k(l),f};"undefined"!=typeof exports?exports.loadCSS=b:a.loadCSS=b}("undefined"!=typeof global?global:this); | |
| /*! loadCSS rel=preload po |
| import cfscrape | |
| import json | |
| import sys | |
| import argparse | |
| import requests | |
| import logging | |
| import time | |
| import random | |
| import urllib2 | |
| from pgoapi import PGoApi |
| /* | |
| Automatically click all "Verify your email" links in the welcome e-mail from | |
| Nintendo Pokémon Trainer Club's signup e-mails. | |
| Only unread emails in inbox will be processed. | |
| All processed e-mails will be marked as read if verification was successful, | |
| and optionally moved to trash if it's enabled in your settings. | |
| How to use: | |
| 1. Login to Gmail |
| raise ValueError("DEPRECATED/FROZEN - see https://github.com/kastnerkyle/tools for the latest") | |
| # License: BSD 3-clause | |
| # Authors: Kyle Kastner | |
| # Harvest, Cheaptrick, D4C, WORLD routines based on MATLAB code from M. Morise | |
| # http://ml.cs.yamanashi.ac.jp/world/english/ | |
| # MGC code based on r9y9 (Ryuichi Yamamoto) MelGeneralizedCepstrums.jl | |
| # Pieces also adapted from SPTK | |
| from __future__ import division | |
| import numpy as np |
The following recipes are sampled from a trained neural net. You can find the repo to train your own neural net here: https://github.com/karpathy/char-rnn Thanks to Andrej Karpathy for the great code! It's really easy to setup.
The recipes I used for training the char-rnn are from a recipe collection called ffts.com And here is the actual zipped data (uncompressed ~35 MB) I used for training. The ZIP is also archived @ archive.org in case the original links becomes invalid in the future.
⌘ – ⌘ – ⌘ – the Command Key symbol
⌥ – ⌥ – ⌥ – the Option Key symbol
⇧ – ⇧ – ⇧ – the Shift Key symbol
⌃ – ⌃ – ⌃ – the Control Key symbol
⎋ – ⎋ – ⎋ – the ESC Key symbol
⇪ – ⇪ – ⇪ – the Capslock symbol
⏎ – ⏎ – ⏎ – the Return symbol
⌫ – ⌫ – ⌫ – the Delete / Backspace symbol
⇥ – ⇥ – ⇥ – the Tab Key symbol
| traverse_io_registry: traverse_io_registry.c | |
| ${CC} $^ -framework CoreFoundation -framework IOKit -o $@ |
| - (NSMutableDictionary *) mutableDeepCopy { | |
| NSMutableDictionary * returnDict = [[NSMutableDictionary alloc] initWithCapacity:self.count]; | |
| NSArray * keys = [self allKeys]; | |
| for(id key in keys) { | |
| id oneValue = [self objectForKey:key]; | |
| id oneCopy = nil; | |
| if([oneValue respondsToSelector:@selector(mutableDeepCopy)]) { | |
| oneCopy = [oneValue mutableDeepCopy]; |