Skip to content

Instantly share code, notes, and snippets.

View jamesdehart's full-sized avatar
💭
Excited! Here we go!

James DeHart jamesdehart

💭
Excited! Here we go!
  • United States
View GitHub Profile
@jamesdehart
jamesdehart / kitchen.yml
Last active May 6, 2019 21:18
Kitchen template
---
driver:
# Global AWS Settings
# Configuring the compute instance that is used for isolated testing.
name: ec2
# The shared_credentials_profile points to the specific profile.
shared_credentials_profile: changeme_
# Configuring the compute instance provided by the driver.
provisioner:

Keybase proof

I hereby claim:

  • I am jamesdehart on github.
  • I am jamesdehart (https://keybase.io/jamesdehart) on keybase.
  • I have a public key ASDDuF9qAjIDLsEfnxaWPBlt6I9Vccer1NRQR59TqDR6xgo

To claim this, I am signing this object:

@jamesdehart
jamesdehart / data_types.md
Created August 28, 2017 17:45
python data types

Data Types

List

List: is ordered in the order its placed in. It's values can be changed.

grades = [77, 80, 90, 95, 100]