Skip to content

Instantly share code, notes, and snippets.

View showa-yojyo's full-sized avatar
💭
I may be slow to respond.

プレハブ小屋 showa-yojyo

💭
I may be slow to respond.
View GitHub Profile
@showa-yojyo
showa-yojyo / leibniz-criterion.md
Last active February 9, 2023 17:05
目標:0 に単調減少する数列から構成した交項級数の収束を理解する
title
Leibniz Criterion

Real Analysis - Part 18 - Leibniz Criterion - YouTube より。 本稿は Alternating series test, Leibniz criterion, Leipniz's test などと呼ばれる定理の証明の理解を確認するためのノートだ。

実数列 $(a_n)$ は 0 に収束するような単調減少列であると仮定する。 このとき $\displaystyle \sum_{k=1}^{\infty}(-1)^k a_k$ は収束する。

@showa-yojyo
showa-yojyo / geometric-and-harmonic-series.md
Last active February 9, 2023 17:03
目標:調和級数の証明を理解する
@showa-yojyo
showa-yojyo / dtp22b.md
Last active November 20, 2022 16:11
research note on SOPHIE Naked Massacre Version
title
SOPHIE Naked Massacre Version プレイノート

本稿は筆者が [SOPHIE Naked Massacre Version][dtp22b] 一周クリアを記念しての記録だ。 現バージョンから登場の新機能のみ記す。

酒場〈踊る金竜亭〉

追加された項目は次のとおり:

@showa-yojyo
showa-yojyo / pandoc-defaults.yml
Last active April 2, 2022 14:44
My favorite configuration for conversion from Markdown to reStructuredText.
# pandoc-defaults.yml
# My favorite configuration for conversion from Markdown to reStructuredText.
# General options
verbosity: INFO # ERROR | WARNING | INFO
from: markdown
to: rst-auto_identifiers+east_asian_line_breaks
# Reader options
shift-heading-level-by: -1
@showa-yojyo
showa-yojyo / sophie-armor.md
Last active March 20, 2022 16:26
SOPHIE プレイノート集
title date
SOPHIE -The Moonlight Muse Saga Double Trouble The Game- プレイノート 防具の章
2022-03-16 (Wed)

SOPHIE ノート。防具について記す。

凡例

| 列名 | 意味 |

@showa-yojyo
showa-yojyo / flong-shapers_bez.md
Last active December 12, 2021 15:28
Some notes on various Shaping Functions by Golan Levin and Collaborators
@showa-yojyo
showa-yojyo / thebookofshaders1.md
Last active December 10, 2021 16:12
The Book of Shaders 学習ノート Pt. 1
title
The Book of Shaders 学習ノート

The Book of Shaders 学習ノート。 GLSL の、特に断片シェーダーのプログラミングに関する教科書として読む。

About this book

いろいろと書いてあるが、付録との絡みにしか興味がない。

@showa-yojyo
showa-yojyo / sweet-home-fresco.txt
Last active November 27, 2021 17:29
All the message hidden in the fresco by Ichiro Mamiya
1がつ 6にち
やしきの なかの フレスコは
3まい ひとくみで
ひとつの なぞを ときあかす
1がつ 15にち
いわが あなたがたを さまたげる
しかし ハンマーを つかえば
いわは もはや いわではない
@showa-yojyo
showa-yojyo / look.txt
Created November 16, 2021 13:53
A research of glMatrix mat4.lookAt and mat4.targetTo implementation
// lookAt:
if(eye == center){
return I;
}
// F := center - eye だから
// -F -> -f の違いがある
z = normalize(eye - center);
const FOURCC_DXT1 = 0x31545844 // Equivalent to "DXT1" in ASCII
const FOURCC_DXT3 = 0x33545844 // Equivalent to "DXT3" in ASCII
const FOURCC_DXT5 = 0x35545844 // Equivalent to "DXT5" in ASCII
async function loadDDS(gl, url) {
const ext = gl.getExtension('WEBGL_compressed_texture_s3tc');
if (!ext) {
alert('WEBGL_compressed_texture_s3tc notavailable');
return;
}