Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
CloudFlare is an awesome reverse cache proxy and CDN that provides DNS, free HTTPS (TLS) support, best-in-class performance settings (gzip, SDCH, HTTP/2, sane Cache-Control
and E-Tag
headers, etc.), minification, etc.
# Fail2Ban configuration file | |
# | |
# Author: Russell Odom <[email protected]> | |
# Adapted for sendmail by: Mike A. Leonetti | |
# Sends a complaint e-mail to addresses listed in the whois record for an | |
# offending IP address. | |
# | |
# You should provide the <logpath> in the jail config - lines from the log | |
# matching the given IP address will be provided in the complaint as evidence. | |
# |
language: ruby | |
rvm: | |
- 2.0.0 | |
env: | |
global: | |
- USER="username" | |
- EMAIL="[email protected]" | |
- REPO="name of target repo" | |
- FILES="README.md foo.txt bar.txt" | |
- GH_REPO="github.com/${USER}/${REPO}.git" |
import Foundation | |
// Ideally Node should be a struct. | |
// However Swift doesn't allow recursive value types at the moment. | |
class Node { | |
var left, right: Node? | |
var value: String | |
init(value: String = "") { |
{% assign work_items = site.work_items | sort: 'date' | reverse %} | |
{% for work_item in work_items limit:4 %} | |
<div> | |
<a href="{{ work_item.url | prepend: site.baseurl }}">{{ work_item.title }}</a> | |
</div> | |
{% endfor %} |
# Ruby is our language as asciidoctor is a ruby gem. | |
lang: ruby | |
before_install: | |
- sudo apt-get install pandoc | |
- gem install asciidoctor | |
script: | |
- make | |
after_success: | |
- .travis/push.sh | |
env: |