Slashdot Mirror


Author of Archie Challenges Alta Vista Patents

Hieronymous Cowherd writes: "The press release says most of it, but basically, Alan Emtage was surprised that CMGI was awarded patents on things he had already done. He's also willing to help those that get sued: 'Emtage has also put out an open letter to the programming community stating that he is happy to provide further information and assistance to anyone who is approached by CMGI in an effort to defend the patents in question.'" Talk about prior art -- as this release points out, "The first version of Archie released in 1989, with second and third releases in 1990 and 1993. Using FTP, a precursor to the HTTP protocol of the of the World Wide Web, Archie searched, or 'crawled,' public FTP sites, indexing their contents for easy access by Internet users. At its peak in 1995, there were over 30 Archie crawlers located around the world searching and cataloging millions of files."

197 comments

  1. Re:Get down to brass tacks . . . by Arkaein · · Score: 1

    It seems to me that this underlies the most fundamental problem with how patents are used/granted: new patents can be granted that create only token differences from previous patents and/or prior art, while new ideas seem to infringe on previous patents even while they do add new features.

    Looking at an above thread discussing predatory patents it seems like the victor is not the inventor who patents one truly original idea, but the corporation which patents every application of that idea. This is especially true with some of the newer business methods patents, which seem to patent processes which exist only in theory, stripping the rights away from an inventor who in the future may design a completely innovative and unique but (legally) infringing implementation of that idea.

  2. There are others too. by Anonymous Coward · · Score: 1

    Besides Archie, there is WAIS and Veronica. I'm not sure if gopher counts though. :

    1. Re:There are others too. by BeanThere · · Score: 2

      I can only speculate that a clueless moderator, who didn't read the article and doesn't know about veronica, thought that the post was an "Archie comics" joke. Whow knows?

      Difficult to say. /. moderation is oftentimes very suspect. The most common abuse is to mod somebody as "flamebait" because you don't agree with what they're saying, even if the post is insightful.

  3. Re:"convince the USPTO..." by SurfsUp · · Score: 2
    To fix the patent application vetting process, two things must happen...

    Oh sure, fix the patent application process so it doesn't hurt so much when we get screwed. Lets call that the 'KY jelly' approach: it may not hurt as much, but you're still getting buggered.

    No, respectfully, forget the KY jelly, it's better if the absurd patents keep getting granted to draw attention to the real issue: you can't own algorithms, they belong to God. The granting of patents on algorithms is the root evil that has to be eliminated, lets not try to sanitize it.
    --

    --
    Life's a bitch but somebody's gotta do it.
  4. Re:Question for the lawyers by ivan256 · · Score: 1

    I beg to differ. If he had patented the idea, then AltaVista wouldn't have ever obtained their patent. Though you may think this is wrong in some way, according to law this is a patentable idea. Unless you do something to have the law changed your opinion doesn't matter.

    Besides, I meant that he was too late to apply, not that he was intending to; and yes, he is too late.

  5. Re:What he should do... by plague3106 · · Score: 1

    Actually since someone already DOES have the patent, the court would probably transfer the patent to the first person that 'invented' something. Of course, if someone else did something before him, they could get the patent, etc.

  6. Why not? by dervish121 · · Score: 1

    Because it would never finish. To just generate every 100 letter text (ignoring punctuation, case, etc), at, say, 1 trillion texts a second, would not finish before quite a few universes are born and collapse in on themselves.

    On the plus side, we already know the first and last pages:
    aaa...aaa

    zzz...zzz

    Unfortunately, I don't think either of them will be a nytimes bestseller.

  7. Re:Public "service" is never creative by plague3106 · · Score: 1

    Actually, they probably would be doing a better job if A) the number of patents filed had not increased sharply and B) the office didn't get its budget cut, forcing the lawoff of many of the researchers there.

  8. Know yr shell, love yr shell by srichman · · Score: 2
    Ok. We have proof that slashdot is not a geeksite. Commands like:
    find . -print > file ; grep string file , or
    ls -lR > file | grep string
    don't fill me with a warm fuzzy glow. To find a string in a file, use:
    It doesn't fill me with a warm fuzzy glow either.

    The first example doesn't look for a string in a file; it looks for a string in the filenames that find returns.

    The second example doesn't really do anything other than redirect ls's output to a file; grep never gets run on anything other than an empty standard input stream. For instance, try

    echo monkey > file | wc -c
    and you'll see that the piped command is executed, but with no input. Which is why God gave us tee.

    So, yes, /. isn't a geeksite after all.

    To find a string in a file, use:
    find . -print | xargs grep string (works on just about anything),
    find | xargs grep string (works with Gnu find), or
    rgrep string . (works with rgrep, but rgrep is ugly).
    Why use xargs? This is just equivalent to backquotes, which do the job without invoking another program:
    grep -s string `find`
    (with . -print if your find is bitchy, without -s depending on your grep, etc.). But, of course, it's all about the rgrep.
    1. Re:Know yr shell, love yr shell by RoninM · · Score: 1
      So, yes, /. isn't a geek site after all.

      I don't think technical errors in comments indicate that. Maybe 'find . -print > file ; grep string file' illustrates a lack of comfort with the UNIX-way, though. Anyway, people make stupid mistakes in comments all of the time. Whether it be in spelling, grammar, examples, etc., etc. It's more likely proof that caffeine doesn't keep us quite as sharp as we would like to think it does...

      --
      If a corporation is a personhood, is owning stock slavery?
    2. Re:Know yr shell, love yr shell by JdV!! · · Score: 1
      Why use xargs? This is just equivalent to backquotes, which do the job without invoking another program:

      grep -s string `find`

      And this is where you err, dear sir! Try that on an early 90ties Unix system with 'a bunch' (800-1000 will typically do it) files, and your command argument buffer (argv) of your shell will fill up to the brim and your command will never execute. Happened on SCO AIX, HPUX, and Solaris

      That's why God gave us xargs ;-)

      Must admit I've got no idea if this restriction still applies to modern Unices/Linux. That | xargs is so stuck in my fingers I never try the backquotes anymore....

      JdV!!

      --
      <Enter any 12-digit prime to continue>

    3. Re:Know yr shell, love yr shell by gle · · Score: 1

      I use:
      find . -exec grep string {} \; -ls
      I even made an alias name rgrep (recursive grep) for it because I use it all the time to search in source soce.

      --
      Ni!
    4. Re:Know yr shell, love yr shell by Baki · · Score: 1

      Very inefficient. For every single file, a grep process is forked/execd.

      xargs was created for this: it will gather the maximum (system dependant) number of arguments from stdin, then fork/exec the process with all arguments.

      Say your find finds 10000 files, and there is room for about 1000 arguments on the command line, then your variant will start grep 10000 times, whereas find . | xargs grep will start grep only 10 times.

    5. Re:Know yr shell, love yr shell by Lozzer · · Score: 2

      I just had to try it out to see what the overhead of the various methods were. (I've never seen xargs before, so I had to have a play). I created a small file to search, a file doubling script to copy all the files in my test directory and I timed the three different propsed mechanisms for searching the files for a string. I tried up to 16384 files.

      1: using xargs
      2: using find -exec
      3: using grep `find` [or actually $(find) in ksh, backquotes are deprecated...]

      The results (in seconds) I got for each method, for a doubling number of files starting at 1 are
      1: 0.03, 0.03, 0.03, 0.03, 0.03, 0.03, 0.04, 0.05, 0.06, 0.11, 0.2, 0.36, 0.75, 1.4, 3
      2: 0.03, 0.04, 0.05, 0.08, 0.14, 0.25, 0.48, 0.94, 2.1, 4, 7.8, 16, 32, 65, 129
      3: 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.03, 0.03, 0.04, 0.07, 0.13, 0.21, 0.43, 0.82, 1.9

      I'm using a Sun E450 with Solaris 8. I couldn't get the third method to blow up even at 16384 files, I'm not sure if this is because the OS is complied at an obscene limit or that it does something cleverer. The last method is about a third quicker than using xargs, though it is (seemingly) obvious that its going to break on some platforms. Both these methods are clearly superior to forking a grep for each file found. Plotting log graphs show that all the method scale in a similar way, even if they are a factor of 40 out in their efficiency.

      --
      Special Relativity: The person in the other queue thinks yours is moving faster.
    6. Re:Know yr shell, love yr shell by jovlinger · · Score: 1

      There's also a semantic difference. In the backquoted case, the backquoted command is completely evaluated 'till completion, and only then is the resulting command line executed.

      The | xargs approach is more incremental, producing output before the find is completed.

      This normally doesn't make a difference, but if find is slow, you only want the first few lines of output (stop at first hit), or find never terminates, the pipe is a better solution.

  9. ...Or not. by Psycho+Boy+Jack · · Score: 1

    Sorry, but my bet's on it going the other way around.
    "Brilliant" hackers say "step back, bitch," for a little while, and valiantly defy Big Corp. Big Corp. retaliates.

    --
    You know that saying, how you always kill the one you love? Well, it works both ways.
    1. Re:...Or not. by miscellaneous · · Score: 1

      umm, hey, i'm not Big Corp's bitch or anything, but stealing cable/satellite doesn't seem to me to be very valiant. slick, maybe, kewl, maybe, but hardly valiant.

      personally, i think DirecTV showed a very hackish mentality by beating tha hackin' hordes at their own game. technical solutions to technical problems deserve some sort of respect, it seems to me.

      --
      -k. ^-^ ^D
    2. Re:...Or not. by mheckaman · · Score: 1

      It's not stealing in Canada. All this directv "hacking" is perfectly legal here, they have no right whatsoever to touch us. Ah well, big corporation fucks a country's sovereign rights again.

      Matt

      --

      Don't take life so seriously; it isn't permanent.

  10. Re:Very glad, but very sad... by plague3106 · · Score: 1

    Because of budget cutbacks and an increasing number of patents, the average time a person at the USPO spends researching an incomming patent is something around 14 minutes...

    They are way too understaffed for the amount of work that needs to be done, but they are still under pressure to work quickly. Hence, many patents are rubber stamped with only a cursory reading.

  11. Re:Get down to brass tacks . . . by startled · · Score: 2

    Interesting passage from your analysis.

    "'Though I'm not a lawyer....' It is clear that Mr. Emtage is not a lawyer."

    You just don't get analysis that cuts that deep on the TV news. :) BTW, not flaming, your post was interesting, but that's the funniest thing I've read all day.

  12. Re:Patent office agenda by plague3106 · · Score: 1

    Actually if that third world country is part of the WTO, they are screwed.

  13. Re:It's in the Patent Offices interest by plague3106 · · Score: 1

    Except that the USPO has been forcably downsized as of late...

  14. Re:Patent office agenda by Alatar · · Score: 1

    Since when do other countries respect American patents? Good luck suing some third-world country company that stole your company's ideas.

  15. FP? by spiral · · Score: 2

    First Patent! Woohoo!

    --
    Drinking will help us plan!
  16. Re:it's it funny, by Johnathon+Walls · · Score: 3

    Actually, I'm more convinced that they knew he wasn't dead and that the meeting to create the patent went along these lines:

    Johnson - "Well, sir, there actually is prior art. And he's not dead."

    CEO - "What? He? Who?"

    Johnson - "Well, there's this thing called Archie ... by a guy named Alan Emtage..."

    CEO - "A guy? But there's no patent, right? And he's just one man, not a company, right?"

    Johnson (shuffling through papers) - "Um, right on both accounts, sir."

    CEO -"Then patent the fucking thing. If he yaps, we'll take it to court. We've got lots of money, he's got none. We'll litigate him to death. He can't afford it, he gives up, we get the benefits."

    Johnson (sighing) - "Right again, sir."

    CEO - "Now, any other unpatented ideas we can steal ... er, 'discover'?"

  17. Re:SlashPatents by sjames · · Score: 2

    Of course they have to be secret. Patents are ways to protect the idea you just came up with that no one knows about yet. If you tell everybody before you patent it, you've lost your new idea.

    But you would by definition already have the patent on file. And filing date is what gets counted with patents, not approval date. If you file for a patent today and 100 people spring up selling 'your' idea tomorrow, you will be able to extort fees from all of them as soon as your patent is approved. The examiner won't consider a single thing published after your filing date.

  18. Patents by Kreeblah · · Score: 2

    This follows an alarming trend we've been seeing lately. Companies have been registering patents and/or copyrights on the most absurd things (remember Amazon.com's "one click shopping"?). The only way they'll stop trying to do these things is if people win lawsuits against them. While it's not easy to do so, if a non-profit organization is created for the specific purpose (or if there is one already, perhaps?) of filing (and winning) lawsuits against rediculous patents, we might have a chance at protecting our rights to use existing technology.

    1. Re:Patents by RandomPeon · · Score: 2

      A related trend is setting "patent traps". You wait until a technology is considered an open standard or public domain before you bring out your dubious patent. Then you claim that everyone who used this previously free technology owes you whatever royalty you see fit to charge. BT pulled the same stunt with the hyperlink patent. Amazon did the same with 1-click shopping.

      Unlike trademarks, which expire if not enforced, patents can left lying around, waiting for an unspecting society to "violate" them. It would seem that if you have a universally appicable idea, or see one that hasn't been patented, you should:

      1) Obtain a patent
      2) Wait 3-10 years until everyone uses it
      3) Extort money from all the supposed infringers

      This is a much more profitable business model than licensing your patent from the outset. Somebody needs to stop it. Uneforced patents should expire immediately. The duration of patents of patents and copyrights must be dramatically reduced. This has just gone too far.

    2. Re:Patents by mpe · · Score: 2

      While it's not easy to do so, if a non-profit organization is created for the specific purpose (or if there is one already, perhaps?) of filing (and winning) lawsuits against rediculous patents,

      It's called "the government", problem is when governments do not want to do their jobs they are rarely eager to delegate the needed powers to a third party.

  19. Re:About Time... by connorbd · · Score: 1

    Uh... you ever actually *used* gopher? It only sort of resembles WWW, and there is no concept whatsoever of what we'd call a hyperlink. It's purely menu driven.

    Though I'm amazed that CMGI would get the patents as well... with them getting naming rights over the new Pats stadium I kinda get the feeling they might try to patent hash marks and goalposts...

    /Brian

  20. expect more of this to come... by wunderhorn1 · · Score: 1
    1. Altavista was created by DEC which is now owned by Compaq...

    2. PC sales are slowing, compaq needs more revenue...

    3. Team of highly trained attack lawyers scours company patents for potential victims they can hit up for tribute, er, royalties.

    4. Someone out there has to be paying attention to these things. We owe alot to those who do.

    --
    Karma: Bored. (Thinking about resurrecting the "Anyone else is an imposter" joke.)
    1. Re:expect more of this to come... by joe52 · · Score: 1

      1. Altavista was created by DEC which is now owned by Compaq...

      2. PC sales are slowing, compaq needs more revenue...

      3. Team of highly trained attack lawyers scours company patents for potential victims they can hit up for tribute, er, royalties.

      4. Someone out there has to be paying attention to these things. We owe alot to those who do.


      Except that somewhere after number 1 Compaq sold Altavista to CMGI. But then CMGI is probably in every bit as much need as Compaq for more revenues.

    2. Re:expect more of this to come... by Fat+Rat+Bastard · · Score: 2

      Uh... not quite. AltaVista was divested from Compaq and sold to CMGi, the black hole of internet money. Don't blame Compaq (well, at least not for this).

      --

      If you don't have anything nice to say, say it often.
      - Ed the Sock

    3. Re:expect more of this to come... by dingbat_hp · · Score: 1

      Absolutely.

      I work at <mumble>, a big-name Blue Chip that's generally well-liked in the industry. We're the "acceptable face" of big IT corporates, and known for our agressive inventing, not our agressive defence of trivia (Hey, if I didn't like the place, I wouldn't be here).

      Even here, we've recently had corporate pep talks to make us invent more, patent more of what we invent, and make more use (by licensing for money) of what we patent. If it has sunk in to our level, then everyone is doing it.

    4. Re:expect more of this to come... by rfsayre · · Score: 2
      CMGI owns a majority of Alta Vista. The patents in question are owned by CMGI. Check out the Alta Vista Company Background for more info. I'll even paste a relevant part of the document to speed your fact checking.

      Since AltaVista's founding in 1995 our company has evolved impressively. In January 1999, we became a wholly owned subsidiary of Compaq Computer Corporation (NYSE: CPQ). Compaq purchased Shopping.com in March and Zip2 Corporation in April of that year. Then in August of 1999, CMGI, Inc. (Nasdaq: CMGI) acquired 83% of our outstanding stock from Compaq, and Shopping.com and Zip2 became wholly owned subsidiaries of AltaVista. Later that same year, AltaVista acquired Raging Bull, bolstering our financial expertise while adding a new community element to the AltaVista network. With this combination, AltaVista has integrated a broad range of commerce, content and search services under the AltaVista domain.

      Today, we are expanding our services even further through strategic partnerships with leading best-of-breed content providers and aggressive international expansion. As always, AltaVista remains committed to providing our users with the best of the Web from a single, trusted source. As AltaVista continues to develop new and greater ways to reach our objectives and fulfill users' needs, our view from above promises to look ever more comprehensive and accessible.

      AltaVista is a majority owned company of CMGI, Inc. (Nasdaq: CMGI).

      For a good laugh, check out CMGI's company profile on yahoo.

  21. Re:Freudian Slip? by plague3106 · · Score: 1

    Opps, you're right...i did mean layoff :)

  22. Re:Very glad, but very sad... by -=[+SYRiNX+]=- · · Score: 1
    Again - the system really, REALLY needs to change - but who's going to do it?

    Until campaign finance reform is enacted and enforced, injustices will continue to be practiced daily by the US government.

    The US Patent Office is just like any other federal agency: it is implicitly owned by major corporations. Legislators are afraid to enact reforms that might alienate their largest campaign contributors. Every significant decision made by our legislature favors corporate will over ethics or citizen's rights.

    About the only thing you can do to have any say in the matter is to become a mega-millionaire and start bribing legislators. In the USA, if you don't have money and an army of lawyers, you just get ignored.

    What this country really needs is a new constitutional ammendment which provides a strict separation between money and state.

    --
    - "It's just a matter of opinion!" - PRIMUS
  23. Re:About Time... by Black+Parrot · · Score: 2

    > I've been waiting for some of the 'Net pioneers to come out against this crap. Looks like Emtage is one of the few who has the resources to fight this!

    "funny" will be if he has a patent on it and makes AV pay out the gazoo for using it.

    "funnier" will be if he donates the proceeds from his patent to the EFF.

    "funniest" will be if he turns out to have a patent on one-click shopping, too.

    --

    --
    Sheesh, evil *and* a jerk. -- Jade
  24. Re:This might not change anything. by blair1q · · Score: 1

    Let's deal with the objections to my post en masse:

    0. Minor changes to patented items can and do result in new patents. You may list the old patents yours relates to, and you may need to license those patents in order to use your patents, but you don't need to license them to be awarded your patents, and you don't need to license them in order to license your patents to others (it's the licensee's problem what patents he forgot to license).

    1. If you publish patentable designs, and do not file within a year*, you lose your primacy. That makes it all the easier for people who make minor changes to receive patents, whether your publication is sufficient prior art to invalidate part of their invention or not.

    2. Cup handles predate the patent system and are therefore moot as merely cup handles. New designs for cup handles are not patentable because they are designs, not new ways for people to do things. You can't patent a design, only a means. You can patent it if the new cup handle provides a new means to do something (like a pressure-operated digital alarm-timer insert so you know when your break is over, or a hook to hold your donut while you walk with a palm pilot in your other hand--I now have a year to patent those, modulo prior art...). Designs are copyrighted or trademarked, not patented. E.g., font-loading methods are patented; fonts are copyrighted (there's your "patenting the alphabet").

    3. PTO employees are not perfect, hence the need to make it policy that the PTO will not ever patent any perpetual motion machine, because the ones who are clued just know that the ones who aren't will eventually fall for it. So "wrong" patents and "wrong" rejections of patents are no proof of what is and isn't right.

    4. Non-filed prior art should only invalidate claims that are exact mimics of the methods described. AV's HTTP crawlers do not necessarily have anything in common with Archie, and should certainly have little in common on several claims. (IMO, their schtick infringes much more closely on The WebCrawler's schtick, but I don't recall who was there first; I know I was using webcrawler for a while before I first saw altavista; and for all I know they're two branches of the same rcs tree). It could not be invalidated on the basis that it's functionally the same as crawling around your house looking for your keys under every piece of furniture.

    5. ComSat/IntelSat/etc. owe Arthur C. Clarke billions, morally if not legally. They sure did patent plenty of things about geosynchronous and geostationary satellites, and were in business only because he never whined until it was way, way too late. But you put a moral code in one hand and a legal decision in the other and see which one invalidates ComSat's patents. AltaVista might lose a few claims, if they were expansive in their filing. But I predict they will retain many, if not all. And maybe they should pay Arthur C. Clarke a few dubloons, just on principle.

    If you guys were my IP-law department, I'd fire the lot of you.

    --Blair

    *-this may not be exact, but it's the stat I remember. YMMV. I can misread tribal knowledge and legal calves as well as anyone.

  25. Re:good precident by turacma · · Score: 1

    Maybe this will start a trend of flooding the patent office with challenges to frivolous patents, and may just put an end to failing Computer Companies that will only be able to survive from royalties/penalties of such patents (a la CMGI).

    In order for new growth to occur, the giants need to be trimmed in order to let a little warmth fall on the saplings.

  26. PTO Question by billwashere · · Score: 2
    While the hell the PTO doesn't employ some moderately technically literate people to make sure these stupid patents are never granted in the first place is beyond me.

    If there should be any blame placed it should be with the PTO, although Altavista (CMGI) should know better. It seems to me that the incredible incompetence of this organization to allow these sort of obvious prior art patents to go through is making a bunch of lawyers rich while at the same time causing all kinds of trouble for everyday users.

    Lawyers really piss me off!

    --
    billwashere

    1. Re:PTO Question by blair1q · · Score: 1

      Two things about your hundreds of PhDs link:

      1. It's funny that the congresscritters' names are in normal text and the lawyers' names are in bold.

      2. Yes they had 350 Ph.D's in the PTO. But they're Ph.D's who have chosen to work for gummint pay. When I was finishing up my MSEE I happened to become fairly well acquainted with the then-President of the US Patent Law Assn (he lectured at a biz class I took and then I discovered he lived right around the corner from me). I talked to him about the field, more from the technical than the legal side. The work looked kind of interesting ("poring over other people's never-before-seen stuff, day in, day out, in a dingy, humid office in a sub-basement in Crystal City? Cool!"), but the pay scales outright sucked, especially for new-hires. And I'd had enough of the insensate management style of institutions when I was in the Army, thank you. I took an easy job at HyperMegaSemiCorp and got rich, instead. I still wonder what the thought process was behind the career choice for every advanced-degreed individual working at the PTO.

      --Blair

    2. Re:PTO Question by Black+Parrot · · Score: 2

      > While the hell the PTO doesn't employ some moderately technically literate people to make sure these stupid patents are never granted in the first place is beyond me. If there should be any blame placed it should be with the PTO, although Altavista (CMGI) should know better.

      I think PTO uses AV to search for prior art.

      --

      --
      Sheesh, evil *and* a jerk. -- Jade
    3. Re:PTO Question by Artagel · · Score: 4

      The PTO has lots of technical people, and few lawyers. The PTO has hundreds of PhDs. Sure, they hire hundreds of people with less than Ph.D. level degrees, but then, I don't expect that every critic of the work they do has one either. Hey, if you want to solve the problem, here's some info on becoming an examiner.

      The shortcomings of the PTO have more to do with the time given to examine applications, and the money spent on examination, not the smarts of the examiners. Money is short in part because Congress is using the PTO as a piggy bank. Fees go in, and instead of putting all the money into making patents, Congress sucks about a quarter of the money out for other things.

    4. Re:PTO Question by SlippyToad · · Score: 1

      The fundamental problem is not lack of money, nor lack of examiners. The fundamental problem is that their incentive is to grant as many patents as possible. There is no apparent penalty for failing to discover prior art, or for failing to see that the application in question is an obvious solution in a field. If a patent examiner could be fired for granting something as dull-wittedly obvious as the one-click patent they would be a little less gung-ho to do so. Instead, they are apparently paid per patent to grant them. It's run on a for-profit basis. IMHO the patent office simply needs to be shut down, all of the management fired, and reorganized with some checks and balances built in. There is no other solution.

      --
      One day I feel I'm ahead of the wheel / the next it's rolling over me / I can get back on / I can get back on
    5. Re:PTO Question by Artagel · · Score: 1

      35 U.S.C. 102:

      "A person shall be entitled to a patent UNLESS--"

      If the examiner cannot prove up that the prior art shows the invention, he has to give a patent. It is not a question of whether he likes the application or not. The idea is that inventors are entitled to patents. Congress has structured the whole thing on that basis.

      This is sorta logical. After all, the alternative is to make the inventor prove the absence of prior art. We all know that proving negatives is hard, and requiring the proving of negatives is generally a bad thing. (Prove that you don't kick your dog.)

      No incentive? Ok, let's say the examiner denies a patent, and the inventor goes for a trial de novo in court to get his patent, and spends $500,000. Does the EXAMINER pay for that? How about YOU, or TAXPAYERS? What if we just deny all patents, and all pharmaceutical research stops totally? (Which it would.)

      These guys are not out to screw you. The mistakes they make are not deliberate. Their names goes on the cover of the patent. Perhaps YOU would like YOUR mistakes at work published for the world to see? Why do I not think so...

    6. Re:PTO Question by Pig+Hogger · · Score: 2
      While the hell the PTO doesn't employ some moderately technically literate people to make sure these stupid patents are never granted in the first place is beyond me.
      That's because in the anglo-saxon mindset, people do not see working for the State (like, for example, in the Patent Office) as a good thing(tm). They think that working for a big corporation for a fat check, or better, owning the big corporation and getting wads of dough IS the good thing. So, for this reason, the Patent Office only gets clueless morons to work for them.

      As long as this stupid mindset will keep going, don't expect anglo-saxon countries Patent Offices to have the slightest smidgeon of a clue.

      --

    7. Re:PTO Question by kraig · · Score: 1

      I think such a comment is unfair to the people who work both for government (in general) and for the Patent Office (in particular). Not everybody who works in a place other than a big corporation is clueless. Most of them, I would expect, are as anybody else at a large place of business - relatively honest, reasonably hard-working, and at least somewhat dedicated to their work. Just because they don't know about the intricacies of the 'net doesn't make them clueless morons. As a previous poster says, they can only hire so many people, and they only have so much time to research so many patents. I agree that such patent awards are, at best, ill-thought-out, but face it - if they hired as many people as they needed to research all patents in the timeframe they have, people would be complaining about the amount of tax money "wasted on researching all these stupid patents".

      The clueless morons aren't the ones in the patent office - they're the ones who're trying to beat the system by taking advantage of the patent office. It's no different from somebody cheating on their taxes: "everybody does it, and it's only a few hundred bucks anyway", except in this case, it's "everybody does it, and if nobody fights it, I can make lots of money". Welcome to the ugly side of capitalism.

  27. Re:Great Discussion, But What by blair1q · · Score: 1

    AltaVista started out as a service of Digital Equipment Corporation (DEC).

    Maybe they were DEC patents, which means they could be Compaq's patents, now, though they should be AltaVista's.

  28. What he should do... by Anonymous Coward · · Score: 1
    Dont just HELP. He should file his OWN patents on the crawlers, make them usable by everyone BUT Altavista, sue altavista, get rich, give it to charity.

    In all honesty, this would make an excellent point to other companies trying to bully people to make an extra buck.

    1. Re:What he should do... by cshotton · · Score: 3
      Dont just HELP. He should file his OWN patents on the crawlers, make them usable by everyone BUT Altavista, sue altavista, get rich, give it to charity.

      You should read up a bit on patent law. Just because you did something first doesn't mean you can have a patent on it. In this case, the "invention" has been available far too long to be patentable. Sorry, but after a point the invention becomes common practice and common knowledge. By failing to file for the patent early on in a timely fashion, the inventor relinquishes the right to do so later.

      --

      Shut up and eat your vegetables!!!
    2. Re:What he should do... by mpe · · Score: 2

      Sorry, but after a point the invention becomes common practice and common knowledge. By failing to file for the patent early on in a timely fashion, the inventor relinquishes the right to do so later.

      Not only the original inventor, but also any other party...
      Part of the problem with this is attempting to handle fraud cases through the civil courts.

    3. Re:What he should do... by dark_panda · · Score: 2

      In the Phillipines, if you can prove you invented something first, you're given the patent even if it's already been filed and granted to someone else.

      At least, I think. IANAPatent Lawyer Guy, but I seem to remember reading it, either on /. or for a term paper I did a while back.

      Too bad this wasn't a Phillipino matter, eh?

      J

    4. Re:What he should do... by markmoss · · Score: 1

      In the US, you've got one or two years after the invention is put into use or "published" to apply for a patent. After that, it's public domain. In many other countries, you've got to put in your patent application first or it's public domain.

      Old example -- I read about this in the 60's: Arthur C Clarke first proposed communications satellites in a SciFi story in 1945. No question about his priority. Also no question that he can't get a patent; it was ten years before rockets capable of putting a satellite up there were developed, and a few more years before they actually did.

    5. Re:What he should do... by BitwizeGHC · · Score: 2

      I'm not a Smarty Man Pattent Lawyar either, but I believe in the US if you prove something existed before it was patented, it merely invalidates the patent and makes the invention PD.

      --
      N4st0r, trixx0r h0bb1tz0rz! Th3y st0l3 0ur pr3c10uzz!
  29. Re:What has driven this recent bad patent movement by Prophet+of+Doom · · Score: 1

    I think it might be IBM's fault.

  30. Re:Get down to brass tacks . . . by werdna · · Score: 2

    Fair enough. Now pick a patent claim which you claim to read on the prior art, and we're in business.

  31. Re:Internet Search History by llywrch · · Score: 2
    > Thanks to Wiley, here is a History of Search Engines, with a section on Archie and AltaVista. By the time of AltaVista there were a > number of crawlers, spiders, etc.

    Wow, that was a flashback. [digs deep into some files in a forgotten directory] Yeah, I remember bookmarking a link about spiders, many years ago . . .

    [from my almost forgotten lynx bookmarks file, which I used before I discovered graphical browsers:]

    <li><a href="http://web.nexor.co.uk/mak/doc/robots/robots .html">World Wide Web Wanderers, Spiders and Robots</a>

    A few other early web sites I used to frequent:

    <li><a href="http://daneel.acns.nwu.edu:8082/index.html"& gt;Big Time Television Home Page</a>
    <li><a href="http://www.cs.colorado.edu/homes/mcbryan/pub lic_html/bb/summary.html"> The Mother-of-all BBS </a>
    <li><a href="http://www.cnam.fr/bin.html/imageWWW">Femmes Femmes Femmes</a>

    And for the doubtful:

    bash-2.03$ ls -l lynx_bookmarks.html -rwxr--r-- 1 llywrch users 4493 Apr 1 1995 lynx_bookmarks.html

    Geoff

    --
    I think I see a trend here. Maybe for them it really would be easier to muzzle the entire internet than to produce p
  32. Re:This might not change anything. by heike · · Score: 1
    Does that mean I still have time to file for the patent (or copyright) of the alphabet then?

  33. Racism - WAS:PTO Question by tommck · · Score: 1

    That's because in the anglo-saxon mindset...
    Ahhh... a little refreshing racism always brightens up a discussion!
    Free your mind.

    --
    ---- It puts the lotion on its skin or else it gets the hose again. It does this whenever it's told.
  34. Re:Searching =/= Crawling by Velox_SwiftFox · · Score: 2

    I'd argue retrieving and analyzing mirrors lists goes a metadata step beyond just using links to more information in the index file (FTP index or index.html) a server sends a client (or in these cases a spider).

    Some of the stuff the patent claims are supposed to do were probably prior-arted by the first person to "ls -Ral|grep 'fileIamlookingfor'" on a network drive, or at least by going another step beyond that to actually grepping the files. Not that this will apply to all of them, AltaVista's no doubt innovated.

    IMHO, "I can patent it because I do X on a network of computers" smells as bad as "I can patent X because I moved X to a computer" in the first place. IANAL but logically these precedents and patents are going to end up worth whatever the results of obvious challenges are.

  35. The snicker heard 'round the world... by elrick_the_brave · · Score: 1

    It is VERY.. nay... EXTREMELY entertaining to see short-sighted, money-mongering, know-it-nots (maybe I'll patent that word) who think they can 'make money' on something that is based solely on the hard work of a lot of largely unknown individuals.. maybe they should .profile somebody once in a while... duh-oy! Brought to you by Rants-is-us... ranting at it's best for nothing and meaning nothing.

    --
    (1st sig) If this were a snappy sig, you'd be reading it right now. (2nd sig) I'm a karma whore. >Insert FUD here
  36. Re:This might not change anything. by RandomPeon · · Score: 3

    "Prior Art" depends not only on the existence of the "art", but on attempts to patent it.

    Utter nonsense. The USPTO guide makes reference to examples of things that are non-patentable in a attempt to explain the obviousness and prior art standards. Examples used in a brochure from a few use back:

    -You can't patent a new coffee cup handle, even if it's ergonmically designed. Coffee cup handles haven't been patented, nor has any sane person tried to patent them, but they still constitute prior art.

    -You can't patent a widely used or distributed idea, regardless of whether the initial innovator asked for a patent. I can't patent the compiler because although the idea is pretty intriguing, it's in such wide use. The fact that the original innovator failed to apply for a patent has no effect.

  37. Re:SlashPatents by Mr.+X · · Score: 1

    If the patent is denied, you still get to keep your invention secret. If they published your application, then all your competitors would then have a nice detailed roadmap on how to make your invention. There is a serious downside to making all patent applications public.

  38. Re:heh by Velox_SwiftFox · · Score: 1

    Some FTP archive sites used to allow remote NFS mounts. I think some early linux distros mounted them by default, or at least as an option.

  39. Re:Archie? by clary · · Score: 1

    Yup, and when I read the earlier reply about WAIS and Veronica, my first thought was "I thought the blonde chick was named Betty, not WAIS!?"

    --

    "Rub her feet." -- L.L.

  40. patent squatting bill? by scoove · · Score: 1

    How about revising the law to apply the same pervasive anti-squatting rules that have been recently added to domain squatters?

    E.g. anyone that files a patent and can later be demonstrated to have violated someone elses prior invention (public or patented) can be liable for damages?

    The logic here would be that since Altavista obviously didn't look very hard, and obviously misled the patent office (who isn't in the job of making sure Altavista didn't lie on its application), then Altavista should be liable.

    In fact, why stop at civil charges? If neglegence was demonstratable, let's throw the CEO in the slammer under criminal charges - theft of intellectual property, fraud, etc.

    *scoove*
    I switched to Google. Why haven't you?

  41. Re:What has driven this recent bad patent movement by vacaman · · Score: 1

    It has more to do with the patent examiners in the USPTO than corporate greed. The examiners are federal employees who are not particularly well paid. The jobs there just don't attract the greatest wiz bangs in the world.

    The examiners are graded on how long they spend on any particular applicaiton. If you submit an application they may rule that there is prior art. With simple modifications of the claims, and persistance with refiling, you can get almost anything patented. They will just eventually give up to get the system cleared of the paper work.

  42. Score one for the Good Guys by TheOutlawTorn · · Score: 4

    Maybe this will start a trend. Big Corp. tries to patent important but universal method/solution, brilliant hacker says "step back, bitch", and pimp slaps them a few times.

    --

    He who joyfully marches in rank and file has already earned my contempt. - "Big Al" Einstein
  43. it's it funny, by Calimus · · Score: 4

    When a company forgets to see if an original creator is dead before they try and steal their work. As of late, companies are either patenting things that are beyond stupid or things already done by other people, cept that most of the original creators are dead. Looks like CMGI made a slight mistake. Can you imaging the mood in the board room today.

    CEO - "what! he's not dead? who the hell told me he was dead and that there was nothing to stop us?"

    Johnson - "Umm, I did sir."

    CEO - "Johnson, thats it, I wanted a piece of the easy money/stupid patant pie and you just blew it."

    Johnson - " I take it I'm fired then sir?"

    CEO - "No, I want you to go kill that guy first, then go and track down every signle geek that belongs to slashdot and kill them so that there will no longer be anyone that might know that this idea isn't original."

    CEO - "Then kill yourself for being stupid."

    --
    Trying to be different, just like everyone else.
  44. Pot. Kettle. Black. by werdna · · Score: 1

    Who is talking in the abstract? I have a good idea about what Archie and Veronica are, as well as what the CMGI patents cover. Mr. Emtage does as well. And so do many other people.

    You do, do you? Name the patent and the claim. Identify each element claimed in Veronica, and there your are.

    If you can't, you don't.

    Legal validity is a completely different questions.

    If you say so. To me, it is difficult to read the article as suggesting anything other than the legal invalidity of the patent.

  45. Re:Get down to brass tacks . . . by werdna · · Score: 2

    Exchange protocol A for protocol B and derived work C for derived work D based on those respective protocols, and the *algorythm* is the same. To a decent computer scientist/programmer, that's basically "obvious". It "obviously" isn't to the USPTO, which I still believe to be the problem.

    I'd like to consider myself a prety decent computer scientist and programmer (as well as a fairly hot patent lawyer). In my view, much depends upon what are A, B, C and D. The change in a single line might be seminal or trivial. As I keep saying , the devil is in the details.

  46. Re:Get down to brass tacks . . . by werdna · · Score: 2

    So, what gives here? Several of the components in the "Preferred Embodiments" strike me as potentially worthy of patent protection, but the actual claims are pretty weak. Does the introductory material that comes before the claims have any weight?

    Absolutely it does, but only in particular and limited ways. The specification defines the terms, and to the extent there is any question as to what the claims mean, the specification is the primary device for understanding it. The specification must also provide a written description of the claimed invention sufficient to enable a person of ordinary skill to practice it.

    Finally, if the claims uses language in means+function or step+function form, then the claims are deemed to be limited to include the corresponding language to that function as set forth in the specifciation.

    If you'd like to get more specific, let's take a particular claim.

    Thanks.

  47. Re:Get down to brass tacks . . . by werdna · · Score: 2

    It isn't that the prior art itself directly makes the patent invalid. It's that the Archie prior art makes idea obvious (and thereby indirectly invalid).

    These words, I do not think that they mean what you think they mean. :-)

    The legal requirement of unobviousness in Section 103 of the patent act requires a substantially different analysis than what you are suggesting. It is never enough to say: Behold A, B is obvious.

  48. as usual, you are misleading by q000921 · · Score: 2
    Talking about this stuff in the abstract is meaningless -- its just whining. Let's get to particulars. Name the patent and the prior art in question, then we can start talking. Until then, we are all spitting in the wind.

    Who is talking in the abstract? I have a good idea about what Archie and Veronica are, as well as what the CMGI patents cover. Mr. Emtage does as well. And so do many other people. If you don't, maybe you should look up this information before accusing others of "spitting in the wind".

    For all we know, the patents in question may have already cited, directly or indirectly, to this very prior art. The issue is not whether the patents relate to pre-existing technology -- this is true of virtually EVERY PATENT EVER EVER.

    We are discussing technical issues and issues of obviousness here: given that Veronica and Archie existed years before AltaVista, is there actually any innovation in AltaVista's claims? Should AltaVista's patents be valid in an equitable patent system that aims to encourage and reward innovation? And does that suggest possible challenges to AltaVista's patents based on obviousness?

    Legal validity is a completely different questions. The legalistic points you make are true and clear to many people involved in the discussion. But they are irrelevant at this point. If you attempt to reduce every discussion of patents and prior art from the start to a point-by-point discussion of legal strategy, you are missing the point. That kind of approach makes a poor lawyer as well as a poor engineer. But, then, you seem to be mainly contributing to this discussion to push a particular agenda, not as either an engineer or a lawyer.

  49. Re:Get down to brass tacks . . . by werdna · · Score: 2

    When you already have lots of people using A+B+C and then D comes along, then A+B+C+D is unworthy for a patent because it is obvious to practitioners in the field.

    Of course not. There are zillions of cases to the contrary.

    All depends upon A, B, C and D. The devil is in the details. Several patents issued on paper clip designs in the past few years, all of which dealt with what you would consider minutia, and all of which included the same basic elements. I have little doubt that they are valid and not rendered obvious on that analysis alone (although they may ultimately be invalid for more particular reasons.).

  50. Re:Poor reflection on AltaVista by djsunkid · · Score: 1

    There is no such thing as bad PR

  51. Probably not nessisary but thanks for the offer by Felinoid · · Score: 1

    It's posable they are suing on obscure processes only used within AltaVista and only known by AltaVista.
    They have over 30 patents they are working with so it seems to me they are going after obscure processes nobody outside AltaVista ever used.
    However it's nice to have people prepaired with prior art in hand just in case.

    My guess is they are losing money...
    I kinda thought of AltaVista as Digitals way of saying "See this is what we can do.. buy our servers"

    Anyway... the idea is sound.. if thies are fundemental to Internet searches then Archie is prior art sence it was around pre Web.. if not then it's a safe bet nobody is infringing and AltaVistas patents are pure trophys...

    --
    I don't actually exist.
  52. "crawl" is the correct term for an FTP search... by AFCArchvile · · Score: 1

    ...considering how an FTP session with an average server seems to "crawl" along. If it isn't on ftp.cdrom.com, then it's probably slow.

    --
    "Ancillary does not mean you get to rule the world." --U.S. Circuit Judge Harry Edwards, speaking to the FCC's lawyer
  53. Re:I am curious... by jmegq · · Score: 1
    Why is it that whenever a problem raises its ugly head in the US, does everyone race to get a lawyer for a few hundred dollars an hour.

    Mostly because it's worth a hundred or so dollars an hour for me not to have to worry about the details. I'd much rather spend my time trying to create, innovate, and do, instead of waste tons of my time and mental energy staying out of jail -- how fortunate that I can just hire someone to take care of that! Meanwhile I can make hundreds of dollars an hour programming (which I'd prefer to be doing in the first place) with all that saved time.

    Of course, since a lot of people are greedy, incompetent, or mean, and lawyers are a subset of "people", you'll see plenty of bad lawyers. The trick is to find a good one.

    Noone negotiates without one, noone seems to be able to manage at all in the business world with out one.

    Perhaps this is because everyone else thinks it's worth their while (and money) to have access to the knowledge and pattern recognition of someone who's seen thousands of legal situations in action and knows all the gotchas to look out for. I'm not personally going to be able to (much less want to) keep track of all that and still do everything else I'm interested in.

    Some people do go to court and represent themselves, and do fine. See the ever-verbose Philip Greenspun's pages for one such account. Philip's also poked around a little at computer-aided litigation, which is a concept you might be interested in as well.

    This model is flawed, its not only self perpetuating, but brings great riches to one sector of the community(legal that is) while sucking dry all others, including individuals.

    How is this different from any service provider? Change "legal" to "programmers" and it still sounds about right. One of the effects of capitalism is that money flows to those who posess a unique advantage; in this case, knowledge of the law, or knowledge of programming. Lucky for you, it is easier in this society than in most to acquire a unique advantage (just file a patent application... haha, jk).

    It is quickly becomming obvious that the US has more laws then it does justice, the patents issue seems to derive straight from that, patents arent really a method of protecting profits, they are an excuse to sue when someone copies your design.

    Well, yes on both: patents are a method of protecting profits (the "unique advantage" part), and they are thus an excuse to sue when someone copies your design; otherwise, there goes your unique advantage and hence ability to make money.

    Now, agreed, there are a load of problems in the present patent system; "submarine" patents that are secretly filed and then, when granted, used to pull the rug out from under those who've indepentently invented and implemented the invention on a large scale.

    Note I said when, not if. Especially in the case of patents on current widespread technologies, that multiple companies are producing.

    Again, that's a problem in the implementation of patents, not the theory. "Ordinary skill in the art" and all that. Definitely needs fixing.

    The result is a legal community run amok, growing fat and rich on a culture that seems to not want to fix this ability to sue everything that crawls or walks.

    Now you're just ranting. Lawyers didn't make these rules; politicians did. Your politicians. Lawyers get paid by people to make the law work in their favor as far as possible.

    And don't forget why corporations often appear so greedy -- publicly traded companies (like, say, RedHat) are legally required to maximize shareholder investements, and thus profits. A company's leadership is being legally negligent if they don't go after opportunities that might come up, like ease of getting patents. Don't like that? Change the laws.

    So wtf is your solution I hear you snarl?

    I'm not snarling. The solution is obvious; change the system. It's happening with the music industry -- piss off enough AOL users who want their Napster and, whaddya know, their congresscritters start changing laws and putting pressure on the recording industry.

    If the price of freedom is the blood of patriots, and every civilization needs a little revolution now and then, the next revolution will be fought by lawyers, and the only blood spilt will be that of their clients wallets.

    Surely you regard this as an improvement? Or is it only other peoples' lives that you hold so cheap?

    Peace out,

  54. Re:Get down to brass tacks . . . by werdna · · Score: 2

    It seems to me that this underlies the most fundamental problem with how patents are used/granted: new patents can be granted that create only token differences from previous patents and/or prior art, while new ideas seem to infringe on previous patents even while they do add new features.

    But it isn't the case. "Token" differences won't satisfy the unobviousness criteria, and new ideas, if indeed they are new, can't infringe an existing claim.

  55. What about lycos? by olof_j · · Score: 2
    So, as far as I can remember, the first web search engine out there was lycos, written by someone at MIT(?). I even had the source code for the web crawler, I might still have it around.

    Did altavista buy that crawler to get the around the prior art issue, or would this be another piece of prior art?

    I need to see if I still have the files around, but I'm afriad they might be gone. :(

  56. Re:Archie on patents by Felinoid · · Score: 1

    What about Veronica? :)

    As memory serves there was an alternitive Archie client named just that...

    --
    I don't actually exist.
  57. Whoops -- I was half wrong . . . by werdna · · Score: 2

    A new idea, while patentable over prior art, can indeed infringe an existing claim. For example, imagine that the prior art is a patent on a chair, comprising a plurality of legs, a seat and a backrest.

    Now, if you get this great idea that arcuate rockers affixed to the legs would make for a wonderful chair for grandparents, you can file a patent application for the rocking chair, comprising a seat, a backrest, a plurality of legs, and an arcuate rocker.

    However, if your patent issued, this would not necessarily grant you the right to manufacture rocking chairs. It would permit you, however, to preclude anyone else from making, using or selling a rocking chair. If the chair patent were still in term, however, you would need a license to manufacture your own.

    The usual scenario, unsurprisingly, is that cross-licenses are negotiated between the two patentees.

  58. David Wetherell and Blackmail by Skiamorphic · · Score: 1

    You've got to understand this guy's mindset. On the occasion of introducing himself to the staff at iCast he went over the whole catalog of CMGI's strategies. One of these was, in concert with his sometime cohort Richard Li of Pacific Century Cyberworks, to start broadcasting white noise on the high orbit X satellites that Li had bought from the Pentagon and thereby shut down communications worldwide.

  59. archies is the original(?) net spider by peter303 · · Score: 2

    I think it is the earliest, being
    around 1989, and before the web.
    It operated before Berners-Lee web.

    So it is patented.

  60. Mod parent up +5 Funny by (void*) · · Score: 1

    ROTFL.

  61. How enforcable are these patents outside the US? by philkerr · · Score: 2
    We all know that the USPTO office will grant anyone a patent for anything these day's (what's next.... someone being granted a patent for water?), but how enforcable are they outside the US.

    Please correct me if I am wrong but are US patents enforcable outside the US?

    Now, if the answer is yes, what would be the costs to bring cases against companies across the globe.

    Would this be a practical mechanism to persue 'patent infringement'?

    If no, then there is no problem. US money-grabbing Corps. will screw only themselves and their contrymen/women. And they can vote to change the mess.

    The rest of the non-US based internet will carry on.

  62. Not Compaq, CMGI by Xuther · · Score: 2

    Compaq stock is up, and altavista was sold to CMGI not long after the aquisition of DIGITAL

  63. Question for the lawyers by Coward,+Anonymous · · Score: 2

    If a court rules that Alan Emtage was the first to develop the methods described in CMGI's patents and CMGI's patents are canceled (or whatever the legal term for canceling a patent is), can Alan Emtage then get patents on the same methods and sue CMGI?

    1. Re:Question for the lawyers by ivan256 · · Score: 1

      No, he can't. You need to file a patent application for your idea within one year of making your ideas public. He could have applied in 1990, but he's a little late.

    2. Re:Question for the lawyers by Anonymous Coward · · Score: 1

      INAL, but no. He published his work more than 2 years ago. A.C. Clarke tried to patent the idea for geosynchronus sattelites. The first time his patent was denied because there was no existing way to launch one. The second time (after sputnik) his claim was denied because he wrote an SF story featuring the idea more than 2 years before the appliation. Time limits may have changed, but I'm pretty sure it isn't 15 years

    3. Re:Question for the lawyers by Artagel · · Score: 1

      Not any more.

      You have 1 year after publication or public use to get your patent application on file. So, Emtage (based on the dates I've seen above) is about twenty years too late to patent what he did back around 1990.

      Also, one year after the patents issued, you can't patent what's in the patents because even if they are not valid (thus can be held invalid by a court) they are a publication. They prevent anyone else from patenting the same subject matter more than a year after the publication.

      The US in this regard is more generous than many foreign countries, which require absolute novelty, where any public use or publication prior to filing an application nixes patentability.

  64. SlashPatents by Midnight+Thunder · · Score: 3

    Maybe the patent office should create a site called SlashPatents, or something, whereby patent applications get submitted for revue by the general public, so that any prior art may be submitted, if there is any. That`s the theory, now to see if such a system would work out in reality.

    --
    Jumpstart the tartan drive.
    1. Re:SlashPatents by Crispin+Cowan · · Score: 2
      Patents appear rather quickly for that. Patent #6,000,000 was granted December 7, 1999, and #6,100,000 was granted August 8, 2000. That makes 406 patents per day. Small wonder that the prior art search is lame.

      Crispin
      ----
      Chief Research Scientist, WireX Communications, Inc.
      Immunix: Hardened Linux Distribution

    2. Re:SlashPatents by KenRH · · Score: 1

      A public patent file woud encurrange a thoroug previus art search and carefull considerations not to make the claims to wide to avoid it being denied. You woud want to be realy sure the patent application holds.

    3. Re:SlashPatents by T.Hobbes · · Score: 1

      Even better, there could be a dedicated section of slashdot where people could submit new patents, and the /. community would audit them. Were there any prior art being passed off as original art in a particular patant, slashdotters would then e-mail the us patent office with a note explaining as much, as well as any proof that could be digitized.

    4. Re:SlashPatents by Rick+the+Red · · Score: 1
      Would that it were that simple. Truth is, TPO rules say they have to keep all applications secret until they approve them. Stupid, eh? What did you expect from bureaucrats?

      The gummint needs to adopt some Open Source ideas, like peer review, but they won't because that would challange their power base ("if we allow just anyone to review patents they might think they don't need us!")

      --
      If all this should have a reason, we would be the last to know.
    5. Re:SlashPatents by sjames · · Score: 2

      f the patent is denied, you still get to keep your invention secret. If they published your application, then all your competitors would then have a nice detailed roadmap on how to make your invention. There is a serious downside to making all patent applications public.

      That's precisely what I think should happen. A big part of the patent problem now is that there is no real consequence to speculativly submitting a weak patent claim in the hopes that it will be approved anyway. Some companies seem to be primarily in the business of submitting dozens of weak patents in the hopes that 1 or 2 will somehow slip through the process and be approved. Then, the extortion begins. The other that didn't get approved just become trade secrets.

      If patent applications are made public, applicants will want to make DAMN sure their invention is genuinely worthy of a patent before they submit it. Marginal ideas that could have some value as trade secrets will simply not get submitted (and mort of them will become public within 5 years either through reverse engineering, rediscovery, or perhaps it was no real secret in the first place such as building a database by crawling the web.

      Since the odds of genuinly reforming any government agency are small, and criminal of civil penelties would be nearly impossable to apply. You would have to prove that the applicant KNEW the patent application was weak as opposed to the many people who genuinly believe that their weak ideas are groundbreaking inventions.

      That leaves building a natural penelty into the process. The public will benefit even if the PTO makes no improvements other than following the new procedure (a safe bet with any government office). It won't solve the problem since they'll still tend to rubber stamp dumb patents, but it will at least eliminate the dumbest ones.

    6. Re:SlashPatents by Thalia · · Score: 3

      Actually, patents are going to be published at 18 months now. You'll be able to send little "see what I found about your patent" notes to the corporations, if you want to spend the time. This rule change became effective November 29, 2000. Thalia

    7. Re:SlashPatents by The+NT+Christ · · Score: 1
      A Slashdot revue?

      No thanks, one can only handle so many Microsoft jokes ;)

      --

      I didn't pay for my operating system either

    8. Re:SlashPatents by brogdon · · Score: 1

      Of course they have to be secret. Patents are ways to protect the idea you just came up with that no one knows about yet. If you tell everybody before you patent it, you've lost your new idea.


      --Brogdon

      --


      This tagline is umop apisdn.
  65. THANK GOD! by Dalroth · · Score: 1

    Oh Thank God, this is good news. Usually reading Slashdot these days is SO DAMN depressing because it's always about Company (X) trying to screw over Consumers (ABC through Z and then some). Every once in awhile though, some ray of hope shines through. We can only hope we see more of this in the future!

    Thank you Alan, it's people like you who are the key to the future.

  66. Right on! by supabeast! · · Score: 1

    Hopefully more of the older programmers out there will be willing to take a stand for their prior art. Just about all software patents are BS and can be beaten this way, but only when people have the courage to stand up to the corporations.

  67. The internet is still a young child. by Anonymous Coward · · Score: 1

    Damn this shit pisses me off. I can not believe the ignorance and stupidity....Well actually I can. I would first like to say that the internet is one of the greatest things that I will probably ever see in my lifetime and have the privilege to use and access I do not own a domain and never have. I come from the bbs days.I am sure many on Slashdot here have not even seen a bbs and that is not your fault. I have been an active daily user of the internet since it was first offered to the public. Everyone jumped on the big internet bandwagon and saw it as a big fucking pot of gold. Now after everyone has realized that it is not, all these big ass DOT COM companies are going down in flames. They are trying to recoup there losses with these intangible patents that have been approved by someone at the patent office who does not have a fucking clue what a URL is, or FTP...Who the fuck is Archie? Gopher? I use to shoot Gophers at my ranch in the hills. Another thing that I notice is that the majority of this shit is coming out of the United States, the country that I live in and it makes me want to puke..."Home Of The Free Land Of The Brave". I am proud to be an American, and all these ignorant, money grubbing, scum sucking assholes give me a bad name. "patenting non-physical concepts" ---damn this is a crock of shit. Turn out the lights baby and then what do ya have. Here I have an idea. I wonder if internet content that posts news and information articles, then allows people to post comments and replies has been patented? Fuck if it hasn't I better get in there and get that one. I could sue damn near everyone that has a "URL". There is that "URL again. What the hell is that. Can anyone say "Usenet"? The internet is still young and we have raped and bastardized this infant Here is a little bit I copied and quoted from a link in the threads that I liked. "The internet was built from the ground up because of the open standards and technical donations made by the original founders of the internet (I'm not just talking about the web/http either). Your technology is not only founded upon these gifts to the community, but the things you have been granted patents for are direct copies from technology that had existed for generations before the http protocol was widely used. I find it disgusting that a company would attempt to steal fundamental technologies from the greater community. You receiving these patents (and attempting to enforce them) is like you saying "look, the internet only exists because of our technology", when in fact it is completely the opposite. You only exist as a company due to the widely successful, open standards based, internet community. Please, start competing as a company and stop trying to slip patents through the system on trivial/fundamental concepts that existed before you made use of them on the internet. By your actions, it is obvious that you are, in effect, trying to steal from the internet and it's founding fathers. -- Brian Hayward" Thanks For Listening Damn I feel better now. :)

  68. Re:Get down to brass tacks . . . by BlackStar · · Score: 2
    Given those points, where does the responsibility of improving the process lie?

    The other point is the concept of "... the claim must be non-obvious to a practitioner of the field..." and THIS is where the archie defense has serious teeth. Whether that will hold in court I have no idea, but the patents such as CMGI have registered are ludicrous. Exchange protocol A for protocol B and derived work C for derived work D based on those respective protocols, and the *algorythm* is the same. To a decent computer scientist/programmer, that's basically "obvious". It "obviously" isn't to the USPTO, which I still believe to be the problem.

    So as usual, the lawyers fight over the niggly points, and no one cares about the soundness, correctness or morality of the law and the process that spawned the conflict.

  69. Re:Cool! Rennaissance time approaching! by jazman_777 · · Score: 1

    >You know, a cool history prof of mine said that one of the signs of a Rennaissance is a basic concern w/ language: the actual meaning and use of words, etc.

    Wow, between you and I, it's kinda like, you know, really cool!

    --
    Slashdot: Failed Car Analogies. Amateur Lawyering. Anecdote Battles.
  70. Re:What has driven this recent bad patent movement by Your+Login+Here · · Score: 1

    I think the problem is we need a better way to solve patent disputes then litigation... and the software industry isn't the worst hit. Take a look at this sciam.com article.

  71. Re:Get down to brass tacks . . . by swillden · · Score: 3

    Once again, let me emphasize that it is simply pointless to speak about patents in the abstract. The abstract and general subject matter of the patent simply does not inform the question whether a patent is infringed or invalid. The bottom line is the specifics of the patent claims asserted and a particular apparatus or method usage alleged to infringe

    Okay, I got down to brass tacks and read one of Altavista's patents. Specifically, I read all 44 pages of US6021409: Method for parsing, indexing and searching world-wide-web pages. I chose that one because the title and abstract look like something that should not be patentable.

    What I found was very interesting.

    The first 27 pages are a bunch of diagrams, mostly of data structures, with a few network and flow diagrams thrown in. Pages 28-42 are a detailed description of the problems involved in creating an index for a "database" as unbelievably massive as the web and a fairly detailed description of a complex set of data structures, encoding systems, compression systems and algorithms that solve the problem (all of which comes under the heading "Preferred Embodiments"). It's a hard problem and it seems to me that the details of a good solution are worthy of protection. Finally, beginning on the bottom of page 42 and continuing through page 44 there are a set of 33 claims.

    Now, I understand that a key standard in the application of patent law is that the idea must not be obvious to a practitioner of the field. I'm not sure what standard the court would use as a practitioner of the field, but I guarantee you that the system described in pages 28-42 is not obvious to me or anyone I know (and I know some sharp people who've been in this business for a long, long time). I strongly doubt that Archie did any of the sophisticated things that the Altavista patent describes. If it did, then Emtage should have been shot for implementing a system that was massively more complex that necessary. Archie was a simple file name indexer and when it was big the net was small. Veronica had a little more need for some of the techniques, but again, the web is so *much* larger than gopher ever was that Veronica should have had no need for the levels of complexity described.

    However, I've had some significant dealings with patent attorneys in the past, both from the patent application process and from the patent litigation process, and I concur with what werdna said: It's the claims that matter. Well, in Altavista's patent, after the excercise in computer science erudition displayed in the "Preferred Embodiments", the actual claims of the patent are generic, vague and broad.

    So, what gives here? Several of the components in the "Preferred Embodiments" strike me as potentially worthy of patent protection, but the actual claims are pretty weak. Does the introductory material that comes before the claims have any weight?

    At the end of my read, I'm not sure whether I think the patent is a worthy contribution to human knowledge or a complete crock of shit, because although there's some good stuff in it, I'm not sure that any of the good stuff counts.

    --
    Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
  72. Aren't you paying attention? by roystgnr · · Score: 3

    The Prior Art Search Engine developers would have to get permission to use Altavista's "search engine" patent!

  73. The Original Idea by octalman · · Score: 2

    AFAIR Tim Berners-Lee described hyper-linking in his original proposal for the Internet. His proposal should be carefully reviewed by all claims candidates, including the Patent Office and Al Gore, with respect to all claims of invention with respect to the internet.

    I recall reading Tim's proposal in some magazine -- don't recall for sure (CRS syndrome at work here), but I think it was published in Dr. Dobb's Journal (of Computer Calisthentics and Orthodontia - Running Light without Overbyte).

    The REAL problem, however, is that in the dim, distant past (CRS notwithstanding), the Patent Office reviewed all applications so thoroughly that it took far too long for patents to be issued, so Congress changed the rules to ease the process and reduce the cost of obtaining a patent, but didn't include a reasonable enough objection mechanism. If you don't like the way it works, write your U S Senators and Congressmen!

    1. Re:The Original Idea by vidarh · · Score: 2
      Tim Berners-Lee didn't write any "original proposal" for the Internet. Tim Berners-Lee is the man behind the web, not the net.

      The internet had been around for more than 20 years when he invented the web, and had it's first connections outside the US for 18-19 years (UK and Norway were connected in 1973 if I remember correctly).

    2. Re:The Original Idea by octalman · · Score: 1

      Oops, careless wording; I know better. The point is that Tim Berners-Lee formulated hyperlinking in his WWW proposal long before any of these hyperlinking patent ideas could have possibly been conceived. And, as others have pointed out, this same concept was at work via ftp long before WWW.

  74. Great Discussion, But What by vergil · · Score: 4
    ...exactly are the patents that sparked this controversy?

    CMGI's Nov. 13, 2000 press release mentions that Altavista was awarded "four new patents for search technology" which cover:

    "proprietary search technology in the areas of identifying and eliminating duplicate pages in an index, ranking results by degrees of relevancy, data structures for searching and indexing, and 'spidering' techniques that crawl the World Wide Web and play a key role in building an index."

    I used the U.S. PTO's patent database, searched for the string "altavista" under the "assignee" field and came up with these two gems:

    6,138,113: "Method for identifying near duplicate pages in a hyperlinked database"

    and

    6,112,203: "Method for ranking documents in a hyperlinked environment using connectivity and selective content analysis"

    Has anyone found the other Altavista search engine patents in question? They might have been awarded to a different firm, then licensed to Altavista.

    Sincerely,
    Vergil
    Vergil Bushnell

  75. Maybe this is the way to stop stupid patents by mr_tenor · · Score: 2

    From my little legal knowledge, I seem to recall that intellectual ownership (copyright?) of anything stays with a person until 50 years after their death or whatever. If this is the case, maybe a full and detailed documentation of the development of internet technologies and exactly who did what when, along with more outspeaking from computer pioneers will be able to counteract the validity of some of these 'patents'. Because as we all know, lots of these patents aren't just overly broad and obvious, they're things which were hacked up in universities and research labs decades ago. One of the sticking points, though, is proving to courts et cetera that an idea isn't 'novel' as they call it. In some cases, patent challenging has failed because something was SO obvious that no-one ever published any papers or anything on it. And so mr big company could say in court "no one thought of this before us" and nobody could get any evidence to counter this.

  76. Re:What has driven this recent bad patent movement by HiNote · · Score: 1

    Greed.
    It can be done.
    There is no (real) consequence for a failed attempt.
    Why not?

  77. Poor reflection on AltaVista by lgraba · · Score: 1

    I will be interested to see how this plays out as bad PR for AltaVista. Someone (in this case, the author of Archie) does some fundamental work that is widely deployed, then some other company tries to take credit for this work in the form of patents. We are not amused.

  78. Re:It's about time. by wnissen · · Score: 2

    I was thinking that it would be a good idea to do a distributed war against those who try to enforce patents that are worthless. We could bake special "Patent Pies" and fling them at the faces of David Wetherell et al whenever they appear in public. Maybe they could be made of my granny's patented pecan pie recipe.

    Would this be violent and childish? Sure. But I see two things working in our favor. First, it's pretty damn violent and childish to abuse a clearly fatally broken system to put your competitors out of business, all the while claiming that it was they who stole from you. Second, the average /. reader is 14 years old with plenty of free time, so we could be really effective.

    Walt

  79. Is prior art really enough? by dougmc · · Score: 5
    This is great that the author of Archive is coming forward and calling shenanigans on Altavista ...

    but ...

    Is it enough?

    I'm not a lawyer, and certainly not a patent lawyer, but as I understand it there's a process called `predatory patenting' where a company will find a patent that it wants (something that was patented by somebody else), and then patent every possible application of the original patent. All patents reference the original patent.

    Basically that means that if you want to use any of these applications of the original patent, you have to have the permission of all patent owners involved.

    (Normally this is done in an attempt to make the original patent holder allow the company in question to use his patent without royalties. Unfair, but apparantly legal.)

    Well, in this case, there's no original patent (the Archie author didn't patent the idea of `indexing') ... but if AltaVista patents every possible use of indexing (patent 1: indexing HTTP sites, patent 2: indexing intranets, patent 3: indexing internets ... patent 644: indexing Pokemon collections, etc.) then we may still be screwed. Only the original idea (indexing ftp sites, and gopher sites if the Veronica author comes forwards) would be truly protected by the `prior art'.

    It seems to me the only way out of this legal sinkhole would be to convince the Patent Office to actually apply the two most important tenants of patent law - 1: prior art invalidates a patent application and 2: the idea must not be obvious to the layperson. Tenant #2 is just as important as #1.

    In any event, I hope I'm wrong :)

    1. Re:Is prior art really enough? by mr_death · · Score: 1
      It seems to me the only way out of this legal sinkhole would be to convince the Patent Office to actually apply the two most important tenants of patent law - 1: prior art invalidates a patent application and 2: the idea must not be obvious to the layperson. Tenant #2 is just as important as #1.

      In any event, I hope I'm wrong :)

      You are. :-) First, prior art does not invalidate an application. The discovery of prior art might require the application to narrow his or her claims. Or, if the patent has already issued, prior art is ammunition in a lawsuit. Prior Art, in and of itself, does not automagically invalidate a patent.

      Second, a patent must be useful, novel (that's where prior art becomes a factor), and not obvious to someone "skilled in the art". The legal definition of nonobvious seems to be "was the exact idea published more than one year ago?", or if the pieces of the invention were published in several places, and some other publication suggests that these ideas be brought together.

      IANAL, but I have been through the patenting process. Your Mileage May Vary. What seems to upset many slashdot readers is that the legal and business rules for patents do not line up with the "common sense" rules of developers.

      --
      It's Linux, damnit! Pay no attention to renaming attempts by self-aggrandizing blowhards.
  80. A simple answer: "getting away with it" by thex23 · · Score: 4
    The reason stuff like this happens is based on the behaviour of the complex web of societies we have come to know as "the corporate world". It isn't easy to explain the nature of this world, even though we are all part of it. One thing I know, though: permission is passive, resistance is active. And the world is all about permitting the expansion of corporate rights, and resisting the expansion of individual rights.

    In this feedback-based system, the more companies that notice somebody is getting away with something (eg: patents that are blantantly obvious gambits for market dominance) the more instances you will find of this behaviour. They all drive for the gap in the wall with whatever they can scrounge up, hoping to make it before the lights come on. So it's going to get worse before it gets better.

    Why? Because "the system" learns. The sight of somebody getting away with looting an unprotected store during a riot is all the incentive you need to draw others into that activity. And the process of applying for patents (along with the other legal forms of attack on the common good) is not set up to handle the kind of things it has to. So it fails to effectively discern between patents of value and mere speculation. Stopping it is going to be painful, costly, and drawn out. The companies who will get hurt aren't the ones who have already done their thing, but the blundering morons to come.

    The side-effect of all this happening is that by fighting to gain the legal high ground based on Intellectual Property, Copyrights, Trademarks, and Patents, we end up with a society that is being transformed at the very foundations: language. We are all victims, even the people in these corporations, of an undermining public speech. Holding back medecine from those who need it, holding back innovation because it isn't in the interest of the shareholders, forcing the market to bend to their will because they have the endorsement of what is supposed to be an organ of democracy.

    This will continue as long as we allow it to.


    We thieves, we liars, we vandals, and poets. Networked agents of Cthulhu Borealis.

  81. Patent office agenda by TWX_the_Linux_Zealot · · Score: 2

    the patent office has a very simple agenda... to let companies based in the United States rape the international patent treaties by patenting everything up to (or sometimes including) the kitchen sink, so if a foreign company actually does come up with something nifty and novel they can't use it in the United States. Since the Internet is global, future laws COULD set precedents that make the offending site have to block United States of Americans from accessing the site, or make the offender subject to extradition or something silly like that. Unfortunately allowing for patents on things like "one click shopping" (linking via cookie id to a database), Network Address Translation (rewriting the addressing part of a TCP/IP Packet), and others are simply ridiculous. IMHO, if one can implement something without looking at someone else's source code, then they should be able to LEAGALLY do it. This bullshit of patenting an extremely black-box concept is stupid. I'm surprised someone hasn't tried to patent the biological ATP to ADP conversion for respiration or something else like that.

    </rant>

    "Titanic was 3hr and 17min long. They could have lost 3hr and 17min from that."

    --

    IBM had PL/1, with syntax worse than JOSS,
    And everywhere the language went, it was a total loss...
    1. Re:Patent office agenda by IP,+Daily · · Score: 3

      Not all US patents are issued to US companies; a large percentage of US patents are issued to foreign companies. Last year, only four of the top ten US patent acquiring companies were from the US. The year before it was three: http://www.uspto.gov/web/offices/com/speeches/01-0 2.htm

    2. Re:Patent office agenda by squiggleslash · · Score: 1
      Point one - a lot of patents do not originate in the US - it just so happens that a lot of the more publicized BAD ones have been issues here. I've seen plenty of stupid ones issued from Germany, Japan, UK, etc... but the US ones have been pretty bad - which leads to point two...
      There's a reason for that - the US is, to the best of my knowledge, the only country in the world that accepts and supports the notion of "software patents". Of course, this still allows foriegn companies to patent things in the US but it gives US corporations a head start.

      Probably the best thing that could happen right now is for the notion of software patents to be abolished. But I don't hold out much hope of that happening - if anything, it seems likely this type of patent will be extended outside of the US.
      --

      --
      You are not alone. This is not normal. None of this is normal.
    3. Re:Patent office agenda by tewwetruggur · · Score: 2
      hmm... I seem to sense some anger from you...

      Point one - a lot of patents do not originate in the US - it just so happens that a lot of the more publicized BAD ones have been issues here. I've seen plenty of stupid ones issued from Germany, Japan, UK, etc... but the US ones have been pretty bad - which leads to point two...

      Point two - my question on the patent office's agenda was partly rhetorical, I suppose, since I've answered it in the past myself... the agenda is as follows: (please note that it has NOTHING to do with any other country and the IP-screwing thereof)
      the agenda is to let the patents through and make the companies fight it out in court. It comes down to "who ever has the $$$ can win", which is sad, as it really messes up the "balance" and hurts small companies. A really bad patent can be issued, a small company can have a great argument against it, but the big company can keep it locked up in the courts forever.

      What it all comes down to is this - the patent system is showing its age and its flaws. The office is showing their lack of staffing and lack of insight/knowledge. And the patent lawyers are showing their muscle - too many of them in abusive ways.

      Things need to change - perhaps your local congress-person or senator might be able to help, assuming the lobbyists aren't too trenched in their pockets...

      but anyway... enough ranting for one day.

      --
      Hi! This is the Sig, blatantly attached to the end of this comment.
  82. Archie on patents by bloodSausage · · Score: 1

    Was I the only one that read the story title and then wondered what the heck Archie and Jughead had to do with patent challenges?

    1. Re:Archie on patents by vidarh · · Score: 1

      Veronica indexed gopher.

  83. Oh god by BananaBoht · · Score: 1

    You know after reading this, I'm laughing at AV. For years I've been using AV and its advanced features to find things. Well I think AV is pretty much on my sh*t list. WOuldn't file systems on our computers count as indexing? Come on AV, come and sue me. Come on. I've indexed my files. I need a good spanking.

  84. Is there anything he can do? by Wariac · · Score: 2


    While this whole situation does suck, wouldn't this be a case where since he didn't file a patent on these underlying search technologies, anyone else could do so? If they have already been granted the patent, isn't that the end of it?

    --
    Remember it, write it down, take a picture, I dont give a fsck!
  85. Re:Very glad, but very sad... by tewwetruggur · · Score: 2
    I agree. And it is indeed quite sad.

    What I really hope that Slashdot readers get out of all this is that these patent problems are not limited to the "tech" industry. These problems abound - they are in every industry. Everything I do must be carefully researched because our whole industry (biotech/drug delivery) is a patent minefield. Everybody and their brother/sister has some sort of patent on some aspect of delivery methods, drug preparations, something... its just hideous - and we're left to either cave in and "lisence" something that shouldn't be, or to fight it in court. What's worse is when you find yourself having to apply for patents as well in order to stay alive. It has become a vicious circle that should never have happened in the first place. It really gets angering and frustrating - yet another wonderful source of stress... oh joy.

    Again - the system really, REALLY needs to change - but who's going to do it?

    --
    Hi! This is the Sig, blatantly attached to the end of this comment.
  86. How about a 'Prior Art' Search Engine? by Bonker · · Score: 1

    Bitch-slap CGMI *and* all the other assholes who want to patent common-sense shit.

    Come up with an idea... *ANY IDEA*, be it an invention, a logo, a name... and submit it to the engine. It will only take a few years before so little technology and IP is patentable/copyrightable/trademarkable/ that the system will fail from disuse.

    --
    The next Slashdot story will be ready soon, but subscribers can beat the rush and slashdot the links early!
  87. Re:good precident by mpe · · Score: 2

    If (when?) this patent gets shot down, it might start to send a message to other companies out there basing themselves off of frivolous patents.

    Unlikely, if their only loss was a patent, if they were raided by someone like the FBI and shut down for at least as long as it took to try the people involved for fraud then that might send the right message.
    But if that was likely to happen then the default with the USPO would be to deny patent applications.

  88. Re:Proof Positive! by mpe · · Score: 2

    Einstein worked at the patent office.

    Apparently he was also highly cynical about the applications he saw, a skill current patent examiners appears to lack.

  89. Re:This might not change anything. by mpe · · Score: 2

    If AltaVista's crawler does things different, like using HTTP instead of FTP, or crawling without first knowing the fqdn of the well-known public servers, then they're not infringing (much).

    Both of these differences involve tiny issues. How often are patents being issues when someone takes something well known and either makes some trivial change to it or writes the description in obscure language/jargon.
    When this happens the only sensible way to regard the application is a fraud.

  90. A+B+whatever by Lonesmurf · · Score: 2

    Ah yes, but you are forgetting the very important fact that when CMGI sues, and it has been proven in the past that there patents are for a very specific set of ideas (blue A+green B) and not a very broad range (A+B+C..), then they can only sue for overlap in their patent realm. They can't say one thing in one court room, and say something different in another, any semi-competent lawyer would blow their case right out of the water.

    Then again, on the flip side, if a courtroom upholds the overly broad patent range, then well, you all know how bad that it for the industry.

    Rami
    --

  91. Re:It's about time. WebCrawler?? by Panaflex · · Score: 2

    WebCrawler opened to the public on April 20, 1994. It was started as a research project at the University of Washington. America Online purchased it in March 1995 and was the online service's preferred search engine until Nov. 1996. That was when Excite, a WebCrawler competitor, acquired the service. Excite continues to run WebCrawler as an independent search engine.

    AltaVista opened in December 1995 as a Digital Research Project.

    Pan

    --
    I said no... but I missed and it came out yes.
  92. Re:heh by bellings · · Score: 2
    Ok. We have proof that slashdot is not a geeksite. Commands like:
    find . -print > file ; grep string file , or
    ls -lR > file | grep string
    don't fill me with a warm fuzzy glow. To find a string in a file, use:
    find . -print | xargs grep string (works on just about anything),
    find | xargs grep string
    (works with Gnu find), or
    rgrep string .
    (works with rgrep, but rgrep is ugly).
    Of course, I had never imagined the use for rgrep before now, since a cursory glance made it look less powerful than either find or grep alone -- never use one tool when two tools are simpler, that's my motto. It's good to know at last why something like rgrep exists -- people can't handle relatively simple plumbing.
    --
    Slashdot is jumping the shark. I'm just driving the boat.
  93. Validity of US Patents Abroad by vergil · · Score: 5
    At least one /.er asked whether or not U.S. Patents -- especially business method and software patents (which are not awarded by all nations) -- are enforceable abroad.

    The answer is potentially.
    I'll try to answer this question in two parts.

    1. First off, the US PTO has been soundly criticized for granting patents on software and business methods. While the rest of the world guffaws at the US PTO, the US government has been quietly attempting to "harmonize" patent examining procedures abroad.

    For instance, on October 24, 2000, the office of the United States Trade Representative (USTR) drafted a Memorandum of Understanding between the U.S. and Jordan concerning IP protection. Here is provision #5 of the MoU:

    "Jordan shall take all steps necessary to clarify that the exclusion from patent protection of 'mathematical methods' in Article 4(B) of Jordan's Patent Law does not include such 'methods' as business methods or computer-related inventions."

    In other words, the US government is attempting to export its penchant for granting lousy patents to other nations.

    2. Second, consider an international convention is currently being negotiated between representatives of 47 nations. The Hague Conference on Private International Law's "Proposed Convention on Jurisdiction and Foreign Judgements in Civil and Commercial Matters" -- or "Hague Convention" is an attempt to render legal judgements between nations enforceable. If the Hague Convention is ratified by member nations, the following scenario may occur:

    Multinational Corporation X (native to Britain) patents a fundamental web standard in the United States, where such patents are allowed. X sues its competitors (who reside in nations that do not tend to grant such patents) in a U.S. court, and under the Hague Convention, is able to make the judgement enforceable in other countries -- even if those other countries do not allow patents on web standards. Imagine what the Hague Convention might do to increase the liability of international Free-Software developers.

    The U.S. PTO recently solicited comments from the public about the Hague Convention and its effect on patents and intellectual property. You can read the comments here. My organization also has a page on the Hague Convention here.

    I hope that helps answer your question about the enforcement of U.S. patents abroad. Sincerely,
    Vergil
    Vergil Bushnell

  94. Re:How enforcable are these patents outside the US by achurch · · Score: 1

    I don't know of a case that has declared them enforceable, but I have heard of a Japanese company with a patent on charging ISP users based on connect time or something absurd like that which is attempting to sue other Japanese companies under US patent law (which is more lenient than Japanese law), on the basis that said ISPs can be accessed from the US as well as Japan.

    If it succeeds, I think I may just crawl under a rock and shrivel up...

    --
    BACKNEXTFINISHCANCEL

  95. Re:Internet Search History by marnanel · · Score: 1
    <a href="http://www.cnam.fr/bin.html/ imageWWW">Fem mes Femmes Femmes</a>

    In lynx?

    M

    --
    GROGGS: alive and well and living in
  96. Re:About Time... by aredubya74 · · Score: 1

    The University of Minnesota seems to be a pretty large institution, with decent resources. I believe they hold the strings on HTTP's predecessor, gopher. Let's get them to countersue British Telecom over their garbage "we invented hyperlinks, really!" patent.

    --

    RW

  97. It's in the Patent Offices interest by Gorimek · · Score: 3

    It's pretty safe to assume that like almost everyone else, the Patent Office (USPTO) prefers to be rich and powerful to the alternatives.

    The more patents are issued, the bigger the USPTO needs to be. The easier it gets to get a patent, the more applications will come in. The organization grows and grows, and it is good to be in charge of the USPTO!

    Until it becomes a question on the national political agenda, there is probably not much to do about it. Rounded off to the nearest percent of voters, nobody really cares about patents.

  98. Two wrongs don't make a right by scorbett · · Score: 1
    If a court rules that Alan Emtage was the first to develop the methods described in CMGI's patents and CMGI's patents are canceled (or whatever the legal term for canceling a patent is), can Alan Emtage then get patents on the same methods and sue CMGI?

    Two wrongs don't make a right. You can't beat these slimeballs by sinking to their level, it would be better instead to work towards patent reform (or abolishment, whichever comes first). Check these out:


    --

  99. Searching =/= Crawling by Cy+Guy · · Score: 2

    I don't think the precedent is that good.

    The patent is for searching by using crawling. i.e. whenever a new page is found, searching the source of that page for links to other pages that haven't been indexed yet.

    While you could possible do this for FTP sites by reading the mirrors list, it's hardly the same thing.

    If there is a precedent, then I think it would have to have been from Gopher space. Has anyone talked to the creator of Veronica, or the mother Gopher people at UMN to find out how they created their databases?

    Another possiblity is that the precedent would be from hypercard searches, or some other localized searching algorythm for linked data, but unless it was used for searching a network of computers, the CMGI patent might still have some validity.

  100. I am curious... by metal+terror · · Score: 1

    Why is it that whenever a problem raises its ugly head in the US, does everyone race to get a lawyer for a few hundred dollars an hour. Noone negotiates without one, noone seems to be able to manage at all in the business world with out one. This model is flawed, its not only self perpetuating, but brings great riches to one sector of the community(legal that is) while sucking dry all others, including individuals. It is quickly becomming obvious that the US has more laws then it does justice, the patents issue seems to derive straight from that, patents arent really a method of protecting profits, they are an excuse to sue when someone copies your design. Note I said when, not if. Especially in the case of patents on current widespread technologies, that multiple companies are producing. The result is a legal community run amok, growing fat and rich on a culture that seems to not want to fix this ability to sue everything that crawls or walks. Some individuals feel that it is their opportunity to grow rich quickly through a lawsuit in their favour, while corporations see it merely as a matter of sue to scare, allowing fear to drive competition away and to keep their product on top. Royalties are also a factor of course, but only through the same fear factor of pay or else legal woes will bang at your door. So wtf is your solution I hear you snarl? Don't have one, but one should be sought, one that is actually equitable, one that is fair to all parties and is not subject to petty party politics, fat corporations, or open to abuse. The model is out there, just needs to be thought out and created. The computer community is not new to fixing the unfixable, or creating complex systems that improve on the old. The alternative is not attractive. The drive for a new legal system, including corporate and patent law should start from here, by us, for I believe our industry has the most to gain from a reformed justice system, if only because our industry is now growing beyond the bounds of antiquated laws and concepts of law, and our community is quickly realizing the real limits of the law in the real world, it rarely goes after the true thugs and corporations, but it does go after those individuals that threaten those corporate interests. If the price of freedom is the blood of patriots, and every civilization needs a little revolution now and then, the next revolution will be fought by lawyers, and the only blood spilt will be that of their clients wallets.

    --

  101. Re:Archie? by jedidiah · · Score: 1

    Actually, archie can still be quite useful at finding download sites that haven't been slashdotted yet...

    --
    A Pirate and a Puritan look the same on a balance sheet.
  102. Re:What has driven this recent bad patent movement by Mr_Ust · · Score: 1

    During an interview with Amazon.com, I asked about some of their questionable policies, including the patents they were going after.

    I was fed the company line that they would go agressively after any patent they could in order to stay ahead of the competition. My sense of things told me that the interviewer (who was a developer and not a marketroid) really had no grasp of the situation but was just regurgitating company policy.

    From this experience it seems that companies will (ab)use the system in any way they can to stay ahead rather than try to change what is inherently broken.

    So, to answer your questions: yes, the system is incompetent (not necessarily corrupt). They just don't have the experience or the time to go through all the patents and look for prior art. Greed of industry is definitely the primary reason for the sad state of the patent system from my experience.

  103. Freudian Slip? by Lozzer · · Score: 1

    I think you meant lay off, but somehow lawoff seems appropriate too.

    --
    Special Relativity: The person in the other queue thinks yours is moving faster.
  104. It's about time. by aidoneus · · Score: 3

    Rather than blabber on about prior art without making any effort to show it, Alan Emtage actually is taking a stand against CMGI with this action. Congratulations for being so bold as to actually defend your work, Mr. Emtage!

    1. Re:It's about time. by brass1 · · Score: 1

      Your plan has merrit. However, if you carry it out I'll then be forced to sue you for infringing on my pie throwing and revenge patents.

  105. Re:Get down to brass tacks . . . by Malcontent · · Score: 1

    You don't need to be brilliant hacker to bitchslap a corp. Just go organize their employees, that's right form a union and they'll hate you forever.

    --

    War is necrophilia.

  106. Thank goodness by mr.nicholas · · Score: 2
    Thank goodness someone is stepping forward to ensure these insane patents aren't enforced.

    Perhaps this will be the first step in reshaping patent law. If enough of the people who TRULY created these things come forward, and are supported by The System, perhaps mega-mondo-corps will stop trying to take all the credit (and profit).

  107. Re:This might not change anything. by sconeu · · Score: 2

    If AltaVista's crawler does things different, like using HTTP instead of FTP, or crawling without first knowing the fqdn of the well-known public servers, then they're not infringing (much).

    But then they still fail the obviousness test. Since ARCHIE was out there indexing the FTP sites, it would be obvious to a skilled practicioner of the art how to index HTTP.

    --
    General Relativity: Space-time tells matter where to go; Matter tells space-time what shape to be.
  108. About Time... by sconeu · · Score: 2

    I've been waiting for some of the 'Net pioneers to come out against this crap. Looks like Emtage is one of the few who has the resources to fight this!

    --
    General Relativity: Space-time tells matter where to go; Matter tells space-time what shape to be.
  109. "convince the USPTO..." by Speare · · Score: 4

    It seems to me the only way out of this legal sinkhole would be to convince the Patent Office to ...

    Stop there. The USPTO doesn't get involved with the conflict once the Patent is granted. The courts have to do that. A Patent is a 'right to sue,' and only the suits themselves can resolve the Patent.

    [stock rant on the subject]

    Patents are not about who is right, or who is first; patents are about who can sue.

    The US PTO is a money-making service for the government, and this fact is why it operates as it does.

    There is a misconception that it is the central duty of the PTO to form a blockade against granting patents. The PTO can and will block applications where there's heavy similarity with prior art or existing patents, but that's really just a guideline to using the service, not the core function.

    The PTO's purpose is to grant patents for a fee, and it's wholly suited to do so.

    The application vetting process of the PTO is a cost center for the operation of the PTO. This is akin to saying that customer service is a cost center for the operation of AT&T. It is required, but they'll cut costs as much as they can get away with.

    To fix the patent application vetting process, two things must happen:

    • Congress must stop using the PTO's filing fees as a revenue source for other pet interests instead of the PTO's own budget, and
    • The PTO needs to allow third parties to aid the vetting process by challenging potential patents before they're granted.

    At the minimum, if the PTO would publish the abstract for each patent application at the time of filing, then third parties could submit "helpful" arguments against controversial applications. The PTO needn't publish the details, just the abstract; the PTO can then weigh obviousness against challenges without incurring the costs of doing all the searching themselves.

    Once a patent has been granted, the Patent Office does not get involved in disputes; that is a matter for the courts.

    [end of stock rant on the subject]

    --
    [ .sig file not found ]
    1. Re:"convince the USPTO..." by dougmc · · Score: 2
      It seems to me the only way out of this legal sinkhole would be to convince the Patent Office to ...
      Stop there. The USPTO doesn't get involved with the conflict once the Patent is granted. The courts have to do that. A Patent is a 'right to sue,' and only the suits themselves can resolve the Patent.
      Perhaps I should have been more clear ...

      The idea of `indexing' is obvious to the layperson, and based on that, AltaVista's patents should not have been granted. Had they not been granted, there would be no problem.

      I was not suggesting that the USPTO get involved now. I was suggesting that they need to start obeying their own rules -- which is basically the same thing you said, but you took it further, which is good. By `legal sinkhole', I meant the mess that patents in general have become, not specifically the AltaVista indexing patents.

      I guess if we ever DO reform the patent process, we're still going to have a lot of bad existing patents to deal with ...

    2. Re:"convince the USPTO..." by KFury · · Score: 2

      Anyone has the right to sue anyone over anything. That's the basis of the US civil court. A patent gives added basis for winning a suit. It does not grant them a capability to sue that they did not otherwise have.

      Kevin Fox

  110. Re:This might not change anything. by wiredog · · Score: 2

    Just ask Arthur C. Clarke if he's owed any money by ComSat.
    But Comsat didn't patent geo-synchronous satellites. IIRC the waterbed was ruled to be non-patentable because RAH had described it in one of his books.

  111. Re:Sad by Speed+Racer · · Score: 1

    That is unethical and you may have a legal case against your attorney. Negligence at best and possibly gross misconduct. Of course, IANAL. . .

    --
    Free Mac Mini. Yes, I'm
  112. Sad by EraseEraseMe · · Score: 3
    It's a sad state of affairs when an idea, product, technology can be patented without even the effort to prove prior art. It's an even SADDER state of affairs when, where prior art is not only proven, but obviously so; so obvious that it makes the US Patent Office look neanderthalic. If this isn't a case for improving or even reorganizing the Patenting methods currently in use, I don't know what is.

    The Slashdot Patent Pending logo is looking more and more realistic every day.

    --
    "Anybody who tells me I can't use a program because it's not open source, go suck on rms. I'm not interested." (LT 2004)
    1. Re:Sad by rabagley · · Score: 4

      Even worse is the fact that when I was discussing a patent with a patent attorney, I was advised that I should not even think about doing a prior art search so that if there was a conflict with prior art, I could deny any assertion that my patent was knowingly improperly filed. I was actually discouraged by my attorney from learning if my idea had already been invented.

      Not only is the system royally f**cked up, but it appears to be getting worse, by design.

      Regards,
      Ross

  113. PTO Reform by fmaxwell · · Score: 2
    The biggest problem in the PTO is that the examiners are apparently not held accountable for issuing patents that are later overturned. Charge each examiner $1000 for every patent they issue that is later overturned and they will exercise a lot more care before granting the patents.

    1. Re:PTO Reform by Artagel · · Score: 1

      Let's see. Patent gets overturned based on prior art that took months of searching (and maybe tens of thousands of dollars) to find and this is the EXAMINER'S fault?

      Why should the examiner bear the brunt of the result that was dictated by the resources he had? Not many patents are invalidated solely in view of the prior art that was in front of the examiner.

  114. good precident by Saint+Nobody · · Score: 2

    lately, companies have been getting patents for all sorts of insanely simple things, including those with obvious prior art. Altavista wasn't even the first search engine one the web, let alone the internet as a whole. If (when?) this patent gets shot down, it might start to send a message to other companies out there basing themselves off of frivolous patents.

    we can't stand for this, and this is an excellent first step

    --
    #define F(x) int main(){printf(#x,10,#x);}
    F(#define F(x) int main(){printf(#x,10,#x);}%cF(%s))
    1. Re:good precident by Saint+Nobody · · Score: 1

      crap. i misspelled precedent. still no taco, though.

      --
      #define F(x) int main(){printf(#x,10,#x);}
      F(#define F(x) int main(){printf(#x,10,#x);}%cF(%s))
  115. Maybe they should've tried BountyQuest first? by dave-fu · · Score: 1

    If you're not in the know, BountyQuest is a site to sort of publically ask "So, uh. Anyone have any prior art on this?" before they go ahead and patent it.
    Nice in theory, but honestly it's about as valid as oh, say.... your average "hacker challenge"...

    --
    Easy does it!
    This comment has been submitted already, 276865 hours , 59 minutes ago. No need to try again.
  116. Fine These MFs by Aquafina · · Score: 1

    The thing is, companies with deep pockets will throw tons of money into tons of ridiculous patents at the USPTO, knowing full well that most of them will get rejected.

    However, they also know there's a chance some of them might stick.

    So under our current system, it doesn't matter how good the uspto is, some lame patents will always get through.

    So how do we fix this? Simple. Have some way to PUNISH corporations/individuals who end up having their patents revoked due to obvious prior art. What better way to bend them over the knees than to hit them in the pockets where it really hurts?

  117. Cool! Rennaissance time approaching! by paranormalized · · Score: 1
    The side-effect of all this happening is that by fighting to gain the legal high ground based on Intellectual Property, Copyrights, Trademarks, and Patents, we end up with a society that is being transformed at the very foundations: language. We are all victims, even the people in these corporations, of an undermining public speech.
    (Emphasis mine)

    You know, a cool history prof of mine said that one of the signs of a Rennaissance is a basic concern w/ language: the actual meaning and use of words, etc. I didn't pay fully enough intention to the class, so I can't remember the specifics, but the Rennaissance was a time when interest in language, specifically Latin and Greek, flourished. And interest in the intellectual tools of rational debate and discussion grew, too.

    What does this all mean? I dunno. But I do know that the current attitude towards words is pretty flippant: they mean what you make 'em mean, and you can bend truth like a spoon, if you choose your words carefully. Look at the name for our current age: Post-Modern??!? WTF does that mean?? It's getting to the point where I feel society is going to backlash, hard. The pendulum can swing only so far...either that, or you end up in a Dark Age, and I'm not sure we're gonna let that happen. I mean, unless global catastrophe strikes, like it did w/ the Romans (plague, poor harvests, harsh winters and other foreign invaders driving in the barbarians), there's enough people working to sustain and advance civilization. And even when the Romans collapsed, the Arabs were around to preserve a good bit of their knowledge. So, I'm cautiously optimistic, even if I think the worst case means my grandkids might have to learn Mandarin to live in the 'civilized' world...

    The Rennaissance also gave birth to the idea of Nationalism. I dunno if that was an independent development or if it was related to the study of language.(quick quiz: name some characteristics of a nation-state-- I can't remember the others, but I do remember "one unified language"... anyone taking Rennaissance History who can help out?) But in any case, I look forward to whatever development comes out of this... Internationalism? (please, please, please. I wanna see what happens when God 'wins' his game of Civ Omega...)

    -------

    --

    -----
    IANASRP- I am not a self-referential phrase
    -----
    email: proprietary becomes free, org to com
  118. Open letter to CMGI by twivel · · Score: 1

    I've sent this letter to cmgi's public relations address, I will document their replies at this URL as well. Here is the link

  119. Re:Very glad, but very sad... by -=[+SYRiNX+]=- · · Score: 1

    The US Patent Office incorrectly believes that the place to hammer out issues of patent legitimacy is the courtroom. They don't believe that it's their responsibility.

    Obviously this logic is flawed. Individuals and small businesses must spend huge sums of money to simply defend themselves in court. Large corporations know this, and use bogus patent challenges as a way to squash anyone who stands in their way.

    One recent example is Creative Labs vs. Aureal. Although Aureal ultimately won against Creative Labs' patent charges, the legal defense costs bankrupted Aureal.

    How can you spot a rich white man? Ask him if he thinks the US Patent Office is doing a good job.

    --
    - "It's just a matter of opinion!" - PRIMUS
  120. Of course when Al Gore needs some cash by enjar · · Score: 1
    He can get out his Internet patent.

    Disclaimers:

    I know the statement was taken out of context.

    I know may people think Al should be president.

  121. Re:heh by Stephen+Samuel · · Score: 2
    I type the command:
    find . -print > file ; grep string file
    Note: If you are using network filesystems ( NFS, RFS, AFS, etc.), then this could classify as a 'distributed database'. This is especially true if the Filesystem allowes remote mounted filesystems to be re-exported (I'm pretty sure it was allowed with RFS. I believe that it was possible (though not the default) with NFS on some operating systems, as far back as the early '90s).
    QED
    --
    --
    Free Software: Like love, it grows best when given away.
  122. This might not change anything. by blair1q · · Score: 2

    If AltaVista's crawler does things different, like using HTTP instead of FTP, or crawling without first knowing the fqdn of the well-known public servers, then they're not infringing (much).

    Also, and this is a big also, if you make your work public, and don't file for a patent within a year, anyone can file based on their work without having to worry that you'll file on top of them. "Prior Art" depends not only on the existence of the "art", but on attempts to patent it.

    And, of course, if you never make your process (i.e., the method, not just the shrouded executable) public, much less patent it, you have dick to say about it when PlutoPetaCorp beats you to the patent office.

    Just ask Arthur C. Clarke if he's owed any money by ComSat.

    --Blair

    1. Re:This might not change anything. by markmoss · · Score: 1

      Do "things different, like using HTTP instead of FTP." By this argument, someone could have patented the process of cutting Formica using a wood saw.

  123. Get down to brass tacks . . . by werdna · · Score: 5

    Once again, let me emphasize that it is simply pointless to speak about patents in the abstract. The abstract and general subject matter of the patent simply does not inform the question whether a patent is infringed or invalid. The bottom line is the specifics of the patent claims asserted and a particular apparatus or method usage alleged to infringe. Until you get to the details, you aren't saying anything interesting at all.

    With respect to the article:

    "Though I'm not a lawyer, the patents being 'defended' by CMGI/AltaVista include basic concepts that were incorporated into the Archie system years before the World Wide Web even existed," said Emtage.

    It is clear that Mr. Emtage is not a lawyer. His statement has almost nothing to do with whether or not a particular patent is infringed or invalid. A patent that includes "basic concepts" incorporated into the prior art is not invalid therefor as a matter of law. If the prior art includes "basic concepts" elements A+B+"a blue C", and a later patent claims A+B+C+D, or even A+B+"a green C", the patent claim might well be valid. The devil is in the details, and the article offers none.

    "Archie was crawling and indexed FTP sites with fairly sophisticated algorithms even as I was sitting at Internet Engineering Task Force (IETF) meetings with Tim Berners-Lee while he created the World Wide Web," Emtage continued.

    For all we know, the patents in question may have already cited, directly or indirectly, to this very prior art. The issue is not whether the patents relate to pre-existing technology -- this is true of virtually EVERY PATENT EVER EVER. The question is whether the prior art was patentably distinguished in a particular claim. Note that the more significantly the prior art is distinguished (read limited), the less "dangerous" is that patent -- the less signficantly the prior art is distinguished, the more likely the patent would be invalid. And this analysis must be performed claim by claim. The broadest claims of a patent might be invalid, and the narrowest not infringed, while one remains that is both valid and infringed. As noted, the devil is in the details.

    Talking about this stuff in the abstract is meaningless -- its just whining. Let's get to particulars. Name the patent and the prior art in question, then we can start talking. Until then, we are all spitting in the wind.

    1. Re:Get down to brass tacks . . . by Sloppy · · Score: 2

      If the prior art includes "basic concepts" elements A+B+"a blue C", and a later patent claims A+B+C+D, or even A+B+"a green C", the patent claim might well be valid.

      It isn't that the prior art itself directly makes the patent invalid. It's that the Archie prior art makes idea obvious (and thereby indirectly invalid).

      When you already have lots of people using A+B+C and then D comes along, then A+B+C+D is unworthy for a patent because it is obvious to practitioners in the field.


      ---
      --
      As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
    2. Re:Get down to brass tacks . . . by markmoss · · Score: 1

      IANAL, but as I understand it, the Claims are the key part -- if the patent examiner was doing his job, the claims should have been trimmed down to cover just what is novel and non-obvious. The diagrams and description are supporting to the claims, that is they show that you actually have a way of doing what is claimed.

      Finally, the Abstract (the text right at the beginning of the patent) doesn't mean much of anything legally. It cannot be changed after the patent is filed. So you could write an Abstract claiming you invented indexing, with 200 ridiculously broad claims. After a proper patent examination, maybe you'd have a half-dozen narrow claims to particular techniques of indexing left -- that is, you really did invent something, but anyone who can find different ways of doing those few things can write a non-infringing indexer. But you've still got that ridiculous Abstract -- and you might have corporate management using it to attract investment, and lawyers waving it around to try to scare off competitors that didn't read the whole thing.

      Patents are definitely necessary so the guys that really did invent something can get paid for it. The problems are (1) the incentives given to patent examiners are to process the patents fast and not get into long battles with the corps, not to do a real examination. (2) There is no cost to the corps in submitting overly broad claims, no cost in threatening others with them, and relatively little cost (as big corps count it) in actually going to court. I don't see a way to reverse the bureaucratic incentives, but we certainly could make it costly to submit overly broad claims, and even more costly to attempt to use them against competitors:

      1) We need a technically trained court to judge things like this.
      2) Abstracts must truly summarize the claims, and they are published as soon as the patent application is submitted. Anyone can send in a notice of prior art. These notices will be kept, so no one can later on claim they didn't know about the prior art.
      3) PTO gets $1,000 for every claim rejected or modified. The inventor can take them to court, but if he loses, he pays for the PTO lawyers and costs.
      4) Upon issuance or publication of a patent, others can file suit to void the patent or some of the claims. Loser pays all costs. The court may also order punitive damages if the claims are egregiously unfounded.
      5) Sending out threatening letters is cause for a harrassment lawsuit, unless the letter cites specific violations of specific claims in the patent, and is ready to defend those claims in court (see #4).
      6) Patent infringement lawsuits likewise go by loser pays.

  124. Internet Search History by SEWilco · · Score: 4
    Thanks to Wiley, here is a History of Search Engines, with a section on Archie and AltaVista. By the time of AltaVista there were a number of crawlers, spiders, etc.

    You can also see AltaVista's Brief History sixth paragraph). Archie FTP, AltaVista HTML.

  125. Irony of it all by Stephen+Samuel · · Score: 4

    The ad that I got for this article was for "Alta Vista Search Engine 3.0"
    --

    --
    Free Software: Like love, it grows best when given away.
  126. Re:Very glad, but very sad... by Tackhead · · Score: 1
    >How can you spot a rich white man? Ask him if he thinks the US Patent Office is doing a good job.

    Because a rich white man is likely to either say "fine" (e.g. board member of CMG) or "they suck" (ESR, Torvalds, many /.ers...).

    A poor [black|white|green|man|woman] is likely to say "Huh? I got bigger problems to worry about, like where my next meal is coming from."

  127. Every bureaucrat's agenda by markmoss · · Score: 1

    is to cover his or her rear. Deny a questionable patent, they get sued. Approve it, companies sue each other, but the PTO isn't in court. The incentives are f*d up.

    Patents are intended to cover "black-box concepts" to a considerable extent, that is, they will cover a particular way of solving a particular problem and also any variants that use parts of the invention. But they don't cover anything that was prior art or obvious to people knowledgeable in the field, and that's the problem with many patents now.

  128. heh by GC · · Score: 2

    I type the command:

    ls -lR > file | grep string


    Can I patent this? Is it my intellectual property?, or does it already belong to someone else?

    Seriously though. I cannot believe how stupid some of these patents are.

    1. Re:heh by GC · · Score: 2

      oooppps...

      Almsot as stupid as those patents :-)

      let's not redirect that to file

  129. Bad company from the top down by Anonymous Coward · · Score: 2

    I worked for a CMGI subsidiary which was a web hosting company and the biggest problem I saw there was that ALL of the management from lower level managers to high level VP's were all completely ignorant when it came to technology. They didnt know how to innovate all they did was try and squeeze what they could out of everything, even there customers. The managers at CMGI were no better, they all had no idea what they were doing. They were taking ideas from 20 somethings and throwing them millions, even the people knew it was not going to last. You just cant go from nothing to multi-billions without something being fishy! There was talk about these patents just over a year ago as a "strategy". What we all have to remember that up until a few years ago Altavista made firewalls and failed and now they are a portal and will fail! Use google.

  130. Very glad, but very sad... by tewwetruggur · · Score: 3
    I'm very glad that someone has stood up and said something about this issue. I'm glad that it appears that they are doing "the right thing".

    It is however a sad comment on the part of the US Patent Office that this even has to take place. I already though that the patents should never have been awarded to Alta Vista, and now this adds more to that thought. Just what is the patent office's agenda? They really need straightened out quite badly... in my industry (biotech/drug delivery), there have already been a few more weak patents of bad ideas submitted... and at the current rate, I see no reason why the patent office won't approve them - even though the patents are not defensable in court. This is just really sad.

    --
    Hi! This is the Sig, blatantly attached to the end of this comment.
  131. Re:hmmm by Marc2k · · Score: 1

    The official release date on kernel.org was something like January 4th, actually. Also, besides the addition of being almost comepletely usb-compliant, there aren't that many features that would be noticeable to the desktop user, or would warrant a fresh newbie to compile it because it "BEATS THE CRAP OUT OF WINDOWS"

    --
    --- What
  132. Re:PTO - no Einsteins there, that's patently obvio by The+NT+Christ · · Score: 1

    Nice one.

    --

    I didn't pay for my operating system either

  133. Public "service" is never creative by mangu · · Score: 2

    You cannot put people who seek job stability over anything else to manage intellectual creation issues. If USPO employees really cared about prior art, if they set their minds to truly and honestly investigating prior art, they wouldn't work at the Patent Office, they would be inventors.

  134. Your attorney is a scumbag. by jcr · · Score: 3

    And he should be disbarred.

    A decent patent attorney would have told you to search for prior art FIRST, before you pay him to prosecute the patent application.

    -jcr

    --
    The only title of honor that a tyrant can grant is "Enemy of the State."
  135. Re:that's not all... by rfsayre · · Score: 1
    CMGI Insider holdings: 30% of shares outstanding.

    Intel holdings: 1.25% of shares outstanding.

    Institutional holdings (including Intel): 14% of shares outstanding.

    Other significant institutional/mutual fund shareholders include Barclays Bank, Morgan Stanley Dean Witter, and Fidelity.
    Welcome to the distributed responsibility of American capitalism.

    That said, on the board you will find directors who currently/formerly work(ed) for AT&T, Intel, Compaq (blue ribbon to wunderhorn1! :), and IBM.

    Own any mutual funds? Have a bank account? IRA? Pension fund? 401k?
    If you answer yes to any of the above, your money pays for CMGI.

  136. Archie has a license to obey. by stock · · Score: 2
    Here are some parts of the archie license :

    1.- GRANT OF LICENSE

    1.1 Subject to the terms and conditions of this Agreement, Bunyip grants to the Licensee a non-exclusive license to use and operate the Archie software to gather, manage and serve information. By installing and operating the Archie System the Licensee agree to be bound by the following terms and conditions.

    l.2 The Licensee is licensed to operate ____________ simultaneous copies of the Archie System. The Licensee may use Archie software to gather and maintain multiple databases and the Licensee may configure its system to use additional computers as file servers to process and store the information gathered, but the information maintained by the Archie Systems covered by this License Agreement may only be served to users while operating Archie on no more than this number of computer systems (the Designated Computers).

    l.3 The Licensee or the Licensee's employees are authorized to make an unlimited number of copies of the software for backup and archival purposes, but shall not have the right to transfer, share or otherwise release copies of the Archie Systems to third parties. Any such copy shall become the property of Bunyip.

    l.4 In the event that the Licensee desires to transfer the use of the Archie System to a newly designated computer from the designated Computers set forth in paragraph l.2 of this License Agreement, the Licensee shall request prior written permission from Bunyip, which permission shall not be unreasonably withheld. Upon receipt of this permission the Licensee may transfer the use of the Archie System to the newly designated computer. The Licensee shall destroy all copies or records of the Archie System in the Designated Computers or shall transfer all of these copies or records to the newly designated computer and shall if required by Bunyip promptly certify in writing that no copies or record of the Archie System exist outside the newly designated computer.

    l.5 The Licensee shall not have the right to sublicense this Agreement, and the Licensee shall not assign its license, whether voluntarily or by operation of law or otherwise without prior written approval of Bunyip.

    3.- OWNERSHIP OF THE ARCHIE SYSTEM AND CONFIDENTIALITY

    3.1 The Licensee acknowledges that the Archie System, software, documentation and associated information are the property of Bunyip, and that the only rights which the Licensee obtains to the Archie Systems and Licensed Materials is the right of use in accordance with the terms of this License.

    3.2 The Licensee acknowledges that the Archie System and Licensed Materials contain proprietary and confidential information of Bunyip. The Licensee will take the same care to safeguard the Archie System and Licensed materials as it takes to safeguard its own confidential information and this care shall not be any less than would be taken by a reasonable company to safeguard its information. Without limiting the generality of the foregoing, the Archie System shall be accessible only to those employees with a need for access to perform their duties, and Licensed Materials shall be stored in a locked place and shall be accessible only to those employees with a need for access in order to perform their duties. Employees having this access shall be specifically advised in writing of the confidentiality of Archie System and Licensed Materials.

    3.3 The license granted under this Agreement is non-transferable and authorizes the Licensee, on a non-exclusive basis, to use each Archie System solely on the Designated Computers so long as the Designated Computer remains in the exclusive possession of the Licensee. Any attempt by the Licensee to sublicense, assign or transfer any of the rights, duties or obligations hereunder is void.

    3.4 The Licensee shall not derive or attempt to duplicate, or permit or help others to derive or duplicate, the source code relating to the Archie System.

    3.5 In order to assist Bunyip in the protection of its proprietary rights with respect to the Archie System and Licensed Materials, the Licensee shall permit Bunyip to inspect during normal business hours the facility at which the Archie System is used and any facility at which the Archie System Licensed materials are stored. The Licensee shall advise Bunyip on demand of all locations where Archie System or any Licensed materials, or both, are stored, and shall provide Bunyip with access to the Archie System and Licensed Materials, including any copies of them.

    7.- GOVERNING LAW AND ENFORCEMENT OF AGREEMENT

    7.1 This Agreement shall be governed by and construed in accordance with the laws of the Province of Quebec, Canada. In the event of any dispute under the Agreement, a suit may be brought only in a court of competent jurisdiction of the Province of Quebec, Canada,

    8.- COUNTERPARTS

    8.1 This Agreement may be executed in counterparts in the same form and such parts as so executed shall together form one original document and be read together and construed as if one copy of this Agreement had been executed,

    9.- LANGUAGE

    9.1 The parties have required that this Agreement and all deeds, documents or notices relating thereto be in the English Language; les parties ont exige que cette convention et tout autre contrat, document ou avis afferent soient en langue anglaise.

    IN WITNESS WHEREOF, the Parties have executed this Agreement, on the date and at the place first above mentioned.

    BUNYIP INFORMATION SYSTEMS INC.

  137. Retaliation isn't a wrong. by jcr · · Score: 2

    If Emtage were to get said patent and take a few million bucks from CMGI, I'm sure he'd find a far more productive use for the money.

    How about setting up a foundation to bitch-slap companies like CMGI in court?

    -jcr

    --
    The only title of honor that a tyrant can grant is "Enemy of the State."
  138. that's not all... by wunderhorn1 · · Score: 1
    83% of Altavista in CMGI's hands still leaves *someone* with a 17% stake in the portal's future.

    That said, a little more fact-checking reveals that Intel Corp owns over 4 million shares of of CMGI currently valued at over $26 million.

    Intel has a huge stake in the PC market and in CMGI.
    So my point still stands: Companies feeling their profit margins slipping will try to make up for it with other sources of revenue, including royalties they believe they are owed for their patents, no matter how stupid they are.

    --
    Karma: Bored. (Thinking about resurrecting the "Anyone else is an imposter" joke.)
  139. What has driven this recent bad patent movement? by Doomsdaisy · · Score: 3

    I'm really curious as to what people think are the reasons why we have had so many bad patents.
    I can't immagine that there is one point source, but rather a range of reasons.
    Is it corruption within the system, an incompetent system?
    How much of this is due to problems in government, or greed of industry?
    Where can we make changes to improve things?
    Is the whole concept of IP flawed to begin with, or does patenting non-physical concepts have a place in the information age?
    Is there a good informational resource that would answer some of these questions in a manner accessible to a legal and technical novice like myself?

    These are breasts; this is source code.

    --
    These are breasts; this is source code.
    Why do you have a problem with those two things belonging to one person?
  140. Re:Cool! Rennaissance time approaching! by jazman_777 · · Score: 1

    You must not live in the USA, for I summarized the level and quality of communication that goes on here now. You wouldn't believe how bad it's become here.

    --
    Slashdot: Failed Car Analogies. Amateur Lawyering. Anecdote Battles.
  141. You're obviously an idiot by multipartmixed · · Score: 2

    You can't patent the alphabet because it's been in use for more than a year -- but go ahead, and invent your own if you like, and patent that. Better make it novel, though. Maybe add a letter for the "shwa" sound.

    You don't apply for a copyright -- copyright is implicitly granted to the author of a piece of artistic work.

    Since you didn't write the alphabet as a literary piece, you don't have copyright on it. On the other hand, you could paint a picture of the alphabet, and you would have copyright on that picture -- but not on the alphabet.

    You could design a new font, and have copyright on it. Hell, you could probably submit it to the USPTO and say it was designed specifically to make writing easier when using a green pen and you'd get a patent on the font. Then you could write the alphabet in that font, and register that as your trademark.

    But you couldn't patent "the alphabet". Get real.

    --

    --

    Do daemons dream of electric sleep()?
  142. Re:Archie? by jonnythan · · Score: 1

    *puts hand up meekly*

    ;)