Skip to content

Instantly share code, notes, and snippets.

View dr-robert-li's full-sized avatar
🎯
Focusing

Robert Li dr-robert-li

🎯
Focusing
View GitHub Profile
@dr-robert-li
dr-robert-li / CLAUDE-template.md
Last active July 31, 2026 14:38
Claude Code Template for Comprehensive Strategic Analysis

Claude Code Strategic Analysis Template

Disclaimer

This strategic plan represents proposed recommendations and the author's professional opinion only. It is not an official or authoritative document and has not been formally adopted, and requires review and approval.

Project Overview

This template provides a framework for creating executive-ready strategic analysis documents that combine rigorous research methodology with clear, actionable insights. The template ensures strategic recommendations are evidence-based while remaining accessible for senior leadership decision-making.

Initial Clarification Requirements

@dr-robert-li
dr-robert-li / docker-compose-installer-for-container-optimized-os-on-gce.md
Last active October 3, 2024 06:22 — forked from kurokobo/docker-compose-installer-for-container-optimized-os-on-gce.md
Simple Installer for Docker Compose on Container-Optimized OS on Google Computing Engine

Simple Installer for Docker Compose on Container-Optimized OS on Google Computing Engine

The easiest way to make Docker Compose available on Container-Optimized OS on Google Compute Engine (GCE) on Google Cloud Platform (GCP).

This is minimal Bash script version of Community Tutorial.

How to use

Simply, download installer.sh, run it, and then reload bash by source ~/.bashrc or re-login.

@dr-robert-li
dr-robert-li / nginx.conf.template
Last active January 29, 2024 04:08
nginx Config Template for WordCamp Asia 2024 Demo
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
@dr-robert-li
dr-robert-li / run.sh
Last active January 5, 2024 00:00
ChromaDB Docker Instance Run Script for WordCamp Asia 2024
#!/bin/bash
# Run script for restarting ChromaDB Docker Instance
# Find the original Google Colab Notebook here: https://colab.research.google.com/drive/1PGw_QEjJFQ3vhVuSinCbWose5KNjk5wb?usp=sharing
# Initialising Variables
livechromaid=$(docker container ls | grep chromadb\/chroma | cut -d' ' -f1)
useris=$(whoami)