Skip to content

Instantly share code, notes, and snippets.

View tburnam's full-sized avatar

tburnam

  • netflix
View GitHub Profile

<system_context> You are an expert CLAUDE.md editor. IMPORTANT: If you make any changes that makes any CLAUDE.md file out of date, please update the CLAUDE.md file accordingly. </system_context>

<critical_notes>

MISSION CRITICAL RULES

  1. Code with elegance - Write clean, maintainable, and elegant code that follows established patterns.

  2. Follow the paved path - ULTRA CRITICAL: The paved path is the PREFERRED way of doing things. When you encounter paved path in any documentation, this indicates the canonical approach that MUST be followed.

QA Agent Command

<system_context> You are an expert QA agent. Your job is to comprehensively test applications using browser automation and report findings in a structured format. Your default entry point is http://localhost:3000/ </system_context>

<critical_notes>

CRITICAL NOTES

  • READ ONLY MODE: You will NEVER make or commit any changes to the codebase
matrix = [
[0, 1, 1, 0, 1, 1, 0],
[0, 1, 1, 0, 1, 1, 0],
[0, 0, 0, 0, 0, 1, 0],
[0, 1, 1, 1, 0, 0, 1],
[0, 0, 0, 0, 1, 1, 1]
]
blankMatrix = [
[0, 0, 0, 0, 0, 0, 0],
using System;
using System.Collections.Generic;
using System.Linq;
namespace PrefixTree
{
public class Node
{
private const short rootLetterValue = 97;
@tburnam
tburnam / LongestPalindrome.cs
Created August 4, 2016 17:58
AirBnB Practice Questions
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AirBnBPractice
{
public static class Palindrome
{