Skip to content

Instantly share code, notes, and snippets.

View ispyinternet's full-sized avatar

Richard O'flynn ispyinternet

View GitHub Profile
@ispyinternet
ispyinternet / gist:eeb0ba08a7e5914efab5
Last active January 22, 2016 01:13
Cloud Config to boot rancher-agent on AWS RancherOS
#cloud-config
write_files:
- path: /etc/rc.local
permissions: "0755"
owner: root
content: |
#!/bin/bash
for i in {1..20}
do
docker info && break
@ispyinternet
ispyinternet / gist:2a985ee6590ddc2ef3ec
Last active August 29, 2015 14:04
extend app transitions
Y.mix(Y.Transition.fx, {
'app:slideUp': {
duration : .6,
transform: 'translateY(-100%)',
on: {
start: function () {
this.setStyles({
opacity : 1,
transform: 'translateY(0%)'