Skip to content

Instantly share code, notes, and snippets.

View zacheryph's full-sized avatar

Zachery Hostens zacheryph

View GitHub Profile
@zacheryph
zacheryph / source.yaml
Created May 6, 2022 13:51
Triggermesh Slack Source
apiVersion: sources.triggermesh.io/v1alpha1
kind: SlackSource
metadata:
name: zro
spec:
appID: REDACTED
signingSecret:
value: REDACTED
sink:
ref:
@zacheryph
zacheryph / api_wrapper.rb
Last active September 5, 2024 21:20
api_wrapper.rb
# just for this example to work
class BigCommerce
def woot(...)
puts "woot"
end
class System
def time(*args, **kwargs)
puts "time: #{args} #{kwargs}"
end