blob: 8d70788e28b3a62e01a4d6beec5c45411a9837c6 [file] [log] [blame]
<!--
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements; and to You under the Apache License, Version 2.0.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/images/favicon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/images/favicon/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/images/favicon/manifest.json">
<link rel="mask-icon" href="/images/favicon/safari-pinned-tab.svg">
<link rel="shortcut icon" href="/images/favicon/favicon.ico">
<meta name="msapplication-config" content="/images/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<title>OpenWhisk Events Archive</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet">
<link rel="stylesheet" href="/css/main-v1.css?v=1.13">
<!-- Load Index, Menu & collapsible support -->
<script type="text/javascript">
function applyCollapsible() {
addListenersToIndex();
addListenersToSections();
}
function toggleReferencedSection( parentId, expand )
{
console.log( "toggleReferencedSection(): parentId=" + parentId + " expand=" + expand);
if (parentId !== ""){
sectionName = parentId.replace("index", "section");
//console.log( "toggleReferencedSection(): sectionName=" + sectionName);
sectionHeader = document.getElementById(sectionName);
section = sectionHeader.nextElementSibling;
if(expand){
sectionHeader.style.backgroundImage = "url('../images/elements/circle-minus.png')";
section.style.display = "block";
}
else{
sectionHeader.style.backgroundImage = "url('../images/elements/circle-plus.png')";
section.style.display = "none";
}
}
}
function addListenersToIndex()
{
var coll = document.getElementsByClassName("index-menu-toggle");
var i;
// Apply expandable (arrows) to all menuitems with a sibling
for (i = 0; i < coll.length; i++) {
var sibling = coll[i].nextElementSibling;
if(sibling!==null){
coll[i].style.listStyleImage = "url('../images/elements/arrow-right-12px.png')";
// make room on left for image/icon (top right bottom left)
sibling.style.padding = "0px 0px 0px 20px";
if(sibling.classList.contains('index-menu-start-open')){
coll[i].style.listStyleImage = "url('../images/elements/arrow-down-12px.png')";
sibling.style.display = "block";
}
}
// Set "click" event listener on all menuitems
coll[i].addEventListener("click", function() {
var sibling = this.nextElementSibling;
// toggle menu open/close states
if(sibling!==null){
if (sibling.style.display === "block") {
this.style.listStyleImage = "url('../images/elements/arrow-right-12px.png')";
sibling.style.display = "none";
if (this.id !== ""){
toggleReferencedSection(this.id, false )
}
} else {
this.style.listStyleImage = "url('../images/elements/arrow-down-12px.png')";
sibling.style.display = "block";
if (this.id !== ""){
toggleReferencedSection(this.id, true )
}
}
}
});
}
}
function addListenersToSections()
{
var coll = document.getElementsByClassName("section-toggle");
var i;
// Apply exapandable (arrows) to all menuitems with a sibling
for (i = 0; i < coll.length; i++) {
var sibling = coll[i].nextElementSibling;
if(sibling!==null){
if(sibling.classList.contains("section-toggle-start-open")){
coll[i].style.backgroundImage = "url('../images/elements/circle-minus.png')";
sibling.style.display = "block";
} else if (sibling.classList.contains("section-toggle-start-closed")){
coll[i].style.backgroundImage = "url('../images/elements/circle-plus.png')";
sibling.style.display = "none";
} else {
//console.log( "addListenersToSections(): No Toggle style found; default to open");
coll[i].style.backgroundImage = "url('../images/elements/circle-minus.png')";
sibling.style.display = "block";
}
}
// Set "click" event listener on all menuitems
coll[i].addEventListener("click", function() {
var sibling = this.nextElementSibling;
// toggle menu open/close states
if(sibling!==null){
//console.log("sibling.style.display: ["+sibling.style.display+"]");
if (sibling.style.display !== "none") {
//console.log("collapsing");
sibling.style.display = "none";
this.style.backgroundImage = "url('../images/elements/circle-plus.png')";
} else {
//console.log("expanding");
sibling.style.display = "block";
this.style.backgroundImage = "url('../images/elements/circle-minus.png')";
}
}
});
}
}
/*
* Debug:
*/
// Use: console.log(dumpCSSText(this));
// function dumpCSSText(element){
// var s = '';
// var o = getComputedStyle(element);
// for(var i = 0; i < o.length; i++){
// s+= ">> " + o[i] + ':' + o.getPropertyValue(o[i])+';\n';
// }
// return s;
// }
</script>
</head>
<!-- Once all page elements are included, register event hooks -->
<body onload="applyCollapsible()">
<script src="js/main.min.js"></script>
<div class="header">
<a class="header-section-logo" href="/">
</a>
<div class="header-section-text-links">
<div class="header-row-text-links">
<a class="header-text-link" href="/documentation.html">Documentation</a>
<a class="header-text-link" href="/community.html">Community</a>
<a class="header-text-link" href="/downloads.html">Downloads</a>
</div>
</div>
<div class="header-section-social-icons">
<div class="header-row-social-icons">
<a class="header-button-icon" style="order: 7;" href="https://github.com/apache?q=openwhisk" title="Apache OpenWhisk project repositories on GitHub">
<img class="header-icon-image" alt="GitHub" src="/images/icons/icon-github-white.svg">
</a>
<a class="header-button-icon" style="order: 6;" href="slack.html" title="Apache OpenWhisk on Slack">
<img class="header-icon-image" alt="Slack" src="/images/icons/icon-slack-white.svg">
</a>
<a class="header-button-icon" style="order: 5;" href="https://twitter.com/search?q=openwhisk" title="Apache OpenWhisk on Twitter">
<img class="header-icon-image" alt="Twitter" src="/images/icons/icon-twitter-white.svg">
</a>
<a class="header-button-icon" style="order: 4;" href="https://medium.com/openwhisk" title="Apache OpenWhisk on Medium">
<img class="header-icon-image" alt="Medium" src="/images/icons/icon-medium-white.svg">
</a>
<a class="header-button-icon" style="order: 3;" href="https://www.youtube.com/channel/UCbzgShnQk8F43NKsvEYA1SA" title="Apache OpenWhisk on YouTube">
<img class="header-icon-image" alt="YouTube" src="/images/icons/icon-youtube-white.svg">
</a>
<a class="header-button-icon" style="order: 2;" href="http://stackoverflow.com/questions/tagged/openwhisk" title="Apache OpenWhisk on Stack Overflow">
<img class="header-icon-image" alt="Overflow" src="/images/icons/icon-stack-overflow-white.svg">
</a>
<a class="header-button-icon" style="order: 1;" href="http://www.slideshare.net/OpenWhisk" title="Apache OpenWhisk on SlideShare">
<img class="header-icon-image" alt="SlideShare" src="/images/icons/icon-slideshare-white.svg">
</a>
</div>
</div>
</div>
<section id="whiskHeader" class="light-text bot-bar">
<main>
<div>
</div>
</main>
</section>
<section id="whiskNodes">
<main class="doc">
<div class="content">
<h2>OpenWhisk Events Archive</h2>
<p>
This event archive is maintained here to refer to the list of past events and access its content.
</p>
</div>
</main>
<main class="doc">
<div class="content">
<!--
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements; and to You under the Apache License, Version 2.0.
-->
<h3 id="march-2018">March 2018</h3>
<ul>
<li><a href="https://www.ibm.com/events/think/"><strong>IBM Think</strong></a>, March 19th–22rd, Las Vegas, USA<br />Several talks on OpenWhisk and IBM Cloud Functions.</li>
<li><a href="https://voxxeddays.com/bristol/"><strong>Voxxed Days Bristol</strong></a>, March 15th, Bristol, UK<br />James Thomas gave a talk about “Microservices Without Servers.”</li>
</ul>
<h3 id="february-2018">February 2018</h3>
<ul>
<li><a href="https://www.meetup.com/Serverless-Boston/events/245915761/"><strong>ServerlessConf Boston Meetup</strong></a>, February 7th, Boston, US<br />Paul Castro presented on Apache OpenWhisk.</li>
<li><a href="https://www.meetup.com/Serverless-NYC/events/245972003/"><strong>ServerlessConf NYC Meetup</strong></a>, February 15th, NY, US<br />Daniel Krook presented on Apache OpenWhisk using IBM Cloud Functions.</li>
<li><a href="http://paris.serverlessconf.io/"><strong>Serverlessconf Paris</strong></a>, February 14th-15th, Paris, France<br />A workshop and talk on OpenWhisk and IBM Cloud Functions.</li>
<li><strong>JeffConf Hamburg</strong>, February 15th-16th, Hamburg, Germany<br />Several OpenWhisk members in attendance.</li>
<li><a href="https://devnexus.com/speakers/"><strong>DevNexus Atlanta</strong></a>, February 21st-23rd, Atlanta, US<br />Raymond Camden provided “A general introduction to serverless with Apache OpenWhisk.”</li>
</ul>
<h3 id="january-2018">January 2018</h3>
<ul>
<li><a href="https://akrabat.com/talks/serverless-apis-codemash/"><strong>CodeMash</strong></a>, January 9th-12th, Sandusky, US<br />Rob Allen spoke about how to “Build a Delightful API with Serverless Technology.”</li>
</ul>
<h3 id="november-2017">November 2017</h3>
<ul>
<li><a href="https://skillsmatter.com/conferences/8549-con-2017-the-microservices-conference"><strong>µCon London</strong></a>, November 6th-7th 2017, London, UK<br />Rob Allen will give a talk on building serverless APIs in Swift</li>
<li><a href="https://devoxx.ma/"><strong>Devoxx Morocco</strong></a>, November 14th-16th 2017, Casablanca, Morocco<br />James Thomas gave a talk on building serverless applications with OpenWhisk</li>
<li><strong>UA Mobile</strong>, November 25th 2017, Kiev, Ukraine<br />James Thomas gave a talk on building mobile APIs with Swift on OpenWhisk</li>
</ul>
<h3 id="october-2017">October 2017</h3>
<ul>
<li><strong>TopConf Duesseldorf</strong>, October 4th-6th 2017, Cologne, Germany<br />James Thomas gave a talk on building serverless applications using OpenWhisk</li>
<li><a href="http://ncdevcon.com/"><strong>NCDevCon</strong></a> Carlos Santana gave a talk on using OpenWhisk with Websites.</li>
<li><a href="https://nyc.serverlessconf.io/agenda"><strong>ServerlessConf</strong></a> October 8th-11th, NY, US<br /> Several talks on OpenWhisk</li>
<li><a href="https://www.meetup.com/Serverless-NYC/events/243399016/?_cookie-check=QsFBwgKfBvP1vKyC"><strong>ServerlessConf NYC Meetup</strong></a> October 12th, NY, US<br /> Daniel Krook (IBM) and Dragos Dascalita Haut (Adobe) presented on Apache OpenWhisk</li>
<li><a href="https://nordicapis.com/?post_type=sessions&amp;p=6682"><strong>Nordic APIs Summit</strong></a>, October 10th-11th 2017, Stockholm, Sweden<br />James Thomas gave a talk on building serverless APIs using OpenWhisk and Swift</li>
<li><a href="http://certifiedfreshevents.com/events/going-serverless/"><strong>Going Serverless</strong></a>, October 20th 2017, Online Webinar<br />James Thomas gave a talk on building multi-provider serverless applications with The Serverless Framework and OpenWhisk</li>
<li><a href="https://www.meetup.com/BristolJS/events/242690371/"><strong>BristolJS October</strong></a>, October 25th 2017, Bristol, England<br />James Thomas gave a talk on serverless Node.js applications with OpenWhisk</li>
</ul>
<h3 id="september-2017">September 2017</h3>
<ul>
<li><a href="http://www.apidays.io/events/zurich-2017"><strong>APIDays Zurich</strong></a>, September 26th-27th 2017, Zurich, Switzerland<br />Rob Allen gave a talk on building serverless APIs in Swift</li>
<li><strong>Pixels Camp</strong>, September 28th-30th 2017, Lisbon, Portugal<br />James Thomas gave a talk on building serverless applications using OpenWhisk</li>
<li><a href="https://swiftconf.com/"><strong>SwiftConf Europe</strong></a>, September 6th-7th 2017, Cologne, Germany<br />James Thomas gave a talk on Serverless Swift APIs using OpenWhisk</li>
</ul>
<h3 id="june-2017">June 2017</h3>
<ul>
<li><a name="2017-06-21" href="#2017-06-21"><strong>OpenWhisk Meetup Austin, TX</strong></a>, June 21st 2017, Austin, TX<br /><a href="https://twitter.com/csantanapr">Carlos Santana</a> gave a talk, with demos, and discussion of latest features.</li>
<li><a href="https://www.facebook.com/events/1920692501553535/"><strong>Acadiana Software Group</strong></a>, June 14th 2017, Lafayette, USA<br />Raymond Camden gave a talk on OpenWhisk</li>
</ul>
<h3 id="may-2017">May 2017</h3>
<ul>
<li><a href="https://www.meetup.com"><strong>Meetup Serverless Amsterdam</strong></a>, May 29th 2017, Amsterdam, Netherlands<br />Andreas Nauerz and Markus Thömmes gave a talk with a hands-on workshop on OpenWhisk</li>
<li><a href="https://www.meetup.com/nscoderrtp/events/239925683/"><strong>Meetup Triangle CocoaHeads</strong></a>, May 25th 2017, Raleigh, USA<br /><a href="https://twitter.com/csantanapr">Carlos Santana</a> gave a talk on OpenWhisk and Swift at the Triangle Cocoa - Mac and iOS Development Meetup</li>
<li><a href="http://events17.linuxfoundation.org/events/apachecon-north-america"><strong>ApacheCon North America</strong></a>, May 16th-18th 2017, Miami, USA<br />Carlos Santana and Matt Rutkowski gave talks on Apache OpenWhisk</li>
<li><a href="http://amsterdam2017.codemotionworld.com/"><strong>Codemotion Amsterdam</strong></a>, May 16th-17th 2017, Amsterdam, Netherlands<br />James Thomas gave a talk on building serverless applications using OpenWhisk</li>
<li><a href="https://web.archive.org/web/20170720100346/https://www.meetup.com/rtpbluemix/"><strong>Meetup Triangle Bluemix</strong></a>, May 11th 2017, NCSU Centennial Campus, Raleigh, NC USA<br />IBM Development team contributing to OpenWhisk provided an overview and live demos using Bluemix.</li>
<li><a href="https://www.meetup.com/eBay-Europe-Technology/events/239295491/"><strong>Meetup Serverless Berlin</strong></a>, May 4th 2017, Berlin, Germany<br />Andreas Nauerz and Jeremias Werner gave a talk and ran a hands-on workshop on OpenWhisk</li>
</ul>
<h3 id="april-2017">April 2017</h3>
<ul>
<li><a href="https://serverlessconf.io"><strong>ServerlessConf Austin</strong></a>, April 27th-28th 2017, Austin, USA<br />OpenWhisk team attended</li>
<li><a href="https://medium.com/openwhisk/openwhisk-workshop-at-the-serverless-conference-in-austin-sign-up-now-c2b88f5bac9d#.73xz9bl16"><strong>ServerlessConf Austin</strong></a>, April 26th 2017, Austin, USA<br />Andreas Nauerz et al ran a hands-on workshop on OpenWhisk</li>
<li><a href="https://www.intothebox.org/"><strong>Into the Box</strong></a>, April 26th-28th 2017, The Woodlands, USA<br />Raymond Camden gave a talk on OpenWhisk</li>
<li><a href="https://web.archive.org/web/20161012050122/http://www.meetup.com:80/TRI-REST/"><strong>Meetup TRI REST</strong></a>, April 26th 2017, Raleigh, USA<br />Carlos Santana gave a talk on OpenWhisk</li>
<li><a href="https://www.meetup.com/Serverless-Hamburg/events/238520956/"><strong>Meetup Serverless Hamburg</strong></a>, April 10th 2017, Hamburg, Germany<br />Andreas Nauerz and Xin Cai gave a talk and run a hands-on workshop on OpenWhisk</li>
<li><a href="https://www.meetup.com/Serverless-Boston/events/237480548/"><strong>Meetup Serverless Boston</strong></a>, April 5th 2017, Boston, USA<br />Paul Castro and Perry Cheng gave a talk on OpenWhisk</li>
<li><a href="https://conferences.oreilly.com/software-architecture/sa-ny-2017"><strong>O’Reilly Software Architecture Conference</strong></a>, April 5th 2017, New York, USA<br />Daniel Krook gave a keynote with other talks on OpenWhisk by Ioana Baldini and Rodric Rabbah</li>
</ul>
<h3 id="march-2017">March 2017</h3>
<ul>
<li><a href="https://www.meetup.com/Serverless-Vienna/events/238392790/"><strong>Meetup Serverless Vienna</strong></a>, March 28th 2017, Vienna, Austria<br />Coding on various Serverless systems, incl OpenWhisk.</li>
<li><strong>CloudNativeCon and KubeCon Europe</strong>, March 29th–30th 2017, Berlin, Germany<br />Daniel Krook gave an OpenWhisk demo at the IBM booth and was available for questions</li>
<li><a href="https://devoxx.com/"><strong>Devoxx US</strong></a>, March 21st–23rd 2017, Las Vegas, USA<br />OpenWhisk team attended</li>
<li>
<p><a href="http://www.ibm.com/cloud-computing/us/en/interconnect/"><strong>IBM InterConnect</strong></a>, March 19th–23rd 2017, Las Vegas, USA<br />OpenWhisk team attended</p>
<details><summary><strong>Ask Me Anything</strong></summary>
<ul>
<li><strong>7291A: Bluemix OpenWhisk: Ask Me Anything Expert Station</strong><br />
Tuesday, 1:00 PM-2:45 PM; DevZone Ask Me Anything # 6; Carlos Santana (IBM)</li>
<li><strong>7237A: Drones, Watson and Bluemix</strong><br />
Tuesday, 3:00 PM-5:00 PM; DevZone Ask Me Anything # 1; Andrew Trice (IBM)</li>
<li><strong>7077A: Ask Me Anything on Using OpenWhisk for Your Next Cloud-Native Project</strong><br />
Wednesday, 10:00 AM-11:45 AM; DevZone Ask Me Anything # 6, Daniel Krook (IBM)</li>
</ul>
</details>
<details><summary><strong>Breakout Sessions</strong></summary>
<ul>
<li><strong>1427A: Serverless: Where We are Now and Where We're Heading</strong><br />
Sunday, 09:30 AM-10:30 AM; Mandalay Bay South, Level 2 Reef A; Michael Behrendt (IBM), Andreas Nauerz (IBM)</li>
<li><strong>7377A: API Lifecycle Innovations</strong><br />
Sunday, 10:40 AM-11:00 AM; South Pacific F; Jim Laredo (IBM), Erik Wittern (IBM)</li>
<li><strong>7402A: The Serverless Revolution Continues: OpenWhisk</strong><br />
Sunday, 11:00 AM-11:30 AM; South Pacific F; Ioana Baldini (IBM)</li>
<li><strong>7380A: Data, Data Everywhere, and Lots of Drops to Drink (Demos)</strong><br />
Sunday, 1:00 PM-1:30 P; South Pacific G; Paula Ta-Shma (IBM), Dalit Naor (IBM)</li>
<li><strong>7367A: The Serverless Revolution Continues: The Latest from OpenWhisk</strong><br />
Sunday, 02:00 PM-02:30 PM; South Pacific H; Stephen Fink (IBM)</li>
<li><strong>7329A: API Economy Demonstrations</strong><br />
Sunday, 2:00 PM-2:30 P; South Pacific G; Jim Laredo (IBM), Erik Wittern (IBM)</li>
<li><strong>3351A: MediaSpirit: A Bluemix and OpenWhisk Love Story</strong><br />
Monday, 2:00 PM-2:45 PM; South Pacific G; Andreas Nauerz (IBM), Barry Nijenhuis (SiteSpirit)</li>
<li><strong>2724A: Create Event-Driven iOS Apps Using IBM Mobile Foundation, OpenWhisk Runtime and Server-Side Swift</strong><br />
Monday, 3:15 PM-4:00 PM; South Pacific D; Srinivasan Nanduri (IBM), Girish Dhanakshirur (IBM)</li>
<li><strong>4467A: Containerize, PaaS or Go Serverless?: A Case Study in Application Deployment Models</strong><br />
Tuesday, 11:30 AM-12:15 PM; Islander G; Phil Estes (IBM), Lin Sun (IBM)</li>
<li><strong>5496A: Cloud Native Applications and Microservices Made Easy!</strong><br />
Tuesday, 2:30 PM-3:15 PM; Islander F; Erin Schnabel (IBM), Chris Vignola (IBM)</li>
<li><strong>5513A: Serverless Architectures in Banking: OpenWhisk on IBM Bluemix at Santander</strong><br />
Tuesday, 3:45 PM-4:30 PM; South Pacific J; Daniel Krook (IBM), Luis Enriquez (Banco Santander)</li>
<li><strong>6229A: What's New in IBM API Connect</strong><br />
Tuesday, 3:45 PM-4:30 PM; Lagoon H; Pramodh Ramesh (IBM), Amit P. Acharya (IBM)</li>
<li><strong>5064A: OpenWhisk, Adobe, and developerWorks Open for High-Powered Applications</strong><br />
Wednesday, 8:00 AM-8:45 AM; South Pacific J; Tony Ffrench (IBM), Felix Meschberger (Adobe)</li>
<li><strong>5421A: How to Build Homogeneously from One Source Repository to Mobile and Microservices Targets</strong><br />
Wednesday, 9:00 AM-9:45 AM; South Pacific J; Roland Barcia (IBM), John Pearson (Wakefern)</li>
<li><strong>6336A: Use IBM Bluemix to Build Cognitive Mobile Apps that Learn and Act Proactively</strong><br />
Wednesday, 9:00 AM-9:45 AM; South Pacific D; Anton Aleksandrov (IBM), Matthew Perrins (IBM)</li>
<li><strong>1117A: Introduction to LoopBack</strong><br />
Wednesday, 11:15 AM-12:00 PM; Islander F; Matt Roberts (IBM); Raymond Camden (IBM)</li>
<li><strong>3044A: Retail Customer Feedback: Case Study with OpenWhisk, Watson and Mobile Services on IBM Bluemix</strong><br />
Wednesday, 1:00 PM-1:45 PM; Lagoon F; Thejaswini Ramachandra (IBM), Srinivasan Nanduri (IBM)</li>
<li><strong>1596A: Computation in Real-time on the Network</strong><br />
Wednesday, 2:00 PM-2:45 PM; South Pacific B; Dan Zeitman, PubNub (IBM Business Partner)</li>
<li><strong>3248A: Integrating New Tools into IBM Bluemix Continuous Delivery Toolchains</strong><br />
Wednesday, 2:00 PM-2:45 PM; Mandalay Bay Ballroom D; Chris Brealey (IBM), Simon Kaegi (IBM)</li>
<li><strong>4073A: Serverless, Event-Driven Architectures and Bluemix OpenWhisk: Overview and IBM's Technical Strategy</strong><br />
Wednesday, 2:00 PM-2:45 PM; South Pacific H; Michael Behrendt (IBM), Andreas Nauerz (IBM)</li>
<li><strong>4460A: Combining OpenWhisk (Serverless), OpenAPI (Swagger) and IBM API Connect to Build Powerful APIs</strong><br />
Wednesday, 4:15 PM-5:00 PM; Breakers C; Joe Sepi (IBM)</li>
<li><strong>1081A: What’s New with the IBM Bluemix Core Platform?</strong><br />
Thursday, 9:30 AM-10:15 AM; South Pacific E; Simon Daniel Moser (IBM), Michael Behrendt (IBM)</li>
<li><strong>6324A: How to Secure and Control API, Microservices and Serverless Workloads</strong><br />
Thursday, 10:30 AM-11:15 AM; Lagoon H; Shiu-Fun Poon (IBM), Matt Roberts (IBM), Krithika Prakash (IBM)</li>
</ul>
</details>
<details><summary><strong>Customer Feedback Round Tables</strong></summary>
<ul>
<li><strong>6637A: Shaping the Future of IBM DataPower and API Gateways</strong><br />
Monday, 11:15 AM-12:00 PM; Coral A; Tony Ffrench (IBM), Ozair Sheikh (IBM)</li>
<li><strong>6671A: Shaping the Future of Serverless APIs and Microservices in IBM Bluemix</strong><br />
Monday, 1:00 PM-1:45 PM; Coral A; Carlos Santana (IBM), Sajan Sankaran (IBM), Andrew Hoyt (IBM)</li>
<li><strong>6671B: Shaping the Future of Serverless APIs and Microservices in IBM Bluemix</strong><br />
Wednesday, 8:00 AM-8:45 AM; Coral A; Carlos Santana (IBM), Sajan Sankaran (IBM), Andrew Hoyt (IBM)</li>
</ul>
</details>
<details><summary><strong>Engagement Theater Sessions</strong></summary>
<ul>
<li><strong>7111A: Discovering the Fun World of Serverless with IBM Bluemix and OpenWhisk</strong><br />
Tuesday, 1:30 PM-1:50 PM; Engagement Theater Booth # 319; Chanakya Lokam (Miracle Software Systems, Inc.), Jyotsna Duvvuri (Miracle Software Systems, Inc.)</li>
<li><strong>7432A: Create Secure Cloud Foundry and OpenWhisk Powered APIs in IBM Bluemix</strong><br />
Wednesday, 11:15 AM-11:35 AM; Engagement Theater Booth # 649; Sajan Sankaran (IBM), Rob Thelen (IBM)</li>
<li><strong>6522A: Build a Cloud Native App with Apache OpenWhisk</strong><br />
Wednesday, 11:45 AM-12:05 PM; Engagement Theater Booth # 649; Daniel Krook (IBM)</li>
<li><strong>1515A: Discover Dark Data behind Videos with OpenWhisk and IBM Watson</strong><br />
Wednesday, 1:30 PM-1:50 PM; Engagement Theater Booth # 649; Ramratan Vennam (IBM), Frederic Lavigne (IBM)</li>
<li><strong>1515B: Discover Dark Data behind Videos with OpenWhisk and IBM Watson</strong><br />
Wednesday, 4:45 PM-5:05 PM; Engagement Theater Booth # 649; Ramratan Vennam (IBM), Frederic Lavigne (IBM)</li>
</ul>
</details>
<details><summary><strong>Hands-on Labs</strong></summary>
<ul>
<li><strong>3163A: Serverless Bots: Create Efficient Inexpensive, Event-Driven Bots with Node.js and OpenWhisk</strong><br />
Monday, 3:15 PM-5:00 PM; South Seas B; Erin McKean (IBM)</li>
<li><strong>2450B: Working with IBM OpenWhisk in Bluemix</strong><br />
Monday, 4:15 PM-5:00 PM; South Seas I1; Budi Darmawan (IBM), Pam Geiger (IBM)</li>
<li><strong>3397A: Event-Driven and Serverless Computing with IBM Bluemix OpenWhisk</strong><br />
Tuesday, 1:30 PM-5:30 PM; South Seas I1; Andreas Nauerz (IBM), Carlos Santana (IBM)</li>
<li><strong>5130A: A Deep-Dive into Serverless Computing and Watson Service Chaining Via OpenWhisk</strong><br />
Wednesday, 2:00 PM-2:45 PM; South Seas G; Vidyasagar Machupalli (IBM)</li>
<li><strong>2256A: Build Your First Cognitive Chatbot Using OpenWhisk</strong><br />
Wednesday, 3:15 PM-5:00 PM; South Seas B; Carlos Santana (IBM), Andreas Nauerz (IBM)</li>
</ul>
</details>
<details><summary><strong>Hello World Labs</strong></summary>
<ul>
<li><strong>7252A: Create Quick Twitterbots with OpenWhisk!</strong><br />
Tuesday, 11:00 AM-1:45 PM; DevZone Hello World Lab # 4; Erin McKean (IBM)</li>
<li><strong>7078A: Get Started with Apache OpenWhisk on IBM Bluemix</strong><br />
Tuesday, 2:15 PM-5:00 PM; DevZone Hello World Lab # 4; Andy Smith (IBM)</li>
<li><strong>7070A: Event-Driven and Serverless Computing with IBM Bluemix OpenWhisk: Learn the Basics Hands-On Now!</strong><br />
Wednesday, 9:00 AM-12:45 PM; DevZone Hello World Lab # 4; Andreas Nauerz (IBM)</li>
</ul>
</details>
<details><summary><strong>Meet the Expert Sessions</strong></summary>
<ul>
<li><strong>7122A: Creating Serverless IoT Applications Using OpenWhisk, Docker and Node-RED</strong><br />
Wednesday, 9:00 AM-9:45 AM; Meet the Experts Forum # 1; Kalonji Bankole (IBM)</li>
</ul>
</details>
<details><summary><strong>Open Labs</strong></summary>
<ul>
<li><strong>9002: Event-driven and Serverless Computing with IBM Bluemix OpenWhisk: Learn the basics now!</strong><br />
Monday-Thursday drop-in; Mandalay Bay North, South Seas E&amp;F; Andreas Nauerz (IBM)</li>
</ul>
</details>
</li>
<li><strong>JS Remote Conf</strong>, March 15th-16th 2017, Virtual<br />James Thomas gave a talk on OpenWhisk and Serverless</li>
<li><a href="https://forwardjs.com/"><strong>ForwardJS</strong></a>, March 1st 2017, San Francisco, USA<br />Raymond Camden will give a talk on OpenWhisk</li>
</ul>
<h3 id="february-2017">February 2017</h3>
<ul>
<li><strong>TopConf Linz</strong>, February 28th-March 2nd 2017, Linz, Austria<br />James Thomas gave a talk on building serverless applications using OpenWhisk</li>
<li><a href="https://www.twitch.tv/videos/119142073"><strong>London Serverless</strong></a>, February 1st 2017, London, UK<br />James Thomas gave a talk on building OpenWhisk apps with The Serverless Framework</li>
</ul>
<h3 id="december-2016">December 2016</h3>
<ul>
<li><a href="https://developer.ibm.com/tv/build-a-cloud-native-app-with-openwhisk-event-registration/"><strong>Build a cloud native app with OpenWhisk</strong></a>, December 14th 2016, Virtual<br />Daniel Krook presented an overview of serverless architectures and dive into the OpenWhisk programming model</li>
</ul>
<h3 id="november-2016">November 2016</h3>
<ul>
<li><a href="https://gotocon.com/berlin-2016/"><strong>GOTO Berlin</strong></a>, November 14th-15th 2016, Berlin, Germany<br />Andreas Nauerz &amp; Simon Moser gave a talk on OpenWhisk</li>
<li><strong>CloudNativeCon 2016</strong>, November 8th 2016, Seattle, USA<br />Daniel Krook highlighted OpenWhisk in his keynote</li>
<li><a href="http://dynamicinfradays.org/events/2016-nyc/"><strong>ContainerDays NYC 2016</strong></a>, November 3rd-4th 2016, New York, USA<br />Rodric Rabbah and Philippe Suter gave a talk on OpenWhisk</li>
</ul>
<h3 id="october-2016">October 2016</h3>
<ul>
<li><a href="https://serverlessconf.io"><strong>ServerlessConf London</strong></a>, October 26th-28th 2016, London, UK<br />Andreas Nauerz et al gave a talk on OpenWhisk</li>
<li><a href="https://www.openstack.org/summit/barcelona-2016/"><strong>OpenStack Summit</strong></a>, October 25th-28th 2016, Barcelona, Spain<br />Shaun Murakami gave a talk on OpenWhisk</li>
<li><strong>JavaDay</strong>, October 14th-16th 2016, Kyiv, Ukraine<br />James Thomas gave a talk on OpenWhisk</li>
<li><a href="http://www.meetup.com/nyc-bluemix/events/233970408/"><strong>New York City Bluemix Meetup</strong></a>, October 13th 2016, New York, USA<br />Daniel Krook et al ran a workshop on OpenWhisk and other Bluemix topics</li>
<li><a href="http://www.meetup.com/Serverless-NYC/events/234479192/"><strong>Serverless New York City Meetup</strong></a>, October 13th 2016, New York, USA<br />Nick Mitchell gave a talk on OpenWhisk</li>
<li><a href="http://www.meetup.com/Serverless-Seattle/events/233807991/"><strong>Serverless Seattle Meetup</strong></a>, October 12th 2016, Seattle, USA<br />Megan Kostick gave a talk on OpenWhisk</li>
<li><a href="http://www.meetup.com/nyc-bluemix/events/233968352/"><strong>New York City Bluemix Meetup</strong></a>, October 12th 2016, New York, USA<br />Daniel Krook gave a talk on OpenWhisk</li>
</ul>
<h3 id="september-2016">September 2016</h3>
<ul>
<li><a href="http://tokyo.serverlessconf.io/"><strong>ServerlessConf Tokyo</strong></a>, September 30th–October 1st 2016, Tokyo, Japan<br />Andreas Nauerz &amp; Markus Thömmes gave a talk on OpenWhisk</li>
<li><a href="https://belgrade.voxxeddays.com/"><strong>Voxxed Days</strong></a>, September 28th-30th 2016, Belgrade, Serbia<br />James Thomas gave a talk on OpenWhisk</li>
<li><a href="https://www.cloudfoundry.org/event_subpages/2016-eu-recap/"><strong>CloudFoundry Summit</strong></a>, September 26th-28th 2016, Frankfurt, Germany<br />Andreas Nauerz &amp; Andrei Yurkovich gave a talk on OpenWhisk</li>
<li><a href="http://warsaw2016.codemotionworld.com/"><strong>Codemotion Warsaw</strong></a>, September 15th-16th 2016, Warsaw, Poland<br />Andreas Nauerz gave a talk on OpenWhisk</li>
<li><a href="http://events17.linuxfoundation.org"><strong>Node Interactive EU</strong></a>, September 15th-16th 2016, Amsterdam, Netherlands<br />OpenWhisk team gave a talk on OpenWhisk</li>
<li><a href="http://www.meetup.com/Serverless-NYC/events/233736279/"><strong>Serverless New York City Meetup</strong></a>, September 15th 2016, New York, USA<br />Philippe Suter gave a talk on OpenWhisk</li>
<li><a href="https://twitter.com/jdaylviv"><strong>JDay</strong></a>, September 3rd 2016, Lviv, Ukraine<br />James Thomas gave a talk on OpenWhisk</li>
</ul>
<h3 id="july-2016">July 2016</h3>
<ul>
<li><a href="http://www.irishdev.com/Home/Events/1191-Bluemix-and-IBM-Cloud-Meetup.html"><strong>Bluemix and IBM Cloud Meetup</strong></a>, July 27th 2016, Dublin, Ireland<br />Emmanuel Vregille gave a talk on OpenWhisk</li>
<li><a href="http://www.meetup.com/nyc-bluemix/events/231944252/"><strong>New York City Bluemix Meetup</strong></a>, July 21th 2016, New York, USA<br />Ioana Baldini and Philippe Suter gave a talk on OpenWhisk</li>
<li><a href="http://www.meetup.com/Serverless-London/"><strong>Serverless Meetups London</strong></a>, July 5th 2016, London, UK<br />Nick O’Leary and James Thomas gave a talk on OpenWhisk</li>
<li><a href="http://www.meetup.com/Sydney-Serverless-Meetup-Group/events/232020422/"><strong>Serverless Meetup Sydney</strong></a>, July 5th 2016, Sydney, Australia<br />Iwan Winoto gave a talk on OpenWhisk</li>
</ul>
<h3 id="june-2016">June 2016</h3>
<ul>
<li><a href="http://www.meetup.com/Bluemix-Developers-in-Cambridge/events/231783149/"><strong>Bluemix Developers in Cambridge Meetup</strong></a>, June 23rd 2016, Cambridge, USA<br />Vatche Ishakia gave a talk on OpenWhisk</li>
<li><a href="http://www.meetup.com/CloudFoundry/events/231791789/"><strong>Silicon Valley Cloud Foundry User Group Meetup</strong></a>, June 14th 2016, Sunnyvale, USA<br />Animesh Singh &amp; Altoros gave a talk on OpenWhisk</li>
</ul>
<h3 id="may-2016">May 2016</h3>
<ul>
<li><a href="http://nyc.serverlessconf.io/"><strong>ServerlessConf New York</strong></a>, May 26th-27th 2016, New York City, USA<br />Michael Behrendt, Stephen Fink, and Andreas Nauerz gave a talk on OpenWhisk</li>
<li><a href="http://www.meetup.com/nyc-bluemix/events/231021166/"><strong>Drones, IoT, Cognitive Computing, Bluemix, and OpenWhisk!</strong></a>, May 25th 2016, New York City, USA<br />Andrew Trice gave a talk on OpenWhisk</li>
<li><a href="http://www.meetup.com/CloudFoundry/events/227086817/"><strong>Cloud Foundry Unconference</strong></a>, May 22nd 2016, Santa Clara, USA<br />Animesh Singh gave a talk on OpenWhisk</li>
<li><a href="http://conferences.oreilly.com/oscon/open-source-us"><strong>OSCON Austin</strong></a>, May 18th-19th 2016, Austin, USA<br />Daniel Krook gave a talk on OpenWhisk</li>
<li><a href="https://www-01.ibm.com/events/wwe/grp/grp308.nsf/Additional.xsp?openform&amp;seminar=C84HXGES&amp;locale=en_ZZ"><strong>Hursley Summit</strong></a>, May 16th-18th 2016, Hursley, UK<br />Andreas Nauerz gave a talk on OpenWhisk</li>
<li><a href="http://amsterdam2016.codemotionworld.com/"><strong>Codemotion Amsterdam</strong></a>, May 9th-12th 2016, Amsterdam, Netherlands<br />Andreas Nauerz gave a talk on OpenWhisk</li>
</ul>
<h3 id="april-2016">April 2016</h3>
<ul>
<li><a href="https://web.archive.org/web/20161006141508/http://www.meetup.com:80/rtpbluemix/events/229767420/"><strong>Triangle Bluemix Meetup</strong></a>, April 20th 2016, Durham, USA</li>
</ul>
</div>
</main>
</section>
<!--
/*
* Required ASF website links (scanned)
*
* Name: Regex: URL
* ==== ===== ===
* Foundation: apache|asf|foundation: http://www.apache.org/
* Events: ^https?://.*apache.org/events/current-event: See: https://www.apache.org/events/README.txt
* License: ^https?://.*apache.org/licenses/$: http://www.apache.org/licenses/
* Thanks: ^https?://.*apache.org/foundation/thanks: http://www.apache.org/foundation/thanks.html
* Security: ^https?://.*apache.org/.*[Ss]ecurity: http://www.apache.org/security/
* Sponsorship: ^https?://.*apache.org/foundation/sponsorship http://www.apache.org/foundation/sponsorship.html
* Trademarks: \btrademarks\b All project or product homepages must feature a prominent trademark attribution of all applicable Apache trademarks.
* Copyright: ((Copyright|©).*apache|apache.*(Copyright|©)): All website content SHOULD include a copyright notice for the ASF.
* Image: . Projects SHOULD include a 212px wide copy of their logo in https://www.apache.org/img/ to be included in ASF homepage.
* See: https://www.apache.org/img/
*/
-->
<footer class="footer light-text">
<main class="footer-row">
<div>
<div class="footer-row-text-links">
<a class="" href="https://www.apache.org/">Apache&nbsp;Software&nbsp;Foundation</a>
<a class="" href="https://apache.org/events/current-event">Events</a>
<a class="" href="https://www.apache.org/licenses/">License</a>
<a class="" href="https://privacy.apache.org/policies/privacy-policy-public.html">Privacy</a>
<a class="" href="security.html">Security</a>
<a class="" href="https://www.apache.org/foundation/thanks.html">Thanks</a>
<a class="" href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a>
</div>
</div>
</main>
<main class="footer-row">
<div>
Apache OpenWhisk, OpenWhisk, Apache, the Apache feather logo, and
the Apache OpenWhisk project logo are either
<a href="trademarks.html">registered trademarks</a> or
<a href="trademarks.html">trademarks</a>
of The Apache Software Foundation in the United States and other countries.
See <a href="trademarks.html">guidance</a> on use of Apache OpenWhisk trademarks.
All other marks mentioned may be trademarks or registered trademarks
of their respective owners.
</div>
</main>
<main class="footer-row">
Copyright © 2016-present The Apache Software Foundation,
Licensed under the Apache License, Version 2.0.
</main>
</footer>
</body>
</html>