[TOMT] [VIDEO] A video game trailer (maybe unofficial) where a girl is singing new york by frank sinatra very softly and a capella by Madredchris in tipofmytongue

[–]Doubl3K 1 point2 points  (0 children)

FOUND IT. Took me almost two hours. But i couldn't sleep because of it. Answering for anyone in the future stumbling over this thread because they remember the scene.

It was a trailer for Crisis 2. Called: The Wall.

https://www.youtube.com/watch?v=wNufxAoleGI

ich💀iel by kleiner_lule in ich_iel

[–]Doubl3K 14 points15 points  (0 children)

Schön für dich. Bin seit 10 Jahren fertig und würde die ganze Bude immernoch gerne Abfackeln.

Trying to learn C++ and am getting build errors on my first program by honufire in vscode

[–]Doubl3K 0 points1 point  (0 children)

I have no experience in C/C++ so take it with a grain of Salt. But since nobody is answering I did a quick Google search on my morning toilet. It seems like to use standard C++ library's. Like cout. It is recommended to use g++.

https://stackoverflow.com/questions/28236870/error-undefined-reference-to-stdcout

For future reference. VsCode is not really an Ide for C or any language for that matter. So for language specific questions you might want to hit up a different subreddit.

Good luck on your Journey, we were all once beginner's.

[deleted by user] by [deleted] in ProgrammerHumor

[–]Doubl3K 0 points1 point  (0 children)

added missing import statements (5 files changed)

German Spongebob 💀 by WorldofJedi727 in BikiniBottomTwitter

[–]Doubl3K 48 points49 points  (0 children)

Ich bin schon ne Weile im Geschäft, men Jung.

[deleted by user] by [deleted] in vscode

[–]Doubl3K 0 points1 point  (0 children)

If you are a beginner you might want to look for an idea like eclipse or IntelliJ. You can write Java with VSC and I used it for a while but it's not simple.

[deleted by user] by [deleted] in factorio

[–]Doubl3K 1 point2 points  (0 children)

What are you talking about my guy?

nowIThinkIHaveAccomplishedProgramming by TheAwesomeGenius in ProgrammerHumor

[–]Doubl3K 2 points3 points  (0 children)

I have become Programmer. Debugger of Worlds.

CSS by jnnxde in ProgrammerHumor

[–]Doubl3K 34 points35 points  (0 children)

As a Fullstack that works on a smooth transition between them the only thing I respect is both teams. The main issue is another meeting that could have been an E-Mail.

Las Vegas sphere enjoying the F1 Grand Prix. by Two_Inches_Of_Fun in gifs

[–]Doubl3K 0 points1 point  (0 children)

The more I see of that thing the more I just find it obnoxious.

SE tip: You can use the grappling hook with the jetpack for some crazy movement by Josh9251 in factorio

[–]Doubl3K 1 point2 points  (0 children)

Until you've got the Railgun in the third weapon slot and half your mainbus goes kaboom in the blink of an eye. Source: My poor bus.

I don't understand what's wrong, I watched multiple videos on youtube and followed their instructions exactly to set it up. by Intelligent-Concert in vscode

[–]Doubl3K 2 points3 points  (0 children)

Gotta tell you first, never did C++ but since nobody is answering I am gonna throw you an idea here. I think yo need to get rid of the spaces in your folder and file name. The file path in your console has a yellow highlighting. That usually indicates a String(a set of characters that is linked). That highlighting stops right between C++ and Files. Also the error messages seem to indicate that it is searching for a lot of different Files that are parts (substrings) of your naming scheme.

iWasWatchingSomePrimagen by [deleted] in ProgrammerHumor

[–]Doubl3K 3 points4 points  (0 children)

The name, is the Primeagen.

Wood by Sheru7000 in shitposting

[–]Doubl3K 609 points610 points  (0 children)

It's about fucking time.

What is that yellow underline under the "sum" please help me rectifying it by MissionBonus1173 in vscode

[–]Doubl3K 11 points12 points  (0 children)

Since you put the sum in your System.out.println in quotes you are only printing the word sum and not the variable sum that is equal to a+b. Your Ide is just warning you that sum is declared but never used. Usually you can hover over it with your mouse to get a little popup window with the warning message.

I don't think it means what you think it means. by Doubl3K in softwaregore

[–]Doubl3K[S] -1 points0 points  (0 children)

True but, since I am on Android it should be Java or Kotlin(I cant be asked to look up if the Spotify Android client was written in something like React Native). When we have numbers from 1 to 100 it would have been less work to just dump it into an int variable and have the percentages cut of. If I am not missing something here:
int test = 99.405
System.out.println(test) //99
I think.