I noticed that both Chrome and Firefox ignore slashes between words in a URL.
So, github.com/octocat/hello-world
seems to be equivalent to github.com//////octocat////hello-world
.
I am writing an application that parses a URL and retrieves a part of it, and thanks to this behavior, I am able to return the original URL without modifying the code, which in my case is rather convenient. I don't know if it would be a good idea to rely on this quirk though.