Skip to content

Instantly share code, notes, and snippets.

@aliceisjustplaying
aliceisjustplaying / PRIVACY_POLICY.md
Created December 21, 2025 14:10
Privacy Policy for Hydrate app

Privacy Policy for Hydrate

Hydrate does not collect, store, or transmit any personal data to external servers. All hydration data is stored locally on your device.

If you enable HealthKit integration, Hydrate writes your water intake entries to Apple Health. This data stays on your device. Hydrate does not read or access any other health data.

We do not use your data for advertising or share it with third parties.

#!/bin/bash
sudo scutil --set ComputerName "COMPUTERNAME"
sudo scutil --set HostName "COMPUTERNAME"
sudo scutil --set LocalHostName "COMPUTERNAME"
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server NetBIOSName -string "COMPUTERNAME"
defaults -currentHost write -g AppleFontSmoothing -int 0
defaults write NSGlobalDomain NSUseAnimatedFocusRing -bool false
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint2 -bool true
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
#!/bin/bash
#
# the first 100, anyways
#
curl -s -H "Authorization: Bearer $(curl -s --json '{"identifier": "aliceisjustplaying.bsky.social", "password": "letmein"}' https://bsky.social/xrpc/com.atproto.server.createSession | jq -j ".accessJwt")" "https://bsky.social/xrpc/app.bsky.graph.getMutes?limit=100" | jq -r '.mutes | .[] | .did' | xargs -I{} -P10 curl -s 'https://plc.directory/{}' | jq -r '.alsoKnownAs[0]' | sed -e 's#at://#@#' | sort
#!/bin/bash
curl -s -H "Authorization: Bearer $(curl -s --json '{"identifier": "aliceisjustplaying.bsky.social", "password": "letmein"}' https://bsky.social/xrpc/com.atproto.server.createSession | jq -j ".accessJwt")" "https://bsky.social/xrpc/com.atproto.server.getAccountInviteCodes" | jq -r '.codes[].uses[].usedBy' | xargs -I{} -P10 curl -s 'https://plc.directory/{}' | jq -r '.alsoKnownAs[0]' | sed -e 's#at://#@#'