introduction-to-puppet

Size: px
Start display at page:

Download "introduction-to-puppet"

Transcription

1 Introduction To PUPPET

2 Plan Puppet: Just Simple! features components installation usage Puppet: Never Leave! living example file and service management Maybe Puppet, Maybe Other, Maybe None

3 Just Simple Tool Chain! Birth Of Puppet! Features! Components! WorkShop! Ecosphere

4 配置管理的变迁 配置 文件 版本控制 配置模版 应 用程序 组件管理 依赖管理 流程管理 构建 测试 部署 基础环境 用户 组 服务 包

5 图解包含关系 配置 文件 应 用程序 配置管理 流程管理 基础环境

6 配置管理的变迁 命令 行 脚本 工具平台 Stage 规范化 自动化 智能化 Time Dream True Cloud

7 工具链介绍 系统安装配置管理命令编排监控报警 [1] Kickstart(Linux) Jumpstart (Solaris) YaST(SUSE) Cobbler CFEngine Chef Puppet SaltStack AnsibleWorks Fabric Capistrano Func MCollective SaltStack AnsibleWorks Cacti Ganglia Nagios Graphite Zabbix [1]

8 Three Ways Comparisons Method Puppet MCollective SaltStack AnsibleWorks Native Lang Ruby Python Python Distributed C/S C/S Agentless Desc Lang DSL(Puppet) Yaml Yaml Template ERB Jinja2/Mako Jinja2 CMD Via AMQP ZeroMQ SSH CMD Speed Faster Faster Fast CMD Sec Muti Chooices AES SSH Community Mature Active Active Use Case OpenStack Docker User Google/Intel Apple/Hulu Complexity Difficult Medium Simple [1]

9 Father Of PUPPET Why Puppet Birth! CFengine && ISconf! Why Puppet in Ruby! Perl Vs Python Vs Ruby [1]

10 What Is Puppet + Puppet 是 一个配置并维护你的计算机的 工具!! + 使 用它简单的配置语 言, 你向 Puppet 解释你所希望的机器配置参数, 然后它将根据需要更改配置来匹配你的要求!! + 如果你的配置有所变化, 比如包更新,Puppet 将 自动更新你的机器来匹配 如果它们已经按照要求配置, 那么 Puppet 就会什么也不做

11 C/S Software/Application Server/Agent mode! Server Less mode

12 Why Puppet 强 大的框架简化 大部分系统管理 工作 使 用 Puppet 语 言的代码有很好复 用性

13 Plugin-in System/Framework 增加新类型 ( 资源 ) 为已有类型增加后端 插件化系统和开放 API

14 DSL Language Use Ruby! Declarative! You Specify Configuration, Puppet handles implementation! Use detailed specification! Need things like dependencies

15 Code Snippet class ssh { package { ssh: ensure => installed } file { "/etc/ssh/sshd_config": ensure => present, owner => root, group => root, mode => 0755, source => 'puppet:///modules/ssh/sshd_config', require => Package["ssh"] } service { sshd: ensure => running, enable => true, hasrestart => true, hasstatus => true, subscribe => File["/etc/ssh/sshd_config"], }}

16 Organization Class Manifest Module Node init.pp class ssh::install { } install.pp files class ssh::config { } config.pp manifests node /^ssh\d+/ {include ssh} class ssh::service { } service.pp templates params.pp

17 Example::Files 内容型 模版型

18 manifests/lquery.pp Contents class wap::cache{! file{'/search/staff/daemon/cache/conf':! ensure => directory,! owner => staff,! group => staff,! mode => 0755,! }! }! class wap::cache::files {! file{'/search/staff/daemon/wap/conf/cache.cfg':! require => File[ /search/staff/daemon/cache/conf ],! ensure => present,! owner => staff,! group => staff,! mode => 0755,! source => puppet:///wapfile/cache.cfg',! }! }

19 Templates manifests/files.pp class ob::files::cache inherits!! ob::params::wap {!! file{ '/opt/pack/ob/conf/cache.cfg':! content => template('observer/cache.cfg.erb'),! require => File['/opt/pack/ob/conf'],!! }! } manifests/params.pp! class ob::params::cache {! $PreFix = 'wap'! $ProcName = 'cache! $ErrNum = 48! $LatNum = 20! $LogLimit = 15! }

20 Templates templates/cache.cfg.erb %>" USER="odin" %>" %>" %>.cfg" RESTART_USER="root" %>.sh"! %>" %>" %>"

21 Innovations 资源的抽象, 一切皆资源 资源是 Puppet 原语 明确资源间依赖关系 解释性配置语 言

22 Features Idempotency! puppet can safely be run multiple times! Cross Platform! RAL allows focus on system ignoring implementation details! Model & Graph Based! resource modeled as type provider fulfilled the resource! graph based system modeling relationships between resources

23 Components Agent! Facter! ENC! Transaction! RAL! Report

24 WorkShop 安装 认证 使 用

25 生态圈 控制台 Dashboard Foreman 配置管理 PUPPET 命令编排 MCollective 静态变量系统 Facter 动态变量系统 Hiera 数据服务 PUPPETDB

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074>

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074> 软 件 架 构 师 研 修 讲 座 胡 协 刚 软 件 架 构 师 UML/RUP 专 家 szjinco@public.szptt.net.cn 中 国 软 件 架 构 师 网 东 软 培 训 中 心 小 故 事 : 七 人 分 粥 当 前 软 件 团 队 的 开 发 现 状 和 面 临 的 问 题 软 件 项 目 的 特 点 解 决 之 道 : 从 瀑 布 模 型 到 迭 代 模 型 解 决 项

More information

puppet 简介 3 puppet 是什么 3 Hello world 4 puppet 安装 5 debian 系发行版安装 puppet 5 redhat 系发行版安装 puppet 5 源代码安装 puppet 6 配置 c/s 模式的 puppet 试验环境 6 puppet 语法 8 资

puppet 简介 3 puppet 是什么 3 Hello world 4 puppet 安装 5 debian 系发行版安装 puppet 5 redhat 系发行版安装 puppet 5 源代码安装 puppet 6 配置 c/s 模式的 puppet 试验环境 6 puppet 语法 8 资 puppet 入门 puppet 简介 3 puppet 是什么 3 Hello world 4 puppet 安装 5 debian 系发行版安装 puppet 5 redhat 系发行版安装 puppet 5 源代码安装 puppet 6 配置 c/s 模式的 puppet 试验环境 6 puppet 语法 8 资源 8 类和函数 10 节点 11 变量和数组 12 模块 13 几个常用的资源

More information

Kubenetes 系列列公开课 2 每周四晚 8 点档 1. Kubernetes 初探 2. 上 手 Kubernetes 3. Kubernetes 的资源调度 4. Kubernetes 的运 行行时 5. Kubernetes 的 网络管理理 6. Kubernetes 的存储管理理 7.

Kubenetes 系列列公开课 2 每周四晚 8 点档 1. Kubernetes 初探 2. 上 手 Kubernetes 3. Kubernetes 的资源调度 4. Kubernetes 的运 行行时 5. Kubernetes 的 网络管理理 6. Kubernetes 的存储管理理 7. Kubernetes 包管理理 工具 Helm 蔺礼强 Kubenetes 系列列公开课 2 每周四晚 8 点档 1. Kubernetes 初探 2. 上 手 Kubernetes 3. Kubernetes 的资源调度 4. Kubernetes 的运 行行时 5. Kubernetes 的 网络管理理 6. Kubernetes 的存储管理理 7. Kubernetes

More information

穨japhkesch.PDF

穨japhkesch.PDF : 1.1? : : ( ) : What?,,,.. -->p.44-45 Why? : 1.2 : : ( ) : -->p.94-95 -->p.44-45 -->p.158-162 : ( ) : (1995) : : ( 1) ( 2) ( 3) ( 4) ( 5) ( 1) -1994 - - ( 2) - -, -, - ( 3) -1938 9

More information

基 于 SCORM 规 范 的 资 源 打 包 方 法 设 计 与 实 现 摘 要 共 享 式 教 材 组 件 参 考 模 型 (Sharable Course Object Reference Model, 简 称 SCORM), 已 成 为 目 前 国 际 上 公 认 的 e-learning

基 于 SCORM 规 范 的 资 源 打 包 方 法 设 计 与 实 现 摘 要 共 享 式 教 材 组 件 参 考 模 型 (Sharable Course Object Reference Model, 简 称 SCORM), 已 成 为 目 前 国 际 上 公 认 的 e-learning 中 国 科 学 技 术 大 学 硕 士 研 究 生 学 位 论 文 论 文 题 目 基 于 SCORM 规 范 的 资 源 打 包 方 法 设 计 与 实 现 作 者 姓 名 陈 丁 惠 工 程 领 域 软 件 工 程 学 号 SG02201035 校 内 导 师 企 业 导 师 单 位 名 称 郑 浩 然 叶 盛 元 计 算 机 科 学 与 技 术 系 完 成 时 间 二 〇 〇 五 年 十 月

More information

Microsoft PowerPoint - ch6 [相容模式]

Microsoft PowerPoint - ch6 [相容模式] UiBinder wzyang@asia.edu.tw UiBinder Java GWT UiBinder XML UI i18n (widget) 1 2 UiBinder HelloWidget.ui.xml: UI HelloWidgetBinder HelloWidget.java XML UI Owner class ( Composite ) UI XML UiBinder: Owner

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

自我介绍 守住每一天 SinaEdge 运维主管 LinuxTone 创始人之一 2009 年编写 Nagios 完整配置文档 2011 年编写 Puppet 集中化管理爱好 : 骑行

自我介绍 守住每一天 SinaEdge 运维主管 LinuxTone 创始人之一 2009 年编写 Nagios 完整配置文档 2011 年编写 Puppet 集中化管理爱好 : 骑行 集中化运维管理 --Puppet 管理之路 @ 守住每一天 2012 年 08 月 22 日 自我介绍 刘宇 @ 守住每一天 SinaEdge 运维主管 LinuxTone 创始人之一 2009 年编写 Nagios 完整配置文档 2011 年编写 Puppet 集中化管理爱好 : 骑行 运维自动化 系统安装 配置管理 监控报警 系统安装 KickStart Cobbler...... 配置管理 Cfengine

More information

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Map data @ Google Reproducible research in Madagascar How to conduct a successful installation

More information

BYOD IP+Optical (IP NGN) API 4. End-to-End (Service Aware) 5. IP NGN (IP Next Generation Network) ( ) Prime Carrier Management Access Edge Co

BYOD IP+Optical (IP NGN) API 4. End-to-End (Service Aware) 5. IP NGN (IP Next Generation Network) ( ) Prime Carrier Management Access Edge Co BYOD 228 2015 IT open source DIY ( ) Up/Down HP NNMi WhatsUp Gold Nagios HP SiteScope WhatsUp Gold HP NNMi WhatsUp Gold Cacti MRTG HP ispi Performance for Metrics WhatsUp Gold ( ) Open source Agent End-to-End

More information

Microsoft Word - MIS.doc

Microsoft Word - MIS.doc 成 都 信 息 工 程 学 院 班 务 信 息 系 统 The Management Information System Of the Class Transaction 制 作 人 张 蓓 学 号 2000041113 制 作 单 位 电 子 商 务 系 2000 级 会 本 3 班 定 版 时 间 2003 年 12 月 15 日 前 言 跨 入 21 世 纪 人 类 社 会 正 在 步 入

More information

A9RF716.tmp

A9RF716.tmp 1 PART I 1 2 3 4 5 6 7 8 Docker Docker Image Container Repository Docker le Docker Docker 8 1 Docker Linux 2 Docker Docker 3 5 Docker 6 Docker volume 7 8 Docker le Docker le 1 C H A P T E R 1 CPU Data

More information

FAQ -PowerDesigner9.5.DOC

FAQ -PowerDesigner9.5.DOC PowerDesigner 9.5 FAQ 1. PowerDesigner PowerDesigner PowerDesigner (CASE Tool,Computer Aided Software Engineering) PowerDesigner 1989 9.5 2. PowerDesigner PowerDesigner Internet ( Java) PowerDesigner 7.0

More information

目次 

目次  軟 體 工 程 期 末 報 告 網 路 麻 將 91703014 資 科 三 黃 偉 嘉 91703024 資 科 三 丘 祐 瑋 91703030 資 科 三 江 致 廣 1 目 次 壹 前 言 (Preface) P.4 貳 計 畫 簡 述 及 預 期 效 益 (Project Description and Expected Results) P.4 參 系 統 開 發 需 求 (System

More information

VASP应用运行优化

VASP应用运行优化 1 VASP wszhang@ustc.edu.cn April 8, 2018 Contents 1 2 2 2 3 2 4 2 4.1........................................................ 2 4.2..................................................... 3 5 4 5.1..........................................................

More information

ch08.PDF

ch08.PDF 8-1 CCNA 8.1 CLI 8.1.1 8-2 8-3 8.1.21600 2500 1600 2500 / IOS 8-4 8.2 8.2.1 A 5 IP CLI 1600 2500 8-5 8.1.2-15 Windows 9598NT 2000 HyperTerminal Hilgraeve Microsoft Cisco HyperTerminal Private Edition (PE)

More information

19 0 1 2 3 4 5 6 7 28 29 0 1 2 3 4

19 0 1 2 3 4 5 6 7 28 29 0 1 2 3 4 19 0 1 2 3 4 5 6 7 28 29 0 1 2 3 4 5 6 7 38 ( ) VS 3 100 ( ) MM MM ! 1 2003 VS . MM MM MM MM MM MM MM CS MM CS MM MM ! ? % Y O [ ] Y O [ ] [ ] [ ] MM MM

More information

RunPC2_.doc

RunPC2_.doc PowerBuilder 8 (5) PowerBuilder Client/Server Jaguar Server Jaguar Server Connection Cache Thin Client Internet Connection Pooling EAServer Connection Cache Connection Cache Connection Cache Connection

More information

資訊系統開發模式

資訊系統開發模式 第 2 章 資 訊 系 統 開 發 模 式 學 習 目 標 2.1 導 論 2.2 瀑 布 模 式 2.3 漸 增 模 式 2.4 雛 型 模 式 2.5 螺 旋 模 式 2.6 同 步 模 式 2.7 Rational 統 一 流 程 模 式 2.8 敏 捷 軟 體 開 發 2.9 MDA 發 展 生 命 週 期 2.10 結 論 本 章 大 綱 學 習 目 標 詳 讀 本 章, 你 至 少 能

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

mvc

mvc Build an application Tutor : Michael Pan Application Source codes - - Frameworks Xib files - - Resources - ( ) info.plist - UIKit Framework UIApplication Event status bar, icon... delegation [UIApplication

More information

10384 X2009230010 UDC The Design and Implementation of Small and Medium-sized Courier Company Logistics Vehicle Scheduling System 2012 06 Abstract With the arrival of the information age, tremendous

More information

Progress Report of BESIII Slow Control Software Development

Progress Report of BESIII Slow Control Software Development BESIII 慢控制系统高压和 VME 监控 系统的设计和实现 陈锡辉 BESIII 慢控制组 2006-4-27 Outline Design and implementation of HV system Features Implementation Brief introduction to VME system Features Implementation of a demo Tasks

More information

《医学英语》教学大纲

《医学英语》教学大纲 医 学 英 语 教 学 大 纲 课 程 名 称 : 医 学 英 语 Medical English 开 课 ( 二 级 ) 学 院 : 外 语 教 学 中 心 课 程 性 质 : 必 修 课 学 分 :4 分 学 时 :56 学 时 前 期 课 程 : 大 学 英 语 授 课 对 象 : 本 科 生 七 年 制 学 生 考 核 方 式 : 考 试 课 程 简 介 : 医 学 英 语 是 中 医 英

More information

1873 1939 1937 1981 1900 1870 1902 1899 1902 1901 1899 1868 1868 1829 1905 1859 1943 1860 1900 1887 1878 1820 1903 1834 1906 1856 1836 1884 1787

More information

1868 1868 1829 1905 1859 1943 1860 1900 1887 1878 1820 1903 1834 1906 1856 1836 1884 1787 18411827 1843 1890 1884 1904 1845

More information

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

团 市 委 首 笔 爱 心 捐 款 及 物 资 已 送 至 芦 山 地 震 灾 区 : 近 日, 团 市 委 从 省 青 少 年 发 展 基 会 获 悉, 团 市 委 为 地 震 灾 区 募 集 的 首 笔 爱 心 捐 款 和 捐 赠 物 资 已 送 至 芦 山 地 震 灾 区 4 月 20 日,

团 市 委 首 笔 爱 心 捐 款 及 物 资 已 送 至 芦 山 地 震 灾 区 : 近 日, 团 市 委 从 省 青 少 年 发 展 基 会 获 悉, 团 市 委 为 地 震 灾 区 募 集 的 首 笔 爱 心 捐 款 和 捐 赠 物 资 已 送 至 芦 山 地 震 灾 区 4 月 20 日, 吴 都 青 年 在 线 主 办 : 共 青 团 鄂 州 市 委 员 会 http://www.ezyouth.gov.cn 新 浪 微 博 : http://weibo.com/ezhouyouth 腾 讯 微 博 : http://t.qq.com/ezhouyouth 2013 年 第 1 期 ( 总 第 1 期 ) Email:ezhouyouth@163.com 团 市 委 首 笔 爱 心

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

1.3

1.3 Software Engineering 软 件 工 程 Prof. Mei Hong 洪 玫 College of Computer Science and Software Engineering 四 川 大 学 计 算 机 ( 软 件 学 院 ) E-Mail: hongmei@scu.edu.cn Office: B502, Second Laboratory Building, Jiangan

More information

untitled

untitled rxli@public.wh.hb.cn http://idc.hust.edu.cn/~rxli/ 2 3 ( ) (Distributed System) Integrated System () 4 5 6 System Integration 7 8 Integrated System 9 1.1 CIMS IDEF CSCW STEP MIS MRPII ERP CRM SCM MIS:

More information

1 C++ 2 Bjarne Stroustrup C++ (system programming) 6 (infrastructure) C++ 7 Herb Sutter 8 C++ (efficiency) (flexibility) 9 (abstraction) (productivity

1 C++ 2 Bjarne Stroustrup C++ (system programming) 6 (infrastructure) C++ 7 Herb Sutter 8 C++ (efficiency) (flexibility) 9 (abstraction) (productivity 1 C++ 1 C++ Primer C++ (giantchen@gmail.com) 2012-7-11 Creative Commons - - 3.0 Unported (cc by-nc-nd) http://creativecommons.org/licenses/by-nc-nd/3.0/ 1 C++ 2009 Stanley Lippman C++ C++ Java/C#/Python

More information

6 至 7 个 民 生 主 题 日, 每 个 主 题 日 有 对 口 职 能 部 门 的 值 班 微 上 岗 执 勤 该 活 动 集 中 整 合 了 一 个 地 域 内 的 民 生 服 务 类 政 务 微, 体 现 了 网 络 时 代 政 府 部 门 利 用 新 媒 体 平 台 问 需 于 民 问

6 至 7 个 民 生 主 题 日, 每 个 主 题 日 有 对 口 职 能 部 门 的 值 班 微 上 岗 执 勤 该 活 动 集 中 整 合 了 一 个 地 域 内 的 民 生 服 务 类 政 务 微, 体 现 了 网 络 时 代 政 府 部 门 利 用 新 媒 体 平 台 问 需 于 民 问 当 地 的 舆 情 干 预 措 施 也 是 十 分 明 确 果 断 的, 赶 在 了 可 能 发 生 的 于 7 日 上 午 的 舆 情 高 峰 前 面, 另 一 方 面, 积 极 采 取 全 方 位 多 渠 道 的 舆 情 应 对 机 制, 沈 阳 市 新 闻 办 工 商 局 公 安 局 等 部 门 皆 各 自 对 外 发 布 信 息, 同 时 沈 阳 各 大 平 面 媒 体 也 积 极 参 与,

More information

13 A DSS B DSS C DSS D DSS A. B. C. CPU D. 15 A B Cache C Cache D L0 L1 L2 Cache 16 SMP A B. C D 17 A B. C D A B - C - D

13 A DSS B DSS C DSS D DSS A. B. C. CPU D. 15 A B Cache C Cache D L0 L1 L2 Cache 16 SMP A B. C D 17 A B. C D A B - C - D 2008 1 1 A. B. C. D. UML 2 3 2 A. B. C. D. 3 A. B. C. D. UML 4 5 4 A. B. C. D. 5 A. B. C. D. 6 6 A. DES B. RC-5 C. IDEA D. RSA 7 7 A. B. C. D. TCP/IP SSL(Security Socket Layer) 8 8 A. B. C. D. 9 9 A. SET

More information

TWGHs S

TWGHs S TWGHs S C Gaw Memorial College 東 華 三 院 吳 祥 川 紀 念 中 學 Subject Selection S3 to S4 (2013 年 2 月 版 ) 中 三 升 中 四 選 科 手 冊 新 高 中 課 程 東 華 三 院 吳 祥 川 紀 念 中 學 升 學 及 擇 業 輔 導 處 P. 1 目 錄 選 科 導 言 P.3 升 學 路 徑 P.3 如 何 選

More information

创业板投资风险提示:本次股票发行后拟在创业板市场上市,该市场具有较高的投资风险

创业板投资风险提示:本次股票发行后拟在创业板市场上市,该市场具有较高的投资风险 创 业 板 投 资 风 险 提 示 : 本 次 股 票 发 行 后 拟 在 创 业 板 市 场 上 市, 该 市 场 具 有 较 高 的 投 资 风 险 创 业 板 公 司 具 有 业 绩 不 稳 定 经 营 风 险 高 退 市 风 险 大 等 特 点, 投 资 者 面 临 较 大 的 市 场 风 险 投 资 者 应 充 分 了 解 创 业 板 市 场 的 投 资 风 险 及 本 公 司 所 披 露

More information

第四章-個案分析.doc

第四章-個案分析.doc - 33-27 28 AP application software - 34 - Value Added Service 60%~65% Project 35%~40% Broadband VOD Wireless Project by 80% 20% Contract Project by S.I. 29 SI System Integrationer MIC Total Solution Provider

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF 啓 I II 説 III 1 2 3 4 5 6 7 8 9 10 没 11 説 12 渉 渉 説 13 14 説 説 絶 15 FPA for Transactions Application Documentation Transaction Model Data Model FPA Rules Transaction Rules Function Complexity Tables of Weight

More information

Microsoft PowerPoint ARIS_Platform_en.ppt

Microsoft PowerPoint ARIS_Platform_en.ppt ARIS Platform www.ixon.com.tw ARIS ARIS Architecture of Integrated Information System Prof. Dr. Dr. h.c. mult. August-Wilhelm Scheer ARIS () 2 IDS Scheer AG International Presence >> Partners and subsidiaries

More information

WTO

WTO 10384 200015128 UDC Exploration on Design of CIB s Human Resources System in the New Stage (MBA) 2004 2004 2 3 2004 3 2 0 0 4 2 WTO Abstract Abstract With the rapid development of the high and new technique

More information

<4D6963726F736F667420506F776572506F696E74202D20D6ECC6BD20C4FEB2A8C9E7C7F8BCD2CDA5D2BDC9FAB7DBCBBFD6C6B6C82E70707478>

<4D6963726F736F667420506F776572506F696E74202D20D6ECC6BD20C4FEB2A8C9E7C7F8BCD2CDA5D2BDC9FAB7DBCBBFD6C6B6C82E70707478> 基 于 分 级 诊 疗 体 系 下 的 粉 丝 式 家 庭 医 生 签 约 服 务 实 践 与 探 索 Practice and Exploration of Fans Model of Family Doctor Service Based on Hierarchical Medical System 宁 波 市 海 曙 区 卫 计 局 社 区 卫 生 服 务 发 展 研 究 中 心 宁 波 市

More information

Microsoft Word - CX VMCO 3 easy step v1.doc

Microsoft Word - CX VMCO 3 easy step v1.doc Abacus Fully Automated Process of VMCO on CX, KA, CPH & KAH 16 Nov 2009 To streamline the VMCO handling on CX, KA, CPH & KAH, Abacus is pleased to inform you that manual submission of VMCO to CX/KA/CPH/KAH

More information

WFC40810

WFC40810 9000086873 (PD 85 05 10) Operating and Installation Instructions Please read this specification carefully before you use the product. Any failure and losses caused by ignoring the above mentioned items

More information

1 Par t IBM 7 Par t 2 I BM IBM Par t Q & A

1 Par t IBM 7 Par t 2 I BM IBM Par t Q & A IBM 1 Par t 1 12 2 3 1 3 3 3 1 4 4 4 5 5 5 2 5 6 6 IBM 7 Par t 2 I BM IBM 1 0 1 1 2 2 1 6 3 1 8 Par t 3 2 0 Q & A 2 9 2 2 Pa r t 1 12 4 27 1 2 3 2,3 0 0 2 1990 9 1992 6 1995 4 1995 7 12 1995 8 11 1995

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

健全農業金融體系之研究

健全農業金融體系之研究 1999 1998 5 1998 1. 2. 3. 4. AHP 1999 2001 1997 6 1. 2. 3. 4. 2001 20 1996 7 1999 1 2000 23% 2001 1 88 9 3 8 9 10 2 36 27 2 7 11 12 91 6 17 9 4 10 2 focus group 13 1980 14 2-1 15 2-1 1. 2. 1. 2. 1. 2.

More information

untitled

untitled 51Testing Diana LI Xbox Xbox Live Fidelity Investments Office Server group Xbox Expedia Inc ( elong ) 1996 1996. bug break - 5Ws bug. Trust No One) QA Function Assignment Checking Timing Build/Package/Merge

More information

运动员治疗用药豁免申报审批办法

运动员治疗用药豁免申报审批办法 运 动 员 治 疗 用 药 豁 免 管 理 办 法 第 一 条 为 了 保 护 运 动 员 的 身 心 健 康, 保 证 运 动 员 的 伤 病 得 到 及 时 安 全 的 治 疗, 保 障 运 动 员 公 平 参 与 体 育 运 动 的 权 利, 根 据 国 务 院 反 兴 奋 剂 条 例, 参 照 世 界 反 兴 奋 剂 条 例 和 治 疗 用 药 豁 免 国 际 标 准 的 有 关 条 款,

More information

Microsoft PowerPoint - ARC110_栾跃.ppt

Microsoft PowerPoint - ARC110_栾跃.ppt ARC110 软 件 构 架 设 计 的 原 则 和 指 南 课 程 内 容 概 述 介 绍 和 引 言 软 件 构 架 和 构 架 师 软 件 构 架 的 设 计 模 式 框 架 和 参 照 设 计 自 我 介 绍 第 一 代 自 费 留 学 生 : 美 国 南 伊 利 诺 州 立 大 学 (SIUE) 电 机 工 程 学 士 (1984) 及 硕 士 学 位 (1985) 历 任 OwensIllinois,

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL steven@nchc.gov.tw, c00hkl00@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Jan, 2003 1 2003/1/28 ( ) 09:00-10:30 10:40-12:00 Linux 13:00-14:30

More information

Learning Java

Learning Java Java Introduction to Java Programming (Third Edition) Prentice-Hall,Inc. Y.Daniel Liang 2001 Java 2002.2 Java2 2001.10 Java2 Philip Heller & Simon Roberts 1999.4 Java2 2001.3 Java2 21 2002.4 Java UML 2002.10

More information

ebook 185-6

ebook 185-6 6 Red Hat Linux DB2 Universal Database 6.1 D B 2 Red Hat D B 2 Control Center D B 2 D B 2 D B 2 6.1 DB2 Universal Database [DB2]6.1 D B 2 O LT P O L A P D B 2 I B M P C We e k D B 2 D B 2 L i n u x Windows

More information

Microsoft PowerPoint - Aqua-Sim.pptx

Microsoft PowerPoint - Aqua-Sim.pptx Peng Xie, Zhong Zhou, Zheng Peng, Hai Yan, Tiansi Hu, Jun-Hong Cui, Zhijie Shi, Yunsi Fei, Shengli Zhou Underwater Sensor Network Lab 1 Outline Motivations System Overview Aqua-Sim Components Experimental

More information

HOL-CHG-1695

HOL-CHG-1695 Table of Contents 练 习 概 述 - - vsphere 挑 战 练 习... 2 练 习 指 导... 3 第 1 单 元 : 在 实 践 中 学 习 (15 分 钟 )... 5 剪 贴 板 复 制 和 粘 贴 功 能 无 法 使 用?... 6 虚 拟 机 性 能 不 佳... 17 第 2 单 元 : 基 本 运 维 挑 战 (30 分 钟 )... 32 无 法 登 录

More information

Mechanical Science and Technology for Aerospace Engineering October Vol No. 10 Web SaaS B /S Web2. 0 Web2. 0 TP315 A

Mechanical Science and Technology for Aerospace Engineering October Vol No. 10 Web SaaS B /S Web2. 0 Web2. 0 TP315 A 2012 10 31 10 Mechanical Science and Technology for Aerospace Engineering October Vol. 31 2012 No. 10 Web2. 0 400030 SaaS B /S Web2. 0 Web2. 0 TP315 A 1003-8728 2012 10-1638-06 Design and Implementation

More information

WVT new

WVT new Operating and Installation Instructions 5120 004601 (PD 84 09 25) Please read this specification carefully before you use the product. Any failure and losses caused by ignoring the above mentioned items

More information

untitled

untitled MySQL DBMS under Win32 Editor: Jung Yi Lin, Database Lab, CS, NCTU, 2005/09/16 MySQL 料 理 MySQL 兩 Commercial License 利 GPL MySQL http://www.mysql.com Developer Zone http://www.mysql.com Download 連 連 MySQL

More information

SIP/ENUM Trial

SIP/ENUM Trial Taiwan SIP/ENUM trial ENUM Director of TWNIC IP Department 2004/12/15 1 Outline What is ENUM Taiwan SIP/ENUM Trial Project ENUM 2 What is ENUM ENUMDNSE.164 ENUMDNS ENUM 3 ENUMDNSE.164 Enum telephone Number

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

中三級 英國語文科

中三級 英國語文科 中 三 級 英 國 語 文 科 (2014-2015) ( 一 ) 本 科 的 目 標 1. 學 生 能 有 足 夠 的 英 語 能 力 以 輔 助 他 們 繼 續 學 習 或 就 業 2. 學 生 能 了 解 及 有 足 夠 的 練 習 來 掌 握 各 級 應 有 的 語 言 水 準 3. 學 生 對 學 習 英 語 有 興 趣 及 動 力 4. 學 生 能 主 動 參 與 課 堂 內 外 的 英

More information

簡報技巧

簡報技巧 2 Q & A 4 7 Presenter Audienc e 7 10 / 11 7 / 11 / 7 55 11 / 7 55 38 11 12 13 14 Q & A 1. : 1. : 1. : / 5W Who What When Where Why 1. : / 5W Who What When 5W2H How to do How much Where Why 1.

More information

摘 要 本 文 档 介 绍 如 何 解 决 OPC 通 讯 中 的 DCOM 的 问 题 关 键 词 OPC DCOM Key Words OPC DCOM IA&DT Service & Support Page 2-12

摘 要 本 文 档 介 绍 如 何 解 决 OPC 通 讯 中 的 DCOM 的 问 题 关 键 词 OPC DCOM Key Words OPC DCOM IA&DT Service & Support Page 2-12 OPC DCOM 问 题 处 理 Troubleshooting DCOM 文 档 类 型 (User Guide) Edition (2008 年 12 月 ) https://support.industry.siemens.com/cs/cn/zh/view/109481341 摘 要 本 文 档 介 绍 如 何 解 决 OPC 通 讯 中 的 DCOM 的 问 题 关 键 词 OPC DCOM

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 1 3 ---------------------- 3 July 1998 P.33-34 T 2 3 PDM 1998 NT 420 2000 NT 845 PDM PDM T PDM T PDM (1) PDM (2) T T T T 4 1 2 -------------------- 4 -- 1999 P.146-162 3 1 4 (Compaq, HP, Ericsson, NEC,

More information

SDS 1.3

SDS 1.3 Applied Biosystems 7300 Real-Time PCR System (With RQ Study) SDS 1.3 I. ~ I. 1. : Dell GX280 2.8GHz with Dell 17 Flat monitor 256 MB RAM 40 GB hard drive DVD-RW drive Microsoft Windows XP Operating System

More information

\\Lhh\07-02\黑白\内页黑白1-16.p

\\Lhh\07-02\黑白\内页黑白1-16.p Abstract: Urban Grid Management Mode (UGMM) is born against the background of the fast development of digital city. It is a set of urban management ideas, tools, organizations and flow, which is on the

More information

Microsoft Word - 1HF12序.doc

Microsoft Word - 1HF12序.doc 每 天 早 晨 水 果 日 報 的 頭 條, 總 有 瘋 狂 的 肥 皂 劇 在 現 實 社 會 中 上 演 著, 諸 如 友 寄 隆 輝 毆 打 計 程 車 司 機 案 014 貪 瀆 案 黑 暗 騎 士 掃 射 案 ( 美 國 ) 李 宗 瑞 淫 照 外 洩 案 等, 太 多 太 多 不 可 思 議 的 刑 事 個 案 都 活 生 生 地 搬 上 現 實 世 界 演 出 而 這 也 說 明 了

More information

Microsoft Word - 讀報看科普─人體篇_橫_.doc

Microsoft Word - 讀報看科普─人體篇_橫_.doc 教 學 緣 起 在 引 領 學 生 進 行 讀 報 心 得 分 享 與 批 判 思 考 時, 發 現 學 生 普 遍 對 科 學 知 識 性 文 章 興 趣 缺 缺 ; 再 者, 近 年, 國 小 高 年 級 課 本 選 讀 科 普 文 章, 但 學 生 學 習 往 往 不 得 其 所, 無 法 融 入 課 文 中 因 此, 教 學 者 從 國 語 日 報 中 選 了 一 些 較 貼 近 生 活 的

More information

Microsoft Word - 2B802內文.doc

Microsoft Word - 2B802內文.doc 行 政 法 導 讀 001 行 政 法 導 讀 大 綱 序 言 壹 行 政 法 解 題 思 維 貳 行 政 法 選 擇 題 概 覽 參 行 政 法 常 考 爭 點 一 考 題 趨 勢 二 行 政 法 考 試 上 所 關 心 的 重 點 序 言 一 行 政 法 並 不 難 行 政 法 科 目 考 題 內 容 可 以 說 是 包 羅 萬 象, 考 生 要 能 夠 精 確 掌 握 實 務 上 各 種 領

More information

鍟嗗搧瑙傚療鈥㈤挗鏉

鍟嗗搧瑙傚療鈥㈤挗鏉 年 报 食 用 油 可 期 稳 定 改 善 稳 定 有 余, 油 脂 将 继 续 表 现 库 存 压 力 和 高 价 值 化 价 区 的 对 抗 性 投 资 机 会 更 多 是 油 脂 内 部 结 构 以 及 其 对 粕 类 相 对 强 弱 的 变 动 同 时 有 菜 籽 油 和 棕 榈 油 的 改 善 可 预 期 相 较 于 其 它 大 多 数 商 品 的 表 现, 油 脂 系 在 2015 年

More information

席 远 杨 一 人 了, 正 当 她 开 枪 时 却 发 现 子 弹 没 了 该 死, 只 能 赤 手 空 拳 了 洛 水 云 与 席 远 杨 交 起 手 来, 洛 水 云 出 手 招 招 致 命 想 那 席 远 杨 也 不 是 泛 泛 之 辈, 很 快 掌 握 了 洛 水 云 出 招 路 数 看

席 远 杨 一 人 了, 正 当 她 开 枪 时 却 发 现 子 弹 没 了 该 死, 只 能 赤 手 空 拳 了 洛 水 云 与 席 远 杨 交 起 手 来, 洛 水 云 出 手 招 招 致 命 想 那 席 远 杨 也 不 是 泛 泛 之 辈, 很 快 掌 握 了 洛 水 云 出 招 路 数 看 美 人 洛 水 云 / 作 者 : 慕 橙 子 第 一 卷 第 一 章 : 惨 死 睁 开 双 眼, 洛 水 云 马 上 闭 上, 再 睁 开, 又 闭 上 如 此 反 复 几 次 之 后, 洛 水 云 确 认 自 己 不 是 在 做 梦, 她 是 真 实 的 躺 在 床 上 这 究 竟 是 怎 么 回 事, 她 不 是 死 了 么? 是 谁 救 了 她 么? 如 果 她 被 救, 那 席 远 杨

More information

東區校園中法治教育種子師資教學研習營

東區校園中法治教育種子師資教學研習營 1 錄 錄 2 3 年 律 立 蓮 理 理 行 年 例 理 念 念 力 說 參 念 律 說 老 律 不 律 念 參 參 兩 力 參 兩 4 行 年 蓮 行 兩 見 參 律 行 說 論 兩 行 狀 參 參 蓮 蘭 列 律 年 律 理 律 年 參 行 行 兩 行 行 參 聯 參 聯 行 行 理 來 5 列 利 律 論 例 老 老 狀 老 老 了 利 老 索 老 行 不 老 錄 6 老 尿 例 律 留 量

More information

閱 讀 素 材 V.S 分 組 方 式 的 差 異 化 教 學 工 具 表 班 級 :( ) 閱 讀 素 材 V.S 分 組 方 式 獨 立 閱 讀 夥 伴 閱 讀 ( 同 質 性 ) 夥 伴 閱 讀 ( 異 質 性 ) 友 善 陪 伴 虛 心 受 教 國 語 日 報 新 聞 生 活 文 藝 兒 童

閱 讀 素 材 V.S 分 組 方 式 的 差 異 化 教 學 工 具 表 班 級 :( ) 閱 讀 素 材 V.S 分 組 方 式 獨 立 閱 讀 夥 伴 閱 讀 ( 同 質 性 ) 夥 伴 閱 讀 ( 異 質 性 ) 友 善 陪 伴 虛 心 受 教 國 語 日 報 新 聞 生 活 文 藝 兒 童 差 異 化 教 學 在 老 梅 103 年 12 月 差 異 化 教 學 是 老 師 對 於 學 習 者 需 求 的 回 應, 這 句 話 雖 然 動 人, 但 要 瞭 解 每 個 學 生 不 同 的 需 求 並 予 以 回 應, 則 在 教 學 上 需 要 不 斷 的 嘗 試 觀 察 與 調 整, 老 師 不 僅 需 要 高 度 的 專 業 敏 銳 的 觀 察 十 足 的 創 意 等 等, 更 重

More information

资源管理软件TORQUE与作业调度软件Maui的安装、设置及使用

资源管理软件TORQUE与作业调度软件Maui的安装、设置及使用 TORQUE Maui hmli@ustc.edu.cn 2008 1 1 TORQUE 2 1.1 TORQUE........................... 2 1.2 TORQUE...................... 2 1.3 TORQUE.......................... 4 1.4 TORQUE........................... 4

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 - - I - II - Abstract Except for few intellect games such as chess, mahjong, and poker games, role-play games in on-line games are the mainstream. As for the so-called RPG, briefly speaking, it is the

More information

Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower thresh

Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower thresh SWOT 5 Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower threshold. All of these lead to aggravate drastically

More information

Complaint against:

Complaint against: GPRS GPRS 106 7M 7M 7M/2/3-12 SmarTone in! 1 WAP GPRS 2 1 SmarTone in! WAP GPRS 1 1 2 SmarTone in! GPRS (GSM) 2G - 1 - 2. PayGo 2G GPRS GPRS SmarTone in! SmarTone in! SmarTone in! GPRS 1 SmarTone in! GPRS

More information

untitled

untitled IBM Software Group IBM 2006 IBM Corporation Rational Unified Process VS 2 3 RUP Proven. Practical. Flexible. 4 RUP:, Use-Case,,, (discipline) 5 (Use-case driven), 6 7 8 Rational Unified Process VS 9 Requirements

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

1 目 錄 1. 簡 介... 2 2. 一 般 甄 試 程 序... 2 3. 第 一 階 段 的 準 備... 5 4. 第 二 階 段 的 準 備... 9 5. 每 間 學 校 的 面 試 方 式... 11 6. 各 程 序 我 的 做 法 心 得 及 筆 記... 13 7. 結 論..

1 目 錄 1. 簡 介... 2 2. 一 般 甄 試 程 序... 2 3. 第 一 階 段 的 準 備... 5 4. 第 二 階 段 的 準 備... 9 5. 每 間 學 校 的 面 試 方 式... 11 6. 各 程 序 我 的 做 法 心 得 及 筆 記... 13 7. 結 論.. 如 何 準 備 研 究 所 甄 試 劉 富 翃 1 目 錄 1. 簡 介... 2 2. 一 般 甄 試 程 序... 2 3. 第 一 階 段 的 準 備... 5 4. 第 二 階 段 的 準 備... 9 5. 每 間 學 校 的 面 試 方 式... 11 6. 各 程 序 我 的 做 法 心 得 及 筆 記... 13 7. 結 論... 20 8. 附 錄 8.1 推 甄 書 面 資 料...

More information

「本港青少年網上行為」調查

「本港青少年網上行為」調查 1) 2) Analysis of Local Net Group : the Implications of the Study on Net Behavior of Youth in Hong Kong CHAN King Chuen Information & Research Manager, Breakthrough CHAN Chi Fu Investigator of Research

More information

南華大學數位論文

南華大學數位論文 南 華 大 學 生 死 學 系 碩 士 論 文 線 上 墓 園 服 務 內 涵 與 模 式 建 構 之 研 究 A Study on Online Memorial Services and Model Construction 研 究 生 : 林 威 伸 指 導 教 授 : 蔡 明 昌 博 士 中 國 民 國 九 十 九 年 十 二 月 十 五 日 感 謝 所 有 幫 助 過 我 的 人, 特

More information

1 SQL Server 2005 SQL Server Microsoft Windows Server 2003NTFS NTFS SQL Server 2000 Randy Dyess DBA SQL Server SQL Server DBA SQL Server SQL Se

1 SQL Server 2005 SQL Server Microsoft Windows Server 2003NTFS NTFS SQL Server 2000 Randy Dyess DBA SQL Server SQL Server DBA SQL Server SQL Se 1 SQL Server 2005 DBA Microsoft SQL Server SQL ServerSQL Server SQL Server SQL Server SQL Server SQL Server 2005 SQL Server 2005 SQL Server 2005 o o o SQL Server 2005 1 SQL Server 2005... 3 2 SQL Server

More information

chapter 2 HTML5 目錄iii HTML HTML HTML HTML HTML canvas

chapter 2 HTML5 目錄iii HTML HTML HTML HTML HTML canvas Contents 目錄 chapter 1 1-1... 1-2 1-2... 1-3 HTML5... 1-3... 1-5 1-3... 1-9 Web Storage... 1-9... 1-10 1-4 HTML5... 1-14... 1-14... 1-15 HTML5... 1-15... 1-15... 1-16 1-5... 1-18 Apps... 1-18 HTML5 Cache

More information

(Microsoft PowerPoint - UML\302\262\244\266_use case.ppt)

(Microsoft PowerPoint - UML\302\262\244\266_use case.ppt) UML 簡 介 _Use Case Diagram 資 訊 科 技 系 林 偉 川 UML 簡 介 2 1 UML UML 是 Unified Modeling Language 的 縮 寫, 中 文 翻 譯 為 統 一 塑 模 語 言 UML 統 合 了 物 件 導 向 方 法 論 之 各 派 不 同 的 方 法, 提 供 了 一 致 性 的 圖 形 語 言 做 為 開 發 系 統 的 溝 通 媒

More information

信 息 披 露 义 务 人 声 明 1 信 息 披 露 义 务 人 依 据 中 华 人 民 共 和 国 公 司 法 中 华 人 民 共 和 国 证 券 法 上 市 公 司 收 购 管 理 办 法 公 开 发 行 证 券 公 司 信 息 披 露 内 容 与 格 式 准 则 第 15 号 权 益 变 动

信 息 披 露 义 务 人 声 明 1 信 息 披 露 义 务 人 依 据 中 华 人 民 共 和 国 公 司 法 中 华 人 民 共 和 国 证 券 法 上 市 公 司 收 购 管 理 办 法 公 开 发 行 证 券 公 司 信 息 披 露 内 容 与 格 式 准 则 第 15 号 权 益 变 动 证 券 代 码 :600565 证 券 简 称 : 迪 马 股 份 重 庆 市 迪 马 实 业 股 份 有 限 公 司 简 式 权 益 变 动 报 告 书 上 市 公 司 名 称 : 重 庆 市 迪 马 实 业 股 份 有 限 公 司 股 票 上 市 地 点 : 上 海 证 券 交 易 所 股 票 简 称 : 迪 马 股 份 股 票 代 码 : 600565 信 息 披 露 义 务 人 : 财 通

More information

, (, ),,,,,, : : ( ), :,,,,,,, ( ), ( ),,,,,, ( ) ( ),, :!,,,,,,,,,,,,,,,,,,,,,,, [1 ] :,,,, :, ;, ( ),, :,,,,,,,,,,, 66

, (, ),,,,,, : : ( ), :,,,,,,, ( ), ( ),,,,,, ( ) ( ),, :!,,,,,,,,,,,,,,,,,,,,,,, [1 ] :,,,, :, ;, ( ),, :,,,,,,,,,,, 66 1997 3 :,,,,,, ( ),,, :,,,,,,,,,, :,,,,,,,,,, ( ), :,,,,,,,,,, ( ) ( ),,,,,,,, ( ) ( ),,,,,, 4 100, ( ),,,,,,, ( ), ( ), ( ),,,, 65 , (, ),,,,,, : : ( ), :,,,,,,, ( ), ( ),,,,,, ( ) ( ),, :!,,,,,,,,,,,,,,,,,,,,,,,

More information

2010-10-29 ( 1 : 3 1. 2. 2 1/2 3. : 4. http://334.edb.hkedcity.net/doc/chi/er_of_ugc_c_2 5. 0101007.pdf 6. 7. 8. 2 3 1. 2. 3. 4. 5. 2 1/ 2 * (* : : : http://334.edb.hkedcity.net/doc/chi/non- UGC_funded_level_%20requirement%20_Chi_bookl

More information

WWW PHP

WWW PHP WWW PHP 2003 1 2 function function_name (parameter 1, parameter 2, parameter n ) statement list function_name sin, Sin, SIN parameter 1, parameter 2, parameter n 0 1 1 PHP HTML 3 function strcat ($left,

More information

國立中山大學學位論文典藏

國立中山大學學位論文典藏 88 2 The Research of head-hunting Industry. 8741605 87 Wu Po-Hui Yeh, Kuang S. head-hunting executive search Transaction cost Agency theory 1 This study attempts to investigate and analyze the Executive

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

Microsoft Word - 3圓來如此.doc

Microsoft Word - 3圓來如此.doc 局 長 序 精 進 教 學 是 教 育 部 近 幾 年 推 動 教 育 改 革 的 重 點, 本 市 國 民 教 育 輔 導 團 數 學 領 域 能 夠 進 行 整 體 性 的 規 劃, 強 調 資 源 整 合 專 業 實 踐 重 質 不 重 量, 並 將 輔 導 工 作 聚 焦 在 精 進 教 師 課 堂 教 學 能 力 傳 遞 教 育 政 策 與 新 知, 及 推 展 創 新 教 學 之 發 展

More information

目 录 CONTENTS 写 作 策 略 知 识 在 小 学 语 文 教 学 中 应 用 状 况 的 分 析 赵 方 42 略 谈 信 息 技 术 在 初 中 英 语 教 学 中 的 应 用 周 丽 娜 43 如 何 有 效 提 高 小 学 数 学 教 学 质 量 包 爱 萍 44 浅 谈 小 学

目 录 CONTENTS 写 作 策 略 知 识 在 小 学 语 文 教 学 中 应 用 状 况 的 分 析 赵 方 42 略 谈 信 息 技 术 在 初 中 英 语 教 学 中 的 应 用 周 丽 娜 43 如 何 有 效 提 高 小 学 数 学 教 学 质 量 包 爱 萍 44 浅 谈 小 学 目 录 CONTENTS 教育创新 广告代理 北京晋风雅颂文化传媒有限公司 浅谈新课改下历史与社会的教学反思 谢芳芳 1 浅论小学语文趣味性教学方法 杨 华 2 浅析应用能力培养在高校英语翻译教学中的改革 张琼瑶 3 浅谈新课程改革下的赏识教育 赵 杰 4 高专英语教学中人文教育探析 金 英 5 在阅读教学中如何渗透法制意识 黎廷勇 6 转变思维方式 创新德育工作 朱 莹 7 对我国体育教学中培养学生创新能力的探讨

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

科 研 信 息 化 技 术 与 应 用,2015, 6 (1) of identity and the framework of identity management, this paper analyses the development trend of Identity Management

科 研 信 息 化 技 术 与 应 用,2015, 6 (1) of identity and the framework of identity management, this paper analyses the development trend of Identity Management 科 研 信 息 化 技 术 与 应 用 2015, 6(1): 41 49 应 用 / APPLICATION 身 份 管 理 发 展 趋 势 和 中 国 科 学 院 身 份 管 理 系 统 薛 聪 1,2, 向 继 1 1, 高 能 1. 中 国 科 学 院 信 息 工 程 研 究 所 信 息 安 全 国 家 重 点 实 验 室, 北 京 100093 2. 中 国 科 学 院 大 学, 北 京

More information

sp_overview.pptx

sp_overview.pptx 系統程式設計 Systems Programming 鄭卜壬教授臺灣大學資訊工程系 Tei-Wei Kuo, Chi-Sheng Shih, Hao-Hua Chu, and Pu-Jen Cheng 2008 Goal of SP Course You are expected. to be familiar with the UNIX-like systems to become good system

More information

1406.indd

1406.indd 06 2014 年 总 第 143 期 上 海 市 孙 中 山 宋 庆 龄 文 物 管 理 委 员 会 上 海 宋 庆 龄 研 究 会 主 办 图 片 新 闻 11 月 12 日, 上 海 各 界 人 士 纪 念 孙 中 山 诞 辰 148 周 年 活 动 在 孙 中 山 故 居 举 行 ( 摄 影 : 王 云 华 ) 11 月 11 日, 上 海 孙 中 山 故 居 纪 念 馆 举 办 的 故 居

More information

上图专刊2006-3AAA.doc

上图专刊2006-3AAA.doc 特 讯 目 录 CONTENTS 2 蒋 以 任 赴 上 海 图 书 馆 作 专 题 报 告 ( 刊 文 汇 报 2006 年 2 月 25 日 记 者 陈 毅 然 ) 2 讲 座 文 化 : 城 市 新 磁 场 ( 刊 人 民 日 报 2006 年 2 月 14 日 记 者 叶 薇 ) 4 春 天, 你 好 2006 年 春 海 上 心 声 诗 歌 朗 诵 会 在 上 图 举 行 ( 金 谷 )

More information

衡山靈學創始人 超越時代的靈學明師 許衡山 老師 許衡山老師 出生於西元 1942 年 於 1980 年代啟發先天眼竅 自證其道 了悟真理 許 老師首先發現 人人皆可開發出第三眼能力與靈性能量 並藉由系統化的研究 將種種 生命現象與宇宙真理做深入淺出的剖析 並為生命的最終意義指出一條明路 現代文明昌

衡山靈學創始人 超越時代的靈學明師 許衡山 老師 許衡山老師 出生於西元 1942 年 於 1980 年代啟發先天眼竅 自證其道 了悟真理 許 老師首先發現 人人皆可開發出第三眼能力與靈性能量 並藉由系統化的研究 將種種 生命現象與宇宙真理做深入淺出的剖析 並為生命的最終意義指出一條明路 現代文明昌 如果你是個 追尋者 看完這本靈學寶典之後 相信你一定有一種感受 一種 來自內在深處的玄妙悸動 原來 原來就是這本書 原來這就是你窮極一生不斷 在追尋的靈性寶典 我是誰?我來自何方?為何我會在這裡?存在是什麼?我的生命又有何意義?這 是自古以來所有的哲學家都問過的問題 也是願意走向內在探索的所有人 都曾 經問過的問題 若你也曾有這樣的追尋與慨歎 恭喜你 你不但是個靈性的追尋者 還有著大多 數人所沒有的一顆柔軟心

More information

第53期内页.cdr

第53期内页.cdr [ 目 录 ] CONTENTS 2013 年 12 月 聚 焦 十 八 届 三 中 全 会 学 习 园 地 重 要 文 件 中 国 共 产 党 第 十 八 届 中 央 委 员 会 第 三 次 全 体 会 议 公 报 1 中 共 中 央 关 于 全 面 深 化 改 革 若 干 重 大 问 题 的 决 定 5 关 于 中 共 中 央 关 于 全 面 深 化 改 革 若 干 重 大 问 题 的 决 定

More information

슬로시티번역,더빙 등 보고서(중문)_두현.hwp

슬로시티번역,더빙 등 보고서(중문)_두현.hwp 礼 山 大 兴 慢 城 讲 故 事 CONTENTS 01 礼 山 大 兴 慢 城 慢 手 织 就 的 日 常 幸 福 1 02 兄 弟 情 公 园 与 情 深 义 重 两 兄 弟 的 仿 建 故 居 走 进 情 深 义 重 两 兄 弟 的 故 事 2 03 兄 弟 情 集 市 与 传 统 大 兴 5 日 集 人 情 味 十 足 的 乡 村 集 市 3 04 碑 石 街 通 过 碑 石 展 开 的

More information