Verify Permissions
diskutil verifyPermissions /
Repair Permissions
diskutil repairPermissions /
""" | |
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
BSD License | |
""" | |
import numpy as np | |
# data I/O | |
data = open('input.txt', 'r').read() # should be simple plain text file | |
chars = list(set(data)) | |
data_size, vocab_size = len(data), len(chars) |
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
var zfbot = { | |
interval:5000, | |
data:null, | |
count:null, | |
started:false, | |
load_jq:function() | |
{ | |
var jq = document.createElement("script"); | |
jq.type = "text/javascript"; | |
jq.src = "http://libs.baidu.com/jquery/1.10.2/jquery.min.js"; |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
namespace SuffixTreeAlgorithm | |
{ | |
public class SuffixTree | |
{ |