Skip to content

Instantly share code, notes, and snippets.

View waki285's full-sized avatar

すずねーう waki285

View GitHub Profile
@waki285
waki285 / sus-specification-2.7.md
Last active June 6, 2024 02:21 — forked from kb10uy/sus-specification-2.7.md
SUS Format v2.7 Specification (English)

SUS Format Specification v2.7 (rev2)

  • SUS stands for Sliding Universal Score, not SeaUrchin Score anymore.
    (Annotation: SUS files were originally the proprietary format of SeaUrchin, a tool to play custom chart)

1. Overview

  • Plain Text data, consisting entirely of printable characters.
  • File extension: *.sus
  • EOL: CRLF or LF
  • Encode: Always UTF-8
  • Lines beginning with # are meaningful as data; thus other lines are ignored as comments.
@waki285
waki285 / index.ts
Created May 7, 2022 03:36
Utility Types Polyfill
import { Expect, Equal } from "@type-challenges/utils"
type MyPick<T extends object, K extends keyof T> = { [P in K]: T[P] };
type MyOmit<T extends object, K extends keyof T> = { [P in Exclude<keyof T, K>]: T[P] };
type MyPartial<T extends object> = { [P in keyof T]?: T[P] };
type MyRequired<T extends object> = { [P in keyof T]-?: T[P] };
@waki285
waki285 / README.md
Last active October 26, 2021 01:56
Node Fetch説明日本語版
Node Fetch

Fetch APIをNode.jsにもたらす軽量なライブラリ

Build status Coverage status Current version Install size Mentioned in Awesome Node.js