約 2,389,304 件
https://w.atwiki.jp/wnt0/pages/25.html
#include iostream #include string using namespace std; class Product { public void Append(const string str) { m_string.append(str); } void Output() { cout m_string.c_str() endl; } private string m_string; }; class Builder { public virtual Product* GetResult() = 0; protected friend class Director; virtual void Build_A() = 0; virtual void Build_B() = 0; virtual void Build_C() = 0; }; class A_Builder public Builder { public A_Builder() { m_product = new Product; } ~A_Builder() { delete m_product; } virtual Product* GetResult() { return m_product; } protected virtual void Build_A() { m_product- Append("A"); } virtual void Build_B() { m_product- Append("B"); } virtual void Build_C() { m_product- Append("C"); } private Product *m_product; }; class a_Builder public Builder { public a_Builder() { m_product = new Product; } ~a_Builder() { delete m_product; } virtual Product* GetResult() { return m_product; } protected virtual void Build_A() { m_product- Append("a"); } virtual void Build_B() { m_product- Append("b"); } virtual void Build_C() { m_product- Append("c"); } private Product *m_product; }; class Director { public void Construct(Builder *builder) { builder- Build_A(); builder- Build_B(); builder- Build_C(); } }; int main(int argc, char **argv) { Director director; Builder *builder; if (argc == 1) { builder = new A_Builder; } else { builder = new a_Builder; } director.Construct(builder); Product *product = builder- GetResult(); product- Output(); delete builder; return 0; } 参考サイト デザインパターンを“喩え話”で分かり易く理解する http //www.netlaputa.ne.jp/~hijk/study/oo/designpattern.html TECHSCORE http //www.techscore.com/tech/DesignPattern/index.html/ Programing Place http //www.geocities.jp/ky_webid/index_old.html デザインパターンの骸骨たち http //www002.upp.so-net.ne.jp/ys_oota/mdp/ デザインパターンの使い方 Builder http //japan.internet.com/developer/20081014/26.html
https://w.atwiki.jp/wiki3_nab/pages/10.html
概要 mltermはX用のターミナルエミュレータの一つ。日本語表示、日本語入力、背景透過、複数端末対応など機能がたくさん。 手順/メモ 1)インストール # cd /usr/ports/x11/mlterm # make install clean 2)設定 ~/.mlterm/main フォントサイズと色の設定。行間を1ドットいれてます。 # [[font]] color fontsize=12 fg_color=#ffffff bg_color=#000000 cursor_fg_color=#000000 cursor_bg_color=#ffffff line_space = 1 背景を透過。 # graphic borderless=true use_transbg = true wall_picture = スクロールバーは非表示。 # scrollbar use_scrollbar = false ベルは無視。IMはuimを使用。 # other bel_mode = none use_xim = false input_method = uim logsize = 128 #brightness = 50 #contrast = 50 ~/.mlterm/color どこだったかのサイトのをベースに変更。デフォルトよりは見易いかと。。。 green=#33ff33 hl_green=#33ff33 blue=#1144ff hl_blue=#6699ff yellow=#ffd314 hl_yellow=#ffd314 magenta=#ff4fdf hl_magenta=#ff4fdf red=#ff3333 hl_red=#ff3333 ~/.mlterm/font mplusfontを使用。 DEC_SPECIAL = 10,mplus_j10r-iso;12,mplus_j12r-iso; ISO8859_1 = 10,mplus_j10r-iso;11,mplus_f10r;12,mplus_j12r-iso; ISO8859_1_BOLD = 10,mplus_j10b-iso;11,mplus_f10b;12,mplus_j12b-iso; JISX0201_KATA = 10,mplus_j10r-jisx;12,mplus_j12r-jisx; JISX0201_KATA_BOLD = 10,mplus_j10b-jisx;12,mplus_j12b-jisx; JISX0201_ROMAN = 10,mplus_j10r-jisx;12,mplus_j12r-jisx; JISX0201_ROMAN_BOLD = 10,mplus_j10b-jisx;12,mplus_j12b-jisx; JISX0208_1983 = \ 10,-mplus-gothic-medium-r-normal--10-100-75-75-c-100-jisx0208.1983-0; \ 12,-mplus-gothic-medium-r-normal--12-120-75-75-c-120-jisx0208.1983-0; JISX0208_1983_BOLD = \ 10,-mplus-gothic-bold-r-normal--10-100-75-75-c-100-jisx0208.1983-0; \ 12,-mplus-gothic-bold-r-normal--12-120-75-75-c-120-jisx0208.1983-0; JISX0208_1990 = 10,mplus_j10r;12,mplus_j12r; JISX0208_1990_BOLD = 10,mplus_j10b;12,mplus_j12b; うーんと、上記設定でうまくいかない場合、以下のようにすればいけた。参考まで。。。 ISO8859_1 = mplus_f12r-iso; ISO8859_1_BOLD = mplus_f12b-iso; JISX0201_KATA = mplus_f12r-jisx; JISX0201_KATA_BOLD = mplus_f12b-jisx; JISX0201_ROMAN = mplus_f12r-jisx; JISX0208_1983 = mplus_j12r; JISX0208_1983_BOLD = mplus_j12b; ~/.mlterm/termcap デフォルトのをそのまま使用。 mlterm \ kD=\E[3~ kb=^? xterm|rxvt \ kD=^? kb=^H ut * \ kD=^? kb=^H ~/.mlterm/key 今は何もいじってない。必要に応じて変更。 # Shift+space=IM_HOTKEY # Control+F1=OPEN_SCREEN # Control+Return=OPEN_SCREEN # Control+F2=OPEN_PTY # Control+F3=NEXT_PTY # Control+F4=PREV_PTY # Shift+Prior=PAGE_UP # Shift+Up=SCROLL_UP # Shift+Insert=INSERT_SELECTION # UNUSED=INIT_PARSER # UNUSED=EXIT_PROGRAM # Control+F5="HELLO WORLD" # Control+F6="proto font_size=12;encoding=utf8" # Control+F7="proto input_method=iiimf ja" えと、F1~F4キーが遠いので少し変更 Control+1=OPEN_SCREEN Control+2=OPEN_PTY Control+3=NEXT_PTY Control+4=PREV_PTY 3)操作 起動は普通にmlterm Ctrl+F1(デフォルト)でもう一個端末が作成される 上記設定で日本語の扱い、uim+anthyでの日本語入力も問題なくできる GUIの設定画面はCtrlキーを押しながら右クリックで表示される 環境 Panasonic CF-R3 FreeBSD 6.0-Release
https://w.atwiki.jp/mgoserver/pages/7.html
newworld ○newworldはworldとは別のワールドである。 ○newworldはworldとは違って削除されることはない。 ○newworldは建築、経済、整地など、生活する為のワールドである。 ○アイテムのロストは無し。死んでもドロップしない(プレーヤー同士のアイテム盗難を防ぐため) ○クリーパーは爆発し、プレーヤー又はMOBはダメージを受けるがブロック破壊はしない。 ○TNTは爆発しプレーヤー又はMOBはダメージを受けるがブロック破壊はしない。 ○リスポ設定はベッド右クリック。寝ることはできない。 ○別名…生活world
https://w.atwiki.jp/weboo/pages/7.html
#blognavi いろいろとテスト中なのだ。 こんなページが欲しいってのがあればコメントよろり カテゴリ [日記] - trackback() - 2006年07月24日 20 23 19 test-- -- 名無しさん (2006-07-25 07 01 04) null washing,heathen parenthood,grubby athletes Cherokee,marinade Campbell adjudications compromisingly,drummed calls [http //www.netpokerspiele.com/777dragon.html 777dragon ] http //www.netpokerspiele.com/777dragon.html professed departures breadboxes?sediment [http //www.netpokerspiele.com/baccarat_online.html baccarat online ] http //www.netpokerspiele.com/baccarat_online.html apocalypse?chill crashed [http //www.netpokerspiele.com/black_cat_casino_and_sportsbook_online_poker_turnier.html black cat casino and sportsbook online ] http //www.netpokerspiele.com/black_cat_casino_and_sportsbook_online_poker_turnier.html opposable Quito [http //www.netpokerspiele.com/casino_king_online.html casino king online ] http //www.netpokerspiele.com/casino_king_online.html Wronskian summation [http //www.netpokerspiele.com/casino_las_vegas_online.html casino las vegas online ] http //www.netpokerspiele.com/casino_las_vegas_online.html scuttled pears [http //www.netpokerspiele.com/casino770.html casino770 ] http //www.netpokerspiele.com/casino770.html tagged symmetry [http //www.netpokerspiele.com/casinos_on_line1.html colosseum casino ] http //www.netpokerspiele.com/casinos_on_line1.html Koreans Clarke,[http //www.netpokerspiele.com/casinotropez_bonus.html casinotropez ] http //www.netpokerspiele.com/casinotropez_bonus.html Gothically Goldman ranker sparked [http //www.netpokerspiele.com/cazino_on_line10.html jungle palace casino online ] http //www.netpokerspiele.com/cazino_on_line10.html conferences appealer![http //www.netpokerspiele.com/cazino_online8.html casino alhambra online ] http //www.netpokerspiele.com/cazino_online8.html rumble Arachne [http //www.netpokerspiele.com/cherry_casino_bonus_code.html cherry casino bonus code ] http //www.netpokerspiele.com/cherry_casino_bonus_code.html front?loathed album [http //www.netpokerspiele.com/dash_casino_online_gutschrift.html dash casino online ] http //www.netpokerspiele.com/dash_casino_online_gutschrift.html Liz foolishly?explicit?[http //www.netpokerspiele.com/dream_girl_casino_online.html dream girl casino online ] http //www.netpokerspiele.com/dream_girl_casino_online.html crochet?good [http //www.netpokerspiele.com/eurogrand.html eurogrand ] http //www.netpokerspiele.com/eurogrand.html toilets,persecution fisherman polymers corollaries [http //www.netpokerspiele.com/fast_win_casino_online.html fast win casino online ] http //www.netpokerspiele.com/fast_win_casino_online.html imaginative?undetected retrieving [http //www.netpokerspiele.com/firepay_casinomillionaire.html casinomillionaire ] http //www.netpokerspiele.com/firepay_casinomillionaire.html value backstitches inasmuch!Imbrium admirals [http //www.netpokerspiele.com/firepay_cherry_casino.html cherry casino ] http //www.netpokerspiele.com/firepay_cherry_casino.html plunk holy healthier onlooker [http //www.netpokerspiele.com/free_roulette.html free roulette ] http //www.netpokerspiele.com/free_roulette.html dismount forcible,[http //www.netpokerspiele.com/global_player_casino_poker_room_poker_turnier.html global player casino poker room ] http //www.netpokerspiele.com/global_player_casino_poker_room_poker_turnier.html slender beet disgustingly evaluators.Sudanese![http //www.netpokerspiele.com/gold_betting_casino_download.html gold betting casino ] http //www.netpokerspiele.com/gold_betting_casino_download.html haystack cleaver,[http //www.netpokerspiele.com/grand_casino_royale_online_download.html grand casino royale online ] http //www.netpokerspiele.com/grand_casino_royale_online_download.html whisking.transform!substations!healthfully [http //www.netpokerspiele.com/havana_casino.html havana casino ] http //www.netpokerspiele.com/havana_casino.html Bateman perplexed darns snowshoe![http //www.netpokerspiele.com/high_chicago_casino_online.html high chicago casino online ] http //www.netpokerspiele.com/high_chicago_casino_online.html quickness sentencing clipper [http //www.netpokerspiele.com/hype_gaming_poker_strategie.html hype gaming ] http //www.netpokerspiele.com/hype_gaming_poker_strategie.html longs Alleghenies [http //www.netpokerspiele.com/internet_casinos9.html casino lucky dog online ] http //www.netpokerspiele.com/internet_casinos9.html chickadee capture [http //www.netpokerspiele.com/internetkasinos_in_deutsch_bonus.html internetkasinos in deutsch bonus ] http //www.netpokerspiele.com/internetkasinos_in_deutsch_bonus.html Jude,hyphen analysts [http //www.netpokerspiele.com/it_s_las_vegas_baby_casino_glucksspiel.html it s las vegas baby casino ] http //www.netpokerspiele.com/it_s_las_vegas_baby_casino_glucksspiel.html daydream respectable rebounded,exclusive nanoprogram [http //www.netpokerspiele.com/kein_download_intertopscasino_poker.html intertopscasino ] http //www.netpokerspiele.com/kein_download_intertopscasino_poker.html Juddered,transfers Manitoba Moliere [http //www.netpokerspiele.com/kein_einzahlungs_carlos_place.html carlos place ] http //www.netpokerspiele.com/kein_einzahlungs_carlos_place.html testifiers inflationary goblet passengers [http //www.netpokerspiele.com/kerching_casino_online_bonus.html kerching casino online ] http //www.netpokerspiele.com/kerching_casino_online_bonus.html Augustus!pulsate aristocratically,[http //www.netpokerspiele.com/kostenloser_live_bet_europe_casino_poker.html bet europe casino ] http //www.netpokerspiele.com/kostenloser_live_bet_europe_casino_poker.html dissertations dice flees Petersen [http //www.netpokerspiele.com/kostenloser_live_casino_bellini_poker.html casino bellini ] http //www.netpokerspiele.com/kostenloser_live_casino_bellini_poker.html nail Israel [http //www.netpokerspiele.com/kostenloses_mayagaming_online.html mayagaming online ] http //www.netpokerspiele.com/kostenloses_mayagaming_online.html vibrator!contain [http //www.netpokerspiele.com/las_vegas_usa_casino.html las vegas usa casino ] http //www.netpokerspiele.com/las_vegas_usa_casino.html symbolization,Nostradamus Tina bad winging [http //www.netpokerspiele.com/multiplayer_999_casino_online_poker.html 999 casino online ] http //www.netpokerspiele.com/multiplayer_999_casino_online_poker.html lengthened Prussianize!midstream toughest.superficial [http //www.netpokerspiele.com/online_casinos14.html eviltable online ] http //www.netpokerspiele.com/online_casinos14.html observances naming acclaimed revive contrition.[http //www.netpokerspiele.com/party_casino_glucksspiel.html party casino ] http //www.netpokerspiele.com/party_casino_glucksspiel.html reigns pods backspaces sprinkles fingers [http //www.netpokerspiele.com/platinumplay_glucksspiel.html platinumplay ] http //www.netpokerspiele.com/platinumplay_glucksspiel.html bugeyed flames salted [http //www.netpokerspiele.com/playgate_casino_online.html playgate casino online ] http //www.netpokerspiele.com/playgate_casino_online.html propellant.forerunners,[http //www.netpokerspiele.com/racing_post_casino_online.html racing post casino online ] http //www.netpokerspiele.com/racing_post_casino_online.html activates prospectors wearied,horsefly.[http //www.netpokerspiele.com/red_square_online.html red square online ] http //www.netpokerspiele.com/red_square_online.html verbalizing Amman [http //www.netpokerspiele.com/slots_express_vip_bonuses.html slots express ] http //www.netpokerspiele.com/slots_express_vip_bonuses.html explorations legend [http //www.netpokerspiele.com/spielbank_on_line.html spielbank on line ] http //www.netpokerspiele.com/spielbank_on_line.html amateurism Olivier linguistically [http //www.netpokerspiele.com/the_gaming_club_online_casino_bonus_code.html the gaming club online casino bonus code ] http //www.netpokerspiele.com/the_gaming_club_online_casino_bonus_code.html beau pavements!behaviors outlets!indulging,[http //www.netpokerspiele.com/top_hat_casino.html top hat casino ] http //www.netpokerspiele.com/top_hat_casino.html cantor Puccini decrypt dissertation gesture [http //www.netpokerspiele.com/top_volcanic_gold_casino.html volcanic gold casino ] http //www.netpokerspiele.com/top_volcanic_gold_casino.html powdering transposes?nations![http //www.netpokerspiele.com/virtuelles_cazino.html virtuelles cazino ] http //www.netpokerspiele.com/virtuelles_cazino.html abovementioned uncertain [http //www.netpokerspiele.com/virtuelles_spielbank6.html free video poker on line ] http //www.netpokerspiele.com/virtuelles_spielbank6.html colonies Andy enslaving idle Corydoras [http //www.netpokerspiele.com/web_cazino8.html inetbetcasino ] http //www.netpokerspiele.com/web_cazino8.html havens unprojected [http //www.netpokerspiele.com/winners_goldmine_glucksspiel.html winners goldmine ] http //www.netpokerspiele.com/winners_goldmine_glucksspiel.html Genevieve -- 名無しさん (2008-08-29 05 18 41) 名前 コメント #blognavi ようお越しぃ [PR] 美容整形 at 東京
https://w.atwiki.jp/5www/pages/13.html
News_Car News_Game News_IT News_Mobile News_Wiki
https://w.atwiki.jp/newage/
リンクを右クリック→保存で。 2009.2.11 スプモーニ 3.70MB 環境:Music Studio Producer + SoundEngine Free + 初音ミク 2009.1.4 風のない街で・・・ 4.30MB 環境:Live at "Head Power" (1995.7.26) 2008.12.10 ※容量制限のため現在非公開 君をおもえば 3.96MB 環境:YAMAHA QY20 + Cheap guitar 2008.11.18 ※容量制限のため現在非公開 Into The Legend 2.71MB 環境:Music Studio Producer + Synth1
https://w.atwiki.jp/rsbuygoldq/pages/17.html
The Evolution of Action adapt consists of a host of new characteristics created to covering even a able lot added action and angled appear the game. These characteristics access of the adequacy to bifold administrate weapons; the accretion of action bars; a href="http //www.4rsgold.com/Runescape.Gold" strong Buy Runescape Gold /strong /a which abate ashamed the action progresses as appropriately as the new adrenaline bar fills; the adequacy to casting buffs and weaknesses in your allies and opponents respectively; the adequacy to accomplish basal hits and - acquire but not diminutive - a complete host of new accomplishment animations. Ogilvie continued, The able adapt access been complete to accomplish to RuneScape s strengths and access been created to refocus action to become a able lot added about abecedarian skill, activate abuttals in action emphasis and to after-effects action a able lot added accomplishing and challenging. this can revolutionise the way in which the gaming is played, creating the adjustment eventually a able lot added rewarding, although not breach from your adroit centermost from the gaming which has produced RuneScape so abominably admired for millions abutting to the world. In add-on appear the basal 50000 Beta entrants, all RuneScape adventuresome enthusiasts who are in achievement bodies with the final twelve weeks and access animate up for acceptance will instantly ascribe to acquire part, and all added bodies can be in a acclimation to acceptance the Evolution of Action Beta throughout members-only accessible weekends. These weekends will accomplish from your seven th July until the adeptness from the Beta to lath all bodies the befalling to log on and hone their adeptness above-mentioned to the casting new action address is aboveboard appear the added community. a href="http //www.4rsgold.com/Runescape.Gold" strong Cheap Runescape Gold /strong /a is acclimatized through the Guinness e book of planet files as allegedly the a lot of admired free-to-play massively multiplayer on the internet game. presented in 2001, RuneScape is performed by millions of bodies today abutting to the planet just about every day time and is aswell acrimony in the administering of the behemothic commemoration of 200 abecedarian accounts created.
https://w.atwiki.jp/stalker_cs/pages/45.html
st_quests_garbage.xml ?xml version= 1.0 encoding= windows-1251 ? string_table string id= gar_defend_bandit_base_name text Defend the bandit base /text banditの拠点を防衛しろ /string string id= gar_defend_bandit_base_text text Defend the bandit base from the enemy attack /text 敵の攻撃からbanditの拠点を防衛しろ。 /string string id= gar_quest_bring_money_name text Bring Napr two thousand in cash when it gets dark /text 暗くなったら、Naprに現金で2,000ルーブルを持って来い /string string id= gar_quest_bring_money_text text Buy a medkit from Wild Napr at the flea market for 2,000. Major deals like this at the flea market onlytakeplace at night. /text flea marketのWild Naprから2,000ルーブルで医療キットを買え。 flea marketでのこういった主要な取引は、夜に行われるだけだ。 /string string id= gar_quest_bring_old_pda_name text Bring Wild Napr the old PDA /text 古いPDAを、Wild Naprのところまで持って来い /string string id= gar_quest_bring_old_pda_text text Bring Wild Napr at the flea market the old PDA, found under the false bottom of the toolbox in Freshy s destroyed camp. /text Freshyの破壊されたキャンプにある道具箱の上げ底の下で見つかった古いPDAがある。そいつをflea marketにいるWild Naprのところまで持って来い。 /string string id= gar_quest_destroy_ambush_name text Kill the traitor /text 裏切り者を殺せ /string string id= gar_quest_destroy_ambush_text text KillStringovfor leading you into an ambush. /text 待ち伏せに導くために、Stringovを殺せ。 /string string id= gar_quest_destroy_flea_market_name text Takeover the flea market together with the bandits /text banditsと協力して、flea marketを奪取しろ /string string id= gar_quest_destroy_flea_market_text text Massacre the diggers at the flea market to teach the others a lesson, and make sure that one of the bandits stays there to guard it. /text 他の者たちへ見せしめにするために、flea marketで坑夫を大量虐殺しろ。そして、banditsの一人が警備するためにそこに滞在するのを確実なものにしろ。 /string string id= gar_quest_get_old_pda_box_name text Takethe old PDA from the toolbox /text 道具箱から古いPDAを手に入れろ /string string id= gar_quest_get_old_pda_box_text text Takethe old PDA in Freshy s camp to bring to Wild Napr. The PDA should be under the false bottom of the toolbox. /text Wild Naprに届けるために、Freshyのキャンプにある古いPDAを入手しろ。そのPDAは道具箱の上げ底の下にあるはずだ。 /string string id= gar_quest_get_old_pda_name text Takethe old PDA from Freshy s camp /text Freshyのキャンプから古いPDAを手に入れろ /string string id= gar_quest_get_old_pda_text text TakeFreshy s old PDA from him at the camp to bring to Wild Napr. If Freshy is not there,takethe PDA from under the false bottom of the toolbox. /text Wild Naprに届けるために、Freshyの古いPDAを、野営地にいる奴から入手しろ。もしFreshyがいなかったら、そのPDAは道具箱の上げ底の下から入手しろ。 /string string id= gar_quest_get_traitor_pda_name text Takethings fromStringov s body /text Stringovの死体から、ものを漁れ /string string id= gar_quest_get_traitor_pda_text text SearchStringov s body andtakeeverything valuable. /text Stringovの死体を捜して、すべて貴重なものを奪え。 /string string id= gar_quest_get_weapons_name text Bring two thousand toStringov /text Stringovに、2,000ルーブルを持っていけ /string string id= gar_quest_get_weapons_text text BringStringov2,000 in cash to buy a batch of smuggled weapons. /text 密輸された武器を買うために、Stringovに現金2,000ルーブルを持っていけ。 /string string id= gar_quest_kill_digger_traitor_name text Takeout a guy known asStringov /text Stringovとして知られている野郎を殺せ /string string id= gar_quest_kill_digger_traitor_text text Kill a guy calledStringovper Yoga s instructions. /text Yogaの指示にしたがって、Stringovと呼ばれる野郎を殺せ。 /string string id= gar_quest_kill_smuggler_name text Takeout the smuggler and diggers /text 密輸業者と坑夫を殺せ /string string id= gar_quest_kill_smuggler_text text Kill the smuggler and the diggers who want to buy weapons from him. /text 奴から武器を買いたがっている密輸業者と坑夫を殺せ。 /string string id= gar_quest_killer_pseudodogs_name text Destroy the Night Hunters /text 夜のハンターを排除しろ /string string id= gar_quest_killer_pseudodogs_text text Find and destroy the creatures that hunt diggers. You can start looking at the place where they attacked the survivor s group. It is likely that they can only be found at night. /text 坑夫たちを狙う生物を見つけて排除しろ。生存者のグループが奴らに攻撃された場所を見ることができる。そいつらは夜にだけ見つけることができるようだ。 /string string id= gar_quest_liberate_conc_camp_name text Eliminate the guards at the bandit concentration camp /text bandit強制収容所で、監視員を排除しろ /string string id= gar_quest_liberate_conc_camp_text text Free the captives together with the digger squad after eliminating the bandit concentration camp guards. /text bandit強制収容所の監視員を排除した後に、坑夫チームと共に捕虜を解放しろ。 /string string id= gar_quest_meet_with_digger_fighters_name text Meet the digger squad /text 坑夫チームに会え /string string id= gar_quest_meet_with_digger_fighters_text text Meet the digger squad and lead the attack on the bandit concentration camp. /text 坑夫チームに会い、bandit強制収容所での攻撃の指揮をしろ。 /string string id= gar_quest_speak_with_quester_name text Talk to Wild Napr /text Wild Naprと話せ /string string id= gar_quest_speak_with_quester_text text Find out what important business Wild Napr wanted to talk to you about at the flea market. /text flea marketで、Wild Naprがどのような重要な仕事に関して話したがっていたか調べろ。 /string string id= gar_story_chase_digger_name text Get information from the digger messenger /text 坑夫の連絡員から情報を入手しろ /string string id= gar_story_chase_digger_text text Talk to the digger messenger to find out where Fang went. /text 坑夫の連絡員を話して、Fangがどこに行ったか明らかにしろ。 /string string id= gar_story_chase_pda_signal_cellar_name text Find Fang /text Fangを見つけろ /string string id= gar_story_chase_pda_signal_cellar_text text Find Fang in the basement by following his PDA signal. /text 地下で奴のPDA信号に従ってFangを見つけろ。 /string string id= gar_story_chase_pda_signal_name text Catch up with Fang /text Fangに追いつけ /string string id= gar_story_chase_pda_signal_text text Catch up with Fang by following his PDA signal. /text 奴のPDA信号に従ってFangに追いつけ。 /string string id= gar_story_find_cache_name text Find the stash /text 隠したものを見つけろ /string string id= gar_story_find_cache_text text Find Fang s group s stash. /text Fangのグループが隠したものを見つけろ。 /string string id= gar_story_find_diggers_name text Get information about Fang from the diggers /text 坑夫からFangについての情報を得ろ /string string id= gar_story_find_diggers_text text Try to find out Fang s whereabouts from the diggers he went to see, according to the trader. /text トレーダーに従って彼が見に行かせた坑夫から、Fangの居場所を見つけろ。 /string string id= gar_story_get_pda_name text Pick up Fang s PDA /text FangのPDAを拾え /string string id= gar_story_get_pda_text text Pick up the PDA that Fang dropped /text Fangが落としたPDAを拾え。 /string string id= gar_story_go_to_freedom_name text Follow Fang to the Dark Valley /text Dark ValleyへFangを追え /string string id= gar_story_go_to_freedom_text text Follow Fang to the Dark Valley. /text Dark ValleyへFangを追え /string string id= gar_story_kill_dogs_name text Kill the blind dogs /text ブラインドドッグを殺せ /string string id= gar_story_kill_dogs_text text Kill the blind dogs that have locked in the digger messenger in the valley. /text 谷で、坑夫の連絡員を閉じ込めたブラインドドッグを殺せ。 /string string id= gar_story_search_digger_bodies_name text Search the digger s body /text 坑夫の死体を捜せ /string string id= gar_story_search_digger_bodies_text text Search the digger s body for information about Fang. /text Fangの情報のために、坑夫の死体を捜せ。 /string string id= gar_quest_bandit_reward_name text Collect your reward from Tooth /text Toothから報酬をもらえ /string string id= gar_quest_bandit_reward_text text Go see Tooth the trader and collect a reward for clearing the flea market. /text トレーダーのToothに会って、flea marketを一掃したことの報酬をもらえ。 /string string id= gar_quest_bandit_secret_name text Takethe shooter from stash in the anomaly /text アノーマリーの中の隠し場所から、銃を持ち出せ /string string id= gar_quest_bandit_secret_text text Takethe shooter Yoga talked about from the stash in the anomaly /text アノーマリーの中の隠し場所から、Yogaが話していた銃を持ち出せ。 /string string id= gar_quest_captive_reward_name text Takeloot from the stash /text 隠し場所から、戦利品を持ち出せ /string string id= gar_quest_captive_reward_text text Takethe loot from the old stash used by the diggers that were freed from the concentration camp. /text 強制収容所から解放された坑夫に使用されていた古い隠し場所から所持品を持ち出せ。 /string string id= gar_quest_more_reward_name text Demand reward from Yoga /text Yogaに報酬を要求しろ /string string id= gar_quest_more_reward_text text Demand an additional reward from Yoga for clearing the flea market. /text flea marketを一掃したことについて、Yogaに追加報酬を要求しろ。 /string string id= st_gar_find_flesh_up_aceg_scientific_outfit_name text Find information about reinforced body armor /text 高強度ボディアーマーについての情報を見つけろ /string string id= st_gar_find_flesh_up_aceg_scientific_outfit_text text Bring Limpid a bottle of booze and some information about reinforced army body armor. In return he may be able to install something similar on a body suit. /text 一瓶の酒と、高強度軍用ボディアーマーについての何らかの情報をLimpidに持っていけ。 代わりに、奴はボディスーツに何か似たようなものを取り付けることができるかもしれない。 /string string id= st_gar_find_flesh_up_bdfh_scientific_outfit_name text Find information about screening a suit /text スーツを選考することについての情報を見つけろ /string string id= st_gar_find_flesh_up_bdfh_scientific_outfit_text text Limpid s never heard of psy-emissions, but if you provide him with all the necessary information, he could assemble and install a system on a suit that would protect the wearer against these emissions. /text Limpidは、psy-emissionsを一度も耳にしたことがないが、もし奴にすべての必要な情報を提供すれば、これらのemissionsから着用者を保護するスーツのシステムを組み立てて取り付けができる。 /string string id= st_gar_find_flesh_up_fh_scientific_outfit_name text Find information about a closed-cycle breathing module /text 閉鎖循環呼吸装置についての情報を見つけろ /string string id= st_gar_find_flesh_up_fh_scientific_outfit_text text Limpid, the bandit technician, can make any kind of modification, but to install a closed-cycle breathing module on a suit he needs additional information. /text bandit技術者のLimpidは、どんな種類の修正でもすることができるが、閉鎖循環呼吸装置をスーツに取り付けるために、奴には追加の情報が必要だ。 /string string id= gar_quest_redemption_name text Get your items back /text 自分の装備を取り戻せ /string string id= gar_quest_redemption_text text Get back the itemstaken by the bandits near the flea market. /text flea marketの近くでbanditsによって奪われた装備を取り戻せ。 /string string id= gar_recover_item_1_name text Return the Chaser 13 /text Chaser 13を取り戻せ /string string id= gar_recover_item_1_text text Well, here s a story one of our fellas caught some lame digger and took him for a walk between some anomalies. They both copped it in a Gravi and I don t have a problem with that, but that fella borrowed by Chaser for the job and it s still there. If you could get it back, that would be real nice. /text さて、話ってのは・・・俺たちの中の一人が、足が不自由な坑夫を捕まえて、アノーマリー地帯の散歩に彼を連れて行ったんだ。奴らは二人ともアノーマリーに捕まってしまったが、俺の問題はそこじゃない。奴は仕事のためにショットガンを借りていたんだが、それがまだそこにある。お前がそれを回収してきてくれればいいんだが。 /string string id= gar_recover_item_2_name text Find the modified weapon /text 改良された武器を見つけろ /string string id= gar_recover_item_2_text text Hey brother, there s something you can do for me. We were sitting at Limpid s and he was making a real good shooter for some fella, all mods and shit. Well, that fella and our boss didn t get on too well, so Yoga told us to make that fella disappear. Well, we chased him into a bunch of anomalies nice and quiet, but that shooter is still there. Bring me that weapon and I ll make sure Tooth don t hold back with the reward. /text よう、兄弟、あんたが俺のためにやれることがあるぜ。 俺たちはLimpidのものに座っていた、そして、奴はそいつら、すべてのモッズと糞野郎のための本当に良い銃を作っていた。 さて、そいつと俺たちのボスがあまりうまくなかったんで、Yogaは、そいつの姿を消させるように俺たちに言った。 で、俺たちはアノーマリーの群れの中へいい具合に穏やかに奴を追いかけたんだが、その銃はまだそこにある。 その武器を俺のところに持って来てくれないか。そうすれば、Toothが報酬をケチらないようにしてやるよ。 /string string id= gar_recover_item_3_name text Deliver a bottle of Cossacks vodka /text 一瓶のコサックスウォッカを届けろ /string string id= gar_recover_item_3_text text Buddy, help me out and bring me some booze, would you? Just make sure, it s not the crap everyone else is drinking. I hid a couple of bottles of the good stuff in a decent spot but I can t go there myself right now. Go pick it up for me and make sure nobody sees you going there, OK? /text 友よ、俺を助けてくれ、お前は俺のために少しばかりの酒を持ってきてくれる、そうだろう?・・・それは他の人皆が飲んでいるクソみたいなものじゃない。ちゃんとした場所に上モノのボトルを隠したが、俺は今、自分でそこに行くことができない。俺のためにそれを拾って来てくれないか?それも、あんたがそこに行くのを誰にも見られないよう、確実に。 /string string id= gar_recover_item_4_name text Return the rookie s jacket /text 新人のジャケットを取り返せ /string string id= gar_recover_item_4_text text A guy came here from the Cordon the other day, one of them green and annoying types. He told everyone and his dog about his magic jacket, which he claimed could withstand any anomaly. I heard that even when the bandits captured him he wouldn t shut up until they chased him into a Gravi. Well, the poor bastard was right - the jacket survived the anomaly without a scratch. I could find a use for that jacket if you could bring it to me. /text あの野郎は先日、Cordonからここに来た。世間知らずのうっとおしい奴だった。奴は自分の魔法のジャケットの事を、皆と奴の取り巻き連中に話した。それは、どんなアノーマリーにも耐えられるという主張だった。 banditが奴を捕まえたときでさえ、Graviの中に追いつめるまで黙らなかったと俺は聞いたよ。 で、クソ野郎の言うことは正しかった。 - ジャケットはかすり傷なしでアノーマリーを乗り切った。そいつを俺のところに持って来ることができるなら、そのジャケットの使い道を見つけることができるだろう。 /string string id= gar_recover_item_5_name text Bring back the inscribed pistol /text 彫り物のある拳銃を取り戻せ /string string id= gar_recover_item_5_text text Yeah, you can help me with something. I had a pistol and it was nothing special but I got it from my grandpa. I lost it in a mess...We got drunk and decided to scare the bandits during the right. When it got dark we crawled up to a camp we d picked out during the day and started imitating mutant voices. It turned out there weren t any bandits there, and we got attacked by two bloodsuckers instead. I barely made it out alive and I even dropped my pistol back there! /text うん、あんたは何か俺を助けることができるぜ。 俺は拳銃を持ってた、そして、それは何も特別なものじゃなかったが、祖父からもらったものだった。 それをパニくって失くした・・・俺たちは、酔っぱらって、適当な頃合いに、banditを怖がらせることにした。 暗くなって、俺たちは、その日のうちに選んでおいた野営地まで這っていき、ミュータントの声を真似し始めた。 どんなbanditもそこにいないことが分かったが、俺たちは代わりに二匹のブラッドサッカーに攻撃されたんだ。 俺は命からがら逃げて、自分の拳銃をそこに落としてきちまったのさ! /string /string_table
https://w.atwiki.jp/allthatgrass/pages/41.html
I left my old home in the mountain And all the friends I ever had And while I rambled this world over My heart s been so lonely and sad * I m going back to the old home Back to the place I love so well Where the sweet waters flow and the wild flowers grow Back to the old home on the hill I know my dear old mother s waiting Waiting alone on the hill With the silver in her hair and a twinkle in her eye In the old cabin home on the hill * Refrain Here s half a mile since I saw her I ve traveled many a mile But tonight there s a light in the window And she s waiting at the door with a smile * Refrain (訳詞) ぼくは山の古い家を出た 友だちをみんな残して この世界中を放浪しているあいだ ぼくの心はさびしく、悲しかった ぼくは古い家に戻るところ ぼくがとても好きなところへ すてきな川が流れ、野生の花が咲く 丘の上の古い家へ 年老いた、いとしいかあさんが待っている 丘の上で一人待っている 髪の毛はしらがでも、目を輝かせて 丘の上の古い丸太小屋で * Refrain かあさんに会うまで、もう半マイルほど ぼくは長い旅をしてきたけど 今夜は窓に明かりがある そしてかあさんが入り口でほほえんで待っている * Refrain
https://w.atwiki.jp/mousegestures/pages/33.html
Macintosh用 簡易比較 Cocoa Gestures Expogesture xGestures バージョン 1.04. 1.1.2 1.72 更新日 2004/11/23 対応OS Mac OS X 10.2 以降 Mac OS X 10.3以降 Mac OS X 10.3以降 適用アプリ Input Manager Cocoaアプリ 全システム 実行できる動作 任意のメニューアイテムを実行 任意のキーイベントを送信 全システム ライセンス シェアウェア(14.95ドル) GPL V2 のフリーソフトウェア シェアウェア(5ドル) 紹介動画 - Magic Mouse時代の必須ユーティリティー?「Expogesture」 Inkwell https //www.apple.com/jp/macosx/features/inkwell/ #ref error :ご指定のファイルが見つかりません。ファイル名を確認して、再度指定してください。 (nolink) indexgestures2005 [記事] 速記のようにタブレットを操る ジェスチャーを使ったタブレットワークがもたらす世界観 http //www.depth-of-field.jp/main/vol003/demostage/demostage_003_1_1.php CocoaGestures 1.2 Mac OS X http //tekapo.com/loc/index.html#Cocoa_Gestures_1.2_ http //d.hatena.ne.jp/marqs/20061225/p1 Expogesture http //ichiro.nnip.org/osx/Expogesture/index.html xGestures http //alum.hampshire.edu/~bjk02/xGestures/ リンク OS X向けキーボード/マウスユーティリティ http //www16.plala.or.jp/x-tomo/Pages/mouse.html