Slashdot Mirror


Nobelist Gary Becker Calls For an End To Software Patents

GigaOM notes that (excerpting) "Gary Becker, a Nobel-prize winning professor at the University of Chicago, stated this week that the U.S. patent system is ”too broad, too loose, and too expensive” and called for the end of software patents: 'Disputes over software patents are among the most common, expensive, and counterproductive. Their exclusion from the patent system would discourage some software innovations, but the saving from litigation costs over disputed patent rights would more than compensate the economy for that cost.'" Here are Becker's comments, from the always-fun Becker-Posner Blog.

94 of 147 comments (clear)

  1. how to delineate software patents? by Joining+Yet+Again · · Score: 5, Interesting

    Is it a mere algorithm? An algorithm with a specific realised implementation?

    Since I'm not currently in a country where mathematics can be owned, it seems weird to me.

    Does any software company actually indicate that they would stop work if it were not for software patents? I.e. is there any company which says that it relies on software patents to do business in software, rather than as a defensive/offensive mechanism?

    1. Re:how to delineate software patents? by faffod · · Score: 4, Insightful

      [...] is there any company which says that it relies on software patents to do business in software, rather than as a defensive/offensive mechanism?

      Yes, they are called patent trolls.

    2. Re:how to delineate software patents? by mwvdlee · · Score: 3, Insightful

      Does any software company actually indicate that they would stop work if it were not for software patents? I.e. is there any company which says that it relies on software patents to do business in software, rather than as a defensive/offensive mechanism?

      And if any software company says it needs software patents, are they actually telling the truth or just lying to maintain a position of unfair power over small competitors?

      --
      Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
    3. Re:how to delineate software patents? by Firethorn · · Score: 3, Informative

      I have a two part thought on this:
      Start with that Software is already protected under copyright law. This prevents others from simply copying your code and calling it their own. Ergo, a software patent would need to be more generic, protecting a process, not a implementation.

      Take something like bittorrent. The application itself would be copyrighted, it would be the idea of peer to peer sharing that would be the patent. Well, at least if you want to get overly generic about it. More specific would be the idea that you utilize a 'seed' file that contains initial information about the sharing, files, hashes and whatnot to make the system somewhat secure.

      But bittorrent is something that, while they benefit from the copyright, they actually increase their own share by making the protocol open via helping 'bittorrent' win over other file sharing methods because people aren't locking into one application.

      I agree with the op on the whole - software patents are a bad idea and cost the economy/people more than it benefits them.

      --
      I don't read AC A human right
    4. Re:how to delineate software patents? by ackthpt · · Score: 2

      Is it a mere algorithm? An algorithm with a specific realised implementation?

      Since I'm not currently in a country where mathematics can be owned, it seems weird to me.

      Does any software company actually indicate that they would stop work if it were not for software patents? I.e. is there any company which says that it relies on software patents to do business in software, rather than as a defensive/offensive mechanism?

      The delineation would be among Do Lawyers Profit and Do Lawyers Not Profit. Win, lose or draw, lawyers always come out on top in a patent dispute and will oppose an end to their milk money.

      As to patenting in the very first place there's only so many ways to do something in software. While a look and feel of a finished product can be quite distinct, like the melody of a tune, getting there requires assembling code to produce the look and feel, respond to actions and such in very much the way a person could go to the well to get a bucket of water - directly, indirectly, lollygagging along the way (in code this would be Bloat) patenting the process of making a trip to the well for a bucket of water is absurd, so to would be patenting instructions to perform some task in an electronic machine (computer).

      Another way of looking at it, a spreadsheet could be patented as it was a new application, but the code for making the spreadsheet work could be done dozens of way. Filing a patent for a macro for calculating a sum or percentage is ridiculous, but that's what we're getting.

      Hope reform isn't long in coming and throws this whole stupid concept of software patents out.

      --

      A feeling of having made the same mistake before: Deja Foobar
    5. Re:how to delineate software patents? by stabiesoft · · Score: 1

      At least in my industry, copyright has worked well to litigate real thefts. Lately my industry has done like all the others and used patents to protect their turf from newcomers. Sad really, and it is slowing innovation. Startups get clobbered before they get traction. Even copyright can get misused though, see the berkeley design automation case with cadence.

    6. Re:how to delineate software patents? by Crimey+McBiggles · · Score: 1

      rather than as a defensive/offensive mechanism?

      Yes, they are called patent trolls.

      I think you missed half of the question there. Patent trolls by definition use patents as an offensive mechanism.

      --
      Crimey
    7. Re:how to delineate software patents? by T.E.D. · · Score: 2

      Since I'm not currently in a country where mathematics can be owned, it seems weird to me.

      The USA is also a country where mathematics cannot be owned. So how do we still have "Software patents"? Well, perhaps because nobody has had the temerity to try pointing out to the Supreme Court that "Software" = algorithm = math. The few times the issue has come up, both the courts and the lawyers involved sidestepped it. It's almost like everyone is afraid of what might happen if an actual ruling on the issue were to be forced. When it comes up in lower courts, its a crapshoot, but about half the time the patents get invalidated just for being software patents.

      It isn’t really surprising that Federal Circuit judges who have devoted their working lives to the patent system tend to think most patents, including software patents, are valuable and useful. What is surprising is that, in spite of this likely tendency, the en banc Federal Circuit invalidated the patents here. Half of the en banc judges took the sensible view that running a program on a computer does not transform the computer or render software less abstract

    8. Re:how to delineate software patents? by gnupun · · Score: 1

      Start with that Software is already protected under copyright law. This prevents others from simply copying your code and calling it their own.

      Copyrights are easy to work around. Imagine this is your copyrighted code (simple code for this example):

      void swap(int* a, int *b)
      {
      int temp = *a;
      *a = *b;
      *b = temp
      }

      I can workaround the copyright protection by changing the variables because copyright protects the exact representation of an idea only, not the idea itself. My non-infringing code, based on your code (that I obtained from reading your source, or reverse engineering the object code):

      void swapInts(int *numA, int* numB)
      {
      int t;
      t = *numA;
      *numA = *numB;
      *numB = t;
      }

      To prevent such infringements, swap() can be patented. In which case, swapInts() would infringe on the patent and be illegal.

    9. Re:how to delineate software patents? by Outtascope · · Score: 1

      And as that code should never, ever, EVER even remotely be considered patentable, you have perfectly illustrated the problem. Obvious to one reasonably skilled in the art. That particular piece of code above deserves no protection whatsoever. It is not an invention. I would posit that it doesn't even constitute a creative work.

    10. Re:how to delineate software patents? by Outtascope · · Score: 1

      What a complete load of horse shit. You seem to confuse pro-napster with anti-patent. I could give a shit about copying other peoples code. What bothers me is that I have to hire a legal team to verify that I haven't crossed some ridiculous patent when I publish a "Hello World" tutorial to my website! If the U.S. patent system had demonstrated even the most infinitesimal fraction of an iota of a clue as to what constitutes obviousness with respect to software patents, then I might feel differently. But it has demonstrated such a completely incompetent and disinterested level of expertise that the only reasonable solution that doesn't inhibit the advancement of the art is to get rid of them altogether. It is clear that the system is incapable of putting in place qualified personnel or reasonable measures to ensure the legitimacy of issued patents. The system is supposed to reward those who invest the time and money to build the better mousetrap. But all it is used for today is to guarantee a revenue stream to those who are too fucking lazy to compete in the market place.

    11. Re:how to delineate software patents? by faffod · · Score: 1

      Sorry I was being sarcastic, patent trolls try to project an image of inventors on the defensive despite the obvious "you have nothing except vague patents". (well, enough of them do)

    12. Re:how to delineate software patents? by White+Flame · · Score: 1

      They need software patents solely to give their investors feelgood vibes. Venture capitalists perceive a major benefit if a software company has a few patents covering their work. The software companies really don't care.

  2. Nobelist? by Anonymous Coward · · Score: 1

    That's a new one. I did a double-take and had to check to see if you weren't spelling novelist wrong.

    The dangers of software patents are many and well-documented. They frequently serve little purpose except as legal ammunition in cases that do nothing but punish businesses for attempting to make a good product. Computer code is not an invention -- if it was we'd have patents on the programming language. What you can do is copyright your work as an act of expression, like a how-to book.

    1. Re:Nobelist? by SleazyRidr · · Score: 4, Interesting

      I believe the generally accepted term is "Nobel Laureate". Who wrote "Nobelist"?

    2. Re:Nobelist? by Anonymous Coward · · Score: 1

      A personal friend, who knows that Gary Becker is a stanch believer in the doctrine of Alfred Nobel.

    3. Re:Nobelist? by gsgriffin · · Score: 1

      New terms are coined all the time. I prefer Nobelian.

      --
      jsut athnoer menagiensls ltitle psrhae for you to dcoede. Why do we wtsae our tmie dnoig tihs?
    4. Re:Nobelist? by sl4shd0rk · · Score: 1

      Who wrote "Nobelist"?

      This is Slashdot. Find comfort in the fact it wasn't spelled NodeList();

      --
      Join the Slashcott! Feb 10 thru Feb 17!
    5. Re:Nobelist? by klapaucjusz · · Score: 2

      I believe the generally accepted term is "Nobel Laureate".

      Becker is actually a laureate of the Nobel Prize in Economic Sciences, which is not the Nobel Prize.

    6. Re:Nobelist? by SleazyRidr · · Score: 1

      I like the way nobelian sounds, although it's giving me more of an adjective vibe. Like, you could buy a nobelian lamp for your end table to make your living room look classy.

    7. Re:Nobelist? by gsgriffin · · Score: 1

      I would think most references to people could be used that way. You could get a nobelian bonus at the end of the year from work...if you happen to be popular enough. Term 'American' is often used in both ways as well.

      --
      jsut athnoer menagiensls ltitle psrhae for you to dcoede. Why do we wtsae our tmie dnoig tihs?
    8. Re:Nobelist? by cellocgw · · Score: 1

      A personal friend, who knows that Gary Becker is a stanch believer in the doctrine of Alfred Nobel.

      So your friend the Nobelist wants to stop the belief in said doctrine? (stanch!=staunch) :-)

      --
      https://app.box.com/WitthoftResume Code: https://github.com/cellocgw
    9. Re:Nobelist? by cellocgw · · Score: 1

      Nobelian? Is a Nobelian Group anything like an Abelian Group?

      --
      https://app.box.com/WitthoftResume Code: https://github.com/cellocgw
  3. Here here .... by pollarda · · Score: 4, Insightful

    It boggles my mind that the Government expects that software developers will do patent searches as they write their code rather than simply implementing what is obvious at the time to implement. Software patents are written in such a way as to make them difficult to interpret and appear broad even when they aren't. It simply isn't practical for software developers were to do their "due diligence" as they write their code, and if they did no appreciable amount of code would be written.

    It is quite likely that most if not all software written violates at least a small handful of patents (remember the XOR patent?) -- creating an unfair advantage for the companies who have enormous in-house legal councils who can pursue purported patent violations.

    1. Re:Here here .... by Dr_Barnowl · · Score: 4, Informative

      The prevailing advice AFAIK is to deliberately NEVER do a patent search. Why? Because if you knowingly infringe a patent, that's triple damages. Even the suggestion that you did a patent search could be sufficient evidence.

      As you rightly point out, everyone knows it's impossible to write any significant (or possibly even trivial) piece of software without infringing something ; since this is the case, it just doesn't make any sense to do any kind of patent search at all.

      Obligatory : IANAL.

    2. Re:Here here .... by almitydave · · Score: 1

      I've come to the conclusion that there's just no way to guarantee innovator's rights via software patents. I agree with Becker, some harm will come, but less than is being done by a system which includes:
      1) overly-broad patents
      2) patent litigation by trolls not using their patent for anything besides litigation
      3) perverse business incentive for people to abuse 1 & 2

      I've changed my mind because I haven't heard a way yet that allows "good" software patents to exist without far worse elements in the system. Perhaps if you had an army of tech-knowledgeable patent attorneys working as examiners that could see through the BS, and yet were more competent and efficient than any American bureaucracy ever...

      Can it be fixed?

      --
      my, your, his/her/its, our, your, their
      I'm, you're, he's/she's/it's, we're, you're, they're
    3. Re:Here here .... by Anonymous Coward · · Score: 1

      It boggles my mind that the Government expects that software developers will do patent searches as they write their code rather than simply implementing what is obvious at the time to implement.

      I don't think they do. There are many ways to invalidate a patent. If the patent describes an obvious solution it is invalid.
      The problem is that it is harder to prove something as obvious than it is to find prior art.

    4. Re:Here here .... by Joce640k · · Score: 2

      There are many ways to invalidate a patent.

      Yes, but are there any cheap+easy ways?

      --
      No sig today...
    5. Re:Here here .... by Znork · · Score: 1

      Yes, it can be fixed. Sort of. But only if the entity handing out the patents is the same entity paying the licensing costs for the patents. That's the only way there is a continuous incentive for the involved parties to award 'patents' for the right things and only the right things.

      It would be possible to remake the system from ground up as a publication/invention incentive system without any exclusive rights that would pay out from budgeted funding to holders of granted 'patents' according to usage. That is, if it is truly needed at all, which I'm not convinced of. At least that way we'd get an actual price tag, instead of the nebulous but huge costs the current system burdens the economy with, it would probably mean much less litigation and it could actually be tuned to maximize incentive efficiency.

    6. Re:Here here .... by Anonymous Coward · · Score: 2, Interesting

      It boggles my mind that the Government expects that physical device designers will do patent searches as they design their devices, rather than simply implementing what is obvious at the time to implement. Physical device patents are written in such a way as to make them difficult to interpret and appear broad even when they aren't. It simply isn't practical for physical device designers were to do their "due diligence" as they create their plans, and if they did no appreciable amount of designs would be created.

      There's nothing special about software. The patent system is broken *in general* not for the specific case of the industry you know something about.

  4. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  5. As a sortware patent holder... by Anonymous Coward · · Score: 1

    I agree and I say we also cut the absurd lifetime of copyright at the same time.

    1. Re:As a sortware patent holder... by pollarda · · Score: 2

      It is always a bit humorous for me when I think about the arguments that we need copyrights that are 70 years plus the life of the author but for patents, 20 years is adequate. What's more, that Congress can make copyrights retroactive. Just imagine the chaos that would ensue if they gave patents a similar term as copyrights and re-instituted patents retroactively as they did copyrights. While and enormous headache and make our economy come to a screeching halt, it would be a lot of fun to watch.

    2. Re:As a sortware patent holder... by Zeroko · · Score: 1

      It would be more like if they could keep living there but could not stop other people from moving in. Well, if all the people living there could not see or interfere each other, that is.

    3. Re:As a sortware patent holder... by pscottdv · · Score: 1

      And be glad the duration is 70+life years instead of hundreds of years. I mean imagine if you bought land or a house and you have rights to it only for 70+life years. After that, your children/descendants would have to vacate the place and it would be public property, perhaps a park. Does that seem okay to you?

      Please... copyrights are a deal between the government and authors that in exchange for doing the hard work of creating, the government will offer a monopoly on REPRODUCING the content for a LIMITED period of time. The actual physical copies that the authors create (the manuscripts, for example) are still theirs to keep FOREVER. Just like me and my house.

      --

      this signature has been removed due to a DMCA takedown notice

    4. Re:As a sortware patent holder... by cpt+kangarooski · · Score: 1

      You can legally obtain books, music, DVDs at the public library for free.

      Well, for now. There are plenty of copyright holders who are opposed to public libraries, stores that sell used copies of works, etc.

      And be glad the duration is 70+life years instead of hundreds of years. I mean imagine if you bought land or a house and you have rights to it only for 70+life years. After that, your children/descendants would have to vacate the place and it would be public property, perhaps a park. Does that seem okay to you?

      The duration should be whatever, in conjunction with the other aspects of copyright (e.g. the breadth of the rights) produces the greatest overall public benefit. Due to the peculiarities of the markets for copyrighted works (they typically make the vast majority of all the copyright-related money they ever will make very shortly after being published in a given medium), long terms don't provide much of an incentive for authors, and thus ought not to be granted. A grand total of 20-25 years would be 99.44% as good for most authors as a term of a million years would be. Since a copyright is a grant of something public (a right to assert exclusivity against the public) to a private author, there's nothing wrong with the public setting the terms to suit itself. If the author doesn't like it, he's free to get a job at McDonald's.

      And also life estates are far from uncommon in the world of real property.

      --
      -- This and all my posts are in the public domain. I am a lawyer. I am not your lawyer, and this is not legal advice.
    5. Re:As a sortware patent holder... by robot256 · · Score: 1

      That is a hilariously false analogy. Owning a copyright isn't like owning a plot of land. If anything, it is like owning a piece of the minds of everyone who enjoys your work. We have your ideas in our heads, but can't express them publicly without your blessing. With terms of 70+life, this form of thought-policing persists for multiple generations, only serving to make society forget your work as soon as it goes out of style. Non-profit or low-margin organizations that preserve niche culture rely on public domain rights to survive, so they ignore orphaned work still in copyright or risk being sued into oblivion.

      And another thing. If you find a creator, or even a company, who makes the bulk of their income off original works more than 30 years old, I would be glad to hear it. Until then, please do not mention starving artists in the same breath as excessive copyright terms.

    6. Re:As a sortware patent holder... by cdecoro · · Score: 1

      Don't be silly. Your house, like all tangible property, is a scarce resource: if someone else is allowed to use it, its utility to you decreases. No such situation exists with intellectual property. To the contrary, intellectual property is a restriction on the use of own's own tangible property (or one's own body, in the case of, e.g., singing "Happy Birthday") but one that we as a society tolerate for a limited time as an incentive to produce.

      Moreover, the indefinite ("fee simple") ownership of property has, at its core, nothing to do with issues of fairness or seeming "OK" -- it is a very practical way of ensuring that valuable property is maintained indefinitely. When you have a time-limited ownership of property (such as a 99-year lease), the market value of the property is consistently decreasing over time. This means that you have, over time, less incentive to maintain it. When you have indefinite ownership, its value does not decrease simply by the passage of time; thus you have incentive to maintain it so that you can sell it for higher value later in life.

    7. Re: As a sortware patent holder... by gnupun · · Score: 1

      Monopolies suck. Go get a real job.

      Real job = boss has monopoly on capital and/or some other resource. All companies have some sort of tangible or intangible monopoly. Monopoly is part of the real world. Ignoring or artificially eliminating them does not solve problems.

    8. Re:As a sortware patent holder... by cpt+kangarooski · · Score: 1

      Probably the way to go would be to: 1) Have a system of strict formalities to have a copyright on a published work (with an expanded definition of publication including public performance or display), such as registration, notice, deposit, and a token fee (and also having lesser, automatic rights on unpublished works, which expire after a span of time that would be adequate to get a work finished and published); 2) Have terms be very short, like just a year from first publication anywhere, with renewal terms available if applied for in a timely fashion; 3) And with varying numbers of renewal terms available depending on the type of work in question. Computer software 'ages' quickly, so perhaps only 4 renewals for a 5 year maximum term. Movies tend to have a bit more life to them, so perhaps as many as 19 renewal terms for a total of 20 years maximum.

      This way, works that the author doesn't feel are worth copyrighting enter the public domain immediately, works that the copyright holder doesn't feel are worth continuing to keep copyrighted enter the public domain sooner than they otherwise might, and ultimately the maximum cumulative term length is not too long either.

      --
      -- This and all my posts are in the public domain. I am a lawyer. I am not your lawyer, and this is not legal advice.
  6. Who is Gary? (nobel in econ, it turns out) by kwerle · · Score: 1

    From http://en.wikipedia.org/wiki/Gary_Becker
    Gary Stanley Becker (born December 2, 1930) is an American economist. He is a professor of economics and sociology at the University of Chicago and a professor at the Booth School of Business. He has important contributions to the family economics branch within the economics. Neoclassical analysis of family within the family economics is also called new home economics. He was awarded the Nobel Memorial Prize in Economic Sciences in 1992 and received the United States Presidential Medal of Freedom in 2007.[1] He is currently a Rose-Marie and Jack R. Anderson senior fellow at the conservative[2] Hoover Institution, located at Stanford University.

  7. I'd query one of his suppositions by johnw · · Score: 4, Insightful

    Their exclusion from the patent system would discourage some software innovations

    Can anyone point to a single actual instance of a software innovation which wouldn't have become public without the benefit of patent protection?

    1. Re:I'd query one of his suppositions by melikamp · · Score: 2

      Of course not. But it gets worse. There is no way to point out any such instance of innovation, software or hardware, without getting into pointless "could haves". And all the economic research done so far fails to show that the level of patent protection correlates (not necessarily linearly) with the rate of innovation. So IMHO, it is not very helpful to divide patents into "hardware" and "software" (other than to showcase a particular area where patents are REALLY nasty). Most laws don't make this distinction.

      And so my favorite argument against all patents these days goes like this: patents are supposed to do at least one of these two things in order to be useful to the public: either (1) they provide an incentive to invent things, build them, and bring them to the market, or (2) they provide an assurance that descriptions of inventions are eventually published and are freely accessible by the public.

      (2) Publishing used to be costly, but since we have the Internet, where the costs of publishing are near zero, no one needs to be recouped for this task anymore. All devices should come with full specs anyway, or at least consumers should firmly demand that. If it becomes unprofitable to sell black boxes, either due to legislative restrictions or due to the consumers' awareness, then all companies will be on the same playing field, and none will refuse to spend a tiny sum needed to publish the specs they already have.

      (1) With patents, only the patent holder and its closest allies are capable of manufacturing, and improving on a product for N years. Moreover, the patent itself gives them a clear incentive NOT to improve on a product for N years, because the research costs money, and the patent shields them from competition. Additionally, the patent itself gives them a clear incentive NOT to manufacture enough product for everyone who would buy it, as long as keeping the price artificially high maximizes their revenue (see anti-cancer drugs in USA). Without patents, things WILL be co-invented by first movers, and then the entire world can start manufacturing and improving on them. How can anyone think that patents improve the rate of innovation is beyond me.

    2. Re:I'd query one of his suppositions by brit74 · · Score: 1

      With patents, only the patent holder and its closest allies are capable of manufacturing, and improving on a product for N years. Moreover, the patent itself gives them a clear incentive NOT to improve on a product for N years, because the research costs money, and the patent shields them from competition. Additionally, the patent itself gives them a clear incentive NOT to manufacture enough product for everyone who would buy it, as long as keeping the price artificially high maximizes their revenue (see anti-cancer drugs in USA). Without patents, things WILL be co-invented by first movers, and then the entire world can start manufacturing and improving on them. How can anyone think that patents improve the rate of innovation is beyond me.

      Hm. There are plenty of things I could nitpick here, but I'll skip those and just say that a while back I listened to a Pirate Party talk (I am very much against piracy and the pirate party) and one of the things they suggested was elimination of patents. They argued that the government would pay for drug development (I don't recall if it was directly by the government or a government bounty to drug companies for creating something). Apparently, they didn't believe that drug companies had enough of an incentive to create medical drugs without patents. I happen to agree with them on that point. Afterall, if the development costs are high (and it seems to range in the hundreds of millions of dollars), they need to attach a premium cost to each pill sold so that they can pay-off those investment costs, and every other company in the world can undercut their price by simply manufacturing the drug after it's been developed, then, yes, patents do help improve the rate of innovation. I'm not saying that patents are better than the government-funded system, but even the Pirate Party seems to agree that no drug patents and no government funding seems like a losing proposition for the creation of medical drugs.

    3. Re:I'd query one of his suppositions by melikamp · · Score: 1

      every other company in the world can undercut their price by simply manufacturing the drug after it's been developed

      No they can't. Not if the competitors also have to go through the same rigorous and very costly process of testing their version of the drug for efficacy and safety. So they need to set up their factories to make the drug, and then test the output. Depending on the type of the drug and the quality of their manufacturing process, it may take months or even years, and by the time they are ready to put it on the shelves, the inventor will firmly assume the leading position on the market. This is the first mover advantage, and it by itself will result in continuing drug research.

      I also do not understand what your point is. I am all for spending tax money on research, which should include medical and pharmacological research. Then we can finally have cheap drugs and procedures invented that deal with grave public health issues such as cancer, viral infections, antibiotic-resistant bacteria, and what have you. Government-funded research will be about 50% cheaper to the public, since it will happen in the open, in full cooperation with the scientific community at large, and no one will spend a single dollar on marketing. And the first mover will take care of all the mood drugs and symptom relievers.

    4. Re:I'd query one of his suppositions by brit74 · · Score: 1

      I'm not even going to bother writing a decent response to your post, since it's a just a collection of assumptions, unsubstantiated claims, and wishful thinking.

    5. Re:I'd query one of his suppositions by jonwil · · Score: 1

      I wonder if Rivest, Shamir and Aldeman would have released RSA as widely as they did if it wasn't for their patent.

    6. Re:I'd query one of his suppositions by Raenex · · Score: 1

      Probably. They were researchers getting paid to research. Researchers thrive on getting published and having their ideas taken up. Just look at the countless computer algorithms that were invented and published by computer science researchers without patent protection.

    7. Re:I'd query one of his suppositions by melikamp · · Score: 1

      I am just paraphrasing the research. If you want an unsubstantiated claim, look no further than your own post, where you fail to identify a single weak point in my argument.

  8. Just software? by ubergeek65536 · · Score: 4, Insightful

    You can apply his arguments to more than software. Patents discourage innovation. Under the current system small companies and individuals end up with a huge disadvantage. Huge companies have enough resources to try to patent everything hope a few are approved.

    1. Re:Just software? by Anonymous Coward · · Score: 2, Interesting

      Yeah, just abolish all patents, in every field, not just software. Then see how the ensuing chaos, where copycats benefit more than inventors, destroy the market.

      This is analogous to banning cars. Tens of thousands of people die in automobile accidents every year, so it would be reasonable to ban cars.

      Trade secrets are much easier to keep in other industries, where the method of manufacture is just as important as the final product. Corporations can (and do) require all employees with access to trade secrets to sign a non-disclosure agreement, and they insure against leaks. Or they purchase stock in other fields which will benefit from these innovations prior to release. I work in an industry where we rely much more on trade secrets than patents, and it's hardly chaos - we don't have to waste time on the legal nonsense which bores engineers.

      "De-regulate something and CHAAAAOOSS will erupt!" is the argument an alarmist who lacks creativity, someone who thinks businesses are incapable of adapting. We don't need your "help".

      You're the one who is banning cars - there's a wealth of car-related inventions which are being squatted upon, delayed because they don't yet fit the business model of their owners. And note how I don't need to rely on strawman hypotheticals.

  9. Took an ethics class on this last year by GodfatherofSoul · · Score: 1

    The problem is that international law covers software patents just like tangible product patents under the dubious basis that software is an "arrangement of matter" at the microscopic level. I never appreciated how bad they are for innovation. The big boys sit around accumulating patents on everything and sharpening their lawyer-axes. The little guys scurry in the shadows waiting for one to drop on them.

    --
    I swear to God...I swear to God! That is NOT how you treat your human!
  10. Won't somebody please think of the lawyers by Anonymous Coward · · Score: 1

    You put an end to software patents and your streets are going to be crawling with homeless guys in suits asking your for $100 an hour so they can get a cup of coffee, or a thousand bucks to clean your windscreen at the lights. Who wants to be the one responsible for that? Obviously this Becker bloke just hasn't thought this one through.

  11. Re:No more SW Patents, but FW Patents.. yes by h4rr4r · · Score: 4, Insightful

    Why should firmware be any different?

    All your approach would lead too is software that requires a peripheral with some firmware in it to run.

  12. Re:No more SW Patents, but FW Patents.. yes by Nerdfest · · Score: 3, Insightful

    The funny part is that that's a specific algorithm and explicitly excluded. It's the trivial crap that's getting patented.

  13. Re:No more SW Patents, but FW Patents.. yes by Anonymous Coward · · Score: 1

    I would say the actual firmware should not be able to get patent protection, maybe the complete machine.

    Also anything that can be put in an FPGA should not be able to get a patent. Seeing as those are just algorithms that you put in those.
    Yes that would also exclude most electronic circuits, at least the digital ones.

    Analogue circuits are maybe an exception, since those are perfect because of noise and inaccuracy. Therefor you may make an invention on how to use analogue circuits which is not a direct implementation of an algorithm.

  14. Blog has been Judged by maroberts · · Score: 1

    It appears to have been Slashdotted to death

    --

    Donte Alistair Anderson Roberts - hi son!
    Karma: Chameleon

  15. it solves itself by slashmydots · · Score: 1

    I've always seen it this way. If there's a source code leak, have ways in place that pin it down to one person then sue their asses off and there's your money for damages. Otherwise, with the latest anti-decompiling methods, I doubt someone is getting your actual code manually. So that leaves the fact that if someone can look at your program running and figure out the code behind a certain function then write it themselves, it was too simple to be patented. If they can't figure it out, it's darn good valuable IP and then they can't use it because they don't have the code or an idea how to write it. It solves itself.

  16. Re:No more SW Patents, but FW Patents.. yes by Joce640k · · Score: 1

    Even LZW compression is fairly obvious to a skilled programmer. I remember there were several similar compression algorithms around at the time it was patented. It's not an especially good algorithm, it's just more famous (mostly thanks to the patent wars that surrounded it).

    If you want "non-obvious" you need to go to something like this: https://en.wikipedia.org/wiki/Burrows%E2%80%93Wheeler_transform

    Radical thinking like that is worthy of a patent IMHO (although that algorithm wasn't patented...go figure)

    --
    No sig today...
  17. Industry can survive without patents by faffod · · Score: 2

    Formula 1 has zero use for patents. If a team invents something useful they try to keep it secret. If a team were to apply for a patent for one of their inventions, the other teams would simply band together and change the rules to explicitly ban that patent from use in the race cars. Despite this, the teams spend tens of millions (if not hundreds of millions) every year on the development of their cars. Top teams bring changes and innovations every two weeks (average time between races). Relax Corporate America, innovation will survive just fine without software patents.

    Now if someone points out that what F1 does is employ Trade Secrets, and the idea behind patents is that they allow for the state of the art to be shared in the public domain, I have to agree. But the actual result of the patent system is that no one reads about patents (knowingly infringing a patent results in triple damages), so the patent system isn't even achieving that goal.

    1. Re:Industry can survive without patents by faffod · · Score: 1

      Alright, here is a reference: http://www.jamesallenonf1.com/2012/01/patents-in-f1-explained/

      As to your point, sure, a part supplier might have a patent on something, but the teams do not use patents. The teams are the ones doing the innovation to the tune of multiple millions per year. They innovate with a vigor rarely seen in industries and have no desire to seek patent protection.

      I also understand the disclosure part. Sure some people talk about their patents, but because of the risk of triple damages most try to avoid listening. I'm not saying that there is 0 public discourse, I'm saying that there is far less of it than intended or useful.

      To recap - two big justifications for patents are
      1) protect innovation
      2) prevent trade secrets, to make the sate of the art public
      I've provided a reference that clearly states that highly competitive industries can survive just fine without patents, [even if as you point out, related industries use patents]. And there are plenty of references here on /. that corroborate my statement that people do not look through the patent applications due to the risk of triple damages.

    2. Re:Industry can survive without patents by Joining+Yet+Again · · Score: 1

      It surprised me to learn recently that modern cars aren't that much more fuel efficient than many of nearly 80 years ago.

    3. Re:Industry can survive without patents by Theaetetus · · Score: 1

      I've provided a reference that clearly states that highly competitive industries can survive just fine without patents, [even if as you point out, related industries use patents].

      Although true, that "industry" does not analogize to the rest of the world. From your article, F1 doesn't use patents because, if they get a patent on a technology, all of the other competitors will vote to have that technology disallowed. That simply doesn't exist in other industries, and without that sort of punitive over-arching regulation of an industry, there's no reason to suspect that the F1 experience should apply elsewhere.

      And there are plenty of references here on /. that corroborate my statement that people do not look through the patent applications due to the risk of triple damages.

      Yes, but that's mostly out of date. The law on willful infringement is changing, quite reasonably too. At this point, merely reading a patent application will not be enough to support a finding of willful infringement.

    4. Re:Industry can survive without patents by faffod · · Score: 1

      Although true, that "industry" does not analogize to the rest of the world. From your article, F1 doesn't use patents because, if they get a patent on a technology, all of the other competitors will vote to have that technology disallowed. That simply doesn't exist in other industries, and without that sort of punitive over-arching regulation of an industry, there's no reason to suspect that the F1 experience should apply elsewhere.

      Why they don't have patents is immaterial. The point is that they spend tons of money each week on innovation knowing that they do not have patent protections. This disproves the claim that unless we have patents companies will stop investing in research and innovation.

      Put another way, here is an example of an industry where the patent lawyers showed up and said "hey, let us help protect your investment" and the collective response was "no thank you, we'll take the money and time saved in lawyer fees and invest it in more innovation". Meanwhile, the software industry under the protection of patents is not showing a dramatic increase in innovation from 1990 - 2010 compared to what happened before patents from 1960 - 1990.

      Yes, but that's mostly out of date. The law on willful infringement is changing, quite reasonably too. At this point, merely reading a patent application will not be enough to support a finding of willful infringement.

      Good to know, I will have to read up on that.

    5. Re:Industry can survive without patents by faffod · · Score: 1

      Like F1, software also has a high iteration rate. And reverse engineering software is not easy, cheap or fast. It is easier to just develop your own solution.

  18. Re:'tis a "theoretically" good idea. by Sique · · Score: 1
    Every money is fiat money. Even a Gold standard. The value of Gold exists only in the mutual agreement that Gold should be valuable, because it looks nice if used for decoration. Compare the (market perceived) value of Gold with that of Platinum -- both are metals, both are of comparable availability in the Earth's crust, and both are used for the same applications (mainly jewelry, some electronics and a little bit as chemical catalyst), but their values are highly volatile against each other and against every main currency, with the volatility much higher than that of main currencies compared to each other.

    One could argue further that money itself has to be fiat money to actually work as money (e.g. as a medium to compare prices).

    --
    .sig: Sique *sigh*
  19. Re:Very suspicious by fustakrakich · · Score: 1

    It was Chicago 'economics' that did Detroit in.

    --
    “He’s not deformed, he’s just drunk!”
  20. Proposal by StripedCow · · Score: 2

    Ok, let's be fundamental about this. Isn't it strange that we should consider "software" as different from other intellectual property? If X hours of work have been invested into the invention of a clever software routine, then, it would be strange if a patent could not be granted for that work while a patent would be granted for some physical apparatus that also took X hours to develop. (Don't think about the stupid "one-click-buy" software patents, but more along the lines of an ingenious differential-equation solver).

    So, I don't think a law that says "patents are granted, but not for software" would be a good one. If we would abolish patents, we should do it in all fields.
    Remember that the US has to rely on IP protection, for a substantial part of the work done in this country is intellectual. Therefore allowing software patents could in fact be beneficial.

    As an aside: in the end, everything is mathematics. Software is mathematics; but also a physical apparatus, or even a medicine can be described mathematically. So, based on this argument, there should be no distinction in IP law.

    What should happen, though, is that "stupid" patents should be rejected. I will explain how this could be accomplished.

    First, split the patent-office in two parts. The first part, call it the "patent intake office", will *pay* an amount for each patent that they grant. The second member, call it the "evaluation office", will, after 5 years after issue of the patent, determine the societal impact of the patent. If the impact is large, an amount is paid to the intake-office.

    (Note that the patent office will initially *pay* for patents that they grant. This is in contrast with the current situation, where the office receives money for each patent that is granted.)

    This means that, under this model, the USPTO will not so easily approve simple things such as "one click shopping" because they might lose on it on account of a lack of social impact. Similarly, patent trolling will be actively barred by the patent office (no product means no social impact). However, a patent for a new medicine may be approved. And even software, if ingenious and useful, may be granted a patent.

    --
    If Pandora's box is destined to be opened, *I* want to be the one to open it.
    1. Re:Proposal by pscottdv · · Score: 3, Insightful

      Ok, let's be fundamental about this. Isn't it strange that we should consider "software" as different from other intellectual property? If X hours of work have been invested into the invention of a clever software routine, then, it would be strange if a patent could not be granted for that work while a patent would be granted for some physical apparatus that also took X hours to develop.

      Fundamentally, software is already different from other intellectual property as it also has copyright protection. Why should one body of work be allowed to be protected under two completely different IP regimes? Copyright protection is enough to encourage the advancement of the arts and sciences of software. Patents appear to be a hindrance.

      --

      this signature has been removed due to a DMCA takedown notice

    2. Re:Proposal by cpt+kangarooski · · Score: 1

      Ok, let's be fundamental about this. Isn't it strange that we should consider "software" as different from other intellectual property? If X hours of work have been invested into the invention of a clever software routine, then, it would be strange if a patent could not be granted for that work while a patent would be granted for some physical apparatus that also took X hours to develop. (Don't think about the stupid "one-click-buy" software patents, but more along the lines of an ingenious differential-equation solver).

      So, I don't think a law that says "patents are granted, but not for software" would be a good one. If we would abolish patents, we should do it in all fields.

      I disagree.

      First, patents are not granted on the basis of the effort expended to invent a patentable invention. The sweat of the brow theory is just as much bunk for patents as it is for copyrights.

      Second, the purpose of patents is to encourage the invention, disclosure, and bringing to market of inventions which otherwise would not be invented, disclosed, and brought to market, and where the restrictions on the public are as minimal as possible in both scope and duration. Patents have an inherent negative effect on invention, disclosure, and bringing to market, and so it is important that the incentive is large enough to spur on more of this behavior than it inescapably deters. Further, patents inherently limit the freedom of the public to practice the invention, and tend to have negative effects on the market due to the monopolistic prices the patent holder can charge, so it it is important that the positive benefits of the patent for the public also outweigh the inescapable negative effects it has on the public.

      What's interesting about the software and business method fields is that there are many natural incentives for invention, and bringing to market. And while formal disclosure could still be useful, the system is gamed to make disclosures unhelpful and at any rate obervation of the patents in practice in these fields usually reveals anything that disclosure would. This means that the incentive of a patent amounts to little in these fields, but the negative effects of the patent are not mitigated at all. Thus patents here act to harm inventive activity more than they do to spur it on. Combined with the negative effects on the public, software and business method patents wind up producing more harm than good.

      Someday, perhaps, the natural incentives in these two fields will diminish and there will be more of a role for an artificial incentive from patents. By all means we should watch for that so that we can revisit the issue when th time is ripe. But for now, software and business method patents harm more than they help. That's why we need to be rid of them.

      --
      -- This and all my posts are in the public domain. I am a lawyer. I am not your lawyer, and this is not legal advice.
    3. Re:Proposal by zzsmirkzz · · Score: 2

      As an aside: in the end, everything is mathematics. Software is mathematics; but also a physical apparatus, or even a medicine can be described mathematically. So, based on this argument, there should be no distinction in IP law.

      While a physical apparatus and/or medicine can be described mathematically, they are not, of themselves, math. Software, on the other hand, is math that can be described in special languages that are easier for humans to read. See the difference? The description (or the can be expressed as) is reversed. Software starts out and is math, period. It is a series of add/subtract/multiply/move statements, nothing more. If the algorithm for calculating a number's square root on paper is not patentable then neither should software.

    4. Re:Proposal by Bengie · · Score: 1

      Software is entirely a thought process. The code itself is not tied to hardware, only the compiled result is. As for medicine, that is one of the few real applications for patents. Most of the cost of medicine is in trail-and-error, along with lots of ethical restrictions before coming to market.

      Software has no ethical restrictions and the only trial-and-error portion is with the math side of it. Software is just a throught process.

    5. Re:Proposal by SoftwareArtist · · Score: 1

      The whole concept of "intellectual property" is dishonest and misleading. It takes several fundamentally different and unrelated things -- patents, copyrights, trademarks, service marks, trade secrets -- and tries to portray them as all being the same thing. And each of those categories contains many unrelated things. Patents can cover physical objects, processes, computer algorithms, business methods, non-functional design features, etc. Copyrights can cover written works, images, sound recordings, musical scores, movies, software, etc. By calling all of these things "intellectual property", you imply that they're all the same thing, and if you support any one of them, you need to support all of them. But they're not the same thing. They're very different, and there's no reason they need to all be treated the same way.

      --
      "I'm too busy to research this and form an educated opinion, but I do have time to tell everyone my uninformed opinion."
    6. Re:Proposal by tlhIngan · · Score: 1

      Ok, let's be fundamental about this. Isn't it strange that we should consider "software" as different from other intellectual property? If X hours of work have been invested into the invention of a clever software routine, then, it would be strange if a patent could not be granted for that work while a patent would be granted for some physical apparatus that also took X hours to develop.

      Fundamentally, software is already different from other intellectual property as it also has copyright protection. Why should one body of work be allowed to be protected under two completely different IP regimes? Copyright protection is enough to encourage the advancement of the arts and sciences of software. Patents appear to be a hindrance.

      Which is why we should abolish software from copyrights AND patents.

      Because prior to software, the world was simple. You wrote something creative, and it got copyrighted and enjoyed.

      You make something useful (as opposed to write), and that thing gets patent protection.

      Copyright applied to written works (not just books, but music, movies, etc). Patents applied to "stuff" that did something.

      But then software comes around and screws it all up. First, it's written. But it can also do stuff. It can be used to replace a mechanical apparatus with something simpler (a software controller replacing hardware). It can "be" stuff - e.g., the software you write for an FPGA or ASIC gets boiled down to actual hardware. And now, with 3D printers, it can "create" stuff.

      And yet, it's also a form of mathematics.

      Perhaps it's time to reform it - software can neither be copyrighted, nor patented (you can't copyright an ASIC, after all). At the same time, get rid of all the wrangling and stuff we did to copyright and patent law to accommodate what really shouldn't be accommodated. From copyright law, we excise the right to make a necessary copy to run the program (it was always pretty hazy) among others. From patents, we excise its mathematical capabilities.

      At the same time, we add IP protection for software, because we need it - FOSS or commercially licensed software can't live without it. But instead of seeking patents or copyrights, we create a new category - software. This protection applies to all software in its original source form. As whether the final output is an executable binary, a netlist, a set of masks, whatever, going from the source to the output is a mechanical translation (using manual or automated tools) and the output can be derived from the input, which means only the input needs protection. (Yet another way software is different since it takes on so many intermediary forms).

      This software protection will apply for a duration more appropriate for software. And it covers all software code. We can debate about stuff like algorithms and implementations separately (right now, that's where patents and copyright clash, respectively) and take a more holistic view of doing things.

      This way things get saner. It doesn't make sense that some complex machine can get patents, but if you replace much of the complexity with software to do the same thing, that software cannot be patented. Or what actually is copyrighted when you copyright software - the source code, the binary output? Both?

      The reality is, well, we've created a new form of IP that's quite unlike all the previous forms of IP that we've been accustomed to for hundreds of years. It's completely unique to software, and it and its unique properties should be respected. Trying to shoehorn software into copyright and patent law leads to the current mess we're in now.

      And yes, it could mean something gets protected multiple times. If you have a complex electromechanical machine that's highly patented, then replace its innards with stuff that's much simpler and put that complexity in software, well, the simpler innards may not be patentable anymore, but the software controlling it certainly can be si

    7. Re:Proposal by zzsmirkzz · · Score: 1

      Exactly which part was reduced to absurdity? Just because the actual inner-workings of software is abstracted from the developer that doesn't change what it is.

  21. They fouled their own bed by PopeRatzo · · Score: 1

    If software patents hadn't been so badly abused, often by some of the biggest, most powerful corporations, then there might have been a place for strictly limited patents. But we've learned in the past decades that you cannot trust corporations to behave well. Given the opportunity for fast profit, they will gladly abuse every aspect of the law. As a stockbroker friend of mine puts it, "They'll throw a baby off a bridge for a dollar". They say they want "free markets" and "competition" but not for themselves.

    And this bad behavior by anyone with the last name of "Inc" is why we just cannot have nice things.

    --
    You are welcome on my lawn.
    1. Re:They fouled their own bed by Bengie · · Score: 1

      you've developed a new software product

      This never happens. No on ever develops anything new in software, what they develop is new expressions of something that already existed. Use copyright.

    2. Re:They fouled their own bed by intangible · · Score: 1

      Impossible.

      What would really happen:
      Small development company sued over and over by large company who wants to prevent them from competing with ridiculously broad software patents until small company goes out of business. Large competitor has 10's of thousands of dubious patents...
      Just dealing with a single assertion from large corporation costs $200,000 http://en.swpat.org/wiki/Cost_of_defending_yourself_against_patent_litigation

  22. What innovations would go away? by ggraham412 · · Score: 2

    'Disputes over software patents are among the most common, expensive, and counterproductive. Their exclusion from the patent system would discourage some software innovations, but the saving from litigation costs over disputed patent rights would more than compensate the economy for that cost.'

    I'm trying to think of some examples of software innovations that would be discouraged by excluding them from the patent system.

    If one wrote software that made some process more efficient, wouldn't one want that process to be more efficient anyway, regardless of the patent status?

  23. Obviousness is a different argument by Theaetetus · · Score: 2

    Even LZW compression is fairly obvious to a skilled programmer. I remember there were several similar compression algorithms around at the time it was patented. It's not an especially good algorithm, it's just more famous (mostly thanks to the patent wars that surrounded it).

    Leaving aside the argument of whether LZW is obvious or not, that's not what the article is talking about. Basically, in an incredibly simplified nutshell, there are 4 separate and independent requirements you have to pass to get a patent, and failing any one of them will result in a rejection or invalid patent. They come from four different statutes:
    35 USC 101: the invention must be a useful method, machine, article of manufacture, or composition of matter;
    35 USC 102: the invention must be new - i.e. never done before;
    35 USC 103: the invention must be non-obvious;
    35 USC 112: the invention must be sufficiently described in the patent application to enable someone to make and use it.

    You're saying that LZW fails the 103 requirement in that it was obvious... that's a different argument. What this argument is about is whether all software should be excluded from the definition of "method" under 35 USC 101: whether the most novel, most non-obvious, most freakin' revolutionary bit of software in the entire universe should still be ineligible for a patent, because it's software.

    The GP post says that yes, maybe that revolutionary software alone should be unpatentable under 101, but if it's part of firmware for an EPROM, then maybe it should be allowed.

    1. Re:Obviousness is a different argument by Rockoon · · Score: 1

      It is easily argued as well that LZW was non-obvious since its an extension of a 1978 compression method yet wasn't considered by anybody until 1984. People often confuse "simple" which the Welch enhancement to LZ78 was, with "obvious" which the Welch enhancement to LZ78 was not (it was not obviously an enhancement.)

      Given the number of compression patents handed out during the period, it is quite clear that there was aggressive competition with regards to compression technology and anything "obvious" was immediately picked up on (ex: LZ77 vs LZ78 .. the LZ78 enhancement of using a preinitialized dictionary was obvious, and no surprise came less than a year after LZ77)

      --
      "His name was James Damore."
  24. Re:Somewhat communist. by ultrasawblade · · Score: 2

    Maybe creation will just be so easy and commoditized that it isn't worth it to try to do it as profitable activity. Doesn't mean people won't do it. They'll do it for fun, or because they themselves need something. I'd love it if it was so easy to create a program I need that I could do it on my own without having to hire anyone or rely on someone else to come up with the idea and try to charge me for it. I don't ever see this happening, of course, but if it did, it's not a bad thing.

    There isn't always a need for a middle man and no real reason to have one if one is not needed.

  25. Re:No more SW Patents, but FW Patents.. yes by TemporalBeing · · Score: 1

    Pure software patents should be dropped. However, when the software is a required piece of a hardware system (aka, Firmware) it should be allowed.

    The other problem is for software that does something that really is a an invention, such as LZW compression, and not a "drop-down menu".

    And how do you define Firmware when the worlds of Embedded and non-Embedded computing are mixing so well?

    Would Android ROMs be considered embedded? Or would it be limited to the ROM uploaded to your wireless card? or CD/DVD/BD Burner? Where do you draw the line?

    I currently work on a system that is for-all-intents an "embedded system" yet we load "normal" software onto it.

    While IANAL, SCOTUS has ruled that a non-patentable compont can be part of a larger patentable component, but the sum of non-patentable components do not a patentable component make. That is, software for a rubber curing machine can be part of the patent for the rubber curing maching even if the software is otherwise unpatentable by itself; however, that also precludes someone from being able to sue for patent infringement when someone took that software and used it in another device entirely - f.e, a device to lay rubber on the road - should the software apply there too.

    --
    Truth is like the sun. You can shut it out for a time, but it ain't goin' away. - Elvis Presley (source: imdb.com)
  26. Re:All digital circuits are analog... by Joining+Yet+Again · · Score: 1

    Only a digital system has a finite number of states, no?

  27. in today's climate... by MickyTheIdiot · · Score: 1

    ...he'll just be called a socialist and that's that.

    We are an era of NO debate. The pro-corporate lobby will smear him and there will be no discussion. Being a Nobel Laurette isn't going to matter much to knownothings in Congress.

  28. Re:Very suspicious by Rockoon · · Score: 1

    No, what did Detroit in was spending more than they could afford, and particularly by stealing from its future generations to fund the profligacy of 30 years previous to now.

    Thats part of what did Detroit in, but Detroit actually demonstrates the result of a trifecta of structural problems. No other city that I am aware of declared war on the middle class (a city income tax, highest property taxes in the region, and so on) the way that Detroit did, leading to an exodus of the middle class resulting in a rapidly dwindling tax base.

    --
    "His name was James Damore."
  29. Re:'tis a "theoretically" good idea. by JesseMcDonald · · Score: 1

    Every money is fiat money. Even a Gold standard. The value of Gold exists only in the mutual agreement that Gold should be valuable, because it looks nice if used for decoration.

    The "fiat" label mean more than just that the price is determined by the market. As you know, all prices are ultimately determined by the market; there would be no point in calling it "fiat" if that was all it meant. Fiat money is money which is marketable at least in part due to government decree; for example, by being declared legal tender, meaning that people are obligated to accept it for settlement of a debt in lieu of whatever form of payment was actually negotiated. Federal reserve notes are fiat because you are required to accept them; no one is required to accept gold, so gold is not fiat money. Both are forms of base money, meaning that they trade on their own merits rather than as claims on other goods, like paper money under the gold standard.

    --
    "The state is that great fiction by which everyone tries to live at the expense of everyone else." - Bastiat
  30. Re:Somewhat communist. by Impy+the+Impiuos+Imp · · Score: 1

    How much will people do it for fun when a giant company bundles in your new invention to de-fuzzy pictures?

    People bitch on tumblr already because someone reposts a gif they made without attribution.

    --
    (-1: Post disagrees with my already-settled worldview) is not a valid mod option.
  31. Re:Very suspicious by RogueLeaderX · · Score: 1

    It was Chicago 'economics' that did Detroit in.

    As a resident of the Chicago metropolitan area I'm curious what you consider 'Chicago economics.'

    If you're referring to corruption that's a problem as old as civilization itself. Crediting Chicago with originating it does little but boost the already over-inflated egos of Chicago politicians.

  32. Re:No Nobel prize in Economic, Wrestling, orAstrol by runeghost · · Score: 1

    AC above is right. The so-called "Noble Prize in Economics" is actually the Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel. It was created in 1969 - over 70 years after the actual Noble Prizes. (Apparently the bankers felt left out.) I can create the Runeghost Prize in Absolute Awesomeness in Memory of Alfred Nobel, but even if I bribe the Nobel Committe with a few tens of millions I happen to have lying around to let me into the ceremony, that does not mean that there is actually a Nobel Prize in Awesomeness.

  33. I doubt the USPTO can tell hardware from software. by dweller_below · · Score: 1
    We are all terrorized by the threat posed by the enormous number of poor quality patents. We are all searching for shelter. Excluding software seems like it might pose temporary shelter. But, the difference between hardware and software is not a sharp line. They blend smoothly together. In this situation, somebody with a lot of lawyers can draw the line anywhere they want. That is what got us into this mess in the first place.

    Even though it may be hard, we probably need to start by reforming the US Patent Office to reduce the number of poor patents. It is not impossible. The USPTO was mostly functional 30 years ago. We just need to recognize that we have made mistakes and address them. I have enumerated what I believe to be the major mistakes in a rant at: https://plus.google.com/b/101806809558932714222/101806809558932714222/about I sent my CongressCritters a letter describing the problem. Feel free to mine it for ideas. It is available at: https://docs.google.com/document/d/1mCG_vwfHN8xPnVyGq46BfKKyRflQtVcebuT0rwrpTG0

    The biggest problems with patent reform aren't understanding how to improve quality. They are:

    • * How do you reform in the face of determined opposition from the Patent Industry? Or
    • * How do you strip the Patent Industry of it's enormous influence? And
    • * How can we possibly survive the current flood of crappy patents.

    I believe the major mistakes that create poor quality patents are:

    • 1) More patents are not better than fewer patents.
    • 2) Running the US Patent Office as a cost-recovery operation is a mistake.
    • 3) It is a mistake to organize the US Patent Office to create economic incentives to grant poor patents.
    • 4) Scaling up the Patent Office to produce more poor quality patents is a mistake.
    • 5) It is a mistake to grant all patents that meet minimum standards.
    • 6) It is a mistake to allow patent applicants to modify or extend their patents after submission.
  34. Re:Pedantic? by Anonymous Coward · · Score: 1

    Isn't that a bit pedantic? It's commonly referred to as the Nobel prize in economics.

    No, it's not pedantic. It's an effort to counter the Bank of Sweden's fraudulent effort to pass off the prize they fund as a "Nobel Prize". I could endow a "Nobel Prize for Excellence in Playing 'Angry Birds'", and it would be just as much a real Nobel Prize as the one Becker received.

  35. Code patenting by Firethorn · · Score: 1

    That's the thing about copyrights; you're not allowed to copy somebody's story, but even though somebody else has written a detective novel doesn't mean that you can't.

    Looking at your two code fragments, I see two implementations that are different enough to have been come up by two different coders given the same problem. Sure, they're very much alike, but it's for a really simple function. Consider how similar two horseshoes are probably going to be for the same horse(and tasking for said horse). Same with hammers used for the same purpose.

    However, are you going to go through the entire code base for a major program and change stuff like this? Remember, it's still a copyright violation if you take something and simply change the names(to protect the innocent). Your work has to be substantially different lest the opposing party convince the judge.

    Besides, something very similar was ruled legal way back in the day concerning BIOS. They duplicated the BIOS by essentially testing the existing one through all it's functions, generating a massive spec book, then having their programmers build a duplicate based on the spec book. Even improved performance in many ways.

    --
    I don't read AC A human right
  36. Microsoft and IBM push softwqare patents by WOOFYGOOFY · · Score: 1

    The addiction started at IBM with one Marshall Phelps, who is a pusher. While at IBM he addicted them to a revenue stream of upwards of 2 billion from their IP portfolio. He actually shot them up directly in the arm and then continued to do so even as people within IBM warned against the dangers with drug usage and drug addiction.

    \When Marshall Phelps, pusher, was done with IBM, he moved on to microsoft, again mainlining them with his junk and turning them into software patent junkies. The results were as predictable as they were ruinous, as miicrosoft's refocused its resources on pushing trivial patents at the USPTO and reoriented its strategy on preventing market competition rather than meeting it.

    Rarely is something as destructive as software patents directly attributable to one individual, however in this case we can clearly and definitively identify the original carrier- Marshall Phelps.

    Software patents kill people. The treatments that never see the light of day and the technology and advancement that never happens because some addicted CEO and some pusher- lawyer who makes money off the addicts have prevented life-saving progress from ever being realized, brought to market or, most often and most insidiously never attempted.

    When lawyers like Marshall Phelps are permitted to operate freely in society , then people die. I can only imagine what the body count that is directly attributable to this one person's actions is. It must be into the hundreds of thousands.

    Today Marshall Phelps continues to push software patents, still setting in motion a sequence of events that has dead people who would otherwise have been alive into motion.

    Marshall Phelps is a monster and society must stop him.

    Software patents kill people.