Skip to content

Instantly share code, notes, and snippets.

View bwghughes's full-sized avatar

Ben Hughes bwghughes

View GitHub Profile

Keybase proof

I hereby claim:

  • I am bwghughes on github.
  • I am benhughes (https://keybase.io/benhughes) on keybase.
  • I have a public key whose fingerprint is C9C9 FE7A 62A4 EEE8 B9DB AEF3 E2CF 4D36 645D DE97

To claim this, I am signing this object:

OpenAir Data Setup

Project Mapping Setup

This mapping allows us to map a project in OpenAir to a project in Quickbooks.

As a OpenAir administrator:

  1. Navigate to Application Settings -> Projects
  2. If the external ID field is not visible, make it visible using the column setting menu on the right hand side of the table.

Keybase proof

I hereby claim:

  • I am bwghughes on github.
  • I am bwghughes (https://keybase.io/bwghughes) on keybase.
  • I have a public key whose fingerprint is 8F45 C90A 4C6D 5F9F 1E46 C811 BF59 021A D1FD AC64

To claim this, I am signing this object:

@bwghughes
bwghughes / mlx_memory.sh
Created December 28, 2025 20:43 — forked from ivanfioravanti/mlx_memory.sh
Script to set MLX memory limits
#!/usr/bin/env bash
# Default values for percentages
DEFAULT_WIRED_LIMIT_PERCENT=85
DEFAULT_WIRED_LWM_PERCENT=75
# Read input parameters or use default values
WIRED_LIMIT_PERCENT=${1:-$DEFAULT_WIRED_LIMIT_PERCENT}
WIRED_LWM_PERCENT=${2:-$DEFAULT_WIRED_LWM_PERCENT}