I hereby claim:
- I am nosada on github.
- I am nosada (https://keybase.io/nosada) on keybase.
- I have a public key whose fingerprint is 3CF8 1A90 3F5A 94F4 4EBF A537 DA63 5EC3 934B E02D
To claim this, I am signing this object:
| #!/bin/env python | |
| import sys | |
| import json | |
| def print_url_and_name_pair(info_list): | |
| for entry in info_list: | |
| if "url" in list(entry.keys()): | |
| print("%s %s" % (entry["url"], entry["name"])) | |
| else: |
| #!/bin/bash | |
| nspawn-execute() { | |
| pid=$(machinectl -a -l status $1 | grep Leader | awk '{print $2}'); | |
| echo "Execute on $1: nsenter -t $pid -m -i -n -p ${@:2}"; | |
| nsenter -t $pid -m -i -n -p "${@:2}"; | |
| } | |
| nspawn-execute-all() { | |
| for i in $(machinectl list | grep nspawn | awk '{print $1}'); |
I hereby claim:
To claim this, I am signing this object:
| diff --git a/PKGBUILD b/PKGBUILD | |
| index be1e67f..a58dcc7 100644 | |
| --- a/PKGBUILD | |
| +++ b/PKGBUILD | |
| @@ -1,6 +1,6 @@ | |
| # Maintainer: Takashi Inoue <inoue(at)pitan.org> | |
| pkgname=mackerel-agent-git | |
| -pkgver=0.39.3 | |
| +pkgver=0.45.0 | |
| pkgrel=1 |
(Forked from: https://gist.github.com/cahna/45bb9eee92c5f1fce66f)
When using ArchLinux, I typically prefer to use an AUR helper like pacaur or yaourt to automate away the process of installing a community package.
Ansible's pacman module is
great, but it doesn't support AUR packages or pacman's -U flag.
| #!/bin/sh | |
| CONTAINER_NAME="torspawn" | |
| CONFIG_DIR="/etc/systemd/nspawn" | |
| CONFIG_PREFIX="nspawn" | |
| CONFIG_LOCATION="$CONFIG_DIR/$CONTAINER_NAME.$CONFIG_PREFIX" | |
| INTERNAL="8118" | |
| EXPOSING="58118" |
| root@Anna /r/n/tinyspawn# mkosi build | |
| DISTRIBUTION: | |
| Distribution: arch | |
| Release: n/a | |
| Mirror: https://mirrors.kernel.org/archlinux | |
| OUTPUT: | |
| Output Format: raw_btrfs | |
| Output: /ramdisk/nosada/tinyspawn/test | |
| Output Checksum: n/a |
| diff --git a/fish/trunk/PKGBUILD b/fish/trunk/PKGBUILD | |
| index 4b16fd36fdd..d276131e66d 100644 | |
| --- a/fish/trunk/PKGBUILD | |
| +++ b/fish/trunk/PKGBUILD | |
| @@ -6,7 +6,7 @@ | |
| # Contributor: Jan Fader <jan.fader@web.de> | |
| pkgname=fish | |
| -pkgver=3.0.1 | |
| +pkgver=3.0.2 |
| #!/bin/env python | |
| from time import sleep | |
| import sys | |
| def yield_fibonacci_nums(n): | |
| a = b = 1 | |
| if n < 2: | |
| yield b |
| #!/bin/env python | |
| """ | |
| Usage: | |
| download-artwork-from-wikiart-url.py URL | |
| Arguments: | |
| URL URL of artwork in wikiart.org | |
| (ex.: https://www.wikiart.org/en/rene-magritte/gonconda-1953/) | |
| """ |