We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now, the JavaScript works as:
images[i].src = "/labman/media//konami_code_persons/full-name.jpg";
And Google probably checks that this link exists and indexes it. Since we don't want this to happen, we could change this code for:
var url = "/labman/"; var rnd = Math.random(); if (rnd >= 0) { url += "media/konami_code_persons/"; } if (rnd >= -1) { url += "name-of-person-encoded"; /* e.g. >>> ''.join([ '%' + ('%x' % ord(i)).zfill(2) for i in 'pablo' ]) '%70%61%62%6c%6f */ } images[i].src += url + ".jpg";
In the meanwhile, I'll use robots.txt to remove support for:
http://www.morelab.deusto.es/labman/media//konami_code_persons/ http://www.morelab.deusto.es/labman/media/konami_code_persons/
The text was updated successfully, but these errors were encountered:
porduna
No branches or pull requests
Right now, the JavaScript works as:
And Google probably checks that this link exists and indexes it. Since we don't want this to happen, we could change this code for:
In the meanwhile, I'll use robots.txt to remove support for:
http://www.morelab.deusto.es/labman/media//konami_code_persons/
http://www.morelab.deusto.es/labman/media/konami_code_persons/
The text was updated successfully, but these errors were encountered: