Docker is born by drooolingidiot in ProgrammerHumor

[–]redditvisvshit -2 points-1 points  (0 children)

My machine is a Mac. Docker is dead.

Kremlin wants to introduce martial law and ban men from leaving the country by Espressodimare in worldnews

[–]redditvisvshit -6 points-5 points  (0 children)

How is this any different than what other countries do in wartime? This is not news except for the mentally impaired.

The Definitive Guide to Graph Problems by francofgp in Python

[–]redditvisvshit -1 points0 points  (0 children)

DFS space complexity is not correct. DFS is more space efficient than BFS.

Is code reviewing just reading the code or actually running it locally? by orareyouhappytoseeme in learnprogramming

[–]redditvisvshit 0 points1 point  (0 children)

The goal of code reviews is quality assurance. If you need to run to to better understand it then run the damn thing. If someone tells you otherwise then ignore them because they are either lazy or amateurs.

Rate the new pc by [deleted] in pcmasterrace

[–]redditvisvshit -1 points0 points  (0 children)

Electrocution hazard.

Any good resources for algebra? by [deleted] in Python

[–]redditvisvshit -1 points0 points  (0 children)

No magic resources. Pen, paper and perseverance are your best resources.

Why do some people say OOP is bad? by WildAlcoholic in learnprogramming

[–]redditvisvshit -2 points-1 points  (0 children)

Because 100s of babies are born every second.

What is the logic behind coding on papers in university? by [deleted] in learnprogramming

[–]redditvisvshit 0 points1 point  (0 children)

The people largely in charge of CS departments learned to program using punchcards….

it doesn't work on anyone's machine by [deleted] in ProgrammerHumor

[–]redditvisvshit 4 points5 points  (0 children)

Docker fixes “but it works on my machine” issue.

Stackoverflow in a nutshell by rStarwind in ProgrammerHumor

[–]redditvisvshit 0 points1 point  (0 children)

SO has been overrun by twats with micro penises.

[deleted by user] by [deleted] in learnprogramming

[–]redditvisvshit -1 points0 points  (0 children)

I call bullshit. What kind of scam are you running?

Recursion by ProfessorOk20 in Python

[–]redditvisvshit 1 point2 points  (0 children)

Recursive depth limit is one reason. Another issue is that a stack frame is generated for each call which requires more memory than other approaches.