Skip to content

Instantly share code, notes, and snippets.

View stephenhouser's full-sized avatar
💭
Hopefully I'm writing code somewhere...

Stephen Houser stephenhouser

💭
Hopefully I'm writing code somewhere...
View GitHub Profile
Python OSC Exampls to send changing data to OSC receiver listening on UDP port 2222.
@stephenhouser
stephenhouser / Bing-Image-Scraper
Last active January 21, 2025 01:42
Bing-Image-Scraper
Bing image scraper example using Python to query and scrape Microsoft Bing image search.
@stephenhouser
stephenhouser / Aperture-Update-EXIF-GPS.scpt
Created August 30, 2016 17:20
Update EXIF GPS data from Apple Aperture's GPS location data
-- Script Name: Aperture Update EXIF GPS Data
-- Description: This AppleScript will use EXIFtool to set EXIF GPS data for the photos
-- selected in Aperture. The GPS data is taken from Aperture's data for the photo
--
-- Author: Stepehen Houser (http://stephenhouser.com)
-- Adapted from: Lindsay Berger (http://bergersoft.com/personal/AppleScript/)
-- Date: July 2015
on run
set EXIFoutput to return
@stephenhouser
stephenhouser / mk-appicon.py
Last active February 7, 2016 15:48 — forked from paddlefish/resize_icon.py
Resize Vector source image for AppIcon
#!/usr/bin/env python3
# Script to create all required sizes and resolutions of AppIcon files
# from a vector PDF file. Updates the AppIcon.appiconset/Contents.json
#
# Available:
# https://gist.github.com/stephenhouser/cdc18be41d2d49ba9292
#
# Based on: http://blog.paddlefish.net/?p=983
# Updated to include 3x (generic actually) size icon creation.
#