Sebastian Stehle

Results 240 comments of Sebastian Stehle

I am querying monitoring information from the grain, so I would need a response. Java returns null if I remember correctly, but an exception or a special return value would...

One part of the problem has been solved: https://github.com/dotnet/orleans/issues/5624

Yes, I have solved it, the happens when I use something like the following. ``` const clipPath = new SVG.ClipPath() clipPath.circle(100) const toBeClipped = new SVG.Rect(); toBeClipped.clipWith(clipPath) // Throws exception....

Like this to be precise: ``` const toBeClipped = new SVG.G(); toBeClipped.clipWith(clipPath) // Throws exception. ``` EDIT: I was wrong, I also fixed another bug, that was probably causing the...

I like it, I also would like to see multiple reducers for one slice. My scenario is a diagramming application, where you have a lot of actions, e.g. ``` rootReducers...

Same here, the problem are fixed elements.

I have added a warning and also added a few hints about the limitation of the ports.

CodeTrack supports .net core. An alternative would be to publish your .NET Core App to Windows and profile it then with Ants Profiler.

I found the same things as Ayende when profiling the inserts with Redgate Profiler. The slowest parts are the Analyzer and IO. I tried to refactor some stuff, but it...

Hi, there are a few small sample applications here: https://github.com/Squidex/squidex-samples/tree/master/csharp I am not entirely sure what you are looking for, though.