Avi Levin

Results 67 issues of Avi Levin

This seems pointless, but can be handy when handling variable input in a script.

It'd be nice to have a tab similar to the ["Query Stats" pane](https://docs.microsoft.com/en-us/azure/cosmos-db/find-request-unit-charge?tabs=dotnetv3#sql-core-api) in cosmos.azure.com. The stats are easily available from the SDK: - https://docs.microsoft.com/en-us/azure/cosmos-db/sql-api-query-metrics#query-execution-metrics - https://docs.microsoft.com/en-us/azure/cosmos-db/find-request-unit-charge?tabs=dotnetv3#use-the-net-sdk

enhancement
area: data manipulation
up for grabs

Switching containers via "pick a container" is slower than it should be, because you have to drill down through the accounts and databases to find your container, but there are...

enhancement
area: UI/UX

Specifically, "close other tabs" on right-click, but rearranging would be nice too.

enhancement
area: UI/UX

You can edit the page and make a PR. Great way to promote. https://docs.microsoft.com/en-us/ef/core/extensions/

documentation

It would be nice to have a `Memoize` operator that only caches a given number of items. This would be handy for inspecting the start of a non-reentrant `IEnumerable` (e.g....

https://github.com/TestableIO/System.IO.Abstractions/blob/05486f75815bd2f22beefa48407a42cb18034a72/src/System.IO.Abstractions.TestingHelpers/MockFileStream.cs#L93-L107 If Thread1 invokes this method, but Thread2 deletes the same file while Thread1 is at line 96, then Thread1 will throw a NullReferenceException at line 107. I'm not sure...

type: bug
state: ready to pick
area: testinghelpers

Using a registered event similar to this: ```js $.contextMenu({ selector: ".foo", build: function($triggerElement, e){ console.log(window.getSelection().getRangeAt(0)); return {zIndex: 10, items: getMenuItems(), reposition: false}; } }) ``` If I repeatedly right-click (as...

Right now, to decorate an object, one writes code as `container.For().DecorateWith(x => new FooDecorator(x));` It would be nice to be able to use just type parameters, like one can for...