Skip to content

Instantly share code, notes, and snippets.

View gmccoy's full-sized avatar

Greg McCoy gmccoy

View GitHub Profile

Software Development Resources

Here is a list of stuff I routinely find useful.

Tools

  • Miller - command-line tool for querying, shaping, and reformatting data files in various formats including CSV, TSV, JSON, and JSON Lines.
  • Obsidian - Excellent tool for managing a plain flat file Markdown wiki knowledge base
  • ripgrep - Fast Rust replacement for grep
@gmccoy
gmccoy / FileLocker.psm1
Created December 16, 2022 20:25
PowerShell module for controlling FileLocker
# PowerShell Module for uploading files to FileLocker
# Greg McCoy gmccoy@purdue.edu
# 15 May 2020
function Sign-In {
param(
[Parameter(Mandatory=$true)] [string]$Key,
[Parameter(Mandatory=$true)] [string]$User
)