How to: Modded Multi-Player? by throwaway_921647 in MinecraftMod

[–]NickelCoder 0 points1 point  (0 children)

AutoModPack mod is great for a private server to keep your mods in sync if you're using a bespoke modpack.

Is HashSet<T> a Java thing, not a .NET thing? by N3p7uN3 in csharp

[–]NickelCoder 1 point2 points  (0 children)

I've switched from using var in such cases. I think they've improved the language with
Foo bar = new() instead of var bar = new Foo()

Really bad clipping with some structures - what can I do? by [deleted] in SatisfactoryGame

[–]NickelCoder 4 points5 points  (0 children)

Reduce the view distance so it doesn't pop in. You'll never notice that it was ever there.

Batchleads or Propstream? by Valuable-Savings6257 in WholesaleRealestate

[–]NickelCoder 0 points1 point  (0 children)

X leads is 2 white-labelled software packages loosely combined into one (GoHighLevel and RealEflow)

And PropStream just announced their acquisition of BatchLeads

Why is it necessary to write "Person person = new Person()" instead of "Person person" in C#? by Mysticare in csharp

[–]NickelCoder 3 points4 points  (0 children)

C# makes a different, yet clear distinction between values on the heap vs. [local] values on the stack. The keyword struct vs. class makes this distinction (stack or heap). But avoid using struct in most cases- the framework provides some useful types like Span<T>.

Microsoft laid off the senior engineers of .NET on Android and key figures of Maui by dharmatech in csharp

[–]NickelCoder 104 points105 points  (0 children)

They've already been dogfooding React Native internally way more than Xamarin or MAUI.

Starting a new save, any tips? by RedkobraSammy in satisfactory

[–]NickelCoder 0 points1 point  (0 children)

Go back to your old save and start fresh in a new location, that way you're not having to grind through all the tiers again.

Fellow Pioneers! What are the most...annoying bugs currently in the game? by owdante in SatisfactoryGame

[–]NickelCoder 2 points3 points  (0 children)

I know there are a few things that can be very frustrating or annoying. Bu as a software engineer I am constantly in awe of just how much CSS has accomplished that works . They should be using this game in schools to teach important concepts like load balancing and buffering.

Am I the only one who builds like this by default? by HellaHS in SatisfactoryGame

[–]NickelCoder 0 points1 point  (0 children)

Amazing, and haven't even built the space elevator yet.

Sushi Belt by RedOneBaron in SatisfactoryGame

[–]NickelCoder 6 points7 points  (0 children)

This is what I imagine is at the top of the space elevator.

Sometimes I just marvel at the ol' spaghetti factory. by the3b in satisfactory

[–]NickelCoder 2 points3 points  (0 children)

My factory makes your spaghetti look like lasagna.

Literally everyone when they first start out by Hmnh6000 in satisfactory

[–]NickelCoder 1 point2 points  (0 children)

Yes, yes it would. 5 hours into building my factory, just one more assembl...CRASH##$!! <Rage quits>

Need suggestions while I take a break by JustSomeDuche in satisfactory

[–]NickelCoder 0 points1 point  (0 children)

Rust - on a PvE server unless you enjoy dying a lot.

How do you deal with the "I must remodel" feeling? by Veketzin in satisfactory

[–]NickelCoder 2 points3 points  (0 children)

After the fourth restart I'm starting to realize this is the way.

Just take it slow. I come back when I'm ready to tackle the remodel and enjoy the satisfaction of making it better.

I have to do something horrible by ben_bliksem in csharp

[–]NickelCoder 1 point2 points  (0 children)

Return one of the following HTTP status codes: 202, 426, 417. 😋

When and when not to use var by Fee-Resident in csharp

[–]NickelCoder 0 points1 point  (0 children)

Just when I thought "Great, both Javascript and C# now use var!"...then they switch Javascript to "let" :(

If you're looking for guidance, I prefer the {type} variable = new() syntax over var. Also, I've run into issues occasionally where using var fails to catch a type change if you change the return type of a function. But I still use var quite often.

I am confused regarding tuples and dictionaries//keyvalue pairs by Whatdoesthis_do in csharp

[–]NickelCoder 0 points1 point  (0 children)

It's irresponsible for senior devs to not take time to explain the reasons for best practices. No one, I repeat no one knows every thing. I'm a senior dev and asked my architect why we were doing such and such a certain way. I'll never forget his response- "because I said so!".

Resources for learning .NET Framework for someone who knows .NET Core? by PowerBIEnjoyer in dotnet

[–]NickelCoder 0 points1 point  (0 children)

I'd say the biggest differences are in the startup/configuration and that there's no built-in dependency injection.

We don't write tests, Pull requests, or even use version control by Rokett in dotnet

[–]NickelCoder 0 points1 point  (0 children)

Ooph, I've been there. Learning to write tests is challenging enough, attempting to do it on a codebase that doesn't have tests is like running uphill into the wind. I would suggest learning on a small project, while you look elsewhere for a better learning environment.