- Spec First: All new features must have a corresponding spec file in
specs/. - Pre-Implementation Check: Before starting implementation, read the relevant spec and confirm
status: active. - Spec Format: Include frontmatter with
status(draft|active|done) and thecreated date. - Lifecycle Management: Update the spec status to
doneonce the feature is completed. - No Spec, No Work: If a spec is missing, do not start work; ask me if a spec should be created first.
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 | |
| # Claude Code Status Line — single jq call, no loops | |
| # Format: 🌿 <branch> | 📁 <folder> | <Model> [████░░░░] ~XX% | 📈 5h XX% | 🏷 vX.X.X | |
| # Single jq: parse all fields + build colored bar, tab-separated | |
| IFS=$'\t' read -r MODEL CWD PCT RATE_5H VERSION BAR RL_COLOR < <( | |
| jq -rj ' | |
| def bar: | |
| (.context_window.used_percentage // 0 | floor) as $pct | | |
| ($pct * 20 / 100 | if . > 20 then 20 elif . < 0 then 0 else . end | floor) as $filled | |
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
| Option Explicit | |
| ' Global variable to track if an update is being processed | |
| Private IsProcessingUpdate As Boolean | |
| ' ===== Worksheet Events ===== | |
| ' Triggered when worksheet changes | |
| Private Sub Worksheet_Change(ByVal Target As Range) | |
| ' Avoid recursive triggers |
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
| import requests | |
| import os | |
| import argparse | |
| import json | |
| import re | |
| from datetime import datetime | |
| from bs4 import BeautifulSoup | |
| def fetch_or_load_html(url, cache_file='coolpc_cache.html', force_refresh=False): | |
| """ |
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
| // MongoDB Refactored Copy Script with Modular Functions and Index Copying | |
| // This script copies all collections and their indexes from a source database to a target database without using mongodump. | |
| // === Configuration === | |
| // Source MongoDB connection details | |
| const sourceConfig = { | |
| host: "source_host", // e.g., "localhost" | |
| port: 27017, // e.g., 27017 | |
| username: "sourceUser", // Source DB username |
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
| import argparse | |
| import base64 | |
| import zipfile | |
| import os | |
| def convert_exe_to_base64_and_zip(input_file, output_path): | |
| """Converts an EXE file to Base64, zips the encoded content, and renames the archive to .b64.zip.""" | |
| with open(input_file, 'rb') as file: | |
| binary_data = file.read() | |
| base64_encoded_data = base64.b64encode(binary_data).decode('utf-8') |
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
| if [ "$#" -eq 0 ]; then | |
| targets="70 71 79 91 92 93 94" | |
| else | |
| targets=$* | |
| fi | |
| echo -e "Targets to scan:\n $targets" | |
| in_use=() | |
| for suffix in $targets; do |
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
| db.collection.aggregate([ | |
| { | |
| $addFields: { | |
| nonEmptyValues: { | |
| $filter: { | |
| input: { $objectToArray: "$Status" }, | |
| as: "status", | |
| cond: { $ne: ["$$status.v.value", ""] } | |
| } | |
| } |
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
| import tarfile | |
| import subprocess | |
| import json | |
| import sys | |
| image = sys.argv[1] | |
| # Create a dictionary for the image manifest | |
| manifest_dict = { |
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
| # Minimize current window | |
| xdotool windowminimize $(xdotool getactivewindow) | |
| # Make current window always on top | |
| wmctrl -r :ACTIVE: -b toggle,above | |
| # Undo aways-on-top window | |
| wmctrl -r :ACTIVE: -b remove,above |
NewerOlder