| // Helper to pause execution | |
| const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms)); | |
| function getNextOldCatppuccinStyle() { | |
| // Grab ALL entries on the page | |
| const entries = document.querySelectorAll(".entry"); | |
| for (const entry of entries) { | |
| const nameLink = entry.querySelector(".style-name-link"); | |
| const styleInfo = entry.querySelector(".style-info"); |
| ############ | |
| # HOW TO CONNECT FROM LINUX? | |
| # HERE IS THE SCRIPT TO SETUP YOUR PC | |
| ############ | |
| # | |
| sudo apt install -y shadowsocks-libev wget | |
| sudo wget -O- "https://github.com/shadowsocks/v2ray-plugin/releases/download/v1.3.1/v2ray-plugin-linux-amd64-v1.3.1.tar.gz" | tar -zxv |
| 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
- Adobe XD API Reference
- Finished code from this part
-
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
jsonsubfolder. -
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 |

