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
#!/usr/bin/env ruby | |
path = '/Volumes/Downloads/Cleanup/' | |
Dir.foreach(path) do |item| | |
next if item == '.' or item == '..' | |
puts item | |
item_dir = path + item |
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
#!/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 | |
""" |
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
// SLATE CONFIG | |
var laptopMonitor = "1"; | |
var externalMonitor = "0"; | |
// | |
// Configs | |
// | |
slate.configAll({ | |
// 'windowHintsDuration': '5, |
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
// 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 */ |
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
-- include hydra-grid (https://github.com/sdegutis/hydra-grid) | |
require "ext.grid.init" | |
-- | |
-- boilerplate hydra code | |
-- | |
-- autostart hydra | |
hydra.autolaunch.set(true) |
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
"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 = `"`; |
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 React, { | |
Component, | |
ART, | |
} from 'react-native'; | |
const { | |
Group, | |
Shape, | |
Surface, | |
} = ART; |
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
-- watch for changes | |
hs.pathwatcher.new(os.getenv("HOME") .. "/.hammerspoon/", hs.reload):start() | |
-- | |
-- start custom config | |
-- |
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
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! |
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
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)); |
OlderNewer