This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Default settings for amethyst | |
# Repo: `https://github.com/ianyh/Amethyst` | |
# | |
# Note due to issue 1419 (https://github.com/ianyh/Amethyst/issues/1419) some | |
# config values may conflict and not work if they are the same as the default | |
# values for amathyst. You can see these values on github at | |
# https://github.com/ianyh/Amethyst/blob/development/Amethyst/default.amethyst | |
# If you're experiencing conflicts and the settings are the same as the default, | |
# comment out the commands in this file. | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Check if both directory and extension arguments are provided | |
if [ $# -ne 2 ]; then | |
echo "Usage: ./script.sh [directory] [file extension]" | |
exit 1 | |
fi | |
dir=$1 | |
ext=$2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. | |
# Initialization code that may require console input (password prompts, [y/n] | |
# confirmations, etc.) must go above this block; everything else may go below. | |
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
fi | |
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Make Dock only show active apps | |
defaults write com.apple.dock static-only -bool true; killall Dock | |
defaults write com.apple.finder _FXSortFoldersFirst -bool true; killall Finder | |
# Check if Homebrew is installed and install if not | |
if ! command -v brew &> /dev/null | |
then | |
echo "Installing Homebrew..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "REID E. CHATHAM", | |
"contact": { | |
"email": "[email protected]", | |
"website": "https://www.reidchatham.com", | |
"github": "https://github.com/rchatham" | |
}, | |
"summary": "I am a seasoned Software Engineer specializing in iOS development and proficient in Swift, Objective-C, and Python. I have a track record in building scalable applications, improving code architecture, and implementing user-centered design, remaining agile while maintaining the integrity of mission critical code. I have experience building apps from the ground up with few to no constraints to working on large scale applications serving tens of millions of daily users.", | |
"education": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unbind C-b | |
set-option -g prefix C-Space | |
bind-key C-Space send-prefix | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
set-option -g mouse on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import SwiftyJSON | |
class {{className}}: Codable { | |
{{#properties}} | |
var {{nativeName}}: {{type}} | |
{{/properties}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key | |
# Don't add passphrase | |
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
cat jwtRS256.key | |
cat jwtRS256.key.pub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// CoordinatorType.swift | |
// | |
// Created by Reid Chatham on 9/19/16. | |
// | |
#if os(macOS) | |
import Cocoa | |
public typealias MyViewController = NSViewController | |
public typealias MyTabController = NSTabViewController |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
extension AppDelegate: CoordinatorType { | |
weak internal var delegate: CoordinatorTypeDelegate? { return nil } | |
internal var childCoordinators: [CoordinatorType] { | |
get { | |
return AppDelegate.Static.childCoordinators | |
} | |
set { |
NewerOlder