Skip to content

Instantly share code, notes, and snippets.

Kong Engineering Enablement Applicant Take Home

Howdy! This is for applicants to the Engineering Enablement Team at Kong. This is a short code exercise to show you some of the code we work with, and let us see how you approach modifying it.

Some of this work requires authenticating into DockerHub and the RedHat Container Registry. As we are not sharing credentials with you, you are not expected to verify those parts of the code.

Please limit yourself to an hour and a half of time on this exercise. While we want to see code you have written, we don't need it to be fully functional, much less "production ready".

Codebases

Please fork these repositories to work with:

  • kong - The Kong Gateway

Keybase proof

I hereby claim:

  • I am justinredd on github.
  • I am justinredd (https://keybase.io/justinredd) on keybase.
  • I have a public key ASD0JLAdz6NbpzE-kkAE0qY3u7ipcYQV-rlvNduETcpxEQo

To claim this, I am signing this object:

@justinredd
justinredd / lean_coffee.md
Last active September 9, 2016 18:25
Lean Coffee

Lean Coffee

  • 60 - 90 minutes
  • 5 - 11 people

Materials

  • Table + chairs
  • PostIts and Pens
  • Timer
@justinredd
justinredd / rvm_install
Last active December 22, 2015 12:19
rvm install for mac
# Install rvm
\curl -L https://get.rvm.io | bash -s stable
rvm reload
# Doublecheck that rvm is sourced
grep 'source $HOME/.rvm/scripts/rvm' ~/.bash_profile
# If it's missing, edit your .bash_profile to add the string above
# Re-source your profile
. ~/.bash_profile
# Install a ruby
rvm install 1.9.3