Skip to content

Instantly share code, notes, and snippets.

View CallumDeas's full-sized avatar
🐈‍⬛

Callum Deas CallumDeas

🐈‍⬛
View GitHub Profile
@CallumDeas
CallumDeas / worktree.zsh
Last active February 13, 2026 13:03
zsh helpers for git worktrees
#!/usr/bin/env zsh
# Generic Git Worktree Helpers
# Works with any repo set up with bare worktree structure (.bare directory)
# ============================================================================
# Output Helpers (use gum for pretty output when available)
# ============================================================================
_wt_error() {
if command -v gum &>/dev/null; then
@CallumDeas
CallumDeas / wheel.js
Created October 20, 2023 09:07
Wheel
import React, { useState } from "react";
import { StyleSheet, Text, View, Button } from "react-native";
import { Gesture, GestureDetector } from "react-native-gesture-handler";
import Animated, {
useAnimatedStyle,
useSharedValue,
withTiming,
Easing,
runOnJS,
} from "react-native-reanimated";
@CallumDeas
CallumDeas / devstacks.md
Last active January 31, 2023 18:34
Helpful commands for

Note connecting to a devstack requires a kerberos ticket

SSH to Devstack

  1. export DEV_STACK_NAME=fungreybat0804
  2. z wiz && source connect.sh state (replace z wiz with the cd command for wherever you put connect.sh)

connect.sh script courtesy of hawkeyes

#!/bin/bash
​