This is just a joke from my team put into code. We were talking about go Go encoding/gob
and someone brought up a "Kopfnuss" (clout). From that the word "GobNuss" derived and I said I will put this together. The result is below.
Send a GobNuss:
@-moz-document domain("workflowy.com") { | |
@import 'https://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans+Mono'; | |
@font-face { | |
font-family: 'FontAwesome'; | |
font-style: normal; | |
font-weight: 400; | |
src: local('FontAwesome'), url(//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/fonts/fontawesome-webfont.woff) format('woff'); | |
} | |
#controlsLeft { |
FROM debian:jessie | |
ENV RUBY_VERSION 1.8.7-p374 | |
ENV PATH /usr/local/rvm/gems/ruby-${RUBY_VERSION}/bin:/usr/local/rvm/gems/ruby-${RUBY_VERSION}@global/bin:/usr/local/rvm/rubies/ruby-${RUBY_VERSION}/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/rvm/bin | |
RUN set -ex \ | |
&& apt-get update && apt-get install -y curl \ | |
&& gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 \ | |
&& curl -sSL https://get.rvm.io | bash -s stable --ruby=${RUBY_VERSION} |
File | Purpose |
---|---|
/etc/compose/docker-compose.yml |
Compose file describing what to deploy |
/etc/systemd/system/docker-compose-reload.service |
Executing unit to trigger reload on docker-compose.service |
/etc/systemd/system/docker-compose-reload.timer |
Timer unit to plan the reloads |
/etc/systemd/system/docker-compose.service |
Service unit to start and manage docker compose |
handler.so | |
handler.zip | |
deploy.out.yml |
When migrating from an existing infrastructure to an infrastructure managed by Terraform it's possible to import the present configuration. The only thing the importer does not do: It does not write the configuration for you.
This script is intended to access a DNSimple account through the APIv2 and fetch all resource records for all domains in that account. The records are written into a Terraform configuration file using one file per domain.
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# Installation: Insert this line into your .qmail-* file | |
# | spamc | /path/to/check_mail_v6.py | |
from datetime import datetime | |
import re | |
import sys |