Tuesday, February 07, 2017

Sublime Text Dark Theme in Sidebar Not Working

To ensure your theme is applied to all Sublime panels...
  1. Navigate to Sublime Text -> Preferences -> Settings -> "Preferences.sublime-settings - User"
  2. Make sure the "color_scheme" property and "theme" property are both present with the appropriate values set.

    For instance, using the Material Theme:
    "color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme",
    "theme": "Material-Theme-Darker.sublime-theme",

Sunday, January 29, 2017

How to Restart Web Server After Google App Engine Launcher Crash

  1. Open a terminal window.
  2. Copy and paste this: sudo lsof -i -n -P | grep TCP
  3. Take note of the process id (PID) currently listening on the port your app was running on (look for something that looks like: TCP 127.0.0.1:8080 (LISTEN)).
  4. Open Activity Monitor.
  5. Sort the processes list by PID.
  6. Kill the process matching the PID you noted in step 3.
  7. Restart your server from Google App Engine Launcher.
Thanks to irs8925 for providing the answer on Stack Overflow.