- Install Wine Staging 11.1 or later
- Download the Winetricks script below
- Run with:
WINEPREFIX=~/.local/share/wineprefixes/adobe-creative-cloud /path/to/downloaded/winetricks -q adobe_cc
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
| /* | |
| Copyright (c) 2016 Robert Atkinson | |
| All rights reserved. | |
| Redistribution and use in source and binary forms, with or without modification, | |
| are permitted (subject to the limitations in the disclaimer below) provided that | |
| the following conditions are met: | |
| Redistributions of source code must retain the above copyright notice, this list |
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
| [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 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| 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; |
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 | |
| TARGET=$1 | |
| NEW_FREQUENCY=$2 | |
| function print_usage() { | |
| APP=$(basename $0) | |
| echo -e "Usage:" |
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
| # 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 |
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 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=""): |
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/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 { |
NewerOlder