use Test::Base; Tatsuhiko Miyagawa Six Apart, Ltd. / Shibuya Perl Mongers Shibuya.pm Tech Talks #7

Size: px
Start display at page:

Download "use Test::Base; Tatsuhiko Miyagawa miyagawa@gmail.com Six Apart, Ltd. / Shibuya Perl Mongers Shibuya.pm Tech Talks #7"

Transcription

1 use Test::Base; Tatsuhiko Miyagawa Six Apart, Ltd. / Shibuya Perl Mongers Shibuya.pm Tech Talks #7

2 Test::Base とは

3 データドリブン テストベースクラス

4 by Ingy döt Net

5 use Test::More?

6 use Test::Base! Test::Moreと 互 換 のあるインターフェース

7 Test::More compatible use Test::More; plan tests => 2; sub camelize { local $_ = shift; s/_( w)/uc($1)/eg; $_; } is camelize("foo_bar"), "foobar"; is camelize("foo_bar_baz"), "foobarbaz";

8 Test::More compatible use Test::Base; plan tests => 2; sub camelize { local $_ = shift; s/_( w)/uc($1)/eg; $_; } is camelize("foo_bar"), "foobar"; is camelize("foo_bar_baz"), "foobarbaz";

9 Test::Base-y code use Test::Base; sub camelize { local $_ = shift; s/_( w)/uc($1)/eg; $_; } filters { input => 'camelize' } DATA === --- input: foo_bar --- expected: foobar === --- input: foo_bar_baz --- expected: foobarbaz

10 # 01-json.t use Test::Base; use JSON::Syck; Test::Base code sub json { JSON::Syck::Dump($_[0]) } run_is 'input' => 'expected'; END === Simple JSON Test --- input eval json { foo => "bar" } --- expected chomp Tatsuhiko TatsuhikoMiyagawa 2007/10/10 {"foo":"bar"} 2007/10/10 Shibuya.pm #7

11 TAP compatible % prove l 01-json.t 01-json...ok All tests successful. Files=1, Tests=1, 0 wallclock secs ( 0.10 cusr csys = 0.12 CPU)

12 use Test::Base # 01-json.t use Test::Base; use JSON::Syck; sub json { JSON::Syck::Dump($_[0]) } run_is 'input' => 'expected'; END === Simple JSON Test --- input eval json { foo => "bar" } --- expected chomp {"foo":"bar"}

13 Block names # 01-json.t use Test::Base; use JSON::Syck; sub json { JSON::Syck::Dump($_[0]) } run_is 'input' => 'expected'; END === Simple JSON Test --- input eval json { foo => "bar" } --- expected chomp {"foo":"bar"}

14 Filters # 01-json.t use Test::Base; use JSON::Syck; sub json { JSON::Syck::Dump($_[0]) } run_is 'input' => 'expected'; END === Simple JSON Test --- input eval json { foo => "bar" } --- expected chomp {"foo":"bar"}

15 perldoc Test::Base::Filter

16 Define Filters # 01-json.t use Test::Base; use JSON::Syck; sub json { JSON::Syck::Dump($_[0]) } run_is 'input' => 'expected'; END === Simple JSON Test --- input eval json { foo => "bar" } --- expected chomp {"foo":"bar"}

17 Filter arguments === filter args --- input lines array tail=2 Join foo Bar baz --- expected chomp regexp=xis bar.*baz

18 filters DATA === test input foo bar baz xxx --- expected quox yyy === test input foo bar baz xxx --- expected quox yyy === test input foo bar baz xxx --- expected quox yyy

19 filters filters { input => [ 'foo', 'bar', 'baz' ], expected => 'quox' }; DATA === test input xxx --- expected yyy === test input xxx --- expected yyy === test input xxx --- expected yyy

20 run_is # 01-json.t use Test::Base; use JSON::Syck; sub json { JSON::Syck::Dump($_[0]) } run_is 'input' => 'expected'; END === --- input eval json { foo => "bar" } --- expected chomp {"foo":"bar"}

21 Auto-diff 01-json...NOK 1 # Failed test ' -1,2 # -{"foo":"bar"} # +{ foo => "bar" } # xxx # ' Requires Algorithm::Diff Turn off with no_diff()

22 run_is run_like run_unlike run_is_deeply run_compare

23 run_is default blocks # 01-json.t use Test::Base; use JSON::Syck; sub json { JSON::Syck::Dump($_[0]) } run_is; END === --- input eval json { foo => "bar" } --- expected chomp {"foo":"bar"}

24 run_is default blocks # 01-json.t use Test::Base; use JSON::Syck; sub json { JSON::Syck::Dump($_[0]) } run_is; END === --- xxx eval json { foo => "bar" } --- yyy chomp {"foo":"bar"}

25 run_compare # 01-json.t use Test::Base; use JSON::Syck; sub json { JSON::Syck::Dump($_[0]) } run_compare; END === --- input eval json { foo => "bar" } --- expected chomp {"foo":"bar"} === --- input eval json { foo => [ "bar", "baz" ] } --- expected regexp bar.*baz

26 run_compare is default! # 01-json.t use Test::Base; use JSON::Syck; sub json { JSON::Syck::Dump($_[0]) } END === --- input eval json { foo => "bar" } --- expected chomp {"foo":"bar"} === --- input eval json { foo => [ "bar", "baz" ] } --- expected regexp bar.*baz

27 run # 01-json.t use Test::Base; use JSON::Syck; plan tests => 1 * blocks; run { my $block = shift; is JSON::Syck::Dump($block->input), $block->expected, $block->name; }; END === --- input eval { foo => "bar" } --- expected chomp {"foo":"bar"}

28 blocks() # 01-json.t use Test::Base; use JSON::Syck; plan tests => 1 * blocks; for my $block (blocks) { is JSON::Syck::Dump($block->input), $block->expected, $block->name; } END === --- input eval { foo => "bar" } --- expected chomp {"foo":"bar"}

29 Block specific use Test::Base; run_compare; END === --- ONLY --- input eval json { foo => "bar" } --- expected chomp {"foo":"bar"} === --- input eval json { foo => [ "bar", "baz" ] } --- expected regexp bar.*baz

30 Block specific use Test::Base; run_compare; END === --- SKIP --- input eval json { foo => "bar" } --- expected chomp {"foo":"bar"} === --- input eval json { foo => [ "bar", "baz" ] } --- expected regexp bar.*baz

31 Subclassing Test::Base # t/testjson.pm package t::testjson; use Test::Base -Base; use JSON::Syck; package t::testjson::filter; use Test::Base::Filter base; sub json { JSON::Syck::Dump($_[0]) } # t/01-json.t use t::testjson; END === --- input eval json { foo => "bar" } --- expected

32 In your CPAN modules use inc::module::install; name 'Foo-Bar'; all_from 'lib/foo/bar.pm'; use_test_base; WriteAll;

33 Tips

34 Spiffy XXX XXX $foo = $bar; WWW $bar; YYY $baz; ZZZ $quox;

35 no chomp filters use Test::Base; filters { input => 'chomp', expected => 'chomp' } END === --- input foo --- expected bar === --- input fooaba --- expected bzaahiepa

36 no chomp filters use Test::Base; END === --- input: foo --- expected: bar === --- input: fooaba --- expected: bzaahiepa

37 success tests vs. error tests # t/01-success.t run_is 'input' => 'expected'; # t/02-failure.t run { my $block = shift; eval { }; run_like $@, $block->expected; } ;

38 Test::Baseに 向 かないテスト 複 雑 オブジェクト なAPI 状 態 が 変 化

39 Test::Baseで うまくテストできない = 複 雑 なAPI

40 Design your API Sufficiently Advanced. Damian Conway

41 References perldoc Test::Base

42 JSAN Test.Base.js (PMConnect?)

43 Refactoring Example

レッドハット 製 品 プライスリスト Red Hat Enterprise Linux 製 品 (RHEL for HPC) 更 新 :2015 年 4 22

レッドハット 製 品 プライスリスト Red Hat Enterprise Linux 製 品 (RHEL for HPC) 更 新 :2015 年 4 22 レッドハット 製 品 プライスリスト Red Hat Enterprise Linux 製 品 (RHEL for HPC) 更 新 :2015 年 4 22 薄 紫 :3 年 型 番 :5 年 型 番 字 : 新 規 追 加 変 更 当 価 格 表 は 予 告 なしに 変 更 する 場 合 がございますので ご 了 承 ください 価 格 は 全 て 税 抜 きでの 掲 載 となっております 新 規

More information

Wicket. 2013.09.12 Hiroto Yamakawa

Wicket. 2013.09.12 Hiroto Yamakawa Wicket 2013.09.12 Hiroto Yamakawa @gishi_yama yamakawa@photon.chitose.ac.jp Apache Wicket 6 Wicket Wicket-Sapporo New! "...Wicket Java " Java Apache Wicket, "Apache Wicket Web ",, pp.17 "...Apache Wicket

More information

Cost Accounting 1. B r e a k e v e n A n a l y s i s. S t r a t e g y I m p l e m e n t a t i o n B a l a n c e d S c o r e c a r d s

Cost Accounting 1. B r e a k e v e n A n a l y s i s. S t r a t e g y I m p l e m e n t a t i o n B a l a n c e d S c o r e c a r d s Cost Accounting 1 B r e a k e v e n A n a l y s i s S t r a t e g y I m p l e m e n t a t i o n B a l a n c e d S c o r e c a r d s S t r a t e g y M o n i t o r i n g R e s p o n s i b i l i t y S e g

More information

レッドハット 製 品 プライスリスト 標 準 価 格. Red Hat Enterprise Linux 製 品 (RHEL Server)

レッドハット 製 品 プライスリスト 標 準 価 格. Red Hat Enterprise Linux 製 品 (RHEL Server) レッドハット 製 品 プライスリスト Red Hat Enterprise Linux 製 品 (RHEL Server) 新 価 格 は6 月 1 日 から 適 用 開 始 と 致 します 薄 紫 :3 年 型 番 水 色 :5 年 型 番 赤 文 字 : 新 規 追 加 変 更 当 価 格 表 は 予 告 なしに 変 更 する 場 合 がございますので ご 了 承 ください 税 込 価 格 は

More information

レッドハット 製 品 プライスリスト Red Hat Enterprise Linux2013 新 製 品 (ベースサブスクリプション) 更 新 :2015 年 4 22

レッドハット 製 品 プライスリスト Red Hat Enterprise Linux2013 新 製 品 (ベースサブスクリプション) 更 新 :2015 年 4 22 Red Hat Enterprise Linux2013 新 製 品 (ベースサブスクリプション) 更 新 :2015 年 4 22 薄 紫 :3 年 型 番 :5 年 型 番 字 : 新 規 追 加 変 更 新 規 新 規 SKU 製 品 名 ソケット ゲストOS サポート 期 間 標 準 価 格 備 考 Server RH00001 Red Hat Enterprise Linux for Virtual

More information

Cash, Receivables & Marketable Securities

Cash, Receivables & Marketable Securities KK Cash, Receivables & Marketable Securities CURRENT ASSETS ( 流 動 資 産 ) 代 表 的 な 資 産 は Cash ( 現 金 ) Marketable Securities ( 有 価 証 券 ) Accounts Receivable ( 売 掛 金 ) Notes Receivable ( 手 形 ) Inventories

More information

Document and entity information

Document and entity information Company information Company information FASF member mark Document name Document and entity information Aug 2015 第 3 四 半 期 決 算 短 信 日 本 基 準 ( 連 結 ) Filing date 20150710 Company name TRANSACTION CO., Ltd.

More information

Panasonic AC-DC Power Supply Design Support Service

Panasonic AC-DC Power Supply Design Support Service Panasonic AC-DC Power Supply Design Support Service The best solution to design your AC-DC power supply (how to design a switching power supply, order a transformer, prevent EMI, etc.) Panasonic s IPD

More information

Data Mining for Risk Management in Hospital Information Systems

Data Mining for Risk Management in Hospital Information Systems Data Mining for Risk Management in Hospital Information Systems Shusaku Tsumoto and Shoji Hirano Department of Medical Informatics, Shimane University, School of Medicine, 89-1 Enya-cho, Izumo 693-8501

More information

Discover the power of reading for university learners of Japanese in New Zealand. Mitsue Tabata-Sandom Victoria University of Wellington

Discover the power of reading for university learners of Japanese in New Zealand. Mitsue Tabata-Sandom Victoria University of Wellington Discover the power of reading for university learners of Japanese in New Zealand Mitsue Tabata-Sandom Victoria University of Wellington The power of reading The power of reading is claimed by Krashen (2004).

More information

この 外 国 弁 護 士 による 法 律 事 務 の 取 扱 いに 関 する 特 別 措 置 法 施 行 規 則 の 翻 訳 は 平

この 外 国 弁 護 士 による 法 律 事 務 の 取 扱 いに 関 する 特 別 措 置 法 施 行 規 則 の 翻 訳 は 平 この 外 国 弁 護 士 による 法 律 事 務 の 取 扱 いに 関 する 特 別 措 置 法 施 行 規 則 の 翻 訳 は 平 成 十 六 年 法 務 省 令 第 6 号 までの 改 正 ( 平 成 16 年 4 月 1 日 施 行 )について 法 令 用 語 日 英 標 準 対 訳 辞 書 ( 平 成 18 年 3 月 版 )に 準 拠 して 作 成 したものです なお この 法 令 の 翻

More information

医 学 生 物 学 一 般 問 題 ( 問 題 用 紙 1 枚 解 答 用 紙 2 枚 )

医 学 生 物 学 一 般 問 題 ( 問 題 用 紙 1 枚 解 答 用 紙 2 枚 ) 平 成 26 年 度 大 学 院 医 学 研 究 科 博 士 課 程 入 学 試 験 (1 回 目 ) 医 学 生 物 学 一 般 問 題 ( 問 題 用 紙 1 枚 解 答 用 紙 2 枚 ) 以 下 の 問 題 1 問 題 4のうち 二 つの 問 題 を 選 択 して 解 答 しなさい 一 つの 問 題 につき1 枚 の 解 答 用 紙 を 使 用 しなさい 紙 面 不 足 の 場 合 は 裏

More information

Local production for local consumption( 地 産 地 消 ) Worksheet 1. Task: Do you agree with this idea? Explain the reasons why you think so.

Local production for local consumption( 地 産 地 消 ) Worksheet 1. Task: Do you agree with this idea? Explain the reasons why you think so. Worksheet 1 Task: Do you agree with this idea? Explain the reasons why you think so. Name Worksheet A: Local Farmer I am a local farmer. I agree with this idea. Our products will always be fresh because

More information

Direct Marketing Production Printing & Value-Added Services: A strategy for growth

Direct Marketing Production Printing & Value-Added Services: A strategy for growth 2015 年 12 月 Direct Marketing Production Printing & Value-Added Services: A strategy for growth 完 成 のご 案 内 ダイレクトマーケティングにおける 印 刷 物 & 付 加 価 値 サービス : 成 長 への 戦 略 とは? 印 刷 物 を 活 用 したダイレクトマーケティングが 成 長 しており デジタル

More information

How Should Remote Monitoring Sensor Be Accurate?

How Should Remote Monitoring Sensor Be Accurate? CS27 Laboratory How Should Remote Monitoring Sensor Be Accurate? Seiki Tokunaga Shinsuke Matsumoto Sachio Saiki Masahide Nakamura Graduate School of System Informatics Kobe University, Japan 1 Remote Monitoring

More information

オープンソース NFV プラットフォーム の 取 り 組 み

オープンソース NFV プラットフォーム の 取 り 組 み オープンソース NFV プラットフォーム の 取 り 組 み 平 成 27 年 4 月 レッドハット アジア 太 平 洋 地 域 事 業 開 発 戦 略 本 部 テレコム & NFV チーフ テクノロジスト 杉 山 秀 次 自 己 紹 介 ネットワーク 業 界 歴 27 年 現 在 レッドハットアジア 太 平 洋 地 域 において NFVチーフテクノロジストとして 活 動 前 職 はジュニパーネットワークスにてR&Dサポート

More information

育 デジ (Iku-Digi) Promoting further evolution of digital promotion

育 デジ (Iku-Digi) Promoting further evolution of digital promotion 育 デジ (Iku-Digi) Promoting further evolution of digital promotion Abstract Digital promotion has established its presence and become a commodity in the pharmaceutical industry. In the last few years, use

More information

Bushido: Way of the Samurai. Golden Screens. Chokuo TAMURA Hawks with pine and plum blossom 163.6 x 376.0 cm each

Bushido: Way of the Samurai. Golden Screens. Chokuo TAMURA Hawks with pine and plum blossom 163.6 x 376.0 cm each Bushido: Way of the Samurai Golden Screens Chokuo TAMURA Hawks with pine and plum blossom 163.6 x 376.0 cm each 金 Noh 屏 Theatre 風 robes teacher s notes Kin Byōbu Golden Screen teacher s notes Decorative

More information

Advanced Training Program for Teachers of the Japanese-Language Application Instructions For FY 2016

Advanced Training Program for Teachers of the Japanese-Language Application Instructions For FY 2016 Advanced Training Program for Teachers of the Japanese-Language Application Instructions For FY 2016 1. Objectives The Advanced Training Program at the Japan Foundation Japanese-Language Institute, Urawa

More information

Public Financial Assistance for Formal Education in Japan

Public Financial Assistance for Formal Education in Japan Public Financial Assistance for Formal Education in Japan In Japan, households bear a particularly high proportion of the costs of pre-primary and tertiary education compared with other OECD countries

More information

EDB-Report. 最 新 Web 脆 弱 性 トレンドレポート(2014.11) 2014.11.01~2014.11.30 Exploit-DB(http://exploit-db.com)より 公 開 されている 内 容 に 基 づいた 脆 弱 性 トレンド 情 報 です

EDB-Report. 最 新 Web 脆 弱 性 トレンドレポート(2014.11) 2014.11.01~2014.11.30 Exploit-DB(http://exploit-db.com)より 公 開 されている 内 容 に 基 づいた 脆 弱 性 トレンド 情 報 です 04. 最 新 Web トレンドレポート(04.) 04..0~04..30 Exploit-DB(http://exploit-db.com)より 公 開 されている 内 容 に 基 づいた トレンド 情 報 です サマリー ペンタセキュリティシステムズ 株 式 会 社 R&Dセンター データセキュリティチーム 04 年 月 は Exploit-DBより 公 開 されている の 中 SQLインジェクション(SQL

More information

Why today? What s next?

Why today? What s next? Closing PhUSE Single Day Events, Tokyo, 31 st Oct 2014 Why today? What & why PhUSE? What s next? Link to Prezi http://prezi.com/p77zfstdrzfs/present/?auth_key=4d37wvn&follow=cdxkkrg_3vlu&kw=present p77zfstdrzfs&rc=ref

More information

MPLS Configration 事 例

MPLS Configration 事 例 MPLS Configration 事 例 JANOG6 MPLSパネル グローバルワン 株 式 会 社 06/16/2000 JANOG6 MPLS Pannel 1 MPLS Configration なにが 必 要?(Ciscoしかわかりません) IOSは12.0(7) T 以 上 がいい PEは3600, 4500, 7200, and 7500 PはCisco LS1010, 7200,

More information

<HNAS_SNMP 監 視 取 扱 説 明 書 別 紙 2 イベントリスト> Event ID

<HNAS_SNMP 監 視 取 扱 説 明 書 別 紙 2 イベントリスト> Event ID Event 1004 ServiceNotStarted Severe %s services have not been started as failed to start last time The service was not started due to a problem starting it previously

More information

Managing HKU author reputations, enhancing HKU's reputation. Creative Commons: Attribution 3.0 Hong Kong License

Managing HKU author reputations, enhancing HKU's reputation. Creative Commons: Attribution 3.0 Hong Kong License Title Managing HKU author reputations, enhancing HKU's reputation Author(s) Palmer, DT Citation The World 100 Conference: Managing University Reputation in a Competitive World, Hong Kong, 22-23 June 2010.

More information

Posting and Reading Messages (PC version) 1/4

Posting and Reading Messages (PC version) 1/4 Posting and Reading Messages (PC version) 1/4 3-1 TOP page Display a message board on which to post messages. Enter the phone number where you wish to post a message and press Post button. Phone number

More information

My experience of Ruby Education in Taiwan

My experience of Ruby Education in Taiwan My experience of Ruby Education in Taiwan ~ 台 湾 にRuby 教 育 で 得 た 知 見 Mu-Fan Teng(@ryudoawaru) Ruby World Conference はじめに 発 表 する 機 会 をいただき ありがとうございます 自 己 紹 介 鄧 慕 凡 (Mu-Fan Teng) a.k.a: 竜 堂 終 両 方 どもある 小 説

More information

Electricity Business Act ( Act No. 170 of July 11, 1964)

Electricity Business Act ( Act No. 170 of July 11, 1964) この 電 気 事 業 法 の 翻 訳 は 平 成 十 七 年 法 律 第 八 十 七 号 までの 改 正 ( 平 成 18 年 5 月 1 日 施 行 )について 法 令 用 語 日 英 標 準 対 訳 辞 書 ( 平 成 18 年 3 月 版 )に 準 拠 して 作 成 したものです なお この 法 令 の 翻 訳 は 公 定 訳 ではありません 法 的 効 力 を 有 するのは 日 本 語 の

More information

How To Teach English At Kumon

How To Teach English At Kumon English Education at Kumon 1 Running Head: ENGLISH EDUCATION AT KUMON English Education at KUMON ~ A Case Study of Two Children and their Mothers ~ by Yukiko Kawabata A graduation thesis submitted to the

More information

TS-3GB-S.R0125-505-0v1.0 VoIP Supplementary Services Descriptions: Call Forwarding - Unconditional

TS-3GB-S.R0125-505-0v1.0 VoIP Supplementary Services Descriptions: Call Forwarding - Unconditional TS-GB-S.R0--0v.0 VoIP Supplementary Services Descriptions: Call Forwarding - Unconditional 0 年 月 日 制 定 社 団 法 人 情 報 通 信 技 術 委 員 会 THE TELECOMMUNICATION TECHNOLOGY COMMITTEE 本 書 は ( 社 ) 情 報 通 信 技 術 委 員 会

More information

California Subject Examinations for Teachers

California Subject Examinations for Teachers California Subject Examinations for Teachers TEST GUIDE JAPANESE SUBTEST I Sample Questions and Responses and Scoring Information Copyright 2015 Pearson Education, Inc. or its affiliate(s). All rights

More information

Graduate Program in Japanese Language and Culture (Master s Program) Application Instructions

Graduate Program in Japanese Language and Culture (Master s Program) Application Instructions Graduate Program in Japanese Language and Culture (Master s Program) Application Instructions For FY 2016 1. Objectives This program is designed to provide teachers of the Japanese-language working abroad

More information

TS-3GA-32.341(Rel10)v10.0.0 Telecommunication management; File Transfer (FT) Integration Reference Point (IRP); Requirements

TS-3GA-32.341(Rel10)v10.0.0 Telecommunication management; File Transfer (FT) Integration Reference Point (IRP); Requirements TS-3GA-32.341(Rel10)v10.0.0 Telecommunication management; File Transfer (FT) Integration Reference Point (IRP); Requirements 2011 年 6 月 22 日 制 定 一 般 社 団 法 人 情 報 通 信 技 術 委 員 会 THE TELECOMMUNICATION TECHNOLOGY

More information

Most EFL teachers in Japan find that there are groups of verbs which consistently

Most EFL teachers in Japan find that there are groups of verbs which consistently Results of a Corpus Study of LOOK, SEE, and WATCH Gregory C. Anthony Hachinohe University Reference Data: Anthony, G. C. (2012). Results of a Corpus Study of LOOK, SEE, and WATCH. In A. Stewart & N. Sonda

More information

7 myths about cars and free trade agreements

7 myths about cars and free trade agreements ECIPE PRESENTATION» 7 myths about cars and free trade agreements Hosuk Lee-Makiyama Co-Director, European Centre for International Political Economy (ECIPE) Myth #1 作 り 話 #1 Mythe #1 Foreign imports are

More information

第 9 回 仮 想 政 府 セミナー Introduction Shared Servicesを 考 える ~Old but New Challenge~ 東 京 大 学 公 共 政 策 大 学 院 奥 村 裕 一 2014 年 2 月 21 日

第 9 回 仮 想 政 府 セミナー Introduction Shared Servicesを 考 える ~Old but New Challenge~ 東 京 大 学 公 共 政 策 大 学 院 奥 村 裕 一 2014 年 2 月 21 日 第 9 回 仮 想 政 府 セミナー Introduction Shared Servicesを 考 える ~Old but New Challenge~ 東 京 大 学 公 共 政 策 大 学 院 奥 村 裕 一 2014 年 2 月 21 日 シェアードサービス(SS) ~Definition( 定 義 )~ 複 数 部 門 で 行 っている 同 類 の 業 務 を 一 つの 部 門 に 集 約

More information

Utilization & Promotion Activities of Cloud in Japan

Utilization & Promotion Activities of Cloud in Japan CloudAsia Utilization & Promotion Activities of Cloud in Japan 28th, October, 2015 ASP-SaaS-Cloud Consortium (ASPIC) http://www.aspicjapan.org/en/index.html 1 Agenda Current situation in Japan Cloud promotion

More information

EFL Information Gap Activities for Architecture Majors

EFL Information Gap Activities for Architecture Majors 東 洋 大 学 人 間 科 学 総 合 研 究 所 紀 要 第 10 号 (2009) 11-20 11 EFL Information Gap Activities for Architecture Majors Michael SCHULMAN * A large body of literature supports the notion that information gap activities,

More information

How To Run A Server On A Microsoft Cloud Server (For A Small Amount Of Money)

How To Run A Server On A Microsoft Cloud Server (For A Small Amount Of Money) 1SoftLayer 2WindowsServer2003 0 2013 8 t-sasaki@bit-surf.co.jp t-sasaki@bit-isle.co.jp BOE SoftLayer ID desktomo --- --- IT ISPDC CC ADSL3 SIer DC 5 ERP 2015 1 IT IT idc IT 200 140-0002 2-2-28 T 8F TEL

More information

さくらインターネット 研 究 所 上 級 研 究 員 日 本 Vyattaユーザー 会 運 営 委 員 松 本 直 人

さくらインターネット 研 究 所 上 級 研 究 員 日 本 Vyattaユーザー 会 運 営 委 員 松 本 直 人 2011 年 08 月 18 日 さくらインターネット 研 究 所 上 級 研 究 員 日 本 Vyattaユーザー 会 運 営 委 員 松 本 直 人 (C)Copyright 1996-2010 SAKURA Internet Inc. 現 在 起 こっているコト 従 来 のコンピューティング クラウド コンピューティング パブリック プライベートの 区 別 なくクラウドへ 移 行 中 仮 想

More information

Changing Views on Motivation in a Globalizing World

Changing Views on Motivation in a Globalizing World 32 The Language Teacher READERS FORUM Changing Views on Motivation in a Globalizing World Elizabeth Wadell Diablo Valley College, California April Shandor English Center, Oakland, California Given that

More information

Using the Moodle Reader Module to Facilitate an Extensive. Reading Program

Using the Moodle Reader Module to Facilitate an Extensive. Reading Program RESEARCH NOTE 41 Using the Moodle Reader Module to Facilitate an Extensive Reading Program Wayne Pennington Introduction Early attempts to incorporate Extensive Reading as a teaching technique can be traced

More information

DC DC φ φ DC φ φ AC φ φ φ φ φ φ φ 24V DC Class2 This device complies with Part 15 of the FCC Rules. Operation is subject to the following two conditions: (1 ) this device may not cause harmful interference,and

More information

SPECIFICATION. Not recommend for new design. MS6M00814. Power Integrated Module 7MBR15UF060 MS6M00814. Fuji Electric Device Technology Co.,Ltd.

SPECIFICATION. Not recommend for new design. MS6M00814. Power Integrated Module 7MBR15UF060 MS6M00814. Fuji Electric Device Technology Co.,Ltd. SPECIFICATION Device Name : Power Integrated Module Type Name : Spec. No. : 7MBR15UF6 MS6M814 D R A W N CHECKED CHECKED D A T E N A M E A P P R O V E D Dec.-- '4 Dec.-- '4 K. Komatsu O. Ikawa K. Yamada

More information

Teacher Training and Certificate System

Teacher Training and Certificate System Teacher Training and Certificate System 1. Teacher Training Teacher training in Japan started with the establishment of normal schools (schools for teacher training) in 1872. In 1886, a higher normal school

More information

Lithium-Ion Battery Pack for Stop & Start System *

Lithium-Ion Battery Pack for Stop & Start System * 特 集 特 集 Lithium-Ion Battery Pack for Stop & Start System * 宇 都 宮 大 和 Yamato UTSUNOMIYA 長 井 友 樹 Yuki NAGAI 片 岡 準 Jun KATAOKA 淡 川 拓 郁 Hirobumi AWAKAWA The automotive industry places a high importance on

More information

Upper Secondary Education in Japan

Upper Secondary Education in Japan Upper Secondary Education in Japan The role of upper secondary education in Japan is to provide higher general education and specialized education according to students mental and physical development

More information

Abbreviations. Learning Goals and Objectives 学 習 到 達 目 標. Structure of Presentation

Abbreviations. Learning Goals and Objectives 学 習 到 達 目 標. Structure of Presentation Learning Goals and Objectives 学 習 到 達 目 標 Accrediting Medical Schools: Lessons learned from Liaison Committee on Medical Education (LCME) process in the United States 医 学 部 の 認 証 評 価 : 米 国 LCMEの 認 証 評

More information

Melonbooks DL Howto How to register, purchase and enjoy Doujin contents that are sold in Melonbooks DL and shut-out disgusting excuse of reproduction.

Melonbooks DL Howto How to register, purchase and enjoy Doujin contents that are sold in Melonbooks DL and shut-out disgusting excuse of reproduction. Melonbooks DL Howto How to register, purchase and enjoy Doujin contents that are sold in Melonbooks DL and shut-out disgusting excuse of reproduction. Table of Contents 1 Prerequisites...3 1.1 Japanese

More information

BULBOUS CELL MEDIA GROUP

BULBOUS CELL MEDIA GROUP COMPANY INFO BULBOUS CELL MEDIA GROUP Unique media solutions that will impress your customers OUR SERVICES WHO WE ARE E stablished in 2007, BC Media Group provides digital and print media services from

More information

Effect of Captioning Lecture Videos For Learning in Foreign Language 外 国 語 ( 英 語 ) 講 義 映 像 に 対 する 字 幕 提 示 の 理 解 度 効 果

Effect of Captioning Lecture Videos For Learning in Foreign Language 外 国 語 ( 英 語 ) 講 義 映 像 に 対 する 字 幕 提 示 の 理 解 度 効 果 Effect of Captioning Lecture Videos For Learning in Foreign Language VERI FERDIANSYAH 1 SEIICHI NAKAGAWA 1 Toyohashi University of Technology, Tenpaku-cho, Toyohashi 441-858 Japan E-mail: {veri, nakagawa}@slp.cs.tut.ac.jp

More information

AUTOMOBILE LIABILITY SECURITY ACT

AUTOMOBILE LIABILITY SECURITY ACT AUTOMOBILE LIABILITY SECURITY ACT & RELATED CABINET ORDER, MINISTERIAL ORDINANCE AND NOTIFICATION Including: Policy Conditions for Automobile Liability Insurance As of May 2, 2011 Translated and published

More information

外 部 委 託 が 進 む 中 での 地 方 自 治 体 職 員 の 雇 用 の 保 護 PROTECTION OF EMPLOYMENT FOR LOCAL GOVERNMENT WORKERS UNDER OUTSOURCING

外 部 委 託 が 進 む 中 での 地 方 自 治 体 職 員 の 雇 用 の 保 護 PROTECTION OF EMPLOYMENT FOR LOCAL GOVERNMENT WORKERS UNDER OUTSOURCING 外 部 委 託 が 進 む 中 での 地 方 自 治 体 職 員 の 雇 用 の 保 護 PROTECTION OF EMPLOYMENT FOR LOCAL GOVERNMENT WORKERS UNDER OUTSOURCING 概 要 保 守 党 のサッチャー 政 権 は 1980 年 地 方 自 治 体 計 画 土 地 法 と 1988 年 地 方 自 治 法 を 通 して UKでの 公 共

More information

この 育 児 休 業 介 護 休 業 等 育 児 又 は 家 族 介 護 を 行 う 労 働 者 の 福 祉 に 関 する 法 律 の 翻 訳 は 平 成 十 六 年 法 律 第 百 六 十 号 までの 改 正 ( 平 成 17 年 4 月 1 日 施 行 )について 法 令 用 語 日 英 標 準 対 訳 辞 書 ( 平 成 18 年 3 月 版 )に 準 拠 して 作 成 したものです なお この

More information

Industrial Accident Compensation Insurance Application Guidance for Foreign Workers <Volume 2>

Industrial Accident Compensation Insurance Application Guidance for Foreign Workers <Volume 2> [ For foreign workers in Japan ] 英 語 版 Industrial Accident Compensation Insurance Application Guidance for Foreign Workers General outline of Industrial Accident Compensation Insurance Details

More information

For victims of traffic accidents

For victims of traffic accidents For victims of traffic accidents 交 通 事 故 に 遭 われた 方 へ (Guideline for victims) ( 被 害 者 の 手 引 ) Name( 名 前 ) Police Station( 警 察 署 ) Contact( 担 当 者 ) Telephone Number( 電 話 番 号 ) Preface This leaflet has been

More information

Current Situation of Research Nurse Education and Future Perspectives in Japan

Current Situation of Research Nurse Education and Future Perspectives in Japan Current Situation of Research Nurse Education and Future Perspectives in Japan Eriko Aotani Clinical Trials Coordinating Center The Kitasato Institute 1 Who are involved in Clinical Trials? Patients. Others

More information

New Publication of IIMA Global Market Volatility Index

New Publication of IIMA Global Market Volatility Index 2013.10.04 (No.28, 2013) New Publication of IIMA Global Market Volatility Index Masaharu Takenaka takenaka@econ.ryukoku.ac.jp Professor, Department of Economics, Ryukoku University Visiting Research Fellow,

More information

Procedures to apply for Doctoral Degree

Procedures to apply for Doctoral Degree Procedures to apply for Doctoral Degree Partly revised on March 5, 2015 Graduate School of Global Information and Telecommunication Studies, Waseda University 1. Doctorate Requirements The requirements

More information

Design Patterns. Elemental Microformats. Compound Microformats KEY. Datetime Pattern <abbr class="foo"

Design Patterns. Elemental Microformats. Compound Microformats KEY. Datetime Pattern <abbr class=foo Elemetal Microformats rel="" rel="acquaitace" rel="fried" rel="co-residet" rel="eighbor" rel="paret" rel="ki" Compoud Microformats ="" ="" ="aget" ="" (ISO Date) ="" ="" ="" ="" ="" ="" ="" ="" ="" ="hoorific-prefix"

More information

第 2 回 Linux-HA Japan 勉 強 会

第 2 回 Linux-HA Japan 勉 強 会 第 2 回 Linux-HA Japan 勉 強 会 2011 年 6 月 3 日 NTTデータ 先 端 技 術 株 式 会 社 池 田 淳 子 本 日 のお 題 crm の 歩 き 方 目 次 1.crm シェルとは 2.crm シェルのインストール 3.crm シェルでリソースを 設 定 する 4.crm シェルでクラスタを 管 理 する 1. crm シェルとは crm シェルとは acemakerに

More information

Neuroscience and Psychiatry 神 経 科 学 と 精 神 医 学

Neuroscience and Psychiatry 神 経 科 学 と 精 神 医 学 Neuroscience and Psychiatry 神 経 科 学 と 精 神 医 学 Ian Paul Everall Cato Professor and Head Department of Psychiatry University of Melbourne North West Mental Health The Talk 本 日 の 話 題 What are we trying to

More information

ใบสม ครเข าร วมโครงการน ส ตแลกเปล ยนมหาว ทยาล ยเกษตรศาสตร

ใบสม ครเข าร วมโครงการน ส ตแลกเปล ยนมหาว ทยาล ยเกษตรศาสตร ใบสม ครเข าร วมโครงการน ส ตแลกเปล ยนมหาว ทยาล ยเกษตรศาสตร ส วนท 1 รายละเอ ยดโครงการแลกเปล ยน มหาว ทยาล ยค ส ญญาท สม ครเข าร วมโครงการแลกเปล ยน...ประเทศ... ภาคการศ กษาท สม คร เมษายน 2557 ก นยายน 2557 ต

More information

Agenda. About Gengo. Our PostgreSQL usage. pgpool-ii. Lessons

Agenda. About Gengo. Our PostgreSQL usage. pgpool-ii. Lessons Agenda About Gengo Our PostgreSQL usage pgpool-ii Lessons Agenda About Gengo Our PostgreSQL usage pgpool-ii Lessons Who I am 冨 田 陽 介 Backend and Ops Engineer Experience Ops role for the first time at Gengo,

More information

Quality of. Leadership. Quality Students of Faculty. Infrastructure

Quality of. Leadership. Quality Students of Faculty. Infrastructure 217 218 Quality of Quality of Leadership Quality of Quality of Quality Students of Faculty Quality of Infrastructure 219 220 Quantitative Factor Quantitative Analysis Meta Synthesis Informal Interviews

More information

LEAVING CERTIFICATE 2011 MARKING SCHEME JAPANESE HIGHER LEVEL

LEAVING CERTIFICATE 2011 MARKING SCHEME JAPANESE HIGHER LEVEL Coimisiún na Scrúduithe Stáit State Examinations Commission LEAVING CERTIFICATE 2011 MARKING SCHEME JAPANESE HIGHER LEVEL LISTENING COMPREHENSION Part A: 21 marks (1/ if answered in Japanese, romaji or

More information

Ibaraki University. Graduate School of Agriculture. (Master s Program)

Ibaraki University. Graduate School of Agriculture. (Master s Program) Ibaraki University 茨 城 大 学 Graduate School of Agriculture 大 学 院 農 学 研 究 科 (Master s Program) 修 士 課 程 Application Guidelines for Academic Year 2015 平 成 27 年 度 学 生 募 集 要 項 (October Admissions) 10 月 入 学 Special

More information

Kumiko Sakamoto, Ms., Acad, Social Science, Japan: Women and men in changing societies: Gender division of labor in rural southeast Tanzania [A2]

Kumiko Sakamoto, Ms., Acad, Social Science, Japan: Women and men in changing societies: Gender division of labor in rural southeast Tanzania [A2] Kumiko Sakamoto, Ms., Acad, Social Science, Japan: Women and men in changing societies: Gender division of labor in rural southeast Tanzania [A2] Contents Summary Introduction: Production and reproduction

More information

Preschool Education and Care in Japan

Preschool Education and Care in Japan Preschool Education and Care in Japan Preschool education is called pre-primary education in the ISCED (International Standard Classification of Education, designed by UNESCO) and classified as level 0.

More information

The Course of Study is the series of guidelines for subject

The Course of Study is the series of guidelines for subject The Language Teacher Feature Article 3 Behind MEXT s new Course of Study Guidelines Keywords Course of Study Guidelines, MEXT, Communicative Language Teaching (CLT) in Japan The new Course of Study Guidelines

More information

Research on Support for Persons with Mental Disability to Make Transition to Regular Employment

Research on Support for Persons with Mental Disability to Make Transition to Regular Employment Research on Support for Persons with Mental Disability to Make Transition to Regular Employment (Research Report No.108) Summary Key Words Persons with Mental Disabilities, Step-Up Employment Program for

More information

JAXA's research strategy to orbital debris mitigation

JAXA's research strategy to orbital debris mitigation JAXA's research strategy to orbital debris mitigation March 4, 2016 International Symposium on Ensuring Stable Use of Outer Space Ryoichi IMAI, JAXA 1 CONTENTS 1. Background 2. R&D activities for Space

More information

JF Standard for Japanese-Language Education 2010

JF Standard for Japanese-Language Education 2010 JF Standard for Japanese-Language Education 2010 JF Standard for Japanese-Language Education 2010 The Japan Foundation JF STANDARD FOR JAPANESE-LANGUAGE EDUCATION 2010 Table of Contents Introduction...

More information

Educational Administration in Japan

Educational Administration in Japan Educational Administration in Japan This article presents an overview of the development of educational administration in Japan since the introduction of a modern education system, and shows how the system

More information

The active use and exploitation of Microsoft's Application Compatibility Framework. Jon Erickson

The active use and exploitation of Microsoft's Application Compatibility Framework. Jon Erickson The active use and exploitation of Microsoft's Application Compatibility Framework Jon Erickson Me Jon Erickson (@2130706433) Sr. Labs Engineer at isight Partners Not Me! I m not that Jon Erickson J Although

More information

To disseminate TRIZ into the business world

To disseminate TRIZ into the business world The 10th TRIZ symposium To disseminate TRIZ into the business world Koji Tsumagari (LOGO Ltd.) Masaaki Sakai (LOGO Ltd.) September 12, 2014 1 To disseminate TRIZ into the business world Koji Tsumagari

More information

Linux Foundation Automotive Summit - Yokohama, Japan

Linux Foundation Automotive Summit - Yokohama, Japan It s not an embedded Linux distribution It creates a custom one for you. The Yocto Project Linux Foundation Automotive Summit - Yokohama, Japan Tracey M. Erway The Yocto Project Advocacy and Communications

More information

prefecture key (7) (9) (10) (15) (17) (18) (26) (32) (34) (35) (39) (41)

prefecture key (7) (9) (10) (15) (17) (18) (26) (32) (34) (35) (39) (41) prefecture key (7) fukushima minowamon kimoto suehiro (9) tochigi matsuno kotobuki (10) gunma oze no yukidoke (15) niigata hakkaisan (17) ishikawa morimoto junmai morimoto junmai ginjo morimoto junmai

More information

Act on Special Measures Concerning Nuclear Emergency Preparedness (Act No. 156 of December 17, 1999)

Act on Special Measures Concerning Nuclear Emergency Preparedness (Act No. 156 of December 17, 1999) この 原 子 力 災 害 対 策 特 別 措 置 法 の 翻 訳 は 平 成 18 年 法 律 第 118 号 までの 改 正 ( 平 成 19 年 1 月 9 日 施 行 )について 法 令 用 語 日 英 標 準 対 訳 辞 書 ( 平 成 19 年 3 月 版 )に 準 拠 して 作 成 したものです なお この 法 令 の 翻 訳 は 公 定 訳 ではありません 法 的 効 力 を 有 するのは

More information

Grade 9 Language and Literature (English) Course Description

Grade 9 Language and Literature (English) Course Description Grade 9 Language and Literature (English) Course Description Unit 1 - The Shape of Things We Say (Love and War poetry) Global Context: Personal and cultural expression Key Concept: Communication Related

More information

HIF 2015 Japanese Language and Japanese Culture Program

HIF 2015 Japanese Language and Japanese Culture Program HIF 2015 Japanese Language and Japanese Culture Program Homestay in Hakodate Contents Purpose and Attitude for Homestay, Conditions 1 Host Family Placement, Arriving at Your New Home, Important Manners

More information

Unwillingness to Use Social Networking Services for Autonomous Language Learning among Japanese EFL Students

Unwillingness to Use Social Networking Services for Autonomous Language Learning among Japanese EFL Students 55 Unwillingness to Use Social Networking Services for Autonomous Language Learning among Japanese EFL Students ABE Emika, UEDA Mami, SUGINO Toshiko 自 律 学 習 のためのSNS 利 用 に 対 する 日 本 人 大 学 生 の 消 極 的 態 度 阿

More information

For thousands of years, teachers have looked for products to assist them in educating

For thousands of years, teachers have looked for products to assist them in educating Effective Use of Tablet Computers in EFL Pedagogy Adrian Leis Miyagi University of Education Reference Data: Leis, A. (2014). Effective use of tablet computers in EFL pedagogy. In N. Sonda & A. Krause

More information

Visitors International

Visitors International www.vrn.de Visitors International Tarif 1/2015 Einfach ankommen. Welcome to the Rhine Neckar Region! There is a lot to see and many great experiences to be had so why not jump on a VRN bus, streetcar/tram

More information

Green Solution with Simegy

Green Solution with Simegy 要 旨 オフィス 環 境 における 複 合 機 やプリンターの 消 費 電 力 の 見 える 化 や 消 費 電 力 の 削 減 のためのグリーン ソリューションが 近 年 強 く 求 められている 富 士 ゼ ロックスは 複 合 機 やプリンターを 管 理 / 活 用 するた めの ApeosWare Management Suite のようなソフ トウェアに 対 して ゼロックスの Simegy

More information

Mojolicious. Marcos Rebelo (oleber@gmail.com)

Mojolicious. Marcos Rebelo (oleber@gmail.com) Mojolicious Marcos Rebelo (oleber@gmail.com) Mojolicious An amazing real-time web framework supporting a simplified single file mode through Mojolicious::Lite. Very clean, portable and Object Oriented

More information

The existence of credential effects in Canadian nursing education; Quebec versus the rest of Canada

The existence of credential effects in Canadian nursing education; Quebec versus the rest of Canada タイトル 著 者 The existence of credential effec nursing education : Quebec versus Canada Lee, Heyung-Jik 引 用 北 海 商 科 大 学 論 集, 2(1): 1-9 発 行 日 2013-02 The existence of credential effects in Canadian nursing

More information

Interest in the relationship between religion and language

Interest in the relationship between religion and language The Language Teacher FEATURE ARTICLE 5 Religion in the ELT classroom: Teachers perspectives The appropriateness of certain discussion topics in language learning settings is an important consideration

More information

MIB Specification. WJ-HD600 Series. Document Version: 1.02 2011. March.10. Panasonic System Networks Co.,Ltd.

MIB Specification. WJ-HD600 Series. Document Version: 1.02 2011. March.10. Panasonic System Networks Co.,Ltd. MIB Specification WJ-HD600 Series Document Version: 1.02 2011. March.10 Panasonic System Networks Co.,Ltd. Version History Version 0.02 Date of issue 2011.March.1 6 First Version Description Limitation

More information

TS-3GA-32.341(Rel7)v7.0.0 Telecommunication management; File Transfer (FT) Integration Reference Point (IRP): Requirements

TS-3GA-32.341(Rel7)v7.0.0 Telecommunication management; File Transfer (FT) Integration Reference Point (IRP): Requirements TS-3GA-32.341(Rel7)v7.0.0 Telecommunication management; File Transfer (FT) Integration Reference Point (IRP): Requirements 2008 3 31 THE TELECOMMUNICATION TECHNOLOGY COMMITTEE 本 書 は ( 社 ) 情 報 通 信 技 術 委

More information

アジアにおける 保 険 研 究 の 動 向

アジアにおける 保 険 研 究 の 動 向 アジアにおける 保 険 研 究 の 動 向 神 谷 信 一 南 洋 理 工 大 学 Nanyang Technological University Singapore 2015 年 11 月 20 日 東 京 内 容 NTU Insurance Risk and Finance Research Centre (IRFRC) Taiwan Risk and Insurance Association

More information

GRADUATE SCHOOL OF INTERNATIONAL RELATIONS

GRADUATE SCHOOL OF INTERNATIONAL RELATIONS GRADUATE SCHOOL OF INTERNATIONAL RELATIONS INTERNATIONAL UNIVERSITY OF JAPAN HANDBOOK for 1-year Program Students who enrolled in THE ACADEMIC YEAR 2014-2015 CALENDAR OF THE ACADEMIC YEAR 2014-2015 FALL

More information

Shigeo Sugimoto. Tsukuba University, Japan

Shigeo Sugimoto. Tsukuba University, Japan Constructing a Records Archiving System Using Off- the-shelf Tools - A Lightweight Approach IWAW 2007 Jan Askhoj,, Mitsuharu Nagamori, Shigeo Sugimoto Tsukuba University, Japan Outline Problems with corporate

More information

Employment Security Act (Act No. 141 of 1947)

Employment Security Act (Act No. 141 of 1947) この 職 業 安 定 法 の 翻 訳 は 平 成 十 九 年 法 律 第 七 十 九 号 までの 改 正 ( 平 成 19 年 10 月 1 日 施 行 )について 法 令 用 語 日 英 標 準 対 訳 辞 書 ( 平 成 19 年 3 月 版 )に 準 拠 して 作 成 し たものです なお この 法 令 の 翻 訳 は 公 定 訳 ではありません 法 的 効 力 を 有 するのは 日 本 語

More information

As the use of computers is becoming a more integral part of learning environments,

As the use of computers is becoming a more integral part of learning environments, JALT2009 Conference Proceedings 506 Online multifunctional gradebook for busy teachers Raymond Wong Kinki University Nathan Krug Saitama University Frank Tucker Kansai Gaidai University Patrick Rates Ritsumeikan

More information

Master of Tropical Medicine

Master of Tropical Medicine PROSPECTUS 2014-2015 Master of Tropical Medicine Graduate School of Biomedical Sciences, Nagasaki University Admission Policy Applicants for this school, designed to educate students who will lead the

More information

Addressing Japan s Healthcare Challenges with Information Technology

Addressing Japan s Healthcare Challenges with Information Technology a report of the csis global health policy center Addressing Japan s Healthcare Challenges with Information Technology recommendations from the u.s. experience Author John D. Halamka August 2011 a report

More information

Study on the Diagnostics and Projection of Ecosystem Change Associated with Global Change

Study on the Diagnostics and Projection of Ecosystem Change Associated with Global Change Chapter 1 Earth Science Study on the Diagnostics and Projection of Ecosystem Change Associated with Global Change Project Representative Sanae Chiba Authors Eiji Watanabe Maki Noguchi Aita Akio Ishida

More information

Getting Started. A guide for newly qualified translators

Getting Started. A guide for newly qualified translators Getting Started A guide for newly qualified translators 1 GETTING STARTED WITH GENGO Gengo is an online, crowdsourced translation service. This guide is designed for newly qualified Gengo Translators and

More information