This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create an object of type 'BankAccount' with methods appropriate for this object | |
class BankAccount: | |
def __init__(self, initial_balance): | |
self.balance = initial_balance | |
self.fees = 0 | |
def deposit(self, amount): | |
self.balance += amount | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh root@<ip-address> | |
apt-get install -y git | |
git clone https://github.com/openstack-dev/devstack.git -b stable/grizzly devstack/ | |
cd devstack/ | |
curl -sO https://gist.github.com/everett-toews/6235684/raw/531ef32f7f55fdb5af56f01c4155e52416a18c51/localrc | |
nano localrc | |
./stack.sh | |
# Wait...time for Q&A |