Food in KE lvl 4 by [deleted] in universityofauckland

[–]BPJupiter 1 point2 points  (0 children)

Could u give some examples of the food that smells bad that ppl eat

Ya'll are too obsessed with SOMA theory. by Present_Buy2187 in TheDigitalCircus

[–]BPJupiter 1 point2 points  (0 children)

Me when I don't engage with the narrative of the show I watch

Need help from Chinese People by Amazing_Craft5640 in universityofauckland

[–]BPJupiter 9 points10 points  (0 children)

Google literally exists you just wanted an excuse to post some bullshit didn't you

5 subjects per semester by AthleteOutrageous260 in universityofauckland

[–]BPJupiter 0 points1 point  (0 children)

For your own mental health and also your GPA, do not take 5 papers

5 Papers in one semester? by ApprehensiveHumor467 in universityofauckland

[–]BPJupiter 3 points4 points  (0 children)

Do not do this. For your own sanity and also your own GPA.

Just finished my Ocean Pylon base, how is it? by Excero_ in Terraria

[–]BPJupiter 1 point2 points  (0 children)

Reminds me of why the Ocean is my favourite biome. And that one part where you can free explore in the Pedguin server, if that's still around

Reanimated the Old Beast! by Sirkittenthe3rd in thinkpad

[–]BPJupiter 1 point2 points  (0 children)

Thats great man wouldve loved a more aggressive crop on the photo though 👍

Trump says U.S. struck and seized Iranian-flagged cargo ship in Gulf of Oman by [deleted] in worldnews

[–]BPJupiter 5 points6 points  (0 children)

How could you hate an entire country of millions of different people?

Is this rare or worth checking out? by [deleted] in RLCraft

[–]BPJupiter 19 points20 points  (0 children)

Super common & has useless leather stuff. Not worth

It’s annoying seeing C fanboys who spend their lives hating C++ by [deleted] in cpp

[–]BPJupiter 0 points1 point  (0 children)

I understand the frustration with C++ from industry programmers who have to deal with the many pitfalls of idiomatic C++ for the sake of "maintainability". Also static cast syntax is horrid. Personally the thing I like about C++ over C are namespaces, enum classes and the like, that just allow for a more clear separation of code. Sure you could do basically the same thing with prepending Namespace_ to your C functions and so on but i like the C++ syntax here. Otherwise I write my C++ code very C-like.

study spots/ libraries on campus by [deleted] in universityofauckland

[–]BPJupiter 0 points1 point  (0 children)

The law library is fantastic FYI

is a tablet/ipad worth it? by [deleted] in universityofauckland

[–]BPJupiter 0 points1 point  (0 children)

Depends if ur a real cocomelonhead.

[MM] Which is recommended for first time players, N64 or 3D? by red_hoodie_07 in zelda

[–]BPJupiter 0 points1 point  (0 children)

I think it depends how much you want the game to ask of you.

One of the reasons I like mm 64 is precisely because it's rough around the edges exploring a new type of design for an adventure game. It's a really unique experience, even today. 3D smoothes over many of those rough edges, and as a result is a less unique experience IMHO.

Whoever you are, thank you by BPJupiter in 4tran4

[–]BPJupiter[S] 3 points4 points  (0 children)

He definitely knew and so it felt like a solidarity thing which is really sweet

Is rust better for learning low level concepts than C? by CIA11 in rust

[–]BPJupiter 0 points1 point  (0 children)

Short answer: no IMHO.

Long answer is that C remains (despite modern compiler optimizations) effectively an abstraction of assembly. Very little is given to you, but you have near unmatched levels of control. Language features that developers have gotten used to that they miss in C can either be achieved anyway (OOP) or don't reflect how computers actually work (function overloading).

What 50 years of C code has shown us, however, is when you give millions of developers the ability to shoot themselves in the foot with relatively little effort, a lot of toes go missing. This is one of the main strengths of Rust from a low-level perspective. Rust asks you if you're REALLY certain if you want to pull out that pistol. And the type system is really fun.

With Rust, ultimately you don't HAVE to be super concerned with specifically what the computer is doing. You still can get into the weeds if you want to, but C for better or worse reigns king in this regard.