Skip to content
View t-davies's full-sized avatar

Organizations

@the-nuel @biggestcarrot
Block or Report

Block or report t-davies

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. nomad-autoscaler-dynatrace nomad-autoscaler-dynatrace Public

    An APM plugin for nomad-autoscaler that allows querying for metrics from Dynatrace

    Go

  2. magicxml magicxml Public

    Simple, cross-browser JavaScript XSLT plugin

    JavaScript 17 8

  3. Suggests optimal EC2 instance mix fo... Suggests optimal EC2 instance mix for single-core apps, like CS:GO servers
    1
    const hosts = [
    2
      {
    3
        name: "z1d.12xlarge",
    4
        capacity: 48,
    5
        cost: 5.273,
  4. nested-values.js nested-values.js
    1
    export function getNestedValue(key, object) {
    2
        return key.split('.').reduce((previous, current) => {
    3
            return previous[current];
    4
        }, object);
    5
    }