I hereby claim:
- I am TimWolla on github.
- I am timwolla (https://keybase.io/timwolla) on keybase.
- I have a public key whose fingerprint is AC3A A959 6922 4239 3052 C7F5 578E 867D D9B4 8C78
To claim this, I am signing this object:
| FROM php:8.3-cli-alpine AS php-alpine | |
| RUN set -exu; \ | |
| apk add --no-cache --virtual .phpize-deps $PHPIZE_DEPS; \ | |
| apk add --no-cache libzip; \ | |
| apk add --no-cache --virtual .zip-deps libzip-dev; \ | |
| docker-php-ext-install zip; \ | |
| apk del --no-network .zip-deps; \ | |
| curl -L --output /usr/bin/pie https://github.com/php/pie/releases/download/0.1.0/pie.phar; \ | |
| chmod +x /usr/bin/pie; \ |
| yes: Invalid return value: callable object expected, "%s" returned from "%s". | |
| yes: Doctrine %s Connection named "%s" does not exist. | |
| yes: Doctrine %s Manager named "%s" does not exist. | |
| yes: Doctrine %s Manager named "%s" does not exist. | |
| yes: Using short namespace alias "%s" when calling %s | |
| yes: Invalid $connection argument of type %s given%s. | |
| yes: Using short namespace alias "%s" by calling %s | |
| yes: The attribute metadata driver cannot be enabled on PHP 7. Please upgrade to PHP 8 or choose a different metadata driver. | |
| yes: The attribute "%s" is repeatable. Call getPropertyAttributeCollection() instead. | |
| yes: The attribute "%s" is not repeatable. Call getPropertyAttribute() instead. |
| font-size: 5em; |
| #include <netinet/in.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <sys/socket.h> | |
| #include <sys/un.h> | |
| #include <unistd.h> | |
| #define handle_error(msg) \ | |
| do { \ |
| global | |
| log stdout format raw local0 | |
| defaults | |
| log global | |
| resolvers my_resolvers | |
| nameserver google 8.8.8.8:53 | |
| nameserver cloudflare 1.1.1.1:53 |
| frontend http | |
| mode http | |
| bind :::80 v4v6 | |
| http-request lua.auth-request auth_request /is-allowed | |
| http-request deny if ! { var(txn.auth_response_successful) -m bool } | |
| backend auth_request | |
| mode http | |
| server auth_request 127.0.0.1:8080 |
| FROM python:2 | |
| RUN apt-get update \ | |
| && apt-get install -y gcc \ | |
| && pip install numpy pillow \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN mkdir -p /usr/local/src/overviewer/ \ | |
| && curl -fsSL https://github.com/overviewer/Minecraft-Overviewer/archive/39d588ae45d5e66f92e2c7b8923e5269e601f3b5.tar.gz -o overviewer.tar.gz \ | |
| && tar xvf overviewer.tar.gz --strip-components=1 -C /usr/local/src/overviewer/ \ |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| echo "$@" > /log/out | |
| cat >> /log/out |
| function lets-encrypt | |
| set -l __le_args (count $argv) | |
| for index in (seq $__le_args) | |
| set argv[$index] '-d '$argv[$index] | |
| end | |
| docker run -it --rm --name letsencrypt -v "/etc/letsencrypt:/etc/letsencrypt" -v "/var/lib/letsencrypt:/var/lib/letsencrypt" -v "/var/log/letsencrypt:/var/log/letsencrypt" -v "/etc/nginx/lets-encrypt:/etc/nginx/lets-encrypt" quay.io/letsencrypt/letsencrypt:latest auth $argv | |
| end |