- Address the user as Cam.
- Optimize for correctness and long-term leverage, not agreement.
- Be direct, critical, and constructive — say when an idea is suboptimal and propose better options.
- Assume staff-level technical context unless told otherwise.
This file contains hidden or 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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| source_dirs=( | |
| "/Users/someuser/code/some-skills" | |
| "/Users/someuser/code/sentry_skills" | |
| ) | |
| codex_dest="$HOME/.codex/skills/public" | |
| claude_skills_dest="$HOME/.claude/skills" |
This file contains hidden or 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
| # One-shot Codex: cdx "do x y and z" | |
| cdx() { | |
| codex -a on-request \ | |
| --sandbox danger-full-access \ | |
| exec \ | |
| --skip-git-repo-check \ | |
| "$*" 2>/dev/null | |
| } |
A high-performance statusline implementation for Claude Code written in Zig.
- Fast execution (sub-millisecond)
- Shows time, user@hostname, current directory, git status, model name, and output style
- Proper home directory abbreviation (
~) - Git branch and dirty status indication
This file contains hidden or 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
| # Using this script downloads ALL the videos in NSScreencast. | |
| # Usage: `EMAIL=your email PASSWORD=your password.` | |
| require 'HTTParty' | |
| require 'Nokogiri' | |
| require 'pry' | |
| require "mechanize" | |
| require "parallel" | |
| class Scraper |
This file contains hidden or 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
| find . -type f -name "*.swift" -exec wc -l {} + | sort -nr | head |
This file contains hidden or 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
| # Install unsign | |
| wget https://github.com/steakknife/unsign/archive/master.zip ~/Downloads | |
| cd ~/Downloads | |
| unzip unsign-master.zip | |
| cd unsign-master | |
| make | |
| cp ./unsign /usr/local/bin | |
| # Copy Xcode |
This file contains hidden or 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
| // | |
| // By Cameron Cooke at Brightec Ltd. | |
| // | |
| // Based on code from Stack Overflow: http://stackoverflow.com/a/15023156/248848 | |
| // | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // |
This file contains hidden or 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
| // | |
| // BTFormSheetViewController.h | |
| // | |
| // Created by Cameron Cooke on 18/09/2015. | |
| // Copyright © 2015 Brightec. All rights reserved. | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // |
NewerOlder