Please turn JavaScript on
Stack Overflow - Recent Questions icon

Stack Overflow - Recent Questions

Want to keep yourself up to date with the latest news from Stack Overflow - Recent Questions?

Subscribe using the "Follow" button below and we provide you with customized updates, via topic or tag, that get delivered to your email address, your smartphone or on your dedicated news page on follow.it.

You can unsubscribe at any time painlessly.

Title of Stack Overflow - Recent Questions: "Stack Overflow - Where Developers Learn, Share, & Build Careers"

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  433.39 / day

Message History

I'm following this topic https://playwright.dev/dotnet/docs/ci for Continuous Integration in windows system but I have an error with playwright installation

run: pwsh bin/Debug/net8.0/playwright.ps1 install --with-deps

The error message is this

The argument 'bi...


Read full story

We have an instance of Forge viewer running in a React component. I have a function that needs to shut down and dispose of the viewer. The current implementation of the function consists of the lines:

viewer.current && viewer.current.uninitialize(); window.Autodesk.Viewing.shutdown();

This appears to solve some of our issues with the viewer hanging around, b...


Read full story

I'm trying to extract text from a video. I created cropped frames from the video using ffmpeg and saved them as PNGs. Now, I'm using those PNGs to extract the text using EasyOCR. At first, I tried doing it with Tesseract, but it was too slow, so I went with EasyOCR because I wanted to use my GPU for a faster process. I'll now include two images that I use as examples.


Read full story

Im building a small MVVM application using the DDD principles. In my ViewModel I have to update some properties whenever an event is fired. Although my ViewModel updates the properties, these changes are not reflected in the UI.

Here is my (simplified) ViewModel:

public class DashboardViewModel : ReactiveObject, IAsyncHandle<RaceCreatedEvent> { private reado...

Read full story