• 0 Posts
  • 18 Comments
Joined 5 months ago
cake
Cake day: October 29th, 2024

help-circle
  • Notice how pro-nuclear people always point towards a bunch of fictional technology as the solution? Oh, we just need fusion, or breeder reactors, or a bunch of other shit that doesn’t exist. No, bro, we just need to build renewables and proper energy grids. It’s really not that complicated. If it’s not sunny where you live, then you just get electricity from where it is sunny. It’s really really simple

    Nuclear energy is a solution looking for a problem. Total tech bro bullshit. Like crypto.





  • There is a huge lobby of pro-nuclear think tanks who try to astroturf pro-nuclear shit onto social media. We, scientifically literate, rational people, need to counteract these harmful narratives with some facts.

    FACT: Renewable sources of energy are as cheap or cheaper per kwh than nuclear.

    FACT: Renewables are faster to provision than nuclear.

    FACT: Renewables are as clean, or cleaner, than nuclear.

    FACT: Renewables are much more flexible and responsive to energy fluctuations than nuclear.

    FACT: Renewables will only get cheaper. Nuclear will only get more expensive, because uranium mining will get harder and harder as we deplete easily accessible sources.






  • Just for context, I’m an experienced software engineer with years of experience with both C++ and C#, as well as several others, including Rust. You can do shallow and deep copies in C# as well, it’s done extremely infrequently because it’s usually a bit of a code smell and it has some downsides - it’s inefficient both for performance and for memory.

    In C# the assignment operator will copy the value if it’s a value type (structs and primitives) and copy the reference if it’s a reference type (classes). It does that because it’s a garbage collected language and it needs to track how memory is referenced and so on.

    The whole debate about what languages are better is honestly a bit silly, IMO. C, C++, Python, C#, Javascript, Rust, they all serve their purpose, they have their strengths and weaknesses.


  • Sure you can, it’s the same in C# as it would be in C++ if you did a=b, where a and b are both pointers.

    You don’t want to copy the full data of a class around every time you use it, that would have extremely poor performance. If you do want that behaviour, use structs instead of classes. If you need to clone a class for whatever reason, you can do that too, but it’s not really something that you should need to do all that often.

    I don’t think you should really jump in and call something crappy if you just don’t really know how to use it, personally!





  • If your main reason for paying premium is for ad blocking, I’d suggest just cancelling it now and using ad blockers. If you want to support creators, I’d say that it’s better to cancel and subscribe to a few patreons - I’d pick some of the smaller creators you like, to spread some of that support around a bit.

    If you use iOS devices for watching YouTube, look into side-loading uYou+, it’s basically an edited YouTube app that removes most of the ads. You can stream from your phone to the apple TV, too, also without ads.

    Not sure what the android equivalent is, but someone else will know - hopefully they will share in the comments also.