約 2,388,774 件
https://w.atwiki.jp/toshi_oboegaki/pages/41.html
WEBサーバ(apache)apacheのインストール 設定ファイルの編集 自動起動のオン apacheの起動・停止・再起動 ファイアウォールの設定 PHPの環境構築 ftpサーバの構築インストールコマンド root権限でFTPに接続できるように設定するFTPのコマンド WEBサーバ(apache) 参考 apacheのインストール yum install httpd 設定ファイルの編集 設定ファイルをいじるまえには,バックアップを取っておく. vim /etc/httpd/conf/httpd.conf 自動起動のオン chkconfig httpd on apacheの起動・停止・再起動 起動 /etc/rc.d/init.d/httpd start 停止 /etc/rc.d/init.d/httpd stop 再起動 /etc/rc.d/init.d/httpd restart ファイアウォールの設定 ファイアウォール設定ツールのインストール (すでにインストールされてたw) yum install system-config-firewall-tui system-config-firewall-tuiを起動 system-config-firewall-tui Customizeを選択 WWW(HTTP)をONにする Close⇒OK⇒YES 再起動する ここまで,設定を行ったあとに別のPCのブラウザからサーバにアクセスしてみる. http //192.168.2.103/ このページに表示されるのは以下のhtmlファイルの内容 /var/www/html/index.html PHPの環境構築 参考 インストールコマンド yum install php php-ldap php-mysql php-pear php-mbstring これだけで,httpdを再起動すれば一応の環境は構築される. PHPの設定は,/etc/php.iniを編集することで設定できるが,基本的にデフォルトのままでも問題ない(?) ftpサーバの構築 インストールコマンド yum -y install vsftpd これで,インストールが完了したらwindowsから接続可能 C \Users\ユーザ名 ftp 192.168.1.101 root権限でFTPに接続できるように設定する セキュリティを考えるとあまりよくないので,ローカル環境でのみ使用することを前提とする. 参考 ftpで接続しようとすると C \Users\toshiki ftp 192.168.1.101 192.168.2.103 に接続しました。 220 (vsFTPd 2.2.2) ユーザー (192.168.2.103 (none)) toshi 331 Please specify the password. パスワード 500 OOPS cannot change directory /home/toshi 500 OOPS child died 接続がリモート ホストによって閉じられました。 というエラーが出て接続できなかったため,SELinuxを無効にする. [root@centos /]# getenforce Enforcing [root@centos /]# setenforce usage setenforce [ Enforcing | Permissive | 1 | 0 ] [root@centos /]# setenforce Permissive FTPのコマンド FTPに使用するコマンドは,ターミナルで使用するものとあまり変わらない. 参考HP にコマンドリストがあるので,これを見ながら操作するか,helpコマンドによって操作の一覧を表示してもよい.
https://w.atwiki.jp/bemanilyrics/pages/562.html
[UK ASIAN] STEP INTO THE NEW WORLDL.E.D-G VS GUHROOVY fw NO+CHIN Ya-man! So now this one dedicated to da K.O.N.A.M.I. massive つまりコナミをこよなく愛するゲーマー諸君! Nuff respect big up! This original ragamuffin stylee 2004,mi name N.O.C.H.I.N. NO+CHIN DESU Alongside GUHROOVY crew, uno ready? Step up! I'm back again. Time to join da fight back. Asianstyle in da place be. Getting smaller smaller. Getting closer closer. it's a brandnew kalcha or civirisation. L・E・D bring da phat beat. Nobody beat us! Can you feel da heat. Here comes da trouble. Code name "G". L・E・D massive "G". Gonna get inside your mind. Once again time to taking to da stand. Don't miss it! Wach your step! Wach your move. It's gonna be GAMEOVER I'm gonna go peace out to my men. Get on up! Get on up! Take to da next level. I'm on da earth. You know the truth. Let me through. Tel me true. Give me two. Still hardcore crew. Step into the new world. Stop the war. Change the game but change your mind. Step into the new world. Stop the war. Now come everybody. Step into the new world. Stop the war. Change the game but change your mind. Step into the new world. Stop the war. Check the score. Check the score. Now all the world joint, this is a party time. Now everybody see the sings, before unu get left behind. Now all the world joint, this is ilre time. Now everybody see the sings, before unu get left behind. Everybody, move uno body Now all massive so, オシリをshake that thing Now everybody see the sings, before unu get left behind mind
https://w.atwiki.jp/ohden/pages/661.html
MSBuild Visual Studio 2013 Professional MSBuild 4 MSBuild tool http //www.microsoft.com/ja-jp/download/details.aspx?id=40760 とりあえず、何も考えんと使うなら...OSに付属のMSBuildを使えば良い。 コマンドプロンプトを開き、slnファイルのある場所にcdコマンドで移動して、MSBuildを実行するだけでok。 ただ、MSBuildを実行しただけだと1スレッドで順にbuildしていくが、『/m』付けて実行すると、マルチスレッドでbuildしてくれるみたい。 e.g.) cd c \wk\C#\Console[[Application]] C \[[Windows]]\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe 実行結果。 Microsoft (R) Build Engine バージョン 4.0.30319.34209 [Microsoft .NET Framework、バージョン 4.0.30319.34209] Copyright (C) Microsoft Corporation. All rights reserved. このソリューション内のプロジェクトを 1 度に 1 つずつビルドします。並行ビルドを有効にするには、"/m" スイッチを追加してください。 2015/05/13 19 07 01 にビルドを開始しました。 ノード 1 上のプロジェクト "c \wk\C#\ConsoleApplication\ConsoleApplication.sln" (既定のターゲット)。 ValidateSolutionConfiguration ソリューション構成 "Debug|Any CPU" をビルドしています。 プロジェクト "c \wk\C#\ConsoleApplication\ConsoleApplication.sln" (1) は、ノード 1 上に "c \wk\C#\ConsoleApplication\ConsoleApplication\ConsoleApplication.csproj" (2) をビルドしています ( 既定のターゲット)。 ResolveAssemblyReferences 状態ファイル "obj\Debug\ConsoleApplication.csprojResolveAssemblyReference.cache" を読み取ることができませんでした。この状態ファイルの形式は無効です。 GenerateTargetFrameworkMonikerAttribute すべての出力ファイルが入力ファイルに対して最新なので、ターゲット "GenerateTargetFrameworkMonikerAttribute" を省略します。 CoreCompile すべての出力ファイルが入力ファイルに対して最新なので、ターゲット "CoreCompile" を省略します。 _CopyAppConfigFile すべての出力ファイルが入力ファイルに対して最新なので、ターゲット "_CopyAppConfigFile" を省略します。 CopyFilesToOutputDirectory ConsoleApplication - c \wk\C#\ConsoleApplication\ConsoleApplication\bin\Debug\ConsoleApplication.exe プロジェクト "c \wk\C#\ConsoleApplication\ConsoleApplication\ConsoleApplication.csproj" (既定のターゲット) のビルドが完了しました。 プロジェクト "c \wk\C#\ConsoleApplication\ConsoleApplication.sln" (既定のターゲット) のビルドが完了しました。 ビルドに成功しました。 0 個の警告 0 エラー 経過時間 00 00 00.34 ~ tips ~ packageが勝手にdownloadされない CSharp/tools/MSBuild/tips/ 更新日: 2015年05月13日 (水) 19時14分57秒 名前 コメント すべてのコメントを見る
https://w.atwiki.jp/nekonomike/pages/454.html
#blognavi Here s the latest official blog entry. 最新の公式ブログ入力は、ここにあります。 "Hello again! And special thanks to Kelley, Mischa (love those music suggestions), and Jaydey. Again, we dig your style. 「こんにちは再び!そして、ケリー、ミーシャ(それらの音楽提案が好きです)とJaydeyのためのスペシャル。また、我々はあなたのスタイルを掘ります。 Today, we re going to break it up a bit 今日、我々は少しそれをバラバラにするつもりです: Here s Ashley アシュリーは、ここにいます: I slept in this morning because MK had a photo shoot, but I had the opportunity to do mine while I was in New York. I was excited for our afternoon Meet Greet with our fans and UK business partners. It s always fun to connect with the people who are helping make everything happen. Be sure to check out the photos of the adorable Girl Talk magazine winner and her best friend! MK が写真に撃たせたので、私は今朝に眠りました、しかし、私がニューヨークにいる間、私には私のものをする機会がありました。私は、我々のファンと英国ビジネスパートナーと我々の午後MeetとGreetのために興奮しました。それは、常に、すべてを起こらせるのを手伝っている人々とつなぐ楽しみです。必ず魅力的なGirl Talk誌勝者と彼女の親友の写真をチェックするようにしてください! Time to sign off...have lots of packing to do to get ready for our trip to Paris tomorrow. But first, here s the music I m listening to on this trip Paul Simon, Van Morisson and the Rolling Stones. 締める時間...明日パリへの我々の旅行に準備するためにするためにパックする多くを持ってください。しかし、最初に、私がこの旅行に関して聞いている音楽は、ここにあります:ポールサイモン、ヴァンMorissonとローリングストーンズ。 And, now, MK そして、現在、MK: I had an amazing photo shoot this morning! The team I worked with was lovely. I got to wear the most beautiful couture dresses by British designers. Directly after the shoot, I raced back to the hotel, changed clothes and was ready for our Meet Greet. It was a fun two hours meeting our fans and partners. I m exhausted. Until tomorrow... 私は、驚くべき写真を今朝撃ってもらいました!私が働いたチームは、かわいかったです。私は、英国のデザイナーによって最も美しい流行の先端を行くドレスを着なければなりません。直接撮影の後、私はホテルへ競争して、服を替えて、我々のMeetとGreetの準備ができていました。我々のファンとパートナーに会うことは、2時間、楽しみでした。私は疲れきります。明日まで... Rock on everybody. And keep those comments coming. We love reading your cool ideas! 誰の上にでも揺れてください。そして、それらのコメントを来させ続けてください。我々は、あなたのクールな考えを読むのが好きです! Mary-Kate, Ashley, and friends メアリー-ケイト、アシュリーと友人 And now for some photos..." さて、若干の写真のために... These are from their Girl Talk Meet Greet and the first one is Ashley with the winner and her best friend. The 3rd one is some of their books. これらは彼らのGirl Talk MeetとGreetからあります、そして、最初の人は勝者と彼女の親友と一緒のアシュリーです。第3のものは、彼らの本のいくつかです。 1 2 3 They fly commercial? Good thing the Transportation Security Administration allows junk food and trashy reading matter aboard airliners. A Lowdown spy spotted megarich 20-year-olds Ashley and Mary-Kate Olsen at JFK s Terminal 7, stocking up for a very long flight at a Hudson News the other day. "They took forever, buying a big bag of beef jerky, three large rolls of LifeSavers, two packs of gum and a copy of every tabloid magazine," says the spy. "They also totally blew off some guy in line. He asked one of them if they knew Nate someone or other. She said yes. He said, He s my roommate! He s a good guy. She didn t say anything else to him." The spy added that, for once, the pair was "not dressed like bag ladies." Transportation Security Administrationが大型旅客機に乗ってジャンクフードとくだらない読み物を許すという良いこと。Lowdownスパイはmegarich 20才のアシュリーとメアリー-ケイトオルセンをJFKのTerminal 7に配置しました。そして、先日ハドソンNewsで非常に長い飛行のために買い込みました。「彼らはひどく時間がかかりました。そして、1袋の大きい牛肉ジャーキー、3本の大きなLifeSavers、2パックのガムとあらゆる扇情的な雑誌のコピーを買いました」と、スパイが言います。「彼らも、一列に全く一部の人を吹き飛ばしました。彼は、彼らがネイト誰かか他を知っているかどうか、彼らのうちの1人に尋ねました。彼女は、はいと言いました。彼は言いました — 『彼は、私のルームメートです!彼は、善人です。』、彼女は彼に他に何かを言いませんでした。」と、一度だけは、一組が「ホームレスの女性のように服を着ていませんであったために、スパイが付け加えました。」 source:NY Daily News カテゴリ [Olsen News] - trackback- 2006年10月01日 13 17 56 名前 コメント #blognavi
https://w.atwiki.jp/cthulhuworksmemo/pages/587.html
2版以降は“Dark Wisdom Tales of the Old Ones”に改題されている。 作品形式 小説(洋書) 著者 Gary Myers 出版社 Mythos Books 初版発行日 2007?/?/? 収録作 The Web 面白いものを見つけたと友人のZachに呼び出されたKevinはWEBサイト「The Necronomicon」を見せられる。 サイトには様々な呪文が記されておりクリック一つで使用できるとあるが、どれもパラメーター不足で機能しない。Zachは最後にDoelの召喚をクリックする。 + 登場・言及 Old Ones Azathoth 混沌の中心から無限の全てを統べる最上位の神。 体は宇宙に存在する目視可能な全ての星でできており、顔は闇に覆われている。Azathothの顔には宇宙のあらゆる謎の答えが記されているとされる。 Shub-Niggurath Shub-Niggurathの月経周期に合わせて、地球生命の誕生と死が繰り返される。 Black Goat of the Woods Doel 無限の秘密を見つけ出すために時間・空間を掘り進む害虫。 Tsathoggua Great Cthulhu Yog-Sothoth Webサイト The Necronomicon H. P. Lovecraftが自身の創作内に登場させたことで近年有名となったAbdul Alhazredの著書の写本を、独自に翻訳したサイト。 人物 Kevin Zach H. P. Lovecraft Abdul Alhazred Slugs 警察からの逃走中、Jakeは開いたマンホールを見つけ下水道に逃げ込み他の出口を探す。 直進した先の上部に外に続く鉄格子を見つけたJakeはレンガの山を踏み台にしようと置かれていた小像を手に取る。 闇の中から物音が響き、耐えられないほどの腐臭が漂いJakeは小像を持ったまま入り口のマンホールにまで逃げ戻る。 + 登場・言及 devil、monsterなど Slugs Cthulhu アイテム statue 台座の上に座り込んだ、背中に蝙蝠に似た翼の生えた鱗状の肌の、顔から虫のような触手の生えた怪物の像。 人物 Jake Johnson Manny Green 質屋の店主。 Mother of Serpents 老人が住む休業中の宿屋に新婚の夫婦が訪れ宿泊を望む。老人は渋り女性がいることに気付くと表情が陰るが、交渉の末に2人を受け入れる。 深夜、妻Mariaが蛇が部屋中埋め尽くしていると夫Alonsoに訴えるが、Alonsoには何も見えず夢を見たのだと彼女を諭す。 + 登場・言及 怪物 Yig 人物など Alonso Maria Mother of Serpents Yigの女司祭の老女。100年に2人ほど、若い女性の夢の中に現れて命を奪い寿命を延ばす。 食事後、自らの皮膚を脱ぎ捨てて食らった女の姿に変わる。 Fast Food DennisはCarlとRonと共に職場の向かいに新装開店したBelial's Burgersに入店する。Dennisはハンバーガーから異臭を感じ取るが、友人たちはいい匂いだと述べる。 Belial's Burgersの業績は好調で1度でも入店した客は、他の飲食店には目もくれずにBelial's Burgersに通い続けるようになる。Dennisの職場の社員も彼を除く全員が常連となった。 + 登場・言及 怪物など invisible gelatin beast 土地・施設 Belial's Burgers 人物など Dennis Carl Ron その他 Yog-Sothoth Belial's Burgersのマッチ箱広告に書かれていた言葉。 Understudy Galactic Picturesの造形部門で働くDaveは、スーツが完成してからFish Manのデザインがボツになった愚痴を友人のTed Marshにこぼす。Tedはデザイン自体がそれほど良くなかったと返し、Daveも内心ではそう思ったため2人は沈黙する。 翌日、Tedが新たなFish Manのデザインをプロデューサーに提出。他のスタッフからも好評を博し採用される。DaveはTedの想像力を褒めるが、Tedは無表情になり実物を見て描いただけだと返す。 + 登場・言及 映画内の怪物 Fish Man デザインを担当したTed Marsh自身の容姿を誇張したような姿。スーツを着用した状態で水中を泳ぐのは困難。 土地 New England Tedの実家など貿易で財を成した名家が多数存在する。 人物など Dave Ted Marsh Daveの友人で同僚。目が飛び出て鼻が薄くカエルのような特異な容姿。 Frank Sellers 俳優。Fish Man役。 Asa Tedが連れてきた水中撮影時のFish Manの代役。撮影前から常時スーツを着ておりスタッフとも関わろうとしない。 Eve Capulet 女優。Fish Manの恋人役。 The Big Picture Tomが露店に展示されたスフィンクスの立体視が隠された絵画を見物し感心を抱いていると、「世界のパターンの中に宇宙の秘密が隠されているのに、インクの中に価値のないイメージを探すなど馬鹿馬鹿しい」と背後から老人に罵声を飛ばされる。 オフィスに戻ったTomは絵画と老人の言葉から絵の中のイメージのように、世界の中にもイメージが隠されていると考え、それを見出すことに固執するようになる。 + 登場・言及 人物など Tom old man Alhazred court of Azathothに立ち入ろうとした人間が受けた罰について警告していたとされる人物。 Omega Walter Kesslerは教え子のJoe Murphyを自宅に招き、積年の研究テーマであるHyperboreaの場所が現在のグリーンランドだと特定したと告げ、 都市は地下に埋もれたがVoormithadrethは未だ地上に聳え立ちHyperborea実在の証拠になると考え、志願者を集い有力な火山に調査に向かった顛末を語る。 + 登場・言及 Hyperborean gods Ubbo-Sathla Tsathoggua Atlach-Nacha 土地 Greenland HyperboreaCommorium Uzuldaroum Voormithadreth アイテム The Book of Eibon 人物 Walter Kessler Joe Murphy The Mask Leoは若者たちに襲われていた黒人の老人を助け出し家まで送り届ける。 老人は文明の衰退を研究テーマとした人類学者だと名乗り、富裕層からスラムまでありとあらゆる階層に紛れ込む闇の組織が人類を滅ぼそうとしていると主張する。 + 登場・言及 怪物など creatures 人間大の蟹もしくは蜘蛛に似た怪物。 組織など dogs of Hastur、slaves of the Yellow Sign 人物など Leo old man What Rough Beast ロサンゼルスに向かって車を走らせるMitchはヒッチハイクの妊婦Danielleを拾う。 Danielleは当初望まぬ妊娠をしてしばらく両親と離れる必要があると説明していたが、地元の田舎はカルト的な宗教が蔓延っており追っ手に捕まれば赤ちゃんが犠牲にされると明かす。 + 登場・言及 神など Shub-Niggurath Thousand Young 人物など Mitch Danielle Brother Angel The Nest 精神鑑定を受ける語り部は自身の正気を訴え、3ヶ月ぶりに活動を再開した連続殺人犯Skid Row Ghoulに関して証言する。 3ヶ月前、語り部とClarkは赤いレインコートの人物を見つけGhoul事件の警告をするため声をかけるが、レインコートの人物は持っていたカバンを2人にぶつけて逃走する。カバンの中からは人間の手足が転がり2人は彼がGhoulだと追跡を開始した。 + 登場・言及 人物など 語り部 勤務歴12年の勲章も授けられた優秀な警官。 Clark 語り部の相棒。 Skid Row Ghoul Skid Row近辺でホームレスや酔っ払いを襲う連続殺人犯。 Eliot 精神鑑定医。 From Inner Egypt Horror Show 友人の付き添いで入店したクラブで置き去りにされ居心地の悪さを感じていたLisaは、自身同様に場違いな男Aaronに声をかけられて共に別の店に向かう。 templeと呼ばれるその店の中で、奇妙なステージショーが始まる。 + 登場・言及 アイテムなど statue of a toad 人物など Lisa Aaron Miskatonic University柄のTシャツを着ている。 その他 N'kai K'n-yan Tsathoggua ショーの途中、スピーカーから流れた言葉。
https://w.atwiki.jp/api_programming/pages/132.html
Module Toybox WatchUi 下位ページ InputDelegate KeyEvent Picker View Content Module Toybox WatchUi直下のname space 定数プレス(Press) クリック(Click) スワイプ(Swipe) pushView/popView での遷移方法 (Transition) レイアウト (Layout) 関数(要約) WatchiUi 関数(詳細) WatchUi(Object) animate(drawable, property, type, start, stop, period, callback) (Object) initResources(rezModule) (Object) popView(transition) (Object) pushView(view, delegate, transition) ヴュースタックにヴューをプッシュする (Object) requestUpdate 現在のヴューの onUpdate() を呼び出す。 (Object) switchToView(view, delegate, transition) 現在のビューをポップし、新しいビューをプッシュする。 Module Toybox WatchUi watch apps のためのユーザーインターフェース Since 1.0.0 直下のname space ClassesBehaviorDelegate Bitmap BitmapResource, ClickEvent, Confirmation, ConfirmationDelegate, DataField, Drawable, FontResource, --InputDelegate KeyEvent, Menu, MenuInputDelegate, NumberPicker, NumberPickerDelegate, Picker, PickerDelegate, PickerFactory, ProgressBar, SimpleDataField, SwipeEvent, Text, TextPicker, TextPickerDelegate Connect IQ/APIメモ/Toybox/WatchUi/View WatchFace 定数 KEY_POWER = 0 The power key. Since 1.0.0 KEY_LIGHT = 1 The light key. Since 1.0.0 KEY_ZIN = 2 The zoom in key. Since 1.0.0 KEY_ZOUT = 3 The zoom out key. Since 1.0.0 KEY_ENTER = 4 The enter key. Since 1.0.0 KEY_ESC = 5 The escape key. Since 1.0.0 KEY_FIND = 6 The find key. Since 1.0.0 KEY_MENU = 7 The menu key. Since 1.0.0 KEY_DOWN = 8 The down key. Since 1.0.0 KEY_DOWN_LEFT = 9 The down left key. Since 1.0.0 KEY_DOWN_RIGHT = 10 The down key. Since 1.0.0 KEY_LEFT = 11 The left key. Since 1.0.0 KEY_RIGHT = 12 The right key. Since 1.0.0 KEY_UP = 13 The up key. Since 1.0.0 KEY_UP_LEFT = 14 The up-left. Since 1.0.0 KEY_UP_RIGHT = 15 The up-right key. Since 1.0.0 EXTENDED_KEYS = 16 The following keys have been added after ConnectIQ version 1.1.2. Before evaluating these keys, the test ( Toybox.WatchUi has EXTENDED_KEYS ) should be made. Since 1.1.2 KEY_PAGE = 17 The page key. Since 1.1.2 KEY_START = 18 The start key. Since 1.1.2 KEY_LAP = 19 The lap key. Since 1.1.2 KEY_RESET = 20 The reset key. Since 1.1.2 KEY_SPORT = 21 The sport key. Since 1.1.2 KEY_CLOCK = 22 The clock key. Since 1.1.2 KEY_MODE = 23 The mode key. Since 1.1.2 ANIM_TYPE_LINEAR = 0 Animate the property linearly, so the speed remains constant over time. Since 1.0.0 ANIM_TYPE_EASE_IN = 1 Animate the property so the speed increases until the end. Since 1.0.0 ANIM_TYPE_EASE_OUT = 2 Animate the property so the speed increases until the end. Since 1.0.0 ANIM_TYPE_EASE_IN_OUT = 3 Animate the property so there is a initial speed up and slow down at the end. Since 1.0.0 プレス(Press) PRESS_TYPE_DOWN = 0 Key is pressed down. Since 1.1.2 PRESS_TYPE_UP = 1 Key is released. Since 1.1.2 PRESS_TYPE_ACTION = 2 Key action is performed. Since 1.1.2 クリック(Click) CLICK_TYPE_TAP = 0 A quick press and release of the screen. Since 1.0.0 CLICK_TYPE_HOLD = 1 A press and hold of the screen. Since 1.0.0 CLICK_TYPE_RELEASE = 2 A release of a hold on the screen. Since 1.0.0 スワイプ(Swipe) SWIPE_UP = 0 A swipe in the upward direction. Since 1.0.0 SWIPE_RIGHT = 1 A swipe towards the right. Since 1.0.0 SWIPE_DOWN = 2 A swipe in the downward direction. Since 1.0.0 SWIPE_LEFT = 3 A swipe towards the left. Since 1.0.0 CONFIRM_NO = 0 . Since 1.0.0 CONFIRM_YES = 1 . Since 1.0.0 NUMBER_PICKER_DISTANCE = 0 A Float in meters. Since 1.0.0 NUMBER_PICKER_TIME = 1 A Duration. Since 1.0.0 NUMBER_PICKER_TIME_MIN_SEC = 2 A Duration. Since 1.0.0 NUMBER_PICKER_TIME_OF_DAY = 3 A Duration representing the number of seconds since midnight. Since 1.0.0 NUMBER_PICKER_WEIGHT = 4 A Float in kilograms. Since 1.0.0 NUMBER_PICKER_HEIGHT = 5 A Float in meters. Since 1.0.0 NUMBER_PICKER_CALORIES = 6 A Number. Since 1.0.0 NUMBER_PICKER_BIRTH_YEAR = 7 A Number. Since 1.0.0 pushView/popView での遷移方法 (Transition) SLIDE_IMMEDIATE = 0 No transition. Since 1.0.0 SLIDE_LEFT = 1 The View slides to the left. Since 1.0.0 SLIDE_RIGHT = 2 The View slides to the right. Since 1.0.0 SLIDE_DOWN = 3 The View slides down. Since 1.0.0 SLIDE_UP = 4 The View slides up. Since 1.0.0 レイアウト (Layout) LAYOUT_VALIGN_TOP = -0x7FFFFFFF Set a Drawable s locY property to this to align it to the top edge of the dc. Since 1.2.0 LAYOUT_VALIGN_BOTTOM = -0x7FFFFFFE Set a Drawable s locY property to this to align it to the bottom edge of the dc. Since 1.2.0 LAYOUT_VALIGN_CENTER = -0x7FFFFFFD Set a Drawable s locY property to this to center it vertically in the dc. Since 1.2.0 LAYOUT_VALIGN_START = -0x7FFFFFFC Set the Drawable s locY property equal to it s parent s locY property. Since 1.2.0 LAYOUT_HALIGN_LEFT = -0x7FFFFFFF Set a Drawable s locX property to this to align it along the left edge of the dc. Since 1.2.0 LAYOUT_HALIGN_RIGHT = -0x7FFFFFFE Set a Drawable s locX property to this to align it along the right edge of the dc. Since 1.2.0 LAYOUT_HALIGN_CENTER = -0x7FFFFFFD Set a Drawable s locX property to this to center it horizontally in the dc. Since 1.2.0 LAYOUT_HALIGN_START = -0x7FFFFFFC Set a Drawable s locX property equal to it s parent s locX property. Since 1.2.0 関数(要約) WatchiUi (Object) animate(drawable, property, type, start, stop, period, callback) Use animate() to animate a property over a given period of time. (Object) initResources(rezModule) (Object) loadResource(resource) Load a resource from the executable with loadResource(). (Object) popView(transition) Pop a View from the View stack with popView(). (Object) pushView(view, delegate, transition) Push a View onto the View stack with pushView(). (Object) requestUpdate Use requestUpdate() to request that onUpdate() method be called for the current View. (Object) switchToView(view, delegate, transition) Use switchToView() to pop the current View and push the new one. 関数(詳細) WatchUi (Object) animate(drawable, property, type, start, stop, period, callback) Use animate() to animate a property over a given period of time. The animation starts after the call and runs the length of the specified period. During this time the View s draw callback will be called. Parametersdrawable (Drawable) Drawable to animate property (Symbol) Symbol of property to animate over time type Toybox.WatchUi.ANIM_TYPE_* value start (Number) Initial value of property stop (Number) Final value of property after animation period (Float) Time in seconds for animation to run callback (Method) Method object to call when complete, or null Since 1.0.0 (Object) initResources(rezModule) Since 1.0.0 (Object) loadResource(resource) Load a resource from the executable with loadResource(). Parameters resource (Symbol) — Rez identifier from resources.xml to load Returns A Font, Bitmap, or String resource Since 1.0.0 (Object) popView(transition) Pop a View from the View stack with popView(). Parameterstransition View transition of type SLIDE_* Since 1.0.0 (Object) pushView(view, delegate, transition) ヴュースタックにヴューをプッシュする Parametersview (View) View to push delegate The input delegate to handle input for the View transition View transition of type SLIDE_* Since 1.0.0 (Object) requestUpdate 現在のヴューの onUpdate() を呼び出す。 Since 1.0.0 (Object) switchToView(view, delegate, transition) 現在のビューをポップし、新しいビューをプッシュする。 ネイティブビューは入力値としては渡されない。つまり、ノンネイティブビューへのスイッチのみサポートしている。 Parametersview (View) View object to push delegate the input delegate to handle input for the View transition View transition of type SLIDE_* Since 1.0.0
https://w.atwiki.jp/yupon/pages/7.html
GOLD 夢殿りさ (セイヨーメール) 森川智之×結城比呂 わりと古い作品だからか、まだあんまり森川氏とピロがBL慣れしてないように思いました 原作読んでいないのですが、CDと原作ではだいぶ話が違うようでした フリートークで原作者が登場するパターンって、実際どれくらいあるんでしょう・・・? 原作者の名前くらいならそんなに珍しくはないように思うんですけどね。 フリートークで原作者が出てきたことがすごく印象に残ってしまいました・・・笑
https://w.atwiki.jp/ypen/pages/61.html
China, Russia express concern over N.Korea s tests The Chinese and Russian chief negotiators to the six-party talks on North Korea s nuclear program have expressed concern over the North s latest missile launch. Chinese Vice Foreign Minister Wu Dawei, chairman of the six-party talks, met with Russian Deputy Foreign Minister Alexei Borodavkin in Moscow on Saturday. The Russian Foreign Ministry says that the two officials agree that a worsening military and political situation in Northeast Asia is a cause for concern. The two officials are quoted as saying that tension is so high on the Korean Peninsula that it could lead to an arms race, which would jeopardize the region s security. They also called on Japan and other members of the six-party talks to act calmly. Biden US diplomats will help bring peace to Iraq US Vice President Joe Biden says that US assistance for Iraq will shift to the country s political stability now that US troops have withdrawn from Iraqi cities. Biden celebrated the Fourth of July with his son and other American troops in Baghdad on Saturday, one day after he met the Iraqi Prime Minister and other leaders. Speaking to a group of US soldiers, Biden hailed their efforts to hand over security to Iraqi forces. US troops pulled out of Iraqi cities this week as part of a security pact that calls for a full withdrawal by the end of 2011. Biden then said that for a lasting peace in Iraq, US diplomats will focus on bringing the country s divided factions together to achieve national reconciliation. Iran indicts British embassy staff, reformers Iran has indicted a British embassy employee and key reformist leaders who have been under detention since protests began over the country s disputed presidential election. Their lawyers say the indicted are accused of acting against national security. But the lawyers also say no other details are available. The British embassy worker is one of 9 local staff members now in detention for alleged involvement in a series of protests that began after the June 12th election. The reformist leaders include key figures who served under former president Mohammad Khatami. Among them are former vice president Mohammad Ali Abtahi and former deputy foreign minister Mohsen Aminzadeh. In its editorial in the Saturday edition, the conservative daily newspaper Kayhan criticized Khatami and opposition leader Mir Hossein Mousavi, who ran against President Mahmoud Ahmadinejad. The editorial called for them to be tried in court for what it calls horrible crimes and treason. At least 20 people died in clashes between security forces and demonstrators. President Ahmadinejad was declared the winner by a landslide. Public buying of bank-held shares soared in June A Japanese public corporation bought nearly 60 times the amount of bank-held shares in June compared to the figure a month ago in a bid to prop up the stock market. The Banks Shareholdings Purchase Corporation has been purchasing shares from financial institutions since March to help prevent further stock index declines. The corporation says it bought shares worth 824 million dollars last month, nearly 60 times the amount it purchased in May, amid rising share prices. The Nikkei average hovered below 8,000 points in the spring, when the corporation s effort started. Last month, the key index briefly surpassed 10,000 points on hopes of Japan s economic prospects, which prompted selling of bank-held shares. The corporation will also start buying exchange-traded funds and real estate investment trusts this month. The Financial Services Agency says Japanese shares are on a recovery track, but bank performance and financial strength are still highly vulnerable to the movement of share prices. The agency is calling on financial institutions to further utilize the corporation.
https://w.atwiki.jp/poupeewiki/pages/1102.html
泉・投稿アイテムの新作2011-2012 -2011-2012- -2013- 2012.12.14 投稿限定アイテム ツイードドレスコート/12L - スクエアトゥパンプス/12L◆- お花カプリーヌ/12L - 2012.12.07 キャサリンからのプレゼント X masランジェリー/bk12L - X masランジェリー/bk212L - X masランジェリー/bl12L - X masランジェリー/br12L - X masランジェリー/br212L- X masランジェリー/gn12L - X masランジェリー/pk12L - X masランジェリー/pk212L - X masランジェリー/pr12L - X masランジェリー/pr212L - X masランジェリー/rd12L - X masランジェリー/rd212L - X masランジェリー/wh12L - X masランジェリー/yw12L - 2012.12.06 ファー襟裾ニットワンピ/12L Fur collar knit dress/12L プチリボンニーソックス/12LMini ribbon knee high socks/12L ファーキルティングバッグ/12LFur quilting bag/12L 2012.11.05 ドットスカートワンピ/12K - ミミ付ハット/12K - リボンマフラー/12K- 2012.11.05 投稿限定アイテム クロスチャームワンピ/12KCross charm dress/12K トラッドシューズ/12KTrad shoes/12K ストライプダブルリボン/12K Stripe double ribbon/12K 2012.10.18 おばけちゃんピアス/12J◆Ghost earrings/12J かぼちゃんネックレス/12J◆Pumpkin necklace/12J おばけちゃんリボン/12J◆Ghost ribbon hairaccessory/12J 2012.10.15-2012.11.01 キャサリンからのプレゼント ハロウィンキャンディ/or12J◆- ハロウィンキャンディ/pr12J◆- ハロウィンキャンディ/wh12J◆- 2012.10.05 お洋服投稿アイテム 肩スタッズワンピ/12JShoulder studded dress/12J 2パターンドットターバン/12JTwo pattern dot turban/12J スモーキーカラーポーチ/12Jsmoky color porch/12J 2012.09.27-10.05 ペイントエプロン/12Ipaint apron/12I 新しい楽譜/12I◆Music Score/12I お菓子のレシピ本/12I◆Desserts Cookbook/12I 2012.09.13-09.24 キャサリンからのプレゼント シンプルミッキーT/12I◆Simple Mickey T-shirt/12I シンプルミニーT/12I◆Simple Minnie T-shirt/12I シンプルドナルドT/12I◆Simple Donald T-shirt/12I 2012.09.07 ロングジャケット/12ILong jacket/12I ペプラムロンパース/12IPeplum dress/12I ストライプオーバーニー/12I Stripe knee high/12I ねこちゃんペンダント/12I◆ Cat necklace/12I 先っちょメタルブーツ/12IMetallic short boots/12I ねこヒゲ刺繍リボン/12ICat whiskers Ribbon/12I 2012.09.07 お洋服投稿用アイテム でかスタジャン/12I- ねこちゃんワンピ/12ICat dress/12I ゴールドソールシューズ/12I Gold sole shoes/12I 2012.08.23 蝶々ブローチ/12H◆Butterfly brooch/12H 蝶々ステッキ/12HButterfly stick/12H 花束/12H◆Bouquet/12H 2012.08.13 リボンタイ付シャツ/wh12HRibbon neck-tie shirt/wh12H ゆったりサロペット/bg12HBig overalls/bg12H ワッペン付スリッポン/wh12H emblem slip on/wh12H 2012.08.10-08.13 茶屋娘の下駄/12HGirl-the-tea-store Frip Flop/12H 茶屋娘の髪留め/pk12HGirl-the-tea-store Hair pin/pk12H 茶屋娘の髪留め/rd12HGirl-the-tea-store Hair pin/rd12H 茶屋娘の着物/bl12H Girl-the-tea-store Kimono/bl12H 茶屋娘の着物/pk12H Girl-the-tea-store Kimono/pk12H 茶屋娘の着物/pr12H Girl-the-tea-store Kimono/pr12H 2012.08.01 手持ちひまわり/12HSunflower/12H 巾着-とんぼ/bl12H Purse-Dragonfly/bl12H 巾着-とんぼ/rd12H Purse-Dragonfly/rd12H 甚平-とんぼ/bl12H Jinbei-Doragonfly/bl12H 甚平-とんぼ/rd12H Jinbei-Doragonfly/rd12H 2012.07.26 シンプルカットソー/bl12GSimple cut sew/bl12G シンプルカットソー/gn12GSimple cut sew/gn12G シンプルカットソー/nv12GSimple cut sew/nv12G シンプルカットソー/pk12GSimple cut sew/pk12G シンプルカットソー/pr12G Simple cut sew/pr12G シンプルカットソー/rd12GSimple cut sew/rd12G ボーダーカットソー/bk12GBorder cut sew/br12G ボーダーカットソー/br12GBorder cut sew/br12G ボーダーカットソー/bl12GBorder cut sew/bl12G ボーダーカットソー/gn12GBorder cut sew/gn12G ボーダーカットソー/rd12G Border cut sew/rd12G ボーダーカットソー/wh12GBorder cut sew/wh12G ベアトップ/bg12G Tube Top/bg12G ベアトップ/bk12GTube Top/bk12G ベアトップ/bl12GTube Top/bl12G ベアトップ/gn12GTube Top/gn12G ベアトップ/gr12GTube Top/gn12G ベアトップ/pk12GTube Top/pk12G シンプルショートパンツ/bk12GSimple short pants/bk12G シンプルショートパンツ/br12GSimple short pants/br12G シンプルショートパンツ/gn12GSimple short pants/gn12G シンプルショートパンツ/nv12GSimple short pants/nv12G シンプルショートパンツ/pk12GSimple short pants/pk12G シンプルショートパンツ/wh12G Simple short pants/wh12G スウェットマキシワンピ/bk12GSweat maxi dress /bk12G スウェットマキシワンピ/gr12GSweat maxi dress /gr12G スウェットマキシワンピ/gn12GSweat maxi dress/gn12G スウェットマキシワンピ/nv12GSweat maxi dress /nv12G スウェットマキシワンピ/wh12GSweat maxi dress /wh12G スウェットボーダーワンピ/12GSweat border dress/12G カラータイツ/bl12GCollar tights/bl12G カラータイツ/gn12G Collar tights/gn12G カラータイツ/or12G Collar tights/or12G カラータイツ/pk12GCollar tights/pk12G カラータイツ/pr12G Collar tights/pr12G カラータイツ/yw12GCollar tights/yw12G 2012.07.09 キャサリンからのプレゼント 腕-蝶々タトゥ/12G◆- 足-薔薇タトゥ/12G◆- タトゥアンクレット/12G◆ - 2012.07.06 夏休みアイテム 無地Tシャツ/wh12GWhite T-shirt/wh12G デニムハーフパンツ/nv12G Denim half pants/nv12G シンプルビーサン/rd12G simple beach sandal/rd12G シンプル麦藁帽子/12G Simple straw hat/12G 虫かご/12GInsect cage/12G 虫取り網/12GInsect-net/12G 2012.07.05 七夕アイテム おりひめの着物/12G★ Youngest princess kimono/12G ひこぼしの着物/12G★Hikoboshi kimono/12G ひこぼしの星のくつ/12GHikoboshi star shoes/12G おりひめのりぼん/12G Youngest princess ribbon/12G おりひめの羽衣/12GYoungest princess stole/12G おほしさま付き笹/12G bamboo leafs with stars/12G ミルキーウェイ/12G◆Milky way/12G 2012.07.04 洋服投稿アイテム ドットスカーフワンピ/12GDot scarf dress/12G 2012.06.04 キャサリンからのプレゼント サムシングブルーガーター/12FSomething Blue garter/12F サムシングオールドピアス/12F◆Something Old earrings/12F サムシングボロウグローブ/12F◆Something Borrow gloves/12F サムシングニューリップ/12FSomething New lip stick/12F 2012.06.04 キューピッドワンピ/12FCupid s dress/12F ハートのブーケ/12F◆Heart bouquet/12F キューピッドの弓矢/12FCupid s bow arrow/12F 2012.06.04 ? 小花柄フリルスカート/12FFlower frill skirt//12F ? 2012.05.18 てるてるワンピ/12EJapanese paper doll dress/12E 雨模様タイツ/12E Rainy design tights/12E てるてるピアス/12E◆Funny Japanese paper doll/12E てるてるバレッタ/12E◆paper doll barrette/12E てるてるもへじ/12E◆Funny Japanese paper doll/12E 雨降りてるてる/12E◆Paper doll with rainy cloud/12E 2012.03.29 エイプリルフリルリボン/bg12D April Fool s ribbon/bg12D エイプリルフリルリボン/bk12D April Fool s ribbon/bk12D エイプリルフリルリボン/bl12D April Fool s ribbon/bl12D エイプリルフリルリボン/br12D April Fool s ribbon/br12D エイプリルフリルリボン/gn12D April Fool s ribbon/gn12D エイプリルフリルリボン/gr12D April Fool s ribbon/gr12D エイプリルフリルリボン/kh12D April Fool s ribbon/kh12D エイプリルフリルリボン/nv12D April Fool s ribbon/nv12D エイプリルフリルリボン/or12D April Fool s ribbon/or12D エイプリルフリルリボン/pk12D April Fool s ribbon/pk12D エイプリルフリルリボン/pr12D April Fool s ribbon/pr12D エイプリルフリルリボン/rd12D April Fool s ribbon/rd12D エイプリルフリルリボン/wh12D April Fool s ribbon/wh12D エイプリルフリルリボン/yw12D April Fool s ribbon/yw12D 2012.02.23 キャサリンからのプレゼント 5周年バルーン/bl12B 5th anniversary balloon/bl12B 5周年バルーン/rd12B5th anniversary balloon/rd12B 5周年バルーン/wh12B5th anniversary balloon/wh12B 2011.12.26 お掃除エプロン/11LCleaning apron/11L はりねずみ掃除スリッパ/11L Hedgehog cleaning slippers/11L まとめ髪ヘアバンド/11LTight-up hair band/11L お掃除モップ/11LCleaning mop/11L お掃除バケツ/11L◆Cleaning bucket/11L 2011.12.22 キャサリンからのプレゼント X masランジェリー/bk11L X mas lingerie/bk11L X masランジェリー/bl11L X mas lingerie/bl11L X masランジェリー/bl211L X mas lingerie/bl211L X masランジェリー/br11L X mas lingerie/br11L X masランジェリー/gn11L X mas lingerie/gn11L X masランジェリー/or11L X mas lingerie/or11L X masランジェリー/pk11L X mas lingerie/pk11L X masランジェリー/pk211L X mas lingerie/pk211L X masランジェリー/pr11L X mas lingerie/pr11L X masランジェリー/pr211L X mas lingerie/pr211L X masランジェリー/rd11L X mas lingerie/rd11L X masランジェリー/rd211L X mas lingerie/rd211L X masランジェリー/wh11L◆X mas lingerie/wh11L X masランジェリー/yw11L X mas lingerie/yw11L 2011.12.09 おうちショルダー/11LHouse design shoulder bag/11L 雪の結晶ブレス/11LSnow flake bracelet/11L 雪の結晶ヘアアクセ/11LSnow flake hair accessory/11L 2011.11.11キャサリンからのプレゼント開封 丸えりジャケット/11K Round collar jaket11K 丸襟フリルトップス/11KRound collar frill tops/11K お花刺繍スカート/11K Flower embroidery skirt/11K ふんわりキュロットパンツ/11KPuff short pants/11K リボンワンピース/11KRibbon dress/11K ガーリーリボンバッグ/11K Girly ribbon bag/11K ファーストピアス/11K◆First earrings/11K ワンストラップパンプス/11K One strap sandals/11K ミニリボンカチューシャ/11K Mini ribbon headband/11K 2011.11.11 初期アイテム追加 シンプルリボンキャミ/11K Simple ribbon cami/11K (初期アイテム) シンプルベルト/11KSimple belt/11K(初期アイテム) 2011.11.02 キャサリンからのプレゼント A special gift from Katharine 変化アイテム/着用不可 2011.10.03 ハロウィンリボンちゃん/11JHalloween ribbon/11J おばけステッキ/11J◆Ghost stic/11J ハロウィンバスケット/11J◆Halloween basketa/11J 2011.07.06 織姫ドレス/11G Youngest princess dress/11G 織姫リボン/11G◆Youngest princess ribbon/11G 天女の羽衣/11G◆Heavenly maiden robe/11G 願い事ブレス/11G◆Wish bracelet/11G あんどん/11G Andon/11G 夏の星座/11G - 2011.07.04 透かし編みサマーニット/bk11G - 透かし編みサマーニット/br11G - 透かし編みサマーニット/wh11G◆- レースコットンチュニック/gn11G - レースコットンチュニック/gr11G - レースコットンチュニック/wh11G - 渡り鳥柄ワンピ/bl11G - 渡り鳥柄ワンピ/pk11G - 渡り鳥柄ワンピ/wh11G - トライアングルサロペ/bk11G - トライアングルサロペ/gr11G - トライアングルサロペ/wh11G - トライアングルサロペ/yw11G - シック花柄パギンス/bk11G - シック花柄パギンス/gr11G - シック花柄パギンス/pk11G - 2011.06.20 キャサリンからのプレゼント ウエディングオブジェ/bl11F◆Preserved flowers/bl11F ウエディングオブジェ/pk11F◆Preserved flowers/pk11F ウエディングオブジェ/rd11F◆Preserved flowers/rd11F 2011.04.25 キャサリンからのプレゼント 100万人おめでとう風船/pr11D One-million-friends balloons/pr11D 100万人おめでとう風船/rd11D One-million-friends balloons/rd11D 100万人おめでとう風船/wh11D One-million-friends balloons/wh11D 2011.04.01 エイプリルフリルリボン/bk11D April Fool s ribbon/bk11D エイプリルフリルリボン/bl11D April Fool s ribbon/bl11D エイプリルフリルリボン/br11D April Fool s ribbon/br11D エイプリルフリルリボン/gn11D April Fool s ribbon/gn11D エイプリルフリルリボン/gr11D April Fool s ribbon/gr11D エイプリルフリルリボン/pk11D April Fool s ribbon/pk11D エイプリルフリルリボン/pr11D April Fool s ribbon/pr11D エイプリルフリルリボン/rd11D April Fool s ribbon/rd11D エイプリルフリルリボン/wh11D April Fool s ribbon/wh11D エイプリルフリルリボン/yw11D April Fool s ribbon/yw11D エイプリンフール/11D◆April Fool s pudding/11D
https://w.atwiki.jp/englishnetwork/pages/20.html
News source News in America TV CNN (http //edition.cnn.com/) ABC (http //abcnews.go.com/) CBS (http //www.cbsnews.com/) msnbc.com (http //www.msnbc.com/) PBS Online NewsHour (http //www.pbs.org/newshour/) Fox News (http //www.foxnews.com/) Reuters (http //www.reuters.com/) NBC (http //www.nbc.com/) AP Associated Press (http //www.ap.org/) Fox News (http //www.foxnews.com/) Google News (http //news.google.com/) New York Times (http //www.nytimes.com/) Reuters (http //www.reuters.com/) Radio VOA News (http //www.voanews.com/) National Public Radio (http //www.npr.org/) Newspaper USA Today (http //www.usatoday.com/) New York Times (http //www.nytimes.com/) Los Angeles Times (http //www.latimes.com/) Washington Post (http //www.washingtonpost.com/) Wall Street Journal (http //online.wsj.com/) Daily News (http //www.nydailynews.com/) Time (http //time.com/) UPI (http //www.upi.com/) Businessweek (http //www.businessweek.com/) Economist (http //www.economist.com/) Forbes (http //www.forbes.com/) Life (http //life.time.com/) National Geographic (http //www.nationalgeographic.com/) Readers Digest (http //www.rd.com/) U.S. News (http //www.usnews.com/) Tokyo Notice Board (http //www.tokyonoticeboard.co.jp/) General Yahoo News (http //news.yahoo.com/) The Huffington Post (http //www.huffingtonpost.com/) News in the U.K. TV BBC (http //www.bbc.com/news/) ITV (http //www.itv.com/news/) Channel 4 (http //www.channel4.com/news/) Newspaper Times Online (http //www.thesundaytimes.co.uk/) Telegraph (http //www.telegraph.co.uk/) Guardian (http //www.theguardian.com/uk/) Independent (http //www.independent.co.uk/) Yahoo News UK Ireland (https //uk.news.yahoo.com/) Daily Star (http //www.dailystar.co.uk/) Daily Mirror (http //www.mirror.co.uk/) Daily Record (http //www.dailyrecord.co.uk/) The Sun (http //www.dailyrecord.co.uk/) Daily Mail (http //www.dailymail.co.uk/home/index.html) Daily Express (http //www.express.co.uk/) Morning Star (http //www.morningstaronline.co.uk/) Scotsman (http //www.scotsman.com/) The Times (http //www.thetimes.co.uk/tto/news/) News in Canada TV CBC (http //www.cbc.ca/news) CTV (http //www.ctvnews.ca/) canada.com (http //o.canada.com/category/news/) Newspaper Globe and Mail (http //www.theglobeandmail.com/) TheStar.com (http //www.thestar.com/) National Post (http //www.nationalpost.com/index.html) Yahoo.Canada (https //ca.news.yahoo.com/) News in Australia TV ABC.net.au (http //www.abc.net.au/news/) Australia Network (http //www.abc.net.au/news/australianetworknews/) Newspaper The Australian (http //www.theaustralian.com.au/) Herald Sun(http //www.heraldsun.com.au/) Sydney Morning Herald (http //www.smh.com.au/) Yahoo7 News (https //au.news.yahoo.com/) News in Other Parts of the World, General News Aljazeera (http //www.aljazeera.com/) Newsum Today’s Front Pages (http //www.newseum.org/todaysfrontpages/default.asp) National Geographic News (http //news.nationalgeographic.com/news/) The Onion (http //www.theonion.com/) Anime News Network (http //www.animenewsnetwork.com/) Fortean Times (http //www.forteantimes.com/) Learning English (learningenglish.voanews.com) Democracy Now! (http //www.democracynow.org/) wwiTV (wwitv.com) FREETV (freetv.com) Radio Live Radio and Television from Around the World (broadcast-live.com) Radio-Locator (radio-rocator.com) Democracy Now (http //www.democracynow.org/) News in Japan NHK World (http //www3.nhk.or.jp/nhkworld/index.html) The Japan Times (http //www.japantimes.co.jp/) The Japan News by Yomiuri Shimbun (http //the-japan-news.com/) The Japan Times ST (http //st.japantimes.co.jp/ (http //st.japantimes.co.jp/) Asahi Shimbun (http //www.asahi.com/english/) The Mainichi Daily News (http //mainichi.jp/english/) JIJI Press (http //jen.jiji.com/) Japan Today (http //www.japantoday.com/) NHK World Daily News (www.nhk.or.jp/daily/english) Radio Japan Online (www.nhk.or.jp/rj) E-News Today (http //homepage2.nifty.com/e-newstoday/) News On Japan (http //www.newsonjapan.com/) NHK World English (http //www3.nhk.or.jp/nhkworld/english/news/) E-News Today (http //homepage2.nifty.com/e-newstoday/) Tokyo Notice Board (http //www.tokyonoticeboard.co.jp/) For Students Scholastic (http //magazines.scholastic.com/) PBS News Hour Extra (http //www.pbs.org/newshour/extra/) Time for Kids (http //www.timeforkids.com/) CNN Student News (http //edition.cnn.com/studentnews/) First News Chidren’s Newspaper (http //www.firstnews.co.uk/index) Learning English (http //learningenglish.voanews.com/)