title | update |
---|---|
ドラクエ 11 やり残し |
2025-01-26 (Sun) 02:41:24 |
- 鍛冶打ち直しマックス(武器と防具)
- スキル以外の種集め
- お宝取りそびれチェック?
頑固、悲観論者、理想主義者、お人好し、人との距離がわからないよ、他力本願、すぐ逃げる奴と、人は私を評す。 | |
2024.10.1 | |
---- | |
プレハブ小屋のインターネット進出 25 周年を記念をしてあげて~。 | |
2024.11.7 |
title |
---|
Hatch 利用ノート |
# build
# Makefile for 図書館逃避行 | |
# Variables supplied from the command line or another Makefile, by `make -f | |
# Makefile.another`. | |
TITLE ?= 東京都ダミー区ダミー図書館 | |
OUTPUT ?= ./a.mp4 | |
INKSCAPE ?= inkscape | |
FFMPEG ?= ffmpeg | |
CONCAT_TOOL ?= video-concat-xfade | |
# You must explicitly set this variable: |
name: python-3.12 | |
channels: | |
- conda-forge | |
- defaults | |
dependencies: | |
- _libgcc_mutex=0.1=conda_forge | |
- _openmp_mutex=4.5=2_gnu | |
- aiofiles=23.2.1=pyhd8ed1ab_0 | |
- aiosqlite=0.19.0=pyhd8ed1ab_0 | |
- alabaster=0.7.16=pyhd8ed1ab_0 |
function mfgscore(){ | |
const buffer = []; | |
// table header | |
buffer.push('| 着順 | 点棒 | 終局時刻 |'); | |
buffer.push('|-----:|-----:|----------|'); | |
$x('//div[@id="history"]/ul/li/div').forEach(i => { | |
// remove the 位 character | |
const rank = i.children[0].innerText[0]; | |
// remove the 点 character | |
const score = i.children[1].innerText.slice(0, -1); |
SHOW TABLE EMPLOYEE; -- isql-specific command | |
SELECT EMP_NO, FIRST_NAME FROM EMPLOYEE; | |
SELECT EMP_NO, FULL_NAME FROM EMPLOYEE; | |
SELECT * FROM EMPLOYEE; | |
SELECT EMP_NO, LAST_NAME, SALARY, SALARY + 500 FROM EMPLOYEE; | |
SELECT DISTINCT DEPT_NO FROM EMPLOYEE; |