test
huge 'hoge huge huga' hoga
</html>
# Zero width spaces
# 選好の有無が混在する場合のマッチング手法 | |
# https://proceedings-of-deim.github.io/DEIM2023/2b-6-5.pdf | |
import random | |
from typing import List, Tuple | |
def mixed_acceptance_algorithm(workers: List[Tuple[int, List[int]]], tasks: List[Tuple[int, List[int]]]) -> List[Tuple[int, int]]: | |
""" | |
選好の有無が混在する場合のマッチングアルゴリズム |
#!/bin/bash | |
set -e -o pipefail | |
if [ -z "$GITHUB_TOKEN" ];then | |
echo "GITHUB_TOKEN を設定してください" | |
exit -1 | |
fi | |
if [ -z "$1" ];then | |
echo "引数に組織名を入れてください" | |
exit -1 |
// ==UserScript== | |
// @name AWS SAML | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://signin.aws.amazon.com/saml | |
// @grant none | |
// ==/UserScript== |
test
huge 'hoge huge huga' hoga
</html>
# Zero width spaces
#!/bin/bash | |
set -e | |
set -o pipefail | |
set -u | |
# set -x | |
function !! | |
{ | |
echo "$@" | |
"$@" |
class Repeater{ | |
static tracker_collect(tracker){ | |
switch(type(tracker)){ | |
case 'function': | |
return tracker; | |
case 'undefined': | |
case 'null': | |
return (value, index, list) => value; | |
case 'number': | |
case 'string': |
#!/bin/bash | |
set -e | |
set -x | |
set -u | |
AWS_DEFAULT_REGION=us-west-1 | |
INSTANCE_TYPE=c4.2xlarge | |
# イメージID | |
IMAGE_ID=ami-xxxxxx |
#!/bin/bash | |
# スポットインスタンスの停止イベントをチェックして stop ファイルを書き出す | |
set -e | |
BASE_DIR=$(dirname $0) | |
STOP_FILE=${STOP_FILE-$BASE_DIR/stop} | |
PID_FILE=${PID_FILE-$BASE_DIR/check_stop.pid} |