Skip to content

Instantly share code, notes, and snippets.

@Chadzilla-arilla
Chadzilla-arilla / Chevy Bolt Owners Manual.md
Created September 8, 2026 02:21
Chevy Bolt Owners Manual.md

How to Download Any GM Owner's Manual for Offline Viewing

Using GM's in-vehicle Owner's Manual app endpoints (com.gm.ownermanual v7.0.2).

All endpoints are unauthenticated. No VIN, OnStar account, or API key required.
Base URL: https://owners-manual.onstar.com

Supported makes: Chevrolet, GMC, Cadillac, Buick.


#!/usr/bin/env python
import tkinter as tk
from tkinter import ttk, filedialog, messagebox, simpledialog
import sqlite3, os, sys, subprocess, platform, zipfile, shutil
from datetime import datetime
import tkinter.font as tkFont
import csv
class CustomAppLunch:
def __init__(self, master):
@Chadzilla-arilla
Chadzilla-arilla / swift-code-lines.sh
Created August 18, 2025 12:20
Count Swift code lines with and without comments and blanks per file, and show totals in a clean table.
#!/bin/bash
# swift-code-lines.sh
# Count Swift code lines (excluding comments and blanks) per file,
# and show totals in a clean table.
# Usage:
# ./swift-code-lines.sh /path/to/your/App
# If no path is given, you will be prompted for one.
# On macOS, if no path is typed, a folder chooser dialog will open.
# --- Get path argument ---