Consolidated references for FORScan spreadsheets, forums and coding resources by vehicle.
https://docs.google.com/document/d/1-8dKaS_Spu4Zw4hV_CrKC4tLoP9G8yejqegF1wxIqxY/edit?tab=t.0
Consolidated references for FORScan spreadsheets, forums and coding resources by vehicle.
https://docs.google.com/document/d/1-8dKaS_Spu4Zw4hV_CrKC4tLoP9G8yejqegF1wxIqxY/edit?tab=t.0
| #!/usr/bin/env bash | |
| # -------------------------------------------------- | |
| # Script: eks-connect.sh | |
| # Purpose: Automatically generate an EKS kubeconfig using AWS_PROFILE and region | |
| # Compatible with bash/zsh | |
| # Creates per-profile + per-region kubeconfig | |
| # -------------------------------------------------- | |
| # Usage: |
| #!/bin/bash | |
| ################################################################################ | |
| # YouTube Playlist to MP3 Downloader Script | |
| # | |
| # Description: | |
| # This script automatically downloads YouTube playlists and converts | |
| # them to high-quality MP3 files. Uses yt-dlp for downloading | |
| # and audio conversion. | |
| # |
| #!/usr/bin/env python3 | |
| """ | |
| compare_bins.py - Compare two binary files and print the differences. | |
| Usage: | |
| python compare_bins.py original.bin modified.bin | |
| Example output: | |
| Offset 0x1234: 56 → 78 |
| #!/usr/bin/env python3 | |
| ''' | |
| VW XOR Calculator | |
| How to use: | |
| $ python3 vw_xor_calculator.py --file Car/extract/FD_7100FLASHDATA --start 0x32C --end 0x1234 --key 0xA5A5A5A5 | |
| Arguments: |
| # Audio and Video Encoding for Pionner AVH-P3180DVD to play movies from USB/CD | |
| ffmpeg -i source_video.mp4 \ | |
| -c:v mpeg4 \ | |
| -q:v 5 \ | |
| -tag:v DIVX \ | |
| -s 640x480 \ | |
| -c:a libmp3lame \ | |
| -q:a 5 \ | |
| -ac 2 \ |
| # Audio and Video Encoding for Pionner DVH-8580AVBT to play movies from USB | |
| ffmpeg -i source_video.mp4 \ | |
| -c:v libxvid \ | |
| -b:v 192k \ | |
| -s 640x480 \ | |
| -ar 44100 \ | |
| -ac 2 \ | |
| -b:a 192k \ | |
| destination_video.avi |
| -- To Enable Query logging on the database | |
| set global general_log = 1; | |
| set global log_output = 'table' | |
| -- For turn Hex readable: | |
| select a.*, convert(a.argument using utf8) from mysql.general_log a; | |
| -- To Disable Query logging on the database | |
| set global general_log = 0; |
| #!/bin/bash | |
| #https://www.robertsetiadi.com/disabling-globalprotect-vpn-auto-run-during-mac-start-up/ | |
| case $# in | |
| 0) | |
| echo "Usage: $0 {start|stop}" | |
| exit 1 | |
| ;; | |
| 1) |