I wrote this four years ago, so instead use this command:
$ docker rmi $(docker images -q -f dangling=true)
| class puppetlabs { | |
| # Install Puppet repository and call apt-get update | |
| case $operatingsystem { | |
| ubuntu: { | |
| $key = "4BD6EC30" | |
| exec { 'apt-key puppetlabs': | |
| path => "/bin:/usr/bin", | |
| unless => "apt-key list | grep '${key}' | grep -v expired", | |
| command => "apt-key adv --keyserver keyserver.ubuntu.com --recv-keys ${key}", | |
| } |
It's a common misconception that [William Shakespeare][1] and [Miguel de Cervantes][2] died on the same day in history - so much so that UNESCO named April 23 as [World Book Day because of this fact][3]. However because England hadn't yet adopted [Gregorian Calendar Reform][4] (and wouldn't until [1752][5]) their deaths are actually 10 days apart. Since Ruby's Time class implements a [proleptic Gregorian calendar][6] and has no concept of calendar reform then there's no way to express this. This is where DateTime steps in:
>> shakespeare = DateTime.iso8601('1616-04-23', Date::ENGLAND)
=> Tue, 23 Apr 1616 00:00:00 +0000
>> cervantes = DateTime.iso8601('1616-04-23', Date::ITALY)
=> Sat, 23 Apr 1616 00:00:00 +0000
| private static readonly string[] tenHoursOfFun = | |
| { | |
| "https://www.youtube.com/watch?v=wbby9coDRCk", | |
| "https://www.youtube.com/watch?v=nb2evY0kmpQ", | |
| "https://www.youtube.com/watch?v=eh7lp9umG2I", | |
| "https://www.youtube.com/watch?v=z9Uz1icjwrM", | |
| "https://www.youtube.com/watch?v=Sagg08DrO5U", | |
| "https://www.youtube.com/watch?v=5XmjJvJTyx0", | |
| "https://www.youtube.com/watch?v=IkdmOVejUlI", | |
| "https://www.youtube.com/watch?v=jScuYd3_xdQ", |
| LDAP_SRC = ../../.. | |
| LDAP_BUILD = $(LDAP_SRC) | |
| LDAP_INC = -I$(LDAP_BUILD)/include -I$(LDAP_SRC)/include -I$(LDAP_SRC)/servers/slapd | |
| LDAP_LIB = $(LDAP_BUILD)/libraries/libldap_r/libldap_r.la \ | |
| $(LDAP_BUILD)/libraries/liblber/liblber.la | |
| LIBTOOL = $(LDAP_BUILD)/libtool | |
| CC = gcc | |
| OPT = -O2 -Wall -Wno-discarded-qualifiers -Wno-format-extra-args -pedantic | |
| DEFS = |