Skip to content

Instantly share code, notes, and snippets.

View parisminton's full-sized avatar

James Thomas parisminton

View GitHub Profile
@oldwestaction
oldwestaction / Code.gs
Last active January 3, 2023 01:37
google apps script to populate a google sheet w/ fragrance notes from fragrantica
// full instructions on using this script are available here: https://gist.github.com/oldwestaction/68b5c3bedf6d8acb84ff5a846cd3d8f8
// edit these variables depending on how your sheet is set up
// 1 = column A, 2 = column B, and so on
var googleSheetMenuButton = 'Custom scripts';
var perfumerColumn = 1;
var titleColumn = 2;
var fragranceNotesColumn = 3;
@luciovilla
luciovilla / ffmpeg_commands.md
Last active July 15, 2021 21:43
Useful ffmpeg commands for newsrooms

Useful ffmpeg commands for newsrooms

Quickly resize, convert, extract audio from videos and edit audio from the command line.

About ffmpeg

A complete, cross-platform solution to record, convert and stream audio and video. https://ffmpeg.org

Installing

Install Homebrew first

@jacqui
jacqui / .profile
Created December 15, 2011 19:52 — forked from tysone/snippet.sh
Display current rvm gemset and git branch in your prompt (bash).
# Adapted from: http://ariejan.net/2010/04/25/ruby-version-and-gemset-in-your-bash-prompt-yes-sir
function rvm_version {
local gemset=$(echo $GEM_HOME | awk -F'@' '{print $2}')
[ "$gemset" != "" ] && echo "@$gemset"
}
# https://github.com/git/git/blob/master/contrib/completion/git-completion.bash
# defines '__git_ps1' current git branch function
source ~/.git-completion.bash