I hereby claim:
- I am bmonkman on github.
- I am bmonkman (https://keybase.io/bmonkman) on keybase.
- I have a public key ASCiwqJHGTp3gThjmMxwbMP6DU7Byn54T7Xi28uFFNCsfAo
To claim this, I am signing this object:
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: echoserver | |
annotations: | |
# nginx ingress | |
kubernetes.io/ingress.class: nginx | |
nginx.ingress.kubernetes.io/rewrite-target: /$1 | |
# cert-manager | |
ingress.kubernetes.io/ssl-redirect: "true" |
package resolvers | |
import ( | |
"context" | |
"github.com/commitdev/myapp/internal/database" | |
"github.com/commitdev/myapp" | |
) | |
func (r *queryResolver) User(ctx context.Context, id string) (*models.User, error) { |
"""A date following the RFC3339 standard""" | |
scalar RFC3339Date | |
"""A date without time information""" | |
scalar Date | |
"""Cursor-based pagination helper""" | |
type PageInfo { | |
startCursor: String |
# Schema Definition | |
schema: schema/*.graphql | |
exec: | |
filename: generated/server/server.go | |
package: server | |
model: | |
filename: generated/gqlmodels/gqlmodels.go | |
package: gqlmodels |
bryce [2:45 PM] | |
joined #stupid_at_channels. | |
bryce [2:45 PM] | |
@channel hey all | |
@channel hey does anyone know how to use email | |
@channel got a client on the phone, can someone please explain what bench does | |
@channel thanks everyone | |
bryce [2:47 PM] |
#!/usr/bin/env bash | |
PATTERN="${1}" | |
if [ "${PATTERN}" == "" ]; then | |
PATTERN="*" | |
fi | |
DIR=`pwd` | |
LAST_HASH="" |
I hereby claim:
To claim this, I am signing this object:
#!/usr/local/bin/php | |
<?php | |
define('IN_DARKLAUNCH_CONFIG_DIR', '/some/path/'); | |
// Type, e.g. 'core' supplied on the command line by the consul watch | |
$dlType = $argv[1]; | |
// Get and decode stdin | |
$data = stream_get_contents(fopen('php://stdin', 'r')); | |
$consulKVData = json_decode($data, true); |
{ | |
"watches": [ | |
{ | |
"type": "keyprefix", | |
"prefix": "darklaunch/dashboard/core/", | |
"handler": "/path/to/PHPDarklaunchHandler.php dashboard-core 2>>/var/log/consul_watch_output_dashboard_core" | |
} | |
] | |
} |
<?php | |
define(COOKIE_FILE, "/var/tmp/sn-run"); | |
define(GAME_NUMBER, "5566012476882944"); | |
define(MY_ID, 5); // Player id | |
touch(COOKIE_FILE); | |
$allies = array(1,10); // Optional ally ids - disable notifications for these players if it gets too annoying. | |
$from = $to = "[email protected]"; // Notification address |