deleted by creator
- 1 Post
- 4 Comments
Joined 2 years ago
Cake day: July 2nd, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
There is also Decimal floating-point arithmetic which has a larger range and better memory safety. Java, C#, Python, Ruby, etc. have built in support for it via Decimal.
Yes, it’s cut down for the meme.
In reality, it would probably look more like this:
public class Singleton { private static readonly Lazy<Singleton> lazy = new Lazy<Singleton>(() => new Singleton()); private Singleton(){} public static Singleton Instance { get { return lazy.Value; } } }or this:
public class Singleton { private static readonly Singleton instance = new Singleton(); private Singleton(){} public static Singleton Instance => instance; }
deleted by creator
KoalaUnknown@lemmy.worldto
Hardware@lemmy.world•NVIDIA reportedly drops “Powering Advanced AI” brandingEnglish
2·2 months agodeleted by creator

OpenWRT