tags | |
---|---|
|
Non-exhaustive
Workloads that provide a synchronization mechanism between a local and remote state store.
--[[ | |
Pinch zoom script for Reason | |
This file should be put in the ~/.hammerspoon directory | |
or just click Open Config in the Hammerspoon menu and paste all of this in | |
To use, just pinch with the trackpad while in the sequencer. | |
Hold shift to zoom in on the playhead instead of the cursor | |
Hold command to zoom vertically | |
]] |
Below are a list of System Preference pane URLs and paths that can be accessed with scripting to assist users with enabling macOS security settings without having to walk them through launching System Preferences, finding panes, and scrolling to settings. Not all panes have an accessible anchor and some are OS specific.
To find the Pane ID of a specific pane, open the System Preferences app and select the desired Preference Pane. With the pane selected, open the ScriptEditor.app and run the following script to copy the current Pane ID to your clipboard and display any available anchors:
tell application "System Preferences"
set CurrentPane to the id of the current pane
set the clipboard to CurrentPane
# Luxafor via Python | |
# Dave Irvine www.daveirvine.me @dave_irvine | |
# Get PyUSB from: | |
# http://walac.github.io/pyusb/ | |
#!/usr/bin/python | |
import usb.core | |
import usb.util |
openapi: 3.0.0 | |
info: | |
description: DMS Partner Api Documentation | |
version: "1.0.1" | |
title: DMS Rest Api | |
contact: | |
email: [email protected] | |
paths: | |
/lookup: | |
parameters: |
{ | |
"Profiles": [ | |
{ | |
"Horizontal Spacing" : 1, | |
"Tags" : [ | |
"Dynamic" | |
], | |
"Ansi 12 Color" : { | |
"Green Component" : 0.3333333432674408, | |
"Red Component" : 0.3333333432674408, |
sudo scutil --set HostName some-muppet-name | |
# update the keyboard KeyRepeat and DelayUntilRepeat (this is annoying to script) | |
# install XCode in the app store | |
# add myself to sudoers | |
# mike ALL=(ALL) ALL | |
sudo visudo /private/etc/sudoers |
I hereby claim:
To claim this, I am signing this object:
# download latest libevent2 and tmux sources, and extract them somewhere | |
# | |
# at the time of writing: | |
# https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz | |
# http://downloads.sourceforge.net/tmux/tmux-1.7.tar.gz | |
# | |
# install deps | |
yum install gcc kernel-devel make ncurses-devel |
#!/bin/bash | |
######################################### | |
# Vortex-5's Remuxing Script based on: # | |
# EqUaTe's MKV to M2TS remuxing script # | |
# # | |
# Version: 0.5.10 # | |
# # | |
# This script takes an H.264 encoded # | |
# video, in an MKV container, demuxes # |