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
curl --json '{"summary": "Hey Robert!"}' https://signals.firehydrant.com/v1/process/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJvaWQiOiI3ZTZkNTg3Yy00ZmRkLTQ4Y2EtYWVjMC00MzkxNGVjYzIzMzYiLCJ0aWQiOiJhMjg3MWJmNi02Y2M3LTQyMGItYjM3ZC1iOWFjYzYwYzg5ZmUifQ.rSs4-AjMb6MdjRy2f2xNpFct9biNa8iicATp922M51g |
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
config = Rails.application.config.x.gcloud | |
pubsub = Google::Cloud::Pubsub.new project_id: config["project_id"], credentials: config["pubsub"]["keyfile"] | |
topic = pubsub.topic "incident-events" | |
sub = topic.subscription "hello-world" | |
subscriber = sub.listen do |received_message| | |
puts "sub 1" | |
puts received_message.message.data | |
received_message.acknowledge! |
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
apiVersion: config.istio.io/v1alpha2 | |
kind: prometheus | |
metadata: | |
clusterName: "" | |
creationTimestamp: 2018-09-21T16:32:54Z | |
name: handler | |
namespace: istio-system | |
resourceVersion: "98310577" | |
selfLink: /apis/config.istio.io/v1alpha2/namespaces/istio-system/prometheuses/handler | |
uid: fd9e637a-bdbb-11e8-bdcf-0ec5bee14916 |
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
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"strings" | |
"text/tabwriter" | |
) |
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
apiVersion: v1 | |
data: | |
endpoint_deadline: 5s | |
listen_addr: "0.0.0.0" | |
listen_port: "50051" | |
metadata: | |
name: heimdall | |
namespace: default |
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
version: 1 | |
environment: | |
- name: LISTEN_ADDRESS | |
value: "localhost:8080" | |
usage: "This is the address that the application listens on" | |
- name: HEALTH_ADDRESS | |
value: "localhost:8080/healthz" | |
usage: "This is the endpoint for health checks performed by kubernetes" | |
- name: DATABASE_URL | |
value: "postgres://postgres:5432" |
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
#!/usr/bin/env bash | |
# This script is meant to build and compile every protocolbuffer for each | |
# service declared in this repository (as defined by sub-directories). | |
# It compiles using docker containers based on Namely's protoc image | |
# seen here: https://github.com/namely/docker-protoc | |
set -e | |
REPOPATH=${REPOPATH-/opt/protolangs} | |
CURRENT_BRANCH=${CIRCLE_BRANCH-"branch-not-available"} |
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
syntax = "proto3"; | |
message Error { | |
string message = 1; | |
int32 error_code = 20; | |
} | |
message Application { | |
string id = 1; | |
string type = 2; |
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 'benchmark/ips' | |
require 'active_support/core_ext' | |
require 'jbuilder' | |
require 'kartograph' | |
require 'active_model_serializers' | |
require 'pry' | |
User = Struct.new(:id, :name, :email) do | |
def read_attribute_for_serialization(attribute) | |
send(attribute) |
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
Hardware Overview: | |
Model Name: MacBook Pro | |
Model Identifier: MacBookPro11,3 | |
Processor Name: Intel Core i7 | |
Processor Speed: 2.6 GHz | |
Number of Processors: 1 | |
Total Number of Cores: 4 | |
L2 Cache (per Core): 256 KB | |
L3 Cache: 6 MB |
NewerOlder