This script for Autodesk Fusion rotates a body around a spiral track, repeatedly cutting it with a selected tool.
This was used successfully to create jaws for a scroll chuck. I didn't continue developing it once I achieved my goal.
targets = { | |
(0x00091F53, 0x68FBA45D): None, | |
(0x00000C0E, 0x3E98F88A): None, | |
(0x0001A660, 0x04B58623): b'NOCHEAT', | |
(0x000066DB, 0xA208CA35): b'CHEATOFF', | |
(0x00009A12, 0xC7037294): None, | |
(0x0006C1D2, 0xB6327AD8): None, | |
(0x00005B9B, 0x4054633A): None, | |
(0x00011F18, 0xBD67C5D2): None, | |
(0x000369A7, 0x90FFC99D): None, |
#include <stdint.h> | |
#include <stdio.h> | |
#define TARGET_HASH_1 0xA75CA25C | |
#define TARGET_HASH_2 0xF4498F87 | |
#define MAX_LENGTH 9 | |
#define MAX_REPEAT 3 | |
''' | |
Solver for the hash function used by Tony Hawk's Pro Skater 2 cheat codes using | |
the Z3 theorem prover. | |
Based on this blog post, all credit to the author behind the post. | |
https://32bits.substack.com/p/under-the-microscope-tony-hawks-pro | |
Largely written by ChatGPT o1-preview. | |
''' |
This script for Autodesk Fusion rotates a body around a spiral track, repeatedly cutting it with a selected tool.
This was used successfully to create jaws for a scroll chuck. I didn't continue developing it once I achieved my goal.
# Install AudioDeviceCmdlets if necessary | |
$module = Get-Module -ListAvailable -Name AudioDeviceCmdlets | |
if (-not $module) { | |
Install-Module -Name AudioDeviceCmdlets -Force -Scope CurrentUser | |
} | |
# Repeatedly check if the Oculus audio device has been selected | |
$endTime = (Get-Date).AddMinutes(5) | |
while ((Get-Date) -lt $endTime) { | |
$oculusDevice = Get-AudioDevice -Playback | Where-Object { $_.Name -like "*Oculus*" } |
import math | |
import numpy as np | |
M = 26 | |
dim = 3 | |
# Generate a random encryption matrix. It might turn out to be unusable. |
#!/bin/bash -eu | |
# remount-circuitpy.sh -- remount a FAT disk, usually CIRCUITPY, so it works | |
# | |
# Works around bug where macOS 14.x causes file corruption on small FAT | |
# filesystems. The remount apparently causes older kernel FAT driver | |
# to be loaded. see https://github.com/adafruit/circuitpython/issues/8449 | |
# | |
# Original author: Tod Kurt @todbot | |
DISKNAME=${1:-CIRCUITPY} |
#!/bin/bash -eu | |
process_binary() { | |
local binary="$1" | |
echo "[*] Processing $binary..." | |
# Find all linked libraries from the Homebrew prefix | |
local libraries=( | |
$(otool -L "$binary" | grep '/usr/local/opt/' | awk '{print $1}') | |
) |
# Based on https://github.com/flathub/com.nordpass.NordPass by @FakeShemp | |
# wget https://raw.githubusercontent.com/flathub/com.nordpass.NordPass/e93574f94b4387917fb8d5b0fb725660b2b01817/gcc10.diff | |
# wget https://raw.githubusercontent.com/flathub/com.nordpass.NordPass/e93574f94b4387917fb8d5b0fb725660b2b01817/xz_support.patch | |
# flatpak install flathub org.freedesktop.Platform//22.08 org.freedesktop.Sdk//22.08 org.electronjs.Electron2.BaseApp//22.08 | |
# sudo flatpak-builder --install --force-clean build-dir dev.foxglove.Studio.yaml | |
# flatpak run dev.foxglove.Studio | |
app-id: dev.foxglove.Studio | |
base: org.electronjs.Electron2.BaseApp |