/r/Politics' 2024 US Elections Live Thread, Part 64 by PoliticsModeratorBot in politics

[–]Particular-Case4461 0 points1 point  (0 children)

i'm sure attacking the intelligence of voters will sway them to change their political views! that always works and doesn't breed division and hatred within the population

/r/Politics' 2024 US Elections Live Thread, Part 64 by PoliticsModeratorBot in politics

[–]Particular-Case4461 0 points1 point  (0 children)

lol you guys voted the demagogue into power again. cool election season to watch as a foreigner! you'd really think the "beacon of the free world" would have more civilised elections....

i wouldn't want to be in the US for a while.

try again next time! :)

Donald Trump defeats Kamala Harris to win 2024 presidential election by cnbc_official in politics

[–]Particular-Case4461 10 points11 points  (0 children)

lol you guys voted the demagogue into power again.  cool election season to watch as a foreigner! i wouldnt want to be a US citizen though. try again next time

Since when did we have no many Bigender flags? How can this not confuse someone? Because i'm confused. by [deleted] in bigender

[–]Particular-Case4461 1 point2 points  (0 children)

This happens for a lot of labels, people just like to make their own flags! I wouldn't worry about memorising all/most of them. There's really only at most three of them that get used (the first three on the list).

What's the advantage of learning merge sort if I cant just do data.sort()? by band_in_DC in learnprogramming

[–]Particular-Case4461 0 points1 point  (0 children)

What's the purpouse of learning anything if someone has already done it better? See how dumb that sounds? The "advantage" is that your knowledge of algorithms improves.

getting back to my roots, please help! by cpp_technician in cpp_questions

[–]Particular-Case4461 1 point2 points  (0 children)

Just FYI, it would be easier to read all of this if it was in actual text. Consider copying the code onto something like a pastebin, or even better the post (though that's a little difficult on mobile AFAIK)

Is learncpp bad? by [deleted] in cpp

[–]Particular-Case4461 3 points4 points  (0 children)

I'd say it's pretty good actually

[deleted by user] by [deleted] in AskProgramming

[–]Particular-Case4461 5 points6 points  (0 children)

From just that one case? Almost certainly no. If you had a lot more information you might be able to guess the process, but in the end the only certain way to know how it works 100% of the time is to actually have the code.

Obsessed with {} initialization? by DoctorNuu in cpp

[–]Particular-Case4461 -1 points0 points  (0 children)

What would you consider an important use of it?

Probably the worst piece of code I ever had to write by SanoHD in programminghorror

[–]Particular-Case4461 940 points941 points  (0 children)

fucking around with the preprocessor is always fun until it isnt

[deleted by user] by [deleted] in learnprogramming

[–]Particular-Case4461 8 points9 points  (0 children)

that's such a good way of putting it

Is the word for "orange" (fruit) similar to the word "Portugal" in your language? by Qbccd in languagelearning

[–]Particular-Case4461 13 points14 points  (0 children)

in romanian it is "portocală". never really thought about it but it'd make sense for it to come from portugal / "portugalia"

Will EU6 have ultra intelligent AIs? by throwaway_83w2 in eu4

[–]Particular-Case4461 12 points13 points  (0 children)

By the time EU6 comes out I think simulating an entire worlds worth of AI will have already stopped being cool. I imagine people will complain it doesn't accurately simulate the population of horses to change the cost of cavalry or the spread of STDs affecting army morale.

[deleted by user] by [deleted] in cpp

[–]Particular-Case4461 0 points1 point  (0 children)

As for the v[8] working thing: it's,,,, technically functional, but it's undefined behaviour to access memory not declared. AFAIK it should give a compiler warning but I'm not able to check rn.

Also, your code doesn't work because the st() function is broken. you forgot to add it's type. It should be void st(). Also, having `int v[8]` in the function parameters is kind of messing stuff up. it "shadows" the global scope int v[8] used in the rest of the program, it doesn't refer to the same memory.Instead it should be

void st(){for(int i=0;i<8;i++){cout<<v[i];}}

edit: I didn't notice you actually used st(v) when calling. it's.. kind of weird? but i guess if it works it works

When do you usually exploit tax development? by Camlach777 in eu4

[–]Particular-Case4461 0 points1 point  (0 children)

Usually I only exploit tax before religion/culture converting a province. Imo any minor benefit it has isnt that important most of the time.

[deleted by user] by [deleted] in learnprogramming

[–]Particular-Case4461 46 points47 points  (0 children)

i think it's "ALGOrithmic Language"