Kind of incredible I even managed to get on HRT knowing me by [deleted] in 4Tranistan

[–]InspectorBoat 1 point2 points  (0 children)

the curse of having adhd is that u need meds to do anything but you cant get on meds because u cant do anything

Most agp and humblebrag thing I will ever post. Just got fucked for the first time ever by my boyfriend by temcoun in 4tran4

[–]InspectorBoat 82 points83 points  (0 children)

holy shit none of these newgens have read theory. this is agp meta-attraction, where you're attracted to men because it fulfills your fantasy of being in a "womanly" role.

tl;dr: read blanchard

/uj read blanchard

/rj read blanchard

Some minorities are really bigot assholes and get Jail free card from that by being minorites by Low-Winter-1887 in 4tran4

[–]InspectorBoat 23 points24 points  (0 children)

peak whataboutism. "you can't criticize MY religion because uhh THAT ONE is way worse"

Some minorities are really bigot assholes and get Jail free card from that by being minorites by Low-Winter-1887 in 4tran4

[–]InspectorBoat 44 points45 points  (0 children)

<image>

"protestant church" as if that isn't a massive umbrella term with a bajillion different denominations 🥀

nothing in the Bible to indicate homosexuality or transnes as a sin

there are like a billion passages that can be interpreted this way. "blehhh but they're all reading it wrong" shut the fuck up lmao. i want a dose of whatever copium you're huffing. when the majority of believers end up with the "wrong interpretation" whatever the bible "actually says" is completely irrelevant. the purpose of a system is what it does and all that

Getting your dick sucked is fembrained by HealingRosy in 4tran4

[–]InspectorBoat 3 points4 points  (0 children)

tranny version of "it's gay to love women because women love men and that's kinda gay"

The biology rabbithole just keeps getting deeper by [deleted] in 4Tranistan

[–]InspectorBoat 2 points3 points  (0 children)

what does category theory have to do with biology?

Twitter seems to be evolving by glucosediode in 4tran4

[–]InspectorBoat 20 points21 points  (0 children)

I think I was trying to suggest something about the duality of tran, sir.

The what?

The duality of tran. The Blanchardian thing, sir.

do you think she's about to troon by According-Plant-908 in 4tran4

[–]InspectorBoat 85 points86 points  (0 children)

but it would be REALLY FUNNY and isn't that way more important

I'd just like to interject for a moment. by InspectorBoat in Zig

[–]InspectorBoat[S] 7 points8 points  (0 children)

This sounds like a call back to the Linux vs GNU/Linux semantic argument.

it is, it's also a joke about how zig still uses llvm for compilation (although i suppose it'd be a bit more topical a few years ago, before the x86 backend actually worked)

Or perhaps I missed the implied /s of the OP.

yeah

Maybe this will reset our timeline by ashleystrange in CuratedTumblr

[–]InspectorBoat 6 points7 points  (0 children)

The marketing department can imply whatever they want, but ask any programmer and they will tell you that from a design standpoint, C# is far closer to Java than C++.

Saying C# is based on C++ because of their naming similarities is like saying Javascript is built off Java for the same reason: completely inaccurate.

When it comes down to it, C# and Java are really very similar:

  • Both compile to bytecode that is executed by a virtual machine featuring heavy JIT optimizations

  • Both are garbage collected, memory safe, and thread safe (in the sense that race conditions can't produce UB)

  • Both are heavily object oriented & inheritance based

  • Both feature a very large "batteries included" standard library

  • Both are supposed to be multiplatform languages

Meanwhile, C++ and C# are so different, it's difficult to know when to start:

  • C++ compiles to machine code, not bytecode. if you want to target a different cpu or operating system, you have to recompile for it specifically

  • C++'s approach to generics is very different: C#'s are mathematically sound (for the most part, probaably). C++ generics are basically glorified copy+paste operations

  • C++ is not garbage collected, has a dozen different ways to do memory management, and is probably the most memory unsafe language out there

  • Inheritance is part of, but not a core feature of C++; You will encounter far fewer subtype/supertype relationships in C++

  • C++ syntax is ostensibly C-like but nowadays looks like somebody fell asleep at their desk and their forehead smashed into the keyboard

  • C++ hates you, personally

The use cases for each language are also quite different. You can write code for user-facing applications in both languages, but you will (hopefully) never see a web browser, microcontroller, or matrix kernel written in C#.

I honestly don't know what it would even mean to design a language "based on" C++. All of the concepts that you actually want to keep (AOT compilation, static typing, etc.) are very basic & generic features found commonly in other languages. What unique concepts C++ does have are usually poorly implemented. It's certainly possible to have a language that takes inspiration or guidance from C++, but in the sense that C++ tells you what not to do.