Skip to content

Instantly share code, notes, and snippets.

View algrym's full-sized avatar

A. J. Wright algrym

View GitHub Profile
@algrym
algrym / newscript.sh
Created April 29, 2020 01:46 — forked from aaronNGi/newscript.sh
Boilerplate for new POSIX shell scripts
#!/bin/sh
prog_name=${0##*/}
version=1.0
version_text="Boilerplate for new scripts v$version"
options="h o: q v V"
help_text="Usage: $prog_name [-o <text>] [-hqvV] [<file>]...
Boilerplate for new scripts
@algrym
algrym / readme.md
Created January 6, 2018 21:52 — forked from coolaj86/how-to-publish-to-npm.md
How to publish packages to NPM

Getting Started with NPM (as a developer)

If you haven't already set your NPM author info, now you should:

npm set init.author.name "Your Name"
npm set init.author.email "you@example.com"
npm set init.author.url "http://yourblog.com"

npm adduser

# Directories #
/build/
/bin/
target/
# OS Files #
.DS_Store
*.class