Skip to content

Instantly share code, notes, and snippets.

@GGOemea
GGOemea / corner-shape-css-chrome-135.markdown
Created May 7, 2025 18:42
Corner-shape CSS (Chrome 135+)
@GGOemea
GGOemea / DgmlController.cs
Created March 25, 2025 21:31 — forked from redwards510/DgmlController.cs
Uses EF Core Power Tools by ErikEJ (see link in code) to creates a .DGML class diagram (and serves it up for saving) of most of the EntityFrameworkCore (EF Core 2) entities in the ASP.Net MVC project when you go to yourwebsite/dgml. This is useful because there is no Class Diagram support in .Net Core 2 yet and it is difficult to find any kind o…
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
namespace CHANGEME.Api.Controllers