Archive - Historical Articles

You are viewing records from 11/11/2025 15:42:30 to 01/20/2026 16:54:18. I'll be adding support for selecting a date range in future.

So I was trying to give my current personal AI project access to Gitea, and had to read the code to get it working.  If you want to start it up on docker and use http as the transport, then your docker-compose is:-

version: "3.8"

services:
gitea-mcp:
  image: gitea/gitea-mcp-server:latest
  container_name: gitea-mcp
  restart: no
  ports:
    - "8080:8080"
  environment:
    - MCP_MODE=http
    - GITEA_URL=https://yourgiteainstance
    - GITEA_TOKEN=yoursecrettoken
 
Permalink 

The latest version of .NET is now out and available to download along with Visual Studio 2026. The update to .NET 10 adds significant performance improvements including things like automatic use of AVX instructions where available, and a significant improvement in process startup time.  There's also some language additions that make things more succinct.

It's a little early to upgrade production things, but I've already updated this website - I had to use pre-release versions of the Postgres EF naming conventions Nuget package as it's not yet compatible with version 10 yet, it looks like they hardcoded a max version number into the .NET 9 version.  Hopefully I'm just a day early and they'll be out by the official release date.

The new version of Visual Studio 2026 looks really slick, it's quite a good incremental improvement with a lot of Copilot features, first party support for Podman and few good UI and debugging improvements - in particular showing the contents of parameter variables and if condition results at breakpoints without needing to manually dig into them.

I also see that Jetbrains are hoping to have an updated version of their IDE, Jetbrains Rider that's .NET 10 compatible out tomorrow too.

Permalink