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
| package main | |
| import ( | |
| "context" | |
| "encoding/json" | |
| "fmt" | |
| "os" | |
| "path/filepath" | |
| "time" |
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
| kapitan: | |
| vars: | |
| target: ${name} | |
| compile: | |
| # tf files | |
| - output_path: terraform | |
| output_type: json | |
| input_paths: | |
| - templates/terraform/main.jsonnet | |
| input_type: jsonnet |
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
| class Parent { | |
| static build() { | |
| return new this(); | |
| } | |
| } | |
| class Child extends Parent { | |
| } | |
| assert(Child.build() instanceof Child); |
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
| # Description: | |
| # Automates aspects of mover.io's current Github workflow which leverages | |
| # Github's issue tags and commenting system. We previously used a :+1: | |
| # comment to approve pull requests, but doing so did not affect the state of | |
| # the the PR. | |
| # | |
| # Included is a Github webhook handler that checks for comments containing | |
| # certain trigger words. Currently: | |
| # | |
| # :+1: The pull request is approved. |
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
| String file contents |
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
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <body> | |
| <script src="http://d3js.org/d3.v3.min.js"></script> | |
| <script src="http://d3js.org/topojson.v0.min.js"></script> | |
| <script> | |
| var width = 960, | |
| height = 500; |