Skip to content

Instantly share code, notes, and snippets.

View kconner's full-sized avatar
✍️

Kevin Conner kconner

✍️
View GitHub Profile

Keyboard Shortcuts and Workflow Efficiencies

This is incomplete. It was inspired by a mutual exchange of eye-opening keyboard shortcuts.

Introduction

If you want to work creatively, it helps to remove interruptions and wait times. Using a computer is meant to be faster than doing things by hand, and creative work is one reason we use them. We know from experience what it's like to use an app that you have to wait for, versus an app that keeps up with you. The app that keeps up with you lets you do better work because you remain more focused, and it's more fun to use. But you, too, can either be fast or slow as a user. Computers spend most of their time waiting on us. So if you want to do your very best creative work with a computer, it will help if you and the computer get faster together.

Mac apps

@kconner
kconner / macOS Internals.md
Last active April 16, 2025 20:52
macOS Internals

macOS Internals

Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.

Starting Points

How to use this gist

You've got two main options:

@kconner
kconner / manx.sh
Last active August 14, 2023 15:20
manx [section] <page>: Creates and opens a PDF for a manpage
# Tested on macOS 13.
function manx {
if [ "$1" = "" ]; then
echo "manx [section] <page>: Creates and opens a PDF for a manpage."
else
pdfpath="/tmp/$*.man.pdf"
man -t $* | pstopdf -o "$pdfpath"; open "$pdfpath"
fi
}