Usage: docker-lstags.sh [<namespace>/]<repository>
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
/** | |
* Simple Calendar | |
* Copyright (c) 2021 Koichi OKADA. All rights reserved. | |
* This script is distributed under the MIT license. | |
*/ | |
(function(){ | |
let wd0 = 0; // week day of the first cell in calendar | |
let pad = (s,w,c="0")=>(Array(w).fill(c).join("")+s).slice(-w); | |
let isSameMonth = (d1,d2) => d1.getMonth() == d2.getMonth(); | |
let today = new Date(); |
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
FROM ubuntu | |
MAINTAINER kou1okada <[email protected]> | |
env DEBIAN_FRONTEND=noninteractive | |
RUN \ | |
sed -i -E 's@https?://[^ ]+@http://mirrors.evowise.com/ubuntu/@g' /etc/apt/sources.list && \ | |
apt-get update &&\ | |
apt-get install -y --no-install-recommends squid &&\ | |
apt-get clean &&\ |
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 bash | |
# | |
# attach-ssh-agent.sh - Attach ssh-agent | |
# Copyright (c) 2020 Koichi OKADA. All rights reserved. | |
# This script is distributed under the MIT License. | |
# | |
# Usage: | |
# Include from .bashrc as: | |
# . attach-ssh-agent.sh | |
# |
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 bash | |
if (( $# != 2 )); then | |
cat <<-EOD | |
Usage: ${0##*/} <count> <file> | |
Decompression benchmark | |
EOD | |
exit | |
fi |
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 bash | |
. hhs.bash 0.2.0 | |
function init_wpra_math () | |
{ | |
: ${PREVIEW_METHOD:=sixel} | |
} | |
function optparse_wpra_math () |
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
/** | |
* Moodle 2: Login: Auto focus username | |
*/ | |
(function(){ | |
function focus_to_username() { | |
if (!location.href.match('/login/(index\.php)?$')) return; | |
let e = document.getElementById("username"); | |
if (e) e.focus(); | |
} | |
function onDOMContentLoaded(f) { |
- Jitsi : Jitsi の公式ページ
- Jitsi Meet : Jitsi Meet の紹介ページ
- GitHub / jitsi
- jitsi-meet