I'm Andy Glover and this is the Java Technical Series of. the developerworks podcasts. My guest is Brian Jakovich. He is the

Size: px
Start display at page:

Download "I'm Andy Glover and this is the Java Technical Series of. the developerworks podcasts. My guest is Brian Jakovich. He is the"

Transcription

1 I'm Andy Glover and this is the Java Technical Series of the developerworks podcasts. My guest is Brian Jakovich. He is the director of Elastic Operations for Stelligent. He and I are going to talk about Puppet. So Brian, welcome. Hi, how you doing? It s good to have you. Some time ago we ran a talk with Paul Duval who is the CTO of Stelligent, so it's great to have someone from Stelligent back on this podcast series. So this series is focusing on the cloud, and Stelligent is doing some really interesting work in the cloud. Your title Director of Elastic Operations is indicative your stance on the cloud and something that you and I and Paul have talked about in the past is automation in the cloud and something that comes up a lot is this tool called Puppet. So I thought I'd kick off the conversation by asking you, Brian, what the heck is Puppet? Puppet, at a real low level, is a Ruby-based language that allows you to script your infrastructure -- most specifically infrastructure -- into a scriptable format, so you can continuously run and rebuild your environments to the same standard every time. Okay. So the same standard every time, and that's obviously an important aspect. Talk about this applicability in the cloud. There are various cloud providers. There's Infrastructure as a Service, there s Platforms as a Service. One everyone knows about is Amazon Web Services, AWS, the cloud, right?

2 Right. So how does Puppet help me do my job better, faster, cheaper with something like AWS? One of the key parts to explain where it is before you get to AWS. Originally, you launch up a server and then you need writing or performing commands to get to your end state of the system. An easier way of doing that would be with Puppet where you actually script the commands and it builds up the infrastructure. In the cloud, the cloud gives you the ability to do that elastically. You can build up your infrastructure using the virtual resources and then apply Puppet on to that to build up the system to the end state. So it's a scripting language, its Ruby based. So you have to know Ruby then to use Puppet. You don't have to know Ruby. So there's an internal DSL and an external DSL. So Puppet has its own, its sys/admin time oriented language that isn't Ruby based, but they also integrate a Ruby-based part of it, too. If you're familiar as a developer, you can script into it as well. So let's talk then about a Puppet script. So a typical task to perform with AWS, is to select an AMI, like an Ubuntu standard image, and then to apply that to an instance type. So let's

3 say I want to do it on a high memory the MX2 or whatever their nomenclature is. Apply the AMI to an instance and the Ubuntu image is running in the cloud. I want to install some Java components, like I want to put Tomcat on it. And then I want to deploy a WAR to it. Those five or six steps, are all manual at this point without using something like Puppet, right? I'm working either on the command line or I'm going through the AWS management console. How does this work then with Puppet? So I'm writing a script. And how does a script do this? What are the commands and where do I run the script from? And are there component that are required, let's say, on the AWS side for Puppet to work? Yes. So at a very low level, you need Puppet installed on the target environment that you're trying to start up. Okay. So there's like a Puppet kind of client/server architecture here? Yes. There's like three different ways you can run Puppet. There's Puppet Enterprise, which is just their enterprise version. There is master server/master client type of configuration, that actually just a client which run on its own. What you need is to install the actual Puppet package, RPM, gem

4 packet, on to your target system. And then you can run Puppet at the Puppet client. Okay. So you have a Puppet client that's running your machine, and then you need a Puppet server on the AWS instance, or can it be somewhere else? It can be anywhere else. How are you delineating or specifying your images and instance types? That's all commands you then give to Puppet? The images and instance types? Yes. Puppet knows this on its own. It looks at the internal architecture of whatever it's sitting on, so let's say you're on Ubuntu or CentOS or other operating system, it has its logic built in that looks at the operating system and figures out what it's working with. The specific tool that they use there is called Factor. So Puppet is making my job easier because it's reducing the amount of steps I have to take? Yes. Let's say you're launching up some huge server that takes about an hour and a half to manually provision. Puppet will do the same task, just automatically. It will reduce your steps

5 to pretty much none So we talked about Infrastructure as a Service and Platform as a Service there seems to be a growing trend of people who prefer the platform route? Because at the end of the day, an infrastructure is a commodity? It's another machine that I run stuff on. The real value perhaps is that I've got a platform that's going to handle all that for me. So platforms that come to mind and platforms that we've talked to on this series are like Jelastic or CloudBees or the Google App Engine, Elastic Beanstalk, or Engine Yard, Heroku. Does Puppet work in those environments as well -- i.e., can Puppet work in a PaaS environment? I'm not going to say no a hundred percent there, but it's better used in the Infrastructure as a Service environments. Generally, Elastic Beanstalk, or Heroku are built to essentially just take your application. And all the platform-specific stuff is built in already whereas with Infrastructure as a Service, you essentially get the virtual hardware and that's all. You have to build it up as you see fit on your own. Is Puppet the only game in town? Are there other Infrastructures as a Service? And why would someone want to look at Puppet as opposed to rolling their own or using Competitor A, B and C?

6 To roll your own is quite a task. Puppet does a ton of work for you, most specifically with the factor where you figure out the separating system specifics and all prior to actually running your script, that's a lot. If you were to run it just in a bash script, Puppet allows you to make decisions based on what Puppet finds. For instance, you may find you are running on a CentOS system when you were expecting to run on an Ubuntu system. Puppet will change how it builds the system, depending on that. And if you were to use a bash script, it would just run the scripts, this doesn't work with Ubuntu, it would just fail. As to the other options for this, there's Bcfg2 and then Chef. To my knowledge, there's some other ones as well, but those are the big players. What's the advantage of Puppet over Chef? The way I find it, Puppet is a bigger, much bigger, user base. It's almost four to one ratio and it's been around for longer time. As you're learning Puppet and building out your scripts and you generally have questions you re trying to figure out what you need to do in your unusual situations? In addition to that, Puppet allows you to require of other resources. So let's say you wanted to install Tomcat and then also how to

7 configuration script that you want to put on to the Tomcat web app only after you install Tomcat. Puppet allows you to make that choice. You can require the Tomcat package is installed prior to putting the configuration script on there. With Chef, it can still be done, but it's not as simple and straightforward as it is with Puppet. You mentioned the community aspect of Puppet Is Puppet is open source? Yes. So you have these open source projects and then a community grows around the project itself. And something that results are these extensions or plug-ins. A classic example in the Java world is, you know, Jenkins or...gosh, I can't even remember the old name of Jenkins or the new name, excuse me. The CI server that, you know...hudson, excuse me. Hudson was the old name. Was this great...or, is this great CI server and all these people built all these plug-ins and it kind of created this movement where everyone was moving to, let's use Hudson and/or Jenkins to use our continuous integration. On the Puppet side, you mentioned a large community, a big user base. So there an analogous plug-in feature to Puppet? You can build out modules. And a module would be like a

8 specific type of installation that you want to do. Say you want to install Tomcat. There are different ways that you can configure Tomcat, but there would be a module called Tomcat. And there is an accepted way of installing it. For instance typically Tomcat is a type of package, so there would a package installation. There could also be a binary installation. It's already ran in this prewritten module. Generally, the modules that are most widely used are on the Puppet GitHub. There are different versions of Puppet and it's an open source framework. Tell me about these different versions, and is there's a company around Puppet that's providing support, et cetera? Yes. Puppet Labs is the company that maintains and builds up Puppet. Yes, they offer a Puppet client type of thing which doesn t really require a master server, where it just works on its own. And then there's also master server configuration of Puppet where essentially you have one master Puppet node that can control all your mini Puppet servers that are essentially your target instances are built using Puppet. Those would be connected to the master. In that configuration, you can continuously make modifications to your infrastructure by using the master server to, say; install Tomcat on all 50 servers. It s here where the Puppet standalone does not offer that feature you run it again, and you can only do it for

9 that one node at a time; they're not connected. And then lastly, Puppet Enterprise is Puppet's paid version where they have a master server configuration, but they give you much more support and a graphical use interface that allows you to really work with Puppet using the web UI. Okay. So how do I get started with Puppet? What are some good resources here? Okay. So, obviously the Puppet Labs GitHub. You can type; I think probably the easiest way of typing it is go to Google, type Puppet or Puppet GitHub They have a bunch of modules and manifests which are the controlling aspects of Puppet. And they have a lot of resources for getting started. There's also devopscloud.com where Paul Duval is CTO. He did a video series on using Puppet in the cloud. So you've got the cloud and then you've got tools like Puppet that help kind of provision things in the cloud. Is this all collectively part of DevOps? Yes. DevOps allows you to kind of bridge from developer to operations. And Puppet really helps with that. It's scripting for your typical sys admin tasks. It s like the DevOps power tool. DevOps power tool. And it's supported across all

10 different environments as we've already said, Linux, Mac, Windows, doesn't matter, it's platform agnostic, right? Exactly. This is cool. So we can get more information on the GitHub site. You did mention the DevOps and the cloud series. What about you? Where can we find out more information about you? The Stelligent blog tweets regularly. I'm also publishing a blog series about how we use actually Puppet and AWS for building out a continuous delivery platform for a nonprofit organization called Sea to Shore Alliance. You can find it's a six-part blog series on blog.stelligent.com. That's interesting. That's another kind of keyword Continuous delivery. So you have the DevOps lifecycle and then this continuous delivery aspect of it and Puppet being a large part of that. So this is a blog series that I'll certainly want to check out? Yes. Well. Cool. So Brian, I appreciate you taking time out of your busy day to educate us about Puppet and where it fits in the lifecycle of DevOps and continuous delivery in the cloud. Your whole point about at the end of the day it's an automation feature so it's saving time.

11 And that is certainly a benefit or a factor that weighs in lots of different kind of products and whatnot with respect to the cloud. You can get started with Puppet for free, and then there are paid versions as well. Yes. [LAUGHTER] So again, I'm Andy Glover, and this is the Java Technical Series of the developerworks podcast. Thanks for listening. My guest again has been Brian Jakovich. He is the director of Elastic Operations for Stelligent. And look forward to talking to you guys again sometime soon. [END OF SEGMENT]

Hello, and welcome to another episode of. Getting the Most Out of IBM U2. This is Kenny Brunel, and

Hello, and welcome to another episode of. Getting the Most Out of IBM U2. This is Kenny Brunel, and Hello, and welcome to another episode of Getting the Most Out of IBM U2. This is Kenny Brunel, and I'm your host for today's episode which introduces wintegrate version 6.1. First of all, I've got a guest

More information

Welcome to another episode of Getting the Most. Out of IBM U2. I'm Kenny Brunel, and I'm your host for

Welcome to another episode of Getting the Most. Out of IBM U2. I'm Kenny Brunel, and I'm your host for Welcome to another episode of Getting the Most Out of IBM U2. I'm Kenny Brunel, and I'm your host for today's episode, and today we're going to talk about IBM U2's latest technology, U2.NET. First of all,

More information

Formal Methods of Software Design, Eric Hehner, segment 24 page 1 out of 5

Formal Methods of Software Design, Eric Hehner, segment 24 page 1 out of 5 Formal Methods of Software Design, Eric Hehner, segment 24 page 1 out of 5 [talking head] This lecture we study theory design and implementation. Programmers have two roles to play here. In one role, they

More information

This Week on developerworks Push for ios, XQuery, Spark, CoffeeScript, top Rational content Episode date:

This Week on developerworks Push for ios, XQuery, Spark, CoffeeScript, top Rational content Episode date: This Week on developerworks Push for ios, XQuery, Spark, CoffeeScript, top Rational content Episode date: 02-15-2012 [ MUSIC ] LANINGHAM: Welcome to this week on developerworks. I'm Scott Laningham in

More information

Digital Marketing Manager, Marketing Manager, Agency Owner. Bachelors in Marketing, Advertising, Communications, or equivalent experience

Digital Marketing Manager, Marketing Manager, Agency Owner. Bachelors in Marketing, Advertising, Communications, or equivalent experience Persona name Amanda Industry, geographic or other segments B2B Roles Digital Marketing Manager, Marketing Manager, Agency Owner Reports to VP Marketing or Agency Owner Education Bachelors in Marketing,

More information

How To Make 3-50 Times The Profits From Your Traffic

How To Make 3-50 Times The Profits From Your Traffic 1 How To Make 3-50 Times The Profits From Your Traffic by Chris Munch of Munchweb.com Copyright Munchweb.com. All Right Reserved. This work cannot be copied, re-published, or re-distributed. No re-sell

More information

Welcome to this IBM Rational podcast, enhanced. development and delivery efficiency by improving initial

Welcome to this IBM Rational podcast, enhanced. development and delivery efficiency by improving initial IBM Podcast [ MUSIC ] GIST: Welcome to this IBM Rational podcast, enhanced development and delivery efficiency by improving initial core quality. I'm Kimberly Gist with IBM. Catching defects earlier in

More information

Who am I? I m a python developer who has been working on OpenStack since I currently work for Aptira, who do OpenStack, SDN, and orchestration

Who am I? I m a python developer who has been working on OpenStack since I currently work for Aptira, who do OpenStack, SDN, and orchestration Who am I? I m a python developer who has been working on OpenStack since 2011. I currently work for Aptira, who do OpenStack, SDN, and orchestration consulting. I m here today to help you learn from my

More information

MITOCW watch?v=se4p7ivcune

MITOCW watch?v=se4p7ivcune MITOCW watch?v=se4p7ivcune The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

It Might Be Valid, But It's Still Wrong Paul Maskens and Andy Kramek

It Might Be Valid, But It's Still Wrong Paul Maskens and Andy Kramek Seite 1 von 5 Issue Date: FoxTalk July 2000 It Might Be Valid, But It's Still Wrong Paul Maskens and Andy Kramek This month, Paul Maskens and Andy Kramek discuss the problems of validating data entry.

More information

Welcome to this IBM Rational podcast, Using the. System Architect Migration Toolkit to Migrate Your DoDAF 1.5

Welcome to this IBM Rational podcast, Using the. System Architect Migration Toolkit to Migrate Your DoDAF 1.5 IBM Podcast [ MUSIC ] GIST: Welcome to this IBM Rational podcast, Using the System Architect Migration Toolkit to Migrate Your DoDAF 1.5 model to DoDAF 2.0. I'm Kimberly Gist with IBM. Many IBM Rational

More information

Formal Methods of Software Design, Eric Hehner, segment 1 page 1 out of 5

Formal Methods of Software Design, Eric Hehner, segment 1 page 1 out of 5 Formal Methods of Software Design, Eric Hehner, segment 1 page 1 out of 5 [talking head] Formal Methods of Software Engineering means the use of mathematics as an aid to writing programs. Before we can

More information

Module 6. Campaign Layering

Module 6.  Campaign Layering Module 6 Email Campaign Layering Slide 1 Hello everyone, it is Andy Mackow and in today s training, I am going to teach you a deeper level of writing your email campaign. I and I am calling this Email

More information

MITOCW ocw f99-lec07_300k

MITOCW ocw f99-lec07_300k MITOCW ocw-18.06-f99-lec07_300k OK, here's linear algebra lecture seven. I've been talking about vector spaces and specially the null space of a matrix and the column space of a matrix. What's in those

More information

CIO 24/7 Podcast: Tapping into Accenture s rich content with a new search capability

CIO 24/7 Podcast: Tapping into Accenture s rich content with a new search capability CIO 24/7 Podcast: Tapping into Accenture s rich content with a new search capability CIO 24/7 Podcast: Tapping into Accenture s rich content with a new search capability Featuring Accenture managing directors

More information

The Stack, Free Store, and Global Namespace

The Stack, Free Store, and Global Namespace Pointers This tutorial is my attempt at clarifying pointers for anyone still confused about them. Pointers are notoriously hard to grasp, so I thought I'd take a shot at explaining them. The more information

More information

Chrome if I want to. What that should do, is have my specifications run against four different instances of Chrome, in parallel.

Chrome if I want to. What that should do, is have my specifications run against four different instances of Chrome, in parallel. Hi. I'm Prateek Baheti. I'm a developer at ThoughtWorks. I'm currently the tech lead on Mingle, which is a project management tool that ThoughtWorks builds. I work in Balor, which is where India's best

More information

How to Improve Your Campaign Conversion Rates

How to Improve Your  Campaign Conversion Rates How to Improve Your Email Campaign Conversion Rates Chris Williams Author of 7 Figure Business Models How to Exponentially Increase Conversion Rates I'm going to teach you my system for optimizing an email

More information

In today s video I'm going show you how you can set up your own online business using marketing and affiliate marketing.

In today s video I'm going show you how you can set up your own online business using  marketing and affiliate marketing. Hey guys, Diggy here with a summary of part two of the four part free video series. If you haven't watched the first video yet, please do so (https://sixfigureinc.com/intro), before continuing with this

More information

The following content is provided under a Creative Commons license. Your support

The following content is provided under a Creative Commons license. Your support MITOCW Lecture 9 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational resources for free. To make a donation

More information

Hello, and welcome to a searchsecurity.com. podcast: How Security is Well Suited for Agile Development.

Hello, and welcome to a searchsecurity.com. podcast: How Security is Well Suited for Agile Development. [ MUSIC ] Hello, and welcome to a searchsecurity.com podcast: How Security is Well Suited for Agile Development. My name is Kyle Leroy, and I'll be moderating this podcast. I'd like to start by introducing

More information

Java in der Cloud Aktuelle Möglichkeiten und Entwicklungen

Java in der Cloud Aktuelle Möglichkeiten und Entwicklungen Java in der Cloud Aktuelle Möglichkeiten und Entwicklungen Eberhard Wolff Architecture and Technology Manager adesso AG Twitter: @ewolff Blog: http://ewolff.com About me! Eberhard Wolff! Architecture &

More information

P1_L3 Operating Systems Security Page 1

P1_L3 Operating Systems Security Page 1 P1_L3 Operating Systems Security Page 1 that is done by the operating system. systems. The operating system plays a really critical role in protecting resources in a computer system. Resources such as

More information

MITOCW watch?v=4dj1oguwtem

MITOCW watch?v=4dj1oguwtem MITOCW watch?v=4dj1oguwtem PROFESSOR: So it's time to examine uncountable sets. And that's what we're going to do in this segment. So Cantor's question was, are all sets the same size? And he gives a definitive

More information

Meet our Example Buyer Persona Adele Revella, CEO

Meet our Example Buyer Persona Adele Revella, CEO Meet our Example Buyer Persona Adele Revella, CEO 685 SPRING STREET, NO. 200 FRIDAY HARBOR, WA 98250 W WW.BUYERPERSONA.COM You need to hear your buyer s story Take me back to the day when you first started

More information

Java technology zone technical podcast series: Season 3 Dan Allen on the Arquillian testing framework Episode date:

Java technology zone technical podcast series: Season 3 Dan Allen on the Arquillian testing framework Episode date: Java technology zone technical podcast series: Season 3 Dan Allen on the Arquillian testing framework Episode date: 08-17-2011 GLOVER: I'm Andy Glover and this is the Java Technical Series of the developerworks

More information

Subscribe To The Blog Program in itunes Click Here

Subscribe To The Blog Program in itunes Click Here THE BLOG PROGRAM Podcast Transcript Episode 29 30 Email Marketing Power Tips For Bloggers (Part 3 of 3) To get automatic updates of this show to your mobile device, you can subscribe here: Click here to

More information

MITOCW watch?v=hverxup4cfg

MITOCW watch?v=hverxup4cfg MITOCW watch?v=hverxup4cfg PROFESSOR: We've briefly looked at graph isomorphism in the context of digraphs. And it comes up in even more fundamental way really for simple graphs where the definition is

More information

In our first lecture on sets and set theory, we introduced a bunch of new symbols and terminology.

In our first lecture on sets and set theory, we introduced a bunch of new symbols and terminology. Guide to and Hi everybody! In our first lecture on sets and set theory, we introduced a bunch of new symbols and terminology. This guide focuses on two of those symbols: and. These symbols represent concepts

More information

Welcome to this IBM Rational Podcast. I'm. Angelique Matheny. Joining me for this podcast, Delivering

Welcome to this IBM Rational Podcast. I'm. Angelique Matheny. Joining me for this podcast, Delivering Welcome to this IBM Rational Podcast. I'm Angelique Matheny. Joining me for this podcast, Delivering Next Generation Converged Applications with Speed and Quality, is Derek Baron, Worldwide Rational Communications

More information

MITOCW watch?v=w_-sx4vr53m

MITOCW watch?v=w_-sx4vr53m MITOCW watch?v=w_-sx4vr53m The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational resources for free. To

More information

MITOCW watch?v=0jljzrnhwoi

MITOCW watch?v=0jljzrnhwoi MITOCW watch?v=0jljzrnhwoi The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

IBM AND THE FUTURE OF SMART IT. February 26, 2008

IBM AND THE FUTURE OF SMART IT. February 26, 2008 IBM AND THE FUTURE OF SMART IT February 26, 2008 LANINGHAM: Welcome to a podcast on IBM and the Future of Smart IT. I'm Scott Laningham. We're here to talk about the ballooning energy use by computing

More information

Post Experiment Interview Questions

Post Experiment Interview Questions Post Experiment Interview Questions Questions about the Maximum Problem 1. What is this problem statement asking? 2. What is meant by positive integers? 3. What does it mean by the user entering valid

More information

mismatch between what is maybe possible today and what is going on in many of today's IDEs.

mismatch between what is maybe possible today and what is going on in many of today's IDEs. What will happen if we do very, very small and lightweight tools instead of heavyweight, integrated big IDEs? Lecturer: Martin Lippert, VMware and Eclispe tooling expert LIPPERT: Welcome, everybody, to

More information

Instructor (Mehran Sahami):

Instructor (Mehran Sahami): Programming Methodology-Lecture26 Instructor (Mehran Sahami): All right. Welcome back to what kind of day is it going to be in 106a? Anyone want to fun-filled and exciting. It always is. Thanks for playing

More information

PROFESSOR: Last time, we took a look at an explicit control evaluator for Lisp, and that bridged the gap between

PROFESSOR: Last time, we took a look at an explicit control evaluator for Lisp, and that bridged the gap between MITOCW Lecture 10A [MUSIC PLAYING] PROFESSOR: Last time, we took a look at an explicit control evaluator for Lisp, and that bridged the gap between all these high-level languages like Lisp and the query

More information

Hi everyone. I hope everyone had a good Fourth of July. Today we're going to be covering graph search. Now, whenever we bring up graph algorithms, we

Hi everyone. I hope everyone had a good Fourth of July. Today we're going to be covering graph search. Now, whenever we bring up graph algorithms, we Hi everyone. I hope everyone had a good Fourth of July. Today we're going to be covering graph search. Now, whenever we bring up graph algorithms, we have to talk about the way in which we represent the

More information

Welcome to this IBM podcast, Realizing More. Value from Your IMS Compiler Upgrade. I'm Kimberly Gist

Welcome to this IBM podcast, Realizing More. Value from Your IMS Compiler Upgrade. I'm Kimberly Gist IBM Podcast [ MUSIC ] Welcome to this IBM podcast, Realizing More Value from Your IMS Compiler Upgrade. I'm Kimberly Gist with IBM. System z compilers continue to deliver the latest programming interfaces

More information

MITOCW MIT6_172_F10_lec18_300k-mp4

MITOCW MIT6_172_F10_lec18_300k-mp4 MITOCW MIT6_172_F10_lec18_300k-mp4 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for

More information

Show notes for today's conversation are available at the podcast website.

Show notes for today's conversation are available at the podcast website. Title: Managing Security Vulnerabilities Based on What Matters Most Transcript Part 1: The Challenges in Defining a Security Vulnerability Julia Allen: Welcome to CERT's Podcast Series: Security for Business

More information

Blog post on updates yesterday and today:

Blog post on updates yesterday and today: Beta Bug Prioritization meeting IRC Transcript 12 November 2013 Meeting was held in IRC, on the #devmo channel. Meetings are weekly, every Tuesday at 17:00 UTC (10am PST) ok, everyone, we're ready to start

More information

How Do I Sync My Iphone To Another Computer Without Losing Everything

How Do I Sync My Iphone To Another Computer Without Losing Everything How Do I Sync My Iphone To Another Computer Without Losing Everything to transfer content from your current iphone, ipad, or ipod touch to another device. You should connect the device to itunes to sync

More information

Android Programming Family Fun Day using AppInventor

Android Programming Family Fun Day using AppInventor Android Programming Family Fun Day using AppInventor Table of Contents A step-by-step guide to making a simple app...2 Getting your app running on the emulator...9 Getting your app onto your phone or tablet...10

More information

Sample Online Survey Report: Complex Software Application

Sample Online Survey Report: Complex Software Application Sample Online Survey Report: Complex Software Application www.sage-research.com shannon@sage-research.com 720-221-7003 Example Overview In this research project, the goal was to survey current users of

More information

WebSphere Portal development teams on Web 2.0 technologies. Hear how IBM has

WebSphere Portal development teams on Web 2.0 technologies. Hear how IBM has What is Web 2.0? Series: Web 2.0 for Lotus, WebSphere Portal and You Listen to Pete Janzen from IBM Lotus interview various experts from the Lotus and WebSphere Portal development teams on Web 2.0 technologies.

More information

Skill 1: Multiplying Polynomials

Skill 1: Multiplying Polynomials CS103 Spring 2018 Mathematical Prerequisites Although CS103 is primarily a math class, this course does not require any higher math as a prerequisite. The most advanced level of mathematics you'll need

More information

MITOCW watch?v=kz7jjltq9r4

MITOCW watch?v=kz7jjltq9r4 MITOCW watch?v=kz7jjltq9r4 PROFESSOR: We're going to look at the most fundamental of all mathematical data types, namely sets, and let's begin with the definitions. So informally, a set is a collection

More information

AMP 007: The Mother s Day Marketing Playbook

AMP 007: The Mother s Day Marketing Playbook AMP 007: The Mother s Day Marketing Playbook Show Notes Learn how to resend an email to everyone that didn't open it (using MailChimp) in this post. More on combining Email and Facebook techniques in Episode

More information

MITOCW watch?v=flgjisf3l78

MITOCW watch?v=flgjisf3l78 MITOCW watch?v=flgjisf3l78 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational resources for free. To

More information

Java technology zone technical podcast series: Season 3 Adam Wiggins and Jesper Joergensen on Heroku Episode date:

Java technology zone technical podcast series: Season 3 Adam Wiggins and Jesper Joergensen on Heroku Episode date: Java technology zone technical podcast series: Season 3 Adam Wiggins and Jesper Joergensen on Heroku Episode date: 11-15-2011 GLOVER: I'm Andy Glover, and this is the Java Technical Series of the developerworks

More information

What Does Manually Manage Music And Videos Mean In Itunes

What Does Manually Manage Music And Videos Mean In Itunes What Does Manually Manage Music And Videos Mean In Itunes Select the Device button near the top-left corner of itunes. Check the Manually manage music and videos box under "Options" (in the "Summary" screen).

More information

MITOCW ocw f99-lec12_300k

MITOCW ocw f99-lec12_300k MITOCW ocw-18.06-f99-lec12_300k This is lecture twelve. OK. We've reached twelve lectures. And this one is more than the others about applications of linear algebra. And I'll confess. When I'm giving you

More information

What's the Slope of a Line?

What's the Slope of a Line? What's the Slope of a Line? These lines look pretty different, don't they? Lines are used to keep track of lots of info -- like how much money a company makes. Just off the top of your head, which of the

More information

Orchestrating the Continuous Delivery Process

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

More information

BEGINNER PHP Table of Contents

BEGINNER PHP Table of Contents Table of Contents 4 5 6 7 8 9 0 Introduction Getting Setup Your first PHP webpage Working with text Talking to the user Comparison & If statements If & Else Cleaning up the game Remembering values Finishing

More information

Azon Master Class. By Ryan Stevenson Guidebook #5 WordPress Usage

Azon Master Class. By Ryan Stevenson   Guidebook #5 WordPress Usage Azon Master Class By Ryan Stevenson https://ryanstevensonplugins.com/ Guidebook #5 WordPress Usage Table of Contents 1. Widget Setup & Usage 2. WordPress Menu System 3. Categories, Posts & Tags 4. WordPress

More information

Hello World! Computer Programming for Kids and Other Beginners. Chapter 1. by Warren Sande and Carter Sande. Copyright 2009 Manning Publications

Hello World! Computer Programming for Kids and Other Beginners. Chapter 1. by Warren Sande and Carter Sande. Copyright 2009 Manning Publications Hello World! Computer Programming for Kids and Other Beginners by Warren Sande and Carter Sande Chapter 1 Copyright 2009 Manning Publications brief contents Preface xiii Acknowledgments xix About this

More information

Out for Shopping-Understanding Linear Data Structures English

Out for Shopping-Understanding Linear Data Structures English Out for Shopping-Understanding Linear Data Structures English [MUSIC PLAYING] [MUSIC PLAYING] TANZEELA ALI: Hi, it's Tanzeela Ali. I'm a software engineer, and also a teacher at Superior University, which

More information

PROFESSOR: Well, now that we've given you some power to make independent local state and to model objects,

PROFESSOR: Well, now that we've given you some power to make independent local state and to model objects, MITOCW Lecture 5B PROFESSOR: Well, now that we've given you some power to make independent local state and to model objects, I thought we'd do a bit of programming of a very complicated kind, just to illustrate

More information

Doing great and thanks so much for having me today, John.

Doing great and thanks so much for having me today, John. John McIntyre Hey, it's John McIntyre here, the auto responder guy, and it's time for episode 103, of the Mic-method marketing podcast. We'll discover how to get more customers with less effort by using

More information

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Slide 1: Cover Welcome to lesson 3 of the db2 on Campus lecture series. Today we're going to talk about tools and scripting, and this is part 1 of 2

More information

Establishing Trust in Disconnected Environments, page 1

Establishing Trust in Disconnected Environments, page 1 Establishing Trust in Disconnected Environments featuring Grace Lewis as Interviewed by Suzanne Miller ---------------------------------------------------------------------------------------------Suzanne

More information

MITOCW watch?v=rvrkt-jxvko

MITOCW watch?v=rvrkt-jxvko MITOCW watch?v=rvrkt-jxvko The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

Instructor: Craig Duckett. Lecture 04: Thursday, April 5, Relationships

Instructor: Craig Duckett. Lecture 04: Thursday, April 5, Relationships Instructor: Craig Duckett Lecture 04: Thursday, April 5, 2018 Relationships 1 Assignment 1 is due NEXT LECTURE 5, Tuesday, April 10 th in StudentTracker by MIDNIGHT MID-TERM EXAM is LECTURE 10, Tuesday,

More information

Instructor: Craig Duckett. Lecture 03: Tuesday, April 3, 2018 SQL Sorting, Aggregates and Joining Tables

Instructor: Craig Duckett. Lecture 03: Tuesday, April 3, 2018 SQL Sorting, Aggregates and Joining Tables Instructor: Craig Duckett Lecture 03: Tuesday, April 3, 2018 SQL Sorting, Aggregates and Joining Tables 1 Assignment 1 is due LECTURE 5, Tuesday, April 10 th, 2018 in StudentTracker by MIDNIGHT MID-TERM

More information

Continuous Delivery for Cloud Native Applications

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

More information

Slide 1 CS 170 Java Programming 1 Testing Karel

Slide 1 CS 170 Java Programming 1 Testing Karel CS 170 Java Programming 1 Testing Karel Introducing Unit Tests to Karel's World Slide 1 CS 170 Java Programming 1 Testing Karel Hi Everybody. This is the CS 170, Java Programming 1 lecture, Testing Karel.

More information

Text transcript of show #280. August 18, Microsoft Research: Trinity is a Graph Database and a Distributed Parallel Platform for Graph Data

Text transcript of show #280. August 18, Microsoft Research: Trinity is a Graph Database and a Distributed Parallel Platform for Graph Data Hanselminutes is a weekly audio talk show with noted web developer and technologist Scott Hanselman and hosted by Carl Franklin. Scott discusses utilities and tools, gives practical how-to advice, and

More information

Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi.

Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi. Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi Lecture 18 Tries Today we are going to be talking about another data

More information

Git Source Control: For the Rest of Us. Nolan Erck

Git Source Control: For the Rest of Us. Nolan Erck Git Source Control: For the Rest of Us Nolan Erck About Me Consultant (southofshasta.com) Software Development, Training, Design Tools I use: ColdFusion, C++, Java, jquery, PHP,.NET, HTML5, Android, SQL,

More information

The following content is provided under a Creative Commons license. Your support

The following content is provided under a Creative Commons license. Your support MITOCW Lecture 8 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To make a donation

More information

"Missing log" in edit viewer, all media gone Posted by prodeuser - 17 Aug :14

Missing log in edit viewer, all media gone Posted by prodeuser - 17 Aug :14 "Missing log" in edit viewer, all media gone Posted by prodeuser - 17 Aug 2013 06:14 So, this has happened a couple of times now. I am a new Lightworks user and have been doing some testing. As I increase

More information

How To Create Backlinks

How To Create Backlinks How To Create Backlinks 1 Page Contents Who Is This Book For?... 3 A Trip In The Way-Back Machine... 4 A Little Refresher... 4 How To Build Backlinks... 6 Build Backlinks With Guest Posts... 7 Build Backlinks

More information

Linked Lists. What is a Linked List?

Linked Lists. What is a Linked List? Linked Lists Along with arrays, linked lists form the basis for pretty much every other data stucture out there. This makes learning and understand linked lists very important. They are also usually the

More information

MITOCW watch?v=r6-lqbquci0

MITOCW watch?v=r6-lqbquci0 MITOCW watch?v=r6-lqbquci0 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

Specialized Google Commands

Specialized Google Commands Transcript for page 1, Welcome Welcome to the module that is dedicated to all things Google. Many of the other search modules that we've covered include search techniques and commands that work across

More information

Export as DivX, Xvid, x264, MP4 Posted by DJKnuddel - 28 May :09

Export as DivX, Xvid, x264, MP4 Posted by DJKnuddel - 28 May :09 Export as DivX, Xvid, x264, MP4 Posted by DJKnuddel - 28 May 2011 17:09 Hi, first of all, thank you for this wonderful programme here. I am new in Video Editing and the far best piece of software out there

More information

CLOUD COMPUTING ARTICLE. Submitted by: M. Rehan Asghar BSSE Faizan Ali Khan BSSE Ahmed Sharafat BSSE

CLOUD COMPUTING ARTICLE. Submitted by: M. Rehan Asghar BSSE Faizan Ali Khan BSSE Ahmed Sharafat BSSE CLOUD COMPUTING ARTICLE Submitted by: M. Rehan Asghar BSSE 715126 Faizan Ali Khan BSSE 715125 Ahmed Sharafat BSSE 715109 Murawat Hussain BSSE 715129 M. Haris BSSE 715123 Submitted to: Sir Iftikhar Shah

More information

TCP/IP Clearly Explained, Fourth Edition (The Morgan Kaufmann Series In Networking) Ebooks Free

TCP/IP Clearly Explained, Fourth Edition (The Morgan Kaufmann Series In Networking) Ebooks Free TCP/IP Clearly Explained, Fourth Edition (The Morgan Kaufmann Series In Networking) Ebooks Free With over 30,000 copies sold in previous editions, this fourth edition of TCP/IP Clearly Explained stands

More information

Better late than never

Better late than never Better late than never Integrating Selenium after the fact R. Tyler Croy tyler@linux.com Hello and thanks for coming. I'm R. Tyler Croy and I'm going to talk a bit this evening about the integrating Selenium

More information

Seven Habits of Highly Effective Jenkins Users. Andrew Bayer Cloudera OSCON Java 2011

Seven Habits of Highly Effective Jenkins Users. Andrew Bayer Cloudera OSCON Java 2011 Seven Habits of Highly Effective Jenkins Users Andrew Bayer Cloudera OSCON Java 2011 Introduction Who am I? I'm a build guy, with a focus on Java builds. I've been using and working on Jenkins since early

More information

Everything you need to know about cloud. For companies with people in them

Everything you need to know about cloud. For companies with people in them Everything you need to know about cloud For companies with people in them You used to know where you stood with the word cloud. It meant those fluffy things floating above you, bringing shade and rain,

More information

4. Write sets of directions for how to check for direct variation. How to check for direct variation by analyzing the graph :

4. Write sets of directions for how to check for direct variation. How to check for direct variation by analyzing the graph : Name Direct Variations There are many relationships that two variables can have. One of these relationships is called a direct variation. Use the description and example of direct variation to help you

More information

Arduino IDE Friday, 26 October 2018

Arduino IDE Friday, 26 October 2018 Arduino IDE Friday, 26 October 2018 12:38 PM Looking Under The Hood Of The Arduino IDE FIND THE ARDUINO IDE DOWNLOAD First, jump on the internet with your favorite browser, and navigate to www.arduino.cc.

More information

PYTHON PROGRAMMING FOR BEGINNERS: AN INTRODUCTION TO THE PYTHON COMPUTER LANGUAGE AND COMPUTER PROGRAMMING BY JASON CANNON

PYTHON PROGRAMMING FOR BEGINNERS: AN INTRODUCTION TO THE PYTHON COMPUTER LANGUAGE AND COMPUTER PROGRAMMING BY JASON CANNON PYTHON PROGRAMMING FOR BEGINNERS: AN INTRODUCTION TO THE PYTHON COMPUTER LANGUAGE AND COMPUTER PROGRAMMING BY JASON CANNON DOWNLOAD EBOOK : PYTHON PROGRAMMING FOR BEGINNERS: AN AND COMPUTER PROGRAMMING

More information

MITOCW watch?v=yarwp7tntl4

MITOCW watch?v=yarwp7tntl4 MITOCW watch?v=yarwp7tntl4 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality, educational resources for free.

More information

Be smart. Think open source.

Be smart. Think open source. Foreman Basics Be smart. Think open source. Foreman - Basics Lifecycle management of physical and virtual machines made easy! Agenda Introduction to Foreman Architecture Setup Provisioning Configuration

More information

Windows 7 Will Not Install On My Computer Says I'm

Windows 7 Will Not Install On My Computer Says I'm Windows 7 Will Not Install On My Computer Says I'm I am able to uninstall, but even windows update, a secondary problem, wont update. So, as I have a life, I'm going to install Ubuntumuch more more secure

More information

Autodesk University Automotive component lightweight design by advanced material and Moldflow Insight, Helius and Abaqus Co-Simulation

Autodesk University Automotive component lightweight design by advanced material and Moldflow Insight, Helius and Abaqus Co-Simulation Autodesk University Automotive component lightweight design by advanced material and Moldflow Insight, Helius and Abaqus Co-Simulation Hey. Hello, everyone. I'm Jian Zhang from Guangzhou Automotive. Thanks,

More information

How To Reset Locked Ipod Touch To Factory Settings Without Computer

How To Reset Locked Ipod Touch To Factory Settings Without Computer How To Reset Locked Ipod Touch To Factory Settings Without Computer Most settings, The date and time unless your ipod lost power and reset when Don't reset your ipod if you plugged it into your computer

More information

Flatpak and your distribution. Simon McVittie

Flatpak and your distribution. Simon McVittie Flatpak and your distribution Simon McVittie smcv@{collabora.com,debian.org} 2018-02-04 Introduction to Flatpak tl;dr edition A sandboxed app framework for desktop Linux GUI, desktop apps, as in /usr/share/applications,

More information

Getting Started. Excerpted from Hello World! Computer Programming for Kids and Other Beginners

Getting Started. Excerpted from Hello World! Computer Programming for Kids and Other Beginners Getting Started Excerpted from Hello World! Computer Programming for Kids and Other Beginners EARLY ACCESS EDITION Warren D. Sande and Carter Sande MEAP Release: May 2008 Softbound print: November 2008

More information

ICANN Start, Episode 1: Redirection and Wildcarding. Welcome to ICANN Start. This is the show about one issue, five questions:

ICANN Start, Episode 1: Redirection and Wildcarding. Welcome to ICANN Start. This is the show about one issue, five questions: Recorded in October, 2009 [Music Intro] ICANN Start, Episode 1: Redirection and Wildcarding Welcome to ICANN Start. This is the show about one issue, five questions: What is it? Why does it matter? Who

More information

We are assuming you have node installed!

We are assuming you have node installed! Node.js Hosting We are assuming you have node installed! This lesson assumes you've installed and are a bit familiar with JavaScript and node.js. If you do not have node, you can download and install it

More information

The Benefits of SMS as a Marketing and Communications Channel From The Chat Bubble written by Michael

The Benefits of SMS as a Marketing and Communications Channel From The Chat Bubble written by Michael The Benefits of SMS as a Marketing and Communications Channel 1 Why companies and organizations should do SMS. We re going to talk through from an organization or marketers point of view, what SMS is good

More information

Digital Workflow 10 Tech Rules to Guide You

Digital Workflow 10 Tech Rules to Guide You Last updated: 10/11/10 Digital Workflow 10 Tech Rules to Guide You Introduction Whether your goal is to become paperless, or just to get more out of the technology you use, you need to (1) find the easy

More information

My Favorite bash Tips and Tricks

My Favorite bash Tips and Tricks 1 of 6 6/18/2006 7:44 PM My Favorite bash Tips and Tricks Prentice Bisbal Abstract Save a lot of typing with these handy bash features you won't find in an old-fashioned UNIX shell. bash, or the Bourne

More information

Ruby in the Sky with Diamonds. August, 2014 Sao Paulo, Brazil

Ruby in the Sky with Diamonds. August, 2014 Sao Paulo, Brazil Ruby in the Sky with Diamonds August, 2014 Sao Paulo, Brazil JELASTIC PLATFORM AS INFRASTRUCTURE Jelastic provides enterprise cloud software that redefines the economics of cloud deployment and management.

More information

! Emacs Howto Tutorial!

! Emacs Howto Tutorial! Emacs Howto Tutorial According to a description at GNU.org, Emacs is the extensible, customizable, selfdocumenting real-time display editor. It offers true LISP -- smoothly integrated into the editor --

More information