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
voices = %w[Agnes Alex Bruce Bubbles Fred Junior Kathy Princess Ralph Vicki Victoria] | |
phrases = [ | |
"We are the Borg.", | |
"Lower your shields and surrender your ships.", | |
"We will add your biological and technological distinctiveness to our own.", | |
"Your culture will adapt to service us.", | |
"Resistance is futile." | |
] |
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
import requests | |
import json | |
class ValidationException(Exception): | |
pass | |
class Element34(object): | |
def __init__(self, driver): | |
self.driver = driver | |
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
ruleset a163x156 { | |
meta { | |
name "Arrays" | |
description << | |
Some experiments using arrays in KRL | |
>> | |
author "Steve Nay" | |
logging on | |
} |
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
function maybe(value) { | |
var obj = null; | |
function isEmpty() { return value === undefined || value === null } | |
function nonEmpty() { return !isEmpty() } | |
obj = { | |
map: function (f) { return isEmpty() ? obj : maybe(f(value)) }, | |
getOrElse: function (n) { return isEmpty() ? n : value }, | |
isEmpty: isEmpty, | |
nonEmpty: nonEmpty | |
} |
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
ruleset a169xXXX { | |
meta { | |
name "KySQLGitHook" | |
description << | |
Kynetx Github commit webhook | |
>> | |
author "Ed Orcutt, LOBOSLLC" | |
logging on |
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
ruleset a8x157 { | |
meta { | |
name "Webhook Module" | |
description << | |
Provides actions for working with the Kynetx Webhook Endpoint | |
>> | |
author "Sam Curren" | |
logging off | |
provides text, html, json, xml, js, redirect |
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
ruleset a8x162 { | |
meta { | |
name "Instagram oauth without modules" | |
description << | |
Demonstrates calling oAuth protected APIs | |
>> | |
author "Sam Curren" | |
logging on | |
key instagram { |
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
ruleset a8x115 { | |
meta { | |
name "Twilio Module" | |
description << | |
Utility methods for interacting with Twilio | |
>> | |
author "Sam Curren" | |
logging on | |
//keys for testing |
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
meta { | |
name "fb_flickr_likr" | |
description << | |
>> | |
author "Mark Horstmeier / Brad Hintze" | |
// Uncomment this line to require Marketplace purchase to use this app. | |
// authz require user | |
logging on |
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
ruleset a60x436 { | |
meta { | |
name "example-staf-app" | |
description << | |
example-staf-app | |
>> | |
author "Mike Grace" | |
logging on | |
} |
NewerOlder