I hereby claim:
- I am agowa on github.
- I am agowa338 (https://keybase.io/agowa338) on keybase.
- I have a public key ASCR_LqC93f1_6yHgdKDmXSTqYXw-xyATY7VV5w94lW6Swo
To claim this, I am signing this object:
4002 silly decomposeActions fetch [email protected] | |
4003 silly decomposeActions extract [email protected] | |
4004 silly decomposeActions preinstall [email protected] | |
4005 silly decomposeActions build [email protected] | |
4006 silly decomposeActions install [email protected] | |
4007 silly decomposeActions postinstall [email protected] | |
4008 silly decomposeActions finalize [email protected] | |
4009 silly decomposeActions refresh-package-json [email protected] | |
4010 silly decomposeActions fetch [email protected] | |
4011 silly decomposeActions extract [email protected] |
FROM archlinux:latest AS common_builder | |
RUN pacman -Syu --needed --noconfirm --noprogressbar | |
RUN pacman -S --needed --noconfirm --noprogressbar base base-devel sudo git | |
RUN useradd -s /bin/bash foo && mkdir /home/foo && chown foo:foo /home/foo | |
WORKDIR /home/foo | |
FROM common_builder AS nvm_builder | |
USER foo | |
RUN git clone https://aur.archlinux.org/nvm.git | |
RUN cd nvm && PKGDEST=/tmp /usr/sbin/makepkg |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: samba-dc | |
spec: | |
selector: | |
matchLabels: | |
run: samba-dc | |
replicas: 1 | |
template: |
#! /usr/bin/pwsh | |
$indexFileURL = "https://cdn.media.ccc.de/INDEX"; | |
$indexFileLines = [System.Net.WebClient]::new().DownloadString($indexURL) -split "`n"; | |
foreach($indexFileLine in $indexFileLines) { | |
$path = $indexFileLine -split "/"; | |
$indexFileLine | Write-Output; | |
(" dir=./" + ($path[0..($path.Length-1)] -join "/")) | Write-Output; | |
(" out=" + $path[-1]) | Write-Output; |
I hereby claim:
To claim this, I am signing this object:
Vagrant.configure('2') do |config| | |
config.vm.box_check_update = false | |
config.vm.box = "archlinux/archlinux" | |
config.vm.synced_folder './', '/vagrant', type: 'nfs' | |
#Configure NAT64 | |
config.vm.define "nat64" do |nat64| | |
nat64.vm.provider :libvirt do |v| | |
v.memory = 256 | |
v.cpus = 1 |
[Unit] | |
Description=Cleanup and update docker image. | |
After=network.target docker.service | |
Requires=network.target docker.service | |
[Service] | |
ExecStartPre=/usr/bin/docker container prune -f | |
ExecStartPre=/usr/bin/docker image prune -f | |
ExecStartPre=/usr/bin/docker volume prune -f | |
ExecStartPre=/usr/bin/docker network prune -f |
Hello {invoice_name}, | |
Your Payment for the event {event} is not sufficient, you have only payed $$_FILL_IN_MANUALLY_$$ instead of $$_FILL_IN_MANUALLY_$$. Please Transfer the missing amount within the next three days. If no payment is received, your order may be invalidated and any partial payment will be refunded. | |
You can change your order details and view the status of your order at | |
{url} | |
Best regards, | |
Your {event} team |
Add-Type -TypeDefinition @' | |
using System; | |
using System.Diagnostics; | |
using System.Runtime.InteropServices; | |
using System.Security.Principal; | |
using System.Management.Automation; | |
public static class LsassImpersonation | |
{ | |
[DllImport("advapi32.dll", SetLastError = true)] |
INFO global: Vagrant version: 2.1.2 | |
INFO global: Ruby version: 2.5.1 | |
INFO global: RubyGems version: 2.7.7 | |
INFO global: VAGRANT_LOG="info" | |
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/embedded" | |
INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/embedded/gems/gems/vagrant-2.1.2/bin/vagrant" | |
INFO global: VAGRANT_DETECTED_OS="archlinux" | |
INFO global: VAGRANT_INSTALLER_ENV="1" | |
INFO global: VAGRANT_INSTALLER_VERSION="2" | |
WARN global: resolv replacement has not been enabled! |