Skip to content

Instantly share code, notes, and snippets.

View capoferro's full-sized avatar

Josiah Kiehl capoferro

View GitHub Profile
javascript:(function() { if (window.location.host != "www.wowhead.com" && window.location.host != "wowhead.com") { alert("This is a bookmarklet that works on wowhead.com. Drag this link to your bookmarks bar. Navigate to an item's wowhead page and click the bookmarklet on your bar. This will automatically add the item to your list."); return false; } var bookmarklet_data = {"PlayerName":"Krahl","BaseUrl":"http://loot.reforged.net"}; var player = encodeURIComponent(bookmarklet_data.PlayerName); var url = encodeURIComponent(window.location.href); var dropped_by_element = $(".whtt-droppedby"); var dropped_by_string = ""; if (dropped_by_element.length == 0) { var dropped_by_element = $("#tab-dropped-by tbody.clickable a:first"); if (dropped_by_element.length == 0) { var dropped_by_element = $("#tab-contained-in-object tbody.clickable a:first"); } dropped_by_string = dropped_by_element.html() } else { dropped_by_string = dropped_by_element.html().replace("Dropped
class Chef
class Runner
def converge
Chef::Log.info("Skipping converge. This node is disabled.")
end
end
end
# http://docs.docker.com/reference/builder/
# FROM - what is the base image for this Dockerfile?
FROM ubuntu
# MAINTAINER - who owns this Dockerfile?
MAINTAINER Josiah Kiehl
# Install Ruby
RUN apt-get install build-essential ruby ruby-dev -y
$ go run scratch.go
# command-line-arguments
In file included from ./scratch.go:5:
/usr/local/include/librsync.h:367:21: error: unknown type name 'FILE'
void rs_mdfour_file(FILE *in_file, char *result);
^
/usr/local/include/librsync.h:369:23: error: unknown type name 'FILE'
rs_result rs_sig_file(FILE *old_file, FILE *sig_file,
^
/usr/local/include/librsync.h:369:39: error: unknown type name 'FILE'
Test failures in: ./daemon/graphdriver/devmapper
2014/07/28 14:11:56 Error response from daemon: Cannot destroy container 8dfda30d837bea7c2c35e838a24adcaacc4fbcc944f945510fdf89beed88016d: Driver aufs failed to remove root filesystem 8dfda30d837bea7c2c35e838a24adcaacc4fbcc944f945510fdf89beed88016d: rename /mnt/sda1/var/lib/docker/aufs/diff/8dfda30d837bea7c2c35e838a24adcaacc4fbcc944f945510fdf89beed88016d /mnt/sda1/var/lib/docker/aufs/diff/8dfda30d837bea7c2c35e838a24adcaacc4fbcc944f945510fdf89beed88016d-removing: device or resource busy
# BusyBox
# ldd scout
checking sub-depends for '/lib64/libpthread.so.0'
ld64-uClibc.so.0 => /lib/ld64-uClibc.so.0 (0x7f368b2a6000)
libdl.so.0 => /lib/libdl.so.0 (0x7f368b0a2000)
libc.so.0 => /lib/libc.so.0 (0x7f368ae4a000)
checking sub-depends for 'not found'
libpthread.so.0 => /lib64/libpthread.so.0 (0x00000000)
libc.so.6 => not found (0x00000000)
/lib/ld64-uClibc.so.0 => /lib/ld64-uClibc.so.0 (0x00000000)
fmt_targetfile:=.gofmt
build: check_format
check_format: $(fmt_targetfile)
@if [[ `cat $(fmt_targetfile)` != "" ]]; then \
echo "These need to be formatted:\n\t$(shell cat $(fmt_targetfile))"; \
else \
echo 'Good to go!'; \
fi
fmt_targetfile:=.gofmt
build: check_format
check_format: $(fmt_targetfile)
@if [[ `cat $(fmt_targetfile)` != "" ]]; then \
echo "These need to be formatted:\n\t$(shell cat $(fmt_targetfile))"; \
exit 1; \
else \
echo 'Good to go!'; \
git_color() {
color=$White
git tag 2> /dev/null > /dev/null && color=IRed
git diff --exit-code 2> /dev/null > /dev/null && color=IGreen
[[ "$(git_added_count)" != "0" ]] && color=IYellow
git_untracked || color=U$color
echo ${!color}
}
Step 0 : Dockerfile0000644000175000001550000000020712375205124012540 0ustar jenkinsdockerFROM busybox:ubuntu-14.04
# Skipping unknown instruction DOCKERFILE0000644000175000001550000000020712375205124012540