TLD | Old Pricing | New Pricing | Updated at |
---|---|---|---|
.com | $8.57 | $9.15 | 2022-09-01 |
.biz | $12.81 | $13.68 | 2022-09-01 |
.design | $33.18 | $35.18 | 2022-09-01 |
.xyz | $8.74 | $9.33 | 2022-09-01 |
.academy | $21.68 | $25.18 | 2022-10-04 |
.accountants | $66.18 | $70.18 | 2022-10-04 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
nginx: | |
image: nginx:mainline-alpine | |
restart: always | |
command: nginx -g "daemon off;" | |
labels: | |
- 'nginx-container' | |
ports: | |
- '80:80' | |
- '443:443/tcp' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const RED = 2126; | |
const GREEN = 7152; | |
const BLUE = 722; | |
/** | |
* @typedef {Object} hueValue | |
* @property {'hue'} type | |
* @property {number} value | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name core-js for ZenzaWatch matches | |
// @namespace https://gist.github.com/kphrx/ | |
// @description ZenzaWatch対象サイトでcore-jsを読み込むスクリプト | |
// @match *://www.nicovideo.jp/* | |
// @match *://ext.nicovideo.jp/ | |
// @match *://ext.nicovideo.jp/#* | |
// @match *://blog.nicovideo.jp/* | |
// @match *://ch.nicovideo.jp/* | |
// @match *://com.nicovideo.jp/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"label":"TCK tests","message":"8 / 12","schemaVersion":1,"color":"hsl(80, 100%, 40%)"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ -s plc.jsonl ]; then | |
LATEST=$(tail -n1 plc.jsonl | jq -r '.createdAt') | |
echo "From: $LATEST; $(jq -s 'unique_by(.did) | length' plc.jsonl)" | |
curl -s https://plc.directory/export\?after\=$LATEST >> plc.jsonl | |
else | |
curl -s https://plc.directory/export >> plc.jsonl | |
fi |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://docs.keyoxide.org/advanced/openpgp-proofs/
[Verifying my OpenPGP key: openpgp4fpr:55A28362FE5705D3FF270136C04751C2BFA2F62D]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
my $current = `docker buildx version`; | |
use POSIX qw(uname); | |
my @uname = uname(); | |
my $os = lc($uname[0]); | |
my $arch = $uname[4]; | |
my %arch_map = ( | |
aarch64 => 'arm64', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Amazon Prime Video auto hide the next up card | |
// @namespace http://tampermonkey.net/ | |
// @version 1.3.4 | |
// @author kPherox | |
// @match https://www.amazon.co.jp/gp/video/* | |
// @match https://www.amazon.co.jp/Amazon-Video/* | |
// @updateURL https://gist.github.com/kphrx/2d7c91067c42453ec88a65e2202c2144/raw/primevideo-autohide-nextupcard.user.js | |
// @downloadURL https://gist.github.com/kphrx/2d7c91067c42453ec88a65e2202c2144/raw/primevideo-autohide-nextupcard.user.js | |
// @grant none |
NewerOlder