導入期日: 2024.01.08
OS: Rocky Linux 9 / Minimal
- src:
/src/openssh
,/srv/openssl
- build:
/srv/openssh/
,srv/openssl
G21008
下記が参考になると思う。
PPT - NS2 HW3 PowerPoint Presentation, free download - ID:9562618
<!DOCTYPE html> | |
<html> | |
<link rel="stylesheet" href="style.css"> | |
<body> | |
<!---begin header--> | |
<div id="approval_header"> | |
<div id="approval_number_box"> | |
<div class="approval_lbl">受付番号</div> | |
<div id="approval_number_inp"> | |
<input |
#!/bin/bash -eu | |
# origin works: https://qiita.com/take_3/items/5d602906b6b02b33c32a | |
if [[ $# -lt 2 ]];then | |
echo "usage: $0 [has|add|rm] [file]" | |
exit 1 | |
fi | |
subcmd="$1" | |
shift | |
case "$subcmd" in |
from: https://ascendance-of-a-bookworm.fandom.com/wiki/Gods_and_Subordinate_Gods
merged from: https://w.atwiki.jp/booklove/pages/43.html (ja)
ja | en | what of god |
---|---|---|
闇の神(シックザントラハト) | Schicksantracht | DARKNESS |
; =========================================================================== | |
; AutoHotKey Script v2022-11-13 | |
; =========================================================================== | |
; 標準のマウス速度 | |
normalMouseRatio = 2 | |
; 高速なマウス速度 | |
accelerationMouseRatio = 10 | |
if (Test-Path "sha1sum.txt" ) { | |
Write-Output "Error: sha1sum.txt exist. nothing doing." | |
exit 1 | |
} | |
Write-Output "Listing File..." | |
$fileList = Get-ChildItem -Recurse * | ? { ! $_.PSIsContainer } | |
$all = $fileList.Count | |
Write-Output "Listing Done. TOTAL_FILE=$all" |
#!/bin/bash -eu | |
_setPasscode() { | |
prompt="" | |
set +u | |
if [[ "$1" != " " ]]; then | |
prompt="$1" | |
echo -n "$prompt" | |
fi | |
set -u | |
unset passcode passmark |
#!/bin/bash | |
s=("ドド" "スコ") | |
c="" | |
while : | |
do | |
i=$((RANDOM % 2)) | |
echo -n "${s[i]}" | |
c="$i${c:0:11}" | |
if [[ "$c" == "111011101110" ]];then |