Skip to content

Instantly share code, notes, and snippets.

View jackgill's full-sized avatar

Jack Gill jackgill

  • DigitalGlobe
  • Boulder, CO
View GitHub Profile
@jackgill
jackgill / DeDup-iTunes.ps1
Created May 6, 2014 04:01
DeDup-iTunes.ps1
<#
.SYNOPSIS
Finds duplicate iTunes tracks, and if the -Delete parameter is specified, deletes them.
.PARAMETER Delete
Delete duplicate tracks
#>
[CmdletBinding()]
param(
[switch] $Delete
@jackgill
jackgill / bundle.js
Last active March 25, 2024 13:53
A node.js script to create a bundle containing an npm package, and all of its dependencies.
/*
* This script will download a package (and all of its dependencies) from the
* online NPM registry, then create a gzip'd tarball containing that package
* and all of its dependencies. This archive can then be copied to a machine
* without internet access and installed using npm.
*
* The idea is pretty simple:
* - npm install [package]
* - rewrite [package]/package.json to copy dependencies to bundleDependencies
* - npm pack [package]