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
# EC Command Reference | |
Version: @extend/extend-cli/1.0.5 | |
## Core Commands | |
``` | |
ec help | |
- Display help for ec commands and topics | |
ec update [version] | |
- Update the CLI to the latest version |
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
//filepath: src/handlers/messages/contract-created.ts | |
import {vaidationMiddleware} from '@helloextend/api-utils' | |
//Handle a single Cloud Event. | |
function contractCreatedHandler(ev: CloudEvent, ctx: Context) { | |
const messageBody = JSON.parse(ev.message.body) //Or something. Whatever the cloudEvent specification says | |
const isRetry = ctx.get<number>('event.metadata.retries') > 0 |
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
function addMonths(date: Date, months: number): Date { | |
const newDate = new Date(date) | |
const dayOfMonth = newDate.getDate() | |
// The JS Date object supports date math by accepting out-of-bounds values for | |
// month, day, etc. For example, new Date(2020, 1, 0) returns 31 Dec 2019 and | |
// new Date(2020, 13, 1) returns 1 Feb 2021. This is *almost* the behavior we | |
// want except that dates will wrap around the end of a month, meaning that | |
// new Date(2020, 13, 31) will return 3 Mar 2021 not 28 Feb 2021 as desired. So | |
// we'll default to the end of the desired month by adding 1 to the desired |
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
8:20:41 PM: Build ready to start | |
8:20:42 PM: build-image version: 84aca9ba39e0ee86ba194760fbfc51a808f62543 | |
8:20:42 PM: buildbot version: 1ac64ca11e029436ed45ac81a38b9839778ec314 | |
8:20:43 PM: Fetching cached dependencies | |
8:20:43 PM: Starting to download cache of 129.9MB | |
8:20:45 PM: Finished downloading cache in 2.548835358s | |
8:20:45 PM: Starting to extract cache | |
8:20:51 PM: Finished extracting cache in 5.456247149s | |
8:20:51 PM: Finished fetching cache in 8.116293732s | |
8:20:51 PM: Starting to prepare the repo for build |
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
//Example in powerforms for example | |
var el = $("#form"); | |
var data = RetrieveFormData(); | |
forms = new FormSDK(el, data); | |
forms.Start().then(function(results) { | |
if (results.age > 50) { |
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
var GAME_CONFIG = {debugMode: false}; //Put some stuff here | |
var GRAPHICS_CONFIG = {width: 680, height: 400}; | |
var GAME_DATA_FOLDER = "/game_data"; | |
function main() { | |
//Initialize Components | |
Game game = new Game(GAME_CONFIG); | |
GraphicsEngine engine = new SDLGraphicsEngine(GRAPHICS_CONFIG); | |
GameData assets = new GameData(GAME_DATA_FOLDER); |
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
Rails.application.routes.draw do | |
get '(*path).html', to: redirect('%{path}') | |
post '(*path).html', to: redirect('%{path}') | |
#...... | |
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
require 'openssl' | |
class Encryption | |
attr_accessor :key | |
IV_SIZE = 16 | |
def initialize(keycode) | |
md5 = Digest::MD5.new | |
md5.update(keycode) |
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
class Hash | |
def self.transform_values(node,&block) | |
if node.class == Hash | |
Hash[node.map{|k,v| [k,Hash.transform_values(v, &block)]}] | |
else | |
block.call(node) | |
end | |
end | |
def transform_values(&block) |
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
FB.Event.subscribe("auth.authResponseChange", function(response) { | |
Octane.facebookAuthStatusUpdate(response.status); | |
}); | |
FB.getLoginStatus(function(response) { | |
Octane.facebookAuthStatusUpdate(response.status); | |
}) |