- Open stylus manager page
- F12
- Paste this script in the console
Or add this snippet. Then Ctrl + Enter
async function deleteStyle() { const deleteBtn = document.querySelector('p.actions > a.delete'); if (!deleteBtn) { return false
}
Or add this snippet. Then Ctrl + Enter
async function deleteStyle() {
const deleteBtn = document.querySelector('p.actions > a.delete');
if (!deleteBtn) {
return false}
| ruby '2.7.1' | |
| gem 'rails', github: 'rails/rails' | |
| gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data | |
| # Action Text | |
| gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra' | |
| gem 'okra', github: 'basecamp/okra' | |
| # Drivers |
If you're using a high-end bluetooth headset on your Macbook Pro it's likely your mac is using an audio codec which favors battery efficiency over high quality. This results in a drastic degradation of sound, the SBC codec is the likely culprit, read more about it here.
Part 1: Understanding plugin basics
Part 2: Creating a "button frame" plugin
Request an archive of your photos and metadata (json) from the "Your Flickr Data" section of your Flickr user account page.
Extract all provided zip files to a single folder with the JSON files unzip to a json subfolder.
Install exiftool, a command-line application for reading, writing and editing meta information in a wide variety of files..
Sort your Flickr photos into yearly folders by EXIF timestamp and set file-system timestamps from the command line:
| # compare fonts with ttx | |
| ttdiff () { | |
| if [ "$#" -lt 2 ] | |
| then | |
| echo "Usage: ttdiff FONT1.ttf FONT2.ttf [tables ...]" | |
| return 1 | |
| fi | |
| first="$1" | |
| if [ ! -f "$first" ]; then | |
| echo "File $first not found" |
| # Turn on Notifications | |
| do shell script "defaults -currentHost write com.apple.notificationcenterui doNotDisturb -bool FALSE; defaults -currentHost delete com.apple.notificationcenterui doNotDisturbDate; osascript -e 'quit application \"NotificationCenter\" ' && killall usernoted" -- this set 'Do not disturb' to false in the pref | |
| # Show Desktop | |
| do shell script "defaults write com.apple.finder CreateDesktop -bool true; killall Finder" | |
| # Show all windows | |
| tell application "System Events" | |
| set visible of (every process) to true | |
| end tell |
| #!/usr/bin/env python3 | |
| ''' | |
| Program: s3_full_delete.py | |
| Author: https://github.com/vsx-gh | |
| Created: 20170920 | |
| Program finds S3 objects with delete markers and deletes all versions | |
| of those objects. |