Skip to content
View putnamhill's full-sized avatar

Block or report putnamhill

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. git-init-remote git-init-remote
    1
    #!/bin/sh
    2
    # create remote origin and push
    3
    
                  
    4
    # use 'trunk' unless init.defaultBranch is set
    5
    default_branch=$(git config init.defaultBranch || echo 'trunk')
  2. split-join using local IFS split-join using local IFS
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    split() {
    4
    	local IFS="$1"
    5
    	shift
  3. These are mostly notes for myself; s... These are mostly notes for myself; some I've found and others I've made.
    1
    ## git
    2
    
                  
    3
    clone from tnas
    4
    ```bash
    5
    git clone -u /usr/local/bin/git-upload-pack nas-c:git/smokeping.git
  4. Run a command each time a file is mo... Run a command each time a file is modified. For example: validate an html file automatically each time it's saved.
    1
    #!/bin/sh
    2
    
                  
    3
    # sample usage:
    4
    #   ontouchdo malformed.html 'clear; xmllint --noout --valid malformed.html 2>&1 | head -n20'
    5
    #
  5. Print groups of files that are dupli... Print groups of files that are duplicates.
    1
    #!/usr/bin/perl
    2
    
                  
    3
    use strict;
    4
    use warnings;
    5
    use Getopt::Long;
  6. iffutil iffutil Public

    The purpose of these utilities is to maintain a serialized xml version of binary iff files as xml to help with version control systems. They can also be used to edit and recompile an iff file.

    Perl 2