Wikipediaカテゴリ一覧

・2010/02/10のデータより作成
・「サブカテゴリ+配下の記事数」で降順ソート
・「サブカテゴリ+配下の記事数」が10件以上のカテゴリのみ掲載
・内輪向けや年の入ったカテゴリは気分的に外す(※外すのに使ったロジックは後述)

その1
その2
その3
その4
その5
その6
その7
その8
その9
その10
その11

・左側の数字はそのカテゴリの「サブカテゴリ+配下の記事数」。
・右側の文字がその横がカテゴリ名。

※外すロジック
    if ( list.get( 1 ).matches( ".*[0-9]{1,4}年.*" ) )
      return null;
    if ( list.get( 1 ).matches( ".*紀元前[0-9]{1,2}年.*" ) )
      return null;
    if ( list.get( 1 ).matches( ".*[0-9]{1,2}世紀.*" ) )
      return null;
    if ( list.get( 1 ).matches( ".*井戸端の話題.*" ) )
      return null;
    if ( list.get( 1 ).matches( ".*ユーザー名?" ) )
      return null;
    if ( list.get( 1 ).matches( "User_.*" ) )
      return null;
    if ( list.get( 1 ).matches( ".*項目" ) )
      return null;
    if ( list.get( 1 ).matches( ".*記事" ) )
      return null;
    if ( list.get( 1 ).matches( ".*ページ" ) )
      return null;
    if ( list.get( 1 ).matches( ".*ファイル" ) )
      return null;
    if ( list.get( 1 ).matches( ".*画像" ) )
      return null;
    if ( list.get( 1 ).matches( ".*スタブ.*" ) )
      return null;
    if ( list.get( 1 ).matches( ".*曖昧さ回避.*" ) )
      return null;
    if ( list.get( 1 ).matches( ".*メディア" ) )
      return null;

ウィキペディアンで終わるのも消しておけば良かった。
テンプレートで終わるのも消しておけば良かった。