Brian Malinconico
Brian Malinconico
Morning, When autocompleting a value at the start of an existing word, a portion of the exiting word is overwritten. See the attached image. The expected output of this completion...
I'm using Delve through vim-test. One of the problems with that integration is that vim-test is writing it's own init file and calling tests agains that. This means that if...
Hello, I wanted to have a conversation as to how, and if at all, Dynamoid supports the common [single table design](https://aws.amazon.com/blogs/compute/creating-a-single-table-design-with-amazon-dynamodb/) for DynamoDB. The basic TL;DR; is the existing STI...
### Motivation Reviewing how the compiler works and found a minor typo ### Implementation No details required ### Tests No details required
Sorbet now supported [overloaded method signatures](https://github.com/sorbet/sorbet/blob/df0fac3d6228a77aba262022a09122ed4dcbede0/test/testdata/infer/overloads_test.rb#L14). Poking around parlour I do not see a way to do this yet. If we are not yet able to generate multiple sigs per...
#### Input [→ View Bug on sorbet.run](https://sorbet.run/?arg=--enable-experimental-requires-ancestor#%23%20typed%3A%20strict%0A%23%20Example%20using%20Enum%0A%0Amodule%20SerializableEnum%0A%20%20extend%20T%3A%3ASig%0A%20%20extend%20T%3A%3AHelpers%0A%0A%20%20requires_ancestor%20%7B%20T%3A%3AEnum%20%7D%0A%0A%20%20sig%20%7B%20returns%28String%29%20%7D%0A%20%20def%20dump_to_db%0A%20%20%20%20serialize%0A%20%20end%0A%0A%20%20sig%20%7B%20params%28mod%3A%20Module%29.void%20%7D%0A%20%20def%20self.included%28mod%29%0A%20%20%20%20mod.extend%28ClassMethods%29%0A%20%20end%0A%0A%20%20module%20ClassMethods%0A%20%20%20%20extend%20T%3A%3ASig%0A%20%20%20%20extend%20T%3A%3AHelpers%0A%0A%20%20%20%20requires_ancestor%20%7B%20T.class_of%28T%3A%3AEnum%29%20%7D%0A%0A%20%20%20%20sig%20%7B%20params%28serialized_str%3A%20String%29.returns%28T.self_type%29%20%7D%0A%20%20%20%20def%20load_from_db%28serialized_str%29%0A%20%20%20%20%20%20deserialize%28serialized_str%29%0A%20%20%20%20end%0A%20%20end%0A%0A%20%20mixes_in_class_methods%28ClassMethods%29%0Aend) ```ruby # typed: strict # Example using Enum module SerializableEnum extend T::Sig extend T::Helpers requires_ancestor { T::Enum } sig { returns(String) } def...
**Is your feature request related to a problem? Please describe.** I'm currently leveraging a Span filter to modify tags on spans pre-flush to remove sensitive information. Since these tags are...
Minor type in the README where the TokenResponse contains the `tokens` key that needs to be sent along.
Hello, The following PR introduced a bug related to lazy loaded feature modules: https://github.com/btroncone/ngrx-store-localstorage/pull/76/files The net effect of this PR is to re-hydrate the state when every feature module is...
This code provides a solution to issue #93. It works by **only** restoring the stored keys if the object key definition is used.