You Gotta Start Somewhere
Technologies and Time Machines
the App Store
Return Values
100
Previously the Vice President of IT, this executive is well known for his WWT Line of Business presentation
Who is Mark Franke?
100
This style of computing is a model for enabling on-demand access to a shared pool of configurable computing resources which can be rapidly provisioned and released with minimal management effort.
What is cloud computing?
100
WWT Asynchrony developed an app for this company that provides a "You Pick 2" feature allowing you to pair a salad with a soup or sandwich along with the option for Apple Pay
What is Panera Bread?
100
let x = 10
let y = 5

return x * y
What is 50?
200
This exec started his career at at Telic Corporation, which was later acquired by Computer Sciences Corporation
Who is Joe Koenig?
200
This language is used to add layout, color and design to HTML
What is CSS?
200
Soon to move to the cloud, this WWT application provides social collaboration, content management capabilities and highlights employee anniversaries
What is United?
200
let x = 10

return ++x
What is 11?
300
This WWT employee worked his way from intern to executive in less than 14 years
Who is Mike Taylor?
300
Asynchrony Labs built a Faraday cage that resembles this time machine, known for having an interior that is much bigger than the exterior and can blend in with it's surroundings using a "chameleon circuit"
What is the Tardis?
300
This customer facing application allows users to manage their Cisco Service Contracts
What is Comet?
300
let names = ['Monica', 'Marc', 'Joe']

return names[1]
What is Marc?
400
In a recent blog post, this executive stated "if organizations want to innovate, they can’t always think of technology investments in terms of ROI."
Who is Jim Kavanaugh?
400
Manufactured between 1981 and 1983, this car featured gull wing doors. In 1985, Dr. Emmett Brown added a flux capacitor to it's configuration, allowing it to travel through time.
What is the DeLorean?
400
This app was developed by WWT to allow product teams to manage their work in Service Now using agile methodologies. Strangely, it's loading message states "It's about to go down"
What is Timber?
400
for (var i = 0; i < 6; i++) {
   console.log('i is ' + i)
}

return i
What is 6?
500
Starting his career as a programmer at Boeing, this executive still enjoys tinkering with PHP and building home automation software today.
Who is Bob Olwig?
500
This JavaScript runtime environment used by WWT IT to build RESTFul APIs processes incoming requests in a loop, known as the event loop
What is NodeJS?
500
This Asynchrony developed mobile app allows participants to ask questions during presentations, and is being used to field questions prior to this week's WWT Corporate update
What is Podium?
500
let input = 'WWT'
let output = ''

for (let i = input.length, i >= 0; i--) {
   output += input.charAt(i)
}

return output
What is TWW?