David Piepgrass

Results 132 comments of David Piepgrass

Hmm, this is the sort of thing that requires non-local transformation (as the usual in-place macro transformations are useless), and I have done these in the past with top-of-file macros...

Interesting, my output is `RuntimeError: index out of bounds` (Firefox). 1 Luckily, other examples still work (e.g. try Custom Console).

I'd like to add that this code in Overview.md doesn't seem to make sense. Perhaps `$outer` meant to create $inner-clos? And shouldn't those `i32` fields be f64? And in the...

> Do you get any errors, any crashes? No. > Or you don't get a behaviour you expect? I expect type checking in Parcel and none occurs. > you need...

Repro: (1) Create an empty folder and add this `index.html` file: Types? (2) Create an `error.tsx` file with type error(s) (**note:** same thing happens with .ts extension) var x:number="Fail!"; document.body.innerHTML=x;...

I found that using the full assembly name often works: #r "System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" However, I'm not sure, in general, how to get the correct version and PublicKeyToken, especially...

Do you know of any way to reference assemblies in a way that will work on both Windows and Linux? I'm not even sure if the technique I mentioned would...

Wow, now `#r "System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"` isn't working anymore (whether it be v1.0.1 or v0.53 of dotnet-script). In a debugger I can use `System.Reflection.Assembly.GetExecutingAssembly().GetReferencedAssemblies()` to see that a WinForms...

I got this error message when I switched from "endpoint routing" (whatever that means) to "UseMvc" (whatever that means). i.e. OData is set up like this mvc.AddOData(opt => opt.AddRouteComponents("odata", OurDataModel.Get())...

Thank you. Unfortunately, code like that doesn't work. The problem is that when the data endpoint is accessed, `Microsoft.AspNetCore.OData.Formatter.ResourceContext.GetPropertyValue` is called for every property in the EDM model, which calls...