This requires the Unreal Robot Arm Simulation. And the code here: https://gist.github.com/gwbischof/32c2de9e8e5521752d442cef3365d9b4
from unreal_remote_control import UnrealClient, UnrealSignal
client = UnrealClient()
client.get_all_properties()
| #!/bin/bash | |
| VERSION=$1 | |
| REMOTE=$2 | |
| MAIN_BRANCH=$3 | |
| echo "Publishing $VERSION" | |
| git commit --allow-empty -m "REL: $VERSION" | |
| git tag -a $VERSION | |
| git push $REMOTE $MAIN_BRANCH |
| =================== | |
| Publishing Releases | |
| =================== | |
| # Make a new branch called rel-VER for release notes. | |
| # Make a PR called release notes VER. | |
| # Merge release notes PR. |
| import requests | |
| import json | |
| from ophyd import Component as Cpt | |
| from ophyd import Device, Signal | |
| from ophyd.sim import NullStatus | |
| class UnrealClient(): |
| import os | |
| import matplotlib.pyplot as plt | |
| from pathlib import Path | |
| from export_draft import Multifile | |
| DATA_DIRECTORY = Path("/nsls2/data/chx/legacy/Compressed_Data") | |
| densities = [] | |
| def multifile_density(multifile): | |
| total_pixels = 0 |
| """ | |
| Checks your Vemmo transactions, generates a receipt, and emails it to email in venmo note. | |
| 1. Make a PDF of you receipt template. | |
| 2. https://www.sejda.com/pdf-forms, this is useful to add fields to an existing PDF. | |
| 3. Use fillpdfs.get_form_fields to find all of the fields in the PDF. | |
| 4. Get gmail and venmo api credentials. | |
| 5. Follow instructions here to get venmo token https://github.com/mmohades/Venmo | |
| 6. Update the GLOBALS. | |
| 7. Execute this script. | |
| """ |
| require('luau') | |
| _addon.name = 'automacro' | |
| _addon.version = '1.0' | |
| _addon.author = 'Mapogo' | |
| _addon.commands = {'am',} | |
| sleep_time = 30 | |
| windower.register_event('load', function() |
| _addon.name = 'targetid' | |
| _addon.author = 'Mapogo' | |
| _addon.version = '1.0' | |
| _addon.language = 'English' | |
| require('luau') | |
| texts = require('texts') | |
| old_mob_id = 0 |
| require('luau') | |
| _addon.name = 'enterkey' | |
| _addon.version = '1.0' | |
| _addon.author = 'Mapogo' | |
| _addon.commands = {'am',} | |
| sleep_time = 1 | |
| windower.register_event('load', function() |
This requires the Unreal Robot Arm Simulation. And the code here: https://gist.github.com/gwbischof/32c2de9e8e5521752d442cef3365d9b4
from unreal_remote_control import UnrealClient, UnrealSignal
client = UnrealClient()
client.get_all_properties()