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
Vimeo URL - ^https?:\/\/(?:www\.|player\.)?vimeo\.com/(\d+)$ |
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
# Get parameters | |
$cloudflareApiKey = $Env:CloudflareApiKey | |
$cloudflareEmail = $Env:CloudflareEmail | |
$cloudflareZoneId = $Env:CloudflareZoneId | |
# Build the request | |
$endpoint = "https://api.cloudflare.com/client/v4/zones/$cloudflareZoneId/purge_cache" | |
$headers = @{"X-Auth-Key" = $cloudflareApiKey; "X-Auth-Email" = $cloudflareEmail; "Content-Type" = "application/json"} | |
$body = "{'purge_everything': true}" |
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
root = true | |
[*] | |
insert_final_newline = true | |
indent_style = space | |
indent_size = 4 | |
trim_trailing_whitespace = true | |
charset = utf-8 | |
[*.{xml,proj,nuspec}] |
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
SELECT C.nodeId, CT.alias, N.text FROM cmsContent C | |
INNER JOIN cmsContentType CT ON C.contentType = CT.nodeId | |
INNER JOIN umbracoNode N ON C.nodeId = N.id |
OlderNewer