Skip to content

Instantly share code, notes, and snippets.

<?php
/**
* Pantheon drush alias file, to be placed in your ~/.drush directory or the aliases
* directory of your local Drush home. Once it's in place, clear drush cache:
*
* drush cc drush
*
* To see all your available aliases:
*
* drush sa

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@tanmanforlife
tanmanforlife / sqlupdate.sql
Last active December 10, 2015 21:38
WordPress Update Site URL
/*To find what the current siteurl is*/
SELECT option_value
FROM wp_options
WHERE option_name = "home"
OR option_name = "siteurl"
LIMIT 1;
/*update site and home url siteurl*/
UPDATE wp_options
SET option_value = "http://newlink"