Results 10 comments of IKoshelev

Update, issue looks to be fixed by ``` sudo apt install libc6-dev sudo apt install libgdiplus ``` as suggested here https://github.com/dotnet/core/issues/2746

@techyian Yes, thank you, I cloned and built master on a Win 10 machine, then dropped dlls into project on my Pi, but encountered some strange behavior. When I tried...

@techyian I sent out an invitation to the private repo with my Pi surveillance fun-project. Link to particular snapshot: https://github.com/IKoshelev/reseye-sharp/blob/1720383726bf936b6fad17b7f3a94a06aeef9bbd/StreamSplitterExperiment/Program.cs Mind you, this is just a playground repo, so a...

@techyian I've forked this repo, added a playground project and replicated `mmal: mmal_vc_component_enable: failed to enable component: ENOSPC` in it: https://github.com/IKoshelev/MMALSharp/blob/0261549c171cc9b8670f4ae531b6cbc3f8aa32eb/Playground/Program.cs P.S. Which camera module are you using? I'm getting...

@techyian Can you maybe activate discussions for this repo? https://docs.github.com/en/discussions/quickstart I've done some experiments with `System.Numerics.Vector` https://instil.co/blog/parallelism-on-a-single-core-simd-with-c/ `System.Runtime.Intrinsics` https://devblogs.microsoft.com/dotnet/hardware-intrinsics-in-net-core/ and was wondering, if we they can improve frame-diffing speed for...

@MV10 I tried intrinsics with Raspbian 64. They worked great, the loop that took 60 ms in plain C# took nole 2 ms with intrinsics. BUT Raspbian 64 is in...

@rexm thank you, I've tried running this code, with some changes (did some guesswork) ```csharp using System; using System.Reflection; using System.Reflection.Emit; using System.Linq.Expressions; using HandlebarsDotNet; using System.IO; using System.Security.Permissions; namespace...

Has there been any progress on this front? I came back to the question of View engine for Azure Functions, and it looks like 2 years later there is still...

@zjklee I kind of gave-up on the prospect of using a view-engine in Azure FN, and just stuck to Interpolated strings for now, making a reminder to adjust for all...

Dear colleagues, IMHO, DSLs are a bad idea when we are dealing with a language as expressive as C#. Gui markup DSLs like HTML and XAML mostly come down to...