This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:66A4EA704FE240558D6AC2E69394F354891D7E07]
| Verifying that I control the following Nostr public key: npub1x7ckqyp8nvr8ufullf72t79l6fmz6a7ulkfq76c46rgfxrjce9fqy4fkgn |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:66A4EA704FE240558D6AC2E69394F354891D7E07]
| # | |
| #= Jekyll Plugin: replace '<img>' to '<amp-img>' with fallback, noscript | |
| # | |
| # Original: https://github.com/juusaw/amp-jekyll/lib/jekyll/amp_filter.rb | |
| # License: MIT/X11 | |
| # Note: | |
| # - You have to set <img> with width and height | |
| # - You have to add .png and .webp | |
| require 'nokogiri' |
| #!/bin/bash | |
| echo "### Setup pdfinfo and pdftext for Debian ###" | |
| echo "- see https://bugs.debian.org/cgi-bin/bugreport.cgi?att=2;bug=781009" | |
| echo -n "poppler-utils version: " | |
| version=$(dpkg-query -W -f='${Version}' poppler-utils || echo "please_install_poppler-utils") | |
| echo "${version}" | |
| ARCH=`dpkg-architecture -qDEB_HOST_GNU_CPU` | |
| binary_suffix="Linux-${ARCH}" |
| #!/bin/sh | |
| PKEXEC=/usr/bin/pkexec | |
| GSD=/usr/lib/gnome-settings-daemon/gsd-backlight-helper | |
| GETOPT=/usr/bin/getopt | |
| OPT=`getopt -a -o sg --long set, --long get -- "$@"` | |
| show_usage(){ | |
| echo "Usage $0 [--get] [--set number]" 1>&2 | |
| } | |
| if [ $? != 0 ]; then | |
| show_usage |
| From: Youhei SASAKI <uwabami@gfd-dennou.org> | |
| Date: Tue, 9 Jan 2018 13:03:58 +0900 | |
| Subject: Unset locale forcing | |
| Signed-off-by: Youhei SASAKI <uwabami@gfd-dennou.org> | |
| --- | |
| tmux.c | 13 +++++-------- | |
| 1 file changed, 5 insertions(+), 8 deletions(-) | |
| diff --git a/tmux.c b/tmux.c |
| From: Youhei SASAKI <uwabami@gfd-dennou.org> | |
| Date: Fri, 27 Oct 2017 12:32:42 +0900 | |
| Subject: Use ASCII char for box drawning with option pane-border-ascii | |
| Signed-off-by: Youhei SASAKI <uwabami@gfd-dennou.org> | |
| --- | |
| options-table.c | 6 ++++++ | |
| tty-acs.c | 67 +++++++++++++++++++++++++++++---------------------------- | |
| 2 files changed, 40 insertions(+), 33 deletions(-) |
| --- bluefeather.rb.orig 2017-05-15 16:20:07.025427957 +0900 | |
| +++ bluefeather.rb 2017-05-15 16:20:41.598133562 +0900 | |
| @@ -1807,7 +1807,7 @@ | |
| @log.debug "%p" % @scanner.string[ startpos-1 .. @scanner.pos-1 ] | |
| rs.warnings << "link-id not found - #{linkid}" | |
| - text += @scanner.string[ startpos-1 .. @scanner.pos-1 ] | |
| + text += '[' + link + ']' + @scanner[0] | |
| end | |
| diff --git a/src/rxvtfont.C b/src/rxvtfont.C | |
| index 1914539..4c0189e 100644 | |
| --- a/src/rxvtfont.C | |
| +++ b/src/rxvtfont.C | |
| @@ -1223,92 +1223,63 @@ rxvt_font_xft::load (const rxvt_fontprop &prop, bool force_prop) | |
| return false; | |
| int ftheight = 0; | |
| - bool success = true; | |
| - |
| #include <stdio.h> | |
| #include <uim/uim.h> | |
| #include <uim/uim-helper.h> | |
| int main(void) | |
| { | |
| int fd; | |
| // initalize | |
| fd = uim_helper_init_client_fd(NULL); | |
| if (fd < 0) { | |
| fprintf(stderr, "error: uim_helper_init_client_fd()\n"); |