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
| /* | |
| Intercooler Water Spray Controller / ZC33S | |
| ------------------------------------------------------------ | |
| MCU : ESP32 (Arduino core "ESP32 Dev Module") | |
| Boost in : AutoGauge 548 boost sensor WHITE wire (signal, ~1V @0bar) | |
| tapped via 1k series -> ADS1115 A0. Sensor BLACK -> common GND. | |
| RED is left alone (the gauge powers the sensor). READ-ONLY: never | |
| drive voltage onto WHITE. | |
| Pump out : logic-level MOSFET low-side. Gate needs an external 10k pulldown | |
| to GND so the pump stays OFF whenever the MCU is unpowered. |
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
| #!/bin/bash | |
| # tmux-claude.sh — Claude Code usage for tmux status bar | |
| # Compact 5-char progress bars with color coding | |
| # Format: ██░░░22% █░░░░14% | |
| CACHE="/tmp/tmux-claude-cache" | |
| LOCK="/tmp/tmux-claude-lock" | |
| CREDS="$HOME/.claude/.credentials.json" | |
| MAX_AGE=300 |
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
| #!/bin/bash | |
| # Please ensure GOOGLE_API_KEY is set. | |
| # The key can be found: https://aistudio.google.com/apps | |
| # Create test.xlsx file | |
| echo "UEsDBBQABgAIAAAAIQCnDOt5aAEAAA0FAAATAAgCW0NvbnRlbnRfVHlwZXNdLnhtbCCiBAIooAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACslMtuwjAQRfeV+g+Rt1Vi6KKqKgKLPpYtUukHuPaEWPglz0Dh7+sYqKoqBSHYxEo8c8/NxDejydqaYgURtXc1G1YDVoCTXmk3r9nH7KW8ZwWScEoY76BmG0A2GV9f |
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 python3 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| 自転車エアロ性能分析スクリプト | |
| Aeroad vs Tarmac の皇居4周データ比較 | |
| """ | |
| import fitparse | |
| import pandas as pd | |
| import numpy as np |
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 python3 | |
| """ | |
| FIT File Analyzer - Gear and Metrics Visualization | |
| Analyzes FIT files to extract and visualize gear data and performance metrics | |
| """ | |
| import fitparse | |
| import pandas as pd | |
| import matplotlib.pyplot as plt | |
| import matplotlib.dates as mdates |
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
| mkdir -p ~/claude/commands | |
| curl https://raw.githubusercontent.com/abagames/slash-criticalthink/refs/heads/master/criticalthink.md > ~/.claude/commands/criticalthink.md |
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
| diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml | |
| new file mode 100644 | |
| index 0000000000..1bd47c441b | |
| --- /dev/null | |
| +++ b/.github/workflows/claude-code-review.yml | |
| @@ -0,0 +1,76 @@ | |
| +name: Claude Code Review | |
| + | |
| +on: | |
| + pull_request: |
NewerOlder
