Skip to content

Instantly share code, notes, and snippets.

View hswolff's full-sized avatar
🙃
😄

Harry Wolff hswolff

🙃
😄
View GitHub Profile
@hswolff
hswolff / sha_3.js
Last active January 2, 2016 15:19
sha_fun
// http://www.movable-type.co.uk/scripts/sha1.html
// based off http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf
// minified size: 1320 bytes
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* SHA-1 implementation in JavaScript | (c) Chris Veness 2002-2013 | www.movable-type.co.uk */
/* - see http://csrc.nist.gov/groups/ST/toolkit/secure_hashing.html */
/* http://csrc.nist.gov/groups/ST/toolkit/examples.html */
@hswolff
hswolff / .slate.js
Last active December 17, 2015 07:28
My slate config file. https://github.com/jigish/slate
// SLATE CONFIG
var laptopMonitor = "1";
var externalMonitor = "0";
//
// Configs
//
slate.configAll({
// 'windowHintsDuration': '5,
@hswolff
hswolff / files2folder.coffee
Last active December 13, 2015 20:08
This little script takes a directory, scans it for all files, and puts all the files into a directory of the same name.
#!/usr/bin/env node
fs = require 'fs'
dir = process.argv[2]
errorMsg = """
Error: need a directory
Please append path as first argument
Ex) coffee files2folder.coffee /Users/hswolff/Downloads
"""
@hswolff
hswolff / file_cleanup.rb
Created February 19, 2012 21:12
Cleanup of unwanted files
#!/usr/bin/env ruby
path = '/Volumes/Downloads/Cleanup/'
Dir.foreach(path) do |item|
next if item == '.' or item == '..'
puts item
item_dir = path + item