Skip to content

Instantly share code, notes, and snippets.

@sergioceron
sergioceron / gist:b963db975165a612db5fae9b15b1a583
Created December 8, 2016 00:49 — forked from pocketkk/gist:e449cc89d40ce9744590
Swift - Add subview with transition
UIView.transitionWithView(self.view, duration: 0.5, options: UIViewAnimationOptions.TransitionNone,
animations: {self.view.addSubview(effectView)}, completion: nil)
#!/bin/bash
#
# This script installs and configures couchdb on a fresh Amazon Linux AMI instance.
#
# Must be run with root privileges
# Tested with Amazon Linux AMI release 2011.02.1.1 (ami-8c1fece5)
#
export BUILD_DIR="$PWD"