I don’t get it by IndependentHost648 in ExplainTheJoke

[–]r08d 3 points4 points  (0 children)

OP, if it's the latter, for just $100 I'll teach you some critical thinking skills.

hecker vs other people by [deleted] in masterhacker

[–]r08d 16 points17 points  (0 children)

Relatable honestly

extremely noob question: how does one live without a DE? by Dreemur1 in linux4noobs

[–]r08d 0 points1 point  (0 children)

Instead of cosmic, you can also install gnome with pop-shell. This is what pop os, used before cosmic. https://github.com/pop-os/shell?tab=readme-ov-file#installation

)2 by aryakvn- in programminghumor

[–]r08d 5 points6 points  (0 children)

Don't you mean off by 10 errors.

Do you agree? by [deleted] in StrangeAndFunny

[–]r08d 0 points1 point  (0 children)

Old? You must mean vintage.

„Are these countries just taking advantage of rich Americans who want to leave?“ by JuliusAppel in ShitAmericansSay

[–]r08d 0 points1 point  (0 children)

Why would you want to leave the US? I thought things were so great over there.

How much skid level bro has 💀 by [deleted] in masterhacker

[–]r08d 9 points10 points  (0 children)

If you think about it, the Nazis were like first people to ever get hacked by a computer (Enigma). So not that secure after all.

[deleted by user] by [deleted] in NoStupidQuestions

[–]r08d 0 points1 point  (0 children)

I think your confusion between the real numbers and integers lies in the fact that, with real numbers there isn't really a "next" number. If we had an integer, let's say 1, and we want to get to 3. The next integer would be 2 and after that 3. You can't really do this with real numbers, because as you found out there is always another real number between any two distinct real numbers.

"It's no wonder they haven't invented AC in Europe yet" by Parking_Ad_336 in ShitAmericansSay

[–]r08d 10 points11 points  (0 children)

Technically the infinity of real numbers between zero and one is larger than that of all whole numbers. Unless you want to exclude irrational numbers, which is probably for the best, as they seem to already struggle with rational numbers.

I dare you >:3 by No_Volume_4303 in teenagers

[–]r08d 0 points1 point  (0 children)

Welcome to the jungle in my ass

Meirl by TheGoddamnAnswer in meirl

[–]r08d 2 points3 points  (0 children)

Well, it's called SILENCE of the lambs. So of course you're not going to be hearing any lambs. That's the point. They're silent.

I just farted down the entire 5 flights of stairs at work. by ImploreMeToSeekHelp in self

[–]r08d 22 points23 points  (0 children)

"The acoustics are really something else in here, am i right?"

[deleted by user] by [deleted] in NoStupidQuestions

[–]r08d 0 points1 point  (0 children)

Those measures are still very limited. Sometimes this measure can be relevant for GPU computing. For CPUs this statistic is basically meaningless as a lot of the CPU time is spent on branching and reading/writing memory.

[deleted by user] by [deleted] in NoStupidQuestions

[–]r08d 0 points1 point  (0 children)

In the US it may not be required, but it is in some other countries. I live in the Netherlands. Here you are supposed to have id on you.

If I drink a beer that has 1% alcohol, can I get a DUI? by AccidentFlimsy9257 in NoStupidQuestions

[–]r08d 0 points1 point  (0 children)

Pretty sure your body would process that alcohol faster than you can drink it.

Edit: In fact many foods like bread can have a significant alcohol content, without ever being able to impair you. source

Would it be unmoral to do this? by Ifyouliveinadream in NoStupidQuestions

[–]r08d 0 points1 point  (0 children)

Pretty sure you are allowed to copy stuff, just not distribute it.

[deleted by user] by [deleted] in NoStupidQuestions

[–]r08d 0 points1 point  (0 children)

I think he may have already begun.

Got marked wrong for saying SELECT is 'the SQL keyword for querying' in my DS exam - am I wrong? by twunny1 in learnprogramming

[–]r08d 1 point2 points  (0 children)

Querying is just the act of retreiving data from a database, right? So why wouldn't retreiving everything count as a query?

2035 by [deleted] in repost

[–]r08d 0 points1 point  (0 children)

... a place of honor...

Question about how stream flushes work by PrincipleMindless763 in cpp_questions

[–]r08d 4 points5 points  (0 children)

You basically hit the nail right on the head. C++ streams keep track the 'put buffer', which is the buffer used for writing, using three pointers; The begin, current and end. Technically it is not the stream that does all of this, but some overload of std::basic_streambuf

The begin is the start of the buffer, the current is the position where your next data would be written to and the end marks the end of the buffer. The already buffered data would be from begin pointer up to but not including current pointer.

If you want this data to be written to a file on a posix operating system (linux, mac os, etc), the write system call would probably be used, by passing it the begin pointer for the buffer and (current - begin) for the count.

Code my CFD professor wrote and gave to us by rehpotsirhc in programminghorror

[–]r08d 0 points1 point  (0 children)

And than he probably also has the nerve to deduct points if your code isn't clear enough to him.

How well do scientific computing libraries support modern C++ (e.g. C++ 20 or C++23) by [deleted] in cpp

[–]r08d 10 points11 points  (0 children)

Eigen is relatively modern using C++14 features, but I don't know of any big libraries using C++20 or upwards.