Skip to content

Instantly share code, notes, and snippets.

View infinitewarp's full-sized avatar
🐍
making things

Brad Smith infinitewarp

🐍
making things
View GitHub Profile
@infinitewarp
infinitewarp / wakeup.scpt
Created April 27, 2016 14:58
script runs after waking up in the morning
tell application "System Preferences"
activate
set the current pane to pane id "com.apple.preference.security"
tell application "System Events" to tell process "System Preferences"
repeat until radio button "General" of tab group 1 of window 1 exists
end repeat
click radio button "General" of tab group 1 of window 1
set timeout_menu to pop up button 1 of (tab group 1 of window "Security & Privacy")
@infinitewarp
infinitewarp / bedtime.scpt
Created April 27, 2016 14:57
script runs before going to sleep at night
tell application "System Preferences"
activate
set the current pane to pane id "com.apple.preference.security"
tell application "System Events" to tell process "System Preferences"
repeat until radio button "General" of tab group 1 of window 1 exists
end repeat
click radio button "General" of tab group 1 of window 1
set timeout_menu to pop up button 1 of (tab group 1 of window "Security & Privacy")
@infinitewarp
infinitewarp / conical.py
Created April 4, 2016 21:19
quick visualization of coordinates in a conical frustum
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import argparse
def get_args():
parser = argparse.ArgumentParser()