I hereby claim:
- I am ericsmalling on github.
- I am esmalling (https://keybase.io/esmalling) on keybase.
- I have a public key ASDOlnon9xZo99ocLFOyoG0LQTiaRJ_-ggEcsHYlImD3-Ao
To claim this, I am signing this object:
Vagrantfile: | |
... | |
config.vm.provision "puppet" do |puppet| | |
puppet.module_path = "modules" | |
puppet.facter = { | |
'vpnUsername' => VPN_USERNAME, | |
'vpnPassword' => VPN_PASSWORD | |
} | |
puppet.options = "--verbose --debug" | |
end |
I hereby claim:
To claim this, I am signing this object:
# Config I use for Tie Fighter Collectors' CD-ROM on OS X w/ XBox One controller via bluetooth (with ISO of CD in path configed below) | |
# This is the configuration file for DOSBox 0.74-3-3. (Please use the latest version of DOSBox) | |
# Lines starting with a # are comment lines and are ignored by DOSBox. | |
# They are used to (briefly) document the effect of each option. | |
[sdl] | |
# fullscreen: Start dosbox directly in fullscreen. (Press ALT-Enter to go back) | |
# fulldouble: Use double buffering in fullscreen. It can reduce screen flickering, but it can also result in a slow DOSBox. | |
# fullresolution: What resolution to use for fullscreen: original, desktop or fixed size (e.g. 1024x768). |
snyk container test cgr.dev/chainguard/nginx --print-deps --platform=amd64 --app-vulns | |
docker-image|cgr.dev/chainguard/nginx @ latest | |
├─ alpine-baselayout/alpine-baselayout-data @ 3.3.0-r2 | |
├─ aom/aom-libs @ 3.5.0-r0 | |
├─ brotli/brotli-libs @ 1.0.9-r8 | |
├─ busybox/busybox @ 1.35.0-r27 | |
├─ busybox/busybox-binsh @ 1.35.0-r27 | |
│ └─ busybox/busybox @ 1.35.0-r27 | |
├─ bzip2/libbz2 @ 1.0.8-r3 | |
├─ dav1d/libdav1d @ 1.0.0-r1 |
#!/bin/bash | |
# Set the IFS variable to a newline character | |
IFS=$'\n' | |
# Get the list of docker images | |
images=$(docker images -a) | |
# Loop through the list of images | |
for image in $images; do |
#!/usr/bin/env python3 | |
# For a given image URL, platform and search string, fid any layers that add, remove or change a file with a name that matches the search string | |
import sys | |
import os | |
import subprocess | |
import json | |
import re | |
import datetime |