Skip to content

Instantly share code, notes, and snippets.

View rowe-morehouse's full-sized avatar
👋
… hi!

Rowe Morehouse rowe-morehouse

👋
… hi!
View GitHub Profile
@rowe-morehouse
rowe-morehouse / ff.stable.txt
Created December 28, 2017 23:44 — forked from 2bits/ff.stable.txt
ffmpeg-0.10.2 configure options
Usage: configure [options]
Options: [defaults in brackets after descriptions]
Standard options:
--help print this message
--logfile=FILE log tests and output to FILE [config.log]
--disable-logging do not log configure debug information
--prefix=PREFIX install in PREFIX []
--bindir=DIR install binaries in DIR [PREFIX/bin]
--datadir=DIR install data files in DIR [PREFIX/share/ffmpeg]
@rowe-morehouse
rowe-morehouse / git-io-custom-url.md
Last active September 21, 2020 12:43 — forked from dikiaap/git-io-custom-url.md
github URL shortener / git.io custom URL

github url shortener / generate custom github url

Command:

curl https://git.io/ -i -F "url=https://github.com/YOUR_GITHUB_URL" -F "code=YOUR_CUSTOM_NAME"

URLs that can be shortened:

  • https://github.com/*
@rowe-morehouse
rowe-morehouse / camphor.scss
Created September 26, 2020 20:53 — forked from bdno86/camphor.scss
camphor
$camphor300:'d09GMgABAAAAAQ5UABIAAAAEn0QAAQ3tAAEZmQAAAAAAAAAAAAAAAAAAAAAAAAAAG4SkahzOKgZgFotgAIosCCIJgnMRCAqLlgCKvTwBNgIkA5lwE4GnDguZdAAEIAW7bwcgDHJb0WS0WUXZkokWaBHx4wKbY7TigANIU/t980QCGzI/IkCsdbqJZwY1ZOgWDngIamw3I43435Dd+zJ1kNmKVp/DvXNAwaNm//////////////////+/NZkMZ5cAl0CpbZ3oiwloFA5GyIWNzOYVLt1bpXPX+pABI2fo5rMZpgVYIzYqgxt92ajECqUKh2G9gaOCVRC23VSRVypHfbvb7wYcwEM25WArF0esm1yKzDixrJRdcBGtcpBZTFbFbIl8LIU4gWOnEdSITqkoGrHWJ8ywn9eVFWWk3lC6m07qp1TXntHaWp6ekYHLrFoyzOXYiQnn2kWX2zqMaFBTca25vHKndPhJV66HRhQzL9lB3OT20KGTXuFHu62wm1qzoV/iTnaiLdc8o/D7B+1O94BrjSE3cia6U1A5XNp0kHmUj8IMBaeiGaiNJV7b1csb0bq8EWYo2h1TuipR+7hmYjxeZsonGLNcmgsKp5EUDCEj9SvRyxX2uMUNfINmfNqglBYNNtjtNmdwWV2ly4uQKheyDyka2RTRoQ3IEfs+0BNcGJ4Z5AnmHNpFbCKW5PsXkAzJ6VVzzVMo0fwIUpQQT67itTNRE946/NxDashl9KuAFUbZ6yW91vObh+WAMZ1mQ1J4wotF6KXHuo65X6wSz406hW/T6XZMf/6W+HGYUxCDfhyjPaoMGcWccmbYM/H35NdHTOd79Jg0ho/BDBvRy2vcg8pHsv07UYiKrDFeqzL0Qk7qCkXLuukl2EKuR3xS6VtsLEaT0BfWoDYoQ1YvEjjT729XNMYoCX3j+2ApedBG/UHLOJ7AAnfPSqdmmePsY+522MpfPaf7kf6fIJMn0/4SE6PmuI3yjyeGjWn+1qj/ukf09DE
@rowe-morehouse
rowe-morehouse / sample-usability-test-script
Created October 1, 2020 03:12 — forked from gkogan/sample-usability-test-script
Sample Usability Testing Script for SaaS Startups
(Introduce yourself and thank the participant. Outline how the call will proceed. Emphasize that you want to hear their honest feedback, so they should think aloud and unfiltered as much as possible.)
PART 1: Desired Outcomes
Before we look at the site, I’d like to ask you just a few questions.
What’s your job title and what do you consider to be your most important responsibilities?
(Unpack their answer to understand the root of their responsibilities, their real "desired outcome"--that is, what they're trying to accomplish. For example, if they say "I'm responsible for maintaining data pipelines," dig deeper with questions like "Why is that important?" until you get at the heart of their responsibilities, like "My job is to ensure the integrity and auditability of the models that run our company." This might take a few follow-up questions to reach.)
@rowe-morehouse
rowe-morehouse / complete-list-of-ffmpeg-flags+commands.txt
Last active October 6, 2020 07:36 — forked from tayvano/gist:6e2d456a9897f55025e25035478a3a50
complete list of ffmpeg flags / commands
Originall From: http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options | Posted 2015-05-29
ffmpeg full documentation: https://ffmpeg.org/ffmpeg.html
----------------------------------------
This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full.
usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}…
Getting help:
-h — print basic options
for i in **/*.mp4; do
    d=$(dirname "$i");
    b=$(basename "$i" .mp4);
    mkdir -p "720/${d}"
    ffmpeg -i "$i" -c:v libx264 -s hd720 "720/${d}/${b}_720.mp4"
done
@rowe-morehouse
rowe-morehouse / multiply-blending-mode-to-png.md
Created October 15, 2020 00:28 — forked from mfd/multiply-blending-mode-to-png.md
Multiply blending mode to PNG in Photoshop
  1. copy your image (Ctrl+A and Ctrl+C)
  2. make a new document-sized pure-black layer behind it
  3. group the black layer and yor image together
  4. add mask to the group
  5. enter mask edit mode (alt+click on the mask icon/thumbnail)
  6. paste your image in the mask (b/w) and then invert it.
  7. save it as a 24-bit transparent PNG
@rowe-morehouse
rowe-morehouse / regex.md
Created October 15, 2020 00:32 — forked from magicznyleszek/regex.md
RegEx Cheatsheet