約 2,399,702 件
https://w.atwiki.jp/twitterbot/pages/353.html
news_in_ja / 世界のニュースを日本語で Web 自己紹介 海外ニュースのつぶやきを勝手に翻訳するボット。 最近のつぶやき showrss プラグインエラー RSSが見つからないか、接続エラーです。
https://w.atwiki.jp/bagpack/pages/16.html
設定でつまづいたところなど Mercurialのインストール MercurialのリポジトリのWeb公開法hgweb.configの設定 redmineのインストールredmineでGmailのSMTPサーバを使ってメール送信 PHP5.3+のインストール Webからアクセスするために必要なパーミッションについてhtpasswdファイルの置いてあるディレクトリのパーミッション yumでrpmforgeを利用 testlink postfixqueから削除 fail2ban checkinstall capistranossh秘密鍵の指定方法 sshの-tオプションに相当する設定 設定でつまづいたところなど まずはネットワークの問題。 これは、NAT用のカードとホストオンリーアダプタ用のカードの2枚挿しが一番楽。 ホストオンリーの方に静的IPを割り振っておく。 気をつけるべきは、/sys/resolv.confの自動書き換え。 ホストの方のDNSにしようとしてくるので、 /etc/sysconfig/network-scripts/ifcfg-eth0 と /etc/sysconfig/network-scripts/ifcfg-eth1 の両方(DHCP設定になっている方だけでいいかもしれませんが)に PEERDNS=no DNS1=192.168.0.1 を追記。 あと、これはまだ試していないけれどntp.confが勝手にかきかわるのを防ぐには、 DHCPCDARGS="-N" と追記すればいいらしい。 Mercurialのインストール gccとpythonの開発用コンポーネントを入れる yum -y install gcc python-devel pythonパッケージ管理ソフトeasy_installを入れる wget http //peak.telecommunity.com/dist/ez_setup.py python ez_setup.py Mercurialのインストール easy_install Mercurial MercurialのリポジトリのWeb公開法 mercurial-serverや、hg serveを使うなど様々な方法があるけれど、hgwebdir.cgiを使うのが一番楽だと思った。 参考資料 [追記:2010/09/26] mercurialの最近のバージョンではhgwebdir.cgiはhgweb.cgiに統合されているような気がする。 (ソースに含まれなくなったうえに、hgweb.cgiでもレポジトリの一覧を表示するようになっている) hgweb.configの設定 [collections]は、設定したpath以下に存在するレポジトリを一覧表示してくれる。 [collections] repositories/ = /home/vcs/hg/repos/ [paths] hoge = /home/vcs/hg/repos/hoge [web] style = gitweb push_ssl = true allow_push = * [trusted] users = daemon groups = daemon redmineのインストール この公式マニュアルを参考にして、ruby,rails及びrackのバージョンを対応したものにしないと酷い目にあう。 公式リファレンス大事ですね。 あとこちらのインストール手順も参考に。 1.0.0以上を入れる場合は、微妙に違うところがあるのでこちらも参考に。 redmineでGmailのSMTPサーバを使ってメール送信 1.8系のRubyでは、TLSによるメール送信をサポートしていないので、対応するためのプラグインをいれなければいけない。 詳細はこちら PHP5.3+のインストール centos5の標準レポジトリだとPHP5.16とかなので、次のページを参考にしてインストール その後は、php.iniをまるまる置き換えてから、細かい設定(date.timezoneとか)を変える。 まるまる置き換えるには、 mv /etc/php.ini /etc/php.ini.old cp /usr/share/doc/php-common-5.3.4/php.iin-production /etc/php.ini Webからアクセスするために必要なパーミッションについて httpd.confに次のように書いてある。 守らないと403地獄に落ちる。 # UserDir The name of the directory that is appended onto a user s home # directory if a ~user request is received. # # The path to the end user account public_html directory must be # accessible to the webserver userid. This usually means that ~userid # must have permissions of 711, ~userid/public_html must have permissions # of 755, and documents contained therein must be world-readable. # Otherwise, the client will only receive a "403 Forbidden" message. # # See also http //httpd.apache.org/docs/misc/FAQ.html#forbidden # htpasswdファイルの置いてあるディレクトリのパーミッション 770以上ないとapacheがアクセス出来ないかも yumでrpmforgeを利用 CentOS5の標準レポジトリだと様々なパッケージのバージョンが低い。 そういうときは、rpmforgeを利用すると最新バージョンをyumからのインストールが可能となる。 yumに優先度設定用のプラグインを導入 次ののページを参考にyum-prioritiesを導入してレポジトリ毎の優先度を設定できるようにする。 標準レポジトリの優先度を1に設定 # vi /etc/yum.repos.d/CentOS-Base.repo を書き換えて、priority=1にする。 rpmforgeの導入 http //packages.sw.be/rpmforge-release/ から最新バージョンを探して、 # rpm -ivh http //対象のrpm 続いて、GPGキーのインストール #wget http //apt.sw.be/RPM-GPG-KEY.dag.txt #rpm --import RPM-GPG-KEY.dag.txt 標準レポジトリとの競合をさけるために普段は無効にしておく。 # vi /etc/yum.repos.d/rpmforge.repo のenable=0にする。 使うときは、 # yum --enablerepo=rpmforge --disablerepo=base install subversion などなど。 わざわざbaseを無効にしなくても、rpmforgeの優先度上にすれば問題ないかもしれない。 testlink インストール時に、新規インストールを選択しているにも関わらず、なぜかupgradeで処理されるときの対策。 次のソースを書き換える。 install/installNewDB.phpの99行目付近の、 $install = $_SESSION[ isNew ]; を $install = true; とする。 postfix SMTPサーバが起動せず、/etc/var/maillogに次のように記録されている場合、 fatal no SASL authentication mechanisms 必要なアプリケーションがたりていないっぽいので、 yum install cyrus* でインストール。 個々のユーザにメールディレクトリを作成 mkdir -p ./Maildir/{new,cur,tmp} chmod -R 700 ./Maildir/ queから削除 /usr/sbin/postsuper -d ALL deferred fail2ban hostsdenyは設定が簡単だけれどTCP Wrapperに対応していないソフトだとどうしようもないっぽいのでfail2ban一本でいいかも checkinstall 全部rpm管理したるぞ!というときに便利 capistrano デプロイツール。デーモンとかいれなくていいので楽だし、便利。 ssh秘密鍵の指定方法 ssh_options[ keys] = %w(/home/username/.ssh/keyname) sshの-tオプションに相当する設定 deploy.rbに次の行を追加。 default_run_options[ pty] = true
https://w.atwiki.jp/toss_yamanashi/pages/4.html
https://w.atwiki.jp/mallion/pages/88.html
旧TOMEの記事の一覧です。転載したときはそのURLを記入していきます。 移転作業のため http //elder.secret.jp/tome/ に仮にアップしてあります。 転載欄 状況 空欄 未チェック URL TOME@wikiに転載した記事 - チェック済みで転載不要 旧TOME記事一覧_TABLE タイトル URL 更新日 転載 TradeTalk [Japanese] http //www.glorantha.to/~tome/chaos/tt.htm 2005/06/05 http //www31.atwiki.jp/mallion/pages/99.html TradeTalk 記録保管所 http //www.glorantha.to/~tome/chaos/ttarchiv.htm 2005/06/05 http //www31.atwiki.jp/mallion/pages/100.html TradeTalk http //www.glorantha.to/~tome/chaos/ttart.htm 2005/06/05 http //www31.atwiki.jp/mallion/pages/101.html TradeTalk [Japanese] http //www.glorantha.to/~tome/chaos/ttart1.htm 2005/06/05 http //www31.atwiki.jp/mallion/pages/102.html TradeTalk 最新刊 http //www.glorantha.to/~tome/chaos/ttneu.htm 2005/06/05 http //www31.atwiki.jp/mallion/pages/103.html TOME制作委員会 既刊 http //www.glorantha.to/~tome/etc/book.htm 2003/09/01 http //www31.atwiki.jp/mallion/pages/104.html TOME制作委員会 既刊 http //www.glorantha.to/~tome/etc/booksell.htm 2003/09/01 http //www31.atwiki.jp/mallion/pages/105.html Argrath who were they? http //www.glorantha.to/~tome/etc/buy_kodp.htm 2003/09/01 -http //www31.atwiki.jp/mallion/pages/106.html 1周年記念アンケート http //www.glorantha.to/~tome/etc/enquete.htm 2003/09/01 http //www31.atwiki.jp/mallion/pages/107.html 1周年記念アンケート http //www.glorantha.to/~tome/etc/enquete3.htm 2003/09/01 http //www31.atwiki.jp/mallion/pages/108.html いんふぉめーしょん http //www.glorantha.to/~tome/etc/g_news.htm 2003/09/01 http //www31.atwiki.jp/mallion/pages/109.html いんふぉめーしょん http //www.glorantha.to/~tome/etc/info.htm 2003/09/01 よくわかるグローランサ第0回 http //www.glorantha.to/~tome/etc/intro1.htm 2003/09/01 Links http //www.glorantha.to/~tome/etc/link.htm 2004/05/16 Links bottom http //www.glorantha.to/~tome/etc/link2.htm 2003/09/01 Links Contents http //www.glorantha.to/~tome/etc/link3.htm 2003/09/01 Japanese RQ Links http //www.glorantha.to/~tome/etc/link4.htm 2004/05/16 Oversea RQ Links http //www.glorantha.to/~tome/etc/link5.htm 2003/09/01 京大RPG研関係 http //www.glorantha.to/~tome/etc/link6.htm 2003/09/01 LinkRPG http //www.glorantha.to/~tome/etc/link8.htm 2003/09/01 情報を調べる http //www.glorantha.to/~tome/etc/link9.htm 2003/09/01 コミックなど http //www.glorantha.to/~tome/etc/linka.htm 2003/09/01 模型関係 http //www.glorantha.to/~tome/etc/linkb.htm 2003/09/01 フィクション http //www.glorantha.to/~tome/etc/linkc.htm 2003/09/01 電源系ゲーム http //www.glorantha.to/~tome/etc/linkd.htm 2003/09/01 HeroWars-jp Mailing List Welcome http //www.glorantha.to/~tome/etc/mailinglist.htm 2003/09/01 更新履歴 http //www.glorantha.to/~tome/etc/new.htm 2005/02/05 更新履歴 http //www.glorantha.to/~tome/etc/new_old.htm 2003/09/01 TOME BOOK 3 http //www.glorantha.to/~tome/etc/tome3.htm 2003/09/01 寄せ書き企画 http //www.glorantha.to/~tome/etc/yosegaki.html 2003/09/01 キャモアル http //www.glorantha.to/~tome/gwandor/argrath.htm 2006/03/13 オーランシー用語の基礎知識(1) http //www.glorantha.to/~tome/gwandor/clan1.html 2006/03/13 オーランシー用語の基礎知識(2) http //www.glorantha.to/~tome/gwandor/clan2.html 2006/03/13 The Gwandor Campaign http //www.glorantha.to/~tome/gwandor/Culbrea.htm 2006/03/13 The Gwandor Campaign http //www.glorantha.to/~tome/gwandor/Culbrea_clan.htm 2006/03/13 The Gwandor Campaign http //www.glorantha.to/~tome/gwandor/gwandor.html 2006/03/13 キャモアル http //www.glorantha.to/~tome/gwandor/kamoar.htm 2006/03/13 The Gwandor Campaign Lothar Twinblades http //www.glorantha.to/~tome/gwandor/lothar.html 2006/03/13 う・ん・ち・く(1) http //www.glorantha.to/~tome/gwandor/note1.html 2006/03/13 う・ん・ち・く(2) http //www.glorantha.to/~tome/gwandor/note2.html 2006/03/13 Gwandor Saga part 1 http //www.glorantha.to/~tome/gwandor/part1.html 2006/03/13 Gwandor Saga part 2 http //www.glorantha.to/~tome/gwandor/part2.html 2006/03/13 サーター王国について http //www.glorantha.to/~tome/gwandor/sartar.htm 2006/03/13 ヴァラックス http //www.glorantha.to/~tome/gwandor/varax.htm 2006/03/13 Clan Havaring Campaign -- Place of Interest http //www.glorantha.to/~tome/howabout/clan.htm 2004/06/29 Clan Havaring Campaign http //www.glorantha.to/~tome/howabout/havar.htm 2004/06/29 Clan Havaring Campaign http //www.glorantha.to/~tome/howabout/havar_item1.htm 2004/07/03 よくわかる?グローランサ! 神話と歴史 http //www.glorantha.to/~tome/howabout/history.htm 2004/06/29 バイス Bais http //www.glorantha.to/~tome/howabout/hw_chara/Bais.htm 2006/03/13 ディアマド Diamad http //www.glorantha.to/~tome/howabout/hw_chara/diamad.htm 2006/03/13 エリック、ガヤックの息子 Eric Gayacsson http //www.glorantha.to/~tome/howabout/hw_chara/eric.htm 2006/03/13 ローシエン Rothinen http //www.glorantha.to/~tome/howabout/hw_chara/Rothien.htm 2006/03/13 風姫シャイナ Shyna Windlady http //www.glorantha.to/~tome/howabout/hw_chara/shaina.htm 2006/03/13 闇の手ジーク Zeek Darkhand http //www.glorantha.to/~tome/howabout/hw_chara/zeek.htm 2006/03/13 よくわかる?グローランサ! http //www.glorantha.to/~tome/howabout/index.htm 2004/06/29 Player s Locater 出会いの辻 http //www.glorantha.to/~tome/howabout/locater.htm 2004/06/29 Player s Locater 出会いの辻 http //www.glorantha.to/~tome/howabout/locater2.htm 2004/06/29 Clan Havaring Campaign -- Place of Interest http //www.glorantha.to/~tome/howabout/place_interest.htm 2004/06/29 Rune Dictionary - 用語辞典 http //www.glorantha.to/~tome/howabout/rd_gods.htm 2004/06/29 Rune Dictionary - 英雄辞典 http //www.glorantha.to/~tome/howabout/rd_heroes.htm 2004/06/29 Rune Dictionary - 用語辞典 http //www.glorantha.to/~tome/howabout/rd_word.htm 2004/06/29 グローランサのルーン -- Rune, Runes, More Runes ! http //www.glorantha.to/~tome/howabout/runes.htm 2004/06/29 Clan Havaring Campaign -- Place of Interest http //www.glorantha.to/~tome/howabout/terms.htm 2004/06/29 img001.jpg http //www.glorantha.to/~tome/illustration/img001.html 2006/03/13 img002.jpg http //www.glorantha.to/~tome/illustration/img002.html 2006/03/13 img003.jpg http //www.glorantha.to/~tome/illustration/img003.html 2006/03/13 img004.gif http //www.glorantha.to/~tome/illustration/img004.html 2006/03/13 img005.jpg http //www.glorantha.to/~tome/illustration/img005.html 2006/03/13 img006.jpg http //www.glorantha.to/~tome/illustration/img006.html 2006/03/13 img007.jpg http //www.glorantha.to/~tome/illustration/img007.html 2006/03/13 img008.jpg http //www.glorantha.to/~tome/illustration/img008.html 2006/03/13 img009.jpg http //www.glorantha.to/~tome/illustration/img009.html 2006/03/13 img010.jpg http //www.glorantha.to/~tome/illustration/img010.html 2006/03/13 img011.jpg http //www.glorantha.to/~tome/illustration/img011.html 2006/03/13 img012.JPG http //www.glorantha.to/~tome/illustration/img012.html 2006/03/13 img013.GIF http //www.glorantha.to/~tome/illustration/img013.html 2006/03/13 img014.jpg http //www.glorantha.to/~tome/illustration/img014.html 2006/03/13 img014.jpg http //www.glorantha.to/~tome/illustration/img015.html 2006/03/13 Gloranthan Art Gallery http //www.glorantha.to/~tome/illustration/index.html 2006/03/13 TOME - Home http //www.glorantha.to/~tome/index.htm 2006/03/13 Argrath who were they? http //www.glorantha.to/~tome/lib/argrath1.htm 2003/09/21 Argrath how many were there? http //www.glorantha.to/~tome/lib/argrath2.htm 2003/09/21 オーランス http //www.glorantha.to/~tome/lib/arming.htm 2003/09/21 Balazar http //www.glorantha.to/~tome/lib/Balazar1.htm 2003/09/21 Broos! http //www.glorantha.to/~tome/lib/broos.htm 2003/09/21 警告 http //www.glorantha.to/~tome/lib/broos_warn.htm 2003/09/21 ホン・イール Hon-Eel the Artress http //www.glorantha.to/~tome/lib/c_honeel.htm 2003/09/21 フワーレン http //www.glorantha.to/~tome/lib/c_hwarin.htm 2003/09/21 Urain the Hell Wind http //www.glorantha.to/~tome/lib/c_Lambril.htm 2003/09/21 subere http //www.glorantha.to/~tome/lib/c_suberel.htm 2003/09/21 Urain the Hell Wind http //www.glorantha.to/~tome/lib/c_teelo.htm 2003/09/21 House Rules for Hero Wars http //www.glorantha.to/~tome/lib/carmania.htm 2003/10/11 RQ Character Sheet for Starnia http //www.glorantha.to/~tome/lib/cha_starnia.htm 2003/09/21 帝国のキャラクター http //www.glorantha.to/~tome/lib/chrgen.htm 2003/09/21 カルトを選ぼう http //www.glorantha.to/~tome/lib/cult_ocupation.htm 2003/09/21 主神オーランスとアーナールダ http //www.glorantha.to/~tome/lib/cult_ocupation2.htm 2003/09/21 その他の神々 http //www.glorantha.to/~tome/lib/cult_ocupation3.htm 2003/09/21 KoDP Diary http //www.glorantha.to/~tome/lib/diary_dp.htm 2003/09/21 KoDP Diary http //www.glorantha.to/~tome/lib/diary_dp2.htm 2003/09/21 KoDP Diary http //www.glorantha.to/~tome/lib/diary_dp3.htm 2003/09/21 KoDP Diary http //www.glorantha.to/~tome/lib/diary_dp4.htm 2003/09/21 Duck Tales http //www.glorantha.to/~tome/lib/ducktales.htm 2003/09/21 東方世界メモ http //www.glorantha.to/~tome/lib/eastisles.htm 2003/09/21 東方世界メモ http //www.glorantha.to/~tome/lib/eastmyth.htm 2003/09/21 あんけーと http //www.glorantha.to/~tome/lib/enquete.htm 2003/10/11 Anaxial s Roster http //www.glorantha.to/~tome/lib/extinct.htm 2004/01/11 Hero Wars Explorer FAQ1 http //www.glorantha.to/~tome/lib/faq_hw1.htm 2003/09/21 Hero Wars Explorer Feats http //www.glorantha.to/~tome/lib/feats.htm 2003/09/21 Hero Wars Explorer The Otherworlds http //www.glorantha.to/~tome/lib/fourworld.htm 2003/09/21 Glorantha Lore Auction http //www.glorantha.to/~tome/lib/gla.htm 2003/09/21 notes http //www.glorantha.to/~tome/lib/gla_note.htm 2003/09/21 main http //www.glorantha.to/~tome/lib/GLA1.htm 2003/09/21 A Rough Guide to www.glorantha.com http //www.glorantha.to/~tome/lib/guide_offical.htm 2003/09/21 TOME - “罪深き”グンダ http //www.glorantha.to/~tome/lib/gunda.htm 2003/09/21 http //www31.atwiki.jp/mallion/pages/85.html Clan Havaring Campaign -- Place of Interest http //www.glorantha.to/~tome/lib/heolt_calender.htm 2003/09/21 新しいページ 2 http //www.glorantha.to/~tome/lib/hero.htm 2003/09/21 The Coming of the Hero Wars http //www.glorantha.to/~tome/lib/Herowars1.htm 2003/09/21 House Rules for Hero Wars http //www.glorantha.to/~tome/lib/houserules.htm 2003/09/21 フマクトのひ・み・つ http //www.glorantha.to/~tome/lib/humakt.htm 2003/09/21 How to read and use HW rule book http //www.glorantha.to/~tome/lib/hwreading.htm 2003/09/21 グローランサ探訪 http //www.glorantha.to/~tome/lib/index.htm 2003/09/21 Item Collection http //www.glorantha.to/~tome/lib/itemcollection.htm 2003/09/21 Kallyr Starbrow the Brown Dragon http //www.glorantha.to/~tome/lib/kallyr_dragon.htm 2003/09/21 新しいページ 2 http //www.glorantha.to/~tome/lib/KoDP.htm 2003/09/21 King of Dragon Pass Status Report http //www.glorantha.to/~tome/lib/KoDPe.htm 2003/09/21 Cult of Kygar Litor http //www.glorantha.to/~tome/lib/kygar.htm 2003/09/21 Hero Wars http //www.glorantha.to/~tome/lib/lib_cont.htm 2004/08/08 メイン http //www.glorantha.to/~tome/lib/library.htm 2004/08/08 TOME - 灰色卿らいぶらり http //www.glorantha.to/~tome/lib/library2.htm 2004/08/08 パヴィスでの生活 Living in Pavis http //www.glorantha.to/~tome/lib/liveinpavis.htm 2003/09/21 怪獣総進撃 http //www.glorantha.to/~tome/lib/loral.htm 2003/09/21 ルナー帝国の神々 http //www.glorantha.to/~tome/lib/lunargods.htm 2003/09/21 TOME http //www.glorantha.to/~tome/lib/lunarzadan1.htm 2003/09/21 新しいページ 7 http //www.glorantha.to/~tome/lib/newpage.htm 2003/09/21 オーランスとアロカ http //www.glorantha.to/~tome/lib/o_and_a.htm 2003/09/21 http //www31.atwiki.jp/mallion/pages/72.html Pavis Big Rubble http //www.glorantha.to/~tome/lib/Pavisbook.htm 2003/09/21 Pavis and Big Rubble http //www.glorantha.to/~tome/lib/pavisbooke.htm 2003/09/21 Argrath who were they? http //www.glorantha.to/~tome/lib/Pharaoh.htm 2003/09/21 ヒーローバンド:スターニャの仲間たち http //www.glorantha.to/~tome/lib/prospedia.htm 2003/09/21 グレッグ氏への26の質問 http //www.glorantha.to/~tome/lib/q a26.htm 2003/09/21 ラスタルルフのサガ http //www.glorantha.to/~tome/lib/rastalulf.htm 2003/09/21 Return to Applelane #1 http //www.glorantha.to/~tome/lib/rep_rta1.htm 2003/09/21 Masters of Luck and Death http //www.glorantha.to/~tome/lib/review_MoLD.htm 2004/07/03 Nifty Serve FRPGM RQ会議室FAQ http //www.glorantha.to/~tome/lib/rqfaq.htm 2003/09/21 Hero Wars Example http //www.glorantha.to/~tome/lib/rqtohw.htm 2003/09/21 TOME - 実録RUMOURS http //www.glorantha.to/~tome/lib/rumour.htm 2003/09/21 タイトル http //www.glorantha.to/~tome/lib/rumour1.htm 2003/09/21 はじめに http //www.glorantha.to/~tome/lib/rumour3.htm 2003/09/21 第1号 http //www.glorantha.to/~tome/lib/rumour4.htm 2003/09/21 第2号 http //www.glorantha.to/~tome/lib/rumour5.htm 2003/09/21 第3号 http //www.glorantha.to/~tome/lib/rumour6.htm 2003/09/21 第4号 http //www.glorantha.to/~tome/lib/rumour7.htm 2003/09/21 第5号 http //www.glorantha.to/~tome/lib/rumour8.htm 2003/09/21 第6号 http //www.glorantha.to/~tome/lib/rumour9.htm 2003/09/21 第7号 http //www.glorantha.to/~tome/lib/rumoura.htm 2003/09/21 第8号 http //www.glorantha.to/~tome/lib/rumourb.htm 2003/09/21 第9号 http //www.glorantha.to/~tome/lib/rumourc.htm 2003/09/21 第10号 http //www.glorantha.to/~tome/lib/rumourd.htm 2003/09/21 第11号 http //www.glorantha.to/~tome/lib/rumoure.htm 2003/09/21 第12号1 http //www.glorantha.to/~tome/lib/rumourf.htm 2003/09/21 第13号1 http //www.glorantha.to/~tome/lib/rumourg.htm 2003/09/21 新しいページ 13 http //www.glorantha.to/~tome/lib/rumourh.htm 2003/09/21 おまけ http //www.glorantha.to/~tome/lib/rumouri.htm 2003/09/21 Saints http //www.glorantha.to/~tome/lib/saints.htm 2003/09/21 サーター王国について http //www.glorantha.to/~tome/lib/sartar.htm 2003/09/21 7th Wane - Timeline http //www.glorantha.to/~tome/lib/sevenwane.htm 2003/09/21 きとうしをやってみよう http //www.glorantha.to/~tome/lib/shaman.htm 2003/09/21 改訂版祈祷師ルール http //www.glorantha.to/~tome/lib/shamanrule.htm 2003/09/21 シャーガシュ Shargash http //www.glorantha.to/~tome/lib/shargash.htm 2003/09/21 グローランサにおける祈祷師たち http //www.glorantha.to/~tome/lib/sharman.htm 2003/09/21 魔道と苦行 http //www.glorantha.to/~tome/lib/sorcery_asceticism.htm 2003/09/21 新魔道ルール http //www.glorantha.to/~tome/lib/sorcery1.htm 2003/09/21 新魔道ルール http //www.glorantha.to/~tome/lib/sorcery2.htm 2003/09/21 新魔道ルール http //www.glorantha.to/~tome/lib/sorcery3.htm 2003/09/21 新魔道ルール http //www.glorantha.to/~tome/lib/sorcery4.htm 2003/09/21 新魔道ルール http //www.glorantha.to/~tome/lib/sorcery5.htm 2003/09/21 新魔道ルール http //www.glorantha.to/~tome/lib/sorcery6.htm 2003/09/21 プラックスの精霊:風の精霊 http //www.glorantha.to/~tome/lib/sp_air.htm 2003/09/21 プラックスの精霊:暗黒の精霊 http //www.glorantha.to/~tome/lib/sp_dark.htm 2003/09/21 プラックスの精霊:パップスの精霊 http //www.glorantha.to/~tome/lib/sp_earth.htm 2003/09/21 プラックスの精霊:火の精霊 http //www.glorantha.to/~tome/lib/sp_fire.htm 2003/09/21 プラックスの精霊 http //www.glorantha.to/~tome/lib/sp_great.htm 2003/09/21 プラックスの精霊 http //www.glorantha.to/~tome/lib/sp_prax.htm 2003/09/21 プラックスの精霊:水の精霊 http //www.glorantha.to/~tome/lib/sp_water.htm 2003/09/21 精霊たちの世界 http //www.glorantha.to/~tome/lib/spirits.htm 2003/09/21 新しいページ 1 http //www.glorantha.to/~tome/lib/spokenword.htm 2003/09/21 Sandy s Sorcery Rules (1998) http //www.glorantha.to/~tome/lib/ssr_e1.htm 2003/09/21 Sandy s Sorcery Rules (1998) - Sect Spells http //www.glorantha.to/~tome/lib/ssr_e2.htm 2003/09/21 RITUAL MAGIC http //www.glorantha.to/~tome/lib/ssr_e3.htm 2003/09/21 REVISED SHAMAN RULES http //www.glorantha.to/~tome/lib/ssr_e4.htm 2003/09/21 MYSTICISM http //www.glorantha.to/~tome/lib/ssr_e5.htm 2003/09/21 Grimore http //www.glorantha.to/~tome/lib/ssr_e6.htm 2003/09/21 ヒーローバンド:スターニャの仲間たち http //www.glorantha.to/~tome/lib/Starnya.htm 2003/09/21 東方世界メモ http //www.glorantha.to/~tome/lib/stinkingelf.htm 2003/09/21 Storm Wars http //www.glorantha.to/~tome/lib/stormwars.htm 2003/09/21 Hero Wars Explorer Feats http //www.glorantha.to/~tome/lib/subcult.htm 2003/09/21 ターシュ~帝国の辺境 http //www.glorantha.to/~tome/lib/tarsh.htm 2003/09/21 Hero Wars Tips http //www.glorantha.to/~tome/lib/tips.htm 2003/09/21 ヒーローとは http //www.glorantha.to/~tome/lib/tips_contents.htm 2003/09/21 ヒーローウォーズ TIPS http //www.glorantha.to/~tome/lib/tips_title.htm 2003/09/21 新しいページ 4 http //www.glorantha.to/~tome/lib/tips0.htm 2003/09/21 ヒーローとは http //www.glorantha.to/~tome/lib/tips1.htm 2003/09/21 新しいページ 9 http //www.glorantha.to/~tome/lib/tips2.htm 2003/09/21 新しいページ 10 http //www.glorantha.to/~tome/lib/tips3.htm 2003/09/21 新しいページ 11 http //www.glorantha.to/~tome/lib/tips4.htm 2003/09/21 新しいページ 12 http //www.glorantha.to/~tome/lib/tips5.htm 2003/09/21 新しいページ 13 http //www.glorantha.to/~tome/lib/tips6.htm 2003/09/21 新しいページ 14 http //www.glorantha.to/~tome/lib/tips7.htm 2003/09/21 新しいページ 15 http //www.glorantha.to/~tome/lib/tips8.htm 2003/09/21 新しいページ 16 http //www.glorantha.to/~tome/lib/tips9.htm 2003/09/21 Playing UZ http //www.glorantha.to/~tome/lib/uz.htm 2003/09/21 Saga of Vingkotling http //www.glorantha.to/~tome/lib/vingkotling.htm 2003/09/21 怪獣総進撃 http //www.glorantha.to/~tome/lib/vormain.htm 2003/09/21 Who s who - Sartarite 1621 http //www.glorantha.to/~tome/lib/whoswho.htm 2004/01/09 父が語ってくれたこと http //www.glorantha.to/~tome/lib/wmftm.htm 2003/09/21 緊急座談会! http //www.glorantha.to/~tome/lib/zadan.htm 2003/09/21 タイトル http //www.glorantha.to/~tome/lib/zadan1.htm 2003/09/21 メニュー http //www.glorantha.to/~tome/lib/zadan2.htm 2003/09/21 はじめに http //www.glorantha.to/~tome/lib/zadan3.htm 2003/09/21 自己紹介 http //www.glorantha.to/~tome/lib/zadan4.htm 2003/09/21 出席者一覧 http //www.glorantha.to/~tome/lib/zadan5.htm 2003/09/21 RQのルールはどうなの? http //www.glorantha.to/~tome/lib/zadan6.htm 2003/09/21 ちょっと脱線 http //www.glorantha.to/~tome/lib/zadan7.htm 2003/09/21 RPG研における平均的なプレイ? http //www.glorantha.to/~tome/lib/zadan8.htm 2003/09/21 思い出のキャラクターたち(1) http //www.glorantha.to/~tome/lib/zadan9.htm 2003/09/21 思い出のキャラクターたち(2) http //www.glorantha.to/~tome/lib/zadana.htm 2003/09/21 グローランサのとっつきやすさはどうなの? http //www.glorantha.to/~tome/lib/zadanb.htm 2003/09/21 BoDR http //www.glorantha.to/~tome/review/bodr.htm 2006/03/13 Cults of Horror http //www.glorantha.to/~tome/review/cult_h.htm 2006/03/13 Geo s Inn #7 http //www.glorantha.to/~tome/review/geo7.htm 2006/03/13 Genertela Crubile of Hero Wars http //www.glorantha.to/~tome/review/glorantha.htm 2006/03/13 Hon Eel the Artress http //www.glorantha.to/~tome/review/honeel.htm 2006/03/13 Lord of Hender s Ruin http //www.glorantha.to/~tome/review/hr.htm 2006/03/13 Barbarian Adventures http //www.glorantha.to/~tome/review/hw_BA.htm 2006/03/13 KoSE http //www.glorantha.to/~tome/review/kose.htm 2006/03/13 Geo s Inn #7 http //www.glorantha.to/~tome/review/kosj.htm 2006/03/13 Missing Lands http //www.glorantha.to/~tome/review/ml.htm 2006/03/13 PentPak http //www.glorantha.to/~tome/review/pen1.htm 2006/03/13 れびゅー! http //www.glorantha.to/~tome/review/review.htm 2006/03/13 Review - menu http //www.glorantha.to/~tome/review/review1.htm 2006/03/13 review - Foot http //www.glorantha.to/~tome/review/review3.htm 2006/03/13 Review-Main http //www.glorantha.to/~tome/review/reviw2.htm 2006/03/13 Geo s Inn #7 http //www.glorantha.to/~tome/review/roc.htm 2006/03/13 RuneQuest Advanced Rules http //www.glorantha.to/~tome/review/rqa.htm 2006/03/13 RuneQuest Basic Rules http //www.glorantha.to/~tome/review/rqb.htm 2006/03/13 Geo s Inn #7 http //www.glorantha.to/~tome/review/rqcomp.htm 2006/03/13 Malion s Random Talk http //www.glorantha.to/~tome/rtalk/bookshelf.htm 2006/03/13 Malion s Random Talk http //www.glorantha.to/~tome/rtalk/games.htm 2006/03/13 Malion s Random Talk http //www.glorantha.to/~tome/rtalk/rtalk0001.htm 2006/03/13 Malion s Random Talk http //www.glorantha.to/~tome/rtalk/rtalk0003.htm 2006/03/13 Malion s Random Talk http //www.glorantha.to/~tome/rtalk/rtalk9911.htm 2006/03/13 Malion s Random Talk http //www.glorantha.to/~tome/rtalk/rtalkindex.htm 2006/03/13 らんだむとーく http //www.glorantha.to/~tome/rtalk/rtalkold1.htm 2006/03/13 Tradetalk. http //www.glorantha.to/~tome/rtalk/tradetalk.htm 2006/03/13 Alucard1.jpg http //www.glorantha.to/~tome/rtalk/wf/Alucard1.html 2006/03/13 Alucard2.jpg http //www.glorantha.to/~tome/rtalk/wf/Alucard2.html 2006/03/13 amaterasu.jpg http //www.glorantha.to/~tome/rtalk/wf/amaterasu.html 2006/03/13 andersen1.jpg http //www.glorantha.to/~tome/rtalk/wf/andersen1.html 2006/03/13 aoi.jpg http //www.glorantha.to/~tome/rtalk/wf/aoi.html 2006/03/13 ArcanaKnight.jpg http //www.glorantha.to/~tome/rtalk/wf/ArcanaKnight.html 2006/03/13 ArcanaKnight2.jpg http //www.glorantha.to/~tome/rtalk/wf/ArcanaKnight2.html 2006/03/13 arecto.jpg http //www.glorantha.to/~tome/rtalk/wf/arecto.html 2006/03/13 arms.jpg http //www.glorantha.to/~tome/rtalk/wf/arms.html 2006/03/13 bebop.jpg http //www.glorantha.to/~tome/rtalk/wf/bebop.html 2006/03/13 coon.jpg http //www.glorantha.to/~tome/rtalk/wf/coon.html 2006/03/13 coon2.jpg http //www.glorantha.to/~tome/rtalk/wf/coon2.html 2006/03/13 Corus4.jpg http //www.glorantha.to/~tome/rtalk/wf/Corus4.html 2006/03/13 Daredakke.jpg http //www.glorantha.to/~tome/rtalk/wf/Daredakke.html 2006/03/13 dokyusei2.jpg http //www.glorantha.to/~tome/rtalk/wf/dokyusei2.html 2006/03/13 dragonbane.jpg http //www.glorantha.to/~tome/rtalk/wf/dragonbane.html 2006/03/13 dragonbane2.jpg http //www.glorantha.to/~tome/rtalk/wf/dragonbane2.html 2006/03/13 engage1.jpg http //www.glorantha.to/~tome/rtalk/wf/engage1.html 2006/03/13 engage2.jpg http //www.glorantha.to/~tome/rtalk/wf/engage2.html 2006/03/13 gungrifon.jpg http //www.glorantha.to/~tome/rtalk/wf/gungrifon.html 2006/03/13 guts.jpg http //www.glorantha.to/~tome/rtalk/wf/guts.html 2006/03/13 index.html(1/3) http //www.glorantha.to/~tome/rtalk/wf/index1.html 2006/03/13 index.html(2/3) http //www.glorantha.to/~tome/rtalk/wf/index2.html 2006/03/13 index.html(3/3) http //www.glorantha.to/~tome/rtalk/wf/index3.html 2006/03/13 joe.jpg http //www.glorantha.to/~tome/rtalk/wf/joe.html 2006/03/13 kanon2.jpg http //www.glorantha.to/~tome/rtalk/wf/kanon2.html 2006/03/13 kanon3.jpg http //www.glorantha.to/~tome/rtalk/wf/kanon3.html 2006/03/13 kanon4.jpg http //www.glorantha.to/~tome/rtalk/wf/kanon4.html 2006/03/13 Kinky.jpg http //www.glorantha.to/~tome/rtalk/wf/Kinky.html 2006/03/13 leddragon.jpg http //www.glorantha.to/~tome/rtalk/wf/leddragon.html 2006/03/13 magdal.jpg http //www.glorantha.to/~tome/rtalk/wf/magdal.html 2006/03/13 Noie.jpg http //www.glorantha.to/~tome/rtalk/wf/Noie.html 2006/03/13 ogrebattle.jpg http //www.glorantha.to/~tome/rtalk/wf/ogrebattle.html 2006/03/13 panisher.jpg http //www.glorantha.to/~tome/rtalk/wf/panisher.html 2006/03/13 pekin.jpg http //www.glorantha.to/~tome/rtalk/wf/pekin.html 2006/03/13 polytan.jpg http //www.glorantha.to/~tome/rtalk/wf/polytan.html 2006/03/13 PS.jpg http //www.glorantha.to/~tome/rtalk/wf/PS.html 2006/03/13 SuiOhMaru.jpg http //www.glorantha.to/~tome/rtalk/wf/SuiOhMaru.html 2006/03/13 superrobo.jpg http //www.glorantha.to/~tome/rtalk/wf/superrobo.html 2006/03/13 Balazar http //www.glorantha.to/~tome/visit/Balazar1.htm 2006/03/13 英雄に関する私論 http //www.glorantha.to/~tome/visit/hero.htm 2006/03/13 Cult of Kygar Litor http //www.glorantha.to/~tome/visit/kygar.htm 2006/03/13 バラザールの人々 http //www.glorantha.to/~tome/visit/npcs.htm 2006/03/13 グローランサにおける祈祷師たち http //www.glorantha.to/~tome/visit/sharman.htm 2006/03/13 精霊たちの世界 http //www.glorantha.to/~tome/visit/spirits.htm 2006/03/13 原案 http //www.glorantha.to/~tome/zangetsu/index.htm 2006/03/13 名前 コメント すべてのコメントを見る
https://w.atwiki.jp/linux2ch/pages/90.html
ニュースサイト Linuxなニュース・その他を配信しているサイト。 ニュースサイト Linux全般 海外 海外(翻訳) 国内 ディストリビューション ソフトウェア IT関係 BBS ニュースソース Planet Linux板ニュース速報 スレッド Linux全般 海外 LWN.net Linux Today Linux.com [Phoronix] Linux Hardware Reviews, Benchmarking, Gaming 海外(翻訳) Linux Today 国内 tech.ascii.jp http //tech.ascii.jp/ 日経Linux http //itpro.nikkeibp.co.jp/linux/ IBM DevelopWorks Japan Linux http //www.ibm.com/developerworks/jp/linux/ ディストリビューション Distro Watch Debian Weekly News Gentoo Weekly Newsletter LinuxISO.org ソフトウェア Freshmeat KernelTrap Wine News FootNotes | GNOME Desktop News KDE Dot News mozillaZine mozillaZine.jp IT関係 BBS Slashdot.org Slashdot.jp OSnews digg 2ch PCニュース速報板 ニュースソース Linux/BSD | エンタープライズ(マイコミジャーナル) http //journal.mycom.co.jp/enterprise/linux/index.html オープンソース/Linux(itpro.nikkeibp.co.jp) http //itpro.nikkeibp.co.jp/oss/index.html Open Tech Press http //sourceforge.jp/magazine/ japan.internet.com http //japan.internet.com/ CNET Japan http //japan.cnet.com/ ZDNet Japan http //japan.zdnet.com/ ITmedia http //www.itmedia.co.jp/ WIRED VISION http //wiredvision.jp/ Planet ブログの集積ブログみたいなもの。英語圏の開発者がよく書いている。 Planet Planet! http //www.planetplanet.org/ Debian http //planet.debian.org/ Fedora http //planet.fedoraproject.org/ Fedora Japanese http //oss.poyo.jp/fedora/planet/ SuSE http //www.planetsuse.org/ Kernel http //planet.kernel.org/ freedesktop.org (X.orgとか) http //planet.freedesktop.org/ GNOME http //planet.gnome.org/ KDE http //planetkde.org/ Mozilla http //planet.mozilla.org/ OpenOffice.org http //planet.go-oo.org/ Linux板ニュース速報 スレッド 13 http //pc11.2ch.net/test/read.cgi/linux/1269338464/ 12 http //pc11.2ch.net/test/read.cgi/linux/1256538021/ 11 http //pc11.2ch.net/test/read.cgi/linux/1245408262/ 10 http //pc11.2ch.net/test/read.cgi/linux/1234449957/ 9 http //pc11.2ch.net/test/read.cgi/linux/1220572280/ 8 http //pc11.2ch.net/test/read.cgi/linux/1209657943/ 7 http //pc11.2ch.net/test/read.cgi/linux/1195618478/ 6 http //pc11.2ch.net/test/read.cgi/linux/1183299841/ 5 http //pc11.2ch.net/test/read.cgi/linux/1169813792/ 4 http //pc10.2ch.net/test/read.cgi/linux/1127785381/ 3 http //pc8.2ch.net/test/read.cgi/linux/1098519182/ 2 http //pc5.2ch.net/test/read.cgi/linux/1064136308/ 1 http //pc.2ch.net/test/read.cgi/linux/1024853813/
https://w.atwiki.jp/wiki1_matome/pages/19.html
直リンでお困りの方は、Homeのメールから抗議文を送ってください。すぐに削除します。 ITLToSD http //www.zio.mydns.jp/ToolDL/WebForm1.aspx ftIndexer (W21SA用設定で使用可) http //mypage.odn.ne.jp/home/nod_chip A5502K miniSD簡易ファイラー(下の設定ファイルを適用) http //f53.aaa.livedoor.jp/~winsanyo/pukiwiki.php?miniSD 設定ファイル : http //www1.atwiki.jp/matome/?cmd=upload act=open pageid=19 file=W21SA.dat 携帯動画変換君(下のiniファイルを設定ファイルに適用) http //www.nurs.or.jp/~calcium/3gpp/ 設定ファイル1: http //www1.atwiki.jp/matome/?cmd=upload act=open pageid=19 file=Transcoding_W31SA.ini 設定ファイル2: http //www1.atwiki.jp/matome/?cmd=upload act=open pageid=19 file=Transcoding_W31SA2.ini 偽装着うたエディタ(初期設定でサウンドフォルダ「S」ムービーフォルダ「V」EZムービーフォルダ「A」に) http //homepage2.nifty.com/ONTHEROAD/tools/ mPorter(Mac OSX 用ファイル転送ソフト) http //www.ne.jp/asahi/ez-soft/dev/hitokobo/ MacOSX用プレイリストであれこれCUIツール(Part14 259氏制作) http //www1.atwiki.jp/matome/?cmd=upload act=open pageid=19 file=sdFileCopy.zip GUIラッパー(Part14 667氏制作) http //www1.atwiki.jp/matome/?cmd=upload act=open pageid=19 file=pmt.zip
https://w.atwiki.jp/csdejp/pages/44.html
?xml version="1.0" encoding="windows-1251" ? string_table string id="gar_defend_bandit_base_name" text Verteidige die Banditenbasis /text /string string id="gar_defend_bandit_base_text" text Verteidige die Banditenbasis gegen die feindlichen Angriffe. /text /string string id="gar_quest_bring_money_name" text Bringe Napr 2.000 in Bar, wenn es dunkel wird. /text /string string id="gar_quest_bring_money_text" text Kaufe ein Medkit vom Wilden Napr beim Flohmarkt f・ 2.000. Grere Gesch臟te wie dieses finden auf dem Flohmarkt nur nachts statt. /text /string string id="gar_quest_bring_old_pda_name" text Bringe dem Wilden Napr den alten PDA /text /string string id="gar_quest_bring_old_pda_text" text Bringe dem Wilden Napr beim Flohmarkt den alten PDA, den du in Freshys zersttem Lager unter dem doppelten Boden des Werkzeugkastens gefunden hast. /text /string string id="gar_quest_destroy_ambush_name" text Te den Verr舩er /text /string string id="gar_quest_destroy_ambush_text" text Te Stringow daf・, dass er dich in einen Hinterhalt gelockt hat. /text /string string id="gar_quest_destroy_flea_market_name" text ワbernimm zusammen mit den Banditen den Flohmarkt /text /string string id="gar_quest_destroy_flea_market_text" text Te die M・lgr臙er auf dem Flohmarkt, um den anderen eine Lektion zu erteilen, und vergewissere dich, dass einer der Banditen dort als Wache zur・kbleibt. /text /string string id="gar_quest_get_old_pda_box_name" text Nimm den alten PDA aus dem Werkzeugkasten /text /string string id="gar_quest_get_old_pda_box_text" text Hole den alten PDA aus Freshys Lager und bringe ihn zum Wilden Napr. Der PDA m・ste unter dem doppelten Boden des Werkzeugkastens liegen. /text /string string id="gar_quest_get_old_pda_name" text Hole den alten PDA aus Freshys Lager /text /string string id="gar_quest_get_old_pda_text" text Nimm Freshy im Lager den alten PDA ab und bringe ihn zum Wilden Napr. Wenn Freshy nicht da ist, findest du den PDA unter dem doppelten Boden im Werkzeugkasten. /text /string string id="gar_quest_get_traitor_pda_name" text Durchsuche Stringows Kper /text /string string id="gar_quest_get_traitor_pda_text" text Durchsuche Stringows Kper und nimm alles mit, was n・zlich erscheint. /text /string string id="gar_quest_get_weapons_name" text Bringe Stringow 2.000 /text /string string id="gar_quest_get_weapons_text" text Bringe Stringow 2.000 in bar, um ein paar geschmuggelte Waffen zu kaufen. /text /string string id="gar_quest_kill_digger_traitor_name" text Erledige einen Mann namens Stringow /text /string string id="gar_quest_kill_digger_traitor_text" text Befolge Yogas Anweisungen und te einen Mann namens Stringow. /text /string string id="gar_quest_kill_smuggler_name" text Erledige den Schmuggler und die M・lgr臙er. /text /string string id="gar_quest_kill_smuggler_text" text Te den Schmuggler und die M・lgr臙er, die von ihm Waffen kaufen wollen. /text /string string id="gar_quest_killer_pseudodogs_name" text Vernichte die Nachtj臠er /text /string string id="gar_quest_killer_pseudodogs_text" text Finde und vernichte die Kreaturen, die Jagd auf die M・lgr臙er machen. Du kannst dort anfangen zu suchen, wo die ワberlebenden angegriffen wurden. Du kannst sie wahrscheinlich nur bei Nacht aufsp・en. /text /string string id="gar_quest_liberate_conc_camp_name" text Schalte die Wachen beim Sammellager der Banditen aus /text /string string id="gar_quest_liberate_conc_camp_text" text Befreie die Gefangenen gemeinsam mit der Einheit der M・lgr臙er, nachdem du die Wachen am Sammellager der Banditen ausgeschaltet hast. /text /string string id="gar_quest_meet_with_digger_fighters_name" text Triff die Einheit der M・lgr臙er /text /string string id="gar_quest_meet_with_digger_fighters_text" text Triff die Einheit der M・lgr臙er und f・re den Angriff auf das Sammellager der Banditen aus. /text /string string id="gar_quest_speak_with_quester_name" text Rede mit dem Wilden Napr /text /string string id="gar_quest_speak_with_quester_text" text Finde heraus, ・er was f・ wichtige Gesch臟te der Wilde Napr mit dir beim Flohmarkt reden wollte. /text /string string id="gar_story_chase_digger_name" text Hole vom Boten der M・lgr臙er Informationen ein /text /string string id="gar_story_chase_digger_text" text Rede mit dem Boten der M・lgr臙er und finde heraus, wohin Fang gegangen ist. /text /string string id="gar_story_chase_pda_signal_cellar_name" text Finde Fang /text /string string id="gar_story_chase_pda_signal_cellar_text" text Finde Fang im Keller, indem du seinem PDA-Signal folgst. /text /string string id="gar_story_chase_pda_signal_name" text Hole Fang ein /text /string string id="gar_story_chase_pda_signal_text" text Hole Fang ein, indem du seinem PDA-Signal folgst. /text /string string id="gar_story_find_cache_name" text Finde das Versteck /text /string string id="gar_story_find_cache_text" text Finde das Versteck von Fangs Gruppe. /text /string string id="gar_story_find_diggers_name" text Hole von den M・lgr臙ern Informationen ・er Fang ein /text /string string id="gar_story_find_diggers_text" text Frage die M・lgr臙er, die Fang dem H舅dler zufolge aufgesucht hat, nach Fangs Aufenthaltsort. /text /string string id="gar_story_get_pda_name" text Nimm Fangs PDA /text /string string id="gar_story_get_pda_text" text Nimm den PDA, den Fang verloren hat. /text /string string id="gar_story_go_to_freedom_name" text Folge Fang ins Dunkle Tal /text /string string id="gar_story_go_to_freedom_text" text Folge Fang ins Dunkle Tal. /text /string string id="gar_story_kill_dogs_name" text Te die Schattenhunde /text /string string id="gar_story_kill_dogs_text" text Te die Schattenhunde, die den Boten der M・lgr臙er im Tal in die Enge getrieben haben. /text /string string id="gar_story_search_digger_bodies_name" text Durchsuche den toten M・lgr臙er /text /string string id="gar_story_search_digger_bodies_text" text Durchsuche den toten M・lgr臙er nach Informationen ・er Fang. /text /string string id="gar_quest_bandit_reward_name" text Hol dir deine Belohnung von Tooth /text /string string id="gar_quest_bandit_reward_text" text Gehe zu Tooth, dem H舅dler, und hol dir eine Belohnung f・ die S舫berung des Flohmarkts. /text /string string id="gar_quest_bandit_secret_name" text Hol die Knarre aus dem Versteck in der Anomalie /text /string string id="gar_quest_bandit_secret_text" text Hol die Knarre, von der Yoga erz臧lt hat, aus dem Versteck in der Anomalie /text /string string id="gar_quest_captive_reward_name" text Hol die Beute aus dem Versteck /text /string string id="gar_quest_captive_reward_text" text Hol die Beute aus dem alten Versteck der M・lgr臙er, die aus dem Sammellager befreit wurden. /text /string string id="gar_quest_more_reward_name" text Fordere eine Belohnung von Yoga /text /string string id="gar_quest_more_reward_text" text Fordere eine zus舩zliche Belohnung von Yoga f・ die S舫berung des Flohmarkts. /text /string string id="st_gar_find_flesh_up_aceg_scientific_outfit_name" text Finde Informationen ・er verst舐kten Kperschutz /text /string string id="st_gar_find_flesh_up_aceg_scientific_outfit_text" text Bringe Limpid eine Flasche Schnaps und Informationen ・er verst舐kten Kperschutz. Im Gegenzug kann er deinen Anzug vielleicht mit etwas トhnlichem ausstatten. /text /string string id="st_gar_find_flesh_up_bdfh_scientific_outfit_name" text Finde Informationen dar・er, wie man ein Screening bei einem Anzug durchf・rt /text /string string id="st_gar_find_flesh_up_bdfh_scientific_outfit_text" text Limpid hat noch nie von den Psi-Emissionen geht, aber wenn du ihm die nigen Informationen gibst, knte er einem Anzug ein System verpassen, das den Tr臠er gegen diese Emissionen sch・zt. /text /string string id="st_gar_find_flesh_up_fh_scientific_outfit_name" text Finde Informationen ・er geschlossene Atemmodule /text /string string id="st_gar_find_flesh_up_fh_scientific_outfit_text" text Limpid, der Techniker der Banditen, beherrscht jede Art von Modifikation, aber f・ den Einbau eines geschlossenen Atemmoduls in einen Anzug benigt er noch weitere Informationen. /text /string string id="gar_quest_redemption_name" text Hole dir deine Sachen zur・k /text /string string id="gar_quest_redemption_text" text Hole dir deine Sachen zur・k, die dir die Banditen in der N臧e des Flohmarkts abgenommen haben. /text /string string id="gar_recover_item_1_name" text Bringe die Chaser 13 zur・k /text /string string id="gar_recover_item_1_text" text Nun, die Sache ist die Einer unserer Jungs hat einen dieser M・lgr臙er geschnappt und ist mit ihm zwischen einigen Anomalien spazieren gegangen. Tja, am Ende sind die beiden in einer Gravit-Anomalie draufgegangen. Damit habe ich zwar kein Problem, aber der Kollege hatte meine Chaser f・ den Spaziergang ausgeliehen und die befindet sich immer noch dort. Wenn du mir die Waffe zur・kbringen kntest, w舐e ich mehr als erfreut. /text /string string id="gar_recover_item_2_name" text Finde die modifizierte Waffe /text /string string id="gar_recover_item_2_text" text Hey, Bruder! Du kntest mir einen Gefallen tun. Vor kurzem war ich bei Limpid und er hat eine richtig gute Wumme f・ einen Typen gebaut, mit Modifizierungen und so. Nun, dieser Typ und unser Boss sind nicht sehr gut miteinander ausgekommen, also hat Yoga uns gesagt, dass wir den Typen verschwinden lassen sollen. Deswegen haben wir ihn in einen h・schen Haufen Anomalien gejagt. Das ist zwar sch und gut, aber diese tolle Knarre liegt jetzt auch dort! Wenn du sie mir beschaffen kannst, werde ich daf・ sorgen, dass Tooth dich gut belohnt. /text /string string id="gar_recover_item_3_name" text Liefere eine Flasche Cossacks-Wodka ab /text /string string id="gar_recover_item_3_text" text Kumpel, w・dest du mir einen Gefallen tun und mir was zu trinken besorgen? Aber nicht den billigen Fusel, den jeder hier trinkt. Ich habe ein paar Flaschen mit gutem Wodka hier ganz in der N臧e versteckt, aber kann gerade nicht selbst dorthin. Bringe mir den Wodka aus dem Versteck und achte darauf, dass dich niemand dabei beobachtet, OK? /text /string string id="gar_recover_item_4_name" text Bringe die Jacke des Anf舅gers zur・k /text /string string id="gar_recover_item_4_text" text Vor ein paar Tagen kam hier ein Kerl vom Kordon vorbei, noch gr・ hinter den Ohren und einer der ganz nervigen Sorte. Er hat jedem von seiner Zauberjacke erz臧lt, der keine Anomalie etwas anhaben kne. Selbst als die Banditen ihn geschnappt haben, hat er nicht aufgeht zu plappern, bis sie ihn schlie゚lich in eine Gravit-Anomalie gejagt haben. Nun ja, der arme Kerl hatte Recht Die Jacke hat das Ganze ohne einen einzigen Kratzer ・erstanden. Ich knte das Ding ganz gut gebrauchen, wenn du es mir beschaffen w・dest. /text /string string id="gar_recover_item_5_name" text Bringe die Pistole mit der Gravur zur・k /text /string string id="gar_recover_item_5_text" text Du kannst mir bei einer Sache helfen. Ich hatte mal eine Pistole; nichts Besonderes, aber sie hatte meinem Gro゚vater geht. Ich habe sie in einem recht gro゚en Durcheinander verloren... vor ein paar Tagen haben wir uns ziemlich betrunken und sind dann auf die Idee gekommen, dass wir in der Nacht die Banditen erschrecken knten. Als es dunkel geworden ist, haben wir uns an ein Lager angeschlichen, das wir bei Tag ausgesucht hatten, und haben angefangen, Mutantenger舫sche zu machen. Es hat sich dann recht schnell herausgestellt, dass da gar keine Banditen waren. Stattdessen haben uns zwei Blutsauger angegriffen! Ich w舐e fast draufgegangen und habe auch noch meine Pistole dort fallen lassen. /text /string /string_table
https://w.atwiki.jp/nekonomike/pages/121.html
Olsen News/2006年03月29日/MK out and about in LA Olsen News/2006年03月29日/Picture from Australian Olsen News/2006年03月29日/MK IN SHOP Olsen News/2006年03月29日/Mary-Kate Olsen out in LA 3/28 #blognavi
https://w.atwiki.jp/dntryoutu/pages/14.html
過去のNews1 過去のNewsはコチラ ★5月30日★ 同盟に【賛成】or【不参加】するかを雑談掲示板で意見を募集中です。 必ず!どちらかを選び、理由を述べてから投稿して下さい。 TEAM.概要の内容をを若干変更しました。 リンク集にチームADAM・GREEN BERET・ゲームレポーターの取材帳 を追加させていただきました。 ★5月28日★ 大日本帝国戦場写真館に4枚写真をUPしました。 予定通り内戦が開催されました。 ★5月26日★ 元帥活動手帳を更新しました。 定例大日本帝国会議が予定通り開催されました。 定例チーム内対戦が追加されました! ★5月25日★ 隊員所属部隊に統一しました。 元帥活動手帳が無事?スタートしました! 大日本帝国戦場写真館を更新しました。 チーム内対戦表は廃止してTEAM.概要のところに変更しました。 ★5月24日★ 全掲示板&チャットの隊員専用掲示板などは【廃止】となりました。 お知らせ掲示板を追加しました。 若干全掲示板&チャットの仕様を変更しました。。 ★5月23日★ リンク集に U.S.A METAR GEAR SOLID OPS チーム沢北 を追加しました。 ★5月21日★ 特設コーナーを追加しました。 ★5月20日★ 隊員の方で階級が新人兵の方は全員一等兵と昇格となりました! GO-兵長 SHINKI.JR 伍長 majipo 伍長 SSS(B) 伍長 HUNK 上記の通り階級が昇進した隊員様です。 (TEAM.説明の階級制度に基いています) ★5月19日★ MPOオンラインイベント第二弾「実戦 傭兵争奪戦」 決定!今回は誰でも自由に参加できるそうです! 今すぐ確認を! ★5月18日★ リンク集にMPO ONLINETEAMGRU_ 追加 交流戦結果表廃止。 代わりに「元帥活動手帳」追加! ただいま作成中ですので皆様楽しみにしておいてください! 引き続きテスト勉強中です(泣 重要なお知らせです! 軍・部隊制度は廃止となりました! 隊員は至急【TEAM.説明】 で新しい部隊制度を確認して下さい! ★5月16日★ TOPページを大幅に変更しました。 ★5月15日★ 重要なお知らせです! 軍・部隊制度は廃止となりました! 隊員は至急【TEAM.説明】 で新しい部隊制度を確認して下さい! ★5月13日★ ミュージック追加。 サイトを見やすくするためデザイン変更テスト中。 ★5月12日★ フラッシュ追加。 今後も追加予定。 メニューの簡略化をいたしました。 DNT新ロゴ完成 ★5月11日★ メニューの簡略化検討中....... ★5月5日★ 技術研究会追加! どんどん投稿してください! ★5月4日★ それぞれのコンテンツのページにイメージ画像追加しました。 ★5月3日★ 隊員が多くなって来ましたので1つのホストでは チーム内対戦に全員参加できなくなってしまいます。 そこでチーム内対戦の時ホストを開いてくれる隊員募集! ~雑談掲示板~まで ★5月2日★ 通常通り内戦を開催しました。 参加人数は4人でした(元帥ホスト専用 対戦予定&結果表廃止。 チーム内対戦表 交流戦結果表に変更 ★5月1日★ @陸軍本部@ @海軍本部@ @空軍本部@ を追加。 質問掲示板・兵士交換掲示板追加。 ★28日★ 新人兵SSS(B)さんを所属部隊紹介に記入するのを 忘れていました。大変申し訳ございません。 隊員参加希望対戦受付掲示板を追加しました! コンテンツ増加中です!ご期待下さい。 ★27日★ オンライン激戦写真活動開始! 大日本帝国研究会活動中! 対戦交渉は、全掲示板&チャットに移動しました ★26日★ MPOおもしろ写真撮影協力者募集開始! 詳しくは~オンライン激戦写真~まで ★④月25日★ MPO ONLINE TEAM [SPETSNAZ]をリンク集に
https://w.atwiki.jp/pipopipo555jp/pages/1249.html
New York Times,Mar 28, 2008 http //www.nytimes.com/2008/03/29/world/asia/29japan.html?ref=asia Japanese Court Rejects Defamation Lawsuit Against Nobel Laureate By NORIMITSU ONISHI Published March 29, 2008 TOKYO — A Japanese court rejected a defamation lawsuit on Friday against Kenzaburo Oe, the 1994 Nobel laureate in literature, agreeing with his depiction of involvement by the Japanese military in the mass suicides of civilians in Okinawa toward the end of World War II. In a closely watched ruling, the Osaka District Court threw out a $200,000 damage suit that was filed by a 91-year-old war veteran and another veteran’s surviving relatives, who said there was no evidence of the military’s involvement in the suicides. The plaintiffs had also sought to block further printing of Mr. Oe’s 1970 book of essays, “Okinawa Notes,” in which he wrote that Japanese soldiers had told Okinawans they would be raped, tortured and murdered by the advancing American troops and coerced them into killing themselves instead of surrendering. “The military was deeply involved in the mass suicides,” Judge Toshimasa Fukami said in the ruling. Judge Fukami cited the testimony of survivors that soldiers had handed out grenades to civilians to use for committing suicide, and the fact that mass suicides had occurred only in villages where Japanese troops had been stationed. The defamation lawsuit, filed in 2005, was seized upon by right-wing scholars and politicians in Japan who wanted to delete references to the military’s coercion of civilians in the mass suicides from the country’s high school history textbooks. Last April, during the administration of Shinzo Abe, then the prime minister, the Ministry of Education announced that references to the military’s role would be deleted from textbooks. Some 110,000 people rallied in protest in Okinawa last September, in the biggest demonstration in the prefecture since the early 1970s. The protests, as well as Mr. Abe’s resignation and his replacement by Prime Minister Yasuo Fukuda, a moderate, led the Ministry of Education to put back most of the references in December. The about-face was an embarrassment for the government, which has always denied accusations by China and South Korea that it engaged in historical whitewashing, and has contended that its school textbooks are free of political bias. “The judge accurately read my writing,” Mr. Oe, 73, said at a news conference. 大阪地裁判決に対する各紙論評など