I wrote this four years ago, so instead use this command:
$ docker rmi $(docker images -q -f dangling=true)
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
# Box. | |
config.vm.box = "trusty64" | |
config.vm.network :private_network, ip: "192.168.33.100" |
<?php | |
use Aws\S3\S3Client; | |
use League\Flysystem\Filesystem; | |
use League\Flysystem\Adapter\AwsS3 as Adapter; | |
$client = S3Client::factory(array( | |
'key' => '[your key]', | |
'secret' => '[your secret]', | |
'region' => '[aws-region]' | |
)); |
// Smooth scrolling anchor links | |
function ea_scroll( hash ) { | |
var target = $( hash ); | |
target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); | |
if (target.length) { | |
var top_offset = 0; | |
if ( $('.site-header').css('position') == 'fixed' ) { | |
top_offset = $('.site-header').height(); | |
} | |
if( $('body').hasClass('admin-bar') ) { |
// Run this from your browser console on your meetup event page (http://www.meetup.com/AngularJS-Utah/events/183104032/) | |
(function () { | |
// Query document for attendees and select a random one | |
const list = document.querySelector('ul.attendees-list').children, | |
item = list[Math.floor(Math.random() * list.length)], | |
name = item ? item.querySelector('h4.text--bold').innerText : 'N/A'; | |
// Remove item so they can only be selected once | |
item && item.parentNode.removeChild(item); | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Copyright (C) 2014 ADDY OSMANI <addyosmani.com> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION |
#!/bin/bash | |
# This script automatically installs a bunch of command line (Git, wget, | |
# imagemagick, ...) and GUI (Dropbox, Chrome, Skype, ...) apps on a fresh | |
# Mac. | |
# | |
# It also sets up a Python Scientific Computing environment (matplotlib, | |
# scipy, iPython Notebook, ...) | |
# | |
# Requirement: Have the XCode Command Line Tools installed (download from |