This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.3 | |
info: | |
title: Salesforce MetaDeploy API Documentation | |
version: 1.0.0 | |
description: MetaDeploy | |
paths: | |
/admin/rest/plans: | |
get: | |
operationId: admin_rest_plans_list | |
parameters: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var url = 'http://www.wheeldecide.com/index.php?'; | |
$$('*[data-sort-key]').forEach(function(el, i) { | |
url += 'c' + (i + 1) + '=' + encodeURIComponent(el.dataset.sortKey.replace(/ spaces.*$/, '')) + '&'; | |
}); | |
url += '&col=pastel&t=Who+it+be%3F&time=10&width=1200&remove=1'; | |
window.open(url, '_blank'); | |
/*** 20 Questions ***/ | |
let questions = ['the aliens that make first contact be robotic or organic?', | |
'lose the ability to read or lose the ability to speak?', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run after import to replace URLs - Don't forget to reset permalinks after this too! | |
UPDATE wp_options SET option_value = replace(option_value, 'http://www.old.com', 'http://www.new.com') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET guid = replace(guid, 'http://www.old.com', 'http://www.new.com'); | |
UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://www.old.com', 'http://www.new.com'); | |
UPDATE wp_posts SET post_content = replace(post_content, 'http://www.old.com', 'http://www.new.com'); |