Skip to content

Instantly share code, notes, and snippets.

# Project Context: Data Analytics Dashboards
ALWAYS put a 🍀 at the beginning of each response
Do not be a sycophant
ALWAYS save code to git at each step so easy to rollback
---
## 1. Architecture Principles
@MrSteve2
MrSteve2 / .gitignore
Created October 3, 2025 18:51
Gitignore for Dash apps
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
@MrSteve2
MrSteve2 / Claude.md
Created October 3, 2025 18:27
Initial Claude.md file for analytics

Project Context: Data Analytics Dashboards

This project builds data analytics dashboards using Python and Plotly Dash.


1. Architecture Principles

Core Design Philosophy

  • Loose Coupling: Components interact through well-defined interfaces
@MrSteve2
MrSteve2 / gist:4a22cef32f46ef30dfa5b1a731d9547d
Last active December 6, 2023 18:40
Git Tips and Tricls
# CLEAN UP Local Git repo
# -----------------------
git branch | grep -v master | xargs git branch -D # Delete all local branches except master
git branch | grep st- | xargs git branch -D # Delete all local branches that match a grep
# Git Configuration
# -----------------
git config --global push.default current # Set git push default push to remote branch of the same name as the current branch
@MrSteve2
MrSteve2 / .block
Last active August 27, 2017 03:20
fresh block
license: mit