0. Overview
1. Documentation
1.1. Overall documentation
1.2. Documentation for command-line tools
1.3. Documentation for liblzma
2. Version numbering
- Reporting bugs
| #!/bin/sh | |
| # shellcheck disable=SC2030,SC2031 | |
| # SC2030: Modification of WINE is local (to subshell caused by (..) group). | |
| # SC2031: WINE was modified in a subshell. That change might be lost | |
| # This has to be right after the shebang, see: https://github.com/koalaman/shellcheck/issues/779 | |
| # Name of this version of winetricks (YYYYMMDD) | |
| # (This doesn't change often, use the sha256sum of the file when reporting problems) | |
| WINETRICKS_VERSION=20250102-next |
| [Software\\Wine\\AppDefaults\\Adobe Crash Processor.exe] 1768656104 | |
| "Version"="win7" | |
| [Software\\Wine\\AppDefaults\\AdobeIPCBroker.exe] 1768656161 | |
| "Version"="win7" | |
| [Software\\Wine\\AppDefaults\\AdobeUpdateService.exe] 1768656132 | |
| "Version"="win7" | |
| [Software\\Wine\\AppDefaults\\CCXProcess.exe] 1768655942 |
| package org.firstinspires.ftc.teamcode.Everybot; | |
| import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode; | |
| import com.qualcomm.robotcore.hardware.DcMotor; | |
| import com.qualcomm.robotcore.hardware.DcMotorEx; | |
| import com.qualcomm.robotcore.hardware.DcMotorSimple; | |
| import com.qualcomm.robotcore.hardware.HardwareMap; | |
| import org.firstinspires.ftc.robotcore.external.Telemetry; | |
| import org.firstinspires.ftc.teamcode.subsystems.drive.Drivetrain; |
| #!/bin/bash | |
| TARGET=$1 | |
| NEW_FREQUENCY=$2 | |
| function print_usage() { | |
| APP=$(basename $0) | |
| echo -e "Usage:" |
| # OBS Scene autoswitcher | |
| # https://claude.ai/share/8fe02bf6-febe-420e-bee2-db39d224a3df | |
| import json | |
| import time | |
| import asyncio | |
| import signal | |
| import threading | |
| import websockets | |
| import obswebsocket |
| import json | |
| import time | |
| import asyncio | |
| import signal | |
| import websockets | |
| import obswebsocket | |
| from obswebsocket import requests as obsrequests | |
| class FTCFieldSwitcher: | |
| def __init__(self, event_code, obs_host="localhost", obs_port=4444, obs_password=""): |
| diff --git a/TeamCode/build.gradle b/TeamCode/build.gradle | |
| index d4c01c3..1d88c3d 100644 | |
| --- a/TeamCode/build.gradle | |
| +++ b/TeamCode/build.gradle | |
| @@ -21,6 +21,10 @@ android { | |
| packagingOptions { | |
| jniLibs.useLegacyPackaging true | |
| } | |
| + | |
| + kotlinOptions { |
| BASEDIR=/home/qwerty/stk # Dir with stk-code and stk-assets inside | |
| compiler=/usr/bin/clang # Your C compiler | |
| compilerplusplus=/usr/bin/clang++ # Your C++ compiler | |
| jobscount=4 # Count of build jobs | |
| # Hint: you can use ping for setting up distributed builds | |
| # Manually create "$BASEDIR"/stk-code/needtoupdate to force rebuild |