Stories
Slash Boxes
Comments
typodupeerror delete not in

Comments: 186 +-   Blackboard Wins Patent Suit Against Desire2Learn on Monday February 25 2008, @06:58PM

Posted by kdawson on Monday February 25 2008, @06:58PM
from the that'll-learn-'em dept.
patents
education
edremy writes "Blackboard, the dominant learning management system (LMS) maker, has won its initial suit against Desire2Learn. Blackboard gets $3.1 million and can demand that Desire2Learn stop US sales. (We discussed Blackboard when the patent was issued in 2006) This blog provides background on the suit. Blackboard has been granted a patent that covers a single person having multiple roles in an LMS: for example, a TA might be a student in one class and an instructor in another. You wouldn't think something this obvious could even be patented, but so far it's been a very effective weapon for Blackboard, badly hurting Desire2Learn and generating a huge amount of worry for the few remaining commercial LMSs that Blackboard has not already bought, and open source solutions such as Moodle (Blackboard's pledge not to attack such providers notwithstanding)."
story

Related Stories

This discussion has been archived. No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More
Loading... please wait.
  • by Mr_eX9 (800448) on Monday February 25 2008, @07:00PM (#22552716) Homepage
    ....why the hell would anybody want to infringe on their patents? It's a really horrible design and interface.
    • by pembo13 (770295) on Monday February 25 2008, @07:08PM (#22552820) Homepage
      God bless you. I thought I was the only one that hated it.
      • by Workaphobia (931620) on Monday February 25 2008, @07:12PM (#22552850) Journal
        Mark my words. I have *never* come across anyone who liked it, in my entire undergraduate experience. Professors and students alike despise it, yet somehow our opinions don't seem to matter to the people making the purchasing decisions.
        • by pembo13 (770295) on Monday February 25 2008, @07:22PM (#22552958) Homepage
          Well I can truly say that I feel somewhat better today, unless of course you go to the same school that I do, in which case it proves nothing.
        • by CrispBH (822439) on Monday February 25 2008, @08:23PM (#22553564)
          Right on. I'm a Computer Science undergraduate, and the choices here are Blackboard or the professor's Intranet web space (which every user has including students). Almost no professor and certainly no students like Blackboard. Honestly, it feels like the most hacked together and unplanned pos you could imagine. I'm pretty sure any small group of moderately skilled programmers could do a better job; it's really that bad.

          Almost all of my tutors use their web space to provide material and updates etc. Interestingly, it's the couple of lecturers/professors who are lacking in the, er, quality department who DO use Blackboard and rave on about it.
          • by Anonymous Coward on Monday February 25 2008, @09:02PM (#22553930)
            You are very observant. As I reread this, I realize it looks like a ridiculous, cardboard-cutout of a troll, but I put forth that any sysadmin reading this will immediately recognize this as the voice of truth, and agree:

            I've had the (mis)fortune of working with Blackboard as a sysadmin for about five years now.

            It is without a doubt, a gigantic hacked-together hodge-podge under the covers. The installation guide is probably 300+ pages. Tasks that should be, by anyone's standards, put into a shell script are simply written out and numbered in the guide, which does nothing but increase the perception that not even the program's authors care about it.

            Blackboard runs (or at least used to run--to be fair, later versions are apparently more cohesive) on a strange polyglot of Perl, Java, and Shell (and who knows what else). The vast array of underlying technologies has the feel of something that's been hurriedly duct-taped together, and you're almost amazed the thing runs at all.

            Worse, upgrades are fantastically painful--accomplished by applying the endless patches in the proper order (obtainable at the 'behind the blackboard site' which is discouragingly useless) and any one of them can fail for any of a hundred different reasons.

            Nobody I know in the education technology industry claims to like installing/administering it, and in fact, it's become one of those tasks that nobody likes to do--almost a running joke. Hoping to ingratiate myself with my employers, I volunteered to be the "Blackboard guy," a decision I've regretted to this day.
            • Mod parent up (Score:5, Informative)

              by Anonymous Coward on Tuesday February 26 2008, @03:05AM (#22556022)
              I have also been a blackboard admin for about five years. The above post is 100% true.

              Here is a short list of Blackboard annoyances:

              It produces hundreds of megabytes of absolutely useless logs every day.

              These logs are basically consist of tomcat java core dumps which seemingly happen every second of the day. These java dumps are completely useless unless you are a java programmer, and even if you are a java programmer, blackboard does not provide the source to their jar files. You could probably decompile them, but who would want to given Blackboard's history of suing over IP.

              The built in log archiving utility doesn't work.

              With all of these goddamn logs, you would think proper log management is surely something Blackboard integrates into their product, right? Wrong. They include a nice little log file archiving utility but it contains precisely zero options on how to archive them, and it frequently fails to zero out logs, leaving you with gigabytes of log files after a short time. Many BB admins, including myself, have their own script to manage logs.

              It's built primarily on Tomcat.

              Everything I've ever seen that was built on Tomcat has been either unstable, dog slow, or both. One version of Blackboard shipped with a version of Tomcat that leaked threads, causing BB administrators all over the planet to have to restart the tomcat processes on their BB servers every 7-14 days.

              Their support is nearly non-existent

              Unless you say your server is down, support tickets generally take weeks, and in some cases months to get resolved. Simple ("non-critical") cases are all but ignored. Support reps have been known to answer with a polite equivalent of "RTFM". I was given the "RTFM" response to the case I put in regarding tomcat leaking threads. They never resolved the case. Instead I ended up monitoring threads and restarting tomcat by hand. When we updated to a new version of Blackboard the problem magically went away. I'm not completely sure, but I think Blackboard never even realized that they were shipping a buggy version of Tomcat. They accidentally fixed it by shipping a newer version in a later release.

              They use incredibly inefficient stored procedures which can bring down an entire system

              Most of the complex processes, like deleting entire courses or students are carried out via stored procedures in the database (BB runs on SQL Server and Oracle). In SQL server, the stored procedures are extremely inefficient and can suck up so much memory that they bring the entire system to a grinding halt. I ran across this when trying to delete a bunch of very old courses in our system. In researching the problem I read that the use of cursors was a huge no-no in SQL server (but okay in Oracle!). The stored procedure that deletes courses was, of course, written using cursors. Not being a skilled DBA, I could not rewrite the SP myself, so instead I broke it up into parts and has a script run the individual parts on all of the courses I wanted to delete.
                • Re: (Score:3, Informative)

                  Indeed, Tomcat is not to blame for speed problems. In fact current versions start up faster than Resin.

                  On Windows, however, it does have the distinction of being the only app server incapable of undeploying wars through the expedient of merely deleting their directory. It runs into the file locking issues on Windows, which I do suppose is partly the blame of Windows, but I'd also point out that no other app servers have this problem.

                  It also has classloader leaks that go back to the beginning of Tomcat, ha
          • by CastrTroy (595695) on Monday February 25 2008, @09:38PM (#22554240) Homepage
            When I went to university, all we had was the Professors webspace. And we liked it. Do we really need anything more complicated? Or is this a solution in search of a problem? A lot of professors I had didn't even use the webspace. We seemed to do fine without it.
        • by moosesocks (264553) on Monday February 25 2008, @08:33PM (#22553658) Homepage
          I worked in College IT for a time, and we hated it too.

          Problem is, that sort of purchasing decision almost always gets made much higher up, or even at the state level. That's also why you also see SunGard/Banner all over the place.
        • Re: (Score:3, Informative)

          Speaking as someone who was occasionally called upon to assist in the administration of a Blackboard server, I can tell you that we hated it too.

          The group where I worked was a network operations center for several universities, and because the Blackboard server admins were puzzled by slow performance - "almost certainly a network problem," they told us - we agreed to let them keep the server with us. That was convenient, because the next time it was slow, I was in a unique position to explain to them the co
        • Re: (Score:3, Interesting)

          I teach on various university courses with ca. 50-150 students each. Our term began this week. I have become so frustrated with Blackboard, and it led to a disastrous situation last month where 15 students almost failed a course through no fault of their own, and so I have given up on it. My university's IT department have been made well aware of the reasons, ... and as you might expect, they plan to change nothing, and will keep on throwing good money after bad on Blackboard.

          For various reasons setting up

          • by dgatwood (11270) on Monday February 25 2008, @10:01PM (#22554456) Journal

            Except for the professors who actually listen to the students. In my brief time trying to use Blackboard as an instructor, I pretty much concluded that I would spend more time trying to make it behave than it would take me to write the damn thing from scratch, so I used it as little as humanly possible.

            The only thing it did that I couldn't do trivially with my own web space was do online quizzes, and frankly, I could have hacked something together that would have been less painful for both teacher and students in a day or less... coding while drunk, while smoking crack, while a herd of midget pygmy women had their way with me, while watching Red Dwarf reruns, while being beaten ruthlessly by a psycho ex-girlfriend with a cat of nine tails, and while hanging upside down with a rope tied to my testicles... simultaneously....

            Yes, it is really that bad. In fact, that description pretty much summarizes how it felt to use Blackboard from a teacher's perspective. If your teachers like it, I truly wonder about them. :-D

    • by EmbeddedJanitor (597831) on Monday February 25 2008, @07:18PM (#22552914)
      They did not patent the crap execution of the idea, just the idea itself.

      Here's a place where patents really suck: a good idea gets sat on and cannot be used by people would could make into something good.

      • Indeed, I see who owns the crap execution patent at the bottom of every pay stub, under the heading "Taxes".
      • Re: (Score:3, Insightful)

        Off the top of my head I can think of many basic design patterns you could put to use in Learning Management Software (LMS). You would quickly identify many of them in a day or so, given the task of designing a system. In fact you could just go through the classic book "Design Patterns" and the applications of the patterns to LMS will probably just leap off the page. If you were to patent a few of these basic concepts in the specific area of LMS, it could totally prevent development of other competing syste
      • by kcbrown (7426) <slashdot@sysexperts.com> on Monday February 25 2008, @08:12PM (#22553454)

        They did not patent the crap execution of the idea, just the idea itself.

        And this is why the patent should be thrown out.

        Patents were intended to give the patentholder exclusive control over the use of a method for a limited period of time. Methods can cover a lot, but in the end they should be specific. In the Olde Days, patent applicants were required to submit prototypes of their inventions.

        If the end result of the patent is to fence off a concept and not an implementation, then the patent itself is, I think, invalid.

        • by Anonymous Coward on Monday February 25 2008, @09:16PM (#22554070)
          The main issue with that is that software is the art of abstraction. By its very nature, the higher a level a language you're writing your software in, the closer it is to just telling the computer the "idea" rather than the "method" - these days, you don't tell the computer how to bit blit every pixel onto a framebuffer, you tell the OS to open a window.

          Personally, I believe patents (not just software patents) shouldn't exist full stop (due to both economic and ethical reasons I won't go into here), but software is exceptionally problematic due to its nature - IF you allow patents on software, it is _necessary_ that patents be on the "idea" at some level, because idea/method is not a dichotomy in software, it's a spectrum.
      • by billcopc (196330) <vrillco@yahoo.com> on Monday February 25 2008, @09:45PM (#22554292) Homepage
        Worse still, is that when this heinous company eventually fails and vanishes, some half-bred law firm will snap up the patents and continue terrorizing the industry with spastic threats and baseless royalty fees.

        Software patents and those who thrive upon them must be exterminated from society, progress is infinitely more important than money.
    • Not to mention horrible on resource usage. My school (University of Toronto) is in the process of switching to Blackboard, and they had to build an entire new server room to run it. CCNET all the way!!

      Aikon-

      • Re: (Score:3, Informative)

        As an executive on the Engineering student government I have to say that we have been working this academic year to try to stop the garbage that is Blackboard, but it looks like it's being mandated across campus. Stories like this make me realize why it has to be mandated...
  • More obstacles between people, and learning.

    This one particular line almost made me vomit from my eyeballs: You wouldn't think something this obvious could even be patented, but so far it's been a very effective weapon for Blackboard, badly hurting Desire2Learn... Semantics notwithstanding, is it really even slightly plausible that a company focused on education would want to crush anyone else attempting to teach people?
    • Re: (Score:3, Insightful)

      A company focused on MAKING MONEY via education wants to crush anyone else attempting to compete with them via teaching people
      • Then it's not an educational firm... it's educational only as a secondary, possibly accidental effect (and based on these reviews, DEFINITELY accidental). I just... it... they.... AUGH!

        This only contributes to the dumbening of our children.

        ... Wait a minute, that's not how you spell dumbening.

        ... Wait a minute, 'dumbening' isn't even a word!
        • ... Wait a minute, 'dumbening' isn't even a word!

          Of course it is. It's a perfectly cromulent word.

  • Polymorphism (Score:4, Interesting)

    by gringer (252588) on Monday February 25 2008, @07:02PM (#22552738)
    Er, isn't this just polymorphism [wikipedia.org]?
  • Blackboard sucks (Score:5, Informative)

    by SameBrian (945591) on Monday February 25 2008, @07:07PM (#22552798)
    I am a student at UNBC (in BC, Canada), and Blackboard is our LMS, due to the fact that Blackboard bought out WebCT recently. I have to say that as a student, marker, and Computer Helpdesk staff member, I /LOATH/ Blackboard. The system is flaky, often crashes, logs you out for no reason, refuses to load files, fails to load files, as well as a myriad of other issues. I feel that not only is allowing a patent like this counter-productive to the advancement of the product, it also continues to add precedent that it's okay to patent stupid things and then create a monopoly. The idea behind the free market is that everyone has a fighting change to sell their product. Sure, consumers have allowed companies like Wall-Mart to take off and out-sell smaller companies, but that's the risk of doing business. Letting companies sue each other left and right is not allowing for a free market, and is in the end going to hurt consumers. For example, when Blackboard bought WebCT, they stopped supporting WebCT4 (Blackboard has released WebCT6/BCE6), despite the fact that there are many classes which are not fully compatible with the new version. I know this isn't really relevant, but I couldn't help but take up the opportunity to badmouth Blackboard. Another point to note is that a friend of mine worked at a college in Alberta implementing the system and said it's just as ugly and trying on the server side as it is on the client side.
    • Why fix the software when you can litigate the competition out of business?
      • Wait... I was a student at TRU, also in BC, Canada. They found a system WORSE than WebCT?!?! Holy crap, that IS Slashdot-worthy!
        • Re: (Score:3, Interesting)

          They found a system WORSE than WebCT?!?

          Oh yeah, they found it alright.

          Now that Blackboard has acquired WebCT, it's getting worse, inconceivable as that might seem. The licensing was getting out of hand even pre-acquisition, and my Spidey-Sense tells me we're just about to take it on the chops from Blackboard. This patent, which stakes out the ground for role-based rights as a Blackboard invention, will kill all innovation as well as open source implementations such as Moodle and Sakai, etc. Everyone is going to be afraid for the future of t

        • Re: (Score:3, Informative)

          and if that happens I will petition to start developing an in-house system to replace Blackboard.


          Good luck. They can just sue you for violating their patent.
          • And even if you work around their "amazing innovative" multiple role idea, they can just patent some other obvious idea like "saving user preferences to disk in a learning management system".
    • Blackboard, The company people create when someone says "Well its not like we can break into the textbook publishing business eh?".
    • I have used WebCT and Moodle, the former as both a teacher and a student, and the latter as a teacher.

      WebCT rocked, but was expensive. Moodle sucks, but is OSS. But Blackboard? I have never heard a kind word uttered about it.

      Being patent trolls doesn't help my image of it, either.

  • Ahh yes.

    The "Is a..." relationship type in a relational database.

    A Person is a Student. A person is a Teacher.

    etc...
  • Once Again (Score:4, Insightful)

    by pembo13 (770295) on Monday February 25 2008, @07:11PM (#22552842) Homepage
    Patents assisting innovation, just like they were intended for.
  • by MrSteveSD (801820) on Monday February 25 2008, @07:11PM (#22552846)
    I've seen "multiple role" examples in various database books going way back. It's not rocket science. This patent is just taking a basic concept and saying that it a narrower context than the general example, it's patentable. It's like saying you can't have a headteacher object inheriting all the features of the basic teacher object in a teaching application, because we have patented the idea.

    What other general concepts shall we patent in narrower contexts? How about patenting the basic concept of parent child relationships in Cinema Seat allocation software. It could get quite ridiculous.
  • by Apple Acolyte (517892) on Monday February 25 2008, @07:12PM (#22552856)
    Despite everything we've heard about defense against stupid patents, it seems clear that the Obviousness doctrine really doesn't matter to courts. And I hear thought the Supreme Court gave the doctrine a boost recently. I guess if you can't beat 'em, join 'em - I'm going to take a patent troll class, powered by BlackBoard!
  • by Sepiraph (1162995) on Monday February 25 2008, @07:17PM (#22552894)
    We can be digested by all ridiculous patent stories on slashdot and yet we can still laugh at them becuase most of the time we are not directly affected by it. However, as ridiculous and terrible as most software and business patents are, they will be NOTHING compared to the next big trend in patents--genetics/DNA engineering. When some soulless companies in the future robbed people of a cure for a genetic diease because somehow they claim to 'invent' it, I bet most of us won't be laughing.

    Patent reforms need to start NOW, or else it'd be too late and by then we (the general populace) would be too powerless to stop it.
    • Patent reforms need to start NOW, or else it'd be too late and by then we (the general populace) would be too powerless to stop it.

      It'll be as easy to change then as it is now. The difference will be that it's an area most people care about. One computer company pulling off a dumb lawsuit against another company is a niche problem. A pharmaceutical company exercising a patent against another pharmaceutical company that's developing new cures for cancer will get people in an uproar. Look at stem cells for what happens when the government ignores what people think is the best way to manage healthcare research.

      Change will come, it'll

  • is

    "N-T-I... Oh, Non-Terrestrial Intelligence. That's Better than CIA..." (from the Abyss)
  • ... that you could copyright a system for crashing browsers, infuriating mac users, and pissing off entire universities from students to faculties to staff.

    What a country!
  • not another victory for this POS product. I have to use it for my own studies and half the time *I can't even log in*, let alone do anything useful. Arbitrarily laggy with random disconnects. And most of my professors use it minimally, if it at all. Stupid POS.
  • by davidsyes (765062) * on Monday February 25 2008, @07:40PM (#22553140) Homepage Journal
    I looked at BOTH sites, Blackboard, and Desire2Lean, and both their products tried my patience, as far as the demos go.

    D2L's intro spewed buzzwords for maybe a minute, but it was quite grating. Worse, no pause or rewind or similar buttons.

    BB's demo had pause button, but instantly reminded me of a webified version of ms access, which i would never want to touch.

    If both apps are just turning to code what was done by hand, how can BB win? Both interfaces seem different, judging by their demos. Granted, getting hold of the functional versions of each will be the best way to compare them.

    I suppose, were I to sit down with 100 teachers, and ask each for their advice on creating an automated grade point average, curve break points, and so on, it would not be research, but patent infringement. If that is the case, then the judge, the court, and the USPTO all need fids and anchor chains hammered up their rear ends.

    Any programmer-turned-teacher should be free to develop and freely distribute OR SELL their OWN implementation of grading and scheduling systems.

    As for some hare-brained idea that there is something novel about a student being a teaching aid in one subject and a student in another, that's just the height of idiocy.

    Example, when I was in the USN (US Navy, many moons ago), we had this thing called "BMI" Basic Military Instruction. Sometimes, a senior seaman or 3rd class petty officer monitored as another subordinate lectured. Later in the week, or in the month, or the quarter, another sailor gave another lecture or course of material. Over time, we had our PQS (Personnel Qualification Charts) filled by date, time, pass/fail/understand/etc and other items.

    Fast-forward to real-world college or high school settings. Math whiz kid mentors history kid in one year or semester or quarter or trimester. Science whiz mentors both, while Student D mentors the other 3. Later, in other classes, all are mentoring some or others.

    It's just a souped-up database that schedules classes and helps create bell curves. Depending on the database, this need not even be achieved programmatically. Modules with lookup tables might do just as well, lending greatly to data atomicity, integrity and to other benefits of relational databases.

    How in the hell is BB's positioning/"differentiation" novel?

  • by Entropius (188861) on Monday February 25 2008, @07:43PM (#22553160)
    ... and those of us who are actually in the business of teaching and/or learning can get on with it.

    My university uses D2L. I, as a TA, hate the motherfucking thing, end of story.

    I have a professor who adamantly refuses to use it and posts course information as plain vanilla html pages (with pdf alternate links, if the LaTeK -> html doesn't look quite right). Nobody complains.

    As a side-effect you can use curl to download all the notes at once. Try that with D2L.

  • by Dr_Ish (639005) on Monday February 25 2008, @07:53PM (#22553260) Homepage

    A few years back, we had Blackboard on our campus. It was horrible and I refused to use it [Techie aside: Take a look at some of their JavaScript, it is bloated and beyond ugly]. However, someone persuaded the students that Blackboard was a wonderful thing. So much so, that their organizations petitioned the administration to make Blackboard mandatory for all classes. I don't know if the student leaders were bribed, but it would not surprise me -- it is sad to say how easily some people can be bought for the price of a couple of pizzas.

    The students proposed a 'Blackboard is mandatory' motion that went through all the relevant committees. Fortunately, the Faculty Senate were rational enough to amend the motion to advocate not just Blackboard, but also 'equivalent technologies'. This left the way open for people to even use simple web pages.

    Then the next thing you know is that Blackboard suddenly wanted a HUGE amount of money for the new version -- much more money than we could ever afford. The techs basically told them to go to hell, kept on using the older version while they could and began to experiment with Moodle. As one of of the more technically sophisticated people on our campus, I was one of the beta-testers for our Moodle implementation. It is always a fun job trying to break software! Although early versions of the implementation had quite a few rough edges, pretty soon, Moodle was up and running in a slick manner. Thus, for a short time, we actually had both versions. Also during this period, negotiations with Blackboard continued, largely without much progress. Eventually their greed was too much. Blackboard was just scrapped. It was not just the cost of the software, but also the hardware requirements that were ridiculous, which killed the system for us. We have now moved entirely to Moodle, which is doing very well, even if a few people were initially unhappy about the change. Hopefully, more schools will be inspired by the predatory nature of the Blackboard people to get that monkey off their collective backs.

    In a final irony, just before the decision was made to pull the plug on Blackboard was made, one of my students demonstrated to me a method by which he could crack Blackboard and change the grades of assignments with relative ease. The main point here though is that behaving like bastards can ultimately have a business cost. I say to hell with Blackboard, support Moodle instead -- after all, it is open source!

    • Re: (Score:3, Insightful)

      However, someone persuaded the students that Blackboard was a wonderful thing. So much so, that their organizations petitioned the administration to make Blackboard mandatory for all classes.

      Blackboard's licensing fees are usually per-faculty, rather than per student, or flat size-of-institution-based. So, a VP of IT, CTO, etc., has a hard time justifying the purchase to trustees when only 20% of the faculty uses it.

      I don't know your institution's case, but most of the time, mandating use of Blackboard is a
  • by aricusmaximus (300760) on Monday February 25 2008, @08:13PM (#22553470)
    Well, my prediction back in 2006 [slashdot.org] was way off.

    Prior art was out there (including from the company I worked for), but neither Desire2Learn nor the educational community provided enough organizational will and competence to find it and kill this patent lawsuit. I personally spent hours of my time gathering prior art evidence as well as soliciting teachers and developers to help fight this. After tepid responses from both sides (including a form-letter sent one month later from Desire2Learn), I shrugged and walked away.

    Hopefully this doesn't affect open source LMSes such as Moodle or Sakai, but if it does then the EDU community has only itself to blame for not stepping up to the plate.

Fat people of the world unite, we've got nothing to lose!