This file contains 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
=begin | |
Plugin: OmniFocus | |
Description: Grabs completed tasks from OmniFocus | |
Author: [RichSomerfield](www.richsomerfield.com) | |
=end | |
config = { | |
'omnifocus_description' => [ | |
'Grabs completed tasks from OmniFocus'], | |
'omnifocus_tags' => '@tasks', |
This file contains 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
#!/bin/sh | |
# #!/usr/bin/sh | |
# | |
# opensnoop - snoop file opens as they occur. | |
# Written using DTrace (Solaris 10 3/05). | |
# | |
# 12-Jan-2006, ver 1.60 | |
# | |
# USAGE: opensnoop [-a|-A|-ceghsvxZ] [-f pathname] [-n name] [-p PID] | |
# |
This file contains 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
redir! > ~/.vim/vim-keys.txt | |
silent verbose map | |
redir END |
This file contains 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
--------------------------------------------------------------- | |
-- Copyright (C) Microsoft Corporation. All rights reserved. | |
-- Updated by R. Somerfield (hopefully without causing issues for Microsoft's rights). | |
--------------------------------------------------------------- | |
-- the following two properties are persisted across different runs of this TerminalHelper script | |
-- they are used to reuse the same terminal across invocations | |
property lastTty : missing value | |
property lastWindowID : missing value |
This file contains 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
const cspConfig = { | |
"default-src": [ | |
"'self'", | |
"blob:", | |
], | |
"script-src": [ | |
"'self'", | |
"{{cspNonce}}", | |
], | |
"style-src": [ |
This file contains 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
name: Content control basics | |
description: 'Inserts, updates, and retrieves content controls.' | |
host: WORD | |
api_set: {} | |
script: | |
content: > | |
$("#output-paragraph-controls").click(() => | |
tryCatch(outputParagraphContentControls)); | |
$("#output-selection-controls").click(() => |
This file contains 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
name: Content control basics | |
description: Shows a bug with getSelection content controls | |
host: WORD | |
api_set: {} | |
script: | |
content: > | |
$("#output-paragraph-controls").click(() => | |
tryCatch(outputParagraphContentControls)); | |
$("#output-selection-controls").click(() => |
This file contains 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
import { getAssetFromKV, mapRequestToAsset } from "@cloudflare/kv-asset-handler"; | |
addEventListener("fetch", (event) => { | |
event.respondWith(handleEvent(event)); | |
}); | |
async function handleEvent(event) { | |
try { |
This file contains 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
name: Save and Load CustomXMLParts | |
description: '' | |
host: WORD | |
api_set: {} | |
script: | |
content: > | |
$("#set-xml").click(() => tryCatch(setCustomJson)); | |
$("#get-all-xml").click(() => tryCatch(getAllCustomJson)); |
This file contains 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
name: Search | |
description: Shows basic and advanced search capabilities. | |
host: WORD | |
api_set: {} | |
script: | |
content: | | |
$("#setup").click(() => tryCatch(setup)); | |
$("#basic-search").click(() => tryCatch(basicSearch)); | |
$("#wildcard-search").click(() => tryCatch(wildcardSearch)); |
OlderNewer