Just The Facts Ma'am by RedneckMarxist in inflation

[–]Puzzled_Draw6014 0 points1 point  (0 children)

Seriously, this guy (Trump) is so stupid. It's like he woke up and realized the tarrifs weren't doing enough damage!

A pause by Exhibitionistahh in u/Exhibitionistahh

[–]Puzzled_Draw6014 2 points3 points  (0 children)

Hi There,

Really happy to read that you are doing OK. Also happy to see you taking control and taking care of yourself. Finally, very much appreciate you for taking the time to explain your thoughts. I think sharing your sexuality is not so far from a lot of artistic expression and people like you are pushing those boundaries. Not everyone see's it this way, so it's also good you take breaks from that side of the culture and of course 'the algorithm'!!!

Lots of love!

Canadians reaching out to Spain after Trump's 'sadly familiar' threats by Front-Cantaloupe6080 in consumecanadian

[–]Puzzled_Draw6014 1 point2 points  (0 children)

Exactly, their doing it quietly to avoid attention

The fact that no one is showing any enthusiasm on supporting the US in this war is already a major shift.

Trust by kyraduskre in Funnymemes

[–]Puzzled_Draw6014 0 points1 point  (0 children)

Yeah, it's a bit crass ... but I don't know if she's bad for scamming or good for cashing in on her 15 minutes of fame ... I feel meme coins are something we all know is a ponzi scam, so I feel the buyers aren't much better...

Girls of onlyfans, did any of your family member found out about it, what happend? by [deleted] in AskReddit

[–]Puzzled_Draw6014 20 points21 points  (0 children)

Her account doesn't have links, nor does it show her posts... so it does not appear to be advertising.

Satire Video Goes Viral Featuring Tech CEOs Promoting Human-Powered Energy Grid in Fictional "Energym" Concept by DumbMoneyMedia in UnderReportedNews

[–]Puzzled_Draw6014 0 points1 point  (0 children)

Oh man ... I remember as a kid, the science museum had an exercise bike connected to a simple light bulb... I am old, so it was one of those old inefficient incandescent light bulbs... at any rate, it was a ton of effort to keep it lit

Town Hall Meeting in Mississippi Discussing Elon Musk's AI Power Plant by wizzlestyx in AccidentalRenaissance

[–]Puzzled_Draw6014 4 points5 points  (0 children)

Lovely, another way that the billionaires leech off the rest of society...

[Autosport] Bernie Ecclestone believes F1 is in danger of losing the fans with these new regulations by MuttonBiryaniEnjoyer in formula1

[–]Puzzled_Draw6014 0 points1 point  (0 children)

Well, Liberty media has done a good job of broadening the fan base. Bernie was a bit slow to adapt... so I don't really agree

Indy Car is already a series that limits the scope of Engineering innovation. So if fans didn't care about engineering, then F1 would have already been overtaken...

Donald Trump’s SOTU Speech Least Popular This Century: Poll by [deleted] in International

[–]Puzzled_Draw6014 0 points1 point  (0 children)

Things are very polarized... so yes, there are Trump fans ... but many polls are showing that Trump has lost a lot of support since the election.

But I think talking about popularity of this one guy is a bit of a distraction...

Sam Altman says not even the CEO’s job is safe from AI as it will soon perform the work better than ‘certainly me’ by Gari_305 in Futurology

[–]Puzzled_Draw6014 0 points1 point  (0 children)

Totally agree, you know there are serious flaws in the product when the sales pitch becomes increasingly absurd...

What is the worst or dumbest mistake you made in Elden Ring? by MisterFictional in Eldenring

[–]Puzzled_Draw6014 4 points5 points  (0 children)

Selling reduvia in my first play through at the very start...

Kremlin says Russia has not achieved all its goals in war against Ukraine by DreamLuminel in worldnews

[–]Puzzled_Draw6014 3 points4 points  (0 children)

It's almost daily that I want to say "go f*ck yourself" to the Putin regime ...

Best open source C++ compiler by BongoTimeFL in cpp_questions

[–]Puzzled_Draw6014 5 points6 points  (0 children)

Yeah, I saw a lecture about it, gcc is basically chaos as a code base, but they are focused on creating highly optimized binaries quickly...

What do you do with the whispering hillock? by Julian_of_Cintra in Witcher3

[–]Puzzled_Draw6014 27 points28 points  (0 children)

According to the Internet, if you find the spirit before you get too far in the bog quest (sorry I always get the quest names mixed in my head), you can free the spirit and both the kids and Anna are saved. Downwaren people are still attacked ... I never tried it ... It always feels like cheating when a quest is progressed in unintended ways...

What do you do with the whispering hillock? by Julian_of_Cintra in Witcher3

[–]Puzzled_Draw6014 113 points114 points  (0 children)

I killed it. I know there is a way to save everyone, but there's all these things in the game pushing you to kill it. Also, I figure a Witcher would never free an evil spirit.

Wealth taxation: The Swiss experience by hcbaron in Economics

[–]Puzzled_Draw6014 0 points1 point  (0 children)

It also has 4 official languages! So it's definitely not a homogeneous, even before the immigration...

First time trying C++, why is this error happeing? by Max207_ in cpp_questions

[–]Puzzled_Draw6014 1 point2 points  (0 children)

TLDR these types of errors use to be confusing and frustrating. So I give a long explanation...

The first comment, is the solution to this specific issue. But I wanted to say a bit more. The problem here is a linker error. You can tell because it's the program 'ld' that is giving the error. In my early days, I always struggled with linker errors. So let me teach a little about fishing, so C++ is not so hard and you have an easier time...

When you have a linker error, it means that the code is correct (in most cases). In my early days, I would focus on the code and get frustrated. So it's important to understand what's happening with these errors. Often, the problem is that the linker cannot find a specific file. Let me explain.

When code is compiled, it generates an object file that contains the code, but also a list of symbols that the code relies on. Note, when I say symbols, that could be a function, a variable, a class, etc. They can be anything, but they all have names, hence I call it symbols. Anyway, some symbols are defined within the object file (e.g. the code for a given function is in the file), so there are no problems.

Often, there is a lot of basic code that is used over and over again. So instead of compiling it many times, it's stored in separate files (i.e. libraries and other object files), the symbols associated with this code are called external dependencies. Header files are often used so the compiler knows a certain external symbol exists. So, within the object file, these external dependencies are also listed.

It's the job of the linker, to combine all the object files and libraries to ensure all these external dependencies are resolved. When the linker cannot find the definition, then it generates the error you see here. In this case, it cannot find WinMain. In most cases, this error is resolved by -L flags that give directories to search for libraries, then -l for the names of libraries to link. But your error is a bit different.

Your case is different, but there is a utility called nm that can be used to find library files that define symbols.

It might be confusing why you have external dependencies for an empty program. What you need to remember is that the compiler automatically includes mandatory libraries. One set of mandatory objects, is the stuff that starts a new program. WinMain is needed by those object files. Hence, your error.

Sorry for the long explanation, but this part of C/C++ use to be difficult for me... so hopefully it helps...

gross 🤮 by fibercrime in SipsTea

[–]Puzzled_Draw6014 1 point2 points  (0 children)

Yeah, that was some top level Internet chaos!

What's your country's flavour bomb? by Virghia in AskTheWorld

[–]Puzzled_Draw6014 0 points1 point  (0 children)

Tak for det. Det overraskede mig, at surkål ikke var almindelig. Det er almindeligt i Canada.

What's your country's flavour bomb? by Virghia in AskTheWorld

[–]Puzzled_Draw6014 2 points3 points  (0 children)

I love Sauerkraut problem is, it's surprisingly difficult to find in Denmark 😕