Farid Zakaria
Farid Zakaria
Hi! I want to use vpn-slice for all non-internal subnets (i.e. https://serverfault.com/questions/304781/cidr-ranges-for-everything-except-rfc1918) beacuse we use the VPN as a public internet proxy. The full list is quite long -- is...
Love the tool. Running it on my laptop eats my whole NIC, I can't even browse the internet (wow fast!) I was curious if you have thought of a way...
I think if we changed the implementation of RouteBuilder `route` to append every invocation to the previous call you can build complex routes ` RouteBuilder userRouter = router.route('/user'); userRouter.GET().route('/login') userRouter.GET().route('/logout')
Add section explaining use of [ffast](https://github.com/jonatas/fast/) to help migrate code easily to the new expectation sequence. I recently migrated our version of Minitest on a very large codebase and we've...
Add section for direnv that links readers to the nix-community implementation as it's: 1 - faster due to caching of the environment 2 - creates a gcroots Open question: Why...
I've been using warbler to build a gem where one of the dependencies are :path => to a local gem ``` gem "some-gem", :path => "./gems/some-gem" ``` I've noticed that...
This is an upstream commit authored by @stalbot. Unclear why in the original code `exclude_gems` was set to false if any files were found in the Git gem. It caused...
I believe the maven plugin for scrooge is too restrictive, especially for cases where not _all_ thrift model dependencies have the `idl` classifier Here is the relevant code from `AbstractMavenScroogeMojo`...
I would like to guarantee that any Reporter's close at the end of my program (in the case they are batching). Tracer should implement Closeable similar to Jaeger's implementation.
The `Tracer` object should be accessible via the Span. This will be inline with Jaeger's [implementation](https://github.com/jaegertracing/jaeger-client-java/blob/master/jaeger-core/src/main/java/com/uber/jaeger/Tracer.java) & with the OpenTracing [Golang](https://github.com/opentracing/opentracing-go/blob/master/span.go#L111) client. In code that I am integrating Jaeger, it...