Andrew Brampton

Results 83 issues of Andrew Brampton

It would be helpful to have a constant on each bitfield struct that indicates its length, for example ```rust #[bitfield] pub struct MyFourBytes { a: B1, b: B3, c: B4,...

It seems the entire rectangle of the `RenderVectorGraphic` [absorbs hits](https://github.com/dnfield/vector_graphics/blob/c1782b87502fe0e4760dff748bd0cfdcd9407672/packages/vector_graphics/lib/src/render_vector_graphic.dart#L188) (for example when a user taps the screen). Would it be possible to adjust the hitTestSelf to only return true...

Simple changes to enable converting a pass.json into a Pass object. More work is needed to support the manifest, and extracting this from a zip file.

I would like to generate a Pass object from an existing pass.json, and equally I would like to generate the pass.json from a Pass object. This way I can store...

When visiting https://store.google.com/, the extension requests /humans.txt, which 302 redirects to /humans.txt/, which 302 redirects to /humans.txt/ and this continues (for what looks like forever). Arguably store.google.com is at fault,...

mtr has previously worked great for me, but in the last week it will fail within minutes with the error `mtr: Unexpected mtr-packet error` Example: ``` $ sudo mtr 8.8.8.8...

When using this action I get the following warning: > Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: jaxxstorm/action-install-gh-release@HEAD. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/....

`dart test` has a handy `--platform` flag, where you can run your tests under different environments, 'vm', 'chrome', 'node' and some others. It would be useful if benchmarks could be...

I quite often have objects that include a double, and use a deep matcher (via `equals()`), e.g ```dart import 'dart:math'; List a = resultOfSomeFunction(); expect(a, equals([Point(1.2, 3.4), ...]); ``` In...