Garth Kidd

Results 63 issues of Garth Kidd

Multiple `` per `` is valid HTML, but Blackfriday discards all but the last: ```markdown `trace.span_id` `trace.trace_id` `trace.parent_id` : trace attributes `service_name` : service name ``` → ```html trace.parent_id trace...

A solution to a self-inflicted problem discovered while using StreamData to generate replies for `Mox` pretending to be `Elasticsearch.API`. Let's say you got carried away with the realism of your...

I'd expect `with_span` to catch errors/exceptions, call `record_exception`, set the span status, and then re-raise like it did in `OpenCensus.Elixir`. I can't see it happening, though, nor find any mechanism...

I'm not entirely sure about the error tuple as an option for its return value: ```erlang -record(tracer, { module :: module(), on_start_processors :: fun((otel_ctx:t(), opentelemetry:span()) -> opentelemetry:span()), before_end_processors :: fun((opentelemetry:span())...

### Precheck - [x] Take a look at the open issues and be sure that your issue is not already covered. - [x] Be sure your versions of Dialyxir and...

## 🚀 Feature Extend google.protobuf.EnumOptions so we can set examples on enums. ```protobuf enum State { option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_enum) = { example: "ACTIVE" }; NONE = 0; ACTIVE = 1; INACTIVE...

enhancement
help wanted
openapi
good first issue

* `gatsby new xxx https://github.com/fabien0102/gatsby-starter` * `cd xxx` * `npm start` * browse to http://localhost:8000/blog/ with Chrome 63.0.3239.132 * observe console error `Warning: validateDOMNesting(...): cannot appear as a descendant of...

**Description:** `sam package` compresses symlinks as an additional copy of the file to which they resolve. Given a traditional shared library layout with ``` libz.so → libz.so.1 libz.so.1 → libz.so.1.2.11...

area/bestpractices
area/package
type/bug
stage/needs-investigation
area/performance
maintainer/need-response

```elixir import Norm key_opt_spec = {:keys, coll_of(one_of(~w"a b c"a))} fun_opt_spec = {:fun, spec(is_function(1))} opts_spec = coll_of(one_of([key_opt_spec, fun_opt_spec])) conform!([{:fun, fn _ -> "auto" end}], opts_spec) ``` crashes with: ``` ** (Protocol.UndefinedError)...

`a_contract_between_doc_and_def/0` below won't get tested or documented, without any warning to that effect: ```elixir defmodule NormContractVsDoctest do @moduledoc """ Demonstrates interaction between `@contract` and `@doc` """ use Norm @doc """...