Long Term Protection Model in R. Dr. Urszula Gasser, Senior Pricing Actuary

Size: px
Start display at page:

Download "Long Term Protection Model in R. Dr. Urszula Gasser, Senior Pricing Actuary"

Transcription

1 Long Term Protection Model in R Dr. Urszula Gasser, Senior Pricing Actuary

2 2 Disclaimer The following presentation is for general information, education and discussion purposes only. Views or opinions expressed, whether oral or in writing do not necessarily reflect those of PartnerRe nor do they constitute legal or professional advice.

3 The need 3

4 4 Life insurance Gives protection against loss resulting from death (or serious illness) of an insured

5 5 Life insurance Gives protection against loss resulting from death (or serious illness) of an insured

6 6 Life reinsurer needs to model underlying risk need for specialized tools

7 The model 7

8 8 What about Mr Bloggs? healthy

9 9 What about Mr Bloggs? healthy dead

10 10 What about Mr Bloggs? healthy lapsed dead

11 11 What about Mr Bloggs? healthy early cancer lapsed dead

12 12 What about Mr Bloggs? healthy early cancer lapsed dead

13 13 What about Mr Bloggs? healthy early cancer severe cancer lapsed dead

14 14 What about Mr Bloggs? healthy early cancer severe cancer lapsed dead

15 15 What about Mr Bloggs? healthy early cancer severe cancer early and severe cancer lapsed dead

16 16 What about Mr Bloggs? healthy early cancer severe cancer early and severe cancer lapsed dead

17 17 What about Mr Bloggs? l h x(d) healthy q x i 1 x i 2 x early cancer i 1 x* i 2 x severe cancer i lb1->lb2 x(d) i lb2->lb1 x(d) l lb1 x(d) l lb1+lb2 x(d) early and severe cancer l lb2 x(d) q lb1+lb2->dead x(d) q lb2->dead x(d) lapsed q lb1->dead x(d) dead q x,i x,l x mortality rate, incidence rate, lapse rate d duration (months) in given state

18 And what about Mrs Bloggs? 18

19 19 To model Mr & Mrs Bloggs policy we decided to build our own, Long Term Protection Model for pricing

20 The tool 20

21 21 LTPM pricing tool needs to be User friendly Easy to access Simple to set-up Fast to calculate Straightforward to interpret Flexible Stable Secure Auditable

22 22 We decided to do it in R as opposed to most tools used in the re/insurance industry, because these come often with: Legacy issues (too heavy) Calculation constraints (some things are not possible) Access issues (desktop versions, use of workers, external clouds) Transparency issues (black-box) Maintenance issues (costly upgrade, adaptation)

23 23 Why R? Becoming the standard analytics tool at university level and in many industries Free Open source Meets our needs Fast Flexible Reduces the number of platforms we maintain

24 24 R is an excellent fit but we also need an infrastructure to support all the tool requirements

25 The workflow 25

26 26 First, let s look at the steps in the calculation Input data

27 27 Steps in the calculation Shiny web interface Input data

28 28 Steps in the calculation Dedicated server Shiny web interface Input data

29 29 Steps in the calculation Dedicated server Shiny web interface Code repository with version control and issue tracker Input data

30 30 Steps in the calculation Dedicated server Shiny web interface Code repository with version control and issue tracker Input data

31 31 Steps in the calculation Dedicated server Shiny web interface Code repository with version control and issue tracker Input data

32 32 Steps in the calculation Dedicated server Shiny web interface Code repository with version control and issue tracker Input data

33 33 Steps in the calculation Dedicated server Shiny web interface Code repository with version control and issue tracker Output data Input data

34 The interface 34

35 35

36 web interface 36

37 37 web interface collaboration

38 38 web interface collaboration choice of model version

39 39 web interface collaboration choice of model version intuitive names

40 40 web interface collaboration choice of model version intuitive names upload of the input data

41 41

42 42

43 43

44 44

45 45

46 46

47 47

48 48

49 49 Content of a run Input Output Model code + Gitlab reference Run log file Run ZIP

50 The anatomy 50

51 51 GitLab repository LTPM Shiny apps LTPMcreate LTPMrun R packages as git submodules LTPMcalc LTPMlogging LTPMinput GitLab project

52 52 Shiny applications There are two Shiny applications in the LTPM: 1. LTPMcreate: the main application where pricing exercises can be defined and runs can be created. 2. LTPMrun: an interface to each individual run which displays run details (e.g. input files and settings), status messages, and provides access to results.

53 53 GitLab repository LTPM Shiny apps LTPMcreate LTPMrun R packages as git submodules LTPMcalc LTPMlogging LTPMinput GitLab project

54 54 GitLab repository LTPM Shiny apps LTPMcreate LTPMrun R packages as git submodules LTPMcalc LTPMlogging LTPMinput

55 55 R packages To support the calculations we have created three R extension packages: 1. LTPMcalc: includes all functionality for the actual calculations for the multi-state model. 2. LTPMinput: functionality to convert user input (i.e. spreadsheets) to an intermediate format (i.e. CSV). 3. LTPMlogging: functionality to allow all scripts and applications to log time-stamped information to the console or to a file on disk.

56 56 GitLab repository LTPM Shiny apps LTPMcreate LTPMrun R packages as git submodules LTPMcalc LTPMlogging LTPMinput

57 57 GitLab repository LTPM Shiny apps LTPMcreate LTPMrun R packages as git submodules LTPMcalc LTPMlogging LTPMinput GitLab group GitLab project

58 Packages as git submodules GitLab view 58

59 59 Anatomy of LTPMrun execute.r install.r LTPMlogging Shiny application input.r LTPMinput calc.r LTPMcalc

60 60 Executable R scripts The LTPMrun application has one R script to execute a full calculation run called execute.r. This script defines three execution steps, each implemented in a separate R script: 1. install.r: installation of R extension packages required by the run, 2. input.r: reading and conversion of input file(s) provided by the user, 3. calc.r: perform the calculations.

61 61 LTPMcalc The R package which implements the actual model functionality including the multi-state model. The multi-state model is a Markov chain, which is a discrete-time Markov process. Implementation details can be found in the package vignette.

62 Flexibility and adaptability 62

63 63 Choice of actuarial model version User can choose between: - the latest released version - past released versions - customized version created by themselves - customized version created by other user Master branch V1.0 V2.0 V3.0 V4.0 V5.0 Branch 1 Branch 2 Tags

64 64 Choice of actuarial model version list of git tags list of git branches

65 Quality assurance 65

66 66 How do we ensure that the model is correct? We can never guarantee that the model is completely free of errors and bugs. To minimize errors, we apply standard practices for quality assurance in software development: 1. Many small unit tests for individual functions. 2. Integration (i.e. end-to-end) tests using precalculated results. 3. User testing.

67 67 GitLab Source code version control using Git. Issue tracker to track bugs and our progress in fixing these. Continuous Integration (CI) pipelines to automatically test on the target system all changes committed to the source code repository. - performed in target environment - immediate upon push - notifications can be send to Slack

68 GitLab - Continuous Integration 68

69 Questions? 69

Software configuration management

Software configuration management Software Engineering Theory Software configuration management Lena Buffoni/ Kristian Sandahl Department of Computer and Information Science 2017-03-27 2 Maintenance Requirements System Design (Architecture,

More information

Sunil Shah SECURE, FLEXIBLE CONTINUOUS DELIVERY PIPELINES WITH GITLAB AND DC/OS Mesosphere, Inc. All Rights Reserved.

Sunil Shah SECURE, FLEXIBLE CONTINUOUS DELIVERY PIPELINES WITH GITLAB AND DC/OS Mesosphere, Inc. All Rights Reserved. Sunil Shah SECURE, FLEXIBLE CONTINUOUS DELIVERY PIPELINES WITH GITLAB AND DC/OS 1 Introduction MOBILE, SOCIAL & CLOUD ARE RAISING CUSTOMER EXPECTATIONS We need a way to deliver software so fast that our

More information

Git for Subversion users

Git for Subversion users Git for Subversion users Zend webinar, 23-02-2012 Stefan who? Stefan who? Freelancer: Ingewikkeld Stefan who? Freelancer: Ingewikkeld Symfony Community Manager Stefan who? Freelancer: Ingewikkeld Symfony

More information

Fusion Registry 9 SDMX Data and Metadata Management System

Fusion Registry 9 SDMX Data and Metadata Management System Registry 9 Data and Management System Registry 9 is a complete and fully integrated statistical data and metadata management system using. Whether you require a metadata repository supporting a highperformance

More information

CAKEDC GIT WORKFLOW. CakeDC Git Workflow is a project development and release work flow which provides a

CAKEDC GIT WORKFLOW. CakeDC Git Workflow is a project development and release work flow which provides a CAKEDC GIT WORKFLOW CakeDC Git Workflow is a project development and release work flow which provides a development and release cycle based on key phases: Development: All active development is driven

More information

DATA PROCESSING TERMS

DATA PROCESSING TERMS DATA PROCESSING TERMS Safetica Technologies s.r.o. These Data Processing Terms (hereinafter the Terms ) govern the rights and obligations between the Software User (hereinafter the User ) and Safetica

More information

Visualizing Git Workflows. A visual guide to 539 workflows

Visualizing Git Workflows. A visual guide to 539 workflows Visualizing Git Workflows A visual guide to 539 workflows Table of Contents Notation Collaboration Without Review or Branches Merge Conflicts Requesting Code Review Collaboration with Multiple Branches

More information

DevOps Anti-Patterns. Have the Ops team deal with it. Time to fire the Ops team! Let s hire a DevOps unit! COPYRIGHT 2019 MANICODE SECURITY

DevOps Anti-Patterns. Have the Ops team deal with it. Time to fire the Ops team! Let s hire a DevOps unit! COPYRIGHT 2019 MANICODE SECURITY DevOps Anti-Patterns Have the Ops team deal with it. Time to fire the Ops team! Let s hire a DevOps unit! 31 Anti-Pattern: Throw it Over the Wall Development Operations 32 Anti-Pattern: DevOps Team Silo

More information

Belle II - Git migration

Belle II - Git migration Belle II - Git migration Why git? Stash GIT service managed by DESY Powerful branching and merging capabilities Resolution of (JIRA) issues directly be map to branches and commits Feature freeze in pre-release

More information

"Charting the Course to Your Success!" MOC Planning, Deploying and Managing Microsoft System Center Service Manager 2010.

Charting the Course to Your Success! MOC Planning, Deploying and Managing Microsoft System Center Service Manager 2010. Description Course Summary This course provides students with knowledge and skills to install and configure System Center. The course focuses on implementing, configuring and integrating with other System

More information

Version Control in SAS Enterprise Guide 7.1

Version Control in SAS Enterprise Guide 7.1 Version Control in SAS Enterprise Guide 7.1 Shahriar Khosravi Senior Analyst, Risk Management Risk Capital and Model Development Business Initiatives Winter 2018 Introduction Main Objectives Provide a

More information

What s new in Configuration Manager 1702 and beyond. Jörgen Nilsson.

What s new in Configuration Manager 1702 and beyond. Jörgen Nilsson. What s new in Configuration Manager 1702 and beyond Jörgen Nilsson Releases since summer of 2016 Configuration Manager 1606 CB Configuration Manager 1606 TP Configuration Manager 1607 TP Configuration

More information

Git Basi, workflow e concetti avanzati (pt2)

Git Basi, workflow e concetti avanzati (pt2) Git Basi, workflow e concetti avanzati (pt2) Andrea Fornaia, Ph.D. Department of Mathema.cs and Computer Science University of Catania Viale A.Doria, 6-95125 Catania Italy fornaia@dmi.unict.it hfp://www.cs.unict.it/~fornaia/

More information

How to choose a website design firm

How to choose a website design firm How to choose a website design firm 22 questions to ask before engaging in an important partnership Website development projects can be fraught with risk. Organizations often wonder: How can we be sure

More information

Tour Trak Project Plan

Tour Trak Project Plan Tour Trak Project Plan The Cycologists Project Plan 1. Project Overview 1.1 Scope Statement This project is a continuation of TourTrak, developed by previous senior project teams Centri Pedal, Dev Cycle,

More information

How the Cloud is Enabling the Disruption of the Construction Industry. AWS Case Study Construction Industry. Abstract

How the Cloud is Enabling the Disruption of the Construction Industry. AWS Case Study Construction Industry. Abstract Case Study Construction Industry How the Cloud is Enabling the Disruption of the Construction Industry Abstract A Minfy-architected cloud solution is helping iquippo, a digital marketplace for the construction

More information

Disaster recovery strategic planning: How achievable will it be?

Disaster recovery strategic planning: How achievable will it be? April 16 18, 2012 Talking Stick Resort Scottsdale, Arizona Disaster recovery strategic planning: How achievable will it be? Prudence Marasigan Ernst & Young Advisory Services, Senior Manager prudence.marasigan@ey.com

More information

JetBrains TeamCity Comparison

JetBrains TeamCity Comparison JetBrains TeamCity Comparison TeamCity is a continuous integration and continuous delivery server developed by JetBrains. It provides out-of-the-box continuous unit testing, code quality analysis, and

More information

Lesson 7: Recipe Display Application Setup Workspace

Lesson 7: Recipe Display Application Setup Workspace Lesson 7: Recipe Display Application Setup Workspace Setup Workspace - 5 STEPS Step #1: Setup a new workspace in Cloud9 Step #2: Copy the files & folder to the local repository (Cloud9) Step #3: Create

More information

SECURITY POLICY COMPLIANCE WITH PUPPET AND ANSIBLE. Sean M. Shore Best Buy MSP RHUG Dec 2017

SECURITY POLICY COMPLIANCE WITH PUPPET AND ANSIBLE. Sean M. Shore Best Buy MSP RHUG Dec 2017 SECURITY POLICY COMPLIANCE WITH PUPPET AND ANSIBLE Sean M. Shore Best Buy MSP RHUG Dec 2017 THE PROBLEM Quarterly SOX and annual PCI audits Ever-expanding list of controls and covered servers Enormous

More information

Application Container Cloud

Application Container Cloud APPLICATION CONTAINER CLOUD Application Container Cloud with Java SE and Node The Best Java SE and Node Cloud. Get the choice of either Oracle Java SE Advanced, including Flight Recorder for production

More information

KTH Royal Institute of Technology SEMINAR 2-29 March Simone Stefani -

KTH Royal Institute of Technology SEMINAR 2-29 March Simone Stefani - KTH Royal Institute of Technology SEMINAR 2-29 March 2017 Simone Stefani - sstefani@kth.se WHAT IS THIS SEMINAR ABOUT Branching Merging and rebasing Git team workflows Pull requests and forks WHAT IS THIS

More information

CONTENT INTRODUCTION WHAT IS JIRA HOW JIRA CAN HELP YOU ATLASSIAN FAMILY 10 COOLEST ADD-ONS FOR YOUR JIRA

CONTENT INTRODUCTION WHAT IS JIRA HOW JIRA CAN HELP YOU ATLASSIAN FAMILY 10 COOLEST ADD-ONS FOR YOUR JIRA CONTENT INTRODUCTION WHAT IS JIRA HOW JIRA CAN HELP YOU ATLASSIAN FAMILY 10 COOLEST ADD-ONS FOR YOUR JIRA ScriptRunner for Jira Automation for Jira Tempo Timesheets Structure Jira Misc Custom Fields Git

More information

Orchestrating the Continuous Delivery Process

Orchestrating the Continuous Delivery Process Orchestrating the Continuous Delivery Process steven.g.harris@cloudbees.com @stevengharris SVP Products, CloudBees 1 Continuous Delivery Overview Feedback Loop App Lifecycle BUILD TEST STAGE Deploy Run

More information

Continuous integration & continuous delivery. COSC345 Software Engineering

Continuous integration & continuous delivery. COSC345 Software Engineering Continuous integration & continuous delivery COSC345 Software Engineering Outline Integrating different teams work, e.g., using git Defining continuous integration / continuous delivery We use continuous

More information

Licensing Windows and Microsoft Office for use on a Mac

Licensing Windows and Microsoft Office for use on a Mac Volume Licensing brief Licensing Windows and Microsoft Office for use on a Mac Table of Contents This brief applies to all Volume Licensing programs. Summary... 1 What s New in This Brief... 1 Details...

More information

DMN DECISIONS EXECUTION SCENARIOS

DMN DECISIONS EXECUTION SCENARIOS DMN DECISIONS EXECUTION SCENARIOS Author: Simon Ringuette Publication Date: March 28th, 2018 3100 Côte-Vertu, #420 Montréal (Québec) H4R 2J8 514 990-6639 Trisotech.com Introduction The Trisotech DMN Modeler

More information

What is git? Distributed Version Control System (VCS); Created by Linus Torvalds, to help with Linux development;

What is git? Distributed Version Control System (VCS); Created by Linus Torvalds, to help with Linux development; What is git? Distributed Version Control System (VCS); Created by Linus Torvalds, to help with Linux development; Why should I use a VCS? Repositories Types of repositories: Private - only you and the

More information

Service Description VMware Workspace ONE

Service Description VMware Workspace ONE VMware Workspace ONE Last Updated: 05 April 2018 The product described in this Service Description is protected by U.S. and international copyright and intellectual property laws. The product described

More information

FilesAnywhere Features List

FilesAnywhere Features List FilesAnywhere Feature List FilesAnywhere Page 1 of 9 Contents Basic Features... 3 Advanced Features... 7 Enterprise Features... 9 FilesAnywhere Page 2 of 9 Basic Features No File Size Limit: There is no

More information

USING GIT FOR AUTOMATION AND COLLABORATION JUSTIN ELLIOTT - MATT HANSEN PENN STATE UNIVERSITY

USING GIT FOR AUTOMATION AND COLLABORATION JUSTIN ELLIOTT - MATT HANSEN PENN STATE UNIVERSITY USING GIT FOR AUTOMATION AND COLLABORATION JUSTIN ELLIOTT - MATT HANSEN PENN STATE UNIVERSITY AGENDA Version control overview Introduction and basics of Git Advanced Git features Collaboration Automation

More information

Jenkins: A complete solution. From Continuous Integration to Continuous Delivery For HSBC

Jenkins: A complete solution. From Continuous Integration to Continuous Delivery For HSBC Jenkins: A complete solution From Integration to Delivery For HSBC Rajesh Kumar DevOps Architect @RajeshKumarIN www.rajeshkumar.xyz Agenda Why Jenkins? Introduction and some facts about Jenkins Supported

More information

McAfee Security Management Center

McAfee Security Management Center Data Sheet McAfee Security Management Center Unified management for next-generation devices Key advantages: Single pane of glass across the management lifecycle for McAfee next generation devices. Scalability

More information

The Rock branching strategy is based on the Git Branching Model documented by Vincent Driessen.

The Rock branching strategy is based on the Git Branching Model documented by Vincent Driessen. Overview The Rock branching strategy is based on the Git Branching Model documented by Vincent Driessen. Branches Master The master branch should always reflect the latest production-ready state, and should

More information

Visual Studio Team Services

Visual Studio Team Services bgourley@microsoft.com Visual Studio Team Services Topics What are the current products What are Visual Studio Subscriptions Subscriber Benefits DevOps and VSTS VSTS licensing Developer Tools Deployment

More information

Licensing Windows and Microsoft Office for use on the Macintosh

Licensing Windows and Microsoft Office for use on the Macintosh Volume Licensing brief Licensing Windows and Microsoft Office for use on the Macintosh This brief applies to all Volume Licensing programs. Table of Contents Summary... 1 What s new in this brief... 1

More information

Azure DevOps. Randy Pagels Intelligent Cloud Technical Specialist Great Lakes Region

Azure DevOps. Randy Pagels Intelligent Cloud Technical Specialist Great Lakes Region Azure DevOps Randy Pagels Intelligent Cloud Technical Specialist Great Lakes Region What is DevOps? People. Process. Products. Build & Test Deploy DevOps is the union of people, process, and products to

More information

AppScan Deployment APPLICATION SECURITY SERVICES. Colin Bell. Applications Security Senior Practice Manager

AppScan Deployment APPLICATION SECURITY SERVICES. Colin Bell. Applications Security Senior Practice Manager APPLICATION SECURITY SERVICES AppScan Deployment Colin Bell Applications Security Senior Practice Manager Copyright 2017 HCL Products & Platforms www.hcltech.com The Evolution of Devops 2001 - Continuous

More information

Evidence.com 1.31 Release Notes

Evidence.com 1.31 Release Notes 1.31 Release Notes January 26, 2016 Document Version 1.0 Apple, ios, and Safari are trademarks of Apple, Inc. registered in the US and other countries. Firefox is a trademark of The Mozilla Foundation

More information

GIT TO DA REPO! VERSION CONTROL, GITLAB, AND ISU

GIT TO DA REPO! VERSION CONTROL, GITLAB, AND ISU GIT TO DA REPO! VERSION CONTROL, GITLAB, AND ISU Tony Brook & Nathan Stien August 2nd, 2016 WHAT IS VERSION CONTROL (And why should you care?) Shared workspace for multiple collaborators Tracking history

More information

Continuous Delivery the hard way with Kubernetes. Luke Marsden, Developer

Continuous Delivery the hard way with Kubernetes. Luke Marsden, Developer Continuous Delivery the hard way with Luke Marsden, Developer Experience @lmarsden Agenda 1. Why should I deliver continuously? 2. primer 3. GitLab primer 4. OK, so we ve got these pieces, how are we going

More information

Review Version Control Concepts

Review Version Control Concepts Review Version Control Concepts SWEN-261 Introduction to Software Engineering Department of Software Engineering Rochester Institute of Technology Managing change is a constant aspect of software development.

More information

AEM Code Promotion and Content Synchronization Best Practices

AEM Code Promotion and Content Synchronization Best Practices AEM Code Promotion and Content Synchronization Best Practices Ian Reasor, Technical Architect, Adobe Partner Experience Introduction When considering the movement of content through environments in an

More information

Licensing Guide. BlackBerry Enterprise Service 12. Version 12.0

Licensing Guide. BlackBerry Enterprise Service 12. Version 12.0 Licensing Guide BlackBerry Enterprise Service 12 Version 12.0 Published: 2014-11-13 SWD-20141118133401439 Contents About this guide... 5 What is BES12?... 6 Key features of BES12...6 Product documentation...

More information

platform Development Process Optimization For Drupal centric projects

platform Development Process Optimization For Drupal centric projects platform Development Process Optimization For Drupal centric projects Introduction This document explains how Platform impacts your Drupal centric project development process. Performance data from digital

More information

Skyhook designs and deploys high performance mobile location solutions, and exists to make location faster, more precise and practical.

Skyhook designs and deploys high performance mobile location solutions, and exists to make location faster, more precise and practical. CLEARVISION CASE STUDY INDUSTRY: Computer Software EST: 2003 COMPANY SIZE: 150-200 HEADQUARTERS Boston MA About Skyhook Skyhook designs and deploys high performance mobile location solutions, and exists

More information

Revision Control. How can 4. Slides #4 CMPT 276 Dr. B. Fraser. Local Topology Simplified. Git Basics. Revision Control:

Revision Control. How can 4. Slides #4 CMPT 276 Dr. B. Fraser. Local Topology Simplified. Git Basics. Revision Control: How can 4 (or 4000) developers work on a product at once? Revision Control Revision Control Revision Control: Also called version control, source control, software configuration management. Motivation:

More information

Fidelity Life Adviser Centre. How to Use Guide

Fidelity Life Adviser Centre. How to Use Guide Fidelity Life Adviser Centre How to Use Guide Revised December 2012 Contents Page Page Logging on... 1 Timing and Updating of data... 1 Fidelity Updates: News. 3 Investment returns... 3 Unit Prices.. 4

More information

Version Control. Second level Third level Fourth level Fifth level. - Software Development Project. January 17, 2018

Version Control. Second level Third level Fourth level Fifth level. - Software Development Project. January 17, 2018 Version Control Click to edit Master EECS text 2311 styles - Software Development Project Second level Third level Fourth level Fifth level January 17, 2018 1 But first, Screen Readers The software you

More information

Towards an integrated regulation platform in Luxembourg. Information Security Education Day th of april

Towards an integrated regulation platform in Luxembourg. Information Security Education Day th of april Towards an integrated regulation platform in Luxembourg Information Security Education Day 2017-28 th of april Context A complex and inter-connected digital ecosystem contributing to all sectors A set

More information

Getting started with GitHub

Getting started with GitHub Getting started with GitHub A beginner s guide. (There s no code in this slide deck!) Presented by Quinn Supplee https://github.com/quinns What is GitHub? GitHub is a code hosting platform for version

More information

Product Overview Archive2Azure TM. Compliance Storage Solution Based on Microsoft Azure. From Archive360

Product Overview Archive2Azure TM. Compliance Storage Solution Based on Microsoft Azure. From Archive360 Product Overview Compliance Storage Solution Based on Microsoft Azure From Archive360 1 Introduction The cloud has quickly become the preferred option for companies to help reverse the growing issues associated

More information

GETTING TO KNOW GIT: PART II JUSTIN ELLIOTT PENN STATE UNIVERSITY

GETTING TO KNOW GIT: PART II JUSTIN ELLIOTT PENN STATE UNIVERSITY GETTING TO KNOW GIT: PART II JUSTIN ELLIOTT PENN STATE UNIVERSITY 1 REVERTING CHANGES 2 REVERTING CHANGES Change local files git reset git checkout Revert a commit in the branch history git revert Reset

More information

Deploy. Your step-by-step guide to successfully deploy an app with FileMaker Platform

Deploy. Your step-by-step guide to successfully deploy an app with FileMaker Platform Deploy Your step-by-step guide to successfully deploy an app with FileMaker Platform Share your custom app with your team! Now that you ve used the Plan Guide to define your custom app requirements, and

More information

Continuous Integration Ensemble / HealthShare Health Connect

Continuous Integration Ensemble / HealthShare Health Connect Continuous Integration Ensemble / HealthShare Health Connect The scope of IT within an organisation is largely related to automating Business processes. So why not automate IT processes for once? Version

More information

COSEC SAMAY- Installation

COSEC SAMAY- Installation Matrix Technical Support Mailer 58 COSEC SAMAY- Installation Dear Friends, This MTSM helps user to install COSEC SAMAY in your PC Introduction COSEC SAMAY is Time - Attendance software specially designed

More information

Enabling Agile Database Development with Toad

Enabling Agile Database Development with Toad Enabling Agile Database Development with Toad Eliminate the bottleneck in your agile process with Toad Development Suite for Oracle and Toad Intelligence Central INTRODUCTION The challenges of agile methodology

More information

The ultimate solution for SVN to Git migration

The ultimate solution for SVN to Git migration The ultimate solution for SVN to Git migration In 2018 most developers use Git Subversion 16.6% Team Foundation 11.3% Git 88.4% decentralized fast Mercurial 3.7% No version control 3.5% flexible has great

More information

DevOps for Oracle Forms Using Developer Cloud Service

DevOps for Oracle Forms Using Developer Cloud Service DevOps for Oracle Forms Using Developer Cloud Service Automating Application Deployment O R A C L E W H I T E P A P E R N O V E M B E R 2 0 1 8 Disclaimer The following is intended to outline our general

More information

Enterprise GRC Implementation

Enterprise GRC Implementation Enterprise GRC Implementation Our journey so far implementation observations and learning points Derek Walker Corporate Risk Manager National Grid 1 Introduction to National Grid One of the world s largest

More information

Step 1: Setup a Gitlab account

Step 1: Setup a Gitlab account Most of us agree that Continuous Integration (CI), Continuous Delivery (CD), cloud infrastructure, test automation, and configuration management make up the basics of devops. Depending on the scale of

More information

Contents. Server Call Usage

Contents. Server Call Usage Server Call Usage Contents Server Call Usage Overview...3 Server Call Usage Dashboard...6 View Current Server Call Usage...6 View Report Suite Usage...8 Server Call Usage Alerts...10 Server Call Usage

More information

Lab 03 Finish and Deploy an Application. Lab 3-1: Add DELETE to the Spring Boot REST Application

Lab 03 Finish and Deploy an Application. Lab 3-1: Add DELETE to the Spring Boot REST Application Lab 03 Finish and Deploy an Application In this lab, you ll finish your version of the application featured in Lab 1. This includes creating the remaining REST calls. Test your work locally as you develop.

More information

Automated Testing of Tableau Dashboards

Automated Testing of Tableau Dashboards Kinesis Technical Whitepapers April 2018 Kinesis CI Automated Testing of Tableau Dashboards Abstract Companies make business critical decisions every day, based on data from their business intelligence

More information

How to Build an Appium Continuous Testing Pipeline

How to Build an Appium Continuous Testing Pipeline How to Build an Appium Continuous Testing Pipeline Step-by-Step Tutorial November, 2017 Today s speakers Guy Arieli, CTO, Experitest Ruth Zamir Marketing Director Experitest 01 Why do we need continuous

More information

QUICKBOOKS ONLINE FUNDAMENTALS SERIES. Part 1 Introducing Intuit QuickBooks Online Accountant

QUICKBOOKS ONLINE FUNDAMENTALS SERIES. Part 1 Introducing Intuit QuickBooks Online Accountant QUICKBOOKS ONLINE FUNDAMENTALS SERIES Part 1 Introducing Intuit QuickBooks Online Accountant Copyright Copyright 2016 Intuit, Inc. All Rights Reserved. Trademarks 2016 Intuit Inc. All rights reserved.

More information

IT INFRASTRUCTURE PROJECT PHASE I INSTRUCTIONS

IT INFRASTRUCTURE PROJECT PHASE I INSTRUCTIONS Project Overview IT INFRASTRUCTURE PROJECT PHASE I INSTRUCTIONS This project along with the Phase II IT Infrastructure Project will help you understand how a network administrator improves network performance

More information

Nuix ediscovery Specialist

Nuix ediscovery Specialist Nuix ediscovery Specialist Nuix ediscovery Specialist ADVANCE TWO-DAY INSTRUCTOR-LED COURSE Nuix ediscovery Specialist training is a two-day course that will work through the complete ediscovery workflow,

More information

Turbo boost your digital app test automation with Jenkins

Turbo boost your digital app test automation with Jenkins Turbo boost your digital app test automation with Jenkins Step-by-Step Tutorial May, 2018 Speakers Sheli Ashkenazi Sr. Product Manager Experitest Jonathan Aharon Sr. Sales Engineer Experitest 2 01 The

More information

Tutorial for Loading and Updating ERP Template

Tutorial for Loading and Updating ERP Template The ERP demonstration portal shows an overview of your company s key indicators, enabling executive and strategic management of the transactional data stored in your ERP. Before upgrading the ERP portal

More information

Certified Information Security Manager (CISM) Course Overview

Certified Information Security Manager (CISM) Course Overview Certified Information Security Manager (CISM) Course Overview This course teaches students about information security governance, information risk management, information security program development,

More information

Prof. Dr. Marko Boger. Prof. Dr. Christian Johner. Version Management

Prof. Dr. Marko Boger. Prof. Dr. Christian Johner. Version Management Prof. Dr. Marko Boger Prof. Dr. Christian Johner Version Management Learning objectives Know problems a version control system can solve Master terms such as Check-out, commit, merge, pull, fetch, Master,

More information

Tizen/Artik IoT Practice Part 4 Open Source Development

Tizen/Artik IoT Practice Part 4 Open Source Development 1 Tizen/Artik IoT Practice Part 4 Open Source Development Sungkyunkwan University Contents 2 SCM Tool: Git Version Management Local & Remote Repository Branch Management Github Contribution Process Issue

More information

ArcGIS Enterprise: Architecture & Deployment. Anthony Myers

ArcGIS Enterprise: Architecture & Deployment. Anthony Myers ArcGIS Enterprise: Architecture & Deployment Anthony Myers 1 2 3 4 5 Web GIS Overview of ArcGIS Enterprise Federation & Hosted Server Deployment Patterns Implementation 1 Web GIS ArcGIS Enabling GIS for

More information

Version Control. Second level Third level Fourth level Fifth level. - Software Development Project. January 11, 2017

Version Control. Second level Third level Fourth level Fifth level. - Software Development Project. January 11, 2017 Version Control Click to edit Master EECS text 2311 styles - Software Development Project Second level Third level Fourth level Fifth level January 11, 2017 1 Scenario 1 You finished the assignment at

More information

Deutsche Bank Corporate Banking & Securities. TradeMatch. User Guide.

Deutsche Bank Corporate Banking & Securities. TradeMatch. User Guide. Deutsche Bank Corporate Banking & Securities TradeMatch User Guide http://autobahn.db.com 1 TradeMatch Autobahn is Deutsche Bank s award-winning electronic distribution service. Since 1996, Autobahn has

More information

TangeloHub Documentation

TangeloHub Documentation TangeloHub Documentation Release None Kitware, Inc. September 21, 2015 Contents 1 User s Guide 3 1.1 Managing Data.............................................. 3 1.2 Running an Analysis...........................................

More information

CSC Introduction to Computers and Their Applications

CSC Introduction to Computers and Their Applications CSC 170 - Introduction to Computers and Their Applications Lecture 9 Software Essentials When searching for new software, it helps to have a framework of categories System Software Operating Systems For

More information

Technical Brief SUPPORTPOINT TECHNICAL BRIEF MARCH

Technical Brief SUPPORTPOINT TECHNICAL BRIEF MARCH Technical Brief 1 SupportPoint Cloud is a SaaS solution that makes it easy for people to get the information and guidance they need to navigate through complex business processes. SupportPoint Cloud Client

More information

Vernetzte Fahrerassistenzsysteme (BMW + AWS ) Hazard Preview

Vernetzte Fahrerassistenzsysteme (BMW + AWS ) Hazard Preview + = Vernetzte Fahrerassistenzsysteme (BMW + AWS ) Hazard Preview Andreas Winckler BMW EE-51 Location Based Services Walter Pernstecher AWS Enterprise Account Management Gartner Magic Quadrant for Cloud

More information

CESG:10 Steps to Cyber Security WORKING WITH GOVERNMENT, INDUSTRY AND ACADEMIA TO MANAGE INFORMATION RISK

CESG:10 Steps to Cyber Security WORKING WITH GOVERNMENT, INDUSTRY AND ACADEMIA TO MANAGE INFORMATION RISK CESG:10 Steps to Cyber Security WORKING WITH GOVERNMENT, INDUSTRY AND ACADEMIA TO MANAGE INFORMATION RISK Building resilience: 10 Steps to Cyber Security 1. Information Risk Management Regime 2. Secure

More information

A PROCESS FOR CREATING, MANAGING AND DEPLOYING MATERIALS IN ANSA

A PROCESS FOR CREATING, MANAGING AND DEPLOYING MATERIALS IN ANSA A PROCESS FOR CREATING, MANAGING AND DEPLOYING MATERIALS IN ANSA 1 E. Strong, 2 Yianni Kolokythas, and 1 H. Lobo * 1 Matereality, USA, 2 Beta-CAE, Greece KEYWORDS Material cards; enterprise materials;

More information

Automate best practices and operational health for your AWS resources with Trusted Advisor and AWS Health

Automate best practices and operational health for your AWS resources with Trusted Advisor and AWS Health Automate best practices and operational health for your AWS resources with Trusted Advisor and AWS Health Heitor Lessa, Solutions Architect @ AWS Stephen Gran, Senior Technical Architect @ Piksel June

More information

Evidence.com June 2016 Release Notes

Evidence.com June 2016 Release Notes Evidence.com June 2016 Document Revision: C Evidence.com Version 2016.6 Apple, ios, and Safari are trademarks of Apple, Inc. registered in the US and other countries. Firefox is a trademark of The Mozilla

More information

KUBERNETES IN A GROWN ENVIRONMENT AND INTEGRATION INTO CONTINUOUS DELIVERY

KUBERNETES IN A GROWN ENVIRONMENT AND INTEGRATION INTO CONTINUOUS DELIVERY KUBERNETES IN A GROWN ENVIRONMENT AND INTEGRATION INTO CONTINUOUS DELIVERY Stephan Fudeus, Expert Continuous Delivery Dr. Sascha Mühlbach, Expert Infrastructure Architect United Internet / 1&1 Mail & Media

More information

Branching and Merging

Branching and Merging Branching and Merging SWEN-261 Introduction to Software Engineering Department of Software Engineering Rochester Institute of Technology Version control branching supports the ability to manage software

More information

Continuous Delivery for Cloud Native Applications

Continuous Delivery for Cloud Native Applications Continuous Delivery for Cloud Native Applications Cyrille Le Clerc, Director, Product Management at CloudBees Bjorn Boe, Senior Field Engineer at Pivotal Software Speakers /Cyrille Le Clerc Product Manager

More information

JenkinsPipelineUnit. Test your Continuous Delivery Pipeline. Ozan Gunalp - Emmanuel Quincerot

JenkinsPipelineUnit. Test your Continuous Delivery Pipeline. Ozan Gunalp - Emmanuel Quincerot JenkinsPipelineUnit Test your Continuous Delivery Pipeline Ozan Gunalp - Emmanuel Quincerot Who we are Ozan Günalp Emmanuel Quincerot Developer at LesFurets Developer at LesFurets PhD in Computer Science

More information

Network Video Management System Standard Edition 2017 R2. Administrator Getting Started Guide

Network Video Management System Standard Edition 2017 R2. Administrator Getting Started Guide Network Video Management System Standard Edition 2017 R2 Administrator Getting Network Video Management System Standard Edition 2017 R2 - Administrator Getting Contents Copyright, trademarks and disclaimer...

More information

CUSTOMER CONTROL PANEL... 2 DASHBOARD... 3 HOSTING &

CUSTOMER CONTROL PANEL... 2 DASHBOARD... 3 HOSTING & Table of Contents CUSTOMER CONTROL PANEL... 2 LOGGING IN... 2 RESET YOUR PASSWORD... 2 DASHBOARD... 3 HOSTING & EMAIL... 4 WEB FORWARDING... 4 WEBSITE... 5 Usage... 5 Subdomains... 5 SSH Access... 6 File

More information

Bowel Preparation App: User Guide

Bowel Preparation App: User Guide 1 Bowel Preparation App: User Guide Team Members: Ela Amatya, Kevin Huang, Kevin Lee, Tsz Kit Lo, and Guangsha Mou Client: Sooraj Tejaswi Professor: Xin Liu 2 Table of Contents 1. Preface pg 3 1.1 README

More information

Oracle Field Service Cloud Release 18C. New Feature Summary

Oracle Field Service Cloud Release 18C. New Feature Summary Oracle Field Service Cloud Release 18C New Feature Summary TABLE OF CONTENTS Revision History 3 Overview 3 Administration 3 Save the User Name on the Login Screen 3 Support Oracle IDCS as OAuth2 Identity

More information

On-Premises v7.x Installation Guide

On-Premises v7.x Installation Guide On-Premises v7.x Installation Guide 1 Table of Contents ControlUp s On Premises Server Installation Wizard...3 ControlUp On-Premises Server s prerequisites...3 End-User License Agreement...4 Insights On-Premises

More information

How CLion helps your business

How CLion helps your business How CLion helps your business JetBrains CLion is a cross-platform IDE for developing in C and C++ and related languages and technologies. In addition to the benefits it provides to developers (such as

More information

Navigating your KPMG Central Audit Collaboration Home Page

Navigating your KPMG Central Audit Collaboration Home Page Navigating your KPMG Central Audit Collaboration Home Page Quick Reference Card 20 January 2017 Highlights This Quick Reference Card provides information on the KPMG Central Audit Collaboration Home Page,

More information

Javaentwicklung in der Oracle Cloud

Javaentwicklung in der Oracle Cloud Javaentwicklung in der Oracle Cloud Sören Halter Principal Sales Consultant 2016-11-17 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information

More information

NE Administering System Center Configuration Manager and Intune

NE Administering System Center Configuration Manager and Intune NE-20696 Administering System Center Configuration Manager and Intune Summary Duration 5 Days Audience IT Professionals Level 300 Technology System Center Configuration Manager Delivery Method Instructor-led

More information

CATCH ERRORS BEFORE THEY HAPPEN. Lessons for a mature data governance practice

CATCH ERRORS BEFORE THEY HAPPEN. Lessons for a mature data governance practice CATCH ERRORS BEFORE THEY HAPPEN Lessons for a mature data governance practice A guide to working with cross-departmental teams to establish proactive data governance for your website or mobile app. 2 Robust

More information

Ground Control Segment automated deployment and configuration with ANSIBLE and GIT

Ground Control Segment automated deployment and configuration with ANSIBLE and GIT SpaceOps Conferences 28 May - 1 June 2018, 2018, Marseille, France 2018 SpaceOps Conference 10.2514/6.2018-2337 Ground Control Segment automated deployment and configuration with ANSIBLE and GIT Rémi PIEPLU

More information

DC Console AML Using DC Console Application Design Software

DC Console AML Using DC Console Application Design Software DC Console Using DC Console Application Design Software DC Console is easy-to-use, application design software developed specifically to work in conjunction with AML s DC Suite. Create. Distribute. Collect.

More information