Lukas Rieger

Results 115 comments of Lukas Rieger

It generated this weird code: __System.Numerics.js__ ```js "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Vector3$reflection = Vector3$reflection; exports.Vector3$$$$002Ector$$Z7138B98C = Vector3$$$$002Ector$$Z7138B98C; exports.Vector3$$$$002Ector$$Z69591B0C = Vector3$$$$002Ector$$Z69591B0C; // ... var _System = require("./System.Text");...

With the ``fable-compiler-quotations``, I get an error when using Elmish.Bridge.Client: ![image](https://user-images.githubusercontent.com/4236651/58487802-83d70700-8168-11e9-9318-ef13e8b1c3b1.png) https://github.com/Nhowka/Elmish.Bridge/blob/91229e99cae0ebd923e22e8133ed6ed5fe60e605/src/Client/Library.fs#L43-L48 This is probably because it now includes more reflection info.

> I'm aware of Vagabond but currently it only advertises support for .NET Core 3.1 and I also need to support .NET Framework 4. I randomly saw this, and just...

Sorting pods on memory usage would be really useful, we have been having issues with the .NET Server GC running too infrequently, causing memory issues. In general, it should be...

+1, this is how my build fail emails from gitlab currently look: ![image](https://user-images.githubusercontent.com/4236651/57074785-3c826580-6ce5-11e9-9e08-49827784dcee.png)

Thank you for the quick response! > I assume that your file contains huge amount of unit definitions? As far as I understand it, the issue isn't the unit definitions...

I did a second test, where I just open an IFC file and immediatly close it: ```c# class Program { private static void Test() { using (IfcStore model = IfcStore.Open(@"file.ifc"))...

One issue I had with the Remoting serializer is that it doesn't allow you to inject serializers for your own classes. That means anything except built-ins, tuples, unions, records, doesn't...

Yeah something similar like that. I'd make it as similar to the MailboxProcessor as possible, so it could look like this: ```f# // defined by Elmish,Bridge type IReplyChannel unit abstract...

For us the issue is not the browsers themselves, but rather intercepting proxies / firewalls, which are unfortunately common in corporate environments. Have you already taken a look at how...