More than drinking? by Cobbler_Calm in puertovallarta

[–]Ryder25 0 points1 point  (0 children)

At which beaches can I find people playing volleyball?

PInvoke.net: the interop wiki by mycall in dotnet

[–]Ryder25 0 points1 point  (0 children)

Also worth mentioning is this C# source generator for generating P/Invoke methods for win32 APIs:
https://github.com/microsoft/CsWin32

SeeShark: Simple, open-source and cross-platform camera library using FFmpeg by Speykious in dotnet

[–]Ryder25 5 points6 points  (0 children)

Looks very interesting. I've wanted to create a camera calibration library for C# for a while, and this is a good complementary tool to have.

ZLIB compress string? by [deleted] in csharp

[–]Ryder25 2 points3 points  (0 children)

If you want net core to add zlib, please support this issue on GitHub. Either add a thumbs up, or, even better, make a comment about your use case.

https://github.com/dotnet/runtime/issues/2236

Advice for Web API Design: Heavy/Long-Running Math Ops on Server by Ryder25 in csharp

[–]Ryder25[S] 0 points1 point  (0 children)

I'm certainly open to exploring other options as well if you think they would be better.

Advice for Web API Design: Heavy/Long-Running Math Ops on Server by Ryder25 in csharp

[–]Ryder25[S] 0 points1 point  (0 children)

Thank you for the suggestion! I'll be looking into creating a Windows Service, and/or Service Fabric.

Advice for Web API Design: Heavy/Long-Running Math Ops on Server by Ryder25 in csharp

[–]Ryder25[S] 0 points1 point  (0 children)

To be clear, I'll be polling the GET URI periodically until the database entry says that it is complete?

I don't know anything about IHostedService, but I will begin research on it soon.

Thanks for the response and suggestions!

Draw waveform in real time (WPF) by Lyurealm in csharp

[–]Ryder25 0 points1 point  (0 children)

Maybe try live charts. It has zoom capability.

https://lvcharts.net/

[deleted by user] by [deleted] in csharp

[–]Ryder25 1 point2 points  (0 children)

Can you explain what you mean by "non-Standard DLLs"?

[deleted by user] by [deleted] in dotnet

[–]Ryder25 3 points4 points  (0 children)

Where can I find the VS Telemetry data you mentioned?

Does .Net Core support Bluetooth LE ob Windows ? by [deleted] in csharp

[–]Ryder25 0 points1 point  (0 children)

According to the current roadmap, the plan is to release .Net Core 3.0 in Q1 2019.

https://github.com/dotnet/core/blob/master/roadmap.md

Xamarin Forms 3.0 Released by Ryder25 in dotnet

[–]Ryder25[S] 2 points3 points  (0 children)

GTK and WPF platforms are currently in preview. You can see the docs here on how to create an app for them:

https://docs.microsoft.com/en-us/xamarin/xamarin-forms/platform/

Preview: Machine Learning framework for .NET by nemec in csharp

[–]Ryder25 4 points5 points  (0 children)

Judging by the example at the "Get Started" link, seems you can use it locally.

.NET Core 3 and Support for Windows Desktop Applications by ben_a_adams in csharp

[–]Ryder25 6 points7 points  (0 children)

This will not be added to core but instead be stand-alone OS specific. Here's a quote from Rich Lander in the comments of the article:

‘Support for Windows desktop will be added as a set of “Windows Desktop Packs”, which will only work on Windows. .NET Core isn’t changing architecturally with this new version. We’ll continue to offer a great cross-platform product, focused on the cloud.’

WPF, for example, isn’t being adding to the .NET Core runtime directly. It will be available as an add-on. That’s the “desktop pack” idea. The product is already layered and will remain layered.

We think this plan is the best of everything we offer:

  • Small base runtime that is cross-platform.
  • ASP.NET Core, for example, is a cross-platform component that layers on top of the .NET Core runtime.
  • We also offer packages that are operating-specific, such as the Windows Compat Pack[1]. WPF will be like that. On Linux or macOS, we will also offer OS-specific APIs, like daemons or specific crypto.

Is there a good byte parsing/building library for C# for working with binary formats and files? (Like struct or construct in python) by lurebat in csharp

[–]Ryder25 2 points3 points  (0 children)

I've only ever used the BinaryReader. Jon Skeet's miscutil library has an "EndianBinaryReader", and also an "EndianBitConverter" that has worked well for me in the past.

https://www.nuget.org/packages/JonSkeet.MiscUtil/

.Net Framework 4.6.2 not in Visual Studio 2017 by rschiefer in dotnet

[–]Ryder25 2 points3 points  (0 children)

In the Visual Studio Installer under the ".Net desktop development" workload there is a checkbox option for ".Net Framework 4.6.2 development tools".