Skip to content

Instantly share code, notes, and snippets.

@MichalBrylka
MichalBrylka / Consumer.cs
Last active September 25, 2023 17:52
Creating and using C# 9.0 records
using System;
using RecordsProducer;
var lizard1 = new Reptile(Habitat.Terrestrial) { Name = "Agama" };
var lizard2 = new Reptile(Habitat.Terrestrial) { Name = "Agama" };
//use <LangVersion>latest</LangVersion>
var lizard3 = lizard1 with { Name = "Komodo dragon", Habitat = Habitat.Terrestrial };
@MaxHalford
MaxHalford / ogd-in-sql.ipynb
Created March 7, 2023 12:32
Online gradient descent written in SQL
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.