HackerTrans
TopNewTrendsCommentsPastAskShowJobs

lowq

no profile record

comments

lowq
·há 6 meses·discuss
I sure don't miss the footguns and raw boilerplate that is having a copy constructor, move constructor, copy assignment operator, move assignment operator, and destructor, per class.

Yes, you should avoid the manual memory management that necessitates writing them. But work with a team of developers fresh out of school and next thing you know your codebase will be brimming with this kind of busywork.
lowq
·há 8 meses·discuss
The internet is an amazing place.
lowq
·ano passado·discuss
"Whoever creates this stuff has no idea what pain is whatsoever."

I think it's clear that he is specifically responding to the the overall soullessness of the technique - to animate without a human understanding of what is being animated. But as others have pointed out this is well before modern AI image gen and I have been corrected in that aspect.
lowq
·ano passado·discuss
"Well, we would like to build a machine that can draw pictures like humans do"

"Would you?"

"Yes"

Awkward silence

From this I don't think it's difficult to extrapolate his feelings about modern AI image gen. But you are correct in that this is not a direct assessment. Appreciate the correction, thanks.
lowq
·ano passado·discuss
Guilty as charged. I don't think the leap was far but there was certainly a logical leap. Thanks for pointing that out.
lowq
·ano passado·discuss
"An insult to life itself" [1]

[1] https://www.indiewire.com/features/general/hayao-miyazaki-ar...
lowq
·há 2 anos·discuss
Not to mention, 99^6 = 941,480,149,401 ≠ 99,000,000 (which TFA also quotes). But who's to say notation didn't degrade along with the rest of society? :^)
lowq
·há 2 anos·discuss
I hear you man. The fact that a `byte` in ROS's bootleg protobuf is actually signed, and `string` is ASCII-only means that if you want to send a file or binary blob you have to use a `uint8[]`, which of course C++ will turn into a `std::vector<uint8_t>`. Good luck turning that into a proper `std::string` without an extra copy. And don't get me started on the comically scattered documentation for any basic use case that only ChatGPT can seem to make sense of. Better yet, the complete insanity that is node parameters - ever heard of reading from a file? Can't believe anyone takes this seriously.

ZeroMQ, protobuf, and a little thought would go a long way at our org.

/rant