Skip to content

Instantly share code, notes, and snippets.

View kriscoleman's full-sized avatar
🤘

Kris Coleman kriscoleman

🤘
View GitHub Profile
@kriscoleman
kriscoleman / create-github-issue.md
Created July 23, 2025 22:04
claude custom create github issue command

Create Github Issue

Purpose

This command is used to instruct Claude to generate GitHub issues in the specific house style and structure used by TestifySec. It is optimized for creating clean, actionable, well-structured GitHub issues for engineering planning, with consistent formatting across feat, fix, chore, docs, and epic types.

Command Name

create-github-issue

@kriscoleman
kriscoleman / ide.sh
Last active November 2, 2019 18:15
My Portable Docker IDE
#!/bin/sh
PROJECT_NAME=${PWD#"${PWD%/*/*}/"}
CONTAINER_NAME=${PROJECT_NAME//\//_}
docker run -it --rm \
-v $PWD:/workspace \
-v /var/run/docker.sock:/var/run/docker.sock \
-v ~/.ssh:/home/me/.ssh \
-v ~/.tmux/ressurect/${PROJECT_NAME}:/home/me/.tmux/resurrect \
-e HOST_PATH=$PWD \
@kriscoleman
kriscoleman / MyEZTableViewController
Last active September 6, 2016 20:17
A simpler way of declaring UITableView content in Xamarin.iOS
//Task: Show Customer Cells with the following behaviors:
// - Customer Name as Cell Title
// - Customer Address as Cell Subtitle
// - Customer Logo as Cell Image
// - Implement Swipe action to delete customers
public class MyEZTableViewSource : EZTableViewSource<EZRow>
{
List<Customer> _customers;