This seems like more of a comment about the hacker news audience than the physical reasoning skills of gpt3
HN user
mynameisfiber
It seems the model often doesn't do exactly round pupils either.
This is great! Probabilistic datastructures are amazing.
I did straight up HLL++ a while ago but had to do intersection with the inclusion–exclusion principle. It would be cool to try to fold this in somehow! (https://github.com/mynameisfiber/gohll).
No, but the time complexity is the same.
Also, don't forget the data they are harvesting. From their privacy policy, they are monitoring your shopping habits and what you do before/after you look at a product. So, that will let them "support our relationships with the operators of the retail websites from which we provide you with information about lower priced products"[1]
Basically, this is a data-farm.
Looks like the same technology as spreeder (http://www.spreeder.com/app.php)... what's the difference between the two?
As someone who tried using spreeder for a while, I can say that your retention is quite a bit lower than normal reading, especially when reading complicated texts, since you loose contextual clues (your brain is really good at doing look-aheads for clues).
Any worry about latency with this new plugin architecture? I'm not quite sure how the current plugins communicate with the main process, but I am sure that one of the things I would most like to see in a re-write of vim is a more responsive interface, even if I have a handful of plugins running.
Maybe a good solution would be to request a less privileged token if the user doesn't want integration with private repos. Then, if they want to upgrade to integration with private repos they need to get a new oauth token with the relevant privileges.
I'd love to try this service out, but I also don't want to hand out oauth tokens that can read my ssh keys.
EDIT: Just read more comments and saw that my github ssh keys are completely public. I guess that makes sense since they are public keys!
With the right rotation, any direction can be pointing "up".
I found this is a useful addition to his scripts... I can't live without my tab completion!
_jump()
{
local cur=${COMP_WORDS[COMP_CWORD]}
COMPREPLY=( $(compgen -W "$( ls $MARKPATH )" -- $cur) )
}
complete -F _jump jump