These settings apply to normal, functioning Windows 10 and 11 Pro desktops and laptops with
- wired Ethernet
- Wi-Fi
- Bluetooth
- IPv4
- IPv6
- no touch screen
Progamming language: | |
Julia | |
Java | |
GNU Octave | |
Scilab | |
Matlab - Simulink | |
Anaconda / Python (+ Jupyter) | |
R / R Studio | |
Wolfram Mathematica | |
ROOT |
''' | |
Usage : | |
Setup a new custom entity type in SG to hold the VES camera schema. Assign this value to the VES_ENTITY_NAME variable. | |
Set the 'preview' variable to False if you want to execute the schema update. | |
WARNING : This script will update your Shotgun Database schema. Use it at your own risk. I accept no liability if you experience any data loss. | |
''' | |
import sgtk | |
sg=tk.shotgun |
import RPi.GPIO as GPIO | |
import time | |
in1 = 16 | |
in2 = 18 | |
GPIO.setmode(GPIO.BOARD) | |
GPIO.setup(in1, GPIO.OUT) | |
GPIO.setup(in2, GPIO.OUT) |
Hi All! | |
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future. | |
Feel free to request any features you'd like to see, and I'll prioritize them accordingly. | |
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it. | |
Here's the link to the repository: https://github.com/Pulimet/ADBugger | |
App Description: | |
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups. |
from __future__ import print_function | |
import bpy | |
import os | |
D = bpy.data | |
printFrameNums = True # include frame numbers in the csv file | |
relativeCoords = False # marker coords will be relative to the dimensions of the clip | |
proj_folder = os.path.join(bpy.path.abspath('//')) |