View closest-word.js
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
// You can modify these | |
const wordsToCheck = ["Apple", "red delisous", "orangg", "rgapefruit"]; | |
const dictionary = ["apple", "banana", "orange", "grapefruit", "red delicious"]; | |
// Don't modify below here | |
const ALPHABET = "qwertyuiopasdfghjklzxcvbnm1234567890_ ".split("").sort(); | |
const BASE_ALPHABET_HASH = ALPHABET.reduce((acc, x) => ({[x]: 0, ...acc}), {}); | |
const DICTIONARY_HASHES = dictionary.map((w) => buildFreqHash(cleanStr(w))); |
View elf-marbles.py
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
""" | |
The Elves play this game by taking turns arranging the marbles in a circle | |
according to very particular rules. The marbles are numbered starting with 0 | |
and increasing by 1 until every marble has a number. | |
First, the marble numbered 0 is placed in the circle. At this point, | |
while it contains only a single marble, it is still a circle: | |
the marble is both clockwise from itself and counter-clockwise from itself. | |
This marble is designated the current marble. |
View four-numbers.py
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 itertools | |
""" | |
The following math problem illustrates the essence of hacking: | |
Use each of the numbers 1, 3, 4, and 6 exactly once with any of the four basic math operations (addition, subtraction, multiplication, and division) to total 24. Each number must be used once and only once, and you may define the order of operations; for example, 3 * (4 + 6) + 1 = 31 is valid, however incorrect, since it doesn’t total 24. | |
The rules for this problem are well defined and simple, yet the answer eludes many. Like the solution to this problem (shown on the last page of this book), hacked solutions follow the rules of the system, but they use those rules in counterintuitive ways. | |
""" | |
nums = ['1','3','4','6'] |
View gist:8596a75029a5887eedc830cbe2b1803e
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
find . -iname '*.mkv' -o -iname '*.avi' -o -iname '*.mp4' -o -iname '*.mov' | xargs -d '\n' du -sh | sort -hr |
View sudoku.js
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
class SudokuValidator { | |
constructor(board) { | |
if (board.length !== board[0].length) { | |
throw new Error('Board must be square'); | |
} | |
if (Math.sqrt(board.length) !== Math.floor(Math.sqrt(board.length))) { | |
throw new Error('Board size must be a square number') | |
} | |
View Simplenet.py
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
# All Imports | |
import pickle | |
import csv | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import cv2 | |
from math import floor, ceil | |
from sklearn.model_selection import ShuffleSplit | |
from sklearn.utils import shuffle |
View cnn-traffic-signs.py
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 tensorflow as tf | |
from tensorflow.contrib.layers import flatten | |
# TODO: pull outs weights from individual functions, make them globally accessible | |
CLASSES_LEN = 43 | |
DEBUG = False | |
def get_depth(input_tensor): | |
if(input_tensor.get_shape): |
View git_push_upstream.sh
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
# Git Push Upstream | |
# A quick command for people that create a lot of feature branches | |
# | |
# Whereas `git push` will return an error if you haven't set the upstream branch | |
# `gpu` will automatically push to the correct upstream branch | |
# so you don't have to type `git push --set-upstream origin my_branch` for each new branch | |
function gpu() { | |
local RESPONSE=$( git push 2>&1 ) | |
local UPSTREAM=$( echo "$RESPONSE" | grep -o "git push --set-upstream origin.*" ) |
View split_countries.sh
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
# A command for a mapping project I'm working on. | |
# Converts one big shapefile of countries into individual files. | |
# Data file from www.naturalearthdata.com | |
errors=() | |
for country in "${countries[@]}" | |
do | |
echo "$country" | |
# skip if we've already processed this country | |
test -d "$country" && continue |
View rspek.sh
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
# Love running tests but hate having to check and see if they're finished? | |
# Add rspek to your .bash_profile to get a desktop notification (plus optional sound) when your tests are done! | |
# Before using, make sure to grab the dependency with `brew install terminal-notifier` or `gem install terminal-notifier` | |
# | |
# USE: | |
# rspek -f // run all tests in /spec. `--fail-fast` is set by default, `-f` disables it | |
# rspek /spec/features -q // run all features, no audio notification | |
# rspek some_file_spec.rb:50 // run one test | |
function rspek() { |
NewerOlder