I hereby claim:
- I am twisty on github.
- I am twisty (https://keybase.io/twisty) on keybase.
- I have a public key ASD310NoOdzfI8kMD3OxWANr5BqL5rIFCF4DIgHfk6KqNAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Run in the JavaScript console of the hterm browser window | |
| // Clear all existing settings - you probably don't want to do this. | |
| // Preferences are now stored in "chrome.storage.sync" instead of | |
| // "window.localStorage" so if you clear your preferences the changes | |
| // will be propagated to other devices. | |
| //term_.prefs_.storage.clear(); | |
| var htermProfiles = [ |
Using the DSM web interface:
See this guide for more details on the next bit:
| #/bin/sh | |
| rm -rf ~/Library/Preferences/com.apple.iwork.pages.plist | |
| rm -rf ~/Library/Caches/com.apple.iWork.Pages | |
| rm -rf '~/Library/Autosave Information/com.apple.iWork.Pages.plist' | |
| rm -rf '~/Library/Caches/com.apple.helpd/Generated/com.apple.iWork.Pages.help' | |
| rm -rf '~/Library/Saved Application State/com.apple.iWork.Pages.savedState' | |
| # If that doesn't work, also try… | |
| # |
| <?php | |
| /** | |
| * Generate an unambiguous random string from a set of possible characters. | |
| * | |
| * The range of possible characters is taken from [a-z] and [0-9] with | |
| * some removed to remove ambiguity if read aloud. | |
| * | |
| * Removed as they’re visually similar: | |
| * |
Syntax check php files in folders:
find ./foo ./bar \( -name "*.php" -or -name "*.phtml" \) -print0 | xargs -0 -n 1 php -l