I hereby claim:
- I am trjordan on github.
- I am trjordan (https://keybase.io/trjordan) on keybase.
- I have a public key ASCpBnh-J3rI2O32gMdFKNimICD1bmJL7jxup-a3fiVvdQo
To claim this, I am signing this object:
| diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml | |
| index 9ff53ed..8077d60 100644 | |
| --- a/.github/workflows/ci.yml | |
| +++ b/.github/workflows/ci.yml | |
| @@ -42,4 +42,3 @@ jobs: | |
| - name: Run tests | |
| run: ./scripts/test | |
| - |
| version_info: "0" | |
| resources: | |
| - "@type": type.googleapis.com/envoy.api.v2.Cluster | |
| name: some_service | |
| connect_timeout: 1.0s | |
| lb_policy: ROUND_ROBIN | |
| type: EDS | |
| eds_cluster_config: | |
| eds_config: | |
| api_config_source: |
I hereby claim:
To claim this, I am signing this object:
| # Description: | |
| # Display network path performance from PathView Cloud. | |
| # | |
| # Dependencies: | |
| # | |
| # Configuration: | |
| # HUBOT_PVC_SUBDOMAIN | |
| # HUBOT_PVC_ACCOUNT | |
| # HUBOT_PVC_PASSWORD | |
| # |
| # Description: | |
| # Display latency information from TraceView applications. | |
| # | |
| # Dependencies: | |
| # | |
| # Configuration: | |
| # HUBOT_TV_ACCOUNTS | |
| # | |
| # Commands: | |
| # hubot (traceview|tv) me <account> latency (for|in) <applications> - Return latency information for TraceView applications in an account |
| #!/usr/bin/env python | |
| # | |
| # Unwrap the data from the Data API, and make a couple of plots. | |
| # 1) Plot of volume and latency | |
| # 2) Plot of scalability of the current application | |
| # | |
| # Assumes data from the week-long view (i.e., 4-hour chunks of data). If this | |
| # isn't true, the labels will be wrong. | |
| # | |
| # Try running it like this: |
| # In the web request | |
| def start_job(*args) | |
| # Log the fact that we're starting a job, and send the job with the current | |
| # task id | |
| ctx = Oboe::Context.toString | |
| Oboe::API.log_entry('job', { :Async => true }) | |
| task_id = Oboe::Context.toString unless not Oboe::Context.isValid | |
| Oboe::Context.fromString(ctx) | |
| Resque.enqueue(Processdoc, task_id, *args) |
| <?php | |
| /** | |
| * Magento | |
| * | |
| * NOTICE OF LICENSE | |
| * | |
| * This source file is subject to the Open Software License (OSL 3.0) | |
| * that is bundled with this package in the file LICENSE.txt. | |
| * It is also available through the world-wide-web at this URL: | |
| * http://opensource.org/licenses/osl-3.0.php |
| from functools import wraps | |
| from decorator import decorator | |
| def mywrapper1(func, *args, **kwargs): | |
| """A decorator""" | |
| print 'Wrappedly 1', args, kwargs | |
| return func(*args, **kwargs) | |
| def mywrapper2(*args, **kwargs): | |
| print 'Wrappedly 2', args, kwargs |
| import cProfile | |
| import sys | |
| import math | |
| import numpy | |
| import random | |
| def mean(values): | |
| if values: | |
| return sum(values) / len(values) | |
| else: |