I hereby claim:
- I am dleavitt on github.
- I am dleavitt (https://keybase.io/dleavitt) on keybase.
- I have a public key whose fingerprint is 1C14 D5B4 4BB7 B2DC 56DE 4734 26FF 959C 0213 8EAD
To claim this, I am signing this object:
import * as codebuild from "aws-cdk-lib/aws-codebuild"; | |
import * as codepipeline from "aws-cdk-lib/aws-codepipeline"; | |
import * as codepipeline_actions from "aws-cdk-lib/aws-codepipeline-actions"; | |
import * as ec2 from "aws-cdk-lib/aws-ec2"; | |
import { Construct } from "constructs"; | |
export interface PipelineReproProps { | |
owner: string; | |
repo: string; | |
connectionArn: string; |
// Firehose -> HTTP | |
import * as firehose from "@aws-cdk/aws-kinesisfirehose-alpha"; | |
import { | |
CommonDestinationProps, | |
DestinationS3BackupProps, | |
} from "@aws-cdk/aws-kinesisfirehose-destinations-alpha"; | |
import * as cdk from "aws-cdk-lib"; | |
import * as iam from "aws-cdk-lib/aws-iam"; | |
import * as s3 from "aws-cdk-lib/aws-s3"; |
{ | |
"title": "JSON schema for RuboCop configuration files", | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"type": "object", | |
"properties": { | |
"require": { | |
"$ref": "#/definitions/stringOrStrings" | |
}, | |
"inherit_from": { | |
"$ref": "#/definitions/stringOrStrings" |
{ | |
"title": "JSON schema for RuboCop configuration files", | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"type": "object", | |
"properties": { | |
"require": { | |
"$ref": "#/definitions/stringOrStrings" | |
}, | |
"inherit_from": { | |
"$ref": "#/definitions/stringOrStrings" |
I hereby claim:
To claim this, I am signing this object:
<html> | |
<head> | |
<style type="text/css"> | |
body { | |
margin: 0; | |
} | |
img { | |
cursor: pointer; | |
} | |
.back { |
import Alt from 'alt'; | |
let alt = new Alt(); | |
class AnimalActions { | |
run() { | |
// do some stuff | |
this.dispatch(); | |
} | |
} |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
CSV_SETTINGS = { | |
headers: true, # first row is headers | |
header_converters: :symbol, # convert headers to symbols | |
converters: [ | |
-> (f) { f.present? ? f : nil }, # convert empty cells to nil | |
-> (f) { f.respond_to?(:gsub) ? f.gsub(/\s+$/, '') : f }, # convert whitespace to nil | |
:all # converts things to numbers and dates | |
] | |
} |
%x{git branch | grep feature}.split("\n").map(&:strip).map {|o| [o, o.gsub(/^feature\//, "old/")] }.map {|(o, n)| %x{git branch -m #{o} #{n}} } |