- 13" Macbook Pro 3.3 GHz i7 (late 2016)
- Microsoft Surface Book (2016)
- Dell up3216q 32" monitor
| #!/bin/sh | |
| print_usage() { | |
| echo "usage: compress_video <input_file>" | |
| echo "supported formats: mp4, webm, mkv, mov, avi, flv" | |
| } | |
| get_extension() { | |
| f="${1##*/}" | |
| case "$f" in |
| #!/bin/bash | |
| # This script will download the contents of a GitHub repo | |
| # and place them in a local directory. | |
| # | |
| # Usage: | |
| # download-repo.sh <repo> <output-path> <nested-path> <branch-name> | |
| # | |
| # Example: | |
| # download-repo.sh wattenberger/kumiko ./kumiko-assets master public/assets |
| // | |
| // Perlin noise and accumulation. | |
| // Created using Processing 4.0a3. | |
| // | |
| // Code by @marcedwards from @bjango. | |
| // | |
| // A GIF of this code can be seen here: | |
| // https://twitter.com/marcedwards/status/1370206924591960065 | |
| // |
| ### Points and display type | |
| PPI is points per inch below, not pixels per inch. Not all models are listed, just the first model with a new display size. Diamond, RGB Stripe and Pentile RGB refer to the subpixel patterns. | |
| iPhone 1 = 320×480 at 163PPI sRGB IPS LCD RGB Stripe | |
| iPhone 4 = 320×480 at 163PPI sRGB IPS LCD RGB Stripe | |
| iPhone 5 = 320×568 at 163PPI sRGB IPS LCD RGB Stripe | |
| iPhone 6 = 375×667 at 163PPI sRGB IPS LCD RGB Stripe | |
| iPhone 6 Plus = 414×736 at 153.5PPI sRGB IPS LCD RGB Stripe | |
| iPhone 7 = 375×667 at 163PPI P3 IPS LCD RGB Stripe |
| #!/usr/bin/env python3 | |
| # !! NOTE - this script is no longer maintained... please see the repo for further | |
| # updates: https://github.com/jheddings/notes2notion | |
| # this script attempts to migrate from Apple Notes to Notion while retaining as | |
| # much information and formatting as possible. there are limitations to the | |
| # export data from Notes, so we try to preserve the intent of the original note. | |
| # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
| ruby '2.7.1' | |
| gem 'rails', github: 'rails/rails' | |
| gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data | |
| # Action Text | |
| gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra' | |
| gem 'okra', github: 'basecamp/okra' | |
| # Drivers |
| #!/usr/bin/env bash | |
| # fetch_nike_puls_all_activities.bash | |
| # A simple bash script to fetch all activities and metrics from NikePlus. | |
| # See `nike_plus_api.md` for the API details. | |
| readonly bearer_token="$1" | |
| if [[ -z "$bearer_token" ]]; then | |
| echo "Usage: $0 bearer_token" | |
| exit |
| # blog post | |
| # | |
| # https://www.jessesquires.com/blog/customizing-git-log/ | |
| git log --graph --pretty=format:'commit: %C(bold red)%h%Creset %C(red)<%H>%Creset %C(bold magenta)%d %Creset%ndate: %C(bold yellow)%cd %Creset%C(yellow)%cr%Creset%nauthor: %C(bold blue)%an%Creset %C(blue)<%ae>%Creset%n%C(cyan)%s%n%Creset' |
| // | |
| // DockInfo.swift | |
| // | |
| // Created by Wessley Roche on 28/11/2016. | |
| // | |
| import Foundation | |
| enum WBDockPosition: Int { | |
| case bottom = 0 |