Skip to content

Instantly share code, notes, and snippets.

View agarrharr's full-sized avatar
📱

Adam Garrett-Harris agarrharr

📱
View GitHub Profile
@agarrharr
agarrharr / index.md
Last active February 18, 2020 09:54
Getting Started with Redux by Dan Abramov Notes

Redux Course

https://egghead.io/courses/getting-started-with-redux

Principles

  1. Single source of truth
    • Describe the state of the entire app in the state
  2. State is read-only
  • The state tree is redundant. You cannot modify it. Everytime you want to change the state, you dispatch an action.
@agarrharr
agarrharr / gist:281dd9e650367906e1b555b3b17b35ad
Created May 29, 2020 00:05
Create Video From Image and mp3 Audio File
ffmpeg -loop 1 -i ~/Downloads/bookbytes-video-image.png -i ~/Downloads/bb-032.mp3 -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest ~/Downloads/bb-032.mp4
@agarrharr
agarrharr / index.md
Last active December 27, 2023 18:18
Common Ledger CLI Commands

Common Ledger CLI Commands

  • Income vs expenses this month?

    $ ledger balance income expenses --period "this month"
  • What did my budget look like at a certain date?