Just to power users? I keep getting suggestions to finish viewing last 1-2 minutes of each episode - the end credits that I previously skipped using big "start next episode" button.
They are called adrenaline junkies for a reason. That makes me wonder - can we put thrill-seeker in "rehab"? And should we?
Some monitors just have bad backlight. I had old one where maximizing terminal(which is mostly black) window caused taskbar and window handle also to turn almost black.
Last time I tried hackerrank i wasn't impressed - the problem specification was lacking, input/output wasn't defined well enough. Quality varied wildly between problems.
> Imgur had DEFINITELY gotten WAY worse than even a year or so ago There is vicious cycle with all image hosting services and Imgur(and Photobucket) has reached the last step: 1. Notice all other services are filled…
It worked out for Facebook and PHP so maybe that is why they want to give it a try.
> Did you read the github issues? There were hundreds of people against it. Every time github issue goes viral it ends with hundreds of useless comments full of animated gifs. That is not an argument for anything.
Storing hashes in source repo would make it very hard to manage and I am not sure if processing raw names into hashes as part of build would be any help against such DMCA request.
> My job is not to balance an arbitrary math equation that x% of engineers are supposed to be women It really sound like Goodhart's law. It no longer matters that corporations wanted to remove bias from hiring process…
Makes me wonder when Firefox will be able to resume interrupted file downloads without addons.
Even more interesting will be the effect on sites that can't get "good" ads due to adult content or sketchy legality like file sharing sites.
What is GraphQL? GraphQL is all about data communication Somehow it reminds me of good old "The S stands for Simple": http://harmful.cat-v.org/software/xml/soap/simple
Buying ASICs is high risk and (probably) high reward - in event of crash you are left with worthless machines. GPUs will still have some value, even after all crypto currencies drop.
Now it is wrapped in "SmartCloud" instead. I am not sure if that is an improvement.
> perfectly clean sensors I saw thin layer of ice appear on parking sensors after few minutes of driving in snowy conditions, triggering "close object" warnings. And cars get dirty all the time, I wonder if cars will…
As a counter counter anecdote, scientists where estimating that perfecting automatic text translation will take another 10-15 years... in ~1960. I guess hoping that future technology will solve all out problems is…
Yeas, what about it? Oh right, it might stop working after Firefox 57: https://github.com/piroor/treestyletab/issues/1224 . There are people working on it but that isn't true for many other extensions that are no longer…
Yeah, worst example ever. They should make it harder to make inner anonymous classes, not easier. When such code is used inside JEE/CDI/Spring Beans it leads to some annoying leaks or issues with serialization.
Lucky for us (in this case) certificate pinning is considered to risky to actually deploy in production, it is to easy to make the page completely unacceptable with single mistake. Also it looks like Chrome actually…
Maybe it is even worse when it is just few - people won't know that website creator isn't responsible for all of its content. And sometimes is hard to know who is the culprit like in…
> know for sure I am not sure about anything on LI page - it so full of dark patterns that spamming random people with invites is always at most 2 clicks away. It might be similar with endorsements.
There is an even better way to test your tests - the mutation testing, for example http://pitest.org/. It also helps to find dead code, that doesn't have any impact on result any more.
Similar stuff is used for good for ages, for example in Valgrind or in `fakeroot` used to build packages in Debian.
PHP array is equivalent to LinkedHashMap and yes, it has 40 bytes overhead per entry in Java.
Java has also alternative approach: final a; if (predicate) { a = 3; } else { a = 5; } `final` makes it possible for variable to be assigned exactly once. Verbose but useful when "?:" is not a good fit.
Just to power users? I keep getting suggestions to finish viewing last 1-2 minutes of each episode - the end credits that I previously skipped using big "start next episode" button.
They are called adrenaline junkies for a reason. That makes me wonder - can we put thrill-seeker in "rehab"? And should we?
Some monitors just have bad backlight. I had old one where maximizing terminal(which is mostly black) window caused taskbar and window handle also to turn almost black.
Last time I tried hackerrank i wasn't impressed - the problem specification was lacking, input/output wasn't defined well enough. Quality varied wildly between problems.
> Imgur had DEFINITELY gotten WAY worse than even a year or so ago There is vicious cycle with all image hosting services and Imgur(and Photobucket) has reached the last step: 1. Notice all other services are filled…
It worked out for Facebook and PHP so maybe that is why they want to give it a try.
> Did you read the github issues? There were hundreds of people against it. Every time github issue goes viral it ends with hundreds of useless comments full of animated gifs. That is not an argument for anything.
Storing hashes in source repo would make it very hard to manage and I am not sure if processing raw names into hashes as part of build would be any help against such DMCA request.
> My job is not to balance an arbitrary math equation that x% of engineers are supposed to be women It really sound like Goodhart's law. It no longer matters that corporations wanted to remove bias from hiring process…
Makes me wonder when Firefox will be able to resume interrupted file downloads without addons.
Even more interesting will be the effect on sites that can't get "good" ads due to adult content or sketchy legality like file sharing sites.
What is GraphQL? GraphQL is all about data communication Somehow it reminds me of good old "The S stands for Simple": http://harmful.cat-v.org/software/xml/soap/simple
Buying ASICs is high risk and (probably) high reward - in event of crash you are left with worthless machines. GPUs will still have some value, even after all crypto currencies drop.
Now it is wrapped in "SmartCloud" instead. I am not sure if that is an improvement.
> perfectly clean sensors I saw thin layer of ice appear on parking sensors after few minutes of driving in snowy conditions, triggering "close object" warnings. And cars get dirty all the time, I wonder if cars will…
As a counter counter anecdote, scientists where estimating that perfecting automatic text translation will take another 10-15 years... in ~1960. I guess hoping that future technology will solve all out problems is…
Yeas, what about it? Oh right, it might stop working after Firefox 57: https://github.com/piroor/treestyletab/issues/1224 . There are people working on it but that isn't true for many other extensions that are no longer…
Yeah, worst example ever. They should make it harder to make inner anonymous classes, not easier. When such code is used inside JEE/CDI/Spring Beans it leads to some annoying leaks or issues with serialization.
Lucky for us (in this case) certificate pinning is considered to risky to actually deploy in production, it is to easy to make the page completely unacceptable with single mistake. Also it looks like Chrome actually…
Maybe it is even worse when it is just few - people won't know that website creator isn't responsible for all of its content. And sometimes is hard to know who is the culprit like in…
> know for sure I am not sure about anything on LI page - it so full of dark patterns that spamming random people with invites is always at most 2 clicks away. It might be similar with endorsements.
There is an even better way to test your tests - the mutation testing, for example http://pitest.org/. It also helps to find dead code, that doesn't have any impact on result any more.
Similar stuff is used for good for ages, for example in Valgrind or in `fakeroot` used to build packages in Debian.
PHP array is equivalent to LinkedHashMap and yes, it has 40 bytes overhead per entry in Java.
Java has also alternative approach: final a; if (predicate) { a = 3; } else { a = 5; } `final` makes it possible for variable to be assigned exactly once. Verbose but useful when "?:" is not a good fit.