Epictek
banner
kieran.coldron.com
Epictek
@kieran.coldron.com
Yeah but we're you actually planning to boulder or socialise and drink coffee between attempting to climb? 🤣
September 12, 2025 at 9:41 PM
Avalonia uses Skia under the hood, not sure if that's an option for you since it would be a lot more low level than even pangui. Pangui certainly looks interesting!
November 29, 2024 at 2:38 AM
Avalonia?
November 29, 2024 at 2:24 AM
Have you tried Rider?
November 28, 2024 at 8:03 PM
The built in ASP.NET Dependency Injection is fine for most peoples use cases.
November 25, 2024 at 1:38 PM
C is useful to know, especially for understanding how pointers work, but for most projects a high level language such as C# makes more sense.
November 20, 2024 at 8:10 AM
maybe
November 6, 2024 at 4:32 PM
No obvious scrolling issues on my Nokia G60 (Snapdragon 695) actually really surprised a React Native app can perform this well I can usually tell that an app was written in React Native due to performance issues on this device.
November 2, 2024 at 12:30 PM
github.com/Open-Systems... seems to be it, not to be confused with rsharp.net which also seems interesting
GitHub - Open-Systems-Pharmacology/rSharp: R package for communication with .NET Core
R package for communication with .NET Core. Contribute to Open-Systems-Pharmacology/rSharp development by creating an account on GitHub.
github.com
November 1, 2024 at 12:03 PM
With .NET 8 they've sort of blurred the lines between wasm blazor and server side blazor as the main template is a sort of hybrid between all the hosting models. If you want to publish as a static page you'll most likely want to use the `blazorwasm` template instead.
October 29, 2024 at 8:06 AM
You are using a WebAssembly project and not one of the server projects right?
October 29, 2024 at 1:11 AM
I personally use cloudflare pages as its even easier and has a bunch of nice features developers.cloudflare.com/pages/framew...
Blazor | Cloudflare Pages docs
Blazor ↗ is an SPA framework that can use C# code, rather than JavaScript in the browser. In this guide, you will build a site using Blazor, and deploy it using Cloudflare Pages.
developers.cloudflare.com
October 29, 2024 at 1:06 AM
Should just be a case of uploading the contents of the wwwroot folder you get as a result of publishing but ideally you want to set up github actions to deploy and build when you commit.

learn.microsoft.com/en-us/aspnet...
Host and deploy ASP.NET Core Blazor WebAssembly
Learn how to host and deploy Blazor WebAssembly using ASP.NET Core, Content Delivery Networks (CDN), file servers, and GitHub Pages.
learn.microsoft.com
October 29, 2024 at 1:04 AM
.NET works well on Linux, and has first class support from Microsoft (they use docker to host a lot of ASP.net things). So I'm curious to know what issues you are having, It'll likely be an easy fix
October 28, 2024 at 8:16 PM
Regions are bad practise IMO, They can hide important code. Much prefer separating thing by files if possible.
October 28, 2024 at 11:40 AM
Yeah with Blazor you can make full featured SPA's without having to touch JS for the most part. Works well with Tailwind as you then don't have to touch CSS either.
October 28, 2024 at 11:35 AM