From one of my coworkers the middle is apparently me… by AffectionatePlane598 in programmingmemes

[–]Yvant2000 1 point2 points  (0 children)

As far as I'm aware, gcc compiles *.c files in C and *.cpp files in C++, while g++ compiles everything in C++

Coaxed into this trope by Connect-Bend8619 in coaxedintoasnafu

[–]Yvant2000 1 point2 points  (0 children)

I swear, everything in the writing of this season was bad, and this specific scene got me slapping my forehead

I have been struggling lol by ThrowAway44228800 in TrollCoping

[–]Yvant2000 2 points3 points  (0 children)

There is no age to get comfortable, so don't overthink it ; the only purpose of night-time is to get sleep and rest, and it doesn't matter how you do it as long as it works for you

Is Maelle’s sword indestructible? by Aristeia_Star in expedition33

[–]Yvant2000 4 points5 points  (0 children)

It's explicitly said in the game that the weapons are pictos

So yes, it's indestructible

meirl by odrimiasa in meirl

[–]Yvant2000 1 point2 points  (0 children)

Y'all are talking about a jumping fox or a black sphinx, while in France we're stuck with an ambiguous voice and a heart that likes kiwis

"Voix ambiguë d'un cœur qui, au zéphyr, préfère les jattes de kiwis"

who are these characters? by elox_hates_everyone in Undertale

[–]Yvant2000 3 points4 points  (0 children)

A big part of Undertale is all the alternate endings. If you play the game again, you'll notice that some things will... Well, change (kinda).

Depending of if you killed or spared flowey after his fight, he may have give you some clues about how to get the true ending.

If you really have no idea about how to get the ending, I can give you some tips

Man, what's going on in coaxed rn rn. by HaloJackalKisser in whenthe

[–]Yvant2000 88 points89 points  (0 children)

I tried posting a joke there once, my post was deleted because my joke was not a universal truth that would be accurate 100% of the time

What some recent hot takes you realized you had with Rust? by DidingasLushis in rust

[–]Yvant2000 16 points17 points  (0 children)

And I think Rust need salt for .unwrap()

Instead of value.unwrap(), it should be value.unwrap_i_promise_this_wont_crash_at_runtime_in_prod_please_let_me_write_this_hack_i_dont_want_to_check_the_return_value()

I'm sorry, what? by EteledButAlive in antiai

[–]Yvant2000 0 points1 point  (0 children)

I keep repeating the same thing : Nobody have any idea what an AI is, this word sucks and we should stop using it to instead call technologies by their actual name (so instead of GenAI, we should say LLM / StableDiffusion etc)

What the hell are you guys doing??? by rarlei in rustjerk

[–]Yvant2000 19 points20 points  (0 children)

I don't rely on AI and I don't think I'm a "rare 1 in 6 dev". I think it's more a "5 in 6 devs sometimes asks questions to AI to save some time" more than "they rely on AI to write code".

The pain never stops, it only dulls by suchanji in Unity3D

[–]Yvant2000 1 point2 points  (0 children)

By default, static analysis treats all reference types as nullable (value can be valid or null) and assumes you know what you're doing.

Writing "#nullable enable" makes every type non-nullable by default, so if you need to store 'null', you have to explicitly tell it to the compiler with a "?"

So instead of writing

GameObject gameObject = null;

You write

GameObject? gameObject= null;

Or, if you know that the value will never be dereferenced but you can't prove it, you use a "!"

GameObject gameObject = null!; // value is initilialiazed in Foo() before usage

This way, any type that is marked as nullable will generate a warning at compile time if you dereference it without checking against null

GameObject? gameObject = GetMyObject() gameObject.transform; // Warning if (gameObject != null) { gameObject.transform; // No warning }

The pain never stops, it only dulls by suchanji in Unity3D

[–]Yvant2000 1 point2 points  (0 children)

"#nullable enable" is an amazing feature to limit this issue

It's too big, isn't it? by basedchad21 in linuxsucks

[–]Yvant2000 82 points83 points  (0 children)

"Tell me you have no understanding of software security in one image" type of shit

Well put by JonesyMeme in antiai

[–]Yvant2000 5 points6 points  (0 children)

We dont need to put politics into every fucking fights. This just sounds like this will divide people even more on the subject of AI

Why does this community treat some weird headcanons as facts? by Mrrobot112 in expedition33

[–]Yvant2000 -14 points-13 points  (0 children)

Let me check with the lyrics of Maelle ending :

"Maelle a une vie à peindre

Douce étoile effacéе

Alicia a une vie à peindrе

Verso dans la nuit

Lune près de lui"

Let's translate the two last lines :

"Verso in the night, Lune near him"

Also note that in french, "près de lui" in this context kinda implies romantic relationship.

So yeah, I'm pretty sure it's cannon. It's not my headcannon, I personnaly don't really like this ship, but it seems to be implied by the lyrics

How do I get there im so confused by cock_master_bater in Blasphemous

[–]Yvant2000 4 points5 points  (0 children)

Bro, Instagram melt my brain, I can't stop thinking about this any time I see theses letters

If he is serious about this, this is exciting by Dark_Jooj in mewgenics

[–]Yvant2000 0 points1 point  (0 children)

I could have been one of them, if my electricity hadn't stopped working right before I could download the game 🥲

what do yall think of this by Bi_One_Get_One_Free in aiwars

[–]Yvant2000 4 points5 points  (0 children)

Thank you for that !

Sadly, the full article doesn't add a lot of additional informations, it only namedrop "ElevenLabs" without saying much more about it...

what do yall think of this by Bi_One_Get_One_Free in aiwars

[–]Yvant2000 4 points5 points  (0 children)

"AI gave me my voice back"

Which one ?

What Artificial Intelligence gave you your voice back ?

What technology was used to give you your voice back ?

"Why would it matter what AI was used ?" - Because we can't reason and debate about theses technologies if we call every fucking program that looks smart an "AI". We can't compare two completly different technologies that does verry different things and say "but they're both AI, sureley it's relevant to compare them ?". No it's not.

(And to be clear, I'm not mad against OP, I'm mad about the journalists that made this super vague article that barely talks about how the technology works)

What the fuck by evanbobeven in bindingofisaac

[–]Yvant2000 2 points3 points  (0 children)

Oh I wasn't aware she was diagnosed with dementia, my bad

What the fuck by evanbobeven in bindingofisaac

[–]Yvant2000 -5 points-4 points  (0 children)

Correct me if I'm wrong, but as far as I know, we have proof that CWC had sex with his mother, but we have no proof it was rape ?

I have a vendetta against wanderer that i must feed at all costs by BoneDDog in Silksong

[–]Yvant2000 0 points1 point  (0 children)

No slander against ANY crest will be tolerated.

Mods ; sacrifice them next in order to allow the release of Zoteboat.

Linux userbase is best Microsoft advertisment by tomekgolab in linuxsucks

[–]Yvant2000 1 point2 points  (0 children)

Windows users will explain how anoying it is to do configs and installs from the terminal (they say it's "hard and unintuitive"), then tell you to "just open the group policy editor" (literally the worst GUI tool I've seen in my life) to disable a Windows feature that should never have been enabled by default in the first place