I hereby claim:
- I am rosstimson on github.
- I am rosstimson (https://keybase.io/rosstimson) on keybase.
- I have a public key ASD-XW_rG0Lu8LszbjLMXb_XBxHTEjuJHldI52u44hte3wo
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd > | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>local.remap-tilde</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/bin/hidutil</string> | |
<string>property</string> |
if command -v flatpak > /dev/null; then | |
# set XDG_DATA_DIRS to include Flatpak installations | |
new_dirs=$( | |
( | |
unset G_MESSAGES_DEBUG | |
echo "${XDG_DATA_HOME:-"$HOME/.local/share"}/flatpak" | |
flatpak --installations | |
) | ( | |
new_dirs= |
# Deployments | |
# -------------------------------------------------------------------- | |
--- | |
kind: Deployment | |
apiVersion: extensions/v1beta1 | |
metadata: | |
name: stilton | |
namespace: dev | |
labels: |
- repo: git://github.com/pre-commit/pre-commit-hooks | |
rev: v1.3.0 | |
hooks: | |
- id: check-yaml | |
- id: end-of-file-fixer | |
- id: trailing-whitespace | |
- id: check-case-conflict | |
- id: check-merge-conflict | |
- id: detect-aws-credentials | |
- id: detect-private-key |
[nelson] | |
cycleInterval = 60 | |
epochInterval = 300 | |
apiPort = 18600 | |
apiHostname = 127.0.0.1 | |
port = 16600 | |
IRIHostname = iri | |
IRIPort = 14265 | |
TCPPort = 15777 | |
UDPPort = 14777 |
import boto3 | |
import http.client | |
import json | |
import logging | |
import os | |
from base64 import b64decode | |
conn = http.client.HTTPSConnection("api.codeship.com") | |
payload = "{}" |
;;; Package Management | |
;; Always load newest byte code | |
(setq load-prefer-newer t) | |
(require 'package) | |
(setq package-enable-at-startup nil) | |
;; Standard package repositories | |
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/")) |
I hereby claim:
To claim this, I am signing this object:
# Dockerfile for ffmpeg with pretty much support for everything as per: | |
# https://trac.ffmpeg.org/wiki/CompilationGuide/Centos | |
# includes codecs with weird licensing like MP3 and AAC. | |
# | |
FROM fedora | |
MAINTAINER Ross Timson <[email protected]> | |
# Install build requirements. | |
RUN dnf install -y autoconf automake cmake freetype-devel gcc gcc-c++ git libtool make mercurial nasm pkgconfig zlib-devel |
#!/usr/bin/env bash | |
EC2_INSTANCE_ID="`wget -q -O - http://169.254.169.254/latest/meta-data/instance-id`" | |
EC2_REGION="`wget -q -O - http://169.254.169.254/latest/meta-data/placement/availability-zone | sed 's/.$//g'`" | |
if ! type "aws" > /dev/null; then | |
if ! type "pip" > /dev/null; then | |
easy_install pip | |
fi | |
pip install awscli |