Skip to content

Instantly share code, notes, and snippets.

View hswolff's full-sized avatar
🙃
😄

Harry Wolff hswolff

🙃
😄
View GitHub Profile
-- include hydra-grid (https://github.com/sdegutis/hydra-grid)
require "ext.grid.init"
--
-- boilerplate hydra code
--
-- autostart hydra
hydra.autolaunch.set(true)
@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
@hswolff
hswolff / addresses.js
Created November 11, 2015 03:36
Simple script to parse addresses from one form to another. requires at least node 4.0
"use strict";
// usage:
// cat test.csv | node addresses.js > done.csv
const headings = `name,street address,street address,city,state,country,zip`;
process.stdout.write(headings + '\n');
const deliminator = `"`;
@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 / .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 / 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 */
import React, {
Component,
ART,
} from 'react-native';
const {
Group,
Shape,
Surface,
} = ART;
@hswolff
hswolff / _config.yml.diff
Created October 21, 2016 20:02
Diff of _config from Yarn 1.x to Reptar 2.0.0
path:
source: ./
destination: ./_site
plugins: ./_plugins
themes: ./_themes
# Reptar now has support for data files!
+ data: ./_data
file:
# Support for File defaults has been added!
@hswolff
hswolff / init.lua
Created March 23, 2016 12:14
hammerspoon init.lua
-- watch for changes
hs.pathwatcher.new(os.getenv("HOME") .. "/.hammerspoon/", hs.reload):start()
--
-- start custom config
--
@hswolff
hswolff / rankToTop.js
Created April 3, 2018 14:27
Little Script to Rank to Top issues in a Jira Epic
async function rankNonDoneIssuesToTopInEpic(dryRun = true) {
console.warn(`Dry Run: ${dryRun ? 'ENABLED' : 'DISABLED'}`);
const issuesInEpic = Array.from(document.querySelectorAll('.nav.status'))
.filter(el => !['Resolved', 'Closed'].includes(el.textContent.trim()))
// Go from bottom up so the order remains the same
.reverse();
const sleep = (time = 1000) =>
new Promise(resolve => setTimeout(resolve, time));