SlideShare ist ein Scribd-Unternehmen logo
1 von 52
DEV-1545
Beyond Domino Designer
Please note IBM’s statements regarding its plans, directions, and intent are subject to change or withdrawal without
notice at IBM’s sole discretion.
Information regarding potential future products is intended to outline our general product direction and it
should not be relied on in making a purchasing decision.
The information mentioned regarding potential future products is not a commitment, promise, or legal
obligation to deliver any material, code or functionality. Information about potential future products may not
be incorporated into any contract.
The development, release, and timing of any future features or functionality described for our products
remains at our sole discretion.
Performance is based on measurements and projections using standard IBM benchmarks in a controlled
environment. The actual throughput or performance that any user will experience will vary depending
upon many factors, including considerations such as the amount of multiprogramming in the user’s job
stream, the I/O configuration, the storage configuration, and the workload processed. Therefore, no
assurance can be given that an individual user will achieve results similar to those stated here.
2 3/30/2017
3 3/30/2017
Agenda
Lots of naked code included!
Agenda
• What, Why, How
• The tools
• Developer Workflow
• Demo
• Q & A
4 3/30/2017
Agenda
What, Why, How
5 3/30/2017
What
Deliver modern looking web & mobile applications, that are:
• Well tested
• Familiar to use
• Frequently updated
• Maintainable by
“typical web developers”
6 3/30/2017
7 3/30/2017
Why
8 3/30/2017
Why
If you are a Hobbit - maybe
Source: http://kingofwallpapers.com/gandalf/gandalf-004.jpg
9 3/30/2017
Why
http/2
10 3/30/2017
Ideas
What we have been doing
11 3/30/2017
Why
The current fashion
12 3/30/2017
Why
Rethink development language
Domino
• Forms
• Views
• Actions
• Agents
Single Page Apps
• Routes
• Services
• Views
13 3/30/2017
Don’t confuse
Domino views and
SPA views!
How
List of
Documents in
a database
UI rendering
as result of
a route
The tools
14 3/30/2017
15 3/30/2017
Why
Source: http://www.strictlytoolboxes.com/
Why
Source: https://www.knifecenter.com/
Developer Toolbox vs. Domino Designer
And there came along….
16 3/30/2017
CommandlineironyHow
How
Install
node.js
https://nodejs.org
(currently 6.9.4 LTS)
… and …
make friends with
npm
we take it from there
What – JavaScript tooling
• NodeJS
• Webpack
• Wallaby
• Angular
• Npm / yarn
• Postman
17 3/30/2017
Tooling
A word on tooling
By Konrad Adenauer
German Chancellor
1949 – 1963
“Was interessiert
mich mein
Geschwätz von
gestern”
18 3/30/2017
Source: By Bundesarchiv,
B 145 Bild-F078072-0004
Katherine Young
CC-BY-SA 3.0, CC BY-SA 3.0 de
https://commons.wikimedia.org/w/index.php?curid=5356485
Tooling
Update speed of core and packages
19 3/30/2017
Tooling
© Disney Inc
vs.
© Dreamworks Studios
npm install –g npm-check-updates
ncu –g
20 3/30/2017
Tooling
Developer workflow
21 3/30/2017
What – Development flow
• Project Structure
• Version Control
• Testing
• Lots of testing
22 3/30/2017
Tooling
Project structure – single .git
.gitignore
.DS_Store
*.nsf
Desktop.ini
.Spotlight-V100
.Trashes
Thumbs.db
23 3/30/2017
How
You might want to
separate the repositories
for front and back end
Deployment
Option 1
24 3/30/2017
How
Deployment
Option 2
25 3/30/2017
How
Comparing deployment options
Single NSF
• Easy deployment
• Domino HTTP stack
• Domino authentication
• Single tier
Front-end / Back-end split
• Easy update of frontend
• http2 capable
• Any authentication
• Multi tier
26 3/30/2017
There is no “one perfect
solution”, only choices
and consequences
How
Client - Server API
What I want to send/receive to/from the server:
{ "color" : "green",
"taste" : "sour",
"name" : "Apple"
}
27 3/30/2017
How
JSON rulez supreme!
XML is out of fashion
x-www-form-urlencoded
Is kind of lame
Backend options
• Agents (if you are still on LotusScript)
• XAgents (hardcore SSJS)
• Just views (read only)
• XPages Rest controls
• Domino Access Services
• Custom servlets (Wink or otherwise)
• SmartNSF (highly recommended!!!)
• External Java8 (I like vert.x)
28 3/30/2017
There is no “one perfect
solution”, only choices
and consequences
Pro tip:
Be lean on your API
How
Developer workflow
Easy as 1-2-3
1. Scaffold
2. Code
3. Deploy
29 3/30/2017
How
Put Domino into CI?
Pro:
• Fresh start
• Known state
Con:
• Heavy operation
• NSF updates hard
30 3/30/2017
Key consideration:
Do you have date
sensitive operations?
- New documents arrived
- Documents changed
- Test design!
How
A potential setup
31 3/30/2017
• 3 Projects:
• OSGi plugins (incl. NSF)
• Front-End
• End-2-End test
How
Data model
Classic Domino
• Forms
• Views
API Driven Web applications:
• Swagger
• Data model
• Action model
• Code generation
32 3/30/2017
How
Our
Swagger
model
33 3/30/2017
How
Swagger Model
definitions:
food:
type: object
required:
- name
properties:
id:
type: string
name:
type: string
taste:
type: string
color:
type: string
shape:
type: string
type:
type: string
34 3/30/2017
How
Mock server to keep the front-end guys happy
35 3/30/2017
How
Link mock server to front-end
36 3/30/2017
• Edit the package.json
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.conf.json",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
• Run the front-end with:
• npm start instead of ng serve
How
Planning the Angular FrontEnd
• Quick planning, refactor later
• Plan routes
• One per view
• Subroutes for documents
• Plan “Views”
• One per view
• One per document
37 3/30/2017
How
That’s just to get you
started. Once you are
comfortable, refactor!
AnatomyofanAngularApp
38 3/30/2017
How
Learn more here:
http://blog.angular-university.io/
Testing – double the work, a magnitude less headache
• OOTB: errors are reported on command line only
• Better reporting tool (1):
npm install --save-dev karma-mocha-reporter
add require('karma-mocha-reporter') to plugins in
karma.conf.js and reporters: ['mocha']
• Better reporting tool (2):
npm install –-save-dev karma-htmlfile-reporter
add require(‘karma-htmlfile-reporter’) to plugins
in karma.conf.js and reporters: ['mocha’,’html']
39 3/30/2017
How
For CI consider JUNIT
report format. Integrates
best with most CI reports
Demo
40 3/30/2017
All this command line stuff vs. Designer
41 3/30/2017
Tooling
Source: https://en.wikipedia.org/wiki/Control_of_fire_by_early_humans
Code Whisperers don’t
need a fancy GUI. They
talk to the command line
Testing – some insights
• You will edit your spec files frequently
• Each new component needs to be added to spec
• Mocks are a code smell (could be fragrant or stinky)
– use them wisely for services!
• Consider https://wallabyjs.com/ to continuously run your tests
while typing*
• Providers can be tricky (consider Mocks for some)
• {provide: Router, useClass: RouterModule}
• {provide: Http, useClass: HttpModule}
• Takes quite some getting used to
42 3/30/2017
How
* bad when on battery
In Summary
• Contemporary web development requires node.js as tooling
• Version control is your friend
• Make peace with the command line: npm, ng, git, travis …
• Http knowledge required. Use POSTMAN for convenience
• Separate front-end and back-end with a strong API
• Continuous integration & Test Driven development rule
43 3/30/2017
How
There is a lot to
learn in new world
of web development
Questions?
44 3/30/2017
Thank you!
https://github.com/Stwissel/connect2017-dev1545
Notices and
disclaimers
Copyright © 2017 by International Business Machines Corporation (IBM). No part of this document may be reproduced or transmitted
in any form without written permission from IBM.
U.S. Government Users Restricted Rights — Use, duplication or disclosure restricted by GSA ADP Schedule Contract with
IBM.
Information in these presentations (including information relating to products that have not yet been announced by IBM) has been
reviewed for accuracy as of the date of initial publication and could include unintentional technical or typographical errors. IBM shall
have no responsibility to update this information. THIS DOCUMENT IS DISTRIBUTED "AS IS" WITHOUT ANY WARRANTY, EITHER
EXPRESS OR IMPLIED. IN NO EVENT SHALL IBM BE LIABLE FOR ANY DAMAGE ARISING FROM THE USE OF THIS
INFORMATION, INCLUDING BUT NOT LIMITED TO, LOSS OF DATA, BUSINESS INTERRUPTION, LOSS OF PROFIT OR LOSS
OF OPPORTUNITY. IBM products and services are warranted according to the terms and conditions of the agreements under which
they are provided.
IBM products are manufactured from new parts or new and used parts. In some cases, a product may not be new and may have been
previously installed. Regardless, our warranty terms apply.”
Any statements regarding IBM's future direction, intent or product plans are subject to change or withdrawal without notice.
Performance data contained herein was generally obtained in a controlled, isolated environments. Customer examples are presented
as illustrations of how those customers have used IBM products and the results they may have achieved. Actual performance, cost,
savings or other results in other operating environments may vary.
References in this document to IBM products, programs, or services does not imply that IBM intends to make such products, programs
or services available in all countries in which IBM operates or does business.
Workshops, sessions and associated materials may have been prepared by independent session speakers, and do not necessarily
reflect the views of IBM. All materials and discussions are provided for informational purposes only, and are neither intended to, nor
shall constitute legal or other guidance or advice to any individual participant or their specific situation.
It is the customer’s responsibility to insure its own compliance with legal requirements and to obtain advice of competent legal counsel
as to the identification and interpretation of any relevant laws and regulatory requirements that may affect the customer’s business
and any actions the customer may need to take to comply with such laws. IBM does not provide legal advice or represent or warrant
that its services or products will ensure that the customer is in compliance with any law
45 3/30/2017
Notices and
disclaimers
continued
Information concerning non-IBM products was obtained from the suppliers of those products, their published announcements or other
publicly available sources. IBM has not tested those products in connection with this publication and cannot confirm the accuracy of
performance, compatibility or any other claims related to non-IBM products. Questions on the capabilities of non-IBM products should
be addressed to the suppliers of those products. IBM does not warrant the quality of any third-party products, or the ability of any such
third-party products to interoperate with IBM’s products. IBM EXPRESSLY DISCLAIMS ALL WARRANTIES, EXPRESSED OR
IMPLIED, INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE.
The provision of the information contained herein is not intended to, and does not, grant any right or license under any IBM patents,
copyrights, trademarks or other intellectual property right.
IBM, the IBM logo, ibm.com, Aspera®, Bluemix, Blueworks Live, CICS, Clearcase, Cognos®, DOORS®, Emptoris®, Enterprise
Document Management System™, FASP®, FileNet®, Global Business Services ®, Global Technology Services ®, IBM
ExperienceOne™, IBM SmartCloud®, IBM Social Business®, Information on Demand, ILOG, Maximo®, MQIntegrator®, MQSeries®,
Netcool®, OMEGAMON, OpenPower, PureAnalytics™, PureApplication®, pureCluster™, PureCoverage®, PureData®,
PureExperience®, PureFlex®, pureQuery®, pureScale®, PureSystems®, QRadar®, Rational®, Rhapsody®, Smarter Commerce®,
SoDA, SPSS, Sterling Commerce®, StoredIQ, Tealeaf®, Tivoli®, Trusteer®, Unica®, urban{code}®, Watson, WebSphere®,
Worklight®, X-Force® and System z® Z/OS, are trademarks of International Business Machines Corporation, registered in many
jurisdictions worldwide. Other product and service names might be trademarks of IBM or other companies. A current list of IBM
trademarks is available on the Web at "Copyright and trademark information" at: www.ibm.com/legal/copytrade.shtml.
46 3/30/2017
Further readings
Would you like to know more?*
47 3/30/2017 * In case you didn’t get the reference: https://www.youtube.com/watch?v=kdrjzE1SE58
The full deck & all the files
The presentation & sample files:
https://github.com/Stwissel/connect2017-dev1545
The Swagger Codegen update:
https://github.com/Stwissel/swagger-codegen
Formly for Angular:
https://github.com/formly-js/ng-formly
48 3/30/2017
Reference
Tool locations
• Node.js: https://nodejs.org/
• NPM: https://www.npmjs.com/
• Jasmine: https://jasmine.github.io/
• Protractor: https://www.protractortest.org/
• AngularJS: https://angular.io/
• Angular CLI: https://cli.angular.io/
• TypeScript: https://www.typescriptlang.org/
• Webpack: https://webpack.js.org/
• Microsoft Code: https://code.visualstudio.com/
• Swagger: http://swagger.io/
• Wallaby: https://wallabyjs.com/
• Postman: https://www.getpostman.com/
• GIT: https://git-scm.com/
• Tower: https://www.git-tower.com/
• Sourcetree: https://www.sourcetreeapp.com/
• Mustache: https://mustache.github.io/
49 3/30/2017
Reference
Developer workflow (1/3)
50 3/30/2017
Reference
Developerworkflow(2/3)
51 3/30/2017
Reference
Developer workflow (3/3)
52 3/30/2017
Reference

Weitere ähnliche Inhalte

Was ist angesagt?

IBM Mail Next and Notes/Domino Roadmap
IBM Mail Next and Notes/Domino RoadmapIBM Mail Next and Notes/Domino Roadmap
IBM Mail Next and Notes/Domino RoadmapTeamstudio
 
App.Next - The Future of Domino Application Development
App.Next - The Future of Domino Application DevelopmentApp.Next - The Future of Domino Application Development
App.Next - The Future of Domino Application DevelopmentTeamstudio
 
IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...
IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...
IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...Chris Miller
 
Domino, Notes, and Verse - Where are We and Whats the Future?
Domino, Notes, and Verse - Where are We and Whats the Future?Domino, Notes, and Verse - Where are We and Whats the Future?
Domino, Notes, and Verse - Where are We and Whats the Future?Teamstudio
 
BP201 Creating Your Own Connections Confection - Getting The Flavour Right
BP201 Creating Your Own Connections Confection - Getting The Flavour RightBP201 Creating Your Own Connections Confection - Getting The Flavour Right
BP201 Creating Your Own Connections Confection - Getting The Flavour RightGabriella Davis
 
MWLUG keynote 9 aug2017 - IBM Collaboration - Ed Brill
MWLUG keynote 9 aug2017 - IBM Collaboration - Ed BrillMWLUG keynote 9 aug2017 - IBM Collaboration - Ed Brill
MWLUG keynote 9 aug2017 - IBM Collaboration - Ed BrillEd Brill
 
BP102 Build Your Free Admin Toolkit
BP102 Build Your Free Admin ToolkitBP102 Build Your Free Admin Toolkit
BP102 Build Your Free Admin ToolkitChris Miller
 
Logging Wars: A Cross-Product Tech Clash Between Experts
Logging Wars: A Cross-Product Tech Clash Between Experts Logging Wars: A Cross-Product Tech Clash Between Experts
Logging Wars: A Cross-Product Tech Clash Between Experts Benedek Menesi
 
Connect 2016 - IBM Mobile Connect - Real World Usage Scenarios
Connect 2016 - IBM Mobile Connect - Real World Usage ScenariosConnect 2016 - IBM Mobile Connect - Real World Usage Scenarios
Connect 2016 - IBM Mobile Connect - Real World Usage ScenariosRené Winkelmeyer
 
IBM Collaboration Solutions cognitive and roadmap update - September 2016
IBM Collaboration Solutions cognitive and roadmap update - September 2016IBM Collaboration Solutions cognitive and roadmap update - September 2016
IBM Collaboration Solutions cognitive and roadmap update - September 2016Ed Brill
 
From frustration to fascination: dissecting Replication
From frustration to fascination: dissecting ReplicationFrom frustration to fascination: dissecting Replication
From frustration to fascination: dissecting ReplicationBenedek Menesi
 
What’s New and Coming in IBM Connections
What’s New and Coming in IBM ConnectionsWhat’s New and Coming in IBM Connections
What’s New and Coming in IBM ConnectionsLetsConnect
 
ICON Switzerland - The Future of Enterprise Software
ICON Switzerland - The Future of Enterprise SoftwareICON Switzerland - The Future of Enterprise Software
ICON Switzerland - The Future of Enterprise SoftwareBelsoft
 
SmartNSF - 100% Smart - and in Color!
SmartNSF - 100% Smart - and in Color!SmartNSF - 100% Smart - and in Color!
SmartNSF - 100% Smart - and in Color!Teamstudio
 

Was ist angesagt? (16)

Penumbra briefing
Penumbra briefingPenumbra briefing
Penumbra briefing
 
IBM Mail Next and Notes/Domino Roadmap
IBM Mail Next and Notes/Domino RoadmapIBM Mail Next and Notes/Domino Roadmap
IBM Mail Next and Notes/Domino Roadmap
 
App.Next - The Future of Domino Application Development
App.Next - The Future of Domino Application DevelopmentApp.Next - The Future of Domino Application Development
App.Next - The Future of Domino Application Development
 
IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...
IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...
IBM Connect 2016 - Logging Wars: A Cross Product Tech Clash Between Experts -...
 
Domino, Notes, and Verse - Where are We and Whats the Future?
Domino, Notes, and Verse - Where are We and Whats the Future?Domino, Notes, and Verse - Where are We and Whats the Future?
Domino, Notes, and Verse - Where are We and Whats the Future?
 
BP201 Creating Your Own Connections Confection - Getting The Flavour Right
BP201 Creating Your Own Connections Confection - Getting The Flavour RightBP201 Creating Your Own Connections Confection - Getting The Flavour Right
BP201 Creating Your Own Connections Confection - Getting The Flavour Right
 
MWLUG keynote 9 aug2017 - IBM Collaboration - Ed Brill
MWLUG keynote 9 aug2017 - IBM Collaboration - Ed BrillMWLUG keynote 9 aug2017 - IBM Collaboration - Ed Brill
MWLUG keynote 9 aug2017 - IBM Collaboration - Ed Brill
 
What's new in ibm notes and ibm domino v1
What's new in ibm notes and ibm domino v1What's new in ibm notes and ibm domino v1
What's new in ibm notes and ibm domino v1
 
BP102 Build Your Free Admin Toolkit
BP102 Build Your Free Admin ToolkitBP102 Build Your Free Admin Toolkit
BP102 Build Your Free Admin Toolkit
 
Logging Wars: A Cross-Product Tech Clash Between Experts
Logging Wars: A Cross-Product Tech Clash Between Experts Logging Wars: A Cross-Product Tech Clash Between Experts
Logging Wars: A Cross-Product Tech Clash Between Experts
 
Connect 2016 - IBM Mobile Connect - Real World Usage Scenarios
Connect 2016 - IBM Mobile Connect - Real World Usage ScenariosConnect 2016 - IBM Mobile Connect - Real World Usage Scenarios
Connect 2016 - IBM Mobile Connect - Real World Usage Scenarios
 
IBM Collaboration Solutions cognitive and roadmap update - September 2016
IBM Collaboration Solutions cognitive and roadmap update - September 2016IBM Collaboration Solutions cognitive and roadmap update - September 2016
IBM Collaboration Solutions cognitive and roadmap update - September 2016
 
From frustration to fascination: dissecting Replication
From frustration to fascination: dissecting ReplicationFrom frustration to fascination: dissecting Replication
From frustration to fascination: dissecting Replication
 
What’s New and Coming in IBM Connections
What’s New and Coming in IBM ConnectionsWhat’s New and Coming in IBM Connections
What’s New and Coming in IBM Connections
 
ICON Switzerland - The Future of Enterprise Software
ICON Switzerland - The Future of Enterprise SoftwareICON Switzerland - The Future of Enterprise Software
ICON Switzerland - The Future of Enterprise Software
 
SmartNSF - 100% Smart - and in Color!
SmartNSF - 100% Smart - and in Color!SmartNSF - 100% Smart - and in Color!
SmartNSF - 100% Smart - and in Color!
 

Andere mochten auch

One Firm's Wild Ride to The Cloud
One Firm's Wild Ride to The CloudOne Firm's Wild Ride to The Cloud
One Firm's Wild Ride to The CloudKeith Brooks
 
Your App Deserves More – The Art of App Modernization
Your App Deserves More – The Art of App ModernizationYour App Deserves More – The Art of App Modernization
Your App Deserves More – The Art of App ModernizationKlaus Bild
 
OpenNTF Domino API (ODA): Super-Charging Domino Development
OpenNTF Domino API (ODA): Super-Charging Domino DevelopmentOpenNTF Domino API (ODA): Super-Charging Domino Development
OpenNTF Domino API (ODA): Super-Charging Domino DevelopmentPaul Withers
 
XPages is Workflow's new best friend
XPages is Workflow's new best friendXPages is Workflow's new best friend
XPages is Workflow's new best friendStephan H. Wissel
 
DEV-1430 IBM Connections Integration
DEV-1430 IBM Connections IntegrationDEV-1430 IBM Connections Integration
DEV-1430 IBM Connections IntegrationJesse Gallagher
 
IBM Social Business Journey and IBM Verse / cloud collaboration #MWLUG2015
IBM Social Business Journey and IBM Verse / cloud collaboration #MWLUG2015IBM Social Business Journey and IBM Verse / cloud collaboration #MWLUG2015
IBM Social Business Journey and IBM Verse / cloud collaboration #MWLUG2015Ed Brill
 
DEV-1185: IBM Notes Performance Boost - Reloaded – IBM Connect 2017
DEV-1185: IBM Notes Performance Boost - Reloaded – IBM Connect 2017DEV-1185: IBM Notes Performance Boost - Reloaded – IBM Connect 2017
DEV-1185: IBM Notes Performance Boost - Reloaded – IBM Connect 2017panagenda
 
DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017
DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017
DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017panagenda
 
A World Without Applications
A World Without ApplicationsA World Without Applications
A World Without ApplicationsRed Pill Now
 
IBM Connections Adminblast - Connect17 (DEV 1268)
IBM Connections Adminblast - Connect17 (DEV 1268)IBM Connections Adminblast - Connect17 (DEV 1268)
IBM Connections Adminblast - Connect17 (DEV 1268)Nico Meisenzahl
 
DEV-1129 How Watson, Bluemix, Cloudant, and XPages Can Work Together In A Rea...
DEV-1129 How Watson, Bluemix, Cloudant, and XPages Can Work Together In A Rea...DEV-1129 How Watson, Bluemix, Cloudant, and XPages Can Work Together In A Rea...
DEV-1129 How Watson, Bluemix, Cloudant, and XPages Can Work Together In A Rea...Frank van der Linden
 
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...Serdar Basegmez
 
18+ Ways To Help Clients Love You
18+ Ways To Help Clients Love You18+ Ways To Help Clients Love You
18+ Ways To Help Clients Love YouKeith Brooks
 
Social Business Transformation at IBM - From Social Connections 2015 in Boston
Social Business Transformation at IBM - From Social Connections 2015 in BostonSocial Business Transformation at IBM - From Social Connections 2015 in Boston
Social Business Transformation at IBM - From Social Connections 2015 in BostonEd Brill
 
IBM ConnectED 2015: IBM's Social Business Transformation
IBM ConnectED 2015: IBM's Social Business TransformationIBM ConnectED 2015: IBM's Social Business Transformation
IBM ConnectED 2015: IBM's Social Business TransformationEd Brill
 
IBM - Lotusphere 2012: Messaging and Collaboration Strategy
IBM - Lotusphere 2012: Messaging and Collaboration StrategyIBM - Lotusphere 2012: Messaging and Collaboration Strategy
IBM - Lotusphere 2012: Messaging and Collaboration StrategyEd Brill
 
Lotus Notes: Live Long and Prosper
Lotus Notes: Live Long and ProsperLotus Notes: Live Long and Prosper
Lotus Notes: Live Long and ProsperPeter Presnell
 

Andere mochten auch (20)

One Firm's Wild Ride to The Cloud
One Firm's Wild Ride to The CloudOne Firm's Wild Ride to The Cloud
One Firm's Wild Ride to The Cloud
 
Your App Deserves More – The Art of App Modernization
Your App Deserves More – The Art of App ModernizationYour App Deserves More – The Art of App Modernization
Your App Deserves More – The Art of App Modernization
 
OpenNTF Domino API (ODA): Super-Charging Domino Development
OpenNTF Domino API (ODA): Super-Charging Domino DevelopmentOpenNTF Domino API (ODA): Super-Charging Domino Development
OpenNTF Domino API (ODA): Super-Charging Domino Development
 
DEV-1467 - Darwino
DEV-1467 - DarwinoDEV-1467 - Darwino
DEV-1467 - Darwino
 
XPages is Workflow's new best friend
XPages is Workflow's new best friendXPages is Workflow's new best friend
XPages is Workflow's new best friend
 
DEV-1430 IBM Connections Integration
DEV-1430 IBM Connections IntegrationDEV-1430 IBM Connections Integration
DEV-1430 IBM Connections Integration
 
IBM Social Business Journey and IBM Verse / cloud collaboration #MWLUG2015
IBM Social Business Journey and IBM Verse / cloud collaboration #MWLUG2015IBM Social Business Journey and IBM Verse / cloud collaboration #MWLUG2015
IBM Social Business Journey and IBM Verse / cloud collaboration #MWLUG2015
 
DEV-1185: IBM Notes Performance Boost - Reloaded – IBM Connect 2017
DEV-1185: IBM Notes Performance Boost - Reloaded – IBM Connect 2017DEV-1185: IBM Notes Performance Boost - Reloaded – IBM Connect 2017
DEV-1185: IBM Notes Performance Boost - Reloaded – IBM Connect 2017
 
DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017
DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017
DEV-1550: Why Java 8? Or, What's a Lambda? – IBM Connect 2017
 
GraphQL 101
GraphQL 101GraphQL 101
GraphQL 101
 
A World Without Applications
A World Without ApplicationsA World Without Applications
A World Without Applications
 
Beyond XPages
Beyond XPagesBeyond XPages
Beyond XPages
 
IBM Connections Adminblast - Connect17 (DEV 1268)
IBM Connections Adminblast - Connect17 (DEV 1268)IBM Connections Adminblast - Connect17 (DEV 1268)
IBM Connections Adminblast - Connect17 (DEV 1268)
 
DEV-1129 How Watson, Bluemix, Cloudant, and XPages Can Work Together In A Rea...
DEV-1129 How Watson, Bluemix, Cloudant, and XPages Can Work Together In A Rea...DEV-1129 How Watson, Bluemix, Cloudant, and XPages Can Work Together In A Rea...
DEV-1129 How Watson, Bluemix, Cloudant, and XPages Can Work Together In A Rea...
 
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
IBM Connect 2017: Your Data In the Major Leagues: A Practical Guide to REST S...
 
18+ Ways To Help Clients Love You
18+ Ways To Help Clients Love You18+ Ways To Help Clients Love You
18+ Ways To Help Clients Love You
 
Social Business Transformation at IBM - From Social Connections 2015 in Boston
Social Business Transformation at IBM - From Social Connections 2015 in BostonSocial Business Transformation at IBM - From Social Connections 2015 in Boston
Social Business Transformation at IBM - From Social Connections 2015 in Boston
 
IBM ConnectED 2015: IBM's Social Business Transformation
IBM ConnectED 2015: IBM's Social Business TransformationIBM ConnectED 2015: IBM's Social Business Transformation
IBM ConnectED 2015: IBM's Social Business Transformation
 
IBM - Lotusphere 2012: Messaging and Collaboration Strategy
IBM - Lotusphere 2012: Messaging and Collaboration StrategyIBM - Lotusphere 2012: Messaging and Collaboration Strategy
IBM - Lotusphere 2012: Messaging and Collaboration Strategy
 
Lotus Notes: Live Long and Prosper
Lotus Notes: Live Long and ProsperLotus Notes: Live Long and Prosper
Lotus Notes: Live Long and Prosper
 

Ähnlich wie IBM Connect 2017 - Beyond Domino Designer

Lessons learned from the worlds largest XPage project
Lessons learned from the worlds largest XPage projectLessons learned from the worlds largest XPage project
Lessons learned from the worlds largest XPage projectMark Roden
 
Introducing Bluemix
Introducing BluemixIntroducing Bluemix
Introducing BluemixRaul Chong
 
Design, Auto-Generate and Expose RESTful Microservices Using Open Source and ...
Design, Auto-Generate and Expose RESTful Microservices Using Open Source and ...Design, Auto-Generate and Expose RESTful Microservices Using Open Source and ...
Design, Auto-Generate and Expose RESTful Microservices Using Open Source and ...Arthur De Magalhaes
 
2017 think - session 4085 - increase your agile velocity - integrate your d...
2017   think - session 4085 - increase your agile velocity - integrate your d...2017   think - session 4085 - increase your agile velocity - integrate your d...
2017 think - session 4085 - increase your agile velocity - integrate your d...M Kevin McHugh
 
Introduction to UX for Mesiniaga Academy
Introduction to UX for Mesiniaga AcademyIntroduction to UX for Mesiniaga Academy
Introduction to UX for Mesiniaga AcademyZainul Zain
 
Developing Integrations for IBM Integration Bus on Cloud
Developing Integrations for IBM Integration Bus on CloudDeveloping Integrations for IBM Integration Bus on Cloud
Developing Integrations for IBM Integration Bus on CloudGeza Geleji
 
Informix REST API Tutorial
Informix REST API TutorialInformix REST API Tutorial
Informix REST API TutorialBrian Hughes
 
IBM Social Business Toolkit SDK - Playground and Scenarios
IBM Social Business Toolkit SDK - Playground and ScenariosIBM Social Business Toolkit SDK - Playground and Scenarios
IBM Social Business Toolkit SDK - Playground and ScenariosNiklas Heidloff
 
OpenWhisk Introduction
OpenWhisk IntroductionOpenWhisk Introduction
OpenWhisk IntroductionIoana Baldini
 
MWLUG 2017: BP107 Plotting the Path for your IBM Domino Applications
MWLUG 2017: BP107 Plotting the Path for your IBM Domino Applications MWLUG 2017: BP107 Plotting the Path for your IBM Domino Applications
MWLUG 2017: BP107 Plotting the Path for your IBM Domino Applications Franziska Tanner
 
Codemotion Rome 2015 Bluemix Lab Tutorial
Codemotion Rome 2015 Bluemix Lab TutorialCodemotion Rome 2015 Bluemix Lab Tutorial
Codemotion Rome 2015 Bluemix Lab Tutorialgjuljo
 
Java and the GPU - Everything You Need To Know
Java and the GPU - Everything You Need To KnowJava and the GPU - Everything You Need To Know
Java and the GPU - Everything You Need To KnowAdam Roberts
 
IBM Cloud PaaS Codename BlueMIx GIDS
IBM Cloud PaaS Codename BlueMIx GIDSIBM Cloud PaaS Codename BlueMIx GIDS
IBM Cloud PaaS Codename BlueMIx GIDSKarthik Padmanabhan
 
IBM Connect 2013 - BP212: Apps, Apps and more Apps: Meet the Very Best Open S...
IBM Connect 2013 - BP212: Apps, Apps and more Apps: Meet the Very Best Open S...IBM Connect 2013 - BP212: Apps, Apps and more Apps: Meet the Very Best Open S...
IBM Connect 2013 - BP212: Apps, Apps and more Apps: Meet the Very Best Open S...Niklas Heidloff
 
InterConnect 2017 : Git for COBOL and PL/I?—Yes, It Can Make Sense
InterConnect 2017 : Git for COBOL and PL/I?—Yes, It Can Make SenseInterConnect 2017 : Git for COBOL and PL/I?—Yes, It Can Make Sense
InterConnect 2017 : Git for COBOL and PL/I?—Yes, It Can Make SenseDevOps for Enterprise Systems
 
UrbanCode Deploy DevOps Best Practices
UrbanCode Deploy  DevOps Best PracticesUrbanCode Deploy  DevOps Best Practices
UrbanCode Deploy DevOps Best PracticesMichael Elder
 
Codemotion rome 2015 bluemix lab tutorial -- Codemotion Rome 2015
Codemotion rome 2015   bluemix lab tutorial -- Codemotion Rome 2015Codemotion rome 2015   bluemix lab tutorial -- Codemotion Rome 2015
Codemotion rome 2015 bluemix lab tutorial -- Codemotion Rome 2015Codemotion
 
OpenWhisk Part 1 Research Data at Interconnect 2017
OpenWhisk Part 1 Research Data at Interconnect 2017OpenWhisk Part 1 Research Data at Interconnect 2017
OpenWhisk Part 1 Research Data at Interconnect 2017Perry Cheng
 
Technical Introduction to IBM Integration Bus
Technical Introduction to IBM Integration BusTechnical Introduction to IBM Integration Bus
Technical Introduction to IBM Integration BusGeza Geleji
 

Ähnlich wie IBM Connect 2017 - Beyond Domino Designer (20)

Lessons learned from the worlds largest XPage project
Lessons learned from the worlds largest XPage projectLessons learned from the worlds largest XPage project
Lessons learned from the worlds largest XPage project
 
Introducing Bluemix
Introducing BluemixIntroducing Bluemix
Introducing Bluemix
 
Design, Auto-Generate and Expose RESTful Microservices Using Open Source and ...
Design, Auto-Generate and Expose RESTful Microservices Using Open Source and ...Design, Auto-Generate and Expose RESTful Microservices Using Open Source and ...
Design, Auto-Generate and Expose RESTful Microservices Using Open Source and ...
 
2017 think - session 4085 - increase your agile velocity - integrate your d...
2017   think - session 4085 - increase your agile velocity - integrate your d...2017   think - session 4085 - increase your agile velocity - integrate your d...
2017 think - session 4085 - increase your agile velocity - integrate your d...
 
Introduction to UX for Mesiniaga Academy
Introduction to UX for Mesiniaga AcademyIntroduction to UX for Mesiniaga Academy
Introduction to UX for Mesiniaga Academy
 
Developing Integrations for IBM Integration Bus on Cloud
Developing Integrations for IBM Integration Bus on CloudDeveloping Integrations for IBM Integration Bus on Cloud
Developing Integrations for IBM Integration Bus on Cloud
 
1812 icap-v1.3 0430
1812 icap-v1.3 04301812 icap-v1.3 0430
1812 icap-v1.3 0430
 
Informix REST API Tutorial
Informix REST API TutorialInformix REST API Tutorial
Informix REST API Tutorial
 
IBM Social Business Toolkit SDK - Playground and Scenarios
IBM Social Business Toolkit SDK - Playground and ScenariosIBM Social Business Toolkit SDK - Playground and Scenarios
IBM Social Business Toolkit SDK - Playground and Scenarios
 
OpenWhisk Introduction
OpenWhisk IntroductionOpenWhisk Introduction
OpenWhisk Introduction
 
MWLUG 2017: BP107 Plotting the Path for your IBM Domino Applications
MWLUG 2017: BP107 Plotting the Path for your IBM Domino Applications MWLUG 2017: BP107 Plotting the Path for your IBM Domino Applications
MWLUG 2017: BP107 Plotting the Path for your IBM Domino Applications
 
Codemotion Rome 2015 Bluemix Lab Tutorial
Codemotion Rome 2015 Bluemix Lab TutorialCodemotion Rome 2015 Bluemix Lab Tutorial
Codemotion Rome 2015 Bluemix Lab Tutorial
 
Java and the GPU - Everything You Need To Know
Java and the GPU - Everything You Need To KnowJava and the GPU - Everything You Need To Know
Java and the GPU - Everything You Need To Know
 
IBM Cloud PaaS Codename BlueMIx GIDS
IBM Cloud PaaS Codename BlueMIx GIDSIBM Cloud PaaS Codename BlueMIx GIDS
IBM Cloud PaaS Codename BlueMIx GIDS
 
IBM Connect 2013 - BP212: Apps, Apps and more Apps: Meet the Very Best Open S...
IBM Connect 2013 - BP212: Apps, Apps and more Apps: Meet the Very Best Open S...IBM Connect 2013 - BP212: Apps, Apps and more Apps: Meet the Very Best Open S...
IBM Connect 2013 - BP212: Apps, Apps and more Apps: Meet the Very Best Open S...
 
InterConnect 2017 : Git for COBOL and PL/I?—Yes, It Can Make Sense
InterConnect 2017 : Git for COBOL and PL/I?—Yes, It Can Make SenseInterConnect 2017 : Git for COBOL and PL/I?—Yes, It Can Make Sense
InterConnect 2017 : Git for COBOL and PL/I?—Yes, It Can Make Sense
 
UrbanCode Deploy DevOps Best Practices
UrbanCode Deploy  DevOps Best PracticesUrbanCode Deploy  DevOps Best Practices
UrbanCode Deploy DevOps Best Practices
 
Codemotion rome 2015 bluemix lab tutorial -- Codemotion Rome 2015
Codemotion rome 2015   bluemix lab tutorial -- Codemotion Rome 2015Codemotion rome 2015   bluemix lab tutorial -- Codemotion Rome 2015
Codemotion rome 2015 bluemix lab tutorial -- Codemotion Rome 2015
 
OpenWhisk Part 1 Research Data at Interconnect 2017
OpenWhisk Part 1 Research Data at Interconnect 2017OpenWhisk Part 1 Research Data at Interconnect 2017
OpenWhisk Part 1 Research Data at Interconnect 2017
 
Technical Introduction to IBM Integration Bus
Technical Introduction to IBM Integration BusTechnical Introduction to IBM Integration Bus
Technical Introduction to IBM Integration Bus
 

Mehr von Stephan H. Wissel

SHOW107: The DataSource Session: Take XPages data boldly where no XPages data...
SHOW107: The DataSource Session: Take XPages data boldly where no XPages data...SHOW107: The DataSource Session: Take XPages data boldly where no XPages data...
SHOW107: The DataSource Session: Take XPages data boldly where no XPages data...Stephan H. Wissel
 
AD107 Microsoft SharePoint meets IBM Lotus Domino
AD107 Microsoft SharePoint meets IBM Lotus DominoAD107 Microsoft SharePoint meets IBM Lotus Domino
AD107 Microsoft SharePoint meets IBM Lotus DominoStephan H. Wissel
 
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them EverywhereAD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them EverywhereStephan H. Wissel
 
AD114 - Don't be afraid of curly brackets reloaded - even more JavaScript for...
AD114 - Don't be afraid of curly brackets reloaded - even more JavaScript for...AD114 - Don't be afraid of curly brackets reloaded - even more JavaScript for...
AD114 - Don't be afraid of curly brackets reloaded - even more JavaScript for...Stephan H. Wissel
 
AD111 - The X Path: Practical guide to taking your IBM Lotus Notes applicatio...
AD111 - The X Path: Practical guide to taking your IBM Lotus Notes applicatio...AD111 - The X Path: Practical guide to taking your IBM Lotus Notes applicatio...
AD111 - The X Path: Practical guide to taking your IBM Lotus Notes applicatio...Stephan H. Wissel
 
AD215 - Practical Magic with DXL
AD215 - Practical Magic with DXLAD215 - Practical Magic with DXL
AD215 - Practical Magic with DXLStephan H. Wissel
 

Mehr von Stephan H. Wissel (8)

SHOW107: The DataSource Session: Take XPages data boldly where no XPages data...
SHOW107: The DataSource Session: Take XPages data boldly where no XPages data...SHOW107: The DataSource Session: Take XPages data boldly where no XPages data...
SHOW107: The DataSource Session: Take XPages data boldly where no XPages data...
 
AD107 Microsoft SharePoint meets IBM Lotus Domino
AD107 Microsoft SharePoint meets IBM Lotus DominoAD107 Microsoft SharePoint meets IBM Lotus Domino
AD107 Microsoft SharePoint meets IBM Lotus Domino
 
The xsp starter kit
The xsp starter kitThe xsp starter kit
The xsp starter kit
 
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them EverywhereAD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
AD106 - IBM Lotus Domino XPages anywhere - Write them once, See them Everywhere
 
AD114 - Don't be afraid of curly brackets reloaded - even more JavaScript for...
AD114 - Don't be afraid of curly brackets reloaded - even more JavaScript for...AD114 - Don't be afraid of curly brackets reloaded - even more JavaScript for...
AD114 - Don't be afraid of curly brackets reloaded - even more JavaScript for...
 
AD111 - The X Path: Practical guide to taking your IBM Lotus Notes applicatio...
AD111 - The X Path: Practical guide to taking your IBM Lotus Notes applicatio...AD111 - The X Path: Practical guide to taking your IBM Lotus Notes applicatio...
AD111 - The X Path: Practical guide to taking your IBM Lotus Notes applicatio...
 
Paperprototyping
PaperprototypingPaperprototyping
Paperprototyping
 
AD215 - Practical Magic with DXL
AD215 - Practical Magic with DXLAD215 - Practical Magic with DXL
AD215 - Practical Magic with DXL
 

Kürzlich hochgeladen

ETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxNIMMANAGANTI RAMAKRISHNA
 
Unidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxUnidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxmibuzondetrabajo
 
SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predieusebiomeyer
 
IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119APNIC
 
Film cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasaFilm cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasa494f574xmv
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书zdzoqco
 
TRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxTRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxAndrieCagasanAkio
 
Company Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxCompany Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxMario
 
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书rnrncn29
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书rnrncn29
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxDyna Gilbert
 

Kürzlich hochgeladen (11)

ETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptxETHICAL HACKING dddddddddddddddfnandni.pptx
ETHICAL HACKING dddddddddddddddfnandni.pptx
 
Unidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptxUnidad 4 – Redes de ordenadores (en inglés).pptx
Unidad 4 – Redes de ordenadores (en inglés).pptx
 
SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predi
 
IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119IP addressing and IPv6, presented by Paul Wilson at IETF 119
IP addressing and IPv6, presented by Paul Wilson at IETF 119
 
Film cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasaFilm cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasa
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
 
TRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptxTRENDS Enabling and inhibiting dimensions.pptx
TRENDS Enabling and inhibiting dimensions.pptx
 
Company Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptxCompany Snapshot Theme for Business by Slidesgo.pptx
Company Snapshot Theme for Business by Slidesgo.pptx
 
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptx
 

IBM Connect 2017 - Beyond Domino Designer

  • 2. Please note IBM’s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at IBM’s sole discretion. Information regarding potential future products is intended to outline our general product direction and it should not be relied on in making a purchasing decision. The information mentioned regarding potential future products is not a commitment, promise, or legal obligation to deliver any material, code or functionality. Information about potential future products may not be incorporated into any contract. The development, release, and timing of any future features or functionality described for our products remains at our sole discretion. Performance is based on measurements and projections using standard IBM benchmarks in a controlled environment. The actual throughput or performance that any user will experience will vary depending upon many factors, including considerations such as the amount of multiprogramming in the user’s job stream, the I/O configuration, the storage configuration, and the workload processed. Therefore, no assurance can be given that an individual user will achieve results similar to those stated here. 2 3/30/2017
  • 3. 3 3/30/2017 Agenda Lots of naked code included!
  • 4. Agenda • What, Why, How • The tools • Developer Workflow • Demo • Q & A 4 3/30/2017 Agenda
  • 5. What, Why, How 5 3/30/2017
  • 6. What Deliver modern looking web & mobile applications, that are: • Well tested • Familiar to use • Frequently updated • Maintainable by “typical web developers” 6 3/30/2017
  • 8. 8 3/30/2017 Why If you are a Hobbit - maybe Source: http://kingofwallpapers.com/gandalf/gandalf-004.jpg
  • 11. What we have been doing 11 3/30/2017 Why
  • 12. The current fashion 12 3/30/2017 Why
  • 13. Rethink development language Domino • Forms • Views • Actions • Agents Single Page Apps • Routes • Services • Views 13 3/30/2017 Don’t confuse Domino views and SPA views! How List of Documents in a database UI rendering as result of a route
  • 15. 15 3/30/2017 Why Source: http://www.strictlytoolboxes.com/ Why Source: https://www.knifecenter.com/ Developer Toolbox vs. Domino Designer
  • 16. And there came along…. 16 3/30/2017 CommandlineironyHow How Install node.js https://nodejs.org (currently 6.9.4 LTS) … and … make friends with npm we take it from there
  • 17. What – JavaScript tooling • NodeJS • Webpack • Wallaby • Angular • Npm / yarn • Postman 17 3/30/2017 Tooling
  • 18. A word on tooling By Konrad Adenauer German Chancellor 1949 – 1963 “Was interessiert mich mein Geschwätz von gestern” 18 3/30/2017 Source: By Bundesarchiv, B 145 Bild-F078072-0004 Katherine Young CC-BY-SA 3.0, CC BY-SA 3.0 de https://commons.wikimedia.org/w/index.php?curid=5356485 Tooling
  • 19. Update speed of core and packages 19 3/30/2017 Tooling © Disney Inc vs. © Dreamworks Studios
  • 20. npm install –g npm-check-updates ncu –g 20 3/30/2017 Tooling
  • 22. What – Development flow • Project Structure • Version Control • Testing • Lots of testing 22 3/30/2017 Tooling
  • 23. Project structure – single .git .gitignore .DS_Store *.nsf Desktop.ini .Spotlight-V100 .Trashes Thumbs.db 23 3/30/2017 How You might want to separate the repositories for front and back end
  • 26. Comparing deployment options Single NSF • Easy deployment • Domino HTTP stack • Domino authentication • Single tier Front-end / Back-end split • Easy update of frontend • http2 capable • Any authentication • Multi tier 26 3/30/2017 There is no “one perfect solution”, only choices and consequences How
  • 27. Client - Server API What I want to send/receive to/from the server: { "color" : "green", "taste" : "sour", "name" : "Apple" } 27 3/30/2017 How JSON rulez supreme! XML is out of fashion x-www-form-urlencoded Is kind of lame
  • 28. Backend options • Agents (if you are still on LotusScript) • XAgents (hardcore SSJS) • Just views (read only) • XPages Rest controls • Domino Access Services • Custom servlets (Wink or otherwise) • SmartNSF (highly recommended!!!) • External Java8 (I like vert.x) 28 3/30/2017 There is no “one perfect solution”, only choices and consequences Pro tip: Be lean on your API How
  • 29. Developer workflow Easy as 1-2-3 1. Scaffold 2. Code 3. Deploy 29 3/30/2017 How
  • 30. Put Domino into CI? Pro: • Fresh start • Known state Con: • Heavy operation • NSF updates hard 30 3/30/2017 Key consideration: Do you have date sensitive operations? - New documents arrived - Documents changed - Test design! How
  • 31. A potential setup 31 3/30/2017 • 3 Projects: • OSGi plugins (incl. NSF) • Front-End • End-2-End test How
  • 32. Data model Classic Domino • Forms • Views API Driven Web applications: • Swagger • Data model • Action model • Code generation 32 3/30/2017 How
  • 34. Swagger Model definitions: food: type: object required: - name properties: id: type: string name: type: string taste: type: string color: type: string shape: type: string type: type: string 34 3/30/2017 How
  • 35. Mock server to keep the front-end guys happy 35 3/30/2017 How
  • 36. Link mock server to front-end 36 3/30/2017 • Edit the package.json "scripts": { "ng": "ng", "start": "ng serve --proxy-config proxy.conf.json", "test": "ng test", "lint": "ng lint", "e2e": "ng e2e" }, • Run the front-end with: • npm start instead of ng serve How
  • 37. Planning the Angular FrontEnd • Quick planning, refactor later • Plan routes • One per view • Subroutes for documents • Plan “Views” • One per view • One per document 37 3/30/2017 How That’s just to get you started. Once you are comfortable, refactor!
  • 38. AnatomyofanAngularApp 38 3/30/2017 How Learn more here: http://blog.angular-university.io/
  • 39. Testing – double the work, a magnitude less headache • OOTB: errors are reported on command line only • Better reporting tool (1): npm install --save-dev karma-mocha-reporter add require('karma-mocha-reporter') to plugins in karma.conf.js and reporters: ['mocha'] • Better reporting tool (2): npm install –-save-dev karma-htmlfile-reporter add require(‘karma-htmlfile-reporter’) to plugins in karma.conf.js and reporters: ['mocha’,’html'] 39 3/30/2017 How For CI consider JUNIT report format. Integrates best with most CI reports
  • 41. All this command line stuff vs. Designer 41 3/30/2017 Tooling Source: https://en.wikipedia.org/wiki/Control_of_fire_by_early_humans Code Whisperers don’t need a fancy GUI. They talk to the command line
  • 42. Testing – some insights • You will edit your spec files frequently • Each new component needs to be added to spec • Mocks are a code smell (could be fragrant or stinky) – use them wisely for services! • Consider https://wallabyjs.com/ to continuously run your tests while typing* • Providers can be tricky (consider Mocks for some) • {provide: Router, useClass: RouterModule} • {provide: Http, useClass: HttpModule} • Takes quite some getting used to 42 3/30/2017 How * bad when on battery
  • 43. In Summary • Contemporary web development requires node.js as tooling • Version control is your friend • Make peace with the command line: npm, ng, git, travis … • Http knowledge required. Use POSTMAN for convenience • Separate front-end and back-end with a strong API • Continuous integration & Test Driven development rule 43 3/30/2017 How There is a lot to learn in new world of web development
  • 45. Notices and disclaimers Copyright © 2017 by International Business Machines Corporation (IBM). No part of this document may be reproduced or transmitted in any form without written permission from IBM. U.S. Government Users Restricted Rights — Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM. Information in these presentations (including information relating to products that have not yet been announced by IBM) has been reviewed for accuracy as of the date of initial publication and could include unintentional technical or typographical errors. IBM shall have no responsibility to update this information. THIS DOCUMENT IS DISTRIBUTED "AS IS" WITHOUT ANY WARRANTY, EITHER EXPRESS OR IMPLIED. IN NO EVENT SHALL IBM BE LIABLE FOR ANY DAMAGE ARISING FROM THE USE OF THIS INFORMATION, INCLUDING BUT NOT LIMITED TO, LOSS OF DATA, BUSINESS INTERRUPTION, LOSS OF PROFIT OR LOSS OF OPPORTUNITY. IBM products and services are warranted according to the terms and conditions of the agreements under which they are provided. IBM products are manufactured from new parts or new and used parts. In some cases, a product may not be new and may have been previously installed. Regardless, our warranty terms apply.” Any statements regarding IBM's future direction, intent or product plans are subject to change or withdrawal without notice. Performance data contained herein was generally obtained in a controlled, isolated environments. Customer examples are presented as illustrations of how those customers have used IBM products and the results they may have achieved. Actual performance, cost, savings or other results in other operating environments may vary. References in this document to IBM products, programs, or services does not imply that IBM intends to make such products, programs or services available in all countries in which IBM operates or does business. Workshops, sessions and associated materials may have been prepared by independent session speakers, and do not necessarily reflect the views of IBM. All materials and discussions are provided for informational purposes only, and are neither intended to, nor shall constitute legal or other guidance or advice to any individual participant or their specific situation. It is the customer’s responsibility to insure its own compliance with legal requirements and to obtain advice of competent legal counsel as to the identification and interpretation of any relevant laws and regulatory requirements that may affect the customer’s business and any actions the customer may need to take to comply with such laws. IBM does not provide legal advice or represent or warrant that its services or products will ensure that the customer is in compliance with any law 45 3/30/2017
  • 46. Notices and disclaimers continued Information concerning non-IBM products was obtained from the suppliers of those products, their published announcements or other publicly available sources. IBM has not tested those products in connection with this publication and cannot confirm the accuracy of performance, compatibility or any other claims related to non-IBM products. Questions on the capabilities of non-IBM products should be addressed to the suppliers of those products. IBM does not warrant the quality of any third-party products, or the ability of any such third-party products to interoperate with IBM’s products. IBM EXPRESSLY DISCLAIMS ALL WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. The provision of the information contained herein is not intended to, and does not, grant any right or license under any IBM patents, copyrights, trademarks or other intellectual property right. IBM, the IBM logo, ibm.com, Aspera®, Bluemix, Blueworks Live, CICS, Clearcase, Cognos®, DOORS®, Emptoris®, Enterprise Document Management System™, FASP®, FileNet®, Global Business Services ®, Global Technology Services ®, IBM ExperienceOne™, IBM SmartCloud®, IBM Social Business®, Information on Demand, ILOG, Maximo®, MQIntegrator®, MQSeries®, Netcool®, OMEGAMON, OpenPower, PureAnalytics™, PureApplication®, pureCluster™, PureCoverage®, PureData®, PureExperience®, PureFlex®, pureQuery®, pureScale®, PureSystems®, QRadar®, Rational®, Rhapsody®, Smarter Commerce®, SoDA, SPSS, Sterling Commerce®, StoredIQ, Tealeaf®, Tivoli®, Trusteer®, Unica®, urban{code}®, Watson, WebSphere®, Worklight®, X-Force® and System z® Z/OS, are trademarks of International Business Machines Corporation, registered in many jurisdictions worldwide. Other product and service names might be trademarks of IBM or other companies. A current list of IBM trademarks is available on the Web at "Copyright and trademark information" at: www.ibm.com/legal/copytrade.shtml. 46 3/30/2017
  • 47. Further readings Would you like to know more?* 47 3/30/2017 * In case you didn’t get the reference: https://www.youtube.com/watch?v=kdrjzE1SE58
  • 48. The full deck & all the files The presentation & sample files: https://github.com/Stwissel/connect2017-dev1545 The Swagger Codegen update: https://github.com/Stwissel/swagger-codegen Formly for Angular: https://github.com/formly-js/ng-formly 48 3/30/2017 Reference
  • 49. Tool locations • Node.js: https://nodejs.org/ • NPM: https://www.npmjs.com/ • Jasmine: https://jasmine.github.io/ • Protractor: https://www.protractortest.org/ • AngularJS: https://angular.io/ • Angular CLI: https://cli.angular.io/ • TypeScript: https://www.typescriptlang.org/ • Webpack: https://webpack.js.org/ • Microsoft Code: https://code.visualstudio.com/ • Swagger: http://swagger.io/ • Wallaby: https://wallabyjs.com/ • Postman: https://www.getpostman.com/ • GIT: https://git-scm.com/ • Tower: https://www.git-tower.com/ • Sourcetree: https://www.sourcetreeapp.com/ • Mustache: https://mustache.github.io/ 49 3/30/2017 Reference
  • 50. Developer workflow (1/3) 50 3/30/2017 Reference
  • 52. Developer workflow (3/3) 52 3/30/2017 Reference