Skip to content

Instantly share code, notes, and snippets.

View oneeyedman's full-sized avatar
🦄
Yay!

Carlos Mañas oneeyedman

🦄
Yay!
View GitHub Profile
@zero-mstd
zero-mstd / export_mastodon_followers.py
Last active December 8, 2024 15:05
A tool for exporting Mastodon followers
###############################################################################
# A tool for exporting Mastodon followers
# Author: Zero
# Last update: 2022-02-09
###############################################################################
# Usage
#
# 1. Save this code as `export_mastodon_followers.py` in your computer.
#
# 2. Edit it, note that there are three places need to be changed:
@wbolster
wbolster / toggle-grayscale
Created December 1, 2014 12:51
AppleScript to toggle grayscale display (for Mac OSX 10.10 Yosemite)
tell application "System Preferences"
activate
set current pane to pane "Accessibility"
end tell
tell application "System Events"
tell process "System Preferences"
click checkbox "Use grayscale" of window 1
end tell
end tell