Heroku Outside

Size: px
Start display at page:

Download "Heroku Outside"

Transcription

1 Heroku Inside

2 Heroku Outside

3 Dining

4 Living room

5 Bar

6 Basement

7 Heroku Inside Ayumu Aizawa Heroku Inc., Developer Marketing Advocate

8 Safe harbor: Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forwardlooking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services. The risks and uncertainties referred to above include but are not limited to risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of intellectual property and other litigation, risks associated with possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-Q for the most recent fiscal quarter ended April 30, This documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site. Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.

9 自 己 紹 介 Ayumu Aizawa Heroku Salesforce.com Developer Marketing Heroku Fb:

10 Heroku

11 What is Heroku? Why Heroku? Who are using Heroku? How to use Heroku? When should I try Heroku? Where are resources of Heroku?

12 What is Heroku? Herokuは Ruby Java Python Scala Node.js Clojure など 複 数 のプログラミング 言 語 フレームワークに 対 応 した クラウドアプリケ ーションの 開 発 を 支 援 する PaaS(Platformas-a-Service)です

13 What is Heroku Agile Polyglot Tool 24h 2-4w

14 Why Heroku? Herokuは 優 れた 開 発 者 の 生 産 性 を 最 大 化 するプラットフォーム サーバーの 存 在 を 意 識 しなくてよい スケーラビリティについて 考 慮 しなくてよい プロセス 単 位 で 可 視 化 できる 信 頼 性 可 用 性 の 高 いアーキテクチャ アドオンシステムによる 機 能 拡 張

15 The 12 Factor App Herokuは 良 いWebサービスをつくるための 方 法 論 をカバーしている Codebase Dependencies Config Backing Services Build, release, run Processes Port binding Concurrency Disposability Dev/prod parity Logs Admin processes

16 Sample App (sinatra) $ ls Gemfile Procfile app.rb config.ru $ cat Gemfile source gem sinatra gem thin $ cat config.ru require./app.rb run Sinatra::Application $ cat app.rb require sinatra get / do hello world end $ cat Procfile web: bundle exec thin p $PORT e $RACK_ENV start

17 Deploy to Heroku $ git init Initialized empty Git repository in /path/to/app/.git/ $ git add A $ git commit m initial commit [master (root-commit) 5cf507d] initial commit 4 files changed, 14 insertions(+), 0 deletions(-) create mode Gemfile create mode Procfile create mode app.rb create mode config.ru $ heroku apps:create s cedar git@heroku.com Git remote heroku added $ git push herokumaster

18 How to use Heroku? Herokuクライアントツールをインストール Heroku Toolbelt

19 Who are using Heroku? コンシューマー 向 けWebアプリケーション ソーシャル メディア 連 携 サービス 動 画 配 信 サービス スマートフォンゲームのサーバーサイド

20 When should I try Heroku? Now!

21 Where are resources of Heroku? 導 入 事 例 sucsess.heroku.com プランと 価 格 heroku.com/pricing 技 術 資 料 サポート devcenter.heroku.com ニュース news.heroku.com オフィシャルブログ blog.heroku.com ユーザーコミュニティ 困 ったときは

22 Heroku Inside

23 Architecture Overview User Elastic Load barancer Control Surface APIs Dyno Manifold Developer Logprex

24 Architecture Overview Dyno Herokuアーキテクチャを 理 解 するために 最 も 重 要 な 要 素 のひとつ

25 Dyno

26 What is Dyno? Dyno Features How s Dyno created

27 What is Dyno 通 常 のサーバーにおけるプロセスとほぼ 同 じ Batch Process Background Process Web Process いろいろな 役 割 (Process Type)のDynoがある

28 What is Dyno ひとつひとつのDynoには 完 全 な 実 行 環 境 が 含 まれる アプリケーション 本 体 メモリ 設 定 ( 環 境 変 数 など) 依 存 ライブラリ アプリケーション 実 行 環 境 (アプリケーション コンテナなど)

29 Dyno Features Elasticity 柔 軟 な 拡 張 縮 退 が 可 能 Intelligent Routing インテリジェントな 経 路 選 択 Process Management プロセス 管 理 Distribution & Redundancy 分 散 処 理 と 冗 長 化

30 Elasticity プロセス 単 位 での 拡 張 縮 退 制 御 が 可 能 heroku ps:scale web=5

31 Elasticity プロセス 単 位 での 拡 張 縮 退 制 御 が 可 能 heroku ps:scale web=1

32 Intelligent Routing Routing Mesh による 適 切 な 経 路 選 択

33 Process management 不 安 定 になったDynoは 自 動 的 に 再 起 動 される

34 Process management 不 安 定 になったDynoは 自 動 的 に 再 起 動 される

35 Distribution & Redundancy それぞれのDynoはAWS 上 に 分 散 配 置 され 完 全 に 独 立 したリソースを 使 用 している

36 How s Dyno created

37 Procfile Dyno = アプリケーションの 実 行 プロセス アプリケーションをリリースした 際 に Procfileの 定 義 に 基 づいて 生 成 される web: bundle exec rails server -p $PORT -e $RACK_ENV worker: bundle exec rake job:work web worker

38 Dyno scaling Process Type 毎 に 独 立 して 拡 張 可 能 web worker clock

39 Slug Slug = Dynoの 元 になるオブジェクト アプリケーションコードをpushした 際 に 各 アプリケーションごとに 生 成 される

40 Slug compiler pushされたコードからslugを 生 成 する 言 語 フレームワーク 独 特 のファイル 有 無 によって 実 行 環 境 を 判 断 -buildpackオプションにより 明 示 的 に 指 定 することも 可 能

41 Conclusion

42 Conclusion Herokuはアプリケーション 開 発 者 の 生 産 性 を 高 めることにフォーカスしたPaaS アプリケーションの 全 ての 動 作 環 境 を 含 む Dyno 単 位 でプロセス 制 御 が 可 能 デプロイされたコードはSlugオブジェクトに 変 換 され アプリケーションごとに 永 続 化 さ れる

43 When should I try Heroku? Now!

44 Where are resources of Heroku? 導 入 事 例 sucsess.heroku.com プランと 価 格 heroku.com/pricing 技 術 資 料 サポート devcenter.heroku.com ニュース news.heroku.com オフィシャルブログ blog.heroku.com ユーザーコミュニティ 困 ったときは

45 Thank you!

Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involv

Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involv /mokamoto @mitsuhiro in/mitsuhiro Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties,

More information

PowerPoint Presentation

PowerPoint Presentation Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such

More information

Salesforce DX.key

Salesforce DX.key Salesforce DX とは? Salesforceの開発生産性向上のための新機能 Mitsuhiro Okamoto Senior Developer Evangelist Trail blazer @mitsuhiro mokamoto@salesforce.com Forward-Looking Statements Statement under the Private Securities

More information

Dreamforce 12 Template

Dreamforce 12  Template Salesforce Marketing Cloud Marketing Cloud /SalesforceJapan @SalesforceJapan Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain

More information

JP-DeveloperKeynote_J_Share.key

JP-DeveloperKeynote_J_Share.key App Cloud @quintonwall qwall@salesforce.com Statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties,

More information

PowerPoint Presentation

PowerPoint Presentation database.com/force.com/heroku Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks,

More information

Using the template

Using the template 業務を改革する 真のソーシャル プラットフォーム ~ Chatter & Communities ~ 株式会社セールスフォース ドットコムリード ソリューション エンジニア大川宗之 /salesforce @SalesforceJapan Safe Harbor Safe harbor statement under the Private Securities Litigation Reform

More information

Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involv

Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involv Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such

More information

Salesforce - Corporate Presentation Template

Salesforce  - Corporate Presentation Template Renewals at Salesforce セールスフォースにおけるリニューアル業務の推進 リニューアルマネジメントグループ Forward-Looking Statements Statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking

More information

Salesforce - Corporate Presentation Template

Salesforce  - Corporate Presentation Template デジタル時代の顧客を満足させる 小売企業のあり方とは メガネブランドZoffがiPadで実現する店舗業務改革の裏側 株式会社インターメスティック Zoff運営会社 株式会社セールスフォース ドットコム 情報システム管理部 セールスエンジニアリング本部 部長 プリンシパルソリューションエンジニア 一ノ瀬 光裕 氏 鷺島 淳一 Forward-Looking Statements Statement under

More information

Salesforce

Salesforce Salesforce World Tour Tokyo 2015 Microsoft と Salesforce の連携による新しいワークスタイル変革の実現 2015 年 12 月 4 日 株式会社セールスフォース ドットコム アライアンス本部執行役員郷司滋雄 Forward-Looking Statement Statement under the Private Securities Litigation

More information

Welcome to

Welcome to Welcome to Salesforce for Marketing Forward-Looking Statements Statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve

More information

D-1_Developer_Keynote_J_Jun9.key

D-1_Developer_Keynote_J_Jun9.key SELL. SERVICE. MARKET. SUCCEED Developer Keynote 米国セールスフォース ドットコム プラットフォームデベロッパーマーケティング担当 VP アダム セリグマン @adamse v3 Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of

More information

More SKO Notes

More SKO Notes 急 成 長 企 業 のトップ 営 業 マンが 教 える 数 字 を 叩 き 出 す ための 営 業 管 理 の 手 法 とは? ~ 年 平 均 成 長 率 約 40% セールスフォース ドットコムの 現 役 トップ 営 業 マンが 実 践 する SFA の 使 い 方 ~ 2012 年 12 月 13 日 株 式 会 社 セールスフォース ドットコム コマーシャル 営 業 本 部 前 川 洋 平 Safe

More information

1-2_MarketingCloudSession_ _共有.key

1-2_MarketingCloudSession_ _共有.key Salesforce Marketing Cloud One to One Trail blazer Forward-Looking Statements Statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements

More information

Salesforce - Corporate Presentation Template

Salesforce  - Corporate Presentation Template Welcome to the Age of the Customer オムニチャネル戦略による顧客ロイヤリティの向上 Service Cloud スペシャリスト 羽富健次 1 Forward-Looking Statements Statement under the Private Securities Litigation Reform Act of 1995: This presentation

More information

Salesforce - Corporate Presentation Template

Salesforce  - Corporate Presentation Template Welcome to the Age of the Customer 新しいB2Bマーケティングのカタチ - Pardot 最新機能 & 事例 セールスフォース ドットコム マーケティング本部 プロダクトマーケティング シニアマネージャー 田崎 純一郎 プロダクトマーケティング マネージャー 秋津 望歩 Forward-Looking Statements Statement under the Private

More information

WT Service Cloud Breakout 当社分のみ.key

WT Service Cloud Breakout 当社分のみ.key "これからのカスタマーサービス" を 今すぐ実現 セールスフォース ドットコム マーケティング本部 プロダクトマーケティング 風間 彩 Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation contains forward-looking

More information

Salesforce - Corporate Presentation Template

Salesforce  - Corporate Presentation Template 顧客メールアドレスのデータを更に活用! 簡単に始められるメールキャンペーン 作田文樹サクセススペシャリスト 福代奈央サクセススペシャリスト 自己紹介 作田文樹カスタマ サクセス部 サクセススペシャリスト 経歴 IT 業界で 20 年 Salesforce で 10 年間の経験 業務アプリケーション導入プロジェクトのテクニカルリード サポートのチームリード 大規模顧客のアプリケーション運用支援などを経験

More information

Forward-Looking Statement Statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statemen

Forward-Looking Statement Statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statemen Salesforce as an IDaaS (Identity as a Service) / Salesforce with IDaaS SalesforceのIDaaSとしての活用とIDaaSとの連携 池部 敦巳 河村 嘉之 Customer Centric Engineering Forward-Looking Statement Statement under the Private Securities

More information

Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements

Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements Salesforceカスタマイズテクニック 毎日の業務が楽になる便利機能のご紹介 2007年11月2日 株式会社セールスフォース ドットコム カスタマーサクセスマネジメント部 カスタマーサクセスマネージャー 山下 康彦 セールスエンジニア部 セールスエンジニア 松尾 吏 Safe Harbor Safe harbor statement under the Private Securities Litigation

More information

2 Forward- Looking Statements Statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward- looking sta

2 Forward- Looking Statements Statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward- looking sta 40分でわかる Salesforceことはじめ 株式会社セールスフォース ドットコム セールスディベロップメント CBU- BDRマネージャー 成 田 麗麗 子 2 Forward- Looking Statements Statement under the Private Securities Litigation Reform Act of 1995: This presentation may

More information

Salesforce

Salesforce お 客 様 パートナーとつながり ビジネスモデルを 変 革 するコミュニティデザイン 大 川 宗 之 リードソリューションエンジニア 株 式 会 社 セールスフォース ドットコム mohkawa@salesforce.com Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of

More information

SWTT Slides for distribution˛

SWTT Slides for distribution˛ これはやったらダメ設計におけるアンチパターン サクセスエンゲージメントマネージャ 城祐介 公開出来ない画像は削除しております Forward-Looking Statements Statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking

More information

Salesforce - Corporate Presentation Template

Salesforce  - Corporate Presentation Template Salesforce 人気の便利機能 Top10 2016/12/14 Salesforce World Tour Tokyo 2016 臼井規恵カスタマーサクセスマネージャー Forward-Looking Statements Statement under the Private Securities Litigation Reform Act of 1995: This presentation

More information

Salesforce - Corporate Presentation Template

Salesforce  - Corporate Presentation Template Day 2 Breakout Session 2-4 [B2Bマーケター向けセッション] 新しいカタチで顧客とつながる Salesforce for B2B Marketing 廣見剛利氏カンパニー長株式会社マックスヒルズ 小池智和氏代表取締役 CEO tobe マーケティング株式会社 田崎純一郎 秋津望歩マーケティング本部セールスフォース ドットコム Forward-Looking Statements

More information

Salesforce - Corporate Presentation Template

Salesforce  - Corporate Presentation Template Welcome to the Age of the Customer Salesforce Summer 2016 Tokyo Salesforce の歩き方 株式会社セールスフォース ドットコムカスタマーサクセス本部コマーシャルサクセス部カスタマーサクセスマネジャー 飯島 祥史 Forward-Looking Statements Statement under the Private Securities

More information

(Microsoft PowerPoint - Summer

(Microsoft PowerPoint - Summer Summer 09 新 機 能 のご 紹 介 1 Safe Harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties,

More information

Salesforce - Corporate Presentation Template

Salesforce  - Corporate Presentation Template オムニチャネル時代のコールセンターのカタチ 新たな顧客接点の構築へ 株式会社セールスフォース ドットコムプロダクトマーケティング大森浩生 Forward-Looking Statements Statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking

More information

IIJ Technical WEEK 2013 - アプリ開発を楽にするRuby PaaS「MOGOK」について

IIJ Technical WEEK 2013 - アプリ開発を楽にするRuby PaaS「MOGOK」について Ruby PaaS MOGOK 2013/11/19 1 IIJ PaaS MOGOK MOGOK PaaS 2 IIJ PaaS MOGOK PaaS MOGOK MOGOK 3 IIJ PaaS 4 IIJ Internet, Backbone, Mobile IIJ GIO 5 IIJ IaaS IIJ GIO SaaS PaaS 6 PaaS Platform

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション さらに 成 長 するためには 何 が 必 要 か 新 しくなったSales Cloud1で これまでできなかったことを 速 く 簡 単 に 株 式 会 社 セールスフォース ドットコム マーケティング 本 部 プロダクトマーケティングシニアマネージャー 田 崎 純 一 郎 株 式 会 社 セールスフォース ドットコム コマーシャル セールスエンジニアリング 本 部 プリンシパルセールスエンジニア 皆

More information

IIJ GIO, SaaS, MOGOK

IIJ GIO, SaaS, MOGOK Ruby PaaS MOGOK awazu@iij.ad.jp 2013/02/23 IIJ GIO, SaaS, MOGOK What s MOGOK http://mogok.jp/ What s PaaS? What s MOGOK? MOGOK What s PaaS? MOGOK... What s Cloud? IaaS PaaS SaaS XaaS What s IaaS? Amazon

More information

戦略的提携について_Press Conference2

戦略的提携について_Press Conference2 *1 = 136.38 ()1 = 105.64 ソフトバンクの原点 10 IoT時代のキードライバー 13 1,791 (15) 578 (6.6) ARMテクノロジー より多くのARMテクノロジーが先進的製品に採用 - プロセッサー マルチメディアIPからソフトウェアまで アプリケーションプロセッサー セルラーモデム タッチスクリーン & センサーハブ WiFi カメラ SIM

More information

YUHO

YUHO -1- -2- -3- -4- -5- -6- -7- -8- -9- -10- -11- -12- -13- -14- -15- -16- -17- -18- -19- -20- -21- -22- -23- -24- -25- -26- -27- -28- -29- -30- -31- -32- -33- -34- -35- -36- -37- -38- -39- -40- -41- -42-

More information

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that

More information

ユーザーズマニュアル

ユーザーズマニュアル 1 2 3 4 This product (including software) is designed under Japanese domestic specifications and does not conform to overseas standards. NEC *1 will not be held responsible for any consequences resulting

More information

,,,,., C Java,,.,,.,., ,,.,, i

,,,,., C Java,,.,,.,., ,,.,, i 24 Development of the programming s learning tool for children be derived from maze 1130353 2013 3 1 ,,,,., C Java,,.,,.,., 1 6 1 2.,,.,, i Abstract Development of the programming s learning tool for children

More information

<95DB8C9288E397C389C88A E696E6462>

<95DB8C9288E397C389C88A E696E6462> 2011 Vol.60 No.2 p.138 147 Performance of the Japanese long-term care benefit: An International comparison based on OECD health data Mie MORIKAWA[1] Takako TSUTSUI[2] [1]National Institute of Public Health,

More information

22 1,936, ,115, , , , , , ,

22 1,936, ,115, , , , , , , 21 * 2 3 1 1991 1945 200 60 1944 No. 41 2016 22 1,936,843 1945 1,115,594 1946 647,006 1947 598,507 1 60 2014 501,230 354,503 5 2009 405,571 5 1 2 2009 2014 5 37,285 1 2 1965 10 1975 66 1985 43 10 3 1990

More information

ScanFront300/300P セットアップガイド

ScanFront300/300P セットアップガイド libtiff Copyright (c) 1988-1996 Sam Leffler Copyright (c) 1991-1996 Silicon Graphics, Inc. Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby

More information

大学論集第42号本文.indb

大学論集第42号本文.indb 42 2010 2011 3 279 295 COSO 281 COSO 1990 1 internal control 1 19962007, Internal Control Integrated Framework COSO COSO 282 42 2 2) the Committee of Sponsoring Organizations of the Treadway committee

More information

2017年12月期 決算説明資料

2017年12月期 決算説明資料 FINANCIAL RESULTS FOR FISCAL YEAR 2017 TABLE OF CONTENTS 2 HIGHLIGHTS OF FISCAL YEAR 2017 3 OUTLOOK ON FISCAL YEAR 2017 4 CONSOLIDATED NET SALES 4.4% 6,000 5,728 5,981 5,000 4,000 3,000 2,000 1,000 3,830

More information

Vol.57 No

Vol.57 No Title 合併と企業統治 : 大正期東洋紡と大日本紡の比較 Author(s) 川井, 充 Citation 大阪大学経済学. 57(3) P.38-P.72 Issue 2007-12 Date Text Version publisher URL http://hdl.handle.net/11094/17848 DOI Rights Osaka University Vol.57 No.3

More information

基本操作ガイド

基本操作ガイド HT7-0199-000-V.5.0 1. 2. 3. 4. 5. 6. 7. 8. 9. Copyright 2004 CANON INC. ALL RIGHTS RESERVED 1 2 3 1 1 2 3 4 1 2 1 2 3 1 2 3 1 2 3 1 2 3 4 1 2 3 4 1 2 3 4 5 AB AB Step 1 Step

More information

内蔵ハードディスクユニット-20GB (PG-HD2E4H) 内蔵ハードディスクユニット-40GB (PG-HD4E4H)取扱説明書 HARD DISK DRIVE 20GB(PG-HD2E4H) HARD DISK DRIVE 40GB(PG-HD4E4H) USER'S GUIDE

内蔵ハードディスクユニット-20GB (PG-HD2E4H) 内蔵ハードディスクユニット-40GB (PG-HD4E4H)取扱説明書 HARD DISK DRIVE 20GB(PG-HD2E4H)  HARD DISK DRIVE 40GB(PG-HD4E4H) USER'S GUIDE B7FY-0351-02 J E J 1 J 1 2 3 2 4 J 3 4 Preface Thank you very much for purchasing the hard disk drive. This hard disk drive provides a IDE interface and can be installed in the 3.5-inch storage bay of

More information

操作ガイド(本体操作編)

操作ガイド(本体操作編) J QT5-0571-V03 1 ...5...10...11...11...11...12...12...15...21...21...22...25...27...28...33...37...40...47...48...54...60...64...64...68...69...70...70...71...72...73...74...75...76...77 2 ...79...79...80...81...82...83...95...98

More information

ScanFront 220/220P 取扱説明書

ScanFront 220/220P 取扱説明書 libtiff Copyright (c) 1988-1996 Sam Leffler Copyright (c) 1991-1996 Silicon Graphics, Inc. Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby

More information

ScanFront 220/220P セットアップガイド

ScanFront 220/220P セットアップガイド libtiff Copyright (c) 1988-1996 Sam Leffler Copyright (c) 1991-1996 Silicon Graphics, Inc. Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby

More information

2

2 NSCP-W61 08545-00U60 2 3 4 5 6 7 8 9 10 11 12 1 2 13 7 3 4 8 9 5 6 10 7 14 11 15 12 13 16 17 14 15 1 5 2 3 6 4 16 17 18 19 2 1 20 1 21 2 1 2 1 22 23 1 2 3 24 1 2 1 2 3 3 25 1 2 3 4 1 2 26 3 4 27 1 1 28

More information

AWS Client VPN - ユーザーガイド

AWS Client VPN - ユーザーガイド AWS Client VPN ユーザーガイド AWS Client VPN: ユーザーガイド Copyright 2019 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in connection with

More information

エレクトーンのお客様向けiPhone/iPad接続マニュアル

エレクトーンのお客様向けiPhone/iPad接続マニュアル / JA 1 2 3 4 USB TO DEVICE USB TO DEVICE USB TO DEVICE 5 USB TO HOST USB TO HOST USB TO HOST i-ux1 6 7 i-ux1 USB TO HOST i-mx1 OUT IN IN OUT OUT IN OUT IN i-mx1 OUT IN IN OUT OUT IN OUT IN USB TO DEVICE

More information

外部SQLソース入門

外部SQLソース入門 Introduction to External SQL Sources 外部 SQL ソース入門 3 ESS 3 ESS : 4 ESS : 4 5 ESS 5 Step 1:... 6 Step 2: DSN... 6 Step 3: FileMaker Pro... 6 Step 4: FileMaker Pro 1. 6 Step 5:... 6 Step 6: FileMaker Pro...

More information

操作ガイド(本体操作編)

操作ガイド(本体操作編) J-1 QT5-0681-V02 1 m a b c d e f l kj i h g a b c d e f g h i j k l m n n o o s p q r p q r s w t u v x y z t u v w x y z a bc d e f g q p o n m l k j i h a b c d e f g h i j k l {}[] {}[] m n

More information

REDCap_EULA_FAQ

REDCap_EULA_FAQ 米国ヴァンダービルト大学との End User License Agreementと 大阪市立大学における REDCap 外部提供 (SaaS) 契約について 2017 年 6 月 1 日 Japan REDCap Consortium 注意事項 この資料の著作権は 大阪市立大学 REDCap グループに帰属します 私的使用を除き 本資料の全部又は一部を承諾なしに公表又は第三者に伝達する事はできません

More information

インターネット接続ガイド v110

インターネット接続ガイド v110 1 2 1 2 3 3 4 5 6 4 7 8 5 1 2 3 6 4 5 6 7 7 8 8 9 9 10 11 12 10 13 14 11 1 2 12 3 4 13 5 6 7 8 14 1 2 3 4 < > 15 5 6 16 7 8 9 10 17 18 1 2 3 19 1 2 3 4 20 U.R.G., Pro Audio & Digital Musical Instrument

More information

基本操作ガイド

基本操作ガイド HT7-0022-000-V.4.0 Copyright 2004 CANON INC. ALL RIGHTS RESERVED 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3 4 1 1 2 3 4 5 1 2 1 2 3 1 2 3 1 2 3 1 2 3 4 1 2 3 4 1 2 3 4 5 6 1 2 3 4 5 6 7 1 2 3 4

More information

The Japanese economy in FY2015 suffered from sluggish growth in individual consumption, while the foreign exchange market remained unstable with high volatility. Even in such an economic environment, MSF

More information

LC304_manual.ai

LC304_manual.ai Stick Type Electronic Calculator English INDEX Stick Type Electronic Calculator Instruction manual INDEX Disposal of Old Electrical & Electronic Equipment (Applicable in the European Union

More information

Microsoft PowerPoint - SWTT2015HEROKUxFORCEv20121130

Microsoft PowerPoint - SWTT2015HEROKUxFORCEv20121130 Heroku x Force!! 事 例 とアーキテクチャ App Cloudのパワーを 活 用 したアプリ 設 計 の 要 点 と 事 例 株 式 会 社 セールスフォース ドットコム ソリューションアーキテクト 相 澤 歩 aaizawa@salesforce.com @ayumin developer.salesforce.com/trailhead/ 11:00 11:40 Customer

More information

The Key Questions about Today's "Experience Loss": Focusing on Provision Issues Gerald ARGENTON These last years, the educational discourse has been focusing on the "experience loss" problem and its consequences.

More information

TH-65LFE7J TH-50LFE7J TH-42LFE7J - + - + PC IN DVI-D IN IR IN/OUT CHARGE OUT SERIAL IN LAN AUDIO IN (DVI-D / PC) AUDIO OUT AV IN (HDMI 1 HDMI 2) 19 3 1 1 11 2 12 3 13 4 14 5 6 15 7 16 8 17 9 18 10

More information

fx-9860G Manager PLUS_J

fx-9860G Manager PLUS_J fx-9860g J fx-9860g Manager PLUS http://edu.casio.jp k 1 k III 2 3 1. 2. 4 3. 4. 5 1. 2. 3. 4. 5. 1. 6 7 k 8 k 9 k 10 k 11 k k k 12 k k k 1 2 3 4 5 6 1 2 3 4 5 6 13 k 1 2 3 1 2 3 1 2 3 1 2 3 14 k a j.+-(),m1

More information

NetVehicle GX5取扱説明書 基本編

NetVehicle GX5取扱説明書 基本編 -GX5 1 2 3 4 5 6 7 8 # @(#)COPYRIGHT 8.2 (Berkeley) 3/21/94 All of the documentation and software included in the 4.4BSD and 4.4BSD-Lite Releases is copyrighted by The Regents of the University of California.

More information

Forward-Looking Statement Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-look

Forward-Looking Statement Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-look セールスフォースのセキュリティ対策 2015/12/16 クラウド セキュリティ アライアンス勉強会 株式会社セールスフォース ドットコムセールスエンジニアリング本部リード ソリューション エンジニア高橋悟史 Forward-Looking Statement Safe harbor statement under the Private Securities Litigation Reform Act

More information

137. Tenancy specific information (a) Amount of deposit paid. (insert amount of deposit paid; in the case of a joint tenancy it should be the total am

137. Tenancy specific information (a) Amount of deposit paid. (insert amount of deposit paid; in the case of a joint tenancy it should be the total am 13Fast Fair Secure PRESCRIBED INFORMATION RELATING TO TENANCY DEPOSITS* The Letting Protection Service Northern Ireland NOTE: The landlord must supply the tenant with the Prescribed Information regarding

More information

ベース0516.indd

ベース0516.indd QlikView QlikView 2012 2 qlikview.com Business Discovery QlikTech QlikView QlikView QlikView QlikView 1 QlikView Server QlikTech QlikView Scaling Up vs. Scaling Out in a QlikView Environment 2 QlikView

More information

untitled

untitled SUBJECT: Applied Biosystems Data Collection Software v2.0 v3.0 Windows 2000 OS : 30 45 Cancel Data Collection - Applied Biosystems Sequencing Analysis Software v5.2 - Applied Biosystems SeqScape Software

More information

授受補助動詞の使用制限に与える敬語化の影響について : 「くださる」「いただく」を用いた感謝表現を中心に

授受補助動詞の使用制限に与える敬語化の影響について : 「くださる」「いただく」を用いた感謝表現を中心に Title 授受補助動詞の使用制限に与える敬語化の影響について : くださる いただく を用いた感謝表現を中心に Author(s) 山口, 真里子 Citation 国際広報メディア 観光学ジャーナル, 6, 69-89 Issue Date 2008-03-21 Doc URL http://hdl.handle.net/2115/34577 Type bulletin (article) File

More information

\615L\625\761\621\745\615\750\617\743\623\6075\614\616\615\606.PS

\615L\625\761\621\745\615\750\617\743\623\6075\614\616\615\606.PS osakikamijima HIGH SCHOOL REPORT Hello everyone! I hope you are enjoying spring and all of the fun activities that come with warmer weather! Similar to Judy, my time here on Osakikamijima is

More information

TH-47LFX60 / TH-47LFX6N

TH-47LFX60 / TH-47LFX6N TH-47LFX60J TH-47LFX6NJ 1 2 3 4 - + - + DVI-D IN PC IN SERIAL IN AUDIO IN (DVI-D / PC) LAN, DIGITAL LINK AV IN AUDIO OUT 1 11 2 12 3 13 4 14 5 6 15 7 16 8 17 9 18 10 19 19 3 1 18 4 2 HDMI AV OUT

More information

Research on the use of public terminal (information kiosk) at post office ABSTRACT 1 It may be beneficial to install public terminal (information kiosk) for new customer channel at post office. So for

More information

Microsoft Word - PrivateAccess_UM.docx

Microsoft Word - PrivateAccess_UM.docx `````````````````SIRE Page 1 English 3 日本語 7 Page 2 Introduction Welcome to! is a fast, simple way to store and protect critical and sensitive files on any ixpand Wireless Charger. Create a private vault

More information

_念3)医療2009_夏.indd

_念3)医療2009_夏.indd Evaluation of the Social Benefits of the Regional Medical System Based on Land Price Information -A Hedonic Valuation of the Sense of Relief Provided by Health Care Facilities- Takuma Sugahara Ph.D. Abstract

More information

*Ł\”ƒ‚ä(DCH800)

*Ł\”ƒ‚ä(DCH800) B B B B B B B B B C * This device can only be used inside Japan in areas that are covered by subscription cable TV services. Because of differences in broadcast formats and power supply voltages, it cannot

More information

Title < 論文 > 公立学校における在日韓国 朝鮮人教育の位置に関する社会学的考察 : 大阪と京都における 民族学級 の事例から Author(s) 金, 兌恩 Citation 京都社会学年報 : KJS = Kyoto journal of so 14: 21-41 Issue Date 2006-12-25 URL http://hdl.handle.net/2433/192679 Right

More information

目次 1. Serverspec とは 1.1. Serverspecとは 1.2. Serverspecで出来る事 2. セットアップ 2.1. 必要なもの 2.2. インストール 3. デモ 3.1. デモ環境について 3.2. テスト対象サーバーの登録 3.3. サンプルテストの中身 3.4.

目次 1. Serverspec とは 1.1. Serverspecとは 1.2. Serverspecで出来る事 2. セットアップ 2.1. 必要なもの 2.2. インストール 3. デモ 3.1. デモ環境について 3.2. テスト対象サーバーの登録 3.3. サンプルテストの中身 3.4. Serverspec でインフラテスト 2018 年 4 月 20 日株式会社フルマークス大久保和彦 目次 1. Serverspec とは 1.1. Serverspecとは 1.2. Serverspecで出来る事 2. セットアップ 2.1. 必要なもの 2.2. インストール 3. デモ 3.1. デモ環境について 3.2. テスト対象サーバーの登録 3.3. サンプルテストの中身 3.4.

More information

中小企業の発展と政策支援

中小企業の発展と政策支援 1 2 2 3 5 6 10 12 13 14 16 19 20 21 ODA Official Development Assistance IT Information Technology 80 1 2 IT 3 1980 IT 70 IT 4 99 66 53 68 55 51 45 5 6 7 8 9 1971 1979 enterprise 10 1997 18 SBS 2000 SBS

More information

iPhone/iPad接続マニュアル

iPhone/iPad接続マニュアル / JA 2 3 USB 4 USB USB i-ux1 USB i-ux1 5 6 i-mx1 THRU i-mx1 THRU 7 USB THRU 1 2 3 4 1 2 3 4 5 8 1 1 9 2 1 2 10 1 2 2 6 7 11 1 2 3 4 5 6 7 8 12 1 2 3 4 5 6 13 14 15 WPA Supplicant Copyright 2003-2009, Jouni

More information

Huawei G6-L22 QSG-V100R001_02

Huawei  G6-L22 QSG-V100R001_02 G6 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 2 3 17 4 5 18 UI 100% 8:08 19 100% 8:08 20 100% 8:08 21 100% 8:08 22 100% 8:08 ********** 23 100% 8:08 Happy birthday! 24 S S 25 100% 8:08 26 http://consumer.huawei.com/jp/

More information

2 3

2 3 * This device can only be used inside Japan in areas that are covered by subscription cable TV services. Because of differences in broadcast formats and power supply voltages, it cannot be used in overseas

More information

企業内システムにおけるA j a x 技術の利用

企業内システムにおけるA j a x 技術の利用 Utilization of Ajax in Enterprise Intranet Systemsby Tetsuo Yamashita, Takeshi Kuroe and Kazuhisa Ikeda Enterprise 2.0 refers to the recent trend of applying the web technologies widely deployed in Internet

More information

幅広い業種や業務に適応可能なRFIDソリューション

幅広い業種や業務に適応可能なRFIDソリューション RFID RFID Solution Applicable to Various Types of Business 吉 田 正 橋 本 繁 落 合 孝 直 あらまし UHF RFID Radio Frequency IDentification UHF RFID RFID UHF RFID Abstract UHF-band Radio Frequency IDentification (RFID)

More information

GitLab + Dokku で作る CI/ CD 環境 Kazuhiro NISHIYAMA 第 78 回 Ruby 関西勉強会 2017/07/29 Powered by Rabbit 2.2.0

GitLab + Dokku で作る CI/ CD 環境 Kazuhiro NISHIYAMA 第 78 回 Ruby 関西勉強会 2017/07/29 Powered by Rabbit 2.2.0 GitLab + Dokku で作る CI/ CD 環境 Kazuhiro NISHIYAMA 第 78 回 Ruby 関西勉強会 2017/07/29 Powered by Rabbit 2.2.0 自己紹介 西山和広 id:znz (github, twitter など ) Ruby コミッター 1/25 GitLab + Dokku GitLab GitLab CI Dokku (+ Heroku)

More information

Webサービス本格活用のための設計ポイント

Webサービス本格活用のための設計ポイント The Web Services are a system which links up the scattered systems on the Internet, leveraging standardized technology such as SOAP, WSDL and UDDI. It is a general thought that in the future business enterprises

More information

WQD770W WQD770W WQD770W WQD770W WQD770W 5 2 1 4 3 WQD8438 WQD770W 1 2 3 5 4 6 7 8 10 12 11 14 13 9 15 16 17 19 20 20 18 21 22 22 24 25 23 2 1 3 1 2 2 3 1 4 1 2 3 2 1 1 2 5 6 3 4 1 2 5 4 6 3 7 8 10 11

More information

ABSTRACT The "After War Phenomena" of the Japanese Literature after the War: Has It Really Come to an End? When we consider past theses concerning criticism and arguments about the theme of "Japanese Literature

More information

Repatriation and International Development Assistance: Is the Relief-Development Continuum Becoming in the Chronic Political Emergencies? KOIZUMI Koichi In the 1990's the main focus of the global refugee

More information

MIDI_IO.book

MIDI_IO.book MIDI I/O t Copyright This guide is copyrighted 2002 by Digidesign, a division of Avid Technology, Inc. (hereafter Digidesign ), with all rights reserved. Under copyright laws, this guide may not be duplicated

More information

スライド 1

スライド 1 IBM Bluemix www.bluemix.net IBM Bluemix オンラインセミナー 今からはじめる Bluemix シリーズ 第 13 回 Bluemix アカウント管理 料金 日本アイ ビー エム株式会社クラウド ソフトウェア事業部 テクニカル セールス李展飛 目次 IBM Bluemix のアカウント管理機能 組織 スペース ユーザー ドメイン 割り当て量 料金 契約形態 利用状況の確認

More information

ユーザーズマニュアル

ユーザーズマニュアル 1 2 3 This product (including software) is designed under Japanese domestic specifi cations and does not conform to overseas standards. NEC *1 will not be held responsible for any consequences resulting

More information

separation encounter initiation fulfillment return PR CM FAX J DA S J Nicholson, Nigel (1990) The transition cycle: Causes, outcomes, processes and forms In Shirley Fisher and Cary L. Cooper

More information

スライド 1

スライド 1 development process information for International Capstone Design Camp Toshiro MATSUDA Kumamoto University 1 To be confirmed! How to care your pet when you are away (2 週 間 留 守 の 家 でペットをケアするグッズづくり)

More information

,

, , The Big Change of Life Insurance Companies in Japan Hisayoshi TAKEDA Although the most important role of the life insurance system is to secure economic life of the insureds and their

More information

Core Ethics Vol. a

Core Ethics Vol. a Core Ethics Vol. CP CP CP Core Ethics Vol. a - CP - - Core Ethics Vol. CP CP CP b CP CP CP e f a c c c c c c CP CP CP d CP ADL Core Ethics Vol. ADL ADL CP CP CP CP CP CP CP,,, d Core Ethics Vol. CP b GHQ

More information

Microsoft Word - Win-Outlook.docx

Microsoft Word - Win-Outlook.docx Microsoft Office Outlook での設定方法 (IMAP および POP 編 ) How to set up with Microsoft Office Outlook (IMAP and POP) 0. 事前に https://office365.iii.kyushu-u.ac.jp/login からサインインし 以下の手順で自分の基本アドレスをメモしておいてください Sign

More information

Tab 5, 11 Tab 4, 10, Tab 3, 9, 15Tab 2, 8, 14 Tab 1, 7, 13 2

Tab 5, 11 Tab 4, 10, Tab 3, 9, 15Tab 2, 8, 14 Tab 1, 7, 13 2 COMPANION 20 MULTIMEDIA SPEAKER SYSTEM Owner s Guide Tab 5, 11 Tab 4, 10, Tab 3, 9, 15Tab 2, 8, 14 Tab 1, 7, 13 2 Tab1, 7, 13 Tab 2, 8, 14 Tab 3, 9, 15 Tab 4, 10, Tab 5, 11 This product conforms to all

More information

WYE771W取扱説明書

WYE771W取扱説明書 WYE771W WYE771W 2 3 4 5 6 MEMO 7 8 9 10 UNLOCK RESET/ STOPALARM EMERG. TALK FIRE CONFIRM MENU OFF POWER 11 UNLOCK RESET/ STOPALARM EMERG. TALK FIRE CONFIRM MENU OFF POWER 12 POWER EMERG. RESET/ STOPALARM

More information

CONTENTS Public relations brochure of Higashikawa November No.745 Higashikawa 215 November 2

CONTENTS Public relations brochure of Higashikawa November No.745 Higashikawa 215 November 2 11 215 November No.745 CONTENTS 2 6 12 17 17 18 2 21 22 23 24 28 3 31 32 Public relations brochure of Higashikawa 11 215 November No.745 Higashikawa 215 November 2 816,18 832,686 8,326,862 196,93 43,573

More information

評論・社会科学 91号(よこ)(P)/2.三井

評論・社会科学 91号(よこ)(P)/2.三井 1945 12 8 GHQ 8 1 2 4 2 GHQ CI & E CI & E 1 2009 12 9 2010 1 20 2 3 4 3 1945 1946 4 5 10 GHQ/CIE 5 1 2 1 1 1 GHQ GHQ 1945 12 8 10 4 1941 12 8 7 1 2 4 2 1 GHQ Civil Information and Education Section CI

More information

-5 DMP-BV300 μ μ l μ l l +- l l j j j l l l l l l l l l l l l l Ë l l l l l l l l l l l l l l l l l l l l l l l BD DVD CD SD USB 2 ALL 1 2 4 l l DETACH ATTACH RELEASE DETACH ATTACH DETACH ATTACH RELEASE

More information