Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×
The Internet It's funny.  Laugh.

Tim Berners-Lee Is Sorry About the Slashes 620

Stony Stevenson writes "A light has been shone on one of the great mysteries of the internet. What is the point of the two forward slashes that sit directly in front of the 'www' in every internet website address? The answer, according to Tim Berners-Lee, who had an important role in the creation of the web, is that there isn't one. Berners-Lee revisited that design decision during a recent talk with Paul Mohr of the NY Times when Mohr asked if he would do any differently, given the chance. 'Look at all the paper and trees, he said, that could have been saved if people had not had to write or type out those slashes on paper over the years — not to mention the human labor and time spent typing those two keystrokes countless millions of times in browser address boxes.'"
This discussion has been archived. No new comments can be posted.

Tim Berners-Lee Is Sorry About the Slashes

Comments Filter:
  • by sopssa ( 1498795 ) * <sopssa@email.com> on Wednesday October 14, 2009 @09:09AM (#29743463) Journal

    From technical point of view, *not* having the // could create problems more easily. For example if you include port number in the URL and browser or program tries to look at what protocol it is based on value before first :

    http://tech.slashdot.org:80/story/09/10/14/1219215/Tim-Berners-Lee-Is-Sorry-About-the-Slashes
    http:tech.slashdot.org:80/story/09/10/14/1219215/Tim-Berners-Lee-Is-Sorry-About-the-Slashes
    Now if you dont write that http: in browser:
    tech.slashdot.org:80/story/09/10/14/1219215/Tim-Berners-Lee-Is-Sorry-About-the-Slashes

    Now the browser would think the protocol is tech.slashdot.org and tries to pass it to a responsible program instead of loading it. This means you would now need to actually type in the http: which none of us do now. Or dropping general URI support from browsers and IM windows and any other programs (you know all those irc:// spotify: and so on URI's). Or then typing in the :80 would be mandatory.

    • by redhog ( 15207 ) on Wednesday October 14, 2009 @09:15AM (#29743521) Homepage

      Or remove support for ports and use SRV records to find the port. Which would have saved us tons of work with named virtual hosts, and allowed us to run multiple SSL sites on the same IP...

      • Re: (Score:3, Interesting)

        by redhog ( 15207 )

        But, thinking of that.... many many pieces of software allows you to write URLs directly in a body of text, no tags needed, and finds the URLs and turns them into links, but searching for "://". So, what would you regexp for if all you had was a ":"? Normal text quite often does contain colons....

        • by mikael ( 484 ) on Wednesday October 14, 2009 @11:46AM (#29745629)

          There was a UNIX networking technology some time in the past (The Newcastle Connection [ncl.ac.uk]) which used the /../ symbols to specify a remote path host.

          HP did something similar but used a /net directory instead.

          It would seem simple to just discard the two dots and just have a // to specify the remote host.

        • by jc42 ( 318812 ) on Wednesday October 14, 2009 @03:00PM (#29748301) Homepage Journal

          So, what would you regexp for if all you had was a ":"? Normal text quite often does contain colons....

          Back in the early 1980s, before the folks at CERN gave us the first browser, there was another notation that was implemented by an assortment of networking software. It originated, as far as I can tell, with The Newcastle Connection (from the U of Newcastle-upon-Tyne" in England), one of the first fully-distributed unix file systems. What it did conceptually was to define a conceptual network directory one level above your root directory, named "/../". So to reference a file on machine X.Y.Z, you'd use a path like "/../X.Y.Z/...". The actual server on each machine typically wouldn't export its "/" directory, but rather would do what web servers do, and supply only a server-root directory (which could also be mounted by other machines by the unix mount command). So if you tried to access the file /../X.Y.Z/some/dir/foo.txt, you'd get the file that the remote machine had at /server-root/some/dir/foo.txt, so files outside the /server-root/ directory would be invisible to outsiders.

          This is, of course, merely another syntax for what the WWW calls "http://X.Y.Z/some/dir/foo.txt", but without the protocol field. The TPC implementation made the file readable or writable, depending on what the permission module allowed, via the usual open(), read(), write(), etc. library routines. This meant that all of the software on your machine was automatically able to use accessible files on other machines without any special coding. As with the Web, you just needed the machine name and the file's location relative to the server-root directory.

          The advantage of the Web's "http://" notation, of course, is that it allow the explicit use of different protocols. TNC's "/../" notation doesn't do that; the implementation gives direct access via the usual file-system routines, and hides the comm protocol inside the kernel's file-system code just as is done with local file I/O.

          Note that the "/../" notation isn't any more difficult to match than "http://", and it's a string that's equally unlikely to occur anywhere but in a TNC-style file reference. And note that there's no problem with adding a ":port" to the machine name with either notation.

          I've sometimes wondered why various browsers, especially the mozilla suite, haven't quietly implemented TNC notation and invited users to start using it. You don't need permission from any standards body to do this. It would only take a few lines of new code, wherever the software parses URLs. You'd have to add "/\.\./" as an alternative to "(\w*)://" at the start of the match, and make 'HTTP' the default protocol if omitted. While you're at it, add another * after the //, so omitting the second / will also work. But that's probably too user-friendly for any real web developer to bother implementing. ;-)

          (Actually, I've done this in a few projects that I've worked on. It doesn't break anything, and when people see that notation, they usually really like it and the new conceptual model of the Net that it puts into their mind. The Net becomes just a large, slow bus connecting millions of machines and their disks, joining them into one huge virtual computer. Replacing a big, messy communication protocol with a big, tree-structured file system gives a major reduction in complexity and points to a much easier way to do things.)

      • by Viol8 ( 599362 ) on Wednesday October 14, 2009 @09:34AM (#29743723) Homepage

        Don't be an ass. Using ports allows someone to set up an ah-hoc server for testing or whatever easily. The last thing they want to do is dick about having to update DNS's bastard child before they can access it from the browser.

        • Re: (Score:3, Insightful)

          by ajs ( 35943 )

          Don't be an ass. Using ports allows someone to set up an ah-hoc server for testing or whatever easily. The last thing they want to do is dick about having to update DNS's bastard child before they can access it from the browser.

          One: I don't think the GP was the one being "an ass."

          Two: I don't think the GP was suggesting that there be no way at all to force your browser to another port for testing purposes (at the very least, a command-line option to browsers could be provided). The point was that for general usage when talking to remote systems, there's no reason not to use DNS, and it would have solved one of the largest problems with IP proliferation: the need to lock SSL to a specific port, due to the fact that the URI used is

      • by andymadigan ( 792996 ) <amadigan@gmNETBSDail.com minus bsd> on Wednesday October 14, 2009 @09:49AM (#29743921)
        What if I just want to run an HTTP server on a non-standard port for development? Not everyone is running a DNS server, nor should DNS records need to be changed so often.

        How would it allow named virtual hosts? The only thing you have at the network layer is the IP address that the message was sent to, that's why HTTPS virtual hosts is difficult to implement.
      • by 3247 ( 161794 ) on Wednesday October 14, 2009 @10:19AM (#29744331) Homepage

        Or just use a different punctuation character for ports. If you think about how the design of URLs could have been better, other decisions are not cast in stone. The ':' also clashes with the separator in IPv6 addresses (which is an oversight on part of those who designed IPv6).

        http:org/slashdot/tech/story/... (use SRV record)
        http:[org.slashdot;8080]/story/... (use hostname and port)
        http:[123.45.67.8;8080]/foo/... (use IPv4 address)
        http:[2F00:BABA::1;8888]/bar/... (use IPv6 address)
        http:[47.0012.3400.0000.006F.7123.8f23.4012.0c80.0000.00]/ha/... (just kidding)

        • by Random BedHead Ed ( 602081 ) on Wednesday October 14, 2009 @11:47AM (#29745647) Homepage Journal

          http:org/slashdot/tech/story/... (use SRV record)

          I've always liked that idea (which I've seen before) because it treats subdomains in the same way it treats subdirectories under the document root, which opens a lot of possibilities for creative web hosting schemes (e.g., Slashdot could have put this story on a site at slashdot.org/tech, but when that server's load became high enough to justify a separate host the site could move to tech.slashdot.org - there would be no difference between /tech and tech. from a navigational standpoint).

          Also, the dot-com boom would have been the com-slash boom, which would have been much cooler.

    • Re: (Score:3, Interesting)

      by furby076 ( 1461805 )
      I disagree with you. You are thinking in terms of what we have today. So if you remove the slashes today we would have issues. If, however, they designed the system to use something other then the // they would have created a new convention to avoid easily created issues. IM windows and other programs like IRC would have also used a different convention. They use the current convention because that was what they designed their systems for.
  • From the year 2022 (Score:5, Insightful)

    by suso ( 153703 ) * on Wednesday October 14, 2009 @09:09AM (#29743467) Journal

    I used my time modem to login to the Internet3 in 2022 and pulled this review from cdweggbuy (yes, that's a full URL because people thought it was ok to remove gTLDs and also got rid of that pesky http:/// [http] for a VeriLogiSoft Computer Interface device. But of course I got infected by a future virus because my Firefox plugin that matches malicious content didn't know how to identify as a URL.

    Ok back to the present.

    The problem with letting people have what they want is that the majority of people don't understand why things are the way they are. Tim made the right choice,
    he just feels that it is wrong now because he's had to hear people complain about it for the past 15-20 years. But when it comes down to it you need some parts of a URL to indicate what something is.

  • I think they look pretty cool and techy

  • yes (Score:5, Funny)

    by nomadic ( 141991 ) <`nomadicworld' `at' `gmail.com'> on Wednesday October 14, 2009 @09:12AM (#29743497) Homepage
    not to mention the human labor and time spent typing those two keystrokes countless millions of times in browser address boxes.'

    Has anyone had to do that since NINETEEN NINETY FOUR? Is Berners-Lee still using Mosaic or something?
    • Re: (Score:3, Informative)

      by Norsefire ( 1494323 ) *
      There are a number of https websites I have used/use that (for whatever reason) don't automatically redirect if you simply type the web-address. Hence you have to manually type "https://..." to get the secure site.
      • You could use the Redirector [mozilla.org] add-on for Firefox for these situations. It allows you to automatically search & replace URLs with regular expressions. Example:

        Include pattern: http://www/\.)?tunnelbroker\.net/(.*)
        Redirect to: https://tunnelbroker.net/$2

        • Slashdot broke my quote... I'll try again:

          Include pattern: http:/ /(www\.)?tunnelbroker\.net/(.*)
          Redirect to: https://tunnelbroker.net/$2

    • Has anyone had to do that since NINETEEN NINETY FOUR? Is Berners-Lee still using Mosaic or something?

      Real nerds browse with telnet to port 80.... You should know that....

  • Re: (Score:2, Funny)

    Comment removed based on user account deletion
  • by Errtu76 ( 776778 ) on Wednesday October 14, 2009 @09:13AM (#29743511) Journal

    .. we could've had colondot instead of slashdot! I like it!

  • backslashdot (Score:5, Insightful)

    by thhamm ( 764787 ) on Wednesday October 14, 2009 @09:16AM (#29743531)
    Nah. Slashes are fine, but Microsoft should be sorry about backslashes!
    • Comment removed (Score:4, Interesting)

      by account_deleted ( 4530225 ) on Wednesday October 14, 2009 @09:45AM (#29743873)
      Comment removed based on user account deletion
      • Re: (Score:3, Informative)

        by LWATCDR ( 28044 )

        MS-DOS was a copy of CP/M.
        CP/M used / for switches so MS did the same. Maybe CP/M machines didn't have a backslash? I know they sure didn't have a pipe command. Also QD-Dos was designed to run on S100 buss machines and used terminals. Microsoft bought it and made it into PC-Dos and then made it into MS-DOS.

    • Re: (Score:3, Interesting)

      by deniable ( 76198 )
      Well, they added directories in MS-DOS 2 and had already used forward slashes for switches in MS-DOS 1, so what could they do? Can someone older than me confirm that they 'researched' the slash for switches from CPM?
    • Re: (Score:3, Funny)

      by Larryish ( 1215510 )

      We should get rid of all those useless delimiters NOW!

      Programming languages are full of them, think of how much more productive programmers could be if they weren't typing all those DAMNED DELIMITERS!!!

      DAMNIT!!!

    • Re: (Score:3, Insightful)

      by catmistake ( 814204 )

      Nah. Slashes are fine, but Microsoft should be sorry about backslashes!

      Thanks for using the proper terminology. There are slashes, and there are backslashes. There are NO 'forward' slashes. And though Microsoft is cupable, I blame Windows users for unnecessarily complicating the language in a vain attempt to sound like they know what they are talking about. Those extra seven letters are superfluous. It's like saying "CPU processor" or "DNS server." If I see it used again, I'm really going to forwardflip out!

  • by Norsefire ( 1494323 ) * on Wednesday October 14, 2009 @09:16AM (#29743537) Journal
    We'd all be reading colondot right now.
  • Slashdot (Score:5, Funny)

    by cffrost ( 885375 ) on Wednesday October 14, 2009 @09:20AM (#29743577) Homepage
    So we could be called "Colondotters?" No thanks.
  • by Anonymous Coward on Wednesday October 14, 2009 @09:22AM (#29743585)

    Not to mention all the time wasted trying to explain to people the difference between a slash and a backslash.

  • by eldavojohn ( 898314 ) * <eldavojohn@noSpAM.gmail.com> on Wednesday October 14, 2009 @09:23AM (#29743589) Journal
    Doesn't the same logic hold for the person that decided it should be 'http' for hypertext transfer protocol and not just simply 'h'? Yes, http is more descriptive but unnecessary. Had another protocol came along starting with 'h' they could have opted for another letter or -- if they were all taken -- became a two letter protocol. I mean, if we're going to get into pedantic apologies for lack of brevity I would assume the three unnecessary letters in http are a greater crime than the double slashes, right? Of course, rarely do I find myself typing anything other than the domain and TLD (i.e. slashdot.org, mail.google.com, woot.com) so this has really become a non-issue.
  • by ledow ( 319597 ) on Wednesday October 14, 2009 @09:25AM (#29743609) Homepage

    There you go, it seemed like a good idea at the time. he said.

    If the human race is ever brought before a court to account for itself, that's going to be its entire defence. Nuclear power, the Internet, ID cards, ... that excuse works for everything!

    • In fact, my four-year-old has a t-shirt which says exactly this. "It seemed like a good idea at the time."
    • I assume you always pick the right decision yourself then...

      Come on man, humanity chooses wrong paths all the time with the best of intentions, because none of us (apart from you apparently) can predict the future. We do our best to evaluate the future results of our actions, but our foreknowledge is always sketchy at best.

  • It's interesting (Score:4, Interesting)

    by Thyamine ( 531612 ) <.thyamine. .at. .ofdragons.com.> on Wednesday October 14, 2009 @09:28AM (#29743645) Homepage Journal
    I think it's interesting to be able to talk to someone who picked something that affects so many people on a daily basis. Of course, it's a really tiny effect, but very visible. He could have picked two colons or dollar signs or any random thing. It's not often you get to make a decision that ends up being used globally.
  • Stupid story (Score:2, Insightful)

    by mgessner ( 46612 )

    It doesn't matter a rat's ass.

    Pick up any browser, type in www.yahoo.com.

    Does it get there? Sure!

    If you're worried about all the time spent typing, store the stupid text in a document that you cut and paste! (Yes, this will take more time, showing even more how stupid this whole thing is.)

    Store a stupid bookmark. Then you only have to type https://blah.blah.blah/ [blah.blah] one time.

    Get a life.

  • by magloca ( 1404473 ) on Wednesday October 14, 2009 @09:30AM (#29743675)

    Back when I wrote a thesis on dissemination of company-internal information via the world-wide web, in 1994 or so, I remember stating that originally, an indication of which network protocol to use was meant to go between the slashes. But since, in the real world, the network protocol was always TCP/IP, this was made the default and whatever was once put between the slashes was dropped.

    Of course, I don't remember the source or anything.

    • Re: (Score:3, Interesting)

      by mrpacmanjel ( 38218 )

      As far as I understand, it was never envisioned that users would actually type "http://www.whatever.com" in an "address bar", users were not supposed to see this at all - it was purely to be used by software and mark-up pages to specifiy the protocol.

    • by dylan_- ( 1661 ) on Wednesday October 14, 2009 @09:55AM (#29744011) Homepage

      I remember stating that originally, an indication of which network protocol to use was meant to go between the slashes.

      I don't think so, since the double slashes only apply to Internet schemes anyway. RFC1738 says:

      //<user>:<password>@<host>:<port>/<url-path>

            Some or all of the parts "<user>:<password>@", ":<password>",
            ":<port>", and "/<url-path>" may be excluded. The scheme specific
            data start with a double slash "//" to indicate that it complies with
            the common Internet scheme syntax.

      But if you find another reference, please let me know.

    • by Anonymous Coward on Wednesday October 14, 2009 @10:45AM (#29744723)

      Back in the '80s, the double slashes were invented to indicate that the following token was a machine name and not a local directory or local mount-point. The first time I met the double slashes was on an Apollo workstation, which ran Domain, one of the first OSes where you could access remote files and local files without special software--it was built into the OS. At the time, on UNIX, you had to use commands like FTP, or RCP. On Domain, you could also make a soft symlink on your local computer that pointed to another server, so you could move directories around the network and the local programs didn't need to change. (I would not be surprised if the double slashes came from DEC VMS, but I don't know.)

      Compare syntaxes:
      cp //machine1/dir/dir/filename //machine2/dir/dir -- copy a file from machine1 to machine 2
      cp /dir/dir/filename //machine2/dir/dir -- copy a file from the current machine to machine 2

      In RCP the syntax was rather more cumbersome:
      rcp user@machine1:/dir/dir/filename /dir/dir/filename -- copy a file from machine1 to my local machine
      In RCP, the assumption is that a path name is a "remote" path if it contains the character ':'.

      Windows NT and Novell Netware both used double slashes to denote machine names, although Novell's implementation wasn't originally transparent to application programs. Because of the history of PC-DOS, they used backslashes instead of forward slashes.

  • by Anonymous Coward on Wednesday October 14, 2009 @09:31AM (#29743691)

    I had occasion to have an email conversation with Berners-Lee at one time (he bought a license for a program of mine), and I asked if he regretted choosing "www" instead of "web". I was very surprised that this was not something he'd change if he could do the whole thing over ...

    Saying "double u double u double u" takes about twice as long as saying "web" so that would have been far more beneficial than worrying about the slashes.

    There was a bit of a drive to use "web" some years ago, but unfortunately that fizzled..

  • DNS (Score:5, Insightful)

    by redhog ( 15207 ) on Wednesday October 14, 2009 @09:35AM (#29743747) Homepage
    What I wonder is why the designers of DNS put the name in reverse? If the name had been in most-significant-first order, one could have tabcompleted it properly (using history and maybe zonetransfers of smaller zones). Also, if http had included a way to get _parsable_ directory listings, the tab-completion could have gone even further...

    http://edu.wu<TAB>
    http://edu.wustl
    http://edu.wustl.wu<TAB>
    http://edu.wustl.wuarchive
    http://edu.wustl.wuarchive/p<TAB>l<TAB>d<TAB>f<TAB>
    http://edu.wustl.wuarchive/pub/linux/distributions/fedora
    • Re: (Score:3, Interesting)

      by isj ( 453011 )

      My guess is that having the domains in that order allows you copy them directorly to/from DNS packets.
      And the reason for the order in the DNS packets is that it allows compression by back-references. Roughly if a packet contains multiple names:
      some.domain.example.com
      other.domain.example.com
      can be transmitted like:
      some.domain.example.com
      other<go back in packet at offset X>

      See RFC 1035 section 4.1.4 for details.

      • Re: (Score:3, Informative)

        by Jesus_666 ( 702802 )
        Of course one could also have had a packet layout like this:

        com.example.domain \2
        some
        other
        com.another.domain \1
        www
        org.another \1
        yet \1
        blah


        Essentially, every line ends with one byte (in order to save space) stating how many of the following lines are direct subdomains of this one. The last line would thus identify org.another.yet.blah. Granted, this would be slightly more computationally intensive than the currently used one.

        Come to think of it, if space and computational complexity is that imp
    • Re: (Score:3, Interesting)

      UK internet addresses used to be like that [wikimedia.org]. I remember it well. It caused a bit of fun during the changeover period c. 1992.

      Rich.

    • Re: (Score:3, Insightful)

      by ukyoCE ( 106879 )

      People don't consider the TLD to be most significant, and especially did not consider it so before any domain names used anything other than .com or maybe .edu/.net/.org.

      Unless you happen to use both slashdot.com and slashdot.org (and .net, etc.), odds are you can almost always tab complete the name "sla" and avoid ever typing "com." or "co". The TLD is essentially totally insignificant, and would have to be typed every single time if the order were reversed.

      Agreed though that compared to the rest of the pa

    • Re:DNS (Score:5, Interesting)

      by alphaseven ( 540122 ) on Wednesday October 14, 2009 @11:07AM (#29745049)

      What I wonder is why the designers of DNS put the name in reverse?

      Berners-Lee regrets that as well, from back in 2000... [w3.org]

      I have to say that now I regret that the syntax is so clumsy. I would like http://www.example.com/foo/bar/baz [example.com] to be just written http:com/example/foo/bar/baz [com] where the client would figure out that www.example.com existed and was the server to contact. But it is too late now. It turned out the shorthand "//www.example.com/foo/bar/baz" is rarely used and so we could dispense with the "//".

      • Re: (Score:3, Insightful)

        by pmontra ( 738736 )

        It might be habits but IMHO www.example.com looks much natural than com/example on any media, from business cards to tv commercials. We use dot in normal writing and not slashes.
        And what's better at highlighting a brand: org/slashdot or slashdot.org?

        Luckly B-L got it right the first time. Maybe the web wouldn't have add all this success if he designed the addresses in the other way.

        • Re: (Score:3, Insightful)

          by jez9999 ( 618189 )

          Yeah, you're right. I can't think of any time I regularly use slashes in common speech/reading/writing. And it's not just me; go ask the average man/woman on the street.

        • Re: (Score:3, Insightful)

          by Jesus_666 ( 702802 )
          What's natural about www.example.com? It looks nothing like any other kind of address. Phone numbers maybe but those are rendered in a very non-uniform way and ".", "/", "-" and " " are all very common separators there.

          You just feel that that format feels natural for domain names because that's the way domain names are usually written. If Berners-Lee had went with com/example/www, you'd find "//com/example" to be the natural format.
    • Phishing scams (Score:3, Insightful)

      by lannocc ( 568669 )

      What I wonder is why the designers of DNS put the name in reverse? If the name had been in most-significant-first order, one could have tabcompleted it properly (using history and maybe zonetransfers of smaller zones).

      Not only that, but it would go a _long_ way towards preventing phishing scams.

  • gopher, wais (Score:3, Informative)

    by Anonymous Coward on Wednesday October 14, 2009 @09:36AM (#29743763)

    At the time there was also gopher and WAIS- both of which were supported by mosaic. The protocol was necessary to differentiate.

  • by objekt ( 232270 ) on Wednesday October 14, 2009 @09:41AM (#29743825) Homepage

    like when I open a local file in my browser I get "file:///"

    • by atomicstrawberry ( 955148 ) on Wednesday October 14, 2009 @10:10AM (#29744203)

      The structure of a URL is:

      protocol://domain/path

      When you use the 'file' protocol, there is no domain, there is only a path. Thus the domain part of the URL is omitted and you get a triple-slash.

      • Re: (Score:3, Informative)

        by TypoNAM ( 695420 )

        The structure of a URL is:

        protocol://domain/path

        When you use the 'file' protocol, there is no domain, there is only a path. Thus the domain part of the URL is omitted and you get a triple-slash.

        Wrong. Please read RFC1738 again. It specifically states:

        3.10 FILES

        ...

        A file URL takes the form:
        file://<host>/<path>

        ...

        As a special case, <host> can be the string "localhost" or the empty
        string
        ; this is interpreted as `the machine from which the URL is
        being interpreted'.

  • by Anonymous Coward on Wednesday October 14, 2009 @09:47AM (#29743893)

    It is explained by TBL at http://www.w3.org/People/Berners-Lee/FAQ.html#etc

    "I wanted the syntax of the URI to separate the bit which the web browser has to know about (www.example.com) from the rest (the opaque string which is blindly requested by the client from the server). Within the rest of the URI, slashes (/) were the clear choice to separate parts of a hierarchical system, and I wanted to be able to make a link without having to know the name of the service (www.example.com) which was publishing the data. The relative URI syntax is just unix pathname syntax reused without apology. Anyone who had used unix would find it quite obvious. Then I needed an extension to add the service name (hostname). In fact this was similar to the problem the Apollo domain system had had when they created a network file system. They had extended the filename syntax to allow //computername/file/path/as/usual. So I just copied Apollo. Apollo was a brand of unix workstation."

  • I like them! (Score:5, Insightful)

    by sootman ( 158191 ) on Wednesday October 14, 2009 @10:24AM (#29744411) Homepage Journal

    I *like* unique, easily-visually-identifiable structures. a@b.c is an email address. If you're in the U.S. you know that XXX-XXX-XXXX is a phone number and that XXX-XX-XXXX is a social security number. You know that X/Y/Z is a date, even if it's not always clear if it's M/D/Y or D/M/Y.

    "://", while verbose, is very clear and you always know EXACTLY what it is and what it means--that it's the START of a COMPLETE Web address. If it would have been just a : or a / it wouldn't always be clear because those symbols, by themselves, are often used elsewhere and it would lead to confusion.

    Now if we could just teach a planet full of lusers the difference between "slash" and "backslash." People always say "backslash" because they've heard computer guys say it every so often when talking about logging onto MS servers so they call EVERY slash a backslash. Damn you Paul Allen!!! [nytimes.com]

    • Re: (Score:3, Insightful)

      by sanosuke001 ( 640243 )
      Ever since I started working as a contractor for the Air Force, I've been using DDMMMYYYY for my dates(ie. 14OCT2009), and technically, it is shorter than MM/DD/YYYY by a single character. It's also less ambiguous for all parties involved as not everyone has MM and DD in the same location.

      As for web addresses (to stay sort-of on topic...), most people do not use their web browser for anything other than http addresses. So the http:/// [http] is automatically filled in for them; worrying about whether they were
  • by argent ( 18001 ) <peter@slashdot . ... t a r o nga.com> on Wednesday October 14, 2009 @10:32AM (#29744519) Homepage Journal

    OK, maybe it could have been reduced to one slash, since there's no :/ smiley elsewhere in the URL pattern, but you need to be able to distinguish relative URLs from absolute ones. Without some unique token sequence that was guaranteed not to occur elsewhere in a URI you're going to run into problems. Start removing components from a fully specified URI and see how quickly you run into ambiguities:

    method://username:password@host:port/paths/terminal?token=value&token=value

    The reasons for the // convention for the "super root" in networks like OpenNet and FutureNet, that he was copying, are still valid in URIs. You need something that's easily parsed by computers, and easily recognized by humans. When I first saw the syntax I was all "slash slash whiskey tango foxtrot?", but after using it for a while I was convinced that I was wrong and he was right, and even if he's forgotten why... I still think he was right the first time.

    • I agree, the // does serve a purpose. Having a marker for the start of the hostname makes it possible to construct a scheme-agnostic URL.

      Suppose you had a web page that might be served via either HTTP or HTTPS. You need to ensure that any resources (images and stylesheets) it references use the same protocol, else the browser will warn of a secure/insecure mix. Suppose also that the resources are hosted on a separate server (a common performance-enhancing technique).

      The solution: <img src="//host/path/t

  • by Hurricane78 ( 562437 ) <deleted&slashdot,org> on Wednesday October 14, 2009 @11:09AM (#29745075)

    Just like one slash at the beginning is for the root directory in an absolute path, two slashes are for the root of the network.

    The only question is, why it's
    [protocol]://[sub].[domain].[tld]/[path]...
    instead of
    [protocol]://[tld]/[domain]/[sub]/[path]...

    But I guess that way you can separate what's a different server and what is not.

    Only the file protocol has it wrong, because it's not the root of the network, when you write:
    file:///[path]
    It should be:
    file:/[path]

    But hey, nothing stops you from using your own syntax when you write software like a browser.

    In fact, I'd love to see the net just becoming another part of the path of the "everything is a file" file system of UNIX machines.

  • by clone53421 ( 1310749 ) on Wednesday October 14, 2009 @12:18PM (#29746111) Journal

    infront

    That is not a word.

    the "www" in every internet website address

    Many website addresses don't begin with "www", including the address of the page you're currently reading.

    The physicist admitted that if he had his time again, he might have made a change, or more specifically, two.

    Well, what's the other one? I'm waiting, don't keep me in suspense here... (Not to mention, correctly speaking he would have done it differently, not have made a change.)

    "Boy, now people on the radio are calling it ‘backslash backslash’," Sir Tim told his audience, even though he knows they are, in fact, forward slashes.

    He does? Whew, glad they cleared that one up.

    Showing them his index finger he added: "People are having to use that finger so much."

    I type the slash key with my pinky finger, not my index finger. I even checked the British keyboard [google.com] to make sure it's not a culture disconnect. The British keyboard seems to have it in the same place as the keyboard I'm familiar with.

    He knows that no one has calculated the number of exasperated groans emitted at the sight of a "syntax error" message generated by the grave omission of a single slash.

    I've never seen such an error message, and both Firefox and IE correctly convert http:/google.com to http://google.com [google.com].

    Nowadays web browsers such as Explorer

    Explorer is Windows' file system manager. The web browser is called Internet Explorer.

    the British scientist who created the world wide web

    Sir Tim Berners-Lee, who wrote the code that transformed a private computer network into the web two decades ago

    The physicist is credited with being the architect of the world wide web, which was to transform the internet into something usable and understandable by more than just computer programmers.

    Shouldn't they say it a third time, in case someone missed it the first two times?

    Today the URLs — better known as web addresses — that Sir Tim created, beginning http://www, are familiar to anyone navigating their way around the internet.

    And here's with the www business again. Stop it, I say.

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...