Slashdot Mirror


English Wikipedia Gets Two Millionth Article

reybrujo writes to inform us of a milestone for the English-language Wikipedia: the posting of its two millionth article. At the time of this posting there is uncertainty over which article achieved the milestone. "Initial reports stated that the two millionth article written was El Hormiguero, which covers a Spanish TV comedy show. Later review of this information found that this article was most likely not two million, and instead a revised list of articles created around two million has been generated, and is believed to be correct to within 3 articles. The Wikimedia foundation, which operates the site, is expected to make an announcement with a final decision, which may require review of the official servers' logs."

125 comments

  1. Likely a lot more than 2 million by suso · · Score: 4, Informative

    Mediawiki doesn't count all articles in its article count. And I'm not talking about talk or image pages either. I think it has a threshold of like 72 bytes before it counts an article as an article. So they are most likely way over 2 million. For instance, Bloomingpedia actually has 2,148 articles right now but the Mediawiki count on the front page only shows 2,106. So 42 of the articles are smaller than the threshold.

    However, if they (or anyone else) need a plugin for Mediawiki that will list the pages in order so that you can count them and determine which article was the Nth article, I wrote a plugin called Page Create Order that will put a special page called "List Pages By Creation Date" in your wiki. We developed it for Bloomingpedia originally. Its simple, but it does the job. It could be easily modified to only count articles that are of a certain size as well, the main purpose of this plugin is to see the order in which pages where created.

    1. Re:Likely a lot more than 2 million by Hachey · · Score: 1

      Well, there is also a couple of efforts by others right now in paging through the logs to double check for this kind of discrepancy.

      How much is 72 bytes worth of text anyhow?

      --
      Please allow me to hate the creator of the 120-character limit: *HATES*. Thank you.
    2. Re:Likely a lot more than 2 million by IBBoard · · Score: 2, Informative

      That depends on the encoding - either 72 characters in ASCII or UTF-8 or 36 characters if they go for the more multi-lingual friendly UTF-16.

      Either way, something about that length is likely to be a stub and not a 'real' article.

    3. Re:Likely a lot more than 2 million by adatepej · · Score: 2, Insightful

      There's a reason for only counting pages above a certain size as "articles": a heading and a sentence do not maketh a proper wikipedia article.

    4. Re:Likely a lot more than 2 million by Ginger+Unicorn · · Score: 1

      less than a slashdot sig

      --
      (1.21 gigawatts) / (88 miles per hour) = 30 757 874 newtons
    5. Re:Likely a lot more than 2 million by KiloByte · · Score: 4, Insightful

      That depends on the encoding - either 72 characters in ASCII or UTF-8 or 36 characters if they go for the more multi-lingual friendly UTF-16. UTF-16 more multi-lingual friendly than UTF-8? Er... it has many disadvantages and not a single benefit over UTF-8.

      For example, UTF-16 needs a lot of porting effort, while UTF-8 magically works in all 8-bit-clean programs that don't need to count codepoints or tell character properties (and hey, bytes happen to _be_ 8-bit wide so unless you do something strange, you are 8-bit-clean). Most English-speaking developers won't put this effort, so here goes your multi-lingual friendliness.

      Or another, more insidious flaw of UTF-16: it gives people a false feeling that they can store an entire character in a single array position. This works... as long as you don't meet any character over U+FFFF (rare Han[1], etc) or characters which need to be written using a base char + combining characters (Indic scripts, etc). UTF-8 makes no such promises, and thus doesn't lead to such non-obvious bugs.

      UTF-16 is an abomination that needs to go. Unfortunately, it's entrenched in Windows API: you need to use BlueScreenW() instead of BlueScreenA() everywhere, and this is something people who don't need internationalization don't want to do. Even as of Vista, Microsoft still doesn't allow simply setting the system's code page to UTF-8, something which the whole Unix world[2] did years ago.

      [1]. And according to People's Murderous Commiepublic of China's laws, you need to support these (as GB18030) in any product sold in mainland China. Of course, they don't give a damn about that law unless they want to demand a favour from a company so they have a yet another stick of non-compliance).

      [2]. All non-toy distros do this by default, and if not for few whiners, non-UTF8 locales would probably be dropped by now.

      --
      The creatures outside looked from Alt-Right to Antifa; but already it was impossible to say which was which.
    6. Re:Likely a lot more than 2 million by alerante · · Score: 1
    7. Re:Likely a lot more than 2 million by ajs · · Score: 1

      That depends on the encoding - either 72 characters in ASCII or UTF-8 or 36 characters if they go for the more multi-lingual friendly UTF-16. UTF-16 more multi-lingual friendly than UTF-8? Er... it has many disadvantages and not a single benefit over UTF-8. The touted benefit of UTF-16 is that for those who make almost no use of the 7-bit ascii set (the only characters that are represented by a single byte in UTF-8), it can improve the speed of reading/scanning and ultimate size of many files.

      In practice, this isn't really going to happen in most Web-based text, but for electronic versions of non-Web text, it can be a win. Overall, however, I agree with you that there's more benefit in using UTF-8 universally.
    8. Re:Likely a lot more than 2 million by cpeterso · · Score: 1

      UTF-16 more multi-lingual friendly than UTF-8? Er... it has many disadvantages and not a single benefit over UTF-8.


      btw, Windows NT uses UCS-2 not UTF-16. UTF-16 has no benefit over UTF-8, but UCS-2 is convenient for string operations (since UCS-2 chars are fixed width, allowing for O(1) string indexing).
    9. Re:Likely a lot more than 2 million by cpeterso · · Score: 1

      The touted benefit of UTF-16 is that for those who make almost no use of the 7-bit ascii set (the only characters that are represented by a single byte in UTF-8), it can improve the speed of reading/scanning and ultimate size of many files.


      You are describing the benefits of UCS-2, which is the character encoding used by Windows NT and .NET and Java. UCS-2 characters are fixed-width, but UTF-16 characters (like UTF-8 characters) support surrogate pairs, so you never know how long a character might be without scanning the string from the beginning.
    10. Re: Likely a lot more than 2 million by Dolda2000 · · Score: 1

      something which the whole Unix world[2] did years ago.

      [2]. All non-toy distros do this by default, and if not for few whiners, non-UTF8 locales would probably be dropped by now.

      Unfortunately, that isn't quite true. As far as I know, none of the BSDs use UTF8 by default. I have verified it on FreeBSD 6.2, but I cannot imagine the {Net,Open}BSD would use it either. Internationalization is definitely an area where Linux is above and ahead of BSD.

      I've heard rumors that that's one of the things being improve for FreeBSD 7.0, but I don't know just how improved it is.

  2. That was quick by micpp · · Score: 4, Funny

    And people have already tried to delete the article for not being notable.

    1. Re:That was quick by abscissa · · Score: 1

      Can you be notable for being not-notable? Or famous simply for being famous? ... Before you answer "no" think of celebrities like Paris Hilton...

    2. Re:That was quick by wild_berry · · Score: 1

      That's what the '!notable' Slashdot tag is for.

    3. Re:That was quick by WWWWolf · · Score: 3, Informative

      Can you be notable for being not-notable? Or famous simply for being famous? ... Before you answer "no" think of celebrities like Paris Hilton...

      Basically, the situation is this: Notability has its thresholds - either you are notable or not (though where exactly to draw the line is, at times, difficult - but we have pretty clear picture by now). Articles about people, bands, groups, companies, websites, etc. have to have assertions of notability (i.e. "they're really big in Pakistan and have released three albums", or whatever). Notability has to be backed up by reliable sources.

      This leads to the situation that 1) people who are famous for failing at something can be considered notable enough for articles of their own (provided someone noticed and documented that in a reliable source), and 2) worthless celebrities are, alas, notable enough for articles because they probably have had verifiable media appearances.

      (Think of it this way: if I had not heard about Paris Hilton before, I'd go to the article, come to the conclusion that she's a worthless celebrity, and be done with it. If there was no articles about her, I'd probably ask "hey, this... thing is on TV all the time, what the heck has she done to get there, anyway, and why isn't there an article about her?" =)

    4. Re:That was quick by Anonymous Coward · · Score: 0

      I remember reading that something like four out of five Wikipedia articles are deleted within a day as being obviously useless. Around the time of the one millionth article I wondered what would happen if number one million were "Fred Bloggs is a tenth grader at George Washington High School in Las Vegas, Nevada."

  3. Confusion? by niceone · · Score: 2, Funny

    Can't they just check Wikipedia?

  4. The millionth by 4D6963 · · Score: 2, Funny

    Which was the millionth article then? Not that it really matters, just being curious, cause I'm like, bored..

    --
    You just got troll'd!
    1. Re:The millionth by Hachey · · Score: 2, Informative

      The 1 millionth article was Jordanhill Railway Station. Ironically, the 2 millionth article was almost a train station as well, this time just outside of Tokyo.

      --
      Please allow me to hate the creator of the 120-character limit: *HATES*. Thank you.
    2. Re:The millionth by xappax · · Score: 1

      Ironically, the 2 millionth article was almost a train station as well

      You keep using that word. I do not think it means what you think it means.

    3. Re:The millionth by Anonymous Coward · · Score: 0

      Sounds like it's time for a celebratory game of Mornington Crescent!

    4. Re:The millionth by dreethal · · Score: 1

      Bring the rule book, if you can.

  5. Is it so important? by El+Lobo · · Score: 3, Insightful
    And why, oh why, is it always so important to know exactly which articles was Nr X, which poster was the first one, which was the first child born in the new millenium, how many times did Al pacino say "fuck" on Scarface and so on?...

    Do we have so few problems that we have the need to statistically know EVERYTHING? Does that matter (other than to inflate the vanity of a few?).

    --
    It's time to realise that Abble's products are the biggest abomination these days. Just say NO to the dumb iAbble way!!
    1. Re:Is it so important? by daeg · · Score: 3, Funny

      Just so you know, you're the 8th person bitching about this, and the 5th since the turn of the hour's 22nd minute, with a very high probability that future posters will bitch about it too, and will bitch about it at the 2.5 million mark, too, and the 5 million.

    2. Re:Is it so important? by IBBoard · · Score: 1

      Because humans have an in-built obsession with patterns. It's the same as why we often see two pairs of two objects and not one group of four, or two groups of two and a single one rather than five. The human mind makes use of patterns and finds patterns in things. By knowing the Nth whatever then we get to look for patterns.

      Or something like that.

    3. Re:Is it so important? by Rik+Sweeney · · Score: 2, Funny

      how many times did Al pacino say "fuck" on Scarface

      It's 207 in case anyone's interested.

    4. Re:Is it so important? by Colin+Smith · · Score: 1

      OCD

      --
      Deleted
    5. Re:Is it so important? by ZachPruckowski · · Score: 0, Offtopic

      Which means that Boondock Saints narrowly beats it with 246.

    6. Re:Is it so important? by that+IT+girl · · Score: 1

      Exactly what I was thinking..."who gives a shit?" Is the author of the two-millionth article going to be given a cookie? Why waste time delving into logs and figuring out what exactly was the article that just happened to come after 1,999,999? Bleh.

      --
      10 FILL MUG WITH COFFEE
      20 DRINK COFFEE
      30 GOTO 10
    7. Re:Is it so important? by Cctoide · · Score: 1

      Yes.

      --
      "Let's face it, it's a good story. Accuracy would kill it."
  6. What I love about Wikipedia.... by Demerara · · Score: 4, Funny

    ...is their commitment to stating the obvious. At length...

    The 2,000,000 article is actually the last article to be part of the first 2,000,000 articles and the 2,000,001 is the first of the third million.

    I'm glad they cleared that up - I wondered whether the 2,000,000 article might be actually the one millionth or perhaps the 4 millionth....

    --
    Backward%20compatibility%20is%20over-rated
    1. Re:What I love about Wikipedia.... by lhuiz · · Score: 1

      Sound a bit like that almost, but not quite, entirely irrelevant discussion about whether 1 MB equals 1000 kB or 1024 kB. Anyway, what's with this obsession with the decimal system all of a sudden? Come on /.ers! Did nobody notice when wikipedia crossed the much more interesting threshold of 10^20 articles? And please let's postpone celebrations until we reach 10^21 articles...

    2. Re:What I love about Wikipedia.... by mdwh2 · · Score: 1

      I guess it's needed for those people who thought the new millenium started in 2000 ;)

    3. Re:What I love about Wikipedia.... by Anonymous Coward · · Score: 0

      I, for one, can't wait to know if the 2 millionth article is about a pokemon, a TV show episode or a porn actress.

      Seriously, wikipedia should not talk about this stuff, it is just too embarrassing.

    4. Re:What I love about Wikipedia.... by fractoid · · Score: 2, Funny

      You're saying there isn't a zeroth article?

      Oh and wow, the Firefox spell checker thinks 'zeroth' is a word. Score one for Asimov (or did he not coin it? Whoever it was then, colour me curious!)

      --
      Rampant carbon sequestration destroyed the Dinosaurs' tropical paradise. I'm here to help repair the damage.
    5. Re:What I love about Wikipedia.... by everphilski · · Score: 2, Funny

      or did he not coin it? Whoever it was then, colour me curious!

      maybe a c++ programmer? :)

    6. Re:What I love about Wikipedia.... by lhuiz · · Score: 1

      Ai. That must be my decimal obsession trying to block out my binary subroutines...

    7. Re:What I love about Wikipedia.... by Anonymous Coward · · Score: 0

      Don't you mean "interesting threshold of 10^10100 articles" and "celebrations until we reach 10^10101 articles ?
      or are you using a bizarre base-3 system?

    8. Re:What I love about Wikipedia.... by fm6 · · Score: 2, Interesting

      In computing, zero has always been been a valid index, and often makes more sense as the lower bound than 1. For example, if you have a multidimensional array stored contiguously, it's easier to calculate the memory location holding a given element if the array's lower bounds are 0.

      So "zeroth" is perfectly good word, and Asimov (who really didn't understand computers all that well) probably didn't coin it.

      I once had a CS professor who insisted that his students number the sections in their papers from 0 instead of 1!

    9. Re:What I love about Wikipedia.... by fm6 · · Score: 2, Interesting

      Your complaint about Wikipedia is a special case of my #1 complaint about Wikipedia. Which is that its content mostly lacks focus. I write technical documents for a living, and in my job it's important to structure content carefully and only put in the facts that your readers are likely to need. (The most difficult and most enjoyable aspect of my work.) Because nobody "owns" a given article, it's impossible to impose this kind of discipline on Wikipedia. To my mind, that's the biggest drawback to editing reference material on a Wiki, and a fatal flaw in the Wikipedia concept.

      Don't get me wrong. I like Wikis (I manage my department TWiki) and I like the idea of "open-source" documentation. But the two just don't go together. Open Source allows its developers a maximum of freedom, but every good OSS project has a code nazi who makes sure that only code that actually enhances the product get integrated. I'm reminded of that Heinlein character who said his household was a combination of fascism and anarchy, with no trace of democracy. Wikipedia has the anarchy part down. And, despite what Colbert says, it's not at all democratic. But a Wiki is incompatible with fascism.

      I often refer to Wikipedia (always with an eye to guessing what's serious content and what's some idiot's ramblings) but I never enjoy reading it. I'm enough of a dweeb to enjoy reading real encylopedia, which is what Wikipedia will never be.

  7. It could have been worse. by Glytch · · Score: 1

    It could have been image macros of "JUST AS PLANNED" with the caption text "2M GET" over and over again.

    1. Re:It could have been worse. by deftcoder · · Score: 1

      Box Full of AIDS
      I believe this is yours?
      --
      Peace sells, but who's buying?
  8. Re:Just one question by adatepej · · Score: 1

    Who said you can't use Wiki on a college paper -- at any college? How would you know something that would require input from people from such a broad swath of colleges? What's that you say? You consulted a wiki...

  9. It would be interesting to know by opusman · · Score: 2, Insightful

    It would be interesting to know how many "real" articles there are. That is, if you took out the individual articles for all the fictional sci-fi characters that wikipedia seems to excel at, all the articles for individual episodes of Star Trek and Dr Who, basically all the meaningless cruft that nerds deem important - then, count how many articles there are. Far, FAR less than 2 million, I would expect.

    1. Re:It would be interesting to know by jollyreaper · · Score: 4, Insightful

      It would be interesting to know how many "real" articles there are. That is, if you took out the individual articles for all the fictional sci-fi characters that wikipedia seems to excel at, all the articles for individual episodes of Star Trek and Dr Who, basically all the meaningless cruft that nerds deem important - then, count how many articles there are. Far, FAR less than 2 million, I would expect. I would agree that there's no place for that sort of thing in a paper encyclopedia, there's just not enough room. If you want geek stuff, you have to buy those books separately. But wiki has no practical limitation, it can grow to be however big it needs to. So long as the information is well-written, what does it matter? The important matter is indexing the information. Without a good index, I could certainly see your point, the practical information could be lost amongst the impractical. But wiki has a good manual index and google automatically indexes the shit out of the site. So what's the rub?
      --
      Kwisatz Haderach
      Sell the spice to CHOAM
      This Mahdi took Shaddam's Throne
    2. Re:It would be interesting to know by dbolger · · Score: 2, Insightful

      You are being a bit closed minded there. What gives you the right to determine what is "real" or "important"? I'm not saying I entirely disagree with your view on the value of such things, but your argument could really be turned on its head for any point of view. Replace the Slashdot POV with Entertainment Weekly and we get something that is just as valid as your argument:

      'It would be interesting to know how many "real" articles there are. That is, if you took out the individual articles for all the boring scientific rubbish that wikipedia seems to excel at, all the articles for individual chemicals or compounds, basically all the meaningless cruft that nerds deem important'

      I wouldn't deny a peroxide addled nitwit their juicy celebrity gossip any more than I would deny a geek his in-depth biography of Wolverine, or a nerd his scientific definitions. Just because it is unimportant to you or I does not mean that it is without merit to somebody.

    3. Re:It would be interesting to know by mdwh2 · · Score: 1

      I think it's clear that the vast majority of 2 million articles are going to be cruft/meaningless/niche articles - that's going to be true in any encyclopedia, because I doubt you could come up with 2 million notable "meaningful" topics (although as an aside, I do sometimes find episode articles useful or vaguely interesting, I can't be the only one).

      Also I'm not sure the divide is whether it's fiction or not - I would expect there to be articles on subjects such as Star Trek (not necessarily every episode) and Harry Potter - meanwhile, there's cruft in non-fiction (e.g., an article for every single Macintosh model that's been released - the article count gets boosted just like it does with episode articles).

      It would be useful though to know what the ratio is in different areas: e.g., fiction, science, etc.

      It's true that the article count is pretty meaningless though for these reasons. Better counts may be the number of Featured Articles, or the progress that's been made on core topics.

    4. Re:It would be interesting to know by FireFury03 · · Score: 1

      You are being a bit closed minded there. What gives you the right to determine what is "real" or "important"?

      Sadly I've seen too many very useful Wikipedia articles being deleted over the years. There seem to be a number of Wikipedia people setting the bar too high for stuff like notability. Wikipedia isn't a paper encyclopedia, we don't need to restrict the content by size.

      The most recent example I've seen was the CallWeaver article - now CallWeaver (which is quite a big Free software project) has no Wikipedia presence.

      Also, a lot of the AFDs I've seen succeed have appeared to be started by someone with a vendetta against specific projects, organisations, etc. Very sad.

    5. Re:It would be interesting to know by opusman · · Score: 2, Insightful

      The rub is that Wikipedia presents itself as a "real" encyclopedia, when it clearly isn't. If they didn't make such an issue out of the whole "notability" thing it wouldn't be so bad - as it is, it really looks like hypocrisy. I've got nothing against having all those articles up there - I've read a few of them myself. But wikipedia is presented to the world as a real encyclopedia, with high standards to match (e.g. the "accuracy competition" with Britannica) - and yet the vast majority of its material does not relate to anything real or important by any stretch of the (non-geek) imagination. When 50% of Britannica is composed of biographies of Captain Janeway and Buffy Summers then Wikipedia will be able to count itself as a real encylopedia, but not before.

      (Just my own opinion of course, feel free to disagree)

    6. Re:It would be interesting to know by Carbon016 · · Score: 0

      The problem is that Wikipedia is an encyclopedia and it has limits on what can be written about reliably - meaning third party references, which there are little of (New York Times: zomg this new action figure is so cool). The notability policies also help guard against people writing about their bands, stores near their town with little significance, and what have you. Cutting down on crufty articles is not something overlooked in WP: it's just simply hard to keep up with tagging the hundreds of articles created PER MINUTE with so little volunteers willing to take up the job.

    7. Re:It would be interesting to know by _14k4 · · Score: 1

      Why are articles regarding the individual episodes of Star Trek not real articles? Why are the articles regarding the characters of my recent favorite novel series, Ringworld, not real articles, not real pieces of human (english language) history?

    8. Re:It would be interesting to know by jollyreaper · · Score: 1

      The rub is that Wikipedia presents itself as a "real" encyclopedia, when it clearly isn't. If they didn't make such an issue out of the whole "notability" thing it wouldn't be so bad - as it is, it really looks like hypocrisy. I've got nothing against having all those articles up there - I've read a few of them myself. But wikipedia is presented to the world as a real encyclopedia, with high standards to match (e.g. the "accuracy competition" with Britannica) - and yet the vast majority of its material does not relate to anything real or important by any stretch of the (non-geek) imagination. When 50% of Britannica is composed of biographies of Captain Janeway and Buffy Summers then Wikipedia will be able to count itself as a real encylopedia, but not before. Fair enough. But we could put this to the test. Has anybody done a survey to find out how the wiki articles break down by topic? My guess would be that even if the cruft were the majority of the articles, wiki is so large that it would still have britannica beat in sheer volume in the serious categories.
      --
      Kwisatz Haderach
      Sell the spice to CHOAM
      This Mahdi took Shaddam's Throne
    9. Re:It would be interesting to know by JasterBobaMereel · · Score: 1

      What is unreal about an article about an episode of Star Trek? If people use it then it is "real", the fact that it would not appear in a printed encyclopaedia is irrelevant, Wikipedia is not a printed encyclopaedia!

      Irrelevant articles tend to get either improved or deleted so the majority of the 2 million articles are almost certainly *used* (the count does not include tiny stub articles, redirects etc...). You have obviously never tried to create an article on Wikipedia or you would know that vanity, fan only articles get deleted very quickly!

      --
      Puteulanus fenestra mortis
    10. Re:It would be interesting to know by simong · · Score: 1

      The great thing about Wikipedia is that it can include articles on Palestine and minor characters in Buffy. A print encyclopedia is limited by its resources and has to be relevant. Wikipedia is in a constant state of revision so it is always relevant. Or irrelevant, depending on how you look at it. It's not exactly a huge draw on resources either - the text only amounts to 5gb or so. I probably wouldn't use it as a primary source but it's a good kickoff point.

    11. Re:It would be interesting to know by JesseMcDonald · · Score: 4, Insightful

      It seems to me (and apparently the GP as well) that you're criticizing Wikipedia for not having the same limitations as a paper encylopedia. Who cares what proportion of the articles fall into some niche category, as long as one can still easily find all the information one is looking for? The simple fact that a physical encyclopedia has limited storage space and thus cannot contain in-depth articles on every little special-interest detail does not appear to me to somehow constitute an advantage for physical encyclopedias.

      Or were you perhaps simply protesting the direct comparison of article counts between Wikipedia and Britannica? That I could understand, since the comparison could hardly be fair. Their requirements are simply too different for any direct quantitative comparison to be meaningful.

      --
      "The state is that great fiction by which everyone tries to live at the expense of everyone else." - Bastiat
    12. Re:It would be interesting to know by emh203 · · Score: 1

      Yes, because articles about the Borg and Species 8427 provide a real contribution to human progress and knowledge.

    13. Re:It would be interesting to know by Cctoide · · Score: 1

      Because those The Internets Is Serious Business people deem it so, and you must comply or be classified as "a nerd" and "non-notable". Plus, it would not contribute "to the advancement of human progress(???) and knowledge", even though you could cram another fifty million articles in there and still contribute to human knowledge all you want.

      That, and because the people who had a bad experience with Wikipedia were feeling bad today.

      --
      "Let's face it, it's a good story. Accuracy would kill it."
    14. Re:It would be interesting to know by Nar+Matteru · · Score: 1

      It's really not just nerd stuff, most popular tv shows have episode descriptions. While that information is useful, I don't really consider it encyclopedic, and would like to see them moved to individual wikias.

    15. Re:It would be interesting to know by Carnildo · · Score: 2, Informative

      By your definition, Wikipedia has somewhere between 1,500,000 articles (discarding *all* articles about popular culture) and 1,900,000 articles (discarding just the things you consider "cruft"). The largest group of articles are biographies (30% of the encyclopedia), followed by articles on places (25%), popular culture (25%), and history (10%).

      --
      "They redundantly repeated themselves over and over again incessantly without end ad infinitum" -- ibid.
    16. Re:It would be interesting to know by WilliamSChips · · Score: 1

      No. As long as the stuff Britannica does include is correctly done in Wikipedia, which it is, the existence and proportions of "cruft" are irrelevant.

      --
      Please, for the good of Humanity, vote Obama.
    17. Re:It would be interesting to know by WilliamSChips · · Score: 1

      I would like to put the people who claim that Wikipedia is evil for not deleting any "cruft" article immediately and the people who claim that Wikipedia is evil for deleting anything whatsoever(specifically webcomics) in a cage and let them duke it out.

      --
      Please, for the good of Humanity, vote Obama.
    18. Re:It would be interesting to know by Anonymous Coward · · Score: 0

      When New Scientist does its annoying "buy the magazine to read the rest of the article" bullshit in 'Heretical' cosmologist does away with the big bang and I go to Wikipedia for a little info, what do I get? I search for "Cristiano Germani", the heretic, and get no results. I then search for "cosmological slingshot", the heretical theory's name, and likewise come up dry.

      Oh well, there's always Google, with a ton of hits on "cosmological slingshot". To wit: "In this paper we clarify two important issues regarding the Cosmological Slingshot Scenario, namely the choice of frame and the creation of primordial fluctuations. In particular, we show that the Einstein frame represents a non-trivial bouncing cosmology. Regarding the calculation of the primordial perturbations, we identify their vacuum state and elucidate their evolution from the quantum to the classical regimes. Finally, we calculate the exact power spectrum of primordial perturbations showing its compatibility with current data."

      OTOH, Goatse is there, as is a description of every episode of every TV show made in the last 40 years, as well as every CD (but not LP, the LPs are listed as if they are CDs, without a "side 1" and "side 2").

      That said, I don't know how I ever got along without wikipedia.

      -mcgrew

    19. Re:It would be interesting to know by Gaffod · · Score: 1

      I think you misrepresent his argument. While it certainly is not a bad thing that Wikipedia has many trivia artcles of dubious importance, compare:

      Wikipedia now has 136,000 articles on comic book and sci-fi characters, as opposed to last year's 86,000!
      Wikipedia now has 347,000 articles on natural science and math, as opposed to last year's 297,000!

      Now, no offense to the comic book crowd but I simply don't give a rat's ass about how many articles on obscure trivia there are, or by how much they've increased by. If I need to find a complete script of the episode 13 of Russian cartoon "Nu Pogodi", and the name of the guy who played the guitar halfway through, and I can't find it on Wikipedia, I'll just shrug and move on.

      On the other hand, when I need to find an algorithm for picking a random direction in 3D space for this program I'm writing, if I don't find it on Wikipedia it's going to be fairly frustrating.

      The complaint is that these news of Wikipedia's rapid growth are, for all we know, inflated, exaggerated numbers. Sure, there are lots of new articles, but I for one don't care how many new articles there are, I care about how many useful new articles there are.

    20. Re:It would be interesting to know by tehcyder · · Score: 1

      It would be interesting to know how many "real" articles there are. That is, if you took out the individual articles for all the fictional sci-fi characters that wikipedia seems to excel at, all the articles for individual episodes of Star Trek and Dr Who, basically all the meaningless cruft that nerds deem important - then, count how many articles there are. Far, FAR less than 2 million, I would expect.
      Probably about the same as in one of those 1990's CD-ROM encyclopedias.
      --
      To have a right to do a thing is not at all the same as to be right in doing it
  10. Re:Just one question by mdwh2 · · Score: 1

    Let me fix that for you:

    You can't even quote an encyclopedia on a college paper, so why should anyone be using one?

    So this makes encyclopedias useless? If you say so.

  11. Next needed milestone by Anonymous Coward · · Score: 0, Offtopic

    SlimVirgin gets banned along with her enablers. Grow some balls Jimbo.

  12. Spanglish Wiki? by Mr.+Underbridge · · Score: 4, Funny

    "...a milestone for the English-language Wikipedia:" ..."Initial reports stated that the two millionth article written was El Hormiguero, which covers a Spanish TV comedy show."

    Wow, that's ironical.

  13. Re:Just one question by Da+Fokka · · Score: 4, Insightful

    You can't quote a microwave in a college paper either, but it's certainly useful.

    But seriously, Not every source has to be academical to be of use. For many subjects, wikipedia is an excellent starting point. You might want to take lemmata on controversial subjects like Palestine and the Evolution with a grain of salt, but for many a subject the articles on wikipedia are of excellent quality.

  14. Re:Just one question by Notquitecajun · · Score: 4, Insightful

    You have two exclusive statements...one which makes sense, the other which doesn't.

    Who cares? I mean honestly, who does?

    In the long run, this is quite a minor historical marker. We're going to see article 5 million and MAYBE that will matter a little more. Maybe.

    You can't even quote Wikipedia on a college paper, so why should anyone be using it

    Correct - it's rather dumb to use it on a college paper (like using a regular paper encyclopedia); however, Wikipedia is the fastest starting point and is a good medium on not only specific information on subjects and sources, but also on the opinions of people with education, expertise, and bias on their subjects. If you dig into some controversial topics' histories, there is actually some VERY good information to wade through and find sources on. The end result is not perfect, the system IS flawed, but the information that you can glean from digging and researching STARTING at Wikipedia is quite useful.

    Plus, the specialized wikis that are popping up that are using wiki-style management for their small wikis (where REAL experts can actually post) may be the bigger genius behind wikipedia).

    If your complaint about wikipedia is that the final articles are flawed, you're right...but look at the process behind some of those articles and the histories. Dig into that, and you find what you need.

  15. Re:Just one question by mdwh2 · · Score: 1

    You might want to take lemmata on controversial subjects like Palestine and the Evolution with a grain of salt,

    Actually, giving it a quick glance, I don't see any reason for there to be significant problems with the evolution article? Thankfully, NPOV doesn't mean "let the Creationists get equal say", and I suspect attempts to work in a pro-ID viewpoint would get reverted.

  16. Re:Just one question by Loke+the+Dog · · Score: 1

    A starting point, but if the article is good, it will ist a good set of sources, and there's no reason for you to not take your information directly from those.

  17. Re:Just one question by morgan_greywolf · · Score: 1

    Who cares? I mean honestly, who does? You can't even quote Wikipedia on a college paper, so why should anyone be using it? Just as with any good encyclopedia, you can only use Wikipedia in a scholarly paper as secondary source -- IOW, you have at least one or two corroborating primary sources, such as from a scholarly journal article or from a well-reputed scholarly book.
  18. Not the real milestone... by MiniMike · · Score: 0

    Why is there always confusion over this issue? The real milestone is when it reaches 2M articles in binary (base 2)!
    That would be 2,097,152 decimal, for those too lazy to break out their calculators, or 2*(2^20) according to Wikipedia.

  19. Wikipedia thrives on controversial subjects by tucuxi · · Score: 3, Insightful

    Because they draw people to try to reflect their points of view; and when you read the article (say, abortion or evolution or software patents) you can gain a quick overview on almost any significant point of view on the subject, and how they relate to each other. Yes, individual viewpoints may not be perfectly reflected. But you *do* gain an incredibly broad view, which no traditional encyclopedia can deliver.

    Wikipedia is much more likely to be useful on a controversial subject where people feel inclined to participate (and correct or refactor partisan views) than in non-controversial subjects that doesn't scratch anybody's itches. You need to cross a certain threshold in order to contribute to an article. Articles that aren't important to you you simply will not edit. Articles that are edited by many may not gain "quality", but will become very broad, and better starting points for further research than those that are only edited by a few not-that-motivated users.

    1. Re:Wikipedia thrives on controversial subjects by paralaxcreations · · Score: 1

      This is the Internet. Any topic will scratch someone's itch, somewhere.

      Sad, but true.

  20. *yawn* by TimeElf1 · · Score: 0

    Someone wake me up when they do something truly monumental like 10 million articles or some such. Although it only took 7 months to get from the one millionth to the two millionth so I suppose 10 million won't be that long in coming.

    --
    Cannot find REALITY.SYS. Universe halted.
  21. How many articles do other encyclopedias have? by Refried+Beans · · Score: 2, Interesting

    Two million does sound impressive. Congratulations, Wikipedia. But how does this compare to other encyclopedias? Does anyone have numbers for Britannica or World Book?

    1. Re:How many articles do other encyclopedias have? by LiquidCoooled · · Score: 3, Funny

      Actually, wikipedia can answer that (though I don't know how accurate it is):

      The size of the Britannica has remained roughly constant over the past 70 years, with about 40 million words on half a million topics.

      http://en.wikipedia.org/wiki/Encyclop%C3%A6dia_Bri tannica

      --
      liqbase :: faster than paper
    2. Re:How many articles do other encyclopedias have? by Anonymous Coward · · Score: 0
      Two million does sound impressive. Congratulations, Wikipedia. But how does this compare to other encyclopedias? Does anyone have numbers for Britannica or World Book?

      Half a million accurate ones that don't change every day at random.

    3. Re:How many articles do other encyclopedias have? by Taxman415a · · Score: 1

      Two million does sound impressive. Congratulations, Wikipedia. But how does this compare to other encyclopedias? Does anyone have numbers for Britannica or World Book?

      Wikipedia does, of course. It turns out some of the largest encyclopedia's written were in Chinese, and that brings in a number of complexities in determining which is larger/est. Of course if you look at all languages of Wikipedia, it's over 8 million now, but that is mostly repeats.

  22. Is there such a thing as very mediocre? by Edie+O'Teditor · · Score: 0

    If you set out to be mediocre, and you turn out to be very good at it, are you really mediocre?

    But concerning your example, yes, she is.

    --
    If X is the new Y, and Y is "X is the new Y", solve for X.
  23. Of course, the results will be edited... by nweaver · · Score: 1

    Of course, the results will be edited to show that the 2,000,000th article is on Steven Colber's continuing humanitarian work to deal with the perpetual threat of BEARS!

    --
    Test your net with Netalyzr
  24. and then of course by sdedeo · · Score: 2, Interesting

    Nominated for deletion, amusingly enough.

    It was "speedy kept", but amusing that a stratified sample shows not only that wikipedia is filling these days with trivia, but also bureaucracy.

    (Yes, I have a bee in my bonnet about wikipedia even though I love it -- see my sig.)

    --
    Protect your liberties. Donate to the ACLU
    1. Re:and then of course by Anonymous Coward · · Score: 0

      This is a bad example of the horrible bureaucracy of Wikipedia. In this case it was obvious that the nominator was wrong. Just because he was too lazy to check Spanish language sources he ruled it as non-notable.

    2. Re:and then of course by Xeth · · Score: 1

      How is it an example of horrible bureaucracy? It was speedily kept, and left alone. Is it a horrible bureaucracy simply because a user's opinions got a fair hearing before being dismissed?

      --
      If your theory is different from practice, then your theory is wrong.
    3. Re:and then of course by Anonymous Coward · · Score: 0

      Damn natural languages!

      I meant that while there are examples of horrible bureaucracy on Wikipedia this is not one of them. Here the bureaucracy worked.

    4. Re:and then of course by sdedeo · · Score: 1

      [Thanks for adding me as a "foe". Warning contrary opinion to yours follows, avert your eyes!]

      I find it telling (in as much as a stratified sample can tell you anything) that the two millionth article:

      1. was a rather trivial piece on a TV show.

      2. triggered a bureaucratic response.

      Contrary to what you may believe, bureaucracy is not a good thing in most circumstances. It is certaintly not the only source of fairness in the world, and indeed in many cases it actually generates large amounts of unfairness as a by-product.

      --
      Protect your liberties. Donate to the ACLU
    5. Re:and then of course by Xeth · · Score: 1

      [Thanks for adding me as a "foe". Warning contrary opinion to yours follows, avert your eyes!]
      Actually, I added you as a foe quite some time ago. I don't remember what it was for. In case you're wondering, I have no modifiers on "foe" posts; they're not censored.

      I find it telling (in as much as a stratified sample can tell you anything) that the two millionth article: 1. was a rather trivial piece on a TV show. 2. triggered a bureaucratic response. Contrary to what you may believe, bureaucracy is not a good thing in most circumstances. It is certaintly not the only source of fairness in the world, and indeed in many cases it actually generates large amounts of unfairness as a by-product.

      Nice statistical analysis with your single data point there. It's easy to point to the vast amount of fictional coverage on Wikipedia, as those sorts of things are very easy to find in common experience. People can very easily visualize the enormous quantity of fictional crap that Wikipedia accumulates, as it's easy to get an idea of how much fictional stuff there is. However, it's much harder for people to understand the large number of articles on subjects they barely even know exist. "Unknown unknowns", as some have called them. Therefore, people sometimes assume that the vast majority of articles are about fictional junk. In essence, what you're saying boils down to a statistically invalid argument trying to justify a preconception based on ignorance.

      As a side note, based on my own prior use of the "Random page" function, it seems like a lot of small articles are listings about towns or counties.

      Regarding the AfD discussion, how is that a particularly bureaucratic process? Everyone gets a chance to voice their concerns, and they are evaluated. Can you think of a method that is better?

      If you're wondering about me, I am a former administrator on Wikipedia. I left (ironically enough) after it became clear that people were quite willing to ignore the rules about notability and trivia in order to stuff the encyclopedia full of crap.

      --
      If your theory is different from practice, then your theory is wrong.
    6. Re:and then of course by sdedeo · · Score: 1

      Fair enough on the foe thing. I think it's kind of weird. As for the suggestion that my analysis is wrong -- hey, there's one datapoint in this discussion, and I provided it. Your turn! But seriously, looking at a random article can be quite enlightening. I'm quite familiar with wikipedia myself, have created and edited a lot of non-trivial articles, and think about wikis in a meta way quite a bit.

      Regarding the AfD discussion, how is that a particularly bureaucratic process? Everyone gets a chance to voice their concerns, and they are evaluated. Can you think of a method that is better?

      That, well, seems to be the epitome of bureaucracy? Lots of (virtual) paper generated, with the actual decision left in the hands of an official. I don't think a majoratarian rule is the way to go of course, but the direction of wikipedia in the last few years has trended towards greater and greater bureaucratic and centralized control. If I had to suggest one major change to improve wikipedia right now, it would be to have administrators serve only for a limited time (order of months), and require a wait period (order of months) before an exadmin can return to RFA.

      --
      Protect your liberties. Donate to the ACLU
    7. Re:and then of course by Xeth · · Score: 1

      But seriously, looking at a random article can be quite enlightening.

      Uhhh.... maybe. Just like looking at a single random person on the street can be enlightening. With precisely the same cautions. As I've left Wikipedia, I'm not particularly in the mood to go on and do a bunch of statistical analysis on the articles.

      That, well, seems to be the epitome of bureaucracy? Lots of (virtual) paper generated, with the actual decision left in the hands of an official. I don't think a majoratarian rule is the way to go of course, but the direction of wikipedia in the last few years has trended towards greater and greater bureaucratic and centralized control. If I had to suggest one major change to improve wikipedia right now, it would be to have administrators serve only for a limited time (order of months), and require a wait period (order of months) before an exadmin can return to RFA.

      The problem with that is that it ensures people who don't have experience are the ones in control. The only issue I really have with AfD and similar processes is that it's a bit of a crapshoot. There's no real way to take a look at the debate and see how it will close beforehand (except possibly as the total cop-out "no consensus", which I think boils down to "Thinking is haaaard"). I think we're really putting our fingers on some of the fundamental philosophical debates over governance. Wikipedia is not perfect. Far from it. But I think it's about as good as things can get along its particular avenue (i.e. egalitarian encyclopedia).

      For what it's worth, I disagree with "flagged revisions". It takes away the ego motivation that I think is responsible for a lot of positive contribution to wikis.

      --
      If your theory is different from practice, then your theory is wrong.
  25. wiki boys determine this by leuk_he · · Score: 1

    The editors of wikipedia determine this.

    The current consensus says it is right to create a page about a fiction person in a sf serie, but a page about a real person needs a lot more noticeably to be not deleted on the fast track list.

    If you think it is right to place a external link. Think again. wikithink will most likely remove it.

  26. Re:Just one question by XchristX · · Score: 0, Flamebait


    You might want to take lemmata on controversial subjects like Palestine and the Evolution with a grain of salt,
    </quote>

    Or Afrocentrism, or Scientology, or Han Chauvinism, or Jihad, Islamophobia, or any article relating to politics, religion, history, personalities, art, or any humanities subject. Most of those articles were taken over by partisan propaganda groups and their admin backers a long time ago. Then again, after a few months, another partisan group takes over and changes the article to their propaganda, and the wars continue... Basically the group that can bully others out efficiently wins in these cases.

    Articles relating to science and technology (and some trivia if you're into that sort of thing) are generally okay and contain good references and stuff. The rest is cruft.

    --
    l'Homme n'est Rien l'Oeuvre Tout: Gustave Flaubert to George Sand
  27. Re:Just one question by MiKM · · Score: 1

    You shouldn't use *any* encyclopedia on a paper for college. You can use one to get a general overview of a subject, but stick to other sources for actual citations and fact-checking.

  28. You can help review new articles by ajs · · Score: 2, Informative
    If you would like to help review newly created articles, just follow this URL:

    http://en.wikipedia.org/wiki/Special:Newpages

    This will take you to the list of the most recently created articles. If you find that you have trouble keeping up with other editors who are reviewing the same articles, you might find this link useful:

    http://en.wikipedia.org/w/index.php?title=Special:Newpages&limit=250&offset=250&namespace=0

    Which will take you to the same list, but starting from the 250th most recent article.

    Typically, it's most useful to

    Anyone can do these things, and you can also just improve on any article by adding additional sources, or expanding on the article.
  29. Re:Just one question by h2g2bob · · Score: 3, Interesting
    Clicking the cite this page link on any page will tell you:

    IMPORTANT NOTE: Most educators and professionals do not consider it appropriate to use tertiary sources such as encyclopedias as a sole source for any information -- citing an encyclopedia as an important reference in footnotes or bibliographies may result in censure or a failing grade. Wikipedia articles should be used for background information, as a reference for correct terminology and search terms, and as a starting point for further research.

    As with any community-built reference, there is a possibility for error in Wikipedia's content -- please check your facts against multiple sources and read our disclaimers for more information.
  30. Oops! CSD-A7! by StreetStealth · · Score: 1

    Looks like we're back to 1,999,999.

    --
    Your mind is clear / The things that you fear / Will fade with how much you / Believe what you hear
  31. Yeah, but hasn't Wikipedia jumped the shark? by Medievalist · · Score: 5, Insightful

    I know a few retired rocket scientists. I'd love it if their unique knowledge didn't go to the grave with them. I'd rather be able to look up the definition of a "yardley" as a unit of pressure than a list of characters from Harry Potter. Unfortunately, wikipedia doesn't seem to be interested in anything that's "from personal knowledge or experience" these days.

    If wikipedia is only going to allowed references to things already published elsewhere, and all written culture is inevitably moving online, how will wikipedia differentiate from Google? I mean, if there's no unique information in wikipedia, there's very little unique value in it. It's just a really labor-intensive presentation layer at that point, isn't it?

  32. Re:Just one question by jandrese · · Score: 3, Interesting

    Except for that Han Chauvinism and some parts of the Islamophobia article (which was a complete mess), all of the articles you quoted look like a pretty neutral starting point for someone trying to learn about them for the first time. They cited lots of sources that a reader can go to for additional research and for the most part kept a neutral point of view. I'd wager that you'd have a tough time finding a more balanced approach to some of these topics, Islamophobia and Afrocentrism especially, from any other source. The kind of people who coin terms like that are generally less interested in neutrality than Wikipedia is.

    --

    I read the internet for the articles.
  33. Re:Just one question by carpe_noctem · · Score: 3, Insightful

    Whoever said anything about quoting wikipedia itself? I would say it is of far greater use for research papers in that you can get a good overview of a subject, and then use the citations of said article to find other, lengthier papers more suitable for academia.

    Wikipedia is a research tool, not the swiss army knife of research.

    --
    "Quoting famous computer scientists out of context is the root of all evil (or at least most of it) in programming." - K
  34. Re:Yeah, but hasn't Wikipedia jumped the shark? by Anonymous Coward · · Score: 0

    wikisource is the MediaWiki project for original research.

  35. 2M, give or take 1M by RomulusNR · · Score: 1

    Given the number, speed, and voracity of deletions on WP, this is probably more like the 3 millionth article, if you include all articles ever created.

    By some time next month I expect the 2Mth article will be more like the 1,990Kth.

    --
    Terrorists can attack freedom, but only Congress can destroy it.
  36. Re:Just one question by Anonymous Coward · · Score: 0

    I often use wiki as a source of resources when I am just getting started on a paper.

    Many times the wiki page will have 20+ references listed at the bottom

  37. and in other news... by v3xt0r · · Score: 1

    Slashdot gets Two Millionth *Pointless* Article... ...more to come.

    --
    the only permanence in existence, is the impermanence of existence.
  38. Re:Yeah, but hasn't Wikipedia jumped the shark? by stopbit · · Score: 1

    Wikipedia...the walmart of online information.

    --
    ~insert tech sarcasm here~
  39. More profit and conflict of interest for Wikia? by joeszilagyi · · Score: 1, Flamebait
    Good for them. That means that more profit and web traffic for Wikia, Jimbo Wale's for-profit spin-off of Wikipedia. Did you know that Wikipedia blocks *ALL* search engine spider follow-through for all outbound links from Wikipedia...

    ...but allows them through for Wikia, the for-profit firm that Wales owns?

    More details of this fiscal conflict of interest, that pads Wikia's pockets with each public relations brouhaha like this:

    http://wikipediareview.com/blog/category/wikia/

    --
    Dude, where's my packet?
    1. Re:More profit and conflict of interest for Wikia? by Anonymous Coward · · Score: 0

      You guys got to get over your crazy paranoias. I swear you guys see conspiracies in everything Wikipedia. *Ignores*.

  40. Re:Yeah, but hasn't Wikipedia jumped the shark? by Taxman415a · · Score: 5, Informative

    Wikipedia has never been interested in unique information. One of the first policies was the one against original research. That certainly doesn't mean there isn't a place for original research, (those are plentiful), nor does it mean Wikipedia isn't valuable. By collating and linking vast amounts of information, Wikipedia does something google can't. It creates the presentation of the information manually. Google can only index content that is already there through an algorithm. And for a long time if not forever, there will be information that is not online. Further, Wikipedia summarizes information like Google will likely never be able to. Even if a Wikipedia article is not all right, it can give you an idea of where to go look and what to look for, which is perhaps it's only truly valuable contribution until there is a way to formally peer review and freeze content so that the reader can see a version that is stabilized.

  41. Re:Just one question by XchristX · · Score: 1

    Er, virtually ALL mainstream scholars agree that Afrocentrism is hokum and nonsense, laced with ethnocentrism, nationalist pseudohistory and pseudoarchaeology. It's dangerous nonsense to boot, as it has, hidden behind it, a racist, anti-Semitic and extremist Black Supremacist agenda a-la Al Sharpton and the Nation of "Islam" (by "Black" here I'm generally referring to African-Americans; this movement is virtually unheard of in Sub-Saharan Africa or among Black communities in Latin America). It is essentially the same as extremist racist and anti-Semitic White Supremacists and/or radical Islamists really when you think about it.

    It is no more than the same kind of Scientific Racism that was concocted by Europeans against Africans and other perceived "non-whites" in the 19th century, just with the "good guys" and "bad guys" flipped over. The wikipedia article is a whitewash, with fringe literature (undue weight to which is supposed to be against WP:FRINGE policy and WP:RS partiasan and extremist sites policy on wikipedia:look it up) given same credence as mainstream literature. A simple glance at the talk page of the article will show fanatical Black Nationalist nutjobs "monitoring" the article and bullying away legitimate editors. This severely crimps the credibility of wikipedia to any scholarly pair of eyes.

    Same with this mythical "Islamophobia" nonsense (which is different from the real problem of anti-Muslim prejudice, a completely different thing which has no article on wikipedia, strangely)."Islamophobia" is an Orwellian propaganda term created by Islamic extremists to stifle criticism of a religion and conflate it with bigotry against a particular group of people, and no non-partisan group will say otherwise (again, when bigotry against Muslims as an identifiable people is expressed, it is termed "anti-Muslim", not this nonsensical "Islamophobia"). Also, a simple glance at the history page of that article, together with the contribs of some of the editors will show a pretty well-coordinated militant wiki-activism by radical Islamists here.

    Same with the Scientology article, with brainwashed scientologists creating real problems for wikipedia editors who want to portray the matter objectively, leading to a disastrous mess of an article.

    There are more such examples, virtually any one of the tens of thousands of tagged articles (and several thousand or so untagged ones as well), all relating to politics, religion, history and other such subjects.

    Of course, I know that this sort of sytemic bias towards partisan gangs can exist in many other sources. It is wikipedia's lack of accountability in these matters and it's facade of stability and fairness that I have a problem with. The actual content is normal, or, rather, no better or worse than graffitti in a public toilet.

    --
    l'Homme n'est Rien l'Oeuvre Tout: Gustave Flaubert to George Sand
  42. Research isn't what I'm talking about. by Medievalist · · Score: 1
    I understand that wikipedia is an inappropriate place for publishing research. I never mentioned research. Knowledge is not research.

    By collating and linking vast amounts of information, Wikipedia does something google can't. It creates the presentation of the information manually. So... like dmoz. A manual presentation layer. I'm content-driven, personally, a slick presentation does not increase my perception of the value of information.

    Google can only index content that is already there through an algorithm. Right, so it's an automatic (and thus more up-to-date) presentation layer, which carries quantifiable and repeatable bias by virtue of being algorithmic.

    And for a long time if not forever, there will be information that is not online. And increasingly, if your information source is not on-line, you have little chance of your sources being unchallenged on wikipedia.

    Further, Wikipedia summarizes information like Google will likely never be able to. Even if a Wikipedia article is not all right, it can give you an idea of where to go look and what to look for, The content I find most useful on Wikipedia tends to be articles that were originally "drive by shootings" by experts, who put in their personal knowledge from memory; these articles subsequently being polished up by successive editing. I wouldn't count too heavily on Google (or somebody else) never being unable to create a better summarization technique than human squabbling, either.

    ...which is perhaps it's only truly valuable contribution until there is a way to formally peer review and freeze content so that the reader can see a version that is stabilized. I already have a Britannica. Why should a wiki be "stabilized"? Why is "formality" a virtue when wikipedia was created and gained value from non-conformance to traditional models?
    1. Re:Research isn't what I'm talking about. by Anonymous Coward · · Score: 0

      > And increasingly, if your information source is not on-line, you have little chance of your sources being unchallenged on wikipedia.

      This is untrue. Have a look at some history articles on Wikipedia. Most of the references are books, as most of the sources are books.

    2. Re:Research isn't what I'm talking about. by Taxman415a · · Score: 2, Informative

      Well original research just happens to be the name of the policy, but it covers all unpublished ideas and thought. And what I was saying is that Wikipedia intentionally avoids that type of thing as a necessary evil to maintain improvement in quality. Otherwise you either need a power structure that can say yeah or nay on content or you open floodgates to all the latest crackpot theories and information.You have to spend enough time on the project to reallize there isn't an in between. And again, it's not like there aren't lots of other sources for publishing that other valuable non published information. That's what post-docs are for right? :)

      A manual presentation layer. I'm content-driven, personally, a slick presentation does not increase my perception of the value of information.
      - Everybody says that, but studies show time and time again that the way information is presented has drastic effects on how much information gets accross and how it is percieved. Next you're going to tell us ads don't affect you.

      Right, so it's an automatic (and thus more up-to-date) presentation layer, which carries quantifiable and repeatable bias by virtue of being algorithmic.
      - What you're missing here is that google indexes links to information, it does not summarize the actual information as Wikipedia does. Even if the information you wanted was always in a google search, you still then have to collate it and judge sources, etc. Also quality information is not all or perhaps even mostly online right now. The work of summarizing the information is valuable, and if it is already done for you can get you further ahead on the task at hand.

      Why should a wiki be "stabilized"? Why is "formality" a virtue when wikipedia was created and gained value from non-conformance to traditional models?
      - Because the real goal is information quality. Demonstrable quality in a way useful to the reader/researcher. The non conforming, radically open current system has been shown to be successful in producing content, a smaller portion of it of reasonably high quality. But studies and observation of Wikipedia show that it has extremely high variation in quality. From articles replaced with "YO MAMA SO PHAT..." to widely reviewed articles citing and properly summarizing all the best written material on the subject. Formal peer review can lead to higher information quality and if that reviewed version is available as an option, default or not, can allow the best of both worlds. (like the Linux kernel and most other software) Then there can be both a radically open article that may be more up to date, balanced, etc, and a stable version that is at least guaranteed not to be vandalized. The amount of stabalization could be as little as that or as much as the formally reviewed case, or both. Thus the best of both worlds, content is produced, and high quality content is available, and the review processes can be demonstrated.

    3. Re:Research isn't what I'm talking about. by Medievalist · · Score: 1

      Hmmm. That all sounds great as theory. Let's apply it to real life....

      A 73 year old man of my acquaintance was a rocket scientist for at least 40 years. He worked on Dyna-Soar, Mercury, Apollo, Skylab, K.E.W, the Navy Standard Missile, Peacekeeper, Trident, and many more. He knew Jim Yardley, and he worked with him around when the value of a Yardley was defined. He knows why it was defined. That information is not in Wikipedia. And it won't be, because it's "personal knowledge" and because this man is suffering from declining health. He will never publish a book and his growing inability to retain new information means anything more difficult to use or harder to find than wikipedia will be beyond his capacities. His children and grandchildren know these stories too - but it's "personal knowledge" and also "hearsay" and they have jobs and school to attend to, so don't count on them publishing books either.

      Here's another.

      There's no entry in Wikipedia for Vic Singer. This is a man who likes to brag that he has sent his DNA to Mars (it's true, too). He's got to be at least 70 if not 80, and he is actively involved with local politics in his home town (where you are welcome to come see him flaming any know-nothings who show up for city council meetings). I've tried to put Vic in Wikipedia, but unfortunately my knowledge is personal - I knew him back when I was a rocket scientist myself, when he was designing the air-bag system used by the Mars Pathfinder and subsequent successful Mars vehicles. If my article on Victor Singer had been accepted (despite poor formatting and a lack of cites) it would quickly get polished up just like every other article I ever put in Wikipedia. But I don't know the man's damn birthday, or how much he weighs, or how many books in my library reference him, and I already have enough to do that I can't spend a day on this. That would be time taken directly from the few hours I have to spend with my children, and my spouse isn't going to let that happen.

      So; in short - in order to deal with the very real threat of vandalism (let's not pretend it wasn't vandalism that sparked the changes in how wikipedia runs) wikipedia has institutionalized the rejection of unverified personal knowledge. Formal "cites" and "article quality" have been elevated into barriers to easy entry of valuable knowledge. Which in turn means that everything in Wikipedia is available elsewhere, and is no doubt also collected and summarized elsewhere, too. There are lots of encyclopedias, and the Great Experiment of the wiki encyclopedia is turning into something that's not much different from the old Britannica, which also used a very formal system of submitted, peer-reviewed articles.

      Although I've used personal examples here, I hope you won't make the mistake of thinking that I'm panning Wikipedia because I feel somehow disrespected, or that I think my articles are better than other people's. I haven't any use for sour grapes at the moment, and to be honest I'd rather NOT build wikipedia (I'm building other stuff) although I'm willing to add my personal knowledge to wikipedia if it's not made too difficult.

    4. Re:Research isn't what I'm talking about. by nothings · · Score: 2, Informative
      In order to deal with the very real threat of vandalism (let's not pretend it wasn't vandalism that sparked the changes in how wikipedia runs)

      No, the "no original research" rule was instituted to deal with physics crackpots. This is documented on wikipedia itself if you actually delve into the pages about the rule.

      There is no good way for wikipedia to differentiate between the personal experiences or knowledge of a 73-year-old rocket scientist wunderkind, a crackpot writing stuff in his garage, or a published scientist dabbling poorly outside his actual area of expertise. So wikipedia just disallows that sort of thing entirely, and draws instead on the difficulty in those people publishing their work in peer-reviewed journals or mainstream publications by setting threshholds in that direction.

      And it's not wikipedia's fault if the knowledge of a 73-year-old-Jim-Yardley knower isn't preserved. Anecodes and anything else from him can be written down on any web page and preserved for posterity that way. (And if they get media attention because they're not crackpottery, they may make it into wikipedia someday.)

      The goal of preserving absolutely everything known by every human, but only the good stuff, is unsatisifiable, and wikipedia aims on the extremely conservative side of the problem. It may not seem like that with all the pop culture crap to be found there, but wikipedia isn't a single coherent entity, it's a teeming mass of random people following the rules to varying degrees of accuracy and with no consistency at all. Somehow people care more about following the rules when it comes to rocket science than when it comes to character summaries of last year's big TV show. And isn't that awesome?

    5. Re:Research isn't what I'm talking about. by Medievalist · · Score: 1

      In order to deal with the very real threat of vandalism (let's not pretend it wasn't vandalism that sparked the changes in how wikipedia runs) No, the "no original research" rule was instituted to deal with physics crackpots. This is documented on wikipedia itself if you actually delve into the pages about the rule. The "changes" I meant to refer to were not specifically the "no original research" rule, but rather the increasing content policing with ever increasing adherence to more and more rigid rulesets. But it's kind of a bogus argument for me to make, anyway, since I suspect the vandalism and responses to it have been present since the start, and I'm just giving my own impression without researching anything. I've been dealing with aoe driver issues all week, my brain is mushy.

      There is no good way for wikipedia to differentiate between the personal experiences or knowledge of a 73-year-old rocket scientist wunderkind, a crackpot writing stuff in his garage, or a published scientist dabbling poorly outside his actual area of expertise. I disagree. I think the wiki way is to allow editing, not to set up barriers to editing. People fight incessantly on the Israel page, why not let them duke it out over their zero point energy fantasies too? Probably bad examples, but I hope you get my point.

      So wikipedia just disallows that sort of thing entirely, and draws instead on the difficulty in those people publishing their work in peer-reviewed journals or mainstream publications by setting threshholds in that direction. And thus, to get back to my original comment, wikipedia jumps the shark. Granted, I'm more interested in information like this than stuff like this so I'm obviously out of the cultural mainstream.

      And I'm not suggesting that wikipedia needs to be slashdot (heaven forfend!). I'm just sayin', I used to be able to plant a seed over at wikipedia and watch it grow. If I went there to get a concisely worded definition of specific impulse, and there wasn't a page for it, I could add one, with whatever poor wording I might devise. I wouldn't use any cites or references, I'd use my personal knowledge. That page would gradually grow into a beautiful article, and that process was a key benefit that wiki- brought to -pedia.

      And it's not wikipedia's fault if the knowledge of a 73-year-old-Jim-Yardley knower isn't preserved. Anecodes and anything else from him can be written down on any web page and preserved for posterity that way. (And if they get media attention because they're not crackpottery, they may make it into wikipedia someday.) Which makes wikipedia just a slower, more painstakingly formatted Google or Dmoz. Which is my original point: that a unique value I found in wikipedia isn't there any more, and I wonder if other people don't feel that way too... apparently a few do, or my post wouldn't have received so much moderation. But wikipedia will be what Jimbo and the crew want it to be, and if the only differentiation between paper encyclopedias and wikipedia is going to be the paper, that's their choice. I can't really change it, the best I can do is try to get my opinions out in the open.

      [snip]Somehow people care more about following the rules when it comes to rocket science than when it comes to character summaries of last year's big TV show. And isn't that awesome? Nah, it's sad. Rules-lawyering is always sad, regardless of context, even when it's necessary. OK, especially if it's necessary.

  43. Re:Yeah, but hasn't Wikipedia jumped the shark? by Eponymous+Bastard · · Score: 1

    I know a few retired rocket scientists. I'd love it if their unique knowledge didn't go to the grave with them. I'd rather be able to look up the definition of a "yardley" as a unit of pressure than a list of characters from Harry Potter. Unfortunately, wikipedia doesn't seem to be interested in anything that's "from personal knowledge or experience" these days. Because Wikipedia is supposed to be an encyclopedia, not an original publication. I agree that this kind of knowledge should be archived and documented, but there are better places for it.

    For example, there's a wikibooks page. You could try building an open textbook on rocket science. There's wikia where you could build a rocket science Wiki. These are mostly pop-culture or community based wikis, but you could make a serious special interest wiki, with original content, if you wish.

    Then you could link to it from wikipedia pages, but you'd probably be asked to point out it contains unverified claims or some such.
  44. Around a hundred, give or take by blueZ3 · · Score: 1

    On a bad day of revision wars and trolling, probably fifty or sixty "real" articles exist on Wacky-pedia. The rest are collections of somewhat-related material cobbled together at random, mixed with extremely detailed minute-by-minute breakdowns of obscure SciFi series episodes and entries about imaginary languages.

    --
    Interested in a Flash-based MAME front end? Visit mame.danzbb.com
  45. Re:Yeah, but hasn't Wikipedia jumped the shark? by Medievalist · · Score: 1

    ...Wikipedia is supposed to be an encyclopedia, not an original publication. Huh? The other encyclopedias are original publications. The articles I wrote in the distant past for Wikipedia were all original text from my brain... mostly from personal knowledge, with no cites at all. Some of those articles are huge now, and certainly most are far better than they were when I originally wrote them, but I think none would be unchallenged today.

    Thank you for the wikibooks reference and wikia link, incidentally. Wasn't aware of those.

  46. Why not the 2000001st by Chitinid · · Score: 1

    I hate to be a naysayer, but in what way is the 2000000th article a meaningful thing? We could also assign special value to the 1234567th article, or the 1111111th article, or the 1483725th article; it's just a number. How is the fact that it has several zero's in its base-ten representation at all significant?

  47. Re:The Bad one is Generally History by Jim_Callahan · · Score: 1

    The problem with controversial subjects is that unless it's _currently_ controversial, then only the people with vested interest in the subject are going to be editing it. This sometimes means that only one side is left.

    My favorite example were the articles on freemasonry; there was an intense defensive tone and a lot of sweeping generalizations about how awesome the temples were and how every member was a paragon of moral humanity. While I hope it's been tuned down a bit since then, I'm always on the lookout for similar but subtler efects taht might trip me up.

    Once no one in the public sphere cares about teaching creationism in schools(hopefully after the courts tell the creationists to screw off), I bet some history pages regarding the various associated trials and such get interesting.

    --
    ...it's really a sad day for America when we require a goddamn ACT OF CONGRESS to make our DVD players work properly. ~
  48. Re:Just one question by tehcyder · · Score: 1

    You can't quote a microwave in a college paper either
    You could if was a paper on surrealism.
    --
    To have a right to do a thing is not at all the same as to be right in doing it