- Hiking (Mount Everest)
 - Painting (Street Art)
 - Chilling (With Obama)
 - Gettin' crunk on Whiskey
 
  
    
      This file contains hidden or 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
    
  
  
    
  | declare module 'faktory-worker' { | |
| export class Faktory { | |
| static connect(options?: object): any; | |
| static register(jobName: string, cb: Function): any; | |
| static work(options: object): any; | |
| } | |
| export class Client { | |
| constructor(options?: ClientOptions); | |
| public push(job: Job): Promise<string>; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | apiVersion: extensions/v1beta1 | |
| kind: Deployment | |
| metadata: | |
| name: faktory | |
| labels: | |
| run: faktory | |
| spec: | |
| template: | |
| metadata: | |
| labels: | 
  
    
      This file contains hidden or 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
    
  
  
    
  | # pipeline/coordinator.rb | |
| def initialize(args) | |
| # all other initialization happens as is | |
| @consumer = KafkaConsumer.for(RUBY_PLATFORM) | |
| end | |
| # pipeline/kafkaconsumer.rb | |
| class KafkaConsumer | |
| def self.for(platform) |