I hereby claim:
- I am msgehard on github.
- I am mikegehard (https://keybase.io/mikegehard) on keybase.
- I have a public key whose fingerprint is RETU RN T HIS. PGP. GET_ FING ERPR INT( ); }
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
BOSH manifest | |
++++++++++++++++++ | |
jobs: | |
- name: harvey | |
plan: | |
- aggregate: | |
- get: harvey | |
- task: unit-tests | |
file: harvey/concourse/unit-tests.yml | |
* http://www.itworld.com/article/2917266/development/how-to-install-and-use-visual-studio-code-and-aspnet-5-on-mac-os-x.html | |
* https://github.com/aspnet/home - aspnet home | |
* https://code.visualstudio.com/Docs/setup - code editor |
enum class EducationLevel { | |
HIGH_SCHOOL, BACHELORS, MASTERS, PHD | |
} | |
data class Person(val age: Int, val smoker: Boolean, val income: Int, val education: EducationLevel) | |
val people = listOf( | |
Person(19, false, 10000, EducationLevel.HIGH_SCHOOL), | |
Person(49, true, 120000, EducationLevel.BACHELORS), | |
Person(55, false, 400000, EducationLevel.MASTERS), |
def apply(petRepository: PetRepository, contestResultRepository: ContestResultRepository, rules: Rules) | |
(pet1Id: UUID, pet2Id: UUID) | |
(implicit ec: ExecutionContext): Future[Either[String, UUID]] = { | |
val id = java.util.UUID.randomUUID | |
for { | |
pet1: Option[Pet] <- petRepository.find(pet1Id) | |
pet2: Option[Pet] <- petRepository.find(pet2Id) | |
// this is messy, try to change it to a more functional style at some point |
[ | |
{ | |
"openapi": "3.0.1", | |
"info": { | |
"title": "Animal Rescue (from Gist)", | |
"description": "Sample application for Spring Cloud Gateway commercial product demos.", | |
"version": "1.0.0-K8s-hack" | |
}, | |
"externalDocs": { | |
"url": "https://github.com/spring-cloud-services-samples/animal-rescue/" |