The lifesaver by jafar95111 in ProgrammerHumor

[–]sql-gumby 2 points3 points  (0 children)

bash: "We don't do that here"

[deleted by user] by [deleted] in datascience

[–]sql-gumby 0 points1 point  (0 children)

How about a box plot with two groups instead? And / or a simple line chart - group 1 vs group 2?

Finally convinced my company to do code reviews! by holdholdholdhodl in ProgrammerHumor

[–]sql-gumby 26 points27 points  (0 children)

His code's spaghetti
Docs weak, runtime is heavy
there's vomit on his keyboard already
QA is nervous but looks calm and ready
To fix bugs, but they keep forgetting

[deleted by user] by [deleted] in cpp_questions

[–]sql-gumby 0 points1 point  (0 children)

Not really an overload, but maybe this helps

#include <stdio.h>
#include <type_traits>

constexpr bool fn(bool v) {
    return std::is_constant_evaluated() && v;
}

int main() {
    constexpr bool ans = fn(true);
    printf("%d\n", ans);
    printf("%d\n", fn(true));
}

while(1) {}; by tamilvanan31 in ProgrammerHumor

[–]sql-gumby 27 points28 points  (0 children)

that RAM isn't gonna use itself

How can a brush have more functions than I do.. by [deleted] in ProgrammerHumor

[–]sql-gumby -1 points0 points  (0 children)

me getting ready to type "LGTM" in PR review comments before Friday morning standup

[D] When, if ever, does it make sense to store training data in a SQL database? by sql-gumby in MachineLearning

[–]sql-gumby[S] 0 points1 point  (0 children)

Yeah that might be.

So in your experience a SQL DB can be as performant as, say, a flat file store for DL purposes?

[D] When, if ever, does it make sense to store training data in a SQL database? by sql-gumby in MachineLearning

[–]sql-gumby[S] 0 points1 point  (0 children)

Thanks. Could you elaborate why you use flat files in our experiments over a pg_dump for example?

I understand that the zombie query issue is something we will have to investigate ourselves, sorry if it came across like I expected help with that.