Skip to content

Instantly share code, notes, and snippets.

View rchatham's full-sized avatar
👨‍💻
code code code...

Reid Chatham rchatham

👨‍💻
code code code...
View GitHub Profile
@rchatham
rchatham / hermes-translate-support.md
Last active March 22, 2026 19:38
Hermes Translate – Support

Hermes Translate – Support

Hermes Translate is a real-time peer-to-peer translation app for iOS. Two people can have a conversation across language barriers using Bluetooth or local WiFi — no internet required.


Frequently Asked Questions

Why does the app need microphone and speech recognition permissions? Hermes listens to your voice to transcribe it for translation. These permissions are only used while you are actively speaking.

@rchatham
rchatham / privacy-policy.md
Created March 22, 2026 01:10
Hermes Translate Privacy Policy

Privacy Policy for Hermes Translate

Last updated: March 2026

Hermes Translate is a real-time voice translation app that operates entirely on your device.

Data We Do Not Collect

Hermes Translate does not collect, store, transmit, or share any personal data. Specifically:

@rchatham
rchatham / PRIVACY_POLICY.md
Created April 9, 2025 21:06
Appy App - Privacy Policy

Privacy Policy

Data Collection

We do not collect, store, or sell any of your personal data through our application.

Third-Party APIs

Our application may use third-party APIs based on your choices while using the app. Any data shared with these third-party services is subject to their respective privacy policies. We recommend reviewing the privacy policies of these third parties before using their services through our application.

Limitation of Liability

We assume no responsibility or liability for any data shared with third-party APIs. The privacy practices of these third parties are not within our control, and we make no warranties regarding their data handling procedures.

@rchatham
rchatham / amethyst.yml
Last active February 24, 2024 08:18
Amethyst config
# 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.
#
@rchatham
rchatham / loc.sh
Created January 27, 2024 23:56
Lines Of Code
#!/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
@rchatham
rchatham / .zshrc
Last active February 22, 2024 06:11
zsh config
# 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
@rchatham
rchatham / setup.sh
Last active April 30, 2025 06:32
Setup script for new macOS
#!/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..."
@rchatham
rchatham / resume.json
Last active November 12, 2025 05:33
resume
{
"name": "REID E. CHATHAM",
"contact": {
"email": "reid.chatham@outlook.com",
"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": [
{
@rchatham
rchatham / tmux.conf
Last active December 15, 2025 21:58
tmux config
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
@rchatham
rchatham / JSONCafe-SwiftyJSON.template
Created September 1, 2020 17:23
A SwiftyJSON template file for models generated using JSONCafe
import Foundation
import SwiftyJSON
class {{className}}: Codable {
{{#properties}}
var {{nativeName}}: {{type}}
{{/properties}}