Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.
You've got two main options:
| // ==UserScript== | |
| // @name Zendesk Plus | |
| // @namespace https://wpcomhappy.wordpress.com/ | |
| // @icon https://raw.githubusercontent.com/soufianesakhi/feedly-filtering-and-sorting/master/web-ext/icons/128.png | |
| // @version 1.0 | |
| // @description Tool for enhancing Zendesk | |
| // @author Siew "@xizun" | |
| // @match https://woothemes.zendesk.com/* | |
| // @grant GM_setClipboard | |
| // @require http://code.jquery.com/jquery-3.4.1.min.js |
You scheduled a one-to-one screen sharing session with me to get help with your WordPress.com site. Wonderful!
Here's a list of potential issues and fixes and what to do if you can't make the meeting so a no-show or technical difficulties don't result in our policy enforcement (does anyone like enforcing policies? I sure don't!).
![]() |
|---|
| I expect this kitty is using WordPress.com. |
Index
| # To prevent the vulnerable server from running on your machine | |
| # (this does not impact Zoom functionality), run these two lines in your Terminal. | |
| pkill "ZoomOpener"; rm -rf ~/.zoomus; touch ~/.zoomus && chmod 000 ~/.zoomus; | |
| pkill "RingCentralOpener"; rm -rf ~/.ringcentralopener; touch ~/.ringcentralopener && chmod 000 ~/.ringcentralopener; | |
| # (You may need to run these lines for each user on your machine.) |
| let regex; | |
| /* matching a specific string */ | |
| regex = /hello/; // looks for the string between the forward slashes (case-sensitive)... matches "hello", "hello123", "123hello123", "123hello"; doesn't match for "hell0", "Hello" | |
| regex = /hello/i; // looks for the string between the forward slashes (case-insensitive)... matches "hello", "HelLo", "123HelLO" | |
| regex = /hello/g; // looks for multiple occurrences of string between the forward slashes... | |
| /* wildcards */ | |
| regex = /h.llo/; // the "." matches any one character other than a new line character... matches "hello", "hallo" but not "h\nllo" | |
| regex = /h.*llo/; // the "*" matches any character(s) zero or more times... matches "hello", "heeeeeello", "hllo", "hwarwareallo" |
| #!/usr/bin/env python | |
| # | |
| # Converting an ICS file produced by Remember the milk to a CSV file | |
| # that can be read by Todoist. | |
| # | |
| # Bye-bye, remember the milk. Raising the annual price from $25.00 to $39.99, | |
| # while stagnating with the old interface, is the way to lose your loyal pro users. | |
| # | |
| # This script requires icalendar, which can be installed like this: | |
| # |
| local (sourcefolder = user.prefs.dropboxfolder + "public:misc:nodeeditor:fargo.io-code-publisher:"); | |
| local (githubfolder = user.prefs.githubfolder + "fargoPublisher:"); | |
| local (montaukfolder = user.prefs.dropboxfolder + "montauk:fargopub:"); | |
| on copyone (f1, f2) { | |
| file.surefilepath (f2); | |
| try { | |
| if file.readwholefile (f1) != file.readwholefile (f2) { | |
| file.copy (f1, f2) | |
| } |
| # GET VERSION | |
| npm -v (or --version) | |
| # GET HELP | |
| npm help | |
| npm | |
| # CREATE PACKAGE.JSON | |
| npm init | |
| npm init -y (or --yes) |