curl -Lo concourse https://github.com/concourse/concourse/releases/download/v2.5.0/concourse_darwin_amd64 && chmod +x concourse && mv concourse /usr/local/bin
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
| (ns simple-compojure.core | |
| (require | |
| [ring.adapter.jetty :refer [run-jetty]] | |
| [ring.middleware.params :as p] | |
| [simple-compojure.middleware :as m] | |
| [simple-compojure.routes :as r] | |
| )) | |
| (def app | |
| (-> r/routes |
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
| #place the file in your ansible playbook director under filter_plugins | |
| #/home/user/my_playbook.yml | |
| #/home/user/filter_plugins/my_filters.py | |
| #!/usr/bin/python | |
| class FilterModule(object): | |
| def filters(self): | |
| return { | |
| 'a_filter': self.a_filter, | |
| 'another_filter': self.b_filter |
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
| // @flow | |
| import React, { Component } from 'react'; | |
| import { | |
| AppRegistry, | |
| Button, | |
| StyleSheet, | |
| Text, | |
| View | |
| } from 'react-native'; | |
| import { |
OlderNewer