David Taylor
David Taylor
Just noticed that if I open the markdown in Typora, I can use the context menu and scale it to 50%. It turns the markdown into an `` tag: ```html...
This also happens for me and I'm not using docker. On a fresh machine (Pop!_OS 19.10), I followed the instructions to [install .NET Core](https://docs.microsoft.com/en-us/dotnet/core/install/linux-package-manager-ubuntu-1910). ``` wget https://packages.microsoft.com/config/ubuntu/19.10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb sudo...
Like @Gastove said, if I also install v2 SDK, it builds just fine. ``` sudo apt-get install dotnet-sdk-2.1 ```
Same here. I'm on Pop!_OS 20.10 and when I run **Stacer** from the terminal and then close the application, I get a segmentation fault: ``` david@study:~$ stacer Segmentation fault (core...
I cloned the code from https://github.com/lilianmoraru/Stacer/tree/master. Followed the local build instructions. Had to install `cmake` but that's OK. Got build errors: ``` cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=/qt/path/bin .. -- The C compiler...
I installed the missing packages and I was able to build Stacer. Unfortunately, the hi-res display problems are still there. The Services and Resources pages look the same as before...
It turns out that scroll events are already synchronized to animation frames in modern browsers, so there is no need to throttle them. I was misled by some advice here:...
> A shared `_bin` directory would be problematic because of the linker. The build process calls `illink`, which strips assemblies of types and methods that aren't used by the main...
After some experimentation, here's how to do it. I have a second client project, called **Graph.Client.fsproj** and the server has a separate **_Graph.cshtml** page to render it. (1) _Graph.cshtml has...
I am also trying to upload files. It's working in WebAssembly mode, but it does not work if `AddBoleroHost` has `server=true` or `prerendered=true`. Let me explain why. For the UI,...