- アイテム回収100%、スキャン達成100%を目指す
*は逃すと取り返しのつかないクリーチャーなど。忘れずにスキャンしたい- セーブステーションには適宜立ち寄ること。このメモでは省略していることが多い
- メトロイドプライム リマスタード | Nintendo Switch | 任天堂
- 探索の手引き 任天堂オフィシャルの説明書
| #!/usr/bin/env python | |
| import sys | |
| from pathlib import Path | |
| if not Path("pyproject.toml").exists(): | |
| print( | |
| "Ensure you did:\n uv init --app --package\n or uv init --app", | |
| file=sys.stderr, | |
| ) |
| #!/usr/bin/env python | |
| import sys | |
| from pathlib import Path | |
| archives = [ | |
| { | |
| "name": ".vscode/settings.json", | |
| "data": """ | |
| { |
| #!/usr/bin/env -S deno run -A --ext ts | |
| import $ from "jsr:@david/[email protected]"; | |
| import { parseArgs } from "node:util"; | |
| import { Readability } from "npm:@mozilla/[email protected]"; | |
| import { JSDOM } from "npm:[email protected]"; | |
| const { code } = await $`/bin/which pandoc`.noThrow().quiet(); | |
| if (code !== 0) { | |
| console.error("Command not found: pandoc\nPlease install pandoc first."); | |
| Deno.exit(1); |
| #!/usr/bin/env -S deno run -A --ext ts | |
| import { google } from "npm:@ai-sdk/[email protected]"; | |
| import { generateText } from "npm:[email protected]"; | |
| import { parseArgs } from "node:util"; | |
| const arg = parseArgs({ | |
| args: Deno.args, | |
| allowPositionals: true, | |
| options: {}, | |
| }); |
| #!/usr/bin/env -S deno run -A --ext ts | |
| import { google } from "npm:@ai-sdk/[email protected]"; | |
| import { generateText } from "npm:[email protected]"; | |
| import { parseArgs } from "node:util"; | |
| const arg = parseArgs({ | |
| args: Deno.args, | |
| allowPositionals: true, | |
| options: {}, | |
| }); |
*は逃すと取り返しのつかないクリーチャーなど。忘れずにスキャンしたい| ??? | 不思議な声 | |
|---|---|---|
| Acorn | どんぐり | |
| Agus | パラガス | |
| Aji | アジテータ | |
| Akrah | オラク | |
| Album | アルバム | |
| Aliza | イライザ | |
| Amali | ハミラ | |
| Amber | コハク | |
| Amber Earrings | コハクの耳飾り |
| #!/bin/bash | |
| source /usr/bin/neofetch 2>&1 >/dev/null | |
| typeset -f get_distro_ascii | \ | |
| grep -E '^\s+".*)$' | \ | |
| grep -oP '".*?"' | \ | |
| while read -r line; do | |
| printf '%s\n' "$line" | |
| neofetch -L --ascii_distro "${line:1:-1}" | |
| done |
| #!/bin/bash | |
| # http://mywiki.wooledge.org/BashFAQ/071 | |
| # > If the leading character is a single-quote or double-quote, | |
| # > the value shall be the numeric value in the underlying codeset | |
| # > of the character following the single-quote or double-quote. | |
| printf 'U+%04x\n' "'a" | |
| printf 'U+%04x\n' "'あ" |
| #!/bin/bash | |
| fruits=('apple' 'orange' 'banana') | |
| printf '%s\n' "${fruits[*]}" |