- 5 Posts
- 58 Comments
deleted by creator
£15,000 for a new car?
I wish
Last time I underwent surgery, I remember lying on the operating table when the anesthesiologist asked me if I felt anything. I replied “Not really, I feel normal”. That was the last thing I remember.
KoalaUnknown@lemmy.worldtoMicroblog Memes@lemmy.world•also don't use brave or vanilla FirefoxEnglish
9·5 months agoAnother good option for iOS is YTLite
deleted by creator
KoalaUnknown@lemmy.worldto
Ask Lemmy@lemmy.world•Is there a way to install Windows 11, somewhat bloatware/AI free? (It's for college.)
31·8 months agodeleted by creator
Well, there is zero interest if you pay it in full by the allocated date (usually 12-24 months); however, if you do not pay it in full by then (which they try to trick you into), not only do you get charged interest going forward, you also get charged interest for every month that was previously “zero interest”, which ends up being a lot, often more than the product(s) would’ve originally cost.
Don’t worry. All the stores now (at least in the US) have predatory deferred financing that promises zero-interest and then shows you low minimum payments to trick consumers who were never taught how credit works into thousands in interest.
deleted by creator
KoalaUnknown@lemmy.worldto
Ask Lemmy@lemmy.world•What's the weirdest hobby you've heard of?
81·11 months agoI think you should get off social media for a bit and goon instead.
KoalaUnknown@lemmy.worldto
Mildly Interesting@lemmy.world•How the "NATO phonetic alphabet" was created (23:27)
131·11 months agoRight, but you speak english. As the video explains, it was spelled “alfa” so people who can’t speak english don’t pronounce it with a p sound.
KoalaUnknown@lemmy.worldto
Programmer Humor@programming.dev•Floating point arithmetics
2·11 months agodeleted by creator
KoalaUnknown@lemmy.worldto
Programmer Humor@programming.dev•Floating point arithmetics
11·11 months agoThere 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






I feel it’s more like this: